blob: 165b149ccb1a7cb0999d90686697f5a7d12a2c34 [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>
Ingo Molnar29930022017-02-08 18:51:36 +010018#include <linux/sched/task.h>
Steven Rostedt3d083392008-05-12 21:20:42 +020019#include <linux/kallsyms.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020020#include <linux/seq_file.h>
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -080021#include <linux/suspend.h>
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -050022#include <linux/tracefs.h>
Steven Rostedt3d083392008-05-12 21:20:42 +020023#include <linux/hardirq.h>
Ingo Molnar2d8b8202008-02-23 16:55:50 +010024#include <linux/kthread.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020025#include <linux/uaccess.h>
Steven Rostedt5855fea2011-12-16 19:27:42 -050026#include <linux/bsearch.h>
Paul Gortmaker56d82e02011-05-26 17:53:52 -040027#include <linux/module.h>
Ingo Molnar2d8b8202008-02-23 16:55:50 +010028#include <linux/ftrace.h>
Steven Rostedtb0fc4942008-05-12 21:20:43 +020029#include <linux/sysctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020031#include <linux/ctype.h>
Steven Rostedt68950612011-12-16 17:06:45 -050032#include <linux/sort.h>
Steven Rostedt3d083392008-05-12 21:20:42 +020033#include <linux/list.h>
Steven Rostedt59df055f2009-02-14 15:29:06 -050034#include <linux/hash.h>
Paul E. McKenney3f379b02010-03-05 15:03:25 -080035#include <linux/rcupdate.h>
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020036
Steven Rostedtad8d75f2009-04-14 19:39:12 -040037#include <trace/events/sched.h>
Steven Rostedt8aef2d22009-03-24 01:10:15 -040038
Steven Rostedt (VMware)b80f0f62017-04-03 12:57:35 -040039#include <asm/sections.h>
Steven Rostedt2af15d62009-05-28 13:37:24 -040040#include <asm/setup.h>
Abhishek Sagar395a59d2008-06-21 23:47:27 +053041
Steven Rostedt0706f1c2009-03-23 23:12:58 -040042#include "trace_output.h"
Steven Rostedtbac429f2009-03-20 12:50:56 -040043#include "trace_stat.h"
Steven Rostedt3d083392008-05-12 21:20:42 +020044
Steven Rostedt6912896e2008-10-23 09:33:03 -040045#define FTRACE_WARN_ON(cond) \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040046 ({ \
47 int ___r = cond; \
48 if (WARN_ON(___r)) \
Steven Rostedt6912896e2008-10-23 09:33:03 -040049 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040050 ___r; \
51 })
Steven Rostedt6912896e2008-10-23 09:33:03 -040052
53#define FTRACE_WARN_ON_ONCE(cond) \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040054 ({ \
55 int ___r = cond; \
56 if (WARN_ON_ONCE(___r)) \
Steven Rostedt6912896e2008-10-23 09:33:03 -040057 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040058 ___r; \
59 })
Steven Rostedt6912896e2008-10-23 09:33:03 -040060
Steven Rostedt8fc0c702009-02-16 15:28:00 -050061/* hash bits for specific function selection */
62#define FTRACE_HASH_BITS 7
63#define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
Steven Rostedt33dc9b12011-05-02 17:34:47 -040064#define FTRACE_HASH_DEFAULT_BITS 10
65#define FTRACE_HASH_MAX_BITS 12
Steven Rostedt8fc0c702009-02-16 15:28:00 -050066
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
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -040094static bool ftrace_pids_enabled(struct ftrace_ops *ops)
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -040095{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -040096 struct trace_array *tr;
97
98 if (!(ops->flags & FTRACE_OPS_FL_PID) || !ops->private)
99 return false;
100
101 tr = ops->private;
102
103 return tr->function_pids != NULL;
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400104}
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
Chunyan Zhangf86f4182017-06-07 16:12:51 +0800116static struct ftrace_ops __rcu *ftrace_ops_list __read_mostly = &ftrace_list_end;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200117ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
Steven Rostedt2b499382011-05-03 22:49:52 -0400118static struct ftrace_ops global_ops;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200119
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400120#if ARCH_SUPPORTS_FTRACE_OPS
121static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400122 struct ftrace_ops *op, struct pt_regs *regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400123#else
124/* See comment below, where ftrace_ops_list_func is defined */
125static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip);
126#define ftrace_ops_list_func ((ftrace_func_t)ftrace_ops_no_ops)
127#endif
Steven Rostedtb8489142011-05-04 09:27:52 -0400128
Steven Rostedt0a016402012-11-02 17:03:03 -0400129/*
130 * Traverse the ftrace_global_list, invoking all entries. The reason that we
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400131 * can use rcu_dereference_raw_notrace() is that elements removed from this list
Steven Rostedt0a016402012-11-02 17:03:03 -0400132 * are simply leaked, so there is no need to interact with a grace-period
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400133 * mechanism. The rcu_dereference_raw_notrace() calls are needed to handle
Steven Rostedt0a016402012-11-02 17:03:03 -0400134 * concurrent insertions into the ftrace_global_list.
135 *
136 * Silly Alpha and silly pointer-speculation compiler optimizations!
137 */
138#define do_for_each_ftrace_op(op, list) \
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400139 op = rcu_dereference_raw_notrace(list); \
Steven Rostedt0a016402012-11-02 17:03:03 -0400140 do
141
142/*
143 * Optimized for just a single item in the list (as that is the normal case).
144 */
145#define while_for_each_ftrace_op(op) \
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400146 while (likely(op = rcu_dereference_raw_notrace((op)->next)) && \
Steven Rostedt0a016402012-11-02 17:03:03 -0400147 unlikely((op) != &ftrace_list_end))
148
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900149static inline void ftrace_ops_init(struct ftrace_ops *ops)
150{
151#ifdef CONFIG_DYNAMIC_FTRACE
152 if (!(ops->flags & FTRACE_OPS_FL_INITIALIZED)) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400153 mutex_init(&ops->local_hash.regex_lock);
154 ops->func_hash = &ops->local_hash;
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900155 ops->flags |= FTRACE_OPS_FL_INITIALIZED;
156 }
157#endif
158}
159
Steven Rostedtea701f12012-07-20 13:08:05 -0400160/**
161 * ftrace_nr_registered_ops - return number of ops registered
162 *
163 * Returns the number of ftrace_ops registered and tracing functions
164 */
165int ftrace_nr_registered_ops(void)
166{
167 struct ftrace_ops *ops;
168 int cnt = 0;
169
170 mutex_lock(&ftrace_lock);
171
Chunyan Zhangf86f4182017-06-07 16:12:51 +0800172 for (ops = rcu_dereference_protected(ftrace_ops_list,
173 lockdep_is_held(&ftrace_lock));
174 ops != &ftrace_list_end;
175 ops = rcu_dereference_protected(ops->next,
176 lockdep_is_held(&ftrace_lock)))
Steven Rostedtea701f12012-07-20 13:08:05 -0400177 cnt++;
178
179 mutex_unlock(&ftrace_lock);
180
181 return cnt;
182}
183
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400184static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400185 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500186{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400187 struct trace_array *tr = op->private;
188
189 if (tr && this_cpu_read(tr->trace_buffer.data->ftrace_ignore_pid))
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
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500206static void per_cpu_ops_disable_all(struct ftrace_ops *ops)
Jiri Olsae2484912012-02-15 15:51:48 +0100207{
208 int cpu;
209
210 for_each_possible_cpu(cpu)
211 *per_cpu_ptr(ops->disabled, cpu) = 1;
212}
213
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500214static int per_cpu_ops_alloc(struct ftrace_ops *ops)
Jiri Olsae2484912012-02-15 15:51:48 +0100215{
216 int __percpu *disabled;
217
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500218 if (WARN_ON_ONCE(!(ops->flags & FTRACE_OPS_FL_PER_CPU)))
219 return -EINVAL;
220
Jiri Olsae2484912012-02-15 15:51:48 +0100221 disabled = alloc_percpu(int);
222 if (!disabled)
223 return -ENOMEM;
224
225 ops->disabled = disabled;
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500226 per_cpu_ops_disable_all(ops);
Jiri Olsae2484912012-02-15 15:51:48 +0100227 return 0;
228}
229
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500230static void ftrace_sync(struct work_struct *work)
231{
232 /*
233 * This function is just a stub to implement a hard force
234 * of synchronize_sched(). This requires synchronizing
235 * tasks even in userspace and idle.
236 *
237 * Yes, function tracing is rude.
238 */
239}
240
241static void ftrace_sync_ipi(void *data)
242{
243 /* Probably not needed, but do it anyway */
244 smp_rmb();
245}
246
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500247#ifdef CONFIG_FUNCTION_GRAPH_TRACER
248static void update_function_graph_func(void);
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400249
250/* Both enabled by default (can be cleared by function_graph tracer flags */
251static bool fgraph_sleep_time = true;
252static bool fgraph_graph_time = true;
253
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500254#else
255static inline void update_function_graph_func(void) { }
256#endif
257
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100258
259static ftrace_func_t ftrace_ops_get_list_func(struct ftrace_ops *ops)
260{
261 /*
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500262 * If this is a dynamic, RCU, or per CPU ops, or we force list func,
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100263 * then it needs to call the list anyway.
264 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500265 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU |
266 FTRACE_OPS_FL_RCU) || FTRACE_FORCE_LIST_FUNC)
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100267 return ftrace_ops_list_func;
268
269 return ftrace_ops_get_func(ops);
270}
271
Steven Rostedt2b499382011-05-03 22:49:52 -0400272static void update_ftrace_function(void)
273{
274 ftrace_func_t func;
275
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400276 /*
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400277 * Prepare the ftrace_ops that the arch callback will use.
278 * If there's only one ftrace_ops registered, the ftrace_ops_list
279 * will point to the ops we want.
280 */
Chunyan Zhangf86f4182017-06-07 16:12:51 +0800281 set_function_trace_op = rcu_dereference_protected(ftrace_ops_list,
282 lockdep_is_held(&ftrace_lock));
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400283
284 /* If there's no ftrace_ops registered, just call the stub function */
Chunyan Zhangf86f4182017-06-07 16:12:51 +0800285 if (set_function_trace_op == &ftrace_list_end) {
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400286 func = ftrace_stub;
287
288 /*
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400289 * If we are at the end of the list and this ops is
Steven Rostedt47409742012-07-20 11:04:44 -0400290 * recursion safe and not dynamic and the arch supports passing ops,
291 * then have the mcount trampoline call the function directly.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400292 */
Chunyan Zhangf86f4182017-06-07 16:12:51 +0800293 } else if (rcu_dereference_protected(ftrace_ops_list->next,
294 lockdep_is_held(&ftrace_lock)) == &ftrace_list_end) {
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100295 func = ftrace_ops_get_list_func(ftrace_ops_list);
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400296
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400297 } else {
298 /* Just use the default ftrace_ops */
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500299 set_function_trace_op = &ftrace_list_end;
Steven Rostedtb8489142011-05-04 09:27:52 -0400300 func = ftrace_ops_list_func;
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400301 }
Steven Rostedt2b499382011-05-03 22:49:52 -0400302
Steven Rostedt (Red Hat)5f8bf2d22014-07-15 11:05:12 -0400303 update_function_graph_func();
304
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500305 /* If there's no change, then do nothing more here */
306 if (ftrace_trace_function == func)
307 return;
308
309 /*
310 * If we are using the list function, it doesn't care
311 * about the function_trace_ops.
312 */
313 if (func == ftrace_ops_list_func) {
314 ftrace_trace_function = func;
315 /*
316 * Don't even bother setting function_trace_ops,
317 * it would be racy to do so anyway.
318 */
319 return;
320 }
321
322#ifndef CONFIG_DYNAMIC_FTRACE
323 /*
324 * For static tracing, we need to be a bit more careful.
325 * The function change takes affect immediately. Thus,
326 * we need to coorditate the setting of the function_trace_ops
327 * with the setting of the ftrace_trace_function.
328 *
329 * Set the function to the list ops, which will call the
330 * function we want, albeit indirectly, but it handles the
331 * ftrace_ops and doesn't depend on function_trace_op.
332 */
333 ftrace_trace_function = ftrace_ops_list_func;
334 /*
335 * Make sure all CPUs see this. Yes this is slow, but static
336 * tracing is slow and nasty to have enabled.
337 */
338 schedule_on_each_cpu(ftrace_sync);
339 /* Now all cpus are using the list ops. */
340 function_trace_op = set_function_trace_op;
341 /* Make sure the function_trace_op is visible on all CPUs */
342 smp_wmb();
343 /* Nasty way to force a rmb on all cpus */
344 smp_call_function(ftrace_sync_ipi, NULL, 1);
345 /* OK, we are all set to update the ftrace_trace_function now! */
346#endif /* !CONFIG_DYNAMIC_FTRACE */
347
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400348 ftrace_trace_function = func;
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400349}
350
Jiaxing Wang7eea4fc2014-04-20 23:10:43 +0800351int using_ftrace_ops_list_func(void)
352{
353 return ftrace_trace_function == ftrace_ops_list_func;
354}
355
Chunyan Zhangf86f4182017-06-07 16:12:51 +0800356static void add_ftrace_ops(struct ftrace_ops __rcu **list,
357 struct ftrace_ops *ops)
Steven Rostedt3d083392008-05-12 21:20:42 +0200358{
Chunyan Zhangf86f4182017-06-07 16:12:51 +0800359 rcu_assign_pointer(ops->next, *list);
360
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200361 /*
Steven Rostedtb8489142011-05-04 09:27:52 -0400362 * We are entering ops into the list but another
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200363 * CPU might be walking that list. We need to make sure
364 * the ops->next pointer is valid before another CPU sees
Steven Rostedtb8489142011-05-04 09:27:52 -0400365 * the ops pointer included into the list.
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200366 */
Steven Rostedt2b499382011-05-03 22:49:52 -0400367 rcu_assign_pointer(*list, ops);
368}
Steven Rostedt3d083392008-05-12 21:20:42 +0200369
Chunyan Zhangf86f4182017-06-07 16:12:51 +0800370static int remove_ftrace_ops(struct ftrace_ops __rcu **list,
371 struct ftrace_ops *ops)
Steven Rostedt2b499382011-05-03 22:49:52 -0400372{
373 struct ftrace_ops **p;
374
375 /*
376 * If we are removing the last function, then simply point
377 * to the ftrace_stub.
378 */
Chunyan Zhangf86f4182017-06-07 16:12:51 +0800379 if (rcu_dereference_protected(*list,
380 lockdep_is_held(&ftrace_lock)) == ops &&
381 rcu_dereference_protected(ops->next,
382 lockdep_is_held(&ftrace_lock)) == &ftrace_list_end) {
Steven Rostedt2b499382011-05-03 22:49:52 -0400383 *list = &ftrace_list_end;
384 return 0;
385 }
386
387 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
388 if (*p == ops)
389 break;
390
391 if (*p != ops)
392 return -1;
393
394 *p = (*p)->next;
395 return 0;
396}
397
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400398static void ftrace_update_trampoline(struct ftrace_ops *ops);
399
Steven Rostedt2b499382011-05-03 22:49:52 -0400400static int __register_ftrace_function(struct ftrace_ops *ops)
401{
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -0500402 if (ops->flags & FTRACE_OPS_FL_DELETED)
403 return -EINVAL;
404
Steven Rostedtb8489142011-05-04 09:27:52 -0400405 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
406 return -EBUSY;
407
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +0900408#ifndef CONFIG_DYNAMIC_FTRACE_WITH_REGS
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400409 /*
410 * If the ftrace_ops specifies SAVE_REGS, then it only can be used
411 * if the arch supports it, or SAVE_REGS_IF_SUPPORTED is also set.
412 * Setting SAVE_REGS_IF_SUPPORTED makes SAVE_REGS irrelevant.
413 */
414 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS &&
415 !(ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED))
416 return -EINVAL;
417
418 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED)
419 ops->flags |= FTRACE_OPS_FL_SAVE_REGS;
420#endif
421
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400422 if (!core_kernel_data((unsigned long)ops))
423 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
424
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500425 if (ops->flags & FTRACE_OPS_FL_PER_CPU) {
426 if (per_cpu_ops_alloc(ops))
Jiri Olsae2484912012-02-15 15:51:48 +0100427 return -ENOMEM;
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500428 }
429
430 add_ftrace_ops(&ftrace_ops_list, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400431
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400432 /* Always save the function, and reset at unregistering */
433 ops->saved_func = ops->func;
434
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400435 if (ftrace_pids_enabled(ops))
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400436 ops->func = ftrace_pid_func;
437
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400438 ftrace_update_trampoline(ops);
439
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400440 if (ftrace_enabled)
441 update_ftrace_function();
Steven Rostedt3d083392008-05-12 21:20:42 +0200442
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200443 return 0;
444}
445
Ingo Molnare309b412008-05-12 21:20:51 +0200446static int __unregister_ftrace_function(struct ftrace_ops *ops)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200447{
Steven Rostedt2b499382011-05-03 22:49:52 -0400448 int ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200449
Steven Rostedtb8489142011-05-04 09:27:52 -0400450 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
451 return -EBUSY;
452
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500453 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400454
Steven Rostedt2b499382011-05-03 22:49:52 -0400455 if (ret < 0)
456 return ret;
Steven Rostedtb8489142011-05-04 09:27:52 -0400457
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400458 if (ftrace_enabled)
459 update_ftrace_function();
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200460
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400461 ops->func = ops->saved_func;
462
Steven Rostedte6ea44e2009-02-14 01:42:44 -0500463 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +0200464}
465
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500466static void ftrace_update_pid_func(void)
467{
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400468 struct ftrace_ops *op;
469
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400470 /* Only do something if we are tracing something */
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500471 if (ftrace_trace_function == ftrace_stub)
KOSAKI Motohiro10dd3eb2009-03-06 15:29:04 +0900472 return;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500473
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400474 do_for_each_ftrace_op(op, ftrace_ops_list) {
475 if (op->flags & FTRACE_OPS_FL_PID) {
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400476 op->func = ftrace_pids_enabled(op) ?
477 ftrace_pid_func : op->saved_func;
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400478 ftrace_update_trampoline(op);
479 }
480 } while_for_each_ftrace_op(op);
481
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400482 update_ftrace_function();
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500483}
484
Steven Rostedt493762f2009-03-23 17:12:36 -0400485#ifdef CONFIG_FUNCTION_PROFILER
486struct ftrace_profile {
487 struct hlist_node node;
488 unsigned long ip;
489 unsigned long counter;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400490#ifdef CONFIG_FUNCTION_GRAPH_TRACER
491 unsigned long long time;
Chase Douglase330b3b2010-04-26 14:02:05 -0400492 unsigned long long time_squared;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400493#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400494};
495
496struct ftrace_profile_page {
497 struct ftrace_profile_page *next;
498 unsigned long index;
499 struct ftrace_profile records[];
500};
501
Steven Rostedtcafb1682009-03-24 20:50:39 -0400502struct ftrace_profile_stat {
503 atomic_t disabled;
504 struct hlist_head *hash;
505 struct ftrace_profile_page *pages;
506 struct ftrace_profile_page *start;
507 struct tracer_stat stat;
508};
509
Steven Rostedt493762f2009-03-23 17:12:36 -0400510#define PROFILE_RECORDS_SIZE \
511 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
512
513#define PROFILES_PER_PAGE \
514 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
515
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400516static int ftrace_profile_enabled __read_mostly;
517
518/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
Steven Rostedt493762f2009-03-23 17:12:36 -0400519static DEFINE_MUTEX(ftrace_profile_lock);
520
Steven Rostedtcafb1682009-03-24 20:50:39 -0400521static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
Steven Rostedt493762f2009-03-23 17:12:36 -0400522
Namhyung Kim20079eb2013-04-10 08:55:50 +0900523#define FTRACE_PROFILE_HASH_BITS 10
524#define FTRACE_PROFILE_HASH_SIZE (1 << FTRACE_PROFILE_HASH_BITS)
Steven Rostedt493762f2009-03-23 17:12:36 -0400525
Steven Rostedt493762f2009-03-23 17:12:36 -0400526static void *
527function_stat_next(void *v, int idx)
528{
529 struct ftrace_profile *rec = v;
530 struct ftrace_profile_page *pg;
531
532 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
533
534 again:
Li Zefan0296e422009-06-26 11:15:37 +0800535 if (idx != 0)
536 rec++;
537
Steven Rostedt493762f2009-03-23 17:12:36 -0400538 if ((void *)rec >= (void *)&pg->records[pg->index]) {
539 pg = pg->next;
540 if (!pg)
541 return NULL;
542 rec = &pg->records[0];
543 if (!rec->counter)
544 goto again;
545 }
546
547 return rec;
548}
549
550static void *function_stat_start(struct tracer_stat *trace)
551{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400552 struct ftrace_profile_stat *stat =
553 container_of(trace, struct ftrace_profile_stat, stat);
554
555 if (!stat || !stat->start)
556 return NULL;
557
558 return function_stat_next(&stat->start->records[0], 0);
Steven Rostedt493762f2009-03-23 17:12:36 -0400559}
560
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400561#ifdef CONFIG_FUNCTION_GRAPH_TRACER
562/* function graph compares on total time */
563static int function_stat_cmp(void *p1, void *p2)
564{
565 struct ftrace_profile *a = p1;
566 struct ftrace_profile *b = p2;
567
568 if (a->time < b->time)
569 return -1;
570 if (a->time > b->time)
571 return 1;
572 else
573 return 0;
574}
575#else
576/* not function graph compares against hits */
Steven Rostedt493762f2009-03-23 17:12:36 -0400577static int function_stat_cmp(void *p1, void *p2)
578{
579 struct ftrace_profile *a = p1;
580 struct ftrace_profile *b = p2;
581
582 if (a->counter < b->counter)
583 return -1;
584 if (a->counter > b->counter)
585 return 1;
586 else
587 return 0;
588}
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400589#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400590
591static int function_stat_headers(struct seq_file *m)
592{
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400593#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100594 seq_puts(m, " Function "
595 "Hit Time Avg s^2\n"
596 " -------- "
597 "--- ---- --- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400598#else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100599 seq_puts(m, " Function Hit\n"
600 " -------- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400601#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400602 return 0;
603}
604
605static int function_stat_show(struct seq_file *m, void *v)
606{
607 struct ftrace_profile *rec = v;
608 char str[KSYM_SYMBOL_LEN];
Li Zefan3aaba202010-08-23 16:50:12 +0800609 int ret = 0;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400610#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400611 static struct trace_seq s;
612 unsigned long long avg;
Chase Douglase330b3b2010-04-26 14:02:05 -0400613 unsigned long long stddev;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400614#endif
Li Zefan3aaba202010-08-23 16:50:12 +0800615 mutex_lock(&ftrace_profile_lock);
616
617 /* we raced with function_profile_reset() */
618 if (unlikely(rec->counter == 0)) {
619 ret = -EBUSY;
620 goto out;
621 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400622
Umesh Tiwari8e436ca2015-06-22 16:58:08 +0530623#ifdef CONFIG_FUNCTION_GRAPH_TRACER
624 avg = rec->time;
625 do_div(avg, rec->counter);
626 if (tracing_thresh && (avg < tracing_thresh))
627 goto out;
628#endif
629
Steven Rostedt493762f2009-03-23 17:12:36 -0400630 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400631 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
Steven Rostedt493762f2009-03-23 17:12:36 -0400632
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400633#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100634 seq_puts(m, " ");
Steven Rostedt34886c82009-03-25 21:00:47 -0400635
Chase Douglase330b3b2010-04-26 14:02:05 -0400636 /* Sample standard deviation (s^2) */
637 if (rec->counter <= 1)
638 stddev = 0;
639 else {
Juri Lelli52d85d72013-06-12 12:03:18 +0200640 /*
641 * Apply Welford's method:
642 * s^2 = 1 / (n * (n-1)) * (n * \Sum (x_i)^2 - (\Sum x_i)^2)
643 */
644 stddev = rec->counter * rec->time_squared -
645 rec->time * rec->time;
646
Chase Douglase330b3b2010-04-26 14:02:05 -0400647 /*
648 * Divide only 1000 for ns^2 -> us^2 conversion.
649 * trace_print_graph_duration will divide 1000 again.
650 */
Juri Lelli52d85d72013-06-12 12:03:18 +0200651 do_div(stddev, rec->counter * (rec->counter - 1) * 1000);
Chase Douglase330b3b2010-04-26 14:02:05 -0400652 }
653
Steven Rostedt34886c82009-03-25 21:00:47 -0400654 trace_seq_init(&s);
655 trace_print_graph_duration(rec->time, &s);
656 trace_seq_puts(&s, " ");
657 trace_print_graph_duration(avg, &s);
Chase Douglase330b3b2010-04-26 14:02:05 -0400658 trace_seq_puts(&s, " ");
659 trace_print_graph_duration(stddev, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400660 trace_print_seq(m, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400661#endif
662 seq_putc(m, '\n');
Li Zefan3aaba202010-08-23 16:50:12 +0800663out:
664 mutex_unlock(&ftrace_profile_lock);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400665
Li Zefan3aaba202010-08-23 16:50:12 +0800666 return ret;
Steven Rostedt493762f2009-03-23 17:12:36 -0400667}
668
Steven Rostedtcafb1682009-03-24 20:50:39 -0400669static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400670{
671 struct ftrace_profile_page *pg;
672
Steven Rostedtcafb1682009-03-24 20:50:39 -0400673 pg = stat->pages = stat->start;
Steven Rostedt493762f2009-03-23 17:12:36 -0400674
675 while (pg) {
676 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
677 pg->index = 0;
678 pg = pg->next;
679 }
680
Steven Rostedtcafb1682009-03-24 20:50:39 -0400681 memset(stat->hash, 0,
Steven Rostedt493762f2009-03-23 17:12:36 -0400682 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
683}
684
Steven Rostedtcafb1682009-03-24 20:50:39 -0400685int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400686{
687 struct ftrace_profile_page *pg;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400688 int functions;
689 int pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400690 int i;
691
692 /* If we already allocated, do nothing */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400693 if (stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400694 return 0;
695
Steven Rostedtcafb1682009-03-24 20:50:39 -0400696 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
697 if (!stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400698 return -ENOMEM;
699
Steven Rostedt318e0a72009-03-25 20:06:34 -0400700#ifdef CONFIG_DYNAMIC_FTRACE
701 functions = ftrace_update_tot_cnt;
702#else
703 /*
704 * We do not know the number of functions that exist because
705 * dynamic tracing is what counts them. With past experience
706 * we have around 20K functions. That should be more than enough.
707 * It is highly unlikely we will execute every function in
708 * the kernel.
709 */
710 functions = 20000;
711#endif
712
Steven Rostedtcafb1682009-03-24 20:50:39 -0400713 pg = stat->start = stat->pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400714
Steven Rostedt318e0a72009-03-25 20:06:34 -0400715 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
716
Namhyung Kim39e30cd2013-04-01 21:46:24 +0900717 for (i = 1; i < pages; i++) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400718 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400719 if (!pg->next)
Steven Rostedt318e0a72009-03-25 20:06:34 -0400720 goto out_free;
Steven Rostedt493762f2009-03-23 17:12:36 -0400721 pg = pg->next;
722 }
723
724 return 0;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400725
726 out_free:
727 pg = stat->start;
728 while (pg) {
729 unsigned long tmp = (unsigned long)pg;
730
731 pg = pg->next;
732 free_page(tmp);
733 }
734
Steven Rostedt318e0a72009-03-25 20:06:34 -0400735 stat->pages = NULL;
736 stat->start = NULL;
737
738 return -ENOMEM;
Steven Rostedt493762f2009-03-23 17:12:36 -0400739}
740
Steven Rostedtcafb1682009-03-24 20:50:39 -0400741static int ftrace_profile_init_cpu(int cpu)
Steven Rostedt493762f2009-03-23 17:12:36 -0400742{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400743 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400744 int size;
745
Steven Rostedtcafb1682009-03-24 20:50:39 -0400746 stat = &per_cpu(ftrace_profile_stats, cpu);
747
748 if (stat->hash) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400749 /* If the profile is already created, simply reset it */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400750 ftrace_profile_reset(stat);
Steven Rostedt493762f2009-03-23 17:12:36 -0400751 return 0;
752 }
753
754 /*
755 * We are profiling all functions, but usually only a few thousand
756 * functions are hit. We'll make a hash of 1024 items.
757 */
758 size = FTRACE_PROFILE_HASH_SIZE;
759
Steven Rostedtcafb1682009-03-24 20:50:39 -0400760 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400761
Steven Rostedtcafb1682009-03-24 20:50:39 -0400762 if (!stat->hash)
Steven Rostedt493762f2009-03-23 17:12:36 -0400763 return -ENOMEM;
764
Steven Rostedt318e0a72009-03-25 20:06:34 -0400765 /* Preallocate the function profiling pages */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400766 if (ftrace_profile_pages_init(stat) < 0) {
767 kfree(stat->hash);
768 stat->hash = NULL;
Steven Rostedt493762f2009-03-23 17:12:36 -0400769 return -ENOMEM;
770 }
771
772 return 0;
773}
774
Steven Rostedtcafb1682009-03-24 20:50:39 -0400775static int ftrace_profile_init(void)
776{
777 int cpu;
778 int ret = 0;
779
Miao Xiec4602c12013-12-16 15:20:01 +0800780 for_each_possible_cpu(cpu) {
Steven Rostedtcafb1682009-03-24 20:50:39 -0400781 ret = ftrace_profile_init_cpu(cpu);
782 if (ret)
783 break;
784 }
785
786 return ret;
787}
788
Steven Rostedt493762f2009-03-23 17:12:36 -0400789/* interrupts must be disabled */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400790static struct ftrace_profile *
791ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400792{
793 struct ftrace_profile *rec;
794 struct hlist_head *hhd;
Steven Rostedt493762f2009-03-23 17:12:36 -0400795 unsigned long key;
796
Namhyung Kim20079eb2013-04-10 08:55:50 +0900797 key = hash_long(ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400798 hhd = &stat->hash[key];
Steven Rostedt493762f2009-03-23 17:12:36 -0400799
800 if (hlist_empty(hhd))
801 return NULL;
802
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400803 hlist_for_each_entry_rcu_notrace(rec, hhd, node) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400804 if (rec->ip == ip)
805 return rec;
806 }
807
808 return NULL;
809}
810
Steven Rostedtcafb1682009-03-24 20:50:39 -0400811static void ftrace_add_profile(struct ftrace_profile_stat *stat,
812 struct ftrace_profile *rec)
Steven Rostedt493762f2009-03-23 17:12:36 -0400813{
814 unsigned long key;
815
Namhyung Kim20079eb2013-04-10 08:55:50 +0900816 key = hash_long(rec->ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400817 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
Steven Rostedt493762f2009-03-23 17:12:36 -0400818}
819
Steven Rostedt318e0a72009-03-25 20:06:34 -0400820/*
821 * The memory is already allocated, this simply finds a new record to use.
822 */
Steven Rostedt493762f2009-03-23 17:12:36 -0400823static struct ftrace_profile *
Steven Rostedt318e0a72009-03-25 20:06:34 -0400824ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400825{
826 struct ftrace_profile *rec = NULL;
827
Steven Rostedt318e0a72009-03-25 20:06:34 -0400828 /* prevent recursion (from NMIs) */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400829 if (atomic_inc_return(&stat->disabled) != 1)
Steven Rostedt493762f2009-03-23 17:12:36 -0400830 goto out;
831
Steven Rostedt493762f2009-03-23 17:12:36 -0400832 /*
Steven Rostedt318e0a72009-03-25 20:06:34 -0400833 * Try to find the function again since an NMI
834 * could have added it
Steven Rostedt493762f2009-03-23 17:12:36 -0400835 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400836 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400837 if (rec)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400838 goto out;
Steven Rostedt493762f2009-03-23 17:12:36 -0400839
Steven Rostedtcafb1682009-03-24 20:50:39 -0400840 if (stat->pages->index == PROFILES_PER_PAGE) {
841 if (!stat->pages->next)
842 goto out;
843 stat->pages = stat->pages->next;
Steven Rostedt493762f2009-03-23 17:12:36 -0400844 }
845
Steven Rostedtcafb1682009-03-24 20:50:39 -0400846 rec = &stat->pages->records[stat->pages->index++];
Steven Rostedt493762f2009-03-23 17:12:36 -0400847 rec->ip = ip;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400848 ftrace_add_profile(stat, rec);
Steven Rostedt493762f2009-03-23 17:12:36 -0400849
Steven Rostedt493762f2009-03-23 17:12:36 -0400850 out:
Steven Rostedtcafb1682009-03-24 20:50:39 -0400851 atomic_dec(&stat->disabled);
Steven Rostedt493762f2009-03-23 17:12:36 -0400852
853 return rec;
854}
855
Steven Rostedt493762f2009-03-23 17:12:36 -0400856static void
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400857function_profile_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400858 struct ftrace_ops *ops, struct pt_regs *regs)
Steven Rostedt493762f2009-03-23 17:12:36 -0400859{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400860 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400861 struct ftrace_profile *rec;
862 unsigned long flags;
Steven Rostedt493762f2009-03-23 17:12:36 -0400863
864 if (!ftrace_profile_enabled)
865 return;
866
Steven Rostedt493762f2009-03-23 17:12:36 -0400867 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400868
Christoph Lameterbdffd892014-04-29 14:17:40 -0500869 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400870 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400871 goto out;
872
873 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400874 if (!rec) {
Steven Rostedt318e0a72009-03-25 20:06:34 -0400875 rec = ftrace_profile_alloc(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400876 if (!rec)
877 goto out;
878 }
879
880 rec->counter++;
881 out:
882 local_irq_restore(flags);
883}
884
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400885#ifdef CONFIG_FUNCTION_GRAPH_TRACER
886static int profile_graph_entry(struct ftrace_graph_ent *trace)
887{
Namhyung Kim8861dd32016-08-31 11:55:29 +0900888 int index = trace->depth;
889
Steven Rostedta1e2e312011-08-09 12:50:46 -0400890 function_profile_call(trace->func, 0, NULL, NULL);
Namhyung Kim8861dd32016-08-31 11:55:29 +0900891
Steven Rostedt (VMware)a8f0f9e2017-08-17 16:37:25 -0400892 /* If function graph is shutting down, ret_stack can be NULL */
893 if (!current->ret_stack)
894 return 0;
895
Namhyung Kim8861dd32016-08-31 11:55:29 +0900896 if (index >= 0 && index < FTRACE_RETFUNC_DEPTH)
897 current->ret_stack[index].subtime = 0;
898
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400899 return 1;
900}
901
902static void profile_graph_return(struct ftrace_graph_ret *trace)
903{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400904 struct ftrace_profile_stat *stat;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400905 unsigned long long calltime;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400906 struct ftrace_profile *rec;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400907 unsigned long flags;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400908
909 local_irq_save(flags);
Christoph Lameterbdffd892014-04-29 14:17:40 -0500910 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400911 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400912 goto out;
913
Steven Rostedt37e44bc2010-04-27 21:04:24 -0400914 /* If the calltime was zero'd ignore it */
915 if (!trace->calltime)
916 goto out;
917
Steven Rostedta2a16d62009-03-24 23:17:58 -0400918 calltime = trace->rettime - trace->calltime;
919
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400920 if (!fgraph_graph_time) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400921 int index;
922
923 index = trace->depth;
924
925 /* Append this call time to the parent time to subtract */
926 if (index)
927 current->ret_stack[index - 1].subtime += calltime;
928
929 if (current->ret_stack[index].subtime < calltime)
930 calltime -= current->ret_stack[index].subtime;
931 else
932 calltime = 0;
933 }
934
Steven Rostedtcafb1682009-03-24 20:50:39 -0400935 rec = ftrace_find_profiled_func(stat, trace->func);
Chase Douglase330b3b2010-04-26 14:02:05 -0400936 if (rec) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400937 rec->time += calltime;
Chase Douglase330b3b2010-04-26 14:02:05 -0400938 rec->time_squared += calltime * calltime;
939 }
Steven Rostedta2a16d62009-03-24 23:17:58 -0400940
Steven Rostedtcafb1682009-03-24 20:50:39 -0400941 out:
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400942 local_irq_restore(flags);
943}
944
945static int register_ftrace_profiler(void)
946{
947 return register_ftrace_graph(&profile_graph_return,
948 &profile_graph_entry);
949}
950
951static void unregister_ftrace_profiler(void)
952{
953 unregister_ftrace_graph();
954}
955#else
Paul McQuadebd38c0e2011-05-31 20:51:55 +0100956static struct ftrace_ops ftrace_profile_ops __read_mostly = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400957 .func = function_profile_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900958 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400959 INIT_OPS_HASH(ftrace_profile_ops)
Steven Rostedt493762f2009-03-23 17:12:36 -0400960};
961
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400962static int register_ftrace_profiler(void)
963{
964 return register_ftrace_function(&ftrace_profile_ops);
965}
966
967static void unregister_ftrace_profiler(void)
968{
969 unregister_ftrace_function(&ftrace_profile_ops);
970}
971#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
972
Steven Rostedt493762f2009-03-23 17:12:36 -0400973static ssize_t
974ftrace_profile_write(struct file *filp, const char __user *ubuf,
975 size_t cnt, loff_t *ppos)
976{
977 unsigned long val;
Steven Rostedt493762f2009-03-23 17:12:36 -0400978 int ret;
979
Peter Huewe22fe9b52011-06-07 21:58:27 +0200980 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
981 if (ret)
Steven Rostedt493762f2009-03-23 17:12:36 -0400982 return ret;
983
984 val = !!val;
985
986 mutex_lock(&ftrace_profile_lock);
987 if (ftrace_profile_enabled ^ val) {
988 if (val) {
989 ret = ftrace_profile_init();
990 if (ret < 0) {
991 cnt = ret;
992 goto out;
993 }
994
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400995 ret = register_ftrace_profiler();
996 if (ret < 0) {
997 cnt = ret;
998 goto out;
999 }
Steven Rostedt493762f2009-03-23 17:12:36 -04001000 ftrace_profile_enabled = 1;
1001 } else {
1002 ftrace_profile_enabled = 0;
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -04001003 /*
1004 * unregister_ftrace_profiler calls stop_machine
1005 * so this acts like an synchronize_sched.
1006 */
Steven Rostedt0706f1c2009-03-23 23:12:58 -04001007 unregister_ftrace_profiler();
Steven Rostedt493762f2009-03-23 17:12:36 -04001008 }
1009 }
1010 out:
1011 mutex_unlock(&ftrace_profile_lock);
1012
Jiri Olsacf8517c2009-10-23 19:36:16 -04001013 *ppos += cnt;
Steven Rostedt493762f2009-03-23 17:12:36 -04001014
1015 return cnt;
1016}
1017
1018static ssize_t
1019ftrace_profile_read(struct file *filp, char __user *ubuf,
1020 size_t cnt, loff_t *ppos)
1021{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001022 char buf[64]; /* big enough to hold a number */
Steven Rostedt493762f2009-03-23 17:12:36 -04001023 int r;
1024
1025 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
1026 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
1027}
1028
1029static const struct file_operations ftrace_profile_fops = {
1030 .open = tracing_open_generic,
1031 .read = ftrace_profile_read,
1032 .write = ftrace_profile_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001033 .llseek = default_llseek,
Steven Rostedt493762f2009-03-23 17:12:36 -04001034};
1035
Steven Rostedtcafb1682009-03-24 20:50:39 -04001036/* used to initialize the real stat files */
1037static struct tracer_stat function_stats __initdata = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001038 .name = "functions",
1039 .stat_start = function_stat_start,
1040 .stat_next = function_stat_next,
1041 .stat_cmp = function_stat_cmp,
1042 .stat_headers = function_stat_headers,
1043 .stat_show = function_stat_show
Steven Rostedtcafb1682009-03-24 20:50:39 -04001044};
1045
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001046static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001047{
Steven Rostedtcafb1682009-03-24 20:50:39 -04001048 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -04001049 struct dentry *entry;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001050 char *name;
Steven Rostedt493762f2009-03-23 17:12:36 -04001051 int ret;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001052 int cpu;
Steven Rostedt493762f2009-03-23 17:12:36 -04001053
Steven Rostedtcafb1682009-03-24 20:50:39 -04001054 for_each_possible_cpu(cpu) {
1055 stat = &per_cpu(ftrace_profile_stats, cpu);
1056
Geliang Tang6363c6b2016-03-15 22:12:34 +08001057 name = kasprintf(GFP_KERNEL, "function%d", cpu);
Steven Rostedtcafb1682009-03-24 20:50:39 -04001058 if (!name) {
1059 /*
1060 * The files created are permanent, if something happens
1061 * we still do not free memory.
1062 */
Steven Rostedtcafb1682009-03-24 20:50:39 -04001063 WARN(1,
1064 "Could not allocate stat file for cpu %d\n",
1065 cpu);
1066 return;
1067 }
1068 stat->stat = function_stats;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001069 stat->stat.name = name;
1070 ret = register_stat_tracer(&stat->stat);
1071 if (ret) {
1072 WARN(1,
1073 "Could not register function stat for cpu %d\n",
1074 cpu);
1075 kfree(name);
1076 return;
1077 }
Steven Rostedt493762f2009-03-23 17:12:36 -04001078 }
1079
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001080 entry = tracefs_create_file("function_profile_enabled", 0644,
Steven Rostedt493762f2009-03-23 17:12:36 -04001081 d_tracer, NULL, &ftrace_profile_fops);
1082 if (!entry)
Joe Perchesa395d6a2016-03-22 14:28:09 -07001083 pr_warn("Could not create tracefs 'function_profile_enabled' entry\n");
Steven Rostedt493762f2009-03-23 17:12:36 -04001084}
1085
1086#else /* CONFIG_FUNCTION_PROFILER */
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001087static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001088{
1089}
1090#endif /* CONFIG_FUNCTION_PROFILER */
1091
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001092static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1093
Pratyush Anand1619dc32015-03-06 23:58:06 +05301094#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1095static int ftrace_graph_active;
1096#else
1097# define ftrace_graph_active 0
1098#endif
1099
Steven Rostedt3d083392008-05-12 21:20:42 +02001100#ifdef CONFIG_DYNAMIC_FTRACE
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001101
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001102static struct ftrace_ops *removed_ops;
1103
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04001104/*
1105 * Set when doing a global update, like enabling all recs or disabling them.
1106 * It is not set when just updating a single ftrace_ops.
1107 */
1108static bool update_all_ops;
1109
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001110#ifndef CONFIG_FTRACE_MCOUNT_RECORD
Steven Rostedtcb7be3b2008-10-23 09:33:05 -04001111# error Dynamic ftrace depends on MCOUNT_RECORD
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001112#endif
1113
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001114struct ftrace_func_entry {
1115 struct hlist_node hlist;
1116 unsigned long ip;
1117};
1118
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04001119struct ftrace_func_probe {
1120 struct ftrace_probe_ops *probe_ops;
1121 struct ftrace_ops ops;
1122 struct trace_array *tr;
1123 struct list_head list;
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04001124 void *data;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04001125 int ref;
1126};
1127
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001128/*
1129 * We make these constant because no one should touch them,
1130 * but they are used as the default "empty hash", to avoid allocating
1131 * it all the time. These are in a read only section such that if
1132 * anyone does try to modify it, it will cause an exception.
1133 */
1134static const struct hlist_head empty_buckets[1];
1135static const struct ftrace_hash empty_hash = {
1136 .buckets = (struct hlist_head *)empty_buckets,
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001137};
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001138#define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02001139
Steven Rostedt2b499382011-05-03 22:49:52 -04001140static struct ftrace_ops global_ops = {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001141 .func = ftrace_stub,
1142 .local_hash.notrace_hash = EMPTY_HASH,
1143 .local_hash.filter_hash = EMPTY_HASH,
1144 INIT_OPS_HASH(global_ops)
1145 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04001146 FTRACE_OPS_FL_INITIALIZED |
1147 FTRACE_OPS_FL_PID,
Steven Rostedtf45948e2011-05-02 12:29:25 -04001148};
1149
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001150/*
1151 * This is used by __kernel_text_address() to return true if the
Steven Rostedt (Red Hat)0af26492014-11-20 10:05:36 -05001152 * address is on a dynamically allocated trampoline that would
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001153 * not return true for either core_kernel_text() or
1154 * is_module_text_address().
1155 */
1156bool is_ftrace_trampoline(unsigned long addr)
1157{
1158 struct ftrace_ops *op;
1159 bool ret = false;
1160
1161 /*
1162 * Some of the ops may be dynamically allocated,
1163 * they are freed after a synchronize_sched().
1164 */
1165 preempt_disable_notrace();
1166
1167 do_for_each_ftrace_op(op, ftrace_ops_list) {
1168 /*
1169 * This is to check for dynamically allocated trampolines.
1170 * Trampolines that are in kernel text will have
1171 * core_kernel_text() return true.
1172 */
1173 if (op->trampoline && op->trampoline_size)
1174 if (addr >= op->trampoline &&
1175 addr < op->trampoline + op->trampoline_size) {
1176 ret = true;
1177 goto out;
1178 }
1179 } while_for_each_ftrace_op(op);
1180
1181 out:
1182 preempt_enable_notrace();
1183
1184 return ret;
1185}
1186
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001187struct ftrace_page {
1188 struct ftrace_page *next;
Steven Rostedta7900872011-12-16 16:23:44 -05001189 struct dyn_ftrace *records;
Steven Rostedt431aa3f2009-01-06 12:43:01 -05001190 int index;
Steven Rostedta7900872011-12-16 16:23:44 -05001191 int size;
David Milleraa5e5ce2008-05-13 22:06:56 -07001192};
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001193
Steven Rostedta7900872011-12-16 16:23:44 -05001194#define ENTRY_SIZE sizeof(struct dyn_ftrace)
1195#define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001196
1197/* estimate from running different kernels */
1198#define NR_TO_INIT 10000
1199
1200static struct ftrace_page *ftrace_pages_start;
1201static struct ftrace_page *ftrace_pages;
1202
Steven Rostedt (VMware)2b0cce02017-02-01 12:19:33 -05001203static __always_inline unsigned long
1204ftrace_hash_key(struct ftrace_hash *hash, unsigned long ip)
1205{
1206 if (hash->size_bits > 0)
1207 return hash_long(ip, hash->size_bits);
1208
1209 return 0;
1210}
1211
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001212/* Only use this function if ftrace_hash_empty() has already been tested */
1213static __always_inline struct ftrace_func_entry *
1214__ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001215{
1216 unsigned long key;
1217 struct ftrace_func_entry *entry;
1218 struct hlist_head *hhd;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001219
Steven Rostedt (VMware)2b0cce02017-02-01 12:19:33 -05001220 key = ftrace_hash_key(hash, ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001221 hhd = &hash->buckets[key];
1222
Steven Rostedt1bb539c2013-05-28 14:38:43 -04001223 hlist_for_each_entry_rcu_notrace(entry, hhd, hlist) {
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001224 if (entry->ip == ip)
1225 return entry;
1226 }
1227 return NULL;
1228}
1229
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001230/**
1231 * ftrace_lookup_ip - Test to see if an ip exists in an ftrace_hash
1232 * @hash: The hash to look at
1233 * @ip: The instruction pointer to test
1234 *
1235 * Search a given @hash to see if a given instruction pointer (@ip)
1236 * exists in it.
1237 *
1238 * Returns the entry that holds the @ip if found. NULL otherwise.
1239 */
1240struct ftrace_func_entry *
1241ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1242{
1243 if (ftrace_hash_empty(hash))
1244 return NULL;
1245
1246 return __ftrace_lookup_ip(hash, ip);
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
Steven Rostedt (VMware)2b0cce02017-02-01 12:19:33 -05001255 key = ftrace_hash_key(hash, entry->ip);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001256 hhd = &hash->buckets[key];
1257 hlist_add_head(&entry->hlist, hhd);
1258 hash->count++;
1259}
1260
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001261static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1262{
1263 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001264
1265 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1266 if (!entry)
1267 return -ENOMEM;
1268
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001269 entry->ip = ip;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001270 __add_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001271
1272 return 0;
1273}
1274
1275static void
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001276free_hash_entry(struct ftrace_hash *hash,
1277 struct ftrace_func_entry *entry)
1278{
1279 hlist_del(&entry->hlist);
1280 kfree(entry);
1281 hash->count--;
1282}
1283
1284static void
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001285remove_hash_entry(struct ftrace_hash *hash,
1286 struct ftrace_func_entry *entry)
1287{
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04001288 hlist_del_rcu(&entry->hlist);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001289 hash->count--;
1290}
1291
1292static void ftrace_hash_clear(struct ftrace_hash *hash)
1293{
1294 struct hlist_head *hhd;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001295 struct hlist_node *tn;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001296 struct ftrace_func_entry *entry;
1297 int size = 1 << hash->size_bits;
1298 int i;
1299
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001300 if (!hash->count)
1301 return;
1302
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001303 for (i = 0; i < size; i++) {
1304 hhd = &hash->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001305 hlist_for_each_entry_safe(entry, tn, hhd, hlist)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001306 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001307 }
1308 FTRACE_WARN_ON(hash->count);
1309}
1310
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04001311static void free_ftrace_mod(struct ftrace_mod_load *ftrace_mod)
1312{
1313 list_del(&ftrace_mod->list);
1314 kfree(ftrace_mod->module);
1315 kfree(ftrace_mod->func);
1316 kfree(ftrace_mod);
1317}
1318
1319static void clear_ftrace_mod_list(struct list_head *head)
1320{
1321 struct ftrace_mod_load *p, *n;
1322
1323 /* stack tracer isn't supported yet */
1324 if (!head)
1325 return;
1326
1327 mutex_lock(&ftrace_lock);
1328 list_for_each_entry_safe(p, n, head, list)
1329 free_ftrace_mod(p);
1330 mutex_unlock(&ftrace_lock);
1331}
1332
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001333static void free_ftrace_hash(struct ftrace_hash *hash)
1334{
1335 if (!hash || hash == EMPTY_HASH)
1336 return;
1337 ftrace_hash_clear(hash);
1338 kfree(hash->buckets);
1339 kfree(hash);
1340}
1341
Steven Rostedt07fd5512011-05-05 18:03:47 -04001342static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1343{
1344 struct ftrace_hash *hash;
1345
1346 hash = container_of(rcu, struct ftrace_hash, rcu);
1347 free_ftrace_hash(hash);
1348}
1349
1350static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1351{
1352 if (!hash || hash == EMPTY_HASH)
1353 return;
1354 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1355}
1356
Jiri Olsa5500fa52012-02-15 15:51:54 +01001357void ftrace_free_filter(struct ftrace_ops *ops)
1358{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09001359 ftrace_ops_init(ops);
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001360 free_ftrace_hash(ops->func_hash->filter_hash);
1361 free_ftrace_hash(ops->func_hash->notrace_hash);
Jiri Olsa5500fa52012-02-15 15:51:54 +01001362}
1363
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001364static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1365{
1366 struct ftrace_hash *hash;
1367 int size;
1368
1369 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1370 if (!hash)
1371 return NULL;
1372
1373 size = 1 << size_bits;
Thomas Meyer47b0edc2011-11-29 22:08:00 +01001374 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001375
1376 if (!hash->buckets) {
1377 kfree(hash);
1378 return NULL;
1379 }
1380
1381 hash->size_bits = size_bits;
1382
1383 return hash;
1384}
1385
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04001386
1387static int ftrace_add_mod(struct trace_array *tr,
1388 const char *func, const char *module,
1389 int enable)
1390{
1391 struct ftrace_mod_load *ftrace_mod;
1392 struct list_head *mod_head = enable ? &tr->mod_trace : &tr->mod_notrace;
1393
1394 ftrace_mod = kzalloc(sizeof(*ftrace_mod), GFP_KERNEL);
1395 if (!ftrace_mod)
1396 return -ENOMEM;
1397
1398 ftrace_mod->func = kstrdup(func, GFP_KERNEL);
1399 ftrace_mod->module = kstrdup(module, GFP_KERNEL);
1400 ftrace_mod->enable = enable;
1401
1402 if (!ftrace_mod->func || !ftrace_mod->module)
1403 goto out_free;
1404
1405 list_add(&ftrace_mod->list, mod_head);
1406
1407 return 0;
1408
1409 out_free:
1410 free_ftrace_mod(ftrace_mod);
1411
1412 return -ENOMEM;
1413}
1414
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001415static struct ftrace_hash *
1416alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1417{
1418 struct ftrace_func_entry *entry;
1419 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001420 int size;
1421 int ret;
1422 int i;
1423
1424 new_hash = alloc_ftrace_hash(size_bits);
1425 if (!new_hash)
1426 return NULL;
1427
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04001428 if (hash)
1429 new_hash->flags = hash->flags;
1430
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001431 /* Empty hash? */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001432 if (ftrace_hash_empty(hash))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001433 return new_hash;
1434
1435 size = 1 << hash->size_bits;
1436 for (i = 0; i < size; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001437 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001438 ret = add_hash_entry(new_hash, entry->ip);
1439 if (ret < 0)
1440 goto free_hash;
1441 }
1442 }
1443
1444 FTRACE_WARN_ON(new_hash->count != hash->count);
1445
1446 return new_hash;
1447
1448 free_hash:
1449 free_ftrace_hash(new_hash);
1450 return NULL;
1451}
1452
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001453static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001454ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001455static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001456ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001457
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001458static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1459 struct ftrace_hash *new_hash);
1460
Namhyung Kim3e278c02017-01-20 11:44:45 +09001461static struct ftrace_hash *
1462__ftrace_hash_move(struct ftrace_hash *src)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001463{
1464 struct ftrace_func_entry *entry;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001465 struct hlist_node *tn;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001466 struct hlist_head *hhd;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001467 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001468 int size = src->count;
1469 int bits = 0;
1470 int i;
1471
1472 /*
Namhyung Kim3e278c02017-01-20 11:44:45 +09001473 * If the new source is empty, just return the empty_hash.
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001474 */
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04001475 if (ftrace_hash_empty(src))
Namhyung Kim3e278c02017-01-20 11:44:45 +09001476 return EMPTY_HASH;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001477
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001478 /*
1479 * Make the hash size about 1/2 the # found
1480 */
1481 for (size /= 2; size; size >>= 1)
1482 bits++;
1483
1484 /* Don't allocate too much */
1485 if (bits > FTRACE_HASH_MAX_BITS)
1486 bits = FTRACE_HASH_MAX_BITS;
1487
Steven Rostedt07fd5512011-05-05 18:03:47 -04001488 new_hash = alloc_ftrace_hash(bits);
1489 if (!new_hash)
Namhyung Kim3e278c02017-01-20 11:44:45 +09001490 return NULL;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001491
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04001492 new_hash->flags = src->flags;
1493
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001494 size = 1 << src->size_bits;
1495 for (i = 0; i < size; i++) {
1496 hhd = &src->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001497 hlist_for_each_entry_safe(entry, tn, hhd, hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001498 remove_hash_entry(src, entry);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001499 __add_hash_entry(new_hash, entry);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001500 }
1501 }
1502
Namhyung Kim3e278c02017-01-20 11:44:45 +09001503 return new_hash;
1504}
1505
1506static int
1507ftrace_hash_move(struct ftrace_ops *ops, int enable,
1508 struct ftrace_hash **dst, struct ftrace_hash *src)
1509{
1510 struct ftrace_hash *new_hash;
1511 int ret;
1512
1513 /* Reject setting notrace hash on IPMODIFY ftrace_ops */
1514 if (ops->flags & FTRACE_OPS_FL_IPMODIFY && !enable)
1515 return -EINVAL;
1516
1517 new_hash = __ftrace_hash_move(src);
1518 if (!new_hash)
1519 return -ENOMEM;
1520
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001521 /* Make sure this can be applied if it is IPMODIFY ftrace_ops */
1522 if (enable) {
1523 /* IPMODIFY should be updated only when filter_hash updating */
1524 ret = ftrace_hash_ipmodify_update(ops, new_hash);
1525 if (ret < 0) {
1526 free_ftrace_hash(new_hash);
1527 return ret;
1528 }
1529 }
1530
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001531 /*
1532 * Remove the current set, update the hash and add
1533 * them back.
1534 */
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001535 ftrace_hash_rec_disable_modify(ops, enable);
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001536
Steven Rostedt07fd5512011-05-05 18:03:47 -04001537 rcu_assign_pointer(*dst, new_hash);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001538
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001539 ftrace_hash_rec_enable_modify(ops, enable);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001540
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001541 return 0;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001542}
1543
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001544static bool hash_contains_ip(unsigned long ip,
1545 struct ftrace_ops_hash *hash)
1546{
1547 /*
1548 * The function record is a match if it exists in the filter
1549 * hash and not in the notrace hash. Note, an emty hash is
1550 * considered a match for the filter hash, but an empty
1551 * notrace hash is considered not in the notrace hash.
1552 */
1553 return (ftrace_hash_empty(hash->filter_hash) ||
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001554 __ftrace_lookup_ip(hash->filter_hash, ip)) &&
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001555 (ftrace_hash_empty(hash->notrace_hash) ||
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001556 !__ftrace_lookup_ip(hash->notrace_hash, ip));
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001557}
1558
Steven Rostedt265c8312009-02-13 12:43:56 -05001559/*
Steven Rostedtb8489142011-05-04 09:27:52 -04001560 * Test the hashes for this ops to see if we want to call
1561 * the ops->func or not.
1562 *
1563 * It's a match if the ip is in the ops->filter_hash or
1564 * the filter_hash does not exist or is empty,
1565 * AND
1566 * the ip is not in the ops->notrace_hash.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04001567 *
1568 * This needs to be called with preemption disabled as
1569 * the hashes are freed with call_rcu_sched().
Steven Rostedtb8489142011-05-04 09:27:52 -04001570 */
1571static int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001572ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04001573{
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001574 struct ftrace_ops_hash hash;
Steven Rostedtb8489142011-05-04 09:27:52 -04001575 int ret;
1576
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001577#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1578 /*
1579 * There's a small race when adding ops that the ftrace handler
1580 * that wants regs, may be called without them. We can not
1581 * allow that handler to be called if regs is NULL.
1582 */
1583 if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS))
1584 return 0;
1585#endif
1586
Chunyan Zhangf86f4182017-06-07 16:12:51 +08001587 rcu_assign_pointer(hash.filter_hash, ops->func_hash->filter_hash);
1588 rcu_assign_pointer(hash.notrace_hash, ops->func_hash->notrace_hash);
Steven Rostedtb8489142011-05-04 09:27:52 -04001589
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001590 if (hash_contains_ip(ip, &hash))
Steven Rostedtb8489142011-05-04 09:27:52 -04001591 ret = 1;
1592 else
1593 ret = 0;
Steven Rostedtb8489142011-05-04 09:27:52 -04001594
1595 return ret;
1596}
1597
1598/*
Steven Rostedt265c8312009-02-13 12:43:56 -05001599 * This is a double for. Do not use 'break' to break out of the loop,
1600 * you must use a goto.
1601 */
1602#define do_for_each_ftrace_rec(pg, rec) \
1603 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1604 int _____i; \
1605 for (_____i = 0; _____i < pg->index; _____i++) { \
1606 rec = &pg->records[_____i];
1607
1608#define while_for_each_ftrace_rec() \
1609 } \
1610 }
Abhishek Sagarecea6562008-06-21 23:47:53 +05301611
Steven Rostedt5855fea2011-12-16 19:27:42 -05001612
1613static int ftrace_cmp_recs(const void *a, const void *b)
1614{
Steven Rostedta650e022012-04-25 13:48:13 -04001615 const struct dyn_ftrace *key = a;
1616 const struct dyn_ftrace *rec = b;
Steven Rostedt5855fea2011-12-16 19:27:42 -05001617
Steven Rostedta650e022012-04-25 13:48:13 -04001618 if (key->flags < rec->ip)
Steven Rostedt5855fea2011-12-16 19:27:42 -05001619 return -1;
Steven Rostedta650e022012-04-25 13:48:13 -04001620 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1621 return 1;
1622 return 0;
1623}
1624
Michael Ellerman04cf31a2016-03-24 22:04:01 +11001625/**
1626 * ftrace_location_range - return the first address of a traced location
1627 * if it touches the given ip range
1628 * @start: start of range to search.
1629 * @end: end of range to search (inclusive). @end points to the last byte
1630 * to check.
1631 *
1632 * Returns rec->ip if the related ftrace location is a least partly within
1633 * the given address range. That is, the first address of the instruction
1634 * that is either a NOP or call to the function tracer. It checks the ftrace
1635 * internal tables to determine if the address belongs or not.
1636 */
1637unsigned long ftrace_location_range(unsigned long start, unsigned long end)
Steven Rostedta650e022012-04-25 13:48:13 -04001638{
1639 struct ftrace_page *pg;
1640 struct dyn_ftrace *rec;
1641 struct dyn_ftrace key;
1642
1643 key.ip = start;
1644 key.flags = end; /* overload flags, as it is unsigned long */
1645
1646 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1647 if (end < pg->records[0].ip ||
1648 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1649 continue;
1650 rec = bsearch(&key, pg->records, pg->index,
1651 sizeof(struct dyn_ftrace),
1652 ftrace_cmp_recs);
1653 if (rec)
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001654 return rec->ip;
Steven Rostedta650e022012-04-25 13:48:13 -04001655 }
1656
Steven Rostedt5855fea2011-12-16 19:27:42 -05001657 return 0;
1658}
1659
Steven Rostedtc88fd862011-08-16 09:53:39 -04001660/**
1661 * ftrace_location - return true if the ip giving is a traced location
1662 * @ip: the instruction pointer to check
1663 *
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001664 * Returns rec->ip if @ip given is a pointer to a ftrace location.
Steven Rostedtc88fd862011-08-16 09:53:39 -04001665 * That is, the instruction that is either a NOP or call to
1666 * the function tracer. It checks the ftrace internal tables to
1667 * determine if the address belongs or not.
1668 */
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001669unsigned long ftrace_location(unsigned long ip)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001670{
Steven Rostedta650e022012-04-25 13:48:13 -04001671 return ftrace_location_range(ip, ip);
1672}
Steven Rostedtc88fd862011-08-16 09:53:39 -04001673
Steven Rostedta650e022012-04-25 13:48:13 -04001674/**
1675 * ftrace_text_reserved - return true if range contains an ftrace location
1676 * @start: start of range to search
1677 * @end: end of range to search (inclusive). @end points to the last byte to check.
1678 *
1679 * Returns 1 if @start and @end contains a ftrace location.
1680 * That is, the instruction that is either a NOP or call to
1681 * the function tracer. It checks the ftrace internal tables to
1682 * determine if the address belongs or not.
1683 */
Sasha Levind88471c2013-01-09 18:09:20 -05001684int ftrace_text_reserved(const void *start, const void *end)
Steven Rostedta650e022012-04-25 13:48:13 -04001685{
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001686 unsigned long ret;
1687
1688 ret = ftrace_location_range((unsigned long)start,
1689 (unsigned long)end);
1690
1691 return (int)!!ret;
Steven Rostedtc88fd862011-08-16 09:53:39 -04001692}
1693
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001694/* Test if ops registered to this rec needs regs */
1695static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec)
1696{
1697 struct ftrace_ops *ops;
1698 bool keep_regs = false;
1699
1700 for (ops = ftrace_ops_list;
1701 ops != &ftrace_list_end; ops = ops->next) {
1702 /* pass rec in as regs to have non-NULL val */
1703 if (ftrace_ops_test(ops, rec->ip, rec)) {
1704 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1705 keep_regs = true;
1706 break;
1707 }
1708 }
1709 }
1710
1711 return keep_regs;
1712}
1713
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001714static bool __ftrace_hash_rec_update(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001715 int filter_hash,
1716 bool inc)
1717{
1718 struct ftrace_hash *hash;
1719 struct ftrace_hash *other_hash;
1720 struct ftrace_page *pg;
1721 struct dyn_ftrace *rec;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001722 bool update = false;
Steven Rostedted926f92011-05-03 13:25:24 -04001723 int count = 0;
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04001724 int all = false;
Steven Rostedted926f92011-05-03 13:25:24 -04001725
1726 /* Only update if the ops has been registered */
1727 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001728 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001729
1730 /*
1731 * In the filter_hash case:
1732 * If the count is zero, we update all records.
1733 * Otherwise we just update the items in the hash.
1734 *
1735 * In the notrace_hash case:
1736 * We enable the update in the hash.
1737 * As disabling notrace means enabling the tracing,
1738 * and enabling notrace means disabling, the inc variable
1739 * gets inversed.
1740 */
1741 if (filter_hash) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001742 hash = ops->func_hash->filter_hash;
1743 other_hash = ops->func_hash->notrace_hash;
Steven Rostedt06a51d92011-12-19 19:07:36 -05001744 if (ftrace_hash_empty(hash))
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04001745 all = true;
Steven Rostedted926f92011-05-03 13:25:24 -04001746 } else {
1747 inc = !inc;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001748 hash = ops->func_hash->notrace_hash;
1749 other_hash = ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04001750 /*
1751 * If the notrace hash has no items,
1752 * then there's nothing to do.
1753 */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001754 if (ftrace_hash_empty(hash))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001755 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001756 }
1757
1758 do_for_each_ftrace_rec(pg, rec) {
1759 int in_other_hash = 0;
1760 int in_hash = 0;
1761 int match = 0;
1762
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05001763 if (rec->flags & FTRACE_FL_DISABLED)
1764 continue;
1765
Steven Rostedted926f92011-05-03 13:25:24 -04001766 if (all) {
1767 /*
1768 * Only the filter_hash affects all records.
1769 * Update if the record is not in the notrace hash.
1770 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001771 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
Steven Rostedted926f92011-05-03 13:25:24 -04001772 match = 1;
1773 } else {
Steven Rostedt06a51d92011-12-19 19:07:36 -05001774 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1775 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
Steven Rostedted926f92011-05-03 13:25:24 -04001776
1777 /*
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001778 * If filter_hash is set, we want to match all functions
1779 * that are in the hash but not in the other hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001780 *
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001781 * If filter_hash is not set, then we are decrementing.
1782 * That means we match anything that is in the hash
1783 * and also in the other_hash. That is, we need to turn
1784 * off functions in the other hash because they are disabled
1785 * by this hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001786 */
1787 if (filter_hash && in_hash && !in_other_hash)
1788 match = 1;
1789 else if (!filter_hash && in_hash &&
Steven Rostedt06a51d92011-12-19 19:07:36 -05001790 (in_other_hash || ftrace_hash_empty(other_hash)))
Steven Rostedted926f92011-05-03 13:25:24 -04001791 match = 1;
1792 }
1793 if (!match)
1794 continue;
1795
1796 if (inc) {
1797 rec->flags++;
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001798 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001799 return false;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001800
1801 /*
1802 * If there's only a single callback registered to a
1803 * function, and the ops has a trampoline registered
1804 * for it, then we can call it directly.
1805 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001806 if (ftrace_rec_count(rec) == 1 && ops->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001807 rec->flags |= FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001808 else
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001809 /*
1810 * If we are adding another function callback
1811 * to this function, and the previous had a
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04001812 * custom trampoline in use, then we need to go
1813 * back to the default trampoline.
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001814 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001815 rec->flags &= ~FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001816
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001817 /*
1818 * If any ops wants regs saved for this function
1819 * then all ops will get saved regs.
1820 */
1821 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1822 rec->flags |= FTRACE_FL_REGS;
Steven Rostedted926f92011-05-03 13:25:24 -04001823 } else {
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001824 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001825 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001826 rec->flags--;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001827
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001828 /*
1829 * If the rec had REGS enabled and the ops that is
1830 * being removed had REGS set, then see if there is
1831 * still any ops for this record that wants regs.
1832 * If not, we can stop recording them.
1833 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001834 if (ftrace_rec_count(rec) > 0 &&
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001835 rec->flags & FTRACE_FL_REGS &&
1836 ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1837 if (!test_rec_ops_needs_regs(rec))
1838 rec->flags &= ~FTRACE_FL_REGS;
1839 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001840
1841 /*
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001842 * If the rec had TRAMP enabled, then it needs to
1843 * be cleared. As TRAMP can only be enabled iff
1844 * there is only a single ops attached to it.
1845 * In otherwords, always disable it on decrementing.
1846 * In the future, we may set it if rec count is
1847 * decremented to one, and the ops that is left
1848 * has a trampoline.
1849 */
1850 rec->flags &= ~FTRACE_FL_TRAMP;
1851
1852 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001853 * flags will be cleared in ftrace_check_record()
1854 * if rec count is zero.
1855 */
Steven Rostedted926f92011-05-03 13:25:24 -04001856 }
1857 count++;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001858
1859 /* Must match FTRACE_UPDATE_CALLS in ftrace_modify_all_code() */
1860 update |= ftrace_test_record(rec, 1) != FTRACE_UPDATE_IGNORE;
1861
Steven Rostedted926f92011-05-03 13:25:24 -04001862 /* Shortcut, if we handled all records, we are done. */
1863 if (!all && count == hash->count)
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001864 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001865 } while_for_each_ftrace_rec();
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001866
1867 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001868}
1869
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001870static bool ftrace_hash_rec_disable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001871 int filter_hash)
1872{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001873 return __ftrace_hash_rec_update(ops, filter_hash, 0);
Steven Rostedted926f92011-05-03 13:25:24 -04001874}
1875
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001876static bool ftrace_hash_rec_enable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001877 int filter_hash)
1878{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001879 return __ftrace_hash_rec_update(ops, filter_hash, 1);
Steven Rostedted926f92011-05-03 13:25:24 -04001880}
1881
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001882static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops,
1883 int filter_hash, int inc)
1884{
1885 struct ftrace_ops *op;
1886
1887 __ftrace_hash_rec_update(ops, filter_hash, inc);
1888
1889 if (ops->func_hash != &global_ops.local_hash)
1890 return;
1891
1892 /*
1893 * If the ops shares the global_ops hash, then we need to update
1894 * all ops that are enabled and use this hash.
1895 */
1896 do_for_each_ftrace_op(op, ftrace_ops_list) {
1897 /* Already done */
1898 if (op == ops)
1899 continue;
1900 if (op->func_hash == &global_ops.local_hash)
1901 __ftrace_hash_rec_update(op, filter_hash, inc);
1902 } while_for_each_ftrace_op(op);
1903}
1904
1905static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops,
1906 int filter_hash)
1907{
1908 ftrace_hash_rec_update_modify(ops, filter_hash, 0);
1909}
1910
1911static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops,
1912 int filter_hash)
1913{
1914 ftrace_hash_rec_update_modify(ops, filter_hash, 1);
1915}
1916
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001917/*
1918 * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK
1919 * or no-needed to update, -EBUSY if it detects a conflict of the flag
1920 * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs.
1921 * Note that old_hash and new_hash has below meanings
1922 * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected)
1923 * - If the hash is EMPTY_HASH, it hits nothing
1924 * - Anything else hits the recs which match the hash entries.
1925 */
1926static int __ftrace_hash_update_ipmodify(struct ftrace_ops *ops,
1927 struct ftrace_hash *old_hash,
1928 struct ftrace_hash *new_hash)
1929{
1930 struct ftrace_page *pg;
1931 struct dyn_ftrace *rec, *end = NULL;
1932 int in_old, in_new;
1933
1934 /* Only update if the ops has been registered */
1935 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1936 return 0;
1937
1938 if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY))
1939 return 0;
1940
1941 /*
1942 * Since the IPMODIFY is a very address sensitive action, we do not
1943 * allow ftrace_ops to set all functions to new hash.
1944 */
1945 if (!new_hash || !old_hash)
1946 return -EINVAL;
1947
1948 /* Update rec->flags */
1949 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05001950
1951 if (rec->flags & FTRACE_FL_DISABLED)
1952 continue;
1953
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001954 /* We need to update only differences of filter_hash */
1955 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1956 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1957 if (in_old == in_new)
1958 continue;
1959
1960 if (in_new) {
1961 /* New entries must ensure no others are using it */
1962 if (rec->flags & FTRACE_FL_IPMODIFY)
1963 goto rollback;
1964 rec->flags |= FTRACE_FL_IPMODIFY;
1965 } else /* Removed entry */
1966 rec->flags &= ~FTRACE_FL_IPMODIFY;
1967 } while_for_each_ftrace_rec();
1968
1969 return 0;
1970
1971rollback:
1972 end = rec;
1973
1974 /* Roll back what we did above */
1975 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05001976
1977 if (rec->flags & FTRACE_FL_DISABLED)
1978 continue;
1979
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001980 if (rec == end)
1981 goto err_out;
1982
1983 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1984 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1985 if (in_old == in_new)
1986 continue;
1987
1988 if (in_new)
1989 rec->flags &= ~FTRACE_FL_IPMODIFY;
1990 else
1991 rec->flags |= FTRACE_FL_IPMODIFY;
1992 } while_for_each_ftrace_rec();
1993
1994err_out:
1995 return -EBUSY;
1996}
1997
1998static int ftrace_hash_ipmodify_enable(struct ftrace_ops *ops)
1999{
2000 struct ftrace_hash *hash = ops->func_hash->filter_hash;
2001
2002 if (ftrace_hash_empty(hash))
2003 hash = NULL;
2004
2005 return __ftrace_hash_update_ipmodify(ops, EMPTY_HASH, hash);
2006}
2007
2008/* Disabling always succeeds */
2009static void ftrace_hash_ipmodify_disable(struct ftrace_ops *ops)
2010{
2011 struct ftrace_hash *hash = ops->func_hash->filter_hash;
2012
2013 if (ftrace_hash_empty(hash))
2014 hash = NULL;
2015
2016 __ftrace_hash_update_ipmodify(ops, hash, EMPTY_HASH);
2017}
2018
2019static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
2020 struct ftrace_hash *new_hash)
2021{
2022 struct ftrace_hash *old_hash = ops->func_hash->filter_hash;
2023
2024 if (ftrace_hash_empty(old_hash))
2025 old_hash = NULL;
2026
2027 if (ftrace_hash_empty(new_hash))
2028 new_hash = NULL;
2029
2030 return __ftrace_hash_update_ipmodify(ops, old_hash, new_hash);
2031}
2032
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002033static void print_ip_ins(const char *fmt, const unsigned char *p)
Steven Rostedt05736a42008-09-22 14:55:47 -07002034{
2035 int i;
2036
2037 printk(KERN_CONT "%s", fmt);
2038
2039 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
2040 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
2041}
2042
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002043static struct ftrace_ops *
2044ftrace_find_tramp_ops_any(struct dyn_ftrace *rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002045static struct ftrace_ops *
2046ftrace_find_tramp_ops_next(struct dyn_ftrace *rec, struct ftrace_ops *ops);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002047
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002048enum ftrace_bug_type ftrace_bug_type;
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002049const void *ftrace_expected;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002050
2051static void print_bug_type(void)
2052{
2053 switch (ftrace_bug_type) {
2054 case FTRACE_BUG_UNKNOWN:
2055 break;
2056 case FTRACE_BUG_INIT:
2057 pr_info("Initializing ftrace call sites\n");
2058 break;
2059 case FTRACE_BUG_NOP:
2060 pr_info("Setting ftrace call site to NOP\n");
2061 break;
2062 case FTRACE_BUG_CALL:
2063 pr_info("Setting ftrace call site to call ftrace function\n");
2064 break;
2065 case FTRACE_BUG_UPDATE:
2066 pr_info("Updating ftrace call site to call a different ftrace function\n");
2067 break;
2068 }
2069}
2070
Steven Rostedtc88fd862011-08-16 09:53:39 -04002071/**
2072 * ftrace_bug - report and shutdown function tracer
2073 * @failed: The failed type (EFAULT, EINVAL, EPERM)
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002074 * @rec: The record that failed
Steven Rostedtc88fd862011-08-16 09:53:39 -04002075 *
2076 * The arch code that enables or disables the function tracing
2077 * can call ftrace_bug() when it has detected a problem in
2078 * modifying the code. @failed should be one of either:
2079 * EFAULT - if the problem happens on reading the @ip address
2080 * EINVAL - if what is read at @ip is not what was expected
2081 * EPERM - if the problem happens on writting to the @ip address
2082 */
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002083void ftrace_bug(int failed, struct dyn_ftrace *rec)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002084{
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002085 unsigned long ip = rec ? rec->ip : 0;
2086
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002087 switch (failed) {
2088 case -EFAULT:
2089 FTRACE_WARN_ON_ONCE(1);
2090 pr_info("ftrace faulted on modifying ");
2091 print_ip_sym(ip);
2092 break;
2093 case -EINVAL:
2094 FTRACE_WARN_ON_ONCE(1);
2095 pr_info("ftrace failed to modify ");
2096 print_ip_sym(ip);
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002097 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002098 pr_cont("\n");
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002099 if (ftrace_expected) {
2100 print_ip_ins(" expected: ", ftrace_expected);
2101 pr_cont("\n");
2102 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002103 break;
2104 case -EPERM:
2105 FTRACE_WARN_ON_ONCE(1);
2106 pr_info("ftrace faulted on writing ");
2107 print_ip_sym(ip);
2108 break;
2109 default:
2110 FTRACE_WARN_ON_ONCE(1);
2111 pr_info("ftrace faulted on unknown error ");
2112 print_ip_sym(ip);
2113 }
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002114 print_bug_type();
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002115 if (rec) {
2116 struct ftrace_ops *ops = NULL;
2117
2118 pr_info("ftrace record flags: %lx\n", rec->flags);
2119 pr_cont(" (%ld)%s", ftrace_rec_count(rec),
2120 rec->flags & FTRACE_FL_REGS ? " R" : " ");
2121 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2122 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002123 if (ops) {
2124 do {
2125 pr_cont("\ttramp: %pS (%pS)",
2126 (void *)ops->trampoline,
2127 (void *)ops->func);
2128 ops = ftrace_find_tramp_ops_next(rec, ops);
2129 } while (ops);
2130 } else
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002131 pr_cont("\ttramp: ERROR!");
2132
2133 }
2134 ip = ftrace_get_addr_curr(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002135 pr_cont("\n expected tramp: %lx\n", ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002136 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002137}
2138
Steven Rostedtc88fd862011-08-16 09:53:39 -04002139static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02002140{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002141 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01002142
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002143 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2144
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002145 if (rec->flags & FTRACE_FL_DISABLED)
2146 return FTRACE_UPDATE_IGNORE;
2147
Steven Rostedt982c3502008-11-15 16:31:41 -05002148 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002149 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05002150 *
Steven Rostedted926f92011-05-03 13:25:24 -04002151 * If the record has a ref count, then we need to enable it
2152 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05002153 *
Steven Rostedted926f92011-05-03 13:25:24 -04002154 * Otherwise we make sure its disabled.
2155 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002156 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04002157 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05002158 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002159 if (enable && ftrace_rec_count(rec))
Steven Rostedted926f92011-05-03 13:25:24 -04002160 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02002161
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002162 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002163 * If enabling and the REGS flag does not match the REGS_EN, or
2164 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
2165 * this record. Set flags to fail the compare against ENABLED.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002166 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002167 if (flag) {
2168 if (!(rec->flags & FTRACE_FL_REGS) !=
2169 !(rec->flags & FTRACE_FL_REGS_EN))
2170 flag |= FTRACE_FL_REGS;
2171
2172 if (!(rec->flags & FTRACE_FL_TRAMP) !=
2173 !(rec->flags & FTRACE_FL_TRAMP_EN))
2174 flag |= FTRACE_FL_TRAMP;
2175 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002176
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002177 /* If the state of this record hasn't changed, then do nothing */
2178 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04002179 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002180
2181 if (flag) {
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002182 /* Save off if rec is being enabled (for return value) */
2183 flag ^= rec->flags & FTRACE_FL_ENABLED;
2184
2185 if (update) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04002186 rec->flags |= FTRACE_FL_ENABLED;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002187 if (flag & FTRACE_FL_REGS) {
2188 if (rec->flags & FTRACE_FL_REGS)
2189 rec->flags |= FTRACE_FL_REGS_EN;
2190 else
2191 rec->flags &= ~FTRACE_FL_REGS_EN;
2192 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002193 if (flag & FTRACE_FL_TRAMP) {
2194 if (rec->flags & FTRACE_FL_TRAMP)
2195 rec->flags |= FTRACE_FL_TRAMP_EN;
2196 else
2197 rec->flags &= ~FTRACE_FL_TRAMP_EN;
2198 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002199 }
2200
2201 /*
2202 * If this record is being updated from a nop, then
2203 * return UPDATE_MAKE_CALL.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002204 * Otherwise,
2205 * return UPDATE_MODIFY_CALL to tell the caller to convert
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002206 * from the save regs, to a non-save regs function or
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002207 * vice versa, or from a trampoline call.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002208 */
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002209 if (flag & FTRACE_FL_ENABLED) {
2210 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002211 return FTRACE_UPDATE_MAKE_CALL;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002212 }
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002213
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002214 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002215 return FTRACE_UPDATE_MODIFY_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002216 }
2217
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002218 if (update) {
2219 /* If there's no more users, clear all flags */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002220 if (!ftrace_rec_count(rec))
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002221 rec->flags = 0;
2222 else
Steven Rostedt (Red Hat)b24d4432015-03-04 23:10:28 -05002223 /*
2224 * Just disable the record, but keep the ops TRAMP
2225 * and REGS states. The _EN flags must be disabled though.
2226 */
2227 rec->flags &= ~(FTRACE_FL_ENABLED | FTRACE_FL_TRAMP_EN |
2228 FTRACE_FL_REGS_EN);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002229 }
Steven Rostedtc88fd862011-08-16 09:53:39 -04002230
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002231 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002232 return FTRACE_UPDATE_MAKE_NOP;
2233}
2234
2235/**
2236 * ftrace_update_record, set a record that now is tracing or not
2237 * @rec: the record to update
2238 * @enable: set to 1 if the record is tracing, zero to force disable
2239 *
2240 * The records that represent all functions that can be traced need
2241 * to be updated when tracing has been enabled.
2242 */
2243int ftrace_update_record(struct dyn_ftrace *rec, int enable)
2244{
2245 return ftrace_check_record(rec, enable, 1);
2246}
2247
2248/**
2249 * ftrace_test_record, check if the record has been enabled or not
2250 * @rec: the record to test
2251 * @enable: set to 1 to check if enabled, 0 if it is disabled
2252 *
2253 * The arch code may need to test if a record is already set to
2254 * tracing to determine how to modify the function code that it
2255 * represents.
2256 */
2257int ftrace_test_record(struct dyn_ftrace *rec, int enable)
2258{
2259 return ftrace_check_record(rec, enable, 0);
2260}
2261
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002262static struct ftrace_ops *
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002263ftrace_find_tramp_ops_any(struct dyn_ftrace *rec)
2264{
2265 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002266 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002267
2268 do_for_each_ftrace_op(op, ftrace_ops_list) {
2269
2270 if (!op->trampoline)
2271 continue;
2272
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002273 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002274 return op;
2275 } while_for_each_ftrace_op(op);
2276
2277 return NULL;
2278}
2279
2280static struct ftrace_ops *
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002281ftrace_find_tramp_ops_next(struct dyn_ftrace *rec,
2282 struct ftrace_ops *op)
2283{
2284 unsigned long ip = rec->ip;
2285
2286 while_for_each_ftrace_op(op) {
2287
2288 if (!op->trampoline)
2289 continue;
2290
2291 if (hash_contains_ip(ip, op->func_hash))
2292 return op;
2293 }
2294
2295 return NULL;
2296}
2297
2298static struct ftrace_ops *
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002299ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec)
2300{
2301 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002302 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002303
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002304 /*
2305 * Need to check removed ops first.
2306 * If they are being removed, and this rec has a tramp,
2307 * and this rec is in the ops list, then it would be the
2308 * one with the tramp.
2309 */
2310 if (removed_ops) {
2311 if (hash_contains_ip(ip, &removed_ops->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002312 return removed_ops;
2313 }
2314
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002315 /*
2316 * Need to find the current trampoline for a rec.
2317 * Now, a trampoline is only attached to a rec if there
2318 * was a single 'ops' attached to it. But this can be called
2319 * when we are adding another op to the rec or removing the
2320 * current one. Thus, if the op is being added, we can
2321 * ignore it because it hasn't attached itself to the rec
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002322 * yet.
2323 *
2324 * If an ops is being modified (hooking to different functions)
2325 * then we don't care about the new functions that are being
2326 * added, just the old ones (that are probably being removed).
2327 *
2328 * If we are adding an ops to a function that already is using
2329 * a trampoline, it needs to be removed (trampolines are only
2330 * for single ops connected), then an ops that is not being
2331 * modified also needs to be checked.
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002332 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002333 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002334
2335 if (!op->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002336 continue;
2337
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002338 /*
2339 * If the ops is being added, it hasn't gotten to
2340 * the point to be removed from this tree yet.
2341 */
2342 if (op->flags & FTRACE_OPS_FL_ADDING)
2343 continue;
2344
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002345
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002346 /*
2347 * If the ops is being modified and is in the old
2348 * hash, then it is probably being removed from this
2349 * function.
2350 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002351 if ((op->flags & FTRACE_OPS_FL_MODIFYING) &&
2352 hash_contains_ip(ip, &op->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002353 return op;
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002354 /*
2355 * If the ops is not being added or modified, and it's
2356 * in its normal filter hash, then this must be the one
2357 * we want!
2358 */
2359 if (!(op->flags & FTRACE_OPS_FL_MODIFYING) &&
2360 hash_contains_ip(ip, op->func_hash))
2361 return op;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002362
2363 } while_for_each_ftrace_op(op);
2364
2365 return NULL;
2366}
2367
2368static struct ftrace_ops *
2369ftrace_find_tramp_ops_new(struct dyn_ftrace *rec)
2370{
2371 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002372 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002373
2374 do_for_each_ftrace_op(op, ftrace_ops_list) {
2375 /* pass rec in as regs to have non-NULL val */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002376 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002377 return op;
2378 } while_for_each_ftrace_op(op);
2379
2380 return NULL;
2381}
2382
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002383/**
2384 * ftrace_get_addr_new - Get the call address to set to
2385 * @rec: The ftrace record descriptor
2386 *
2387 * If the record has the FTRACE_FL_REGS set, that means that it
2388 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2389 * is not not set, then it wants to convert to the normal callback.
2390 *
2391 * Returns the address of the trampoline to set to
2392 */
2393unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec)
2394{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002395 struct ftrace_ops *ops;
2396
2397 /* Trampolines take precedence over regs */
2398 if (rec->flags & FTRACE_FL_TRAMP) {
2399 ops = ftrace_find_tramp_ops_new(rec);
2400 if (FTRACE_WARN_ON(!ops || !ops->trampoline)) {
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04002401 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2402 (void *)rec->ip, (void *)rec->ip, rec->flags);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002403 /* Ftrace is shutting down, return anything */
2404 return (unsigned long)FTRACE_ADDR;
2405 }
2406 return ops->trampoline;
2407 }
2408
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002409 if (rec->flags & FTRACE_FL_REGS)
2410 return (unsigned long)FTRACE_REGS_ADDR;
2411 else
2412 return (unsigned long)FTRACE_ADDR;
2413}
2414
2415/**
2416 * ftrace_get_addr_curr - Get the call address that is already there
2417 * @rec: The ftrace record descriptor
2418 *
2419 * The FTRACE_FL_REGS_EN is set when the record already points to
2420 * a function that saves all the regs. Basically the '_EN' version
2421 * represents the current state of the function.
2422 *
2423 * Returns the address of the trampoline that is currently being called
2424 */
2425unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec)
2426{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002427 struct ftrace_ops *ops;
2428
2429 /* Trampolines take precedence over regs */
2430 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2431 ops = ftrace_find_tramp_ops_curr(rec);
2432 if (FTRACE_WARN_ON(!ops)) {
Joe Perchesa395d6a2016-03-22 14:28:09 -07002433 pr_warn("Bad trampoline accounting at: %p (%pS)\n",
2434 (void *)rec->ip, (void *)rec->ip);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002435 /* Ftrace is shutting down, return anything */
2436 return (unsigned long)FTRACE_ADDR;
2437 }
2438 return ops->trampoline;
2439 }
2440
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002441 if (rec->flags & FTRACE_FL_REGS_EN)
2442 return (unsigned long)FTRACE_REGS_ADDR;
2443 else
2444 return (unsigned long)FTRACE_ADDR;
2445}
2446
Steven Rostedtc88fd862011-08-16 09:53:39 -04002447static int
2448__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
2449{
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002450 unsigned long ftrace_old_addr;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002451 unsigned long ftrace_addr;
2452 int ret;
2453
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002454 ftrace_addr = ftrace_get_addr_new(rec);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002455
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002456 /* This needs to be done before we call ftrace_update_record */
2457 ftrace_old_addr = ftrace_get_addr_curr(rec);
2458
2459 ret = ftrace_update_record(rec, enable);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002460
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002461 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2462
Steven Rostedtc88fd862011-08-16 09:53:39 -04002463 switch (ret) {
2464 case FTRACE_UPDATE_IGNORE:
2465 return 0;
2466
2467 case FTRACE_UPDATE_MAKE_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002468 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002469 return ftrace_make_call(rec, ftrace_addr);
2470
2471 case FTRACE_UPDATE_MAKE_NOP:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002472 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedt (Red Hat)39b55522014-08-17 20:59:10 -04002473 return ftrace_make_nop(NULL, rec, ftrace_old_addr);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002474
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002475 case FTRACE_UPDATE_MODIFY_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002476 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002477 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002478 }
2479
2480 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02002481}
2482
Steven Rostedte4f5d542012-04-27 09:13:18 -04002483void __weak ftrace_replace_code(int enable)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002484{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002485 struct dyn_ftrace *rec;
2486 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002487 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002488
Steven Rostedt45a4a232011-04-21 23:16:46 -04002489 if (unlikely(ftrace_disabled))
2490 return;
2491
Steven Rostedt265c8312009-02-13 12:43:56 -05002492 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05002493
2494 if (rec->flags & FTRACE_FL_DISABLED)
2495 continue;
2496
Steven Rostedte4f5d542012-04-27 09:13:18 -04002497 failed = __ftrace_replace_code(rec, enable);
Zhaoleifa9d13c2009-03-13 17:16:34 +08002498 if (failed) {
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002499 ftrace_bug(failed, rec);
Steven Rostedt3279ba32009-10-07 16:57:56 -04002500 /* Stop processing */
2501 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05002502 }
2503 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002504}
2505
Steven Rostedtc88fd862011-08-16 09:53:39 -04002506struct ftrace_rec_iter {
2507 struct ftrace_page *pg;
2508 int index;
2509};
2510
2511/**
2512 * ftrace_rec_iter_start, start up iterating over traced functions
2513 *
2514 * Returns an iterator handle that is used to iterate over all
2515 * the records that represent address locations where functions
2516 * are traced.
2517 *
2518 * May return NULL if no records are available.
2519 */
2520struct ftrace_rec_iter *ftrace_rec_iter_start(void)
2521{
2522 /*
2523 * We only use a single iterator.
2524 * Protected by the ftrace_lock mutex.
2525 */
2526 static struct ftrace_rec_iter ftrace_rec_iter;
2527 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
2528
2529 iter->pg = ftrace_pages_start;
2530 iter->index = 0;
2531
2532 /* Could have empty pages */
2533 while (iter->pg && !iter->pg->index)
2534 iter->pg = iter->pg->next;
2535
2536 if (!iter->pg)
2537 return NULL;
2538
2539 return iter;
2540}
2541
2542/**
2543 * ftrace_rec_iter_next, get the next record to process.
2544 * @iter: The handle to the iterator.
2545 *
2546 * Returns the next iterator after the given iterator @iter.
2547 */
2548struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
2549{
2550 iter->index++;
2551
2552 if (iter->index >= iter->pg->index) {
2553 iter->pg = iter->pg->next;
2554 iter->index = 0;
2555
2556 /* Could have empty pages */
2557 while (iter->pg && !iter->pg->index)
2558 iter->pg = iter->pg->next;
2559 }
2560
2561 if (!iter->pg)
2562 return NULL;
2563
2564 return iter;
2565}
2566
2567/**
2568 * ftrace_rec_iter_record, get the record at the iterator location
2569 * @iter: The current iterator location
2570 *
2571 * Returns the record that the current @iter is at.
2572 */
2573struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
2574{
2575 return &iter->pg->records[iter->index];
2576}
2577
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302578static int
Steven Rostedt31e88902008-11-14 16:21:19 -08002579ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002580{
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002581 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002582
Steven Rostedt45a4a232011-04-21 23:16:46 -04002583 if (unlikely(ftrace_disabled))
2584 return 0;
2585
Shaohua Li25aac9d2009-01-09 11:29:40 +08002586 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002587 if (ret) {
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002588 ftrace_bug_type = FTRACE_BUG_INIT;
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002589 ftrace_bug(ret, rec);
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302590 return 0;
Steven Rostedt37ad50842008-05-12 21:20:48 +02002591 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302592 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002593}
2594
Steven Rostedt000ab692009-02-17 13:35:06 -05002595/*
2596 * archs can override this function if they must do something
2597 * before the modifying code is performed.
2598 */
2599int __weak ftrace_arch_code_modify_prepare(void)
2600{
2601 return 0;
2602}
2603
2604/*
2605 * archs can override this function if they must do something
2606 * after the modifying code is performed.
2607 */
2608int __weak ftrace_arch_code_modify_post_process(void)
2609{
2610 return 0;
2611}
2612
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002613void ftrace_modify_all_code(int command)
2614{
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002615 int update = command & FTRACE_UPDATE_TRACE_FUNC;
Petr Mladekcd21067f2014-02-24 17:12:21 +01002616 int err = 0;
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002617
2618 /*
2619 * If the ftrace_caller calls a ftrace_ops func directly,
2620 * we need to make sure that it only traces functions it
2621 * expects to trace. When doing the switch of functions,
2622 * we need to update to the ftrace_ops_list_func first
2623 * before the transition between old and new calls are set,
2624 * as the ftrace_ops_list_func will check the ops hashes
2625 * to make sure the ops are having the right functions
2626 * traced.
2627 */
Petr Mladekcd21067f2014-02-24 17:12:21 +01002628 if (update) {
2629 err = ftrace_update_ftrace_func(ftrace_ops_list_func);
2630 if (FTRACE_WARN_ON(err))
2631 return;
2632 }
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002633
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002634 if (command & FTRACE_UPDATE_CALLS)
2635 ftrace_replace_code(1);
2636 else if (command & FTRACE_DISABLE_CALLS)
2637 ftrace_replace_code(0);
2638
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002639 if (update && ftrace_trace_function != ftrace_ops_list_func) {
2640 function_trace_op = set_function_trace_op;
2641 smp_wmb();
2642 /* If irqs are disabled, we are in stop machine */
2643 if (!irqs_disabled())
2644 smp_call_function(ftrace_sync_ipi, NULL, 1);
Petr Mladekcd21067f2014-02-24 17:12:21 +01002645 err = ftrace_update_ftrace_func(ftrace_trace_function);
2646 if (FTRACE_WARN_ON(err))
2647 return;
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002648 }
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002649
2650 if (command & FTRACE_START_FUNC_RET)
Petr Mladekcd21067f2014-02-24 17:12:21 +01002651 err = ftrace_enable_ftrace_graph_caller();
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002652 else if (command & FTRACE_STOP_FUNC_RET)
Petr Mladekcd21067f2014-02-24 17:12:21 +01002653 err = ftrace_disable_ftrace_graph_caller();
2654 FTRACE_WARN_ON(err);
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002655}
2656
Ingo Molnare309b412008-05-12 21:20:51 +02002657static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02002658{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002659 int *command = data;
2660
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002661 ftrace_modify_all_code(*command);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05002662
Steven Rostedtc88fd862011-08-16 09:53:39 -04002663 return 0;
2664}
2665
2666/**
2667 * ftrace_run_stop_machine, go back to the stop machine method
2668 * @command: The command to tell ftrace what to do
2669 *
2670 * If an arch needs to fall back to the stop machine method, the
2671 * it can call this function.
2672 */
2673void ftrace_run_stop_machine(int command)
2674{
2675 stop_machine(__ftrace_modify_code, &command, NULL);
2676}
2677
2678/**
2679 * arch_ftrace_update_code, modify the code to trace or not trace
2680 * @command: The command that needs to be done
2681 *
2682 * Archs can override this function if it does not need to
2683 * run stop_machine() to modify code.
2684 */
2685void __weak arch_ftrace_update_code(int command)
2686{
2687 ftrace_run_stop_machine(command);
2688}
2689
2690static void ftrace_run_update_code(int command)
2691{
2692 int ret;
2693
2694 ret = ftrace_arch_code_modify_prepare();
2695 FTRACE_WARN_ON(ret);
2696 if (ret)
2697 return;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002698
2699 /*
2700 * By default we use stop_machine() to modify the code.
2701 * But archs can do what ever they want as long as it
2702 * is safe. The stop_machine() is the safest, but also
2703 * produces the most overhead.
2704 */
2705 arch_ftrace_update_code(command);
2706
Steven Rostedt000ab692009-02-17 13:35:06 -05002707 ret = ftrace_arch_code_modify_post_process();
2708 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02002709}
2710
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002711static void ftrace_run_modify_code(struct ftrace_ops *ops, int command,
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002712 struct ftrace_ops_hash *old_hash)
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002713{
2714 ops->flags |= FTRACE_OPS_FL_MODIFYING;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002715 ops->old_hash.filter_hash = old_hash->filter_hash;
2716 ops->old_hash.notrace_hash = old_hash->notrace_hash;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002717 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002718 ops->old_hash.filter_hash = NULL;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002719 ops->old_hash.notrace_hash = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002720 ops->flags &= ~FTRACE_OPS_FL_MODIFYING;
2721}
2722
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002723static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002724static int ftrace_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002725
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002726void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops)
2727{
2728}
2729
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002730static void per_cpu_ops_free(struct ftrace_ops *ops)
Jiri Slabydb0fbad2014-03-10 21:42:11 +01002731{
2732 free_percpu(ops->disabled);
2733}
2734
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002735static void ftrace_startup_enable(int command)
2736{
2737 if (saved_ftrace_func != ftrace_trace_function) {
2738 saved_ftrace_func = ftrace_trace_function;
2739 command |= FTRACE_UPDATE_TRACE_FUNC;
2740 }
2741
2742 if (!command || !ftrace_enabled)
2743 return;
2744
2745 ftrace_run_update_code(command);
2746}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002747
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002748static void ftrace_startup_all(int command)
2749{
2750 update_all_ops = true;
2751 ftrace_startup_enable(command);
2752 update_all_ops = false;
2753}
2754
Steven Rostedta1cd6172011-05-23 15:24:25 -04002755static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002756{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002757 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002758
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002759 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04002760 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002761
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002762 ret = __register_ftrace_function(ops);
2763 if (ret)
2764 return ret;
2765
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002766 ftrace_start_up++;
Steven Rostedt3d083392008-05-12 21:20:42 +02002767
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002768 /*
2769 * Note that ftrace probes uses this to start up
2770 * and modify functions it will probe. But we still
2771 * set the ADDING flag for modification, as probes
2772 * do not have trampolines. If they add them in the
2773 * future, then the probes will need to distinguish
2774 * between adding and updating probes.
2775 */
2776 ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING;
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002777
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002778 ret = ftrace_hash_ipmodify_enable(ops);
2779 if (ret < 0) {
2780 /* Rollback registration process */
2781 __unregister_ftrace_function(ops);
2782 ftrace_start_up--;
2783 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2784 return ret;
2785 }
2786
Jiri Olsa7f50d062016-03-16 15:34:33 +01002787 if (ftrace_hash_rec_enable(ops, 1))
2788 command |= FTRACE_UPDATE_CALLS;
Steven Rostedted926f92011-05-03 13:25:24 -04002789
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002790 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04002791
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002792 ops->flags &= ~FTRACE_OPS_FL_ADDING;
2793
Steven Rostedta1cd6172011-05-23 15:24:25 -04002794 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002795}
2796
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002797static int ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002798{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002799 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002800
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002801 if (unlikely(ftrace_disabled))
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002802 return -ENODEV;
2803
2804 ret = __unregister_ftrace_function(ops);
2805 if (ret)
2806 return ret;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002807
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002808 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02002809 /*
2810 * Just warn in case of unbalance, no need to kill ftrace, it's not
2811 * critical but the ftrace_call callers may be never nopped again after
2812 * further ftrace uses.
2813 */
2814 WARN_ON_ONCE(ftrace_start_up < 0);
2815
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002816 /* Disabling ipmodify never fails */
2817 ftrace_hash_ipmodify_disable(ops);
Jiri Olsa7f50d062016-03-16 15:34:33 +01002818
2819 if (ftrace_hash_rec_disable(ops, 1))
2820 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtb8489142011-05-04 09:27:52 -04002821
Namhyung Kima737e6d2014-06-12 23:56:12 +09002822 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04002823
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002824 if (saved_ftrace_func != ftrace_trace_function) {
2825 saved_ftrace_func = ftrace_trace_function;
2826 command |= FTRACE_UPDATE_TRACE_FUNC;
2827 }
2828
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002829 if (!command || !ftrace_enabled) {
2830 /*
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002831 * If these are per_cpu ops, they still need their
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002832 * per_cpu field freed. Since, function tracing is
2833 * not currently active, we can just free them
2834 * without synchronizing all CPUs.
2835 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002836 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2837 per_cpu_ops_free(ops);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002838 return 0;
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002839 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002840
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002841 /*
2842 * If the ops uses a trampoline, then it needs to be
2843 * tested first on update.
2844 */
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002845 ops->flags |= FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002846 removed_ops = ops;
2847
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002848 /* The trampoline logic checks the old hashes */
2849 ops->old_hash.filter_hash = ops->func_hash->filter_hash;
2850 ops->old_hash.notrace_hash = ops->func_hash->notrace_hash;
2851
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002852 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002853
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002854 /*
2855 * If there's no more ops registered with ftrace, run a
2856 * sanity check to make sure all rec flags are cleared.
2857 */
Chunyan Zhangf86f4182017-06-07 16:12:51 +08002858 if (rcu_dereference_protected(ftrace_ops_list,
2859 lockdep_is_held(&ftrace_lock)) == &ftrace_list_end) {
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002860 struct ftrace_page *pg;
2861 struct dyn_ftrace *rec;
2862
2863 do_for_each_ftrace_rec(pg, rec) {
Alexei Starovoitov977c1f92016-11-07 15:14:20 -08002864 if (FTRACE_WARN_ON_ONCE(rec->flags & ~FTRACE_FL_DISABLED))
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002865 pr_warn(" %pS flags:%lx\n",
2866 (void *)rec->ip, rec->flags);
2867 } while_for_each_ftrace_rec();
2868 }
2869
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002870 ops->old_hash.filter_hash = NULL;
2871 ops->old_hash.notrace_hash = NULL;
2872
2873 removed_ops = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002874 ops->flags &= ~FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002875
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002876 /*
2877 * Dynamic ops may be freed, we must make sure that all
2878 * callers are done before leaving this function.
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002879 * The same goes for freeing the per_cpu data of the per_cpu
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002880 * ops.
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002881 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002882 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU)) {
Steven Rostedt (VMware)0598e4f2017-04-06 10:28:12 -04002883 /*
2884 * We need to do a hard force of sched synchronization.
2885 * This is because we use preempt_disable() to do RCU, but
2886 * the function tracers can be called where RCU is not watching
2887 * (like before user_exit()). We can not rely on the RCU
2888 * infrastructure to do the synchronization, thus we must do it
2889 * ourselves.
2890 */
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002891 schedule_on_each_cpu(ftrace_sync);
2892
Steven Rostedt (VMware)0598e4f2017-04-06 10:28:12 -04002893 /*
2894 * When the kernel is preeptive, tasks can be preempted
2895 * while on a ftrace trampoline. Just scheduling a task on
2896 * a CPU is not good enough to flush them. Calling
2897 * synchornize_rcu_tasks() will wait for those tasks to
2898 * execute and either schedule voluntarily or enter user space.
2899 */
2900 if (IS_ENABLED(CONFIG_PREEMPT))
2901 synchronize_rcu_tasks();
2902
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002903 arch_ftrace_trampoline_free(ops);
2904
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002905 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2906 per_cpu_ops_free(ops);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002907 }
2908
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002909 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002910}
2911
Ingo Molnare309b412008-05-12 21:20:51 +02002912static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002913{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302914 int command;
2915
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002916 if (unlikely(ftrace_disabled))
2917 return;
2918
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002919 /* Force update next time */
2920 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002921 /* ftrace_start_up is true if we want ftrace running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302922 if (ftrace_start_up) {
2923 command = FTRACE_UPDATE_CALLS;
2924 if (ftrace_graph_active)
2925 command |= FTRACE_START_FUNC_RET;
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05002926 ftrace_startup_enable(command);
Pratyush Anand1619dc32015-03-06 23:58:06 +05302927 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002928}
2929
Ingo Molnare309b412008-05-12 21:20:51 +02002930static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002931{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302932 int command;
2933
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002934 if (unlikely(ftrace_disabled))
2935 return;
2936
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002937 /* ftrace_start_up is true if ftrace is running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302938 if (ftrace_start_up) {
2939 command = FTRACE_DISABLE_CALLS;
2940 if (ftrace_graph_active)
2941 command |= FTRACE_STOP_FUNC_RET;
2942 ftrace_run_update_code(command);
2943 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002944}
2945
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002946static u64 ftrace_update_time;
Steven Rostedt3d083392008-05-12 21:20:42 +02002947unsigned long ftrace_update_tot_cnt;
2948
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002949static inline int ops_traces_mod(struct ftrace_ops *ops)
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002950{
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002951 /*
2952 * Filter_hash being empty will default to trace module.
2953 * But notrace hash requires a test of individual module functions.
2954 */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002955 return ftrace_hash_empty(ops->func_hash->filter_hash) &&
2956 ftrace_hash_empty(ops->func_hash->notrace_hash);
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002957}
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002958
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002959/*
2960 * Check if the current ops references the record.
2961 *
2962 * If the ops traces all functions, then it was already accounted for.
2963 * If the ops does not trace the current record function, skip it.
2964 * If the ops ignores the function via notrace filter, skip it.
2965 */
2966static inline bool
2967ops_references_rec(struct ftrace_ops *ops, struct dyn_ftrace *rec)
2968{
2969 /* If ops isn't enabled, ignore it */
2970 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
2971 return 0;
2972
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002973 /* If ops traces all then it includes this function */
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002974 if (ops_traces_mod(ops))
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002975 return 1;
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002976
2977 /* The function must be in the filter */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002978 if (!ftrace_hash_empty(ops->func_hash->filter_hash) &&
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05002979 !__ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002980 return 0;
2981
2982 /* If in notrace hash, we ignore it too */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002983 if (ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002984 return 0;
2985
2986 return 1;
2987}
2988
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002989static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs)
Steven Rostedt3d083392008-05-12 21:20:42 +02002990{
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002991 struct ftrace_page *pg;
Lai Jiangshane94142a2009-03-13 17:51:27 +08002992 struct dyn_ftrace *p;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002993 u64 start, stop;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002994 unsigned long update_cnt = 0;
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002995 unsigned long rec_flags = 0;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002996 int i;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002997
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002998 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002999
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05003000 /*
3001 * When a module is loaded, this function is called to convert
3002 * the calls to mcount in its text to nops, and also to create
3003 * an entry in the ftrace data. Now, if ftrace is activated
3004 * after this call, but before the module sets its text to
3005 * read-only, the modification of enabling ftrace can fail if
3006 * the read-only is done while ftrace is converting the calls.
3007 * To prevent this, the module's records are set as disabled
3008 * and will be enabled after the call to set the module's text
3009 * to read-only.
3010 */
3011 if (mod)
3012 rec_flags |= FTRACE_FL_DISABLED;
3013
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01003014 for (pg = new_pgs; pg; pg = pg->next) {
Abhishek Sagarf22f9a892008-06-21 23:50:29 +05303015
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003016 for (i = 0; i < pg->index; i++) {
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04003017
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003018 /* If something went wrong, bail without enabling anything */
3019 if (unlikely(ftrace_disabled))
3020 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02003021
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003022 p = &pg->records[i];
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05003023 p->flags = rec_flags;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05303024
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003025 /*
3026 * Do the initial record conversion from mcount jump
3027 * to the NOP instructions.
3028 */
3029 if (!ftrace_code_disable(mod, p))
3030 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003031
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01003032 update_cnt++;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003033 }
Steven Rostedt3d083392008-05-12 21:20:42 +02003034 }
3035
Ingo Molnar750ed1a2008-05-12 21:20:46 +02003036 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02003037 ftrace_update_time = stop - start;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01003038 ftrace_update_tot_cnt += update_cnt;
Steven Rostedt3d083392008-05-12 21:20:42 +02003039
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02003040 return 0;
3041}
3042
Steven Rostedta7900872011-12-16 16:23:44 -05003043static int ftrace_allocate_records(struct ftrace_page *pg, int count)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003044{
Steven Rostedta7900872011-12-16 16:23:44 -05003045 int order;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003046 int cnt;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003047
Steven Rostedta7900872011-12-16 16:23:44 -05003048 if (WARN_ON(!count))
3049 return -EINVAL;
3050
3051 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003052
3053 /*
Steven Rostedta7900872011-12-16 16:23:44 -05003054 * We want to fill as much as possible. No more than a page
3055 * may be empty.
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003056 */
Steven Rostedta7900872011-12-16 16:23:44 -05003057 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
3058 order--;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003059
Steven Rostedta7900872011-12-16 16:23:44 -05003060 again:
3061 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
3062
3063 if (!pg->records) {
3064 /* if we can't allocate this size, try something smaller */
3065 if (!order)
3066 return -ENOMEM;
3067 order >>= 1;
3068 goto again;
3069 }
3070
3071 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
3072 pg->size = cnt;
3073
3074 if (cnt > count)
3075 cnt = count;
3076
3077 return cnt;
3078}
3079
3080static struct ftrace_page *
3081ftrace_allocate_pages(unsigned long num_to_init)
3082{
3083 struct ftrace_page *start_pg;
3084 struct ftrace_page *pg;
3085 int order;
3086 int cnt;
3087
3088 if (!num_to_init)
3089 return 0;
3090
3091 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
3092 if (!pg)
3093 return NULL;
3094
3095 /*
3096 * Try to allocate as much as possible in one continues
3097 * location that fills in all of the space. We want to
3098 * waste as little space as possible.
3099 */
3100 for (;;) {
3101 cnt = ftrace_allocate_records(pg, num_to_init);
3102 if (cnt < 0)
3103 goto free_pages;
3104
3105 num_to_init -= cnt;
3106 if (!num_to_init)
3107 break;
3108
3109 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
3110 if (!pg->next)
3111 goto free_pages;
3112
3113 pg = pg->next;
3114 }
3115
3116 return start_pg;
3117
3118 free_pages:
Namhyung Kim1f61be002014-06-11 17:06:53 +09003119 pg = start_pg;
3120 while (pg) {
Steven Rostedta7900872011-12-16 16:23:44 -05003121 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3122 free_pages((unsigned long)pg->records, order);
3123 start_pg = pg->next;
3124 kfree(pg);
3125 pg = start_pg;
3126 }
3127 pr_info("ftrace: FAILED to allocate memory for functions\n");
3128 return NULL;
3129}
3130
Steven Rostedt5072c592008-05-12 21:20:43 +02003131#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
3132
3133struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003134 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003135 loff_t func_pos;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003136 loff_t mod_pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003137 struct ftrace_page *pg;
3138 struct dyn_ftrace *func;
3139 struct ftrace_func_probe *probe;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003140 struct ftrace_func_entry *probe_entry;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003141 struct trace_parser parser;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003142 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003143 struct ftrace_ops *ops;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003144 struct trace_array *tr;
3145 struct list_head *mod_list;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003146 int pidx;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003147 int idx;
3148 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02003149};
3150
Ingo Molnare309b412008-05-12 21:20:51 +02003151static void *
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003152t_probe_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003153{
3154 struct ftrace_iterator *iter = m->private;
Steven Rostedt (VMware)d2afd57a2017-04-20 11:31:35 -04003155 struct trace_array *tr = iter->ops->private;
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003156 struct list_head *func_probes;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003157 struct ftrace_hash *hash;
3158 struct list_head *next;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003159 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003160 struct hlist_head *hhd;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003161 int size;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003162
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003163 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003164 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003165
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003166 if (!tr)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003167 return NULL;
3168
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003169 func_probes = &tr->func_probes;
3170 if (list_empty(func_probes))
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003171 return NULL;
3172
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003173 if (!iter->probe) {
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003174 next = func_probes->next;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003175 iter->probe = list_entry(next, struct ftrace_func_probe, list);
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003176 }
3177
3178 if (iter->probe_entry)
3179 hnd = &iter->probe_entry->hlist;
3180
3181 hash = iter->probe->ops.func_hash->filter_hash;
3182 size = 1 << hash->size_bits;
3183
3184 retry:
3185 if (iter->pidx >= size) {
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003186 if (iter->probe->list.next == func_probes)
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003187 return NULL;
3188 next = iter->probe->list.next;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003189 iter->probe = list_entry(next, struct ftrace_func_probe, list);
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003190 hash = iter->probe->ops.func_hash->filter_hash;
3191 size = 1 << hash->size_bits;
3192 iter->pidx = 0;
3193 }
3194
3195 hhd = &hash->buckets[iter->pidx];
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003196
3197 if (hlist_empty(hhd)) {
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003198 iter->pidx++;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003199 hnd = NULL;
3200 goto retry;
3201 }
3202
3203 if (!hnd)
3204 hnd = hhd->first;
3205 else {
3206 hnd = hnd->next;
3207 if (!hnd) {
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003208 iter->pidx++;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003209 goto retry;
3210 }
3211 }
3212
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003213 if (WARN_ON_ONCE(!hnd))
3214 return NULL;
3215
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003216 iter->probe_entry = hlist_entry(hnd, struct ftrace_func_entry, hlist);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003217
3218 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003219}
3220
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003221static void *t_probe_start(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003222{
3223 struct ftrace_iterator *iter = m->private;
3224 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08003225 loff_t l;
3226
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003227 if (!(iter->flags & FTRACE_ITER_DO_PROBES))
Steven Rostedt69a30832011-12-19 15:21:16 -05003228 return NULL;
3229
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003230 if (iter->mod_pos > *pos)
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003231 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003232
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003233 iter->probe = NULL;
3234 iter->probe_entry = NULL;
3235 iter->pidx = 0;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003236 for (l = 0; l <= (*pos - iter->mod_pos); ) {
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003237 p = t_probe_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08003238 if (!p)
3239 break;
3240 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003241 if (!p)
3242 return NULL;
3243
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003244 /* Only set this if we have an item */
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003245 iter->flags |= FTRACE_ITER_PROBE;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003246
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003247 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003248}
3249
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003250static int
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003251t_probe_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003252{
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003253 struct ftrace_func_entry *probe_entry;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003254 struct ftrace_probe_ops *probe_ops;
3255 struct ftrace_func_probe *probe;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003256
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003257 probe = iter->probe;
3258 probe_entry = iter->probe_entry;
3259
3260 if (WARN_ON_ONCE(!probe || !probe_entry))
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003261 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003262
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003263 probe_ops = probe->probe_ops;
Steven Rostedt809dcf22009-02-16 23:06:01 -05003264
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003265 if (probe_ops->print)
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04003266 return probe_ops->print(m, probe_entry->ip, probe_ops, probe->data);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003267
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003268 seq_printf(m, "%ps:%ps\n", (void *)probe_entry->ip,
3269 (void *)probe_ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003270
3271 return 0;
3272}
3273
3274static void *
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003275t_mod_next(struct seq_file *m, loff_t *pos)
3276{
3277 struct ftrace_iterator *iter = m->private;
3278 struct trace_array *tr = iter->tr;
3279
3280 (*pos)++;
3281 iter->pos = *pos;
3282
3283 iter->mod_list = iter->mod_list->next;
3284
3285 if (iter->mod_list == &tr->mod_trace ||
3286 iter->mod_list == &tr->mod_notrace) {
3287 iter->flags &= ~FTRACE_ITER_MOD;
3288 return NULL;
3289 }
3290
3291 iter->mod_pos = *pos;
3292
3293 return iter;
3294}
3295
3296static void *t_mod_start(struct seq_file *m, loff_t *pos)
3297{
3298 struct ftrace_iterator *iter = m->private;
3299 void *p = NULL;
3300 loff_t l;
3301
3302 if (iter->func_pos > *pos)
3303 return NULL;
3304
3305 iter->mod_pos = iter->func_pos;
3306
3307 /* probes are only available if tr is set */
3308 if (!iter->tr)
3309 return NULL;
3310
3311 for (l = 0; l <= (*pos - iter->func_pos); ) {
3312 p = t_mod_next(m, &l);
3313 if (!p)
3314 break;
3315 }
3316 if (!p) {
3317 iter->flags &= ~FTRACE_ITER_MOD;
3318 return t_probe_start(m, pos);
3319 }
3320
3321 /* Only set this if we have an item */
3322 iter->flags |= FTRACE_ITER_MOD;
3323
3324 return iter;
3325}
3326
3327static int
3328t_mod_show(struct seq_file *m, struct ftrace_iterator *iter)
3329{
3330 struct ftrace_mod_load *ftrace_mod;
3331 struct trace_array *tr = iter->tr;
3332
3333 if (WARN_ON_ONCE(!iter->mod_list) ||
3334 iter->mod_list == &tr->mod_trace ||
3335 iter->mod_list == &tr->mod_notrace)
3336 return -EIO;
3337
3338 ftrace_mod = list_entry(iter->mod_list, struct ftrace_mod_load, list);
3339
3340 if (ftrace_mod->func)
3341 seq_printf(m, "%s", ftrace_mod->func);
3342 else
3343 seq_putc(m, '*');
3344
3345 seq_printf(m, ":mod:%s\n", ftrace_mod->module);
3346
3347 return 0;
3348}
3349
3350static void *
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003351t_func_next(struct seq_file *m, loff_t *pos)
Steven Rostedt5072c592008-05-12 21:20:43 +02003352{
3353 struct ftrace_iterator *iter = m->private;
3354 struct dyn_ftrace *rec = NULL;
3355
3356 (*pos)++;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003357
Steven Rostedt5072c592008-05-12 21:20:43 +02003358 retry:
3359 if (iter->idx >= iter->pg->index) {
3360 if (iter->pg->next) {
3361 iter->pg = iter->pg->next;
3362 iter->idx = 0;
3363 goto retry;
3364 }
3365 } else {
3366 rec = &iter->pg->records[iter->idx++];
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04003367 if (((iter->flags & (FTRACE_ITER_FILTER | FTRACE_ITER_NOTRACE)) &&
3368 !ftrace_lookup_ip(iter->hash, rec->ip)) ||
Steven Rostedt647bcd02011-05-03 14:39:21 -04003369
3370 ((iter->flags & FTRACE_ITER_ENABLED) &&
Steven Rostedt (Red Hat)23ea9c42013-05-09 19:31:48 -04003371 !(rec->flags & FTRACE_FL_ENABLED))) {
Steven Rostedt647bcd02011-05-03 14:39:21 -04003372
Steven Rostedt5072c592008-05-12 21:20:43 +02003373 rec = NULL;
3374 goto retry;
3375 }
3376 }
3377
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003378 if (!rec)
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003379 return NULL;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003380
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003381 iter->pos = iter->func_pos = *pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003382 iter->func = rec;
3383
3384 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003385}
3386
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003387static void *
3388t_next(struct seq_file *m, void *v, loff_t *pos)
3389{
3390 struct ftrace_iterator *iter = m->private;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003391 loff_t l = *pos; /* t_probe_start() must use original pos */
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003392 void *ret;
3393
3394 if (unlikely(ftrace_disabled))
3395 return NULL;
3396
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003397 if (iter->flags & FTRACE_ITER_PROBE)
3398 return t_probe_next(m, pos);
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003399
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003400 if (iter->flags & FTRACE_ITER_MOD)
3401 return t_mod_next(m, pos);
3402
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003403 if (iter->flags & FTRACE_ITER_PRINTALL) {
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003404 /* next must increment pos, and t_probe_start does not */
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003405 (*pos)++;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003406 return t_mod_start(m, &l);
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003407 }
3408
3409 ret = t_func_next(m, pos);
3410
3411 if (!ret)
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003412 return t_mod_start(m, &l);
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003413
3414 return ret;
3415}
3416
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003417static void reset_iter_read(struct ftrace_iterator *iter)
3418{
3419 iter->pos = 0;
3420 iter->func_pos = 0;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003421 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_PROBE | FTRACE_ITER_MOD);
Steven Rostedt5072c592008-05-12 21:20:43 +02003422}
3423
3424static void *t_start(struct seq_file *m, loff_t *pos)
3425{
3426 struct ftrace_iterator *iter = m->private;
3427 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08003428 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02003429
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003430 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003431
3432 if (unlikely(ftrace_disabled))
3433 return NULL;
3434
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003435 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003436 * If an lseek was done, then reset and start from beginning.
3437 */
3438 if (*pos < iter->pos)
3439 reset_iter_read(iter);
3440
3441 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003442 * For set_ftrace_filter reading, if we have the filter
3443 * off, we can short cut and just print out that all
3444 * functions are enabled.
3445 */
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04003446 if ((iter->flags & (FTRACE_ITER_FILTER | FTRACE_ITER_NOTRACE)) &&
3447 ftrace_hash_empty(iter->hash)) {
Steven Rostedt (VMware)43ff9262017-03-30 16:51:43 -04003448 iter->func_pos = 1; /* Account for the message */
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003449 if (*pos > 0)
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003450 return t_mod_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003451 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07003452 /* reset in case of seek/pread */
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003453 iter->flags &= ~FTRACE_ITER_PROBE;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003454 return iter;
3455 }
3456
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003457 if (iter->flags & FTRACE_ITER_MOD)
3458 return t_mod_start(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003459
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003460 /*
3461 * Unfortunately, we need to restart at ftrace_pages_start
3462 * every time we let go of the ftrace_mutex. This is because
3463 * those pointers can change without the lock.
3464 */
Li Zefan694ce0a2009-06-24 09:54:19 +08003465 iter->pg = ftrace_pages_start;
3466 iter->idx = 0;
3467 for (l = 0; l <= *pos; ) {
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003468 p = t_func_next(m, &l);
Li Zefan694ce0a2009-06-24 09:54:19 +08003469 if (!p)
3470 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08003471 }
walimis5821e1b2008-11-15 15:19:06 +08003472
Steven Rostedt69a30832011-12-19 15:21:16 -05003473 if (!p)
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003474 return t_mod_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003475
3476 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003477}
3478
3479static void t_stop(struct seq_file *m, void *p)
3480{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003481 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003482}
3483
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003484void * __weak
3485arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec)
3486{
3487 return NULL;
3488}
3489
3490static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops,
3491 struct dyn_ftrace *rec)
3492{
3493 void *ptr;
3494
3495 ptr = arch_ftrace_trampoline_func(ops, rec);
3496 if (ptr)
3497 seq_printf(m, " ->%pS", ptr);
3498}
3499
Steven Rostedt5072c592008-05-12 21:20:43 +02003500static int t_show(struct seq_file *m, void *v)
3501{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003502 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003503 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02003504
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003505 if (iter->flags & FTRACE_ITER_PROBE)
3506 return t_probe_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003507
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003508 if (iter->flags & FTRACE_ITER_MOD)
3509 return t_mod_show(m, iter);
3510
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003511 if (iter->flags & FTRACE_ITER_PRINTALL) {
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003512 if (iter->flags & FTRACE_ITER_NOTRACE)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003513 seq_puts(m, "#### no functions disabled ####\n");
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003514 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003515 seq_puts(m, "#### all functions enabled ####\n");
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003516 return 0;
3517 }
3518
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003519 rec = iter->func;
3520
Steven Rostedt5072c592008-05-12 21:20:43 +02003521 if (!rec)
3522 return 0;
3523
Steven Rostedt647bcd02011-05-03 14:39:21 -04003524 seq_printf(m, "%ps", (void *)rec->ip);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003525 if (iter->flags & FTRACE_ITER_ENABLED) {
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003526 struct ftrace_ops *ops;
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003527
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003528 seq_printf(m, " (%ld)%s%s",
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04003529 ftrace_rec_count(rec),
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003530 rec->flags & FTRACE_FL_REGS ? " R" : " ",
3531 rec->flags & FTRACE_FL_IPMODIFY ? " I" : " ");
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003532 if (rec->flags & FTRACE_FL_TRAMP_EN) {
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04003533 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003534 if (ops) {
3535 do {
3536 seq_printf(m, "\ttramp: %pS (%pS)",
3537 (void *)ops->trampoline,
3538 (void *)ops->func);
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003539 add_trampoline_func(m, ops, rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003540 ops = ftrace_find_tramp_ops_next(rec, ops);
3541 } while (ops);
3542 } else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003543 seq_puts(m, "\ttramp: ERROR!");
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003544 } else {
3545 add_trampoline_func(m, NULL, rec);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003546 }
3547 }
3548
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003549 seq_putc(m, '\n');
Steven Rostedt5072c592008-05-12 21:20:43 +02003550
3551 return 0;
3552}
3553
James Morris88e9d342009-09-22 16:43:43 -07003554static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003555 .start = t_start,
3556 .next = t_next,
3557 .stop = t_stop,
3558 .show = t_show,
3559};
3560
Ingo Molnare309b412008-05-12 21:20:51 +02003561static int
Steven Rostedt5072c592008-05-12 21:20:43 +02003562ftrace_avail_open(struct inode *inode, struct file *file)
3563{
3564 struct ftrace_iterator *iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003565
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003566 if (unlikely(ftrace_disabled))
3567 return -ENODEV;
3568
Jiri Olsa50e18b92012-04-25 10:23:39 +02003569 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003570 if (!iter)
3571 return -ENOMEM;
Steven Rostedt5072c592008-05-12 21:20:43 +02003572
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003573 iter->pg = ftrace_pages_start;
3574 iter->ops = &global_ops;
3575
3576 return 0;
Steven Rostedt5072c592008-05-12 21:20:43 +02003577}
3578
Steven Rostedt647bcd02011-05-03 14:39:21 -04003579static int
3580ftrace_enabled_open(struct inode *inode, struct file *file)
3581{
3582 struct ftrace_iterator *iter;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003583
Jiri Olsa50e18b92012-04-25 10:23:39 +02003584 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003585 if (!iter)
3586 return -ENOMEM;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003587
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003588 iter->pg = ftrace_pages_start;
3589 iter->flags = FTRACE_ITER_ENABLED;
3590 iter->ops = &global_ops;
3591
3592 return 0;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003593}
3594
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003595/**
3596 * ftrace_regex_open - initialize function tracer filter files
3597 * @ops: The ftrace_ops that hold the hash filters
3598 * @flag: The type of filter to process
3599 * @inode: The inode, usually passed in to your open routine
3600 * @file: The file, usually passed in to your open routine
3601 *
3602 * ftrace_regex_open() initializes the filter files for the
3603 * @ops. Depending on @flag it may process the filter hash or
3604 * the notrace hash of @ops. With this called from the open
3605 * routine, you can use ftrace_filter_write() for the write
3606 * routine if @flag has FTRACE_ITER_FILTER set, or
3607 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05003608 * tracing_lseek() should be used as the lseek routine, and
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003609 * release must call ftrace_regex_release().
3610 */
3611int
Steven Rostedtf45948e2011-05-02 12:29:25 -04003612ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003613 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003614{
3615 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003616 struct ftrace_hash *hash;
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003617 struct list_head *mod_head;
3618 struct trace_array *tr = ops->private;
Steven Rostedt5072c592008-05-12 21:20:43 +02003619 int ret = 0;
3620
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003621 ftrace_ops_init(ops);
3622
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003623 if (unlikely(ftrace_disabled))
3624 return -ENODEV;
3625
Steven Rostedt5072c592008-05-12 21:20:43 +02003626 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3627 if (!iter)
3628 return -ENOMEM;
3629
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003630 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
3631 kfree(iter);
3632 return -ENOMEM;
3633 }
3634
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003635 iter->ops = ops;
3636 iter->flags = flag;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003637 iter->tr = tr;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003638
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003639 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003640
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003641 if (flag & FTRACE_ITER_NOTRACE) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003642 hash = ops->func_hash->notrace_hash;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003643 mod_head = tr ? &tr->mod_notrace : NULL;
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003644 } else {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003645 hash = ops->func_hash->filter_hash;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003646 mod_head = tr ? &tr->mod_trace : NULL;
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003647 }
Steven Rostedtf45948e2011-05-02 12:29:25 -04003648
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003649 iter->mod_list = mod_head;
3650
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003651 if (file->f_mode & FMODE_WRITE) {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003652 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
3653
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003654 if (file->f_flags & O_TRUNC) {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003655 iter->hash = alloc_ftrace_hash(size_bits);
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003656 clear_ftrace_mod_list(mod_head);
3657 } else {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003658 iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash);
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003659 }
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003660
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003661 if (!iter->hash) {
3662 trace_parser_put(&iter->parser);
3663 kfree(iter);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003664 ret = -ENOMEM;
3665 goto out_unlock;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003666 }
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04003667 } else
3668 iter->hash = hash;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003669
Steven Rostedt5072c592008-05-12 21:20:43 +02003670 if (file->f_mode & FMODE_READ) {
3671 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02003672
3673 ret = seq_open(file, &show_ftrace_seq_ops);
3674 if (!ret) {
3675 struct seq_file *m = file->private_data;
3676 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08003677 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003678 /* Failed */
3679 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08003680 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003681 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08003682 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003683 } else
3684 file->private_data = iter;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003685
3686 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003687 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003688
3689 return ret;
3690}
3691
Steven Rostedt41c52c02008-05-22 11:46:33 -04003692static int
3693ftrace_filter_open(struct inode *inode, struct file *file)
3694{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003695 struct ftrace_ops *ops = inode->i_private;
3696
3697 return ftrace_regex_open(ops,
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003698 FTRACE_ITER_FILTER | FTRACE_ITER_DO_PROBES,
Steven Rostedt69a30832011-12-19 15:21:16 -05003699 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003700}
3701
3702static int
3703ftrace_notrace_open(struct inode *inode, struct file *file)
3704{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003705 struct ftrace_ops *ops = inode->i_private;
3706
3707 return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003708 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003709}
3710
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003711/* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */
3712struct ftrace_glob {
3713 char *search;
3714 unsigned len;
3715 int type;
3716};
3717
Thiago Jung Bauermann7132e2d2016-04-25 18:56:14 -03003718/*
3719 * If symbols in an architecture don't correspond exactly to the user-visible
3720 * name of what they represent, it is possible to define this function to
3721 * perform the necessary adjustments.
3722*/
3723char * __weak arch_ftrace_match_adjust(char *str, const char *search)
3724{
3725 return str;
3726}
3727
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003728static int ftrace_match(char *str, struct ftrace_glob *g)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003729{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003730 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08003731 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003732
Thiago Jung Bauermann7132e2d2016-04-25 18:56:14 -03003733 str = arch_ftrace_match_adjust(str, g->search);
3734
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003735 switch (g->type) {
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003736 case MATCH_FULL:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003737 if (strcmp(str, g->search) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003738 matched = 1;
3739 break;
3740 case MATCH_FRONT_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003741 if (strncmp(str, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003742 matched = 1;
3743 break;
3744 case MATCH_MIDDLE_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003745 if (strstr(str, g->search))
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003746 matched = 1;
3747 break;
3748 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08003749 slen = strlen(str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003750 if (slen >= g->len &&
3751 memcmp(str + slen - g->len, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003752 matched = 1;
3753 break;
Masami Hiramatsu60f1d5e2016-10-05 20:58:15 +09003754 case MATCH_GLOB:
3755 if (glob_match(g->search, str))
3756 matched = 1;
3757 break;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003758 }
3759
3760 return matched;
3761}
3762
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003763static int
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003764enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int clear_filter)
Steven Rostedt996e87b2011-04-26 16:11:03 -04003765{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003766 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003767 int ret = 0;
3768
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003769 entry = ftrace_lookup_ip(hash, rec->ip);
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003770 if (clear_filter) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003771 /* Do nothing if it doesn't exist */
3772 if (!entry)
3773 return 0;
3774
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003775 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003776 } else {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003777 /* Do nothing if it exists */
3778 if (entry)
3779 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003780
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003781 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003782 }
3783 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04003784}
3785
Steven Rostedt64e7c442009-02-13 17:08:48 -05003786static int
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003787ftrace_match_record(struct dyn_ftrace *rec, struct ftrace_glob *func_g,
3788 struct ftrace_glob *mod_g, int exclude_mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003789{
3790 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003791 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003792
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003793 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
3794
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003795 if (mod_g) {
3796 int mod_matches = (modname) ? ftrace_match(modname, mod_g) : 0;
3797
3798 /* blank module name to match all modules */
3799 if (!mod_g->len) {
3800 /* blank module globbing: modname xor exclude_mod */
Steven Rostedt (VMware)77c0edd2017-05-03 11:41:44 -04003801 if (!exclude_mod != !modname)
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003802 goto func_match;
3803 return 0;
3804 }
3805
Steven Rostedt (VMware)77c0edd2017-05-03 11:41:44 -04003806 /*
3807 * exclude_mod is set to trace everything but the given
3808 * module. If it is set and the module matches, then
3809 * return 0. If it is not set, and the module doesn't match
3810 * also return 0. Otherwise, check the function to see if
3811 * that matches.
3812 */
3813 if (!mod_matches == !exclude_mod)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003814 return 0;
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003815func_match:
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003816 /* blank search means to match all funcs in the mod */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003817 if (!func_g->len)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003818 return 1;
3819 }
3820
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003821 return ftrace_match(str, func_g);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003822}
3823
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003824static int
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003825match_records(struct ftrace_hash *hash, char *func, int len, char *mod)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003826{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003827 struct ftrace_page *pg;
3828 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003829 struct ftrace_glob func_g = { .type = MATCH_FULL };
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003830 struct ftrace_glob mod_g = { .type = MATCH_FULL };
3831 struct ftrace_glob *mod_match = (mod) ? &mod_g : NULL;
3832 int exclude_mod = 0;
Li Zefan311d16d2009-12-08 11:15:11 +08003833 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003834 int ret;
Dan Carpenter2e028c42017-07-12 10:35:57 +03003835 int clear_filter = 0;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003836
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003837 if (func) {
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003838 func_g.type = filter_parse_regex(func, len, &func_g.search,
3839 &clear_filter);
3840 func_g.len = strlen(func_g.search);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003841 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003842
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003843 if (mod) {
3844 mod_g.type = filter_parse_regex(mod, strlen(mod),
3845 &mod_g.search, &exclude_mod);
3846 mod_g.len = strlen(mod_g.search);
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003847 }
3848
Steven Rostedt52baf112009-02-14 01:15:39 -05003849 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003850
3851 if (unlikely(ftrace_disabled))
3852 goto out_unlock;
3853
Steven Rostedt265c8312009-02-13 12:43:56 -05003854 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05003855
3856 if (rec->flags & FTRACE_FL_DISABLED)
3857 continue;
3858
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003859 if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) {
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003860 ret = enter_record(hash, rec, clear_filter);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003861 if (ret < 0) {
3862 found = ret;
3863 goto out_unlock;
3864 }
Li Zefan311d16d2009-12-08 11:15:11 +08003865 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05003866 }
3867 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003868 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05003869 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08003870
3871 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02003872}
3873
Steven Rostedt64e7c442009-02-13 17:08:48 -05003874static int
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003875ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003876{
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003877 return match_records(hash, buff, len, NULL);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003878}
3879
Steven Rostedt (VMware)e16b35d2017-04-04 14:46:56 -04003880static void ftrace_ops_update_code(struct ftrace_ops *ops,
3881 struct ftrace_ops_hash *old_hash)
3882{
3883 struct ftrace_ops *op;
3884
3885 if (!ftrace_enabled)
3886 return;
3887
3888 if (ops->flags & FTRACE_OPS_FL_ENABLED) {
3889 ftrace_run_modify_code(ops, FTRACE_UPDATE_CALLS, old_hash);
3890 return;
3891 }
3892
3893 /*
3894 * If this is the shared global_ops filter, then we need to
3895 * check if there is another ops that shares it, is enabled.
3896 * If so, we still need to run the modify code.
3897 */
3898 if (ops->func_hash != &global_ops.local_hash)
3899 return;
3900
3901 do_for_each_ftrace_op(op, ftrace_ops_list) {
3902 if (op->func_hash == &global_ops.local_hash &&
3903 op->flags & FTRACE_OPS_FL_ENABLED) {
3904 ftrace_run_modify_code(op, FTRACE_UPDATE_CALLS, old_hash);
3905 /* Only need to do this once */
3906 return;
3907 }
3908 } while_for_each_ftrace_op(op);
3909}
3910
3911static int ftrace_hash_move_and_update_ops(struct ftrace_ops *ops,
3912 struct ftrace_hash **orig_hash,
3913 struct ftrace_hash *hash,
3914 int enable)
3915{
3916 struct ftrace_ops_hash old_hash_ops;
3917 struct ftrace_hash *old_hash;
3918 int ret;
3919
3920 old_hash = *orig_hash;
3921 old_hash_ops.filter_hash = ops->func_hash->filter_hash;
3922 old_hash_ops.notrace_hash = ops->func_hash->notrace_hash;
3923 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
3924 if (!ret) {
3925 ftrace_ops_update_code(ops, &old_hash_ops);
3926 free_ftrace_hash_rcu(old_hash);
3927 }
3928 return ret;
3929}
Steven Rostedt64e7c442009-02-13 17:08:48 -05003930
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003931static bool module_exists(const char *module)
3932{
3933 /* All modules have the symbol __this_module */
3934 const char this_mod[] = "__this_module";
3935 const int modname_size = MAX_PARAM_PREFIX_LEN + sizeof(this_mod) + 1;
3936 char modname[modname_size + 1];
3937 unsigned long val;
3938 int n;
3939
3940 n = snprintf(modname, modname_size + 1, "%s:%s", module, this_mod);
3941
3942 if (n > modname_size)
3943 return false;
3944
3945 val = module_kallsyms_lookup_name(modname);
3946 return val != 0;
3947}
3948
3949static int cache_mod(struct trace_array *tr,
3950 const char *func, char *module, int enable)
3951{
3952 struct ftrace_mod_load *ftrace_mod, *n;
3953 struct list_head *head = enable ? &tr->mod_trace : &tr->mod_notrace;
3954 int ret;
3955
3956 mutex_lock(&ftrace_lock);
3957
3958 /* We do not cache inverse filters */
3959 if (func[0] == '!') {
3960 func++;
3961 ret = -EINVAL;
3962
3963 /* Look to remove this hash */
3964 list_for_each_entry_safe(ftrace_mod, n, head, list) {
3965 if (strcmp(ftrace_mod->module, module) != 0)
3966 continue;
3967
3968 /* no func matches all */
Dan Carpenter44925df2017-07-12 10:33:40 +03003969 if (strcmp(func, "*") == 0 ||
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003970 (ftrace_mod->func &&
3971 strcmp(ftrace_mod->func, func) == 0)) {
3972 ret = 0;
3973 free_ftrace_mod(ftrace_mod);
3974 continue;
3975 }
3976 }
3977 goto out;
3978 }
3979
3980 ret = -EINVAL;
3981 /* We only care about modules that have not been loaded yet */
3982 if (module_exists(module))
3983 goto out;
3984
3985 /* Save this string off, and execute it when the module is loaded */
3986 ret = ftrace_add_mod(tr, func, module, enable);
3987 out:
3988 mutex_unlock(&ftrace_lock);
3989
3990 return ret;
3991}
3992
Steven Rostedt (VMware)d7fbf8d2017-06-26 10:57:21 -04003993static int
3994ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
3995 int reset, int enable);
3996
Arnd Bergmann69449bbd2017-07-10 10:44:03 +02003997#ifdef CONFIG_MODULES
Steven Rostedt (VMware)d7fbf8d2017-06-26 10:57:21 -04003998static void process_mod_list(struct list_head *head, struct ftrace_ops *ops,
3999 char *mod, bool enable)
4000{
4001 struct ftrace_mod_load *ftrace_mod, *n;
4002 struct ftrace_hash **orig_hash, *new_hash;
4003 LIST_HEAD(process_mods);
4004 char *func;
4005 int ret;
4006
4007 mutex_lock(&ops->func_hash->regex_lock);
4008
4009 if (enable)
4010 orig_hash = &ops->func_hash->filter_hash;
4011 else
4012 orig_hash = &ops->func_hash->notrace_hash;
4013
4014 new_hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS,
4015 *orig_hash);
4016 if (!new_hash)
Steven Rostedt (VMware)3b58a3c2017-06-28 09:09:38 -04004017 goto out; /* warn? */
Steven Rostedt (VMware)d7fbf8d2017-06-26 10:57:21 -04004018
4019 mutex_lock(&ftrace_lock);
4020
4021 list_for_each_entry_safe(ftrace_mod, n, head, list) {
4022
4023 if (strcmp(ftrace_mod->module, mod) != 0)
4024 continue;
4025
4026 if (ftrace_mod->func)
4027 func = kstrdup(ftrace_mod->func, GFP_KERNEL);
4028 else
4029 func = kstrdup("*", GFP_KERNEL);
4030
4031 if (!func) /* warn? */
4032 continue;
4033
4034 list_del(&ftrace_mod->list);
4035 list_add(&ftrace_mod->list, &process_mods);
4036
4037 /* Use the newly allocated func, as it may be "*" */
4038 kfree(ftrace_mod->func);
4039 ftrace_mod->func = func;
4040 }
4041
4042 mutex_unlock(&ftrace_lock);
4043
4044 list_for_each_entry_safe(ftrace_mod, n, &process_mods, list) {
4045
4046 func = ftrace_mod->func;
4047
4048 /* Grabs ftrace_lock, which is why we have this extra step */
4049 match_records(new_hash, func, strlen(func), mod);
4050 free_ftrace_mod(ftrace_mod);
4051 }
4052
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04004053 if (enable && list_empty(head))
4054 new_hash->flags &= ~FTRACE_HASH_FL_MOD;
4055
Steven Rostedt (VMware)d7fbf8d2017-06-26 10:57:21 -04004056 mutex_lock(&ftrace_lock);
4057
4058 ret = ftrace_hash_move_and_update_ops(ops, orig_hash,
4059 new_hash, enable);
4060 mutex_unlock(&ftrace_lock);
4061
Steven Rostedt (VMware)3b58a3c2017-06-28 09:09:38 -04004062 out:
Steven Rostedt (VMware)d7fbf8d2017-06-26 10:57:21 -04004063 mutex_unlock(&ops->func_hash->regex_lock);
4064
4065 free_ftrace_hash(new_hash);
4066}
4067
4068static void process_cached_mods(const char *mod_name)
4069{
4070 struct trace_array *tr;
4071 char *mod;
4072
4073 mod = kstrdup(mod_name, GFP_KERNEL);
4074 if (!mod)
4075 return;
4076
4077 mutex_lock(&trace_types_lock);
4078 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
4079 if (!list_empty(&tr->mod_trace))
4080 process_mod_list(&tr->mod_trace, tr->ops, mod, true);
4081 if (!list_empty(&tr->mod_notrace))
4082 process_mod_list(&tr->mod_notrace, tr->ops, mod, false);
4083 }
4084 mutex_unlock(&trace_types_lock);
4085
4086 kfree(mod);
4087}
Arnd Bergmann69449bbd2017-07-10 10:44:03 +02004088#endif
Steven Rostedt (VMware)d7fbf8d2017-06-26 10:57:21 -04004089
Steven Rostedtf6180772009-02-14 00:40:25 -05004090/*
4091 * We register the module command as a template to show others how
4092 * to register the a command as well.
4093 */
4094
4095static int
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004096ftrace_mod_callback(struct trace_array *tr, struct ftrace_hash *hash,
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004097 char *func_orig, char *cmd, char *module, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05004098{
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004099 char *func;
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03004100 int ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05004101
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004102 /* match_records() modifies func, and we need the original */
4103 func = kstrdup(func_orig, GFP_KERNEL);
4104 if (!func)
4105 return -ENOMEM;
4106
Steven Rostedtf6180772009-02-14 00:40:25 -05004107 /*
4108 * cmd == 'mod' because we only registered this func
4109 * for the 'mod' ftrace_func_command.
4110 * But if you register one func with multiple commands,
4111 * you can tell which command was used by the cmd
4112 * parameter.
4113 */
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03004114 ret = match_records(hash, func, strlen(func), module);
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004115 kfree(func);
4116
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004117 if (!ret)
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004118 return cache_mod(tr, func_orig, module, enable);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004119 if (ret < 0)
4120 return ret;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004121 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05004122}
4123
4124static struct ftrace_func_command ftrace_mod_cmd = {
4125 .name = "mod",
4126 .func = ftrace_mod_callback,
4127};
4128
4129static int __init ftrace_mod_cmd_init(void)
4130{
4131 return register_ftrace_command(&ftrace_mod_cmd);
4132}
Steven Rostedt6f415672012-10-05 12:13:07 -04004133core_initcall(ftrace_mod_cmd_init);
Steven Rostedtf6180772009-02-14 00:40:25 -05004134
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004135static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04004136 struct ftrace_ops *op, struct pt_regs *pt_regs)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004137{
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004138 struct ftrace_probe_ops *probe_ops;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004139 struct ftrace_func_probe *probe;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004140
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004141 probe = container_of(op, struct ftrace_func_probe, ops);
4142 probe_ops = probe->probe_ops;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004143
4144 /*
4145 * Disable preemption for these calls to prevent a RCU grace
4146 * period. This syncs the hash iteration and freeing of items
4147 * on the hash. rcu_read_lock is too dangerous here.
4148 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04004149 preempt_disable_notrace();
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004150 probe_ops->func(ip, parent_ip, probe->tr, probe_ops, probe->data);
Steven Rostedt5168ae52010-06-03 09:36:50 -04004151 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05004152}
4153
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004154struct ftrace_func_map {
4155 struct ftrace_func_entry entry;
4156 void *data;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004157};
4158
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004159struct ftrace_func_mapper {
4160 struct ftrace_hash hash;
4161};
Steven Rostedt59df055f2009-02-14 15:29:06 -05004162
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004163/**
4164 * allocate_ftrace_func_mapper - allocate a new ftrace_func_mapper
4165 *
4166 * Returns a ftrace_func_mapper descriptor that can be used to map ips to data.
4167 */
4168struct ftrace_func_mapper *allocate_ftrace_func_mapper(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004169{
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004170 struct ftrace_hash *hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004171
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004172 /*
4173 * The mapper is simply a ftrace_hash, but since the entries
4174 * in the hash are not ftrace_func_entry type, we define it
4175 * as a separate structure.
4176 */
4177 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4178 return (struct ftrace_func_mapper *)hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004179}
4180
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004181/**
4182 * ftrace_func_mapper_find_ip - Find some data mapped to an ip
4183 * @mapper: The mapper that has the ip maps
4184 * @ip: the instruction pointer to find the data for
4185 *
4186 * Returns the data mapped to @ip if found otherwise NULL. The return
4187 * is actually the address of the mapper data pointer. The address is
4188 * returned for use cases where the data is no bigger than a long, and
4189 * the user can use the data pointer as its data instead of having to
4190 * allocate more memory for the reference.
4191 */
4192void **ftrace_func_mapper_find_ip(struct ftrace_func_mapper *mapper,
4193 unsigned long ip)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004194{
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004195 struct ftrace_func_entry *entry;
4196 struct ftrace_func_map *map;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004197
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004198 entry = ftrace_lookup_ip(&mapper->hash, ip);
4199 if (!entry)
4200 return NULL;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004201
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004202 map = (struct ftrace_func_map *)entry;
4203 return &map->data;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004204}
4205
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004206/**
4207 * ftrace_func_mapper_add_ip - Map some data to an ip
4208 * @mapper: The mapper that has the ip maps
4209 * @ip: The instruction pointer address to map @data to
4210 * @data: The data to map to @ip
4211 *
4212 * Returns 0 on succes otherwise an error.
4213 */
4214int ftrace_func_mapper_add_ip(struct ftrace_func_mapper *mapper,
4215 unsigned long ip, void *data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004216{
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004217 struct ftrace_func_entry *entry;
4218 struct ftrace_func_map *map;
4219
4220 entry = ftrace_lookup_ip(&mapper->hash, ip);
4221 if (entry)
4222 return -EBUSY;
4223
4224 map = kmalloc(sizeof(*map), GFP_KERNEL);
4225 if (!map)
4226 return -ENOMEM;
4227
4228 map->entry.ip = ip;
4229 map->data = data;
4230
4231 __add_hash_entry(&mapper->hash, &map->entry);
4232
4233 return 0;
4234}
4235
4236/**
4237 * ftrace_func_mapper_remove_ip - Remove an ip from the mapping
4238 * @mapper: The mapper that has the ip maps
4239 * @ip: The instruction pointer address to remove the data from
4240 *
4241 * Returns the data if it is found, otherwise NULL.
4242 * Note, if the data pointer is used as the data itself, (see
4243 * ftrace_func_mapper_find_ip(), then the return value may be meaningless,
4244 * if the data pointer was set to zero.
4245 */
4246void *ftrace_func_mapper_remove_ip(struct ftrace_func_mapper *mapper,
4247 unsigned long ip)
4248{
4249 struct ftrace_func_entry *entry;
4250 struct ftrace_func_map *map;
4251 void *data;
4252
4253 entry = ftrace_lookup_ip(&mapper->hash, ip);
4254 if (!entry)
4255 return NULL;
4256
4257 map = (struct ftrace_func_map *)entry;
4258 data = map->data;
4259
4260 remove_hash_entry(&mapper->hash, entry);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004261 kfree(entry);
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004262
4263 return data;
4264}
4265
4266/**
4267 * free_ftrace_func_mapper - free a mapping of ips and data
4268 * @mapper: The mapper that has the ip maps
4269 * @free_func: A function to be called on each data item.
4270 *
4271 * This is used to free the function mapper. The @free_func is optional
4272 * and can be used if the data needs to be freed as well.
4273 */
4274void free_ftrace_func_mapper(struct ftrace_func_mapper *mapper,
4275 ftrace_mapper_func free_func)
4276{
4277 struct ftrace_func_entry *entry;
4278 struct ftrace_func_map *map;
4279 struct hlist_head *hhd;
4280 int size = 1 << mapper->hash.size_bits;
4281 int i;
4282
4283 if (free_func && mapper->hash.count) {
4284 for (i = 0; i < size; i++) {
4285 hhd = &mapper->hash.buckets[i];
4286 hlist_for_each_entry(entry, hhd, hlist) {
4287 map = (struct ftrace_func_map *)entry;
4288 free_func(map);
4289 }
4290 }
4291 }
4292 free_ftrace_hash(&mapper->hash);
4293}
4294
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004295static void release_probe(struct ftrace_func_probe *probe)
4296{
4297 struct ftrace_probe_ops *probe_ops;
4298
4299 mutex_lock(&ftrace_lock);
4300
4301 WARN_ON(probe->ref <= 0);
4302
4303 /* Subtract the ref that was used to protect this instance */
4304 probe->ref--;
4305
4306 if (!probe->ref) {
4307 probe_ops = probe->probe_ops;
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004308 /*
4309 * Sending zero as ip tells probe_ops to free
4310 * the probe->data itself
4311 */
4312 if (probe_ops->free)
4313 probe_ops->free(probe_ops, probe->tr, 0, probe->data);
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004314 list_del(&probe->list);
4315 kfree(probe);
4316 }
4317 mutex_unlock(&ftrace_lock);
4318}
4319
4320static void acquire_probe_locked(struct ftrace_func_probe *probe)
4321{
4322 /*
4323 * Add one ref to keep it from being freed when releasing the
4324 * ftrace_lock mutex.
4325 */
4326 probe->ref++;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004327}
4328
Steven Rostedt59df055f2009-02-14 15:29:06 -05004329int
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004330register_ftrace_function_probe(char *glob, struct trace_array *tr,
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004331 struct ftrace_probe_ops *probe_ops,
4332 void *data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004333{
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004334 struct ftrace_func_entry *entry;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004335 struct ftrace_func_probe *probe;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004336 struct ftrace_hash **orig_hash;
4337 struct ftrace_hash *old_hash;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004338 struct ftrace_hash *hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004339 int count = 0;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004340 int size;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004341 int ret;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004342 int i;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004343
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004344 if (WARN_ON(!tr))
Steven Rostedt59df055f2009-02-14 15:29:06 -05004345 return -EINVAL;
4346
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004347 /* We do not support '!' for function probes */
4348 if (WARN_ON(glob[0] == '!'))
Steven Rostedt59df055f2009-02-14 15:29:06 -05004349 return -EINVAL;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004350
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004351
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004352 mutex_lock(&ftrace_lock);
4353 /* Check if the probe_ops is already registered */
4354 list_for_each_entry(probe, &tr->func_probes, list) {
4355 if (probe->probe_ops == probe_ops)
4356 break;
4357 }
4358 if (&probe->list == &tr->func_probes) {
4359 probe = kzalloc(sizeof(*probe), GFP_KERNEL);
4360 if (!probe) {
4361 mutex_unlock(&ftrace_lock);
4362 return -ENOMEM;
4363 }
4364 probe->probe_ops = probe_ops;
4365 probe->ops.func = function_trace_probe_call;
4366 probe->tr = tr;
4367 ftrace_ops_init(&probe->ops);
4368 list_add(&probe->list, &tr->func_probes);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004369 }
4370
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004371 acquire_probe_locked(probe);
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004372
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004373 mutex_unlock(&ftrace_lock);
4374
4375 mutex_lock(&probe->ops.func_hash->regex_lock);
4376
4377 orig_hash = &probe->ops.func_hash->filter_hash;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004378 old_hash = *orig_hash;
4379 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
4380
4381 ret = ftrace_match_records(hash, glob, strlen(glob));
4382
4383 /* Nothing found? */
4384 if (!ret)
4385 ret = -EINVAL;
4386
4387 if (ret < 0)
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04004388 goto out;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004389
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004390 size = 1 << hash->size_bits;
4391 for (i = 0; i < size; i++) {
4392 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
4393 if (ftrace_lookup_ip(old_hash, entry->ip))
4394 continue;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004395 /*
4396 * The caller might want to do something special
4397 * for each function we find. We call the callback
4398 * to give the caller an opportunity to do so.
4399 */
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004400 if (probe_ops->init) {
4401 ret = probe_ops->init(probe_ops, tr,
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004402 entry->ip, data,
4403 &probe->data);
4404 if (ret < 0) {
4405 if (probe_ops->free && count)
4406 probe_ops->free(probe_ops, tr,
4407 0, probe->data);
4408 probe->data = NULL;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004409 goto out;
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004410 }
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004411 }
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004412 count++;
4413 }
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004414 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04004415
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04004416 mutex_lock(&ftrace_lock);
4417
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004418 if (!count) {
4419 /* Nothing was added? */
4420 ret = -EINVAL;
4421 goto out_unlock;
4422 }
Steven Rostedt59df055f2009-02-14 15:29:06 -05004423
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004424 ret = ftrace_hash_move_and_update_ops(&probe->ops, orig_hash,
4425 hash, 1);
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004426 if (ret < 0)
Steven Rostedt (VMware)8d707252017-04-05 13:36:18 -04004427 goto err_unlock;
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05004428
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004429 /* One ref for each new function traced */
4430 probe->ref += count;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004431
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004432 if (!(probe->ops.flags & FTRACE_OPS_FL_ENABLED))
4433 ret = ftrace_startup(&probe->ops, 0);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004434
Steven Rostedt59df055f2009-02-14 15:29:06 -05004435 out_unlock:
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04004436 mutex_unlock(&ftrace_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004437
4438 if (!ret)
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004439 ret = count;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04004440 out:
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004441 mutex_unlock(&probe->ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004442 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004443
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004444 release_probe(probe);
4445
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004446 return ret;
Steven Rostedt (VMware)8d707252017-04-05 13:36:18 -04004447
4448 err_unlock:
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004449 if (!probe_ops->free || !count)
Steven Rostedt (VMware)8d707252017-04-05 13:36:18 -04004450 goto out_unlock;
4451
4452 /* Failed to do the move, need to call the free functions */
4453 for (i = 0; i < size; i++) {
4454 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
4455 if (ftrace_lookup_ip(old_hash, entry->ip))
4456 continue;
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004457 probe_ops->free(probe_ops, tr, entry->ip, probe->data);
Steven Rostedt (VMware)8d707252017-04-05 13:36:18 -04004458 }
4459 }
4460 goto out_unlock;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004461}
4462
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004463int
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004464unregister_ftrace_function_probe_func(char *glob, struct trace_array *tr,
4465 struct ftrace_probe_ops *probe_ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004466{
Steven Rostedt (VMware)82cc4fc2017-04-14 17:45:45 -04004467 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004468 struct ftrace_func_entry *entry;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004469 struct ftrace_func_probe *probe;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004470 struct ftrace_glob func_g;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004471 struct ftrace_hash **orig_hash;
4472 struct ftrace_hash *old_hash;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004473 struct ftrace_hash *hash = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -08004474 struct hlist_node *tmp;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004475 struct hlist_head hhd;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004476 char str[KSYM_SYMBOL_LEN];
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004477 int count = 0;
4478 int i, ret = -ENODEV;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004479 int size;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004480
Naveen N. Raocbab5672017-05-16 23:21:25 +05304481 if (!glob || !strlen(glob) || !strcmp(glob, "*"))
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004482 func_g.search = NULL;
Naveen N. Raocbab5672017-05-16 23:21:25 +05304483 else {
Steven Rostedt59df055f2009-02-14 15:29:06 -05004484 int not;
4485
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004486 func_g.type = filter_parse_regex(glob, strlen(glob),
4487 &func_g.search, &not);
4488 func_g.len = strlen(func_g.search);
4489 func_g.search = glob;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004490
Steven Rostedtb6887d72009-02-17 12:32:04 -05004491 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05004492 if (WARN_ON(not))
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004493 return -EINVAL;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004494 }
4495
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004496 mutex_lock(&ftrace_lock);
4497 /* Check if the probe_ops is already registered */
4498 list_for_each_entry(probe, &tr->func_probes, list) {
4499 if (probe->probe_ops == probe_ops)
4500 break;
4501 }
4502 if (&probe->list == &tr->func_probes)
4503 goto err_unlock_ftrace;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004504
4505 ret = -EINVAL;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004506 if (!(probe->ops.flags & FTRACE_OPS_FL_INITIALIZED))
4507 goto err_unlock_ftrace;
4508
4509 acquire_probe_locked(probe);
4510
4511 mutex_unlock(&ftrace_lock);
4512
4513 mutex_lock(&probe->ops.func_hash->regex_lock);
4514
4515 orig_hash = &probe->ops.func_hash->filter_hash;
4516 old_hash = *orig_hash;
4517
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004518 if (ftrace_hash_empty(old_hash))
4519 goto out_unlock;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004520
Steven Rostedt (VMware)82cc4fc2017-04-14 17:45:45 -04004521 old_hash_ops.filter_hash = old_hash;
4522 /* Probes only have filters */
4523 old_hash_ops.notrace_hash = NULL;
4524
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004525 ret = -ENOMEM;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004526 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004527 if (!hash)
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004528 goto out_unlock;
4529
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004530 INIT_HLIST_HEAD(&hhd);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004531
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004532 size = 1 << hash->size_bits;
4533 for (i = 0; i < size; i++) {
4534 hlist_for_each_entry_safe(entry, tmp, &hash->buckets[i], hlist) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05004535
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004536 if (func_g.search) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05004537 kallsyms_lookup(entry->ip, NULL, NULL,
4538 NULL, str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004539 if (!ftrace_match(str, &func_g))
Steven Rostedt59df055f2009-02-14 15:29:06 -05004540 continue;
4541 }
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004542 count++;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004543 remove_hash_entry(hash, entry);
4544 hlist_add_head(&entry->hlist, &hhd);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004545 }
4546 }
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004547
4548 /* Nothing found? */
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004549 if (!count) {
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004550 ret = -EINVAL;
4551 goto out_unlock;
4552 }
4553
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004554 mutex_lock(&ftrace_lock);
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004555
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004556 WARN_ON(probe->ref < count);
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004557
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004558 probe->ref -= count;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004559
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004560 if (ftrace_hash_empty(hash))
4561 ftrace_shutdown(&probe->ops, 0);
4562
4563 ret = ftrace_hash_move_and_update_ops(&probe->ops, orig_hash,
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004564 hash, 1);
Steven Rostedt (VMware)82cc4fc2017-04-14 17:45:45 -04004565
4566 /* still need to update the function call sites */
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004567 if (ftrace_enabled && !ftrace_hash_empty(hash))
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004568 ftrace_run_modify_code(&probe->ops, FTRACE_UPDATE_CALLS,
Steven Rostedt (VMware)82cc4fc2017-04-14 17:45:45 -04004569 &old_hash_ops);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004570 synchronize_sched();
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004571
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004572 hlist_for_each_entry_safe(entry, tmp, &hhd, hlist) {
4573 hlist_del(&entry->hlist);
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004574 if (probe_ops->free)
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004575 probe_ops->free(probe_ops, tr, entry->ip, probe->data);
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004576 kfree(entry);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004577 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004578 mutex_unlock(&ftrace_lock);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004579
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004580 out_unlock:
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004581 mutex_unlock(&probe->ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004582 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004583
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004584 release_probe(probe);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004585
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004586 return ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004587
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004588 err_unlock_ftrace:
4589 mutex_unlock(&ftrace_lock);
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004590 return ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004591}
4592
Naveen N. Raoa0e63692017-05-16 23:21:26 +05304593void clear_ftrace_function_probes(struct trace_array *tr)
4594{
4595 struct ftrace_func_probe *probe, *n;
4596
4597 list_for_each_entry_safe(probe, n, &tr->func_probes, list)
4598 unregister_ftrace_function_probe_func(NULL, tr, probe->probe_ops);
4599}
4600
Steven Rostedtf6180772009-02-14 00:40:25 -05004601static LIST_HEAD(ftrace_commands);
4602static DEFINE_MUTEX(ftrace_cmd_mutex);
4603
Tom Zanussi38de93a2013-10-24 08:34:18 -05004604/*
4605 * Currently we only register ftrace commands from __init, so mark this
4606 * __init too.
4607 */
4608__init int register_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05004609{
4610 struct ftrace_func_command *p;
4611 int ret = 0;
4612
4613 mutex_lock(&ftrace_cmd_mutex);
4614 list_for_each_entry(p, &ftrace_commands, list) {
4615 if (strcmp(cmd->name, p->name) == 0) {
4616 ret = -EBUSY;
4617 goto out_unlock;
4618 }
4619 }
4620 list_add(&cmd->list, &ftrace_commands);
4621 out_unlock:
4622 mutex_unlock(&ftrace_cmd_mutex);
4623
4624 return ret;
4625}
4626
Tom Zanussi38de93a2013-10-24 08:34:18 -05004627/*
4628 * Currently we only unregister ftrace commands from __init, so mark
4629 * this __init too.
4630 */
4631__init int unregister_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05004632{
4633 struct ftrace_func_command *p, *n;
4634 int ret = -ENODEV;
4635
4636 mutex_lock(&ftrace_cmd_mutex);
4637 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
4638 if (strcmp(cmd->name, p->name) == 0) {
4639 ret = 0;
4640 list_del_init(&p->list);
4641 goto out_unlock;
4642 }
4643 }
4644 out_unlock:
4645 mutex_unlock(&ftrace_cmd_mutex);
4646
4647 return ret;
4648}
4649
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004650static int ftrace_process_regex(struct ftrace_iterator *iter,
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004651 char *buff, int len, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05004652{
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004653 struct ftrace_hash *hash = iter->hash;
Steven Rostedt (VMware)d2afd57a2017-04-20 11:31:35 -04004654 struct trace_array *tr = iter->ops->private;
Steven Rostedtf6180772009-02-14 00:40:25 -05004655 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05004656 struct ftrace_func_command *p;
GuoWen Li0aff1c02011-06-01 19:18:47 +08004657 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004658
4659 func = strsep(&next, ":");
4660
4661 if (!next) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004662 ret = ftrace_match_records(hash, func, len);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004663 if (!ret)
4664 ret = -EINVAL;
4665 if (ret < 0)
4666 return ret;
4667 return 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004668 }
4669
Steven Rostedtf6180772009-02-14 00:40:25 -05004670 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05004671
4672 command = strsep(&next, ":");
4673
Steven Rostedtf6180772009-02-14 00:40:25 -05004674 mutex_lock(&ftrace_cmd_mutex);
4675 list_for_each_entry(p, &ftrace_commands, list) {
4676 if (strcmp(p->name, command) == 0) {
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004677 ret = p->func(tr, hash, func, command, next, enable);
Steven Rostedtf6180772009-02-14 00:40:25 -05004678 goto out_unlock;
4679 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05004680 }
Steven Rostedtf6180772009-02-14 00:40:25 -05004681 out_unlock:
4682 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05004683
Steven Rostedtf6180772009-02-14 00:40:25 -05004684 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004685}
4686
Ingo Molnare309b412008-05-12 21:20:51 +02004687static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004688ftrace_regex_write(struct file *file, const char __user *ubuf,
4689 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02004690{
4691 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004692 struct trace_parser *parser;
4693 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02004694
Li Zefan4ba79782009-09-22 13:52:20 +08004695 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02004696 return 0;
4697
Steven Rostedt5072c592008-05-12 21:20:43 +02004698 if (file->f_mode & FMODE_READ) {
4699 struct seq_file *m = file->private_data;
4700 iter = m->private;
4701 } else
4702 iter = file->private_data;
4703
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004704 if (unlikely(ftrace_disabled))
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004705 return -ENODEV;
4706
4707 /* iter->hash is a local copy, so we don't need regex_lock */
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004708
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004709 parser = &iter->parser;
4710 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02004711
Li Zefan4ba79782009-09-22 13:52:20 +08004712 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004713 !trace_parser_cont(parser)) {
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004714 ret = ftrace_process_regex(iter, parser->buffer,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004715 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08004716 trace_parser_clear(parser);
Steven Rostedt (Red Hat)7c088b52013-05-09 11:35:12 -04004717 if (ret < 0)
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004718 goto out;
Steven Rostedt5072c592008-05-12 21:20:43 +02004719 }
4720
Steven Rostedt5072c592008-05-12 21:20:43 +02004721 ret = read;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004722 out:
Steven Rostedt5072c592008-05-12 21:20:43 +02004723 return ret;
4724}
4725
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004726ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004727ftrace_filter_write(struct file *file, const char __user *ubuf,
4728 size_t cnt, loff_t *ppos)
4729{
4730 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
4731}
4732
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004733ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004734ftrace_notrace_write(struct file *file, const char __user *ubuf,
4735 size_t cnt, loff_t *ppos)
4736{
4737 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
4738}
4739
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004740static int
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004741ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
4742{
4743 struct ftrace_func_entry *entry;
4744
4745 if (!ftrace_location(ip))
4746 return -EINVAL;
4747
4748 if (remove) {
4749 entry = ftrace_lookup_ip(hash, ip);
4750 if (!entry)
4751 return -ENOENT;
4752 free_hash_entry(hash, entry);
4753 return 0;
4754 }
4755
4756 return add_hash_entry(hash, ip);
4757}
4758
4759static int
4760ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
4761 unsigned long ip, int remove, int reset, int enable)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004762{
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004763 struct ftrace_hash **orig_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004764 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004765 int ret;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004766
Steven Rostedt41c52c02008-05-22 11:46:33 -04004767 if (unlikely(ftrace_disabled))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004768 return -ENODEV;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004769
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004770 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004771
Steven Rostedtf45948e2011-05-02 12:29:25 -04004772 if (enable)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004773 orig_hash = &ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004774 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004775 orig_hash = &ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004776
Wang Nanb972cc52014-07-15 08:40:20 +08004777 if (reset)
4778 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4779 else
4780 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
4781
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004782 if (!hash) {
4783 ret = -ENOMEM;
4784 goto out_regex_unlock;
4785 }
Steven Rostedtf45948e2011-05-02 12:29:25 -04004786
Jiri Olsaac483c42012-01-02 10:04:14 +01004787 if (buf && !ftrace_match_records(hash, buf, len)) {
4788 ret = -EINVAL;
4789 goto out_regex_unlock;
4790 }
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004791 if (ip) {
4792 ret = ftrace_match_addr(hash, ip, remove);
4793 if (ret < 0)
4794 goto out_regex_unlock;
4795 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004796
4797 mutex_lock(&ftrace_lock);
Steven Rostedt (VMware)e16b35d2017-04-04 14:46:56 -04004798 ret = ftrace_hash_move_and_update_ops(ops, orig_hash, hash, enable);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004799 mutex_unlock(&ftrace_lock);
4800
Jiri Olsaac483c42012-01-02 10:04:14 +01004801 out_regex_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004802 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004803
4804 free_ftrace_hash(hash);
4805 return ret;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004806}
4807
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004808static int
4809ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove,
4810 int reset, int enable)
4811{
4812 return ftrace_set_hash(ops, 0, 0, ip, remove, reset, enable);
4813}
4814
4815/**
4816 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
4817 * @ops - the ops to set the filter with
4818 * @ip - the address to add to or remove from the filter.
4819 * @remove - non zero to remove the ip from the filter
4820 * @reset - non zero to reset all filters before applying this filter.
4821 *
4822 * Filters denote which functions should be enabled when tracing is enabled
4823 * If @ip is NULL, it failes to update filter.
4824 */
4825int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
4826 int remove, int reset)
4827{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004828 ftrace_ops_init(ops);
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004829 return ftrace_set_addr(ops, ip, remove, reset, 1);
4830}
4831EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
4832
Joel Fernandesd032ae82016-11-15 12:31:20 -08004833/**
4834 * ftrace_ops_set_global_filter - setup ops to use global filters
4835 * @ops - the ops which will use the global filters
4836 *
4837 * ftrace users who need global function trace filtering should call this.
4838 * It can set the global filter only if ops were not initialized before.
4839 */
4840void ftrace_ops_set_global_filter(struct ftrace_ops *ops)
4841{
4842 if (ops->flags & FTRACE_OPS_FL_INITIALIZED)
4843 return;
4844
4845 ftrace_ops_init(ops);
4846 ops->func_hash = &global_ops.local_hash;
4847}
4848EXPORT_SYMBOL_GPL(ftrace_ops_set_global_filter);
4849
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004850static int
4851ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
4852 int reset, int enable)
4853{
4854 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
4855}
4856
Steven Rostedt77a2b372008-05-12 21:20:45 +02004857/**
4858 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004859 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02004860 * @buf - the string that holds the function filter text.
4861 * @len - the length of the string.
4862 * @reset - non zero to reset all filters before applying this filter.
4863 *
4864 * Filters denote which functions should be enabled when tracing is enabled.
4865 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4866 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004867int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004868 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02004869{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004870 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004871 return ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04004872}
Steven Rostedt936e0742011-05-05 22:54:01 -04004873EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004874
Steven Rostedt41c52c02008-05-22 11:46:33 -04004875/**
4876 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004877 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04004878 * @buf - the string that holds the function notrace text.
4879 * @len - the length of the string.
4880 * @reset - non zero to reset all filters before applying this filter.
4881 *
4882 * Notrace Filters denote which functions should not be enabled when tracing
4883 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4884 * for tracing.
4885 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004886int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004887 int len, int reset)
4888{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004889 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004890 return ftrace_set_regex(ops, buf, len, reset, 0);
Steven Rostedt936e0742011-05-05 22:54:01 -04004891}
4892EXPORT_SYMBOL_GPL(ftrace_set_notrace);
4893/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004894 * ftrace_set_global_filter - set a function to filter on with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004895 * @buf - the string that holds the function filter text.
4896 * @len - the length of the string.
4897 * @reset - non zero to reset all filters before applying this filter.
4898 *
4899 * Filters denote which functions should be enabled when tracing is enabled.
4900 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4901 */
4902void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
4903{
4904 ftrace_set_regex(&global_ops, buf, len, reset, 1);
4905}
4906EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
4907
4908/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004909 * ftrace_set_global_notrace - set a function to not trace with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004910 * @buf - the string that holds the function notrace text.
4911 * @len - the length of the string.
4912 * @reset - non zero to reset all filters before applying this filter.
4913 *
4914 * Notrace Filters denote which functions should not be enabled when tracing
4915 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4916 * for tracing.
4917 */
4918void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004919{
Steven Rostedtf45948e2011-05-02 12:29:25 -04004920 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004921}
Steven Rostedt936e0742011-05-05 22:54:01 -04004922EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004923
Steven Rostedt2af15d62009-05-28 13:37:24 -04004924/*
4925 * command line interface to allow users to set filters on boot up.
4926 */
4927#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
4928static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4929static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
4930
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004931/* Used by function selftest to not test if filter is set */
4932bool ftrace_filter_param __initdata;
4933
Steven Rostedt2af15d62009-05-28 13:37:24 -04004934static int __init set_ftrace_notrace(char *str)
4935{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004936 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004937 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004938 return 1;
4939}
4940__setup("ftrace_notrace=", set_ftrace_notrace);
4941
4942static int __init set_ftrace_filter(char *str)
4943{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004944 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004945 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004946 return 1;
4947}
4948__setup("ftrace_filter=", set_ftrace_filter);
4949
Stefan Assmann369bc182009-10-12 22:17:21 +02004950#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08004951static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004952static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004953static int ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer);
Steven Rostedt801c29f2010-03-05 20:02:19 -05004954
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04004955static unsigned long save_global_trampoline;
4956static unsigned long save_global_flags;
4957
Stefan Assmann369bc182009-10-12 22:17:21 +02004958static int __init set_graph_function(char *str)
4959{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02004960 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02004961 return 1;
4962}
4963__setup("ftrace_graph_filter=", set_graph_function);
4964
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004965static int __init set_graph_notrace_function(char *str)
4966{
4967 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
4968 return 1;
4969}
4970__setup("ftrace_graph_notrace=", set_graph_notrace_function);
4971
Todd Brandt65a50c652017-03-02 16:12:15 -08004972static int __init set_graph_max_depth_function(char *str)
4973{
4974 if (!str)
4975 return 0;
4976 fgraph_max_depth = simple_strtoul(str, NULL, 0);
4977 return 1;
4978}
4979__setup("ftrace_graph_max_depth=", set_graph_max_depth_function);
4980
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004981static void __init set_ftrace_early_graph(char *buf, int enable)
Stefan Assmann369bc182009-10-12 22:17:21 +02004982{
4983 int ret;
4984 char *func;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004985 struct ftrace_hash *hash;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004986
Steven Rostedt (VMware)92ad18e2017-03-02 12:53:26 -05004987 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4988 if (WARN_ON(!hash))
4989 return;
Stefan Assmann369bc182009-10-12 22:17:21 +02004990
4991 while (buf) {
4992 func = strsep(&buf, ",");
4993 /* we allow only one expression at a time */
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004994 ret = ftrace_graph_set_hash(hash, func);
Stefan Assmann369bc182009-10-12 22:17:21 +02004995 if (ret)
4996 printk(KERN_DEBUG "ftrace: function %s not "
4997 "traceable\n", func);
4998 }
Steven Rostedt (VMware)92ad18e2017-03-02 12:53:26 -05004999
5000 if (enable)
5001 ftrace_graph_hash = hash;
5002 else
5003 ftrace_graph_notrace_hash = hash;
Stefan Assmann369bc182009-10-12 22:17:21 +02005004}
5005#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
5006
Steven Rostedt2a85a372011-12-19 21:57:44 -05005007void __init
5008ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04005009{
5010 char *func;
5011
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09005012 ftrace_ops_init(ops);
5013
Steven Rostedt2af15d62009-05-28 13:37:24 -04005014 while (buf) {
5015 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04005016 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04005017 }
5018}
5019
5020static void __init set_ftrace_early_filters(void)
5021{
5022 if (ftrace_filter_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05005023 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04005024 if (ftrace_notrace_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05005025 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02005026#ifdef CONFIG_FUNCTION_GRAPH_TRACER
5027 if (ftrace_graph_buf[0])
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09005028 set_ftrace_early_graph(ftrace_graph_buf, 1);
5029 if (ftrace_graph_notrace_buf[0])
5030 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02005031#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04005032}
5033
Steven Rostedtfc13cb02011-12-19 14:41:25 -05005034int ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02005035{
5036 struct seq_file *m = (struct seq_file *)file->private_data;
5037 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04005038 struct ftrace_hash **orig_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005039 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04005040 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04005041 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02005042
Steven Rostedt5072c592008-05-12 21:20:43 +02005043 if (file->f_mode & FMODE_READ) {
5044 iter = m->private;
Steven Rostedt5072c592008-05-12 21:20:43 +02005045 seq_release(inode, file);
5046 } else
5047 iter = file->private_data;
5048
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005049 parser = &iter->parser;
5050 if (trace_parser_loaded(parser)) {
5051 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04005052 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02005053 }
5054
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005055 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005056
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04005057 mutex_lock(&iter->ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09005058
Steven Rostedt058e2972011-04-29 22:35:33 -04005059 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04005060 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
5061
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04005062 if (filter_hash) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04005063 orig_hash = &iter->ops->func_hash->filter_hash;
Steven Rostedt (VMware)69d71872017-07-05 09:45:43 -04005064 if (iter->tr && !list_empty(&iter->tr->mod_trace))
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04005065 iter->hash->flags |= FTRACE_HASH_FL_MOD;
5066 } else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04005067 orig_hash = &iter->ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04005068
Steven Rostedt058e2972011-04-29 22:35:33 -04005069 mutex_lock(&ftrace_lock);
Steven Rostedt (VMware)e16b35d2017-04-04 14:46:56 -04005070 ret = ftrace_hash_move_and_update_ops(iter->ops, orig_hash,
5071 iter->hash, filter_hash);
Steven Rostedt058e2972011-04-29 22:35:33 -04005072 mutex_unlock(&ftrace_lock);
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04005073 } else {
5074 /* For read only, the hash is the ops hash */
5075 iter->hash = NULL;
Steven Rostedt058e2972011-04-29 22:35:33 -04005076 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09005077
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04005078 mutex_unlock(&iter->ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04005079 free_ftrace_hash(iter->hash);
5080 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04005081
Steven Rostedt5072c592008-05-12 21:20:43 +02005082 return 0;
5083}
5084
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005085static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02005086 .open = ftrace_avail_open,
5087 .read = seq_read,
5088 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08005089 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02005090};
5091
Steven Rostedt647bcd02011-05-03 14:39:21 -04005092static const struct file_operations ftrace_enabled_fops = {
5093 .open = ftrace_enabled_open,
5094 .read = seq_read,
5095 .llseek = seq_lseek,
5096 .release = seq_release_private,
5097};
5098
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005099static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02005100 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08005101 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02005102 .write = ftrace_filter_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005103 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04005104 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02005105};
5106
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005107static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04005108 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08005109 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04005110 .write = ftrace_notrace_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005111 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04005112 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04005113};
5114
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005115#ifdef CONFIG_FUNCTION_GRAPH_TRACER
5116
5117static DEFINE_MUTEX(graph_lock);
5118
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005119struct ftrace_hash *ftrace_graph_hash = EMPTY_HASH;
5120struct ftrace_hash *ftrace_graph_notrace_hash = EMPTY_HASH;
5121
5122enum graph_filter_type {
5123 GRAPH_FILTER_NOTRACE = 0,
5124 GRAPH_FILTER_FUNCTION,
5125};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005126
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05005127#define FTRACE_GRAPH_EMPTY ((void *)1)
5128
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005129struct ftrace_graph_data {
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005130 struct ftrace_hash *hash;
5131 struct ftrace_func_entry *entry;
5132 int idx; /* for hash table iteration */
5133 enum graph_filter_type type;
5134 struct ftrace_hash *new_hash;
5135 const struct seq_operations *seq_ops;
5136 struct trace_parser parser;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005137};
5138
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005139static void *
Li Zefan85951842009-06-24 09:54:00 +08005140__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005141{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005142 struct ftrace_graph_data *fgd = m->private;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005143 struct ftrace_func_entry *entry = fgd->entry;
5144 struct hlist_head *head;
5145 int i, idx = fgd->idx;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005146
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005147 if (*pos >= fgd->hash->count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005148 return NULL;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005149
5150 if (entry) {
5151 hlist_for_each_entry_continue(entry, hlist) {
5152 fgd->entry = entry;
5153 return entry;
5154 }
5155
5156 idx++;
5157 }
5158
5159 for (i = idx; i < 1 << fgd->hash->size_bits; i++) {
5160 head = &fgd->hash->buckets[i];
5161 hlist_for_each_entry(entry, head, hlist) {
5162 fgd->entry = entry;
5163 fgd->idx = i;
5164 return entry;
5165 }
5166 }
5167 return NULL;
Li Zefan85951842009-06-24 09:54:00 +08005168}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005169
Li Zefan85951842009-06-24 09:54:00 +08005170static void *
5171g_next(struct seq_file *m, void *v, loff_t *pos)
5172{
5173 (*pos)++;
5174 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005175}
5176
5177static void *g_start(struct seq_file *m, loff_t *pos)
5178{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005179 struct ftrace_graph_data *fgd = m->private;
5180
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005181 mutex_lock(&graph_lock);
5182
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05005183 if (fgd->type == GRAPH_FILTER_FUNCTION)
5184 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
5185 lockdep_is_held(&graph_lock));
5186 else
5187 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
5188 lockdep_is_held(&graph_lock));
5189
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005190 /* Nothing, tell g_show to print all functions are enabled */
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005191 if (ftrace_hash_empty(fgd->hash) && !*pos)
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05005192 return FTRACE_GRAPH_EMPTY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005193
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005194 fgd->idx = 0;
5195 fgd->entry = NULL;
Li Zefan85951842009-06-24 09:54:00 +08005196 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005197}
5198
5199static void g_stop(struct seq_file *m, void *p)
5200{
5201 mutex_unlock(&graph_lock);
5202}
5203
5204static int g_show(struct seq_file *m, void *v)
5205{
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005206 struct ftrace_func_entry *entry = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005207
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005208 if (!entry)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005209 return 0;
5210
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05005211 if (entry == FTRACE_GRAPH_EMPTY) {
Namhyung Kim280d1422014-06-13 01:23:51 +09005212 struct ftrace_graph_data *fgd = m->private;
5213
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005214 if (fgd->type == GRAPH_FILTER_FUNCTION)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005215 seq_puts(m, "#### all functions enabled ####\n");
Namhyung Kim280d1422014-06-13 01:23:51 +09005216 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005217 seq_puts(m, "#### no functions disabled ####\n");
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005218 return 0;
5219 }
5220
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005221 seq_printf(m, "%ps\n", (void *)entry->ip);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005222
5223 return 0;
5224}
5225
James Morris88e9d342009-09-22 16:43:43 -07005226static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005227 .start = g_start,
5228 .next = g_next,
5229 .stop = g_stop,
5230 .show = g_show,
5231};
5232
5233static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005234__ftrace_graph_open(struct inode *inode, struct file *file,
5235 struct ftrace_graph_data *fgd)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005236{
5237 int ret = 0;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005238 struct ftrace_hash *new_hash = NULL;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005239
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005240 if (file->f_mode & FMODE_WRITE) {
5241 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
5242
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005243 if (trace_parser_get_init(&fgd->parser, FTRACE_BUFF_MAX))
5244 return -ENOMEM;
5245
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005246 if (file->f_flags & O_TRUNC)
5247 new_hash = alloc_ftrace_hash(size_bits);
5248 else
5249 new_hash = alloc_and_copy_ftrace_hash(size_bits,
5250 fgd->hash);
5251 if (!new_hash) {
5252 ret = -ENOMEM;
5253 goto out;
5254 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005255 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005256
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005257 if (file->f_mode & FMODE_READ) {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005258 ret = seq_open(file, &ftrace_graph_seq_ops);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005259 if (!ret) {
5260 struct seq_file *m = file->private_data;
5261 m->private = fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005262 } else {
5263 /* Failed */
5264 free_ftrace_hash(new_hash);
5265 new_hash = NULL;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005266 }
5267 } else
5268 file->private_data = fgd;
Li Zefana4ec5e02009-09-18 14:06:28 +08005269
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005270out:
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005271 if (ret < 0 && file->f_mode & FMODE_WRITE)
5272 trace_parser_put(&fgd->parser);
5273
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005274 fgd->new_hash = new_hash;
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05005275
5276 /*
5277 * All uses of fgd->hash must be taken with the graph_lock
5278 * held. The graph_lock is going to be released, so force
5279 * fgd->hash to be reinitialized when it is taken again.
5280 */
5281 fgd->hash = NULL;
5282
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005283 return ret;
5284}
5285
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005286static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005287ftrace_graph_open(struct inode *inode, struct file *file)
5288{
5289 struct ftrace_graph_data *fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005290 int ret;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005291
5292 if (unlikely(ftrace_disabled))
5293 return -ENODEV;
5294
5295 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
5296 if (fgd == NULL)
5297 return -ENOMEM;
5298
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005299 mutex_lock(&graph_lock);
5300
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05005301 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
5302 lockdep_is_held(&graph_lock));
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005303 fgd->type = GRAPH_FILTER_FUNCTION;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005304 fgd->seq_ops = &ftrace_graph_seq_ops;
5305
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005306 ret = __ftrace_graph_open(inode, file, fgd);
5307 if (ret < 0)
5308 kfree(fgd);
5309
5310 mutex_unlock(&graph_lock);
5311 return ret;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005312}
5313
5314static int
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005315ftrace_graph_notrace_open(struct inode *inode, struct file *file)
5316{
5317 struct ftrace_graph_data *fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005318 int ret;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005319
5320 if (unlikely(ftrace_disabled))
5321 return -ENODEV;
5322
5323 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
5324 if (fgd == NULL)
5325 return -ENOMEM;
5326
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005327 mutex_lock(&graph_lock);
5328
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05005329 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
5330 lockdep_is_held(&graph_lock));
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005331 fgd->type = GRAPH_FILTER_NOTRACE;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005332 fgd->seq_ops = &ftrace_graph_seq_ops;
5333
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005334 ret = __ftrace_graph_open(inode, file, fgd);
5335 if (ret < 0)
5336 kfree(fgd);
5337
5338 mutex_unlock(&graph_lock);
5339 return ret;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005340}
5341
5342static int
Li Zefan87827112009-07-23 11:29:11 +08005343ftrace_graph_release(struct inode *inode, struct file *file)
5344{
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005345 struct ftrace_graph_data *fgd;
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005346 struct ftrace_hash *old_hash, *new_hash;
5347 struct trace_parser *parser;
5348 int ret = 0;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005349
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005350 if (file->f_mode & FMODE_READ) {
5351 struct seq_file *m = file->private_data;
5352
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005353 fgd = m->private;
Li Zefan87827112009-07-23 11:29:11 +08005354 seq_release(inode, file);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005355 } else {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005356 fgd = file->private_data;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005357 }
5358
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005359
5360 if (file->f_mode & FMODE_WRITE) {
5361
5362 parser = &fgd->parser;
5363
5364 if (trace_parser_loaded((parser))) {
5365 parser->buffer[parser->idx] = 0;
5366 ret = ftrace_graph_set_hash(fgd->new_hash,
5367 parser->buffer);
5368 }
5369
5370 trace_parser_put(parser);
5371
5372 new_hash = __ftrace_hash_move(fgd->new_hash);
5373 if (!new_hash) {
5374 ret = -ENOMEM;
5375 goto out;
5376 }
5377
5378 mutex_lock(&graph_lock);
5379
5380 if (fgd->type == GRAPH_FILTER_FUNCTION) {
5381 old_hash = rcu_dereference_protected(ftrace_graph_hash,
5382 lockdep_is_held(&graph_lock));
5383 rcu_assign_pointer(ftrace_graph_hash, new_hash);
5384 } else {
5385 old_hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
5386 lockdep_is_held(&graph_lock));
5387 rcu_assign_pointer(ftrace_graph_notrace_hash, new_hash);
5388 }
5389
5390 mutex_unlock(&graph_lock);
5391
5392 /* Wait till all users are no longer using the old hash */
5393 synchronize_sched();
5394
5395 free_ftrace_hash(old_hash);
5396 }
5397
5398 out:
Luis Henriquesf9797c22017-05-25 16:20:38 +01005399 free_ftrace_hash(fgd->new_hash);
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005400 kfree(fgd);
5401
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005402 return ret;
Li Zefan87827112009-07-23 11:29:11 +08005403}
5404
5405static int
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005406ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005407{
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005408 struct ftrace_glob func_g;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005409 struct dyn_ftrace *rec;
5410 struct ftrace_page *pg;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005411 struct ftrace_func_entry *entry;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005412 int fail = 1;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005413 int not;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005414
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005415 /* decode regex */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005416 func_g.type = filter_parse_regex(buffer, strlen(buffer),
5417 &func_g.search, &not);
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005418
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005419 func_g.len = strlen(func_g.search);
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005420
Steven Rostedt52baf112009-02-14 01:15:39 -05005421 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04005422
5423 if (unlikely(ftrace_disabled)) {
5424 mutex_unlock(&ftrace_lock);
5425 return -ENODEV;
5426 }
5427
Steven Rostedt265c8312009-02-13 12:43:56 -05005428 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005429
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05005430 if (rec->flags & FTRACE_FL_DISABLED)
5431 continue;
5432
Dmitry Safonov0b507e12015-09-29 19:46:15 +03005433 if (ftrace_match_record(rec, &func_g, NULL, 0)) {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005434 entry = ftrace_lookup_ip(hash, rec->ip);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005435
5436 if (!not) {
5437 fail = 0;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005438
5439 if (entry)
5440 continue;
5441 if (add_hash_entry(hash, rec->ip) < 0)
5442 goto out;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005443 } else {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005444 if (entry) {
5445 free_hash_entry(hash, entry);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005446 fail = 0;
5447 }
5448 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005449 }
Steven Rostedt265c8312009-02-13 12:43:56 -05005450 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005451out:
Steven Rostedt52baf112009-02-14 01:15:39 -05005452 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005453
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005454 if (fail)
5455 return -EINVAL;
5456
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005457 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005458}
5459
5460static ssize_t
5461ftrace_graph_write(struct file *file, const char __user *ubuf,
5462 size_t cnt, loff_t *ppos)
5463{
Namhyung Kim6a101082013-10-14 17:24:25 +09005464 ssize_t read, ret = 0;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005465 struct ftrace_graph_data *fgd = file->private_data;
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005466 struct trace_parser *parser;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005467
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005468 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005469 return 0;
5470
Steven Rostedt (VMware)ae98d272017-02-02 16:59:06 -05005471 /* Read mode uses seq functions */
5472 if (file->f_mode & FMODE_READ) {
5473 struct seq_file *m = file->private_data;
5474 fgd = m->private;
5475 }
5476
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005477 parser = &fgd->parser;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005478
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005479 read = trace_get_user(parser, ubuf, cnt, ppos);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005480
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005481 if (read >= 0 && trace_parser_loaded(parser) &&
5482 !trace_parser_cont(parser)) {
Namhyung Kim6a101082013-10-14 17:24:25 +09005483
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005484 ret = ftrace_graph_set_hash(fgd->new_hash,
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005485 parser->buffer);
5486 trace_parser_clear(parser);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005487 }
5488
Namhyung Kim6a101082013-10-14 17:24:25 +09005489 if (!ret)
5490 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08005491
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005492 return ret;
5493}
5494
5495static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08005496 .open = ftrace_graph_open,
5497 .read = seq_read,
5498 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005499 .llseek = tracing_lseek,
Li Zefan87827112009-07-23 11:29:11 +08005500 .release = ftrace_graph_release,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005501};
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005502
5503static const struct file_operations ftrace_graph_notrace_fops = {
5504 .open = ftrace_graph_notrace_open,
5505 .read = seq_read,
5506 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005507 .llseek = tracing_lseek,
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005508 .release = ftrace_graph_release,
5509};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005510#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
5511
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05005512void ftrace_create_filter_files(struct ftrace_ops *ops,
5513 struct dentry *parent)
5514{
5515
5516 trace_create_file("set_ftrace_filter", 0644, parent,
5517 ops, &ftrace_filter_fops);
5518
5519 trace_create_file("set_ftrace_notrace", 0644, parent,
5520 ops, &ftrace_notrace_fops);
5521}
5522
5523/*
5524 * The name "destroy_filter_files" is really a misnomer. Although
5525 * in the future, it may actualy delete the files, but this is
5526 * really intended to make sure the ops passed in are disabled
5527 * and that when this function returns, the caller is free to
5528 * free the ops.
5529 *
5530 * The "destroy" name is only to match the "create" name that this
5531 * should be paired with.
5532 */
5533void ftrace_destroy_filter_files(struct ftrace_ops *ops)
5534{
5535 mutex_lock(&ftrace_lock);
5536 if (ops->flags & FTRACE_OPS_FL_ENABLED)
5537 ftrace_shutdown(ops, 0);
5538 ops->flags |= FTRACE_OPS_FL_DELETED;
5539 mutex_unlock(&ftrace_lock);
5540}
5541
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005542static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02005543{
Steven Rostedt5072c592008-05-12 21:20:43 +02005544
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005545 trace_create_file("available_filter_functions", 0444,
5546 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02005547
Steven Rostedt647bcd02011-05-03 14:39:21 -04005548 trace_create_file("enabled_functions", 0444,
5549 d_tracer, NULL, &ftrace_enabled_fops);
5550
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05005551 ftrace_create_filter_files(&global_ops, d_tracer);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04005552
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005553#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005554 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005555 NULL,
5556 &ftrace_graph_fops);
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005557 trace_create_file("set_graph_notrace", 0444, d_tracer,
5558 NULL,
5559 &ftrace_graph_notrace_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005560#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
5561
Steven Rostedt5072c592008-05-12 21:20:43 +02005562 return 0;
5563}
5564
Steven Rostedt9fd49322012-04-24 22:32:06 -04005565static int ftrace_cmp_ips(const void *a, const void *b)
Steven Rostedt68950612011-12-16 17:06:45 -05005566{
Steven Rostedt9fd49322012-04-24 22:32:06 -04005567 const unsigned long *ipa = a;
5568 const unsigned long *ipb = b;
Steven Rostedt68950612011-12-16 17:06:45 -05005569
Steven Rostedt9fd49322012-04-24 22:32:06 -04005570 if (*ipa > *ipb)
5571 return 1;
5572 if (*ipa < *ipb)
5573 return -1;
5574 return 0;
5575}
5576
Jiri Olsa5cb084b2009-10-13 16:33:53 -04005577static int ftrace_process_locs(struct module *mod,
Steven Rostedt31e88902008-11-14 16:21:19 -08005578 unsigned long *start,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005579 unsigned long *end)
5580{
Steven Rostedt706c81f2012-04-24 23:45:26 -04005581 struct ftrace_page *start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05005582 struct ftrace_page *pg;
Steven Rostedt706c81f2012-04-24 23:45:26 -04005583 struct dyn_ftrace *rec;
Steven Rostedta7900872011-12-16 16:23:44 -05005584 unsigned long count;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005585 unsigned long *p;
5586 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04005587 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedta7900872011-12-16 16:23:44 -05005588 int ret = -ENOMEM;
5589
5590 count = end - start;
5591
5592 if (!count)
5593 return 0;
5594
Steven Rostedt9fd49322012-04-24 22:32:06 -04005595 sort(start, count, sizeof(*start),
Rasmus Villemoes6db02902015-09-09 23:27:02 +02005596 ftrace_cmp_ips, NULL);
Steven Rostedt9fd49322012-04-24 22:32:06 -04005597
Steven Rostedt706c81f2012-04-24 23:45:26 -04005598 start_pg = ftrace_allocate_pages(count);
5599 if (!start_pg)
Steven Rostedta7900872011-12-16 16:23:44 -05005600 return -ENOMEM;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005601
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005602 mutex_lock(&ftrace_lock);
Steven Rostedta7900872011-12-16 16:23:44 -05005603
Steven Rostedt320823092011-12-16 14:42:37 -05005604 /*
5605 * Core and each module needs their own pages, as
5606 * modules will free them when they are removed.
5607 * Force a new page to be allocated for modules.
5608 */
Steven Rostedta7900872011-12-16 16:23:44 -05005609 if (!mod) {
5610 WARN_ON(ftrace_pages || ftrace_pages_start);
5611 /* First initialization */
Steven Rostedt706c81f2012-04-24 23:45:26 -04005612 ftrace_pages = ftrace_pages_start = start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05005613 } else {
Steven Rostedt320823092011-12-16 14:42:37 -05005614 if (!ftrace_pages)
Steven Rostedta7900872011-12-16 16:23:44 -05005615 goto out;
Steven Rostedt320823092011-12-16 14:42:37 -05005616
Steven Rostedta7900872011-12-16 16:23:44 -05005617 if (WARN_ON(ftrace_pages->next)) {
5618 /* Hmm, we have free pages? */
5619 while (ftrace_pages->next)
5620 ftrace_pages = ftrace_pages->next;
Steven Rostedt320823092011-12-16 14:42:37 -05005621 }
Steven Rostedta7900872011-12-16 16:23:44 -05005622
Steven Rostedt706c81f2012-04-24 23:45:26 -04005623 ftrace_pages->next = start_pg;
Steven Rostedt320823092011-12-16 14:42:37 -05005624 }
5625
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005626 p = start;
Steven Rostedt706c81f2012-04-24 23:45:26 -04005627 pg = start_pg;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005628 while (p < end) {
5629 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08005630 /*
5631 * Some architecture linkers will pad between
5632 * the different mcount_loc sections of different
5633 * object files to satisfy alignments.
5634 * Skip any NULL pointers.
5635 */
5636 if (!addr)
5637 continue;
Steven Rostedt706c81f2012-04-24 23:45:26 -04005638
5639 if (pg->index == pg->size) {
5640 /* We should have allocated enough */
5641 if (WARN_ON(!pg->next))
5642 break;
5643 pg = pg->next;
5644 }
5645
5646 rec = &pg->records[pg->index++];
5647 rec->ip = addr;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005648 }
5649
Steven Rostedt706c81f2012-04-24 23:45:26 -04005650 /* We should have used all pages */
5651 WARN_ON(pg->next);
5652
5653 /* Assign the last page to ftrace_pages */
5654 ftrace_pages = pg;
5655
Steven Rostedta4f18ed2011-06-07 09:26:46 -04005656 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04005657 * We only need to disable interrupts on start up
5658 * because we are modifying code that an interrupt
5659 * may execute, and the modification is not atomic.
5660 * But for modules, nothing runs the code we modify
5661 * until we are finished with it, and there's no
5662 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04005663 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04005664 if (!mod)
5665 local_irq_save(flags);
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01005666 ftrace_update_code(mod, start_pg);
Steven Rostedt4376cac2011-06-24 23:28:13 -04005667 if (!mod)
5668 local_irq_restore(flags);
Steven Rostedta7900872011-12-16 16:23:44 -05005669 ret = 0;
5670 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005671 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005672
Steven Rostedta7900872011-12-16 16:23:44 -05005673 return ret;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005674}
5675
Steven Rostedt93eb6772009-04-15 13:24:06 -04005676#ifdef CONFIG_MODULES
Steven Rostedt320823092011-12-16 14:42:37 -05005677
5678#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
5679
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005680static int referenced_filters(struct dyn_ftrace *rec)
5681{
5682 struct ftrace_ops *ops;
5683 int cnt = 0;
5684
5685 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
5686 if (ops_references_rec(ops, rec))
5687 cnt++;
5688 }
5689
5690 return cnt;
5691}
5692
Steven Rostedt (VMware)2a5bfe42017-08-31 17:36:51 -04005693static void
5694clear_mod_from_hash(struct ftrace_page *pg, struct ftrace_hash *hash)
5695{
5696 struct ftrace_func_entry *entry;
5697 struct dyn_ftrace *rec;
5698 int i;
5699
5700 if (ftrace_hash_empty(hash))
5701 return;
5702
5703 for (i = 0; i < pg->index; i++) {
5704 rec = &pg->records[i];
5705 entry = __ftrace_lookup_ip(hash, rec->ip);
5706 /*
5707 * Do not allow this rec to match again.
5708 * Yeah, it may waste some memory, but will be removed
5709 * if/when the hash is modified again.
5710 */
5711 if (entry)
5712 entry->ip = 0;
5713 }
5714}
5715
5716/* Clear any records from hashs */
5717static void clear_mod_from_hashes(struct ftrace_page *pg)
5718{
5719 struct trace_array *tr;
5720
5721 mutex_lock(&trace_types_lock);
5722 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
5723 if (!tr->ops || !tr->ops->func_hash)
5724 continue;
5725 mutex_lock(&tr->ops->func_hash->regex_lock);
5726 clear_mod_from_hash(pg, tr->ops->func_hash->filter_hash);
5727 clear_mod_from_hash(pg, tr->ops->func_hash->notrace_hash);
5728 mutex_unlock(&tr->ops->func_hash->regex_lock);
5729 }
5730 mutex_unlock(&trace_types_lock);
5731}
5732
jolsa@redhat.come7247a12009-10-07 19:00:35 +02005733void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005734{
5735 struct dyn_ftrace *rec;
Steven Rostedt320823092011-12-16 14:42:37 -05005736 struct ftrace_page **last_pg;
Steven Rostedt (VMware)2a5bfe42017-08-31 17:36:51 -04005737 struct ftrace_page *tmp_page = NULL;
Steven Rostedt93eb6772009-04-15 13:24:06 -04005738 struct ftrace_page *pg;
Steven Rostedta7900872011-12-16 16:23:44 -05005739 int order;
Steven Rostedt93eb6772009-04-15 13:24:06 -04005740
Steven Rostedt93eb6772009-04-15 13:24:06 -04005741 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04005742
5743 if (ftrace_disabled)
5744 goto out_unlock;
5745
Steven Rostedt320823092011-12-16 14:42:37 -05005746 /*
5747 * Each module has its own ftrace_pages, remove
5748 * them from the list.
5749 */
5750 last_pg = &ftrace_pages_start;
5751 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
5752 rec = &pg->records[0];
jolsa@redhat.come7247a12009-10-07 19:00:35 +02005753 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04005754 /*
Steven Rostedt320823092011-12-16 14:42:37 -05005755 * As core pages are first, the first
5756 * page should never be a module page.
Steven Rostedt93eb6772009-04-15 13:24:06 -04005757 */
Steven Rostedt320823092011-12-16 14:42:37 -05005758 if (WARN_ON(pg == ftrace_pages_start))
5759 goto out_unlock;
5760
5761 /* Check if we are deleting the last page */
5762 if (pg == ftrace_pages)
5763 ftrace_pages = next_to_ftrace_page(last_pg);
5764
Steven Rostedt (VMware)83dd1492017-06-27 11:04:40 -04005765 ftrace_update_tot_cnt -= pg->index;
Steven Rostedt320823092011-12-16 14:42:37 -05005766 *last_pg = pg->next;
Steven Rostedt (VMware)2a5bfe42017-08-31 17:36:51 -04005767
5768 pg->next = tmp_page;
5769 tmp_page = pg;
Steven Rostedt320823092011-12-16 14:42:37 -05005770 } else
5771 last_pg = &pg->next;
5772 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04005773 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04005774 mutex_unlock(&ftrace_lock);
Steven Rostedt (VMware)2a5bfe42017-08-31 17:36:51 -04005775
5776 for (pg = tmp_page; pg; pg = tmp_page) {
5777
5778 /* Needs to be called outside of ftrace_lock */
5779 clear_mod_from_hashes(pg);
5780
5781 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
5782 free_pages((unsigned long)pg->records, order);
5783 tmp_page = pg->next;
5784 kfree(pg);
5785 }
Steven Rostedt93eb6772009-04-15 13:24:06 -04005786}
5787
Jessica Yu7dcd1822016-02-16 17:32:33 -05005788void ftrace_module_enable(struct module *mod)
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005789{
5790 struct dyn_ftrace *rec;
5791 struct ftrace_page *pg;
5792
5793 mutex_lock(&ftrace_lock);
5794
5795 if (ftrace_disabled)
5796 goto out_unlock;
5797
5798 /*
5799 * If the tracing is enabled, go ahead and enable the record.
5800 *
5801 * The reason not to enable the record immediatelly is the
5802 * inherent check of ftrace_make_nop/ftrace_make_call for
5803 * correct previous instructions. Making first the NOP
5804 * conversion puts the module to the correct state, thus
5805 * passing the ftrace_make_call check.
5806 *
5807 * We also delay this to after the module code already set the
5808 * text to read-only, as we now need to set it back to read-write
5809 * so that we can modify the text.
5810 */
5811 if (ftrace_start_up)
5812 ftrace_arch_code_modify_prepare();
5813
5814 do_for_each_ftrace_rec(pg, rec) {
5815 int cnt;
5816 /*
5817 * do_for_each_ftrace_rec() is a double loop.
5818 * module text shares the pg. If a record is
5819 * not part of this module, then skip this pg,
5820 * which the "break" will do.
5821 */
5822 if (!within_module_core(rec->ip, mod))
5823 break;
5824
5825 cnt = 0;
5826
5827 /*
5828 * When adding a module, we need to check if tracers are
5829 * currently enabled and if they are, and can trace this record,
5830 * we need to enable the module functions as well as update the
5831 * reference counts for those function records.
5832 */
5833 if (ftrace_start_up)
5834 cnt += referenced_filters(rec);
5835
5836 /* This clears FTRACE_FL_DISABLED */
5837 rec->flags = cnt;
5838
5839 if (ftrace_start_up && cnt) {
5840 int failed = __ftrace_replace_code(rec, 1);
5841 if (failed) {
5842 ftrace_bug(failed, rec);
5843 goto out_loop;
5844 }
5845 }
5846
5847 } while_for_each_ftrace_rec();
5848
5849 out_loop:
5850 if (ftrace_start_up)
5851 ftrace_arch_code_modify_post_process();
5852
5853 out_unlock:
5854 mutex_unlock(&ftrace_lock);
Steven Rostedt (VMware)d7fbf8d2017-06-26 10:57:21 -04005855
5856 process_cached_mods(mod->name);
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005857}
5858
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04005859void ftrace_module_init(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005860{
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005861 if (ftrace_disabled || !mod->num_ftrace_callsites)
Abel Vesab6b71f62015-12-02 15:39:57 +01005862 return;
5863
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005864 ftrace_process_locs(mod, mod->ftrace_callsites,
5865 mod->ftrace_callsites + mod->num_ftrace_callsites);
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05005866}
Steven Rostedt93eb6772009-04-15 13:24:06 -04005867#endif /* CONFIG_MODULES */
5868
Steven Rostedt (VMware)b80f0f62017-04-03 12:57:35 -04005869void __init ftrace_free_init_mem(void)
Steven Rostedt (VMware)42c269c2017-03-03 16:15:39 -05005870{
Steven Rostedt (VMware)b80f0f62017-04-03 12:57:35 -04005871 unsigned long start = (unsigned long)(&__init_begin);
5872 unsigned long end = (unsigned long)(&__init_end);
Steven Rostedt (VMware)42c269c2017-03-03 16:15:39 -05005873 struct ftrace_page **last_pg = &ftrace_pages_start;
5874 struct ftrace_page *pg;
5875 struct dyn_ftrace *rec;
5876 struct dyn_ftrace key;
5877 int order;
5878
5879 key.ip = start;
5880 key.flags = end; /* overload flags, as it is unsigned long */
5881
5882 mutex_lock(&ftrace_lock);
5883
5884 for (pg = ftrace_pages_start; pg; last_pg = &pg->next, pg = *last_pg) {
5885 if (end < pg->records[0].ip ||
5886 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
5887 continue;
5888 again:
5889 rec = bsearch(&key, pg->records, pg->index,
5890 sizeof(struct dyn_ftrace),
5891 ftrace_cmp_recs);
5892 if (!rec)
5893 continue;
5894 pg->index--;
Steven Rostedt (VMware)4ec78462017-06-28 11:57:03 -04005895 ftrace_update_tot_cnt--;
Steven Rostedt (VMware)42c269c2017-03-03 16:15:39 -05005896 if (!pg->index) {
5897 *last_pg = pg->next;
5898 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
5899 free_pages((unsigned long)pg->records, order);
5900 kfree(pg);
5901 pg = container_of(last_pg, struct ftrace_page, next);
5902 if (!(*last_pg))
5903 ftrace_pages = pg;
5904 continue;
5905 }
5906 memmove(rec, rec + 1,
5907 (pg->index - (rec - pg->records)) * sizeof(*rec));
5908 /* More than one function may be in this block */
5909 goto again;
5910 }
5911 mutex_unlock(&ftrace_lock);
5912}
5913
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005914void __init ftrace_init(void)
5915{
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01005916 extern unsigned long __start_mcount_loc[];
5917 extern unsigned long __stop_mcount_loc[];
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005918 unsigned long count, flags;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005919 int ret;
5920
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005921 local_irq_save(flags);
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005922 ret = ftrace_dyn_arch_init();
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005923 local_irq_restore(flags);
Jiri Slabyaf64a7c2014-02-24 19:59:58 +01005924 if (ret)
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005925 goto failed;
5926
5927 count = __stop_mcount_loc - __start_mcount_loc;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005928 if (!count) {
5929 pr_info("ftrace: No functions to be traced?\n");
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005930 goto failed;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005931 }
5932
5933 pr_info("ftrace: allocating %ld entries in %ld pages\n",
5934 count, count / ENTRIES_PER_PAGE + 1);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005935
5936 last_ftrace_enabled = ftrace_enabled = 1;
5937
Jiri Olsa5cb084b2009-10-13 16:33:53 -04005938 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08005939 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005940 __stop_mcount_loc);
5941
Steven Rostedt2af15d62009-05-28 13:37:24 -04005942 set_ftrace_early_filters();
5943
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005944 return;
5945 failed:
5946 ftrace_disabled = 1;
5947}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005948
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005949/* Do nothing if arch does not support this */
5950void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
5951{
5952}
5953
5954static void ftrace_update_trampoline(struct ftrace_ops *ops)
5955{
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005956 arch_ftrace_update_trampoline(ops);
5957}
5958
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04005959void ftrace_init_trace_array(struct trace_array *tr)
5960{
5961 INIT_LIST_HEAD(&tr->func_probes);
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04005962 INIT_LIST_HEAD(&tr->mod_trace);
5963 INIT_LIST_HEAD(&tr->mod_notrace);
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04005964}
Steven Rostedt3d083392008-05-12 21:20:42 +02005965#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005966
Steven Rostedt2b499382011-05-03 22:49:52 -04005967static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04005968 .func = ftrace_stub,
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005969 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5970 FTRACE_OPS_FL_INITIALIZED |
5971 FTRACE_OPS_FL_PID,
Steven Rostedtbd69c302011-05-03 21:55:54 -04005972};
5973
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005974static int __init ftrace_nodyn_init(void)
5975{
5976 ftrace_enabled = 1;
5977 return 0;
5978}
Steven Rostedt6f415672012-10-05 12:13:07 -04005979core_initcall(ftrace_nodyn_init);
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005980
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005981static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005982static inline void ftrace_startup_enable(int command) { }
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005983static inline void ftrace_startup_all(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05005984/* Keep as macros so we do not need to define the commands */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005985# define ftrace_startup(ops, command) \
5986 ({ \
5987 int ___ret = __register_ftrace_function(ops); \
5988 if (!___ret) \
5989 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
5990 ___ret; \
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04005991 })
Steven Rostedt (Red Hat)1fcc1552014-02-19 15:12:18 -05005992# define ftrace_shutdown(ops, command) \
5993 ({ \
5994 int ___ret = __unregister_ftrace_function(ops); \
5995 if (!___ret) \
5996 (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \
5997 ___ret; \
5998 })
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005999
Ingo Molnarc7aafc52008-05-12 21:20:45 +02006000# define ftrace_startup_sysctl() do { } while (0)
6001# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04006002
6003static inline int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04006004ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04006005{
6006 return 1;
6007}
6008
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04006009static void ftrace_update_trampoline(struct ftrace_ops *ops)
6010{
6011}
6012
Steven Rostedt3d083392008-05-12 21:20:42 +02006013#endif /* CONFIG_DYNAMIC_FTRACE */
6014
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05006015__init void ftrace_init_global_array_ops(struct trace_array *tr)
6016{
6017 tr->ops = &global_ops;
6018 tr->ops->private = tr;
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04006019 ftrace_init_trace_array(tr);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05006020}
6021
6022void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
6023{
6024 /* If we filter on pids, update to use the pid function */
6025 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
6026 if (WARN_ON(tr->ops->func != ftrace_stub))
6027 printk("ftrace ops had %pS for function\n",
6028 tr->ops->func);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05006029 }
6030 tr->ops->func = func;
6031 tr->ops->private = tr;
6032}
6033
6034void ftrace_reset_array_ops(struct trace_array *tr)
6035{
6036 tr->ops->func = ftrace_stub;
6037}
6038
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006039static inline void
6040__ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04006041 struct ftrace_ops *ignored, struct pt_regs *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04006042{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04006043 struct ftrace_ops *op;
Steven Rostedtedc15ca2012-11-02 17:47:21 -04006044 int bit;
Steven Rostedtb8489142011-05-04 09:27:52 -04006045
Steven Rostedtedc15ca2012-11-02 17:47:21 -04006046 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
6047 if (bit < 0)
6048 return;
Steven Rostedtc29f1222012-11-02 17:17:59 -04006049
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04006050 /*
6051 * Some of the ops may be dynamically allocated,
6052 * they must be freed after a synchronize_sched().
6053 */
6054 preempt_disable_notrace();
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05006055
Steven Rostedt0a016402012-11-02 17:03:03 -04006056 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05006057 /*
6058 * Check the following for each ops before calling their func:
6059 * if RCU flag is set, then rcu_is_watching() must be true
6060 * if PER_CPU is set, then ftrace_function_local_disable()
6061 * must be false
6062 * Otherwise test if the ip matches the ops filter
6063 *
6064 * If any of the above fails then the op->func() is not executed.
6065 */
6066 if ((!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching()) &&
6067 (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
6068 !ftrace_function_local_disabled(op)) &&
6069 ftrace_ops_test(op, ip, regs)) {
6070
Steven Rostedt (Red Hat)1d48d592014-06-25 11:54:03 -04006071 if (FTRACE_WARN_ON(!op->func)) {
6072 pr_warn("op=%p %pS\n", op, op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05006073 goto out;
6074 }
Steven Rostedta1e2e312011-08-09 12:50:46 -04006075 op->func(ip, parent_ip, op, regs);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05006076 }
Steven Rostedt0a016402012-11-02 17:03:03 -04006077 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05006078out:
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04006079 preempt_enable_notrace();
Steven Rostedtedc15ca2012-11-02 17:47:21 -04006080 trace_clear_recursion(bit);
Steven Rostedtb8489142011-05-04 09:27:52 -04006081}
6082
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006083/*
6084 * Some archs only support passing ip and parent_ip. Even though
6085 * the list function ignores the op parameter, we do not want any
6086 * C side effects, where a function is called without the caller
6087 * sending a third parameter.
Steven Rostedta1e2e312011-08-09 12:50:46 -04006088 * Archs are to support both the regs and ftrace_ops at the same time.
6089 * If they support ftrace_ops, it is assumed they support regs.
6090 * If call backs want to use regs, they must either check for regs
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +09006091 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
6092 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
Steven Rostedta1e2e312011-08-09 12:50:46 -04006093 * An architecture can pass partial regs with ftrace_ops and still
Li Binb8ec3302015-11-30 18:23:36 +08006094 * set the ARCH_SUPPORTS_FTRACE_OPS.
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006095 */
6096#if ARCH_SUPPORTS_FTRACE_OPS
6097static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04006098 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006099{
Steven Rostedta1e2e312011-08-09 12:50:46 -04006100 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006101}
6102#else
6103static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip)
6104{
Steven Rostedta1e2e312011-08-09 12:50:46 -04006105 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006106}
6107#endif
6108
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006109/*
6110 * If there's only one function registered but it does not support
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006111 * recursion, needs RCU protection and/or requires per cpu handling, then
6112 * this function will be called by the mcount trampoline.
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006113 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006114static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006115 struct ftrace_ops *op, struct pt_regs *regs)
6116{
6117 int bit;
6118
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006119 if ((op->flags & FTRACE_OPS_FL_RCU) && !rcu_is_watching())
6120 return;
6121
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006122 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
6123 if (bit < 0)
6124 return;
6125
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006126 preempt_disable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006127
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006128 if (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
6129 !ftrace_function_local_disabled(op)) {
6130 op->func(ip, parent_ip, op, regs);
6131 }
6132
6133 preempt_enable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006134 trace_clear_recursion(bit);
6135}
6136
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04006137/**
6138 * ftrace_ops_get_func - get the function a trampoline should call
6139 * @ops: the ops to get the function for
6140 *
6141 * Normally the mcount trampoline will call the ops->func, but there
6142 * are times that it should not. For example, if the ops does not
6143 * have its own recursion protection, then it should call the
Chunyu Hu3a150df2017-02-22 08:29:26 +08006144 * ftrace_ops_assist_func() instead.
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04006145 *
6146 * Returns the function that the trampoline should call for @ops.
6147 */
6148ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
6149{
6150 /*
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006151 * If the function does not handle recursion, needs to be RCU safe,
6152 * or does per cpu logic, then we need to call the assist handler.
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04006153 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006154 if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE) ||
6155 ops->flags & (FTRACE_OPS_FL_RCU | FTRACE_OPS_FL_PER_CPU))
6156 return ftrace_ops_assist_func;
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04006157
6158 return ops->func;
6159}
6160
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006161static void
6162ftrace_filter_pid_sched_switch_probe(void *data, bool preempt,
6163 struct task_struct *prev, struct task_struct *next)
Steven Rostedte32d8952008-12-04 00:26:41 -05006164{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006165 struct trace_array *tr = data;
6166 struct trace_pid_list *pid_list;
6167
6168 pid_list = rcu_dereference_sched(tr->function_pids);
6169
6170 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
6171 trace_ignore_this_task(pid_list, next));
6172}
6173
Namhyung Kim1e104862017-04-17 11:44:28 +09006174static void
6175ftrace_pid_follow_sched_process_fork(void *data,
6176 struct task_struct *self,
6177 struct task_struct *task)
6178{
6179 struct trace_pid_list *pid_list;
6180 struct trace_array *tr = data;
6181
6182 pid_list = rcu_dereference_sched(tr->function_pids);
6183 trace_filter_add_remove_task(pid_list, self, task);
6184}
6185
6186static void
6187ftrace_pid_follow_sched_process_exit(void *data, struct task_struct *task)
6188{
6189 struct trace_pid_list *pid_list;
6190 struct trace_array *tr = data;
6191
6192 pid_list = rcu_dereference_sched(tr->function_pids);
6193 trace_filter_add_remove_task(pid_list, NULL, task);
6194}
6195
6196void ftrace_pid_follow_fork(struct trace_array *tr, bool enable)
6197{
6198 if (enable) {
6199 register_trace_sched_process_fork(ftrace_pid_follow_sched_process_fork,
6200 tr);
6201 register_trace_sched_process_exit(ftrace_pid_follow_sched_process_exit,
6202 tr);
6203 } else {
6204 unregister_trace_sched_process_fork(ftrace_pid_follow_sched_process_fork,
6205 tr);
6206 unregister_trace_sched_process_exit(ftrace_pid_follow_sched_process_exit,
6207 tr);
6208 }
6209}
6210
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006211static void clear_ftrace_pids(struct trace_array *tr)
6212{
6213 struct trace_pid_list *pid_list;
Steven Rostedte32d8952008-12-04 00:26:41 -05006214 int cpu;
6215
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006216 pid_list = rcu_dereference_protected(tr->function_pids,
6217 lockdep_is_held(&ftrace_lock));
6218 if (!pid_list)
6219 return;
6220
6221 unregister_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
6222
6223 for_each_possible_cpu(cpu)
6224 per_cpu_ptr(tr->trace_buffer.data, cpu)->ftrace_ignore_pid = false;
6225
6226 rcu_assign_pointer(tr->function_pids, NULL);
6227
6228 /* Wait till all users are no longer using pid filtering */
6229 synchronize_sched();
6230
6231 trace_free_pid_list(pid_list);
Steven Rostedte32d8952008-12-04 00:26:41 -05006232}
6233
Namhyung Kimd879d0b2017-04-17 11:44:27 +09006234void ftrace_clear_pids(struct trace_array *tr)
6235{
6236 mutex_lock(&ftrace_lock);
6237
6238 clear_ftrace_pids(tr);
6239
6240 mutex_unlock(&ftrace_lock);
6241}
6242
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006243static void ftrace_pid_reset(struct trace_array *tr)
Steven Rostedte32d8952008-12-04 00:26:41 -05006244{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006245 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006246 clear_ftrace_pids(tr);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006247
6248 ftrace_update_pid_func();
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04006249 ftrace_startup_all(0);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006250
6251 mutex_unlock(&ftrace_lock);
6252}
6253
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006254/* Greater than any max PID */
6255#define FTRACE_NO_PIDS (void *)(PID_MAX_LIMIT + 1)
6256
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006257static void *fpid_start(struct seq_file *m, loff_t *pos)
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006258 __acquires(RCU)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006259{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006260 struct trace_pid_list *pid_list;
6261 struct trace_array *tr = m->private;
6262
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006263 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006264 rcu_read_lock_sched();
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006265
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006266 pid_list = rcu_dereference_sched(tr->function_pids);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006267
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006268 if (!pid_list)
6269 return !(*pos) ? FTRACE_NO_PIDS : NULL;
6270
6271 return trace_pid_start(pid_list, pos);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006272}
6273
6274static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
6275{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006276 struct trace_array *tr = m->private;
6277 struct trace_pid_list *pid_list = rcu_dereference_sched(tr->function_pids);
6278
6279 if (v == FTRACE_NO_PIDS)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006280 return NULL;
6281
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006282 return trace_pid_next(pid_list, v, pos);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006283}
6284
6285static void fpid_stop(struct seq_file *m, void *p)
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006286 __releases(RCU)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006287{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006288 rcu_read_unlock_sched();
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006289 mutex_unlock(&ftrace_lock);
6290}
6291
6292static int fpid_show(struct seq_file *m, void *v)
6293{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006294 if (v == FTRACE_NO_PIDS) {
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01006295 seq_puts(m, "no pid\n");
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006296 return 0;
6297 }
6298
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006299 return trace_pid_show(m, v);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006300}
6301
6302static const struct seq_operations ftrace_pid_sops = {
6303 .start = fpid_start,
6304 .next = fpid_next,
6305 .stop = fpid_stop,
6306 .show = fpid_show,
6307};
6308
6309static int
6310ftrace_pid_open(struct inode *inode, struct file *file)
6311{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006312 struct trace_array *tr = inode->i_private;
6313 struct seq_file *m;
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006314 int ret = 0;
6315
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006316 if (trace_array_get(tr) < 0)
6317 return -ENODEV;
6318
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006319 if ((file->f_mode & FMODE_WRITE) &&
6320 (file->f_flags & O_TRUNC))
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006321 ftrace_pid_reset(tr);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006322
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006323 ret = seq_open(file, &ftrace_pid_sops);
6324 if (ret < 0) {
6325 trace_array_put(tr);
6326 } else {
6327 m = file->private_data;
6328 /* copy tr over to seq ops */
6329 m->private = tr;
6330 }
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006331
6332 return ret;
6333}
6334
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006335static void ignore_task_cpu(void *data)
6336{
6337 struct trace_array *tr = data;
6338 struct trace_pid_list *pid_list;
6339
6340 /*
6341 * This function is called by on_each_cpu() while the
6342 * event_mutex is held.
6343 */
6344 pid_list = rcu_dereference_protected(tr->function_pids,
6345 mutex_is_locked(&ftrace_lock));
6346
6347 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
6348 trace_ignore_this_task(pid_list, current));
6349}
6350
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006351static ssize_t
6352ftrace_pid_write(struct file *filp, const char __user *ubuf,
6353 size_t cnt, loff_t *ppos)
6354{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006355 struct seq_file *m = filp->private_data;
6356 struct trace_array *tr = m->private;
6357 struct trace_pid_list *filtered_pids = NULL;
6358 struct trace_pid_list *pid_list;
6359 ssize_t ret;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006360
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006361 if (!cnt)
6362 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006363
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006364 mutex_lock(&ftrace_lock);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006365
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006366 filtered_pids = rcu_dereference_protected(tr->function_pids,
6367 lockdep_is_held(&ftrace_lock));
6368
6369 ret = trace_pid_write(filtered_pids, &pid_list, ubuf, cnt);
6370 if (ret < 0)
6371 goto out;
6372
6373 rcu_assign_pointer(tr->function_pids, pid_list);
6374
6375 if (filtered_pids) {
6376 synchronize_sched();
6377 trace_free_pid_list(filtered_pids);
6378 } else if (pid_list) {
6379 /* Register a probe to set whether to ignore the tracing of a task */
6380 register_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
6381 }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006382
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006383 /*
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006384 * Ignoring of pids is done at task switch. But we have to
6385 * check for those tasks that are currently running.
6386 * Always do this in case a pid was appended or removed.
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006387 */
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006388 on_each_cpu(ignore_task_cpu, tr, 1);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006389
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006390 ftrace_update_pid_func();
6391 ftrace_startup_all(0);
6392 out:
6393 mutex_unlock(&ftrace_lock);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006394
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006395 if (ret > 0)
6396 *ppos += ret;
Steven Rostedt978f3a42008-12-04 00:26:40 -05006397
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006398 return ret;
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006399}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006400
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006401static int
6402ftrace_pid_release(struct inode *inode, struct file *file)
6403{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006404 struct trace_array *tr = inode->i_private;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006405
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006406 trace_array_put(tr);
6407
6408 return seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006409}
6410
Steven Rostedt5e2336a2009-03-05 21:44:55 -05006411static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006412 .open = ftrace_pid_open,
6413 .write = ftrace_pid_write,
6414 .read = seq_read,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05006415 .llseek = tracing_lseek,
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006416 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006417};
6418
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006419void ftrace_init_tracefs(struct trace_array *tr, struct dentry *d_tracer)
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006420{
Frederic Weisbecker5452af62009-03-27 00:25:38 +01006421 trace_create_file("set_ftrace_pid", 0644, d_tracer,
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006422 tr, &ftrace_pid_fops);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006423}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006424
Steven Rostedt (Red Hat)501c2372016-07-05 10:04:34 -04006425void __init ftrace_init_tracefs_toplevel(struct trace_array *tr,
6426 struct dentry *d_tracer)
6427{
6428 /* Only the top level directory has the dyn_tracefs and profile */
6429 WARN_ON(!(tr->flags & TRACE_ARRAY_FL_GLOBAL));
6430
6431 ftrace_init_dyn_tracefs(d_tracer);
6432 ftrace_profile_tracefs(d_tracer);
6433}
6434
Steven Rostedt3d083392008-05-12 21:20:42 +02006435/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04006436 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04006437 *
6438 * This function should be used by panic code. It stops ftrace
6439 * but in a not so nice way. If you need to simply kill ftrace
6440 * from a non-atomic section, use ftrace_kill.
6441 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04006442void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04006443{
6444 ftrace_disabled = 1;
6445 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04006446 clear_ftrace_function();
6447}
6448
6449/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04006450 * Test if ftrace is dead or not.
6451 */
6452int ftrace_is_dead(void)
6453{
6454 return ftrace_disabled;
6455}
6456
6457/**
Steven Rostedt3d083392008-05-12 21:20:42 +02006458 * register_ftrace_function - register a function for profiling
6459 * @ops - ops structure that holds the function for profiling.
6460 *
6461 * Register a function to be called by all functions in the
6462 * kernel.
6463 *
6464 * Note: @ops->func and all the functions it calls must be labeled
6465 * with "notrace", otherwise it will go into a
6466 * recursive loop.
6467 */
6468int register_ftrace_function(struct ftrace_ops *ops)
6469{
Steven Rostedt45a4a232011-04-21 23:16:46 -04006470 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02006471
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09006472 ftrace_ops_init(ops);
6473
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006474 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006475
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05006476 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04006477
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006478 mutex_unlock(&ftrace_lock);
Borislav Petkov8d240dd2012-03-29 19:11:40 +02006479
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006480 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02006481}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04006482EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02006483
6484/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01006485 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02006486 * @ops - ops structure that holds the function to unregister
6487 *
6488 * Unregister a function that was added to be called by ftrace profiling.
6489 */
6490int unregister_ftrace_function(struct ftrace_ops *ops)
6491{
6492 int ret;
6493
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006494 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05006495 ret = ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006496 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006497
6498 return ret;
6499}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04006500EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006501
Ingo Molnare309b412008-05-12 21:20:51 +02006502int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006503ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07006504 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006505 loff_t *ppos)
6506{
Steven Rostedt45a4a232011-04-21 23:16:46 -04006507 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02006508
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006509 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006510
Steven Rostedt45a4a232011-04-21 23:16:46 -04006511 if (unlikely(ftrace_disabled))
6512 goto out;
6513
6514 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006515
Li Zefana32c7762009-06-26 16:55:51 +08006516 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006517 goto out;
6518
Li Zefana32c7762009-06-26 16:55:51 +08006519 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006520
6521 if (ftrace_enabled) {
6522
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006523 /* we are starting ftrace again */
Chunyan Zhangf86f4182017-06-07 16:12:51 +08006524 if (rcu_dereference_protected(ftrace_ops_list,
6525 lockdep_is_held(&ftrace_lock)) != &ftrace_list_end)
Jan Kiszka5000c412013-03-26 17:53:03 +01006526 update_ftrace_function();
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006527
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05006528 ftrace_startup_sysctl();
6529
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006530 } else {
6531 /* stopping ftrace calls (just send to ftrace_stub) */
6532 ftrace_trace_function = ftrace_stub;
6533
6534 ftrace_shutdown_sysctl();
6535 }
6536
6537 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006538 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02006539 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02006540}
Ingo Molnarf17845e2008-10-24 12:47:10 +02006541
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006542#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006543
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006544static struct ftrace_ops graph_ops = {
6545 .func = ftrace_stub,
6546 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
6547 FTRACE_OPS_FL_INITIALIZED |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04006548 FTRACE_OPS_FL_PID |
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006549 FTRACE_OPS_FL_STUB,
6550#ifdef FTRACE_GRAPH_TRAMP_ADDR
6551 .trampoline = FTRACE_GRAPH_TRAMP_ADDR,
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05006552 /* trampoline_size is only needed for dynamically allocated tramps */
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006553#endif
6554 ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash)
6555};
6556
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04006557void ftrace_graph_sleep_time_control(bool enable)
6558{
6559 fgraph_sleep_time = enable;
6560}
6561
6562void ftrace_graph_graph_time_control(bool enable)
6563{
6564 fgraph_graph_time = enable;
6565}
6566
Steven Rostedte49dc192008-12-02 23:50:05 -05006567int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
6568{
6569 return 0;
6570}
6571
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006572/* The callbacks that hook a function */
6573trace_func_graph_ret_t ftrace_graph_return =
6574 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05006575trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006576static trace_func_graph_ent_t __ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006577
6578/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
6579static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
6580{
6581 int i;
6582 int ret = 0;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006583 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
6584 struct task_struct *g, *t;
6585
6586 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
6587 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
6588 * sizeof(struct ftrace_ret_stack),
6589 GFP_KERNEL);
6590 if (!ret_stack_list[i]) {
6591 start = 0;
6592 end = i;
6593 ret = -ENOMEM;
6594 goto free;
6595 }
6596 }
6597
Soumya PN6112a302016-05-17 21:31:14 +05306598 read_lock(&tasklist_lock);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006599 do_each_thread(g, t) {
6600 if (start == end) {
6601 ret = -EAGAIN;
6602 goto unlock;
6603 }
6604
6605 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01006606 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006607 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04006608 t->curr_ret_stack = -1;
6609 /* Make sure the tasks see the -1 first: */
6610 smp_wmb();
6611 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006612 }
6613 } while_each_thread(g, t);
6614
6615unlock:
Soumya PN6112a302016-05-17 21:31:14 +05306616 read_unlock(&tasklist_lock);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006617free:
6618 for (i = start; i < end; i++)
6619 kfree(ret_stack_list[i]);
6620 return ret;
6621}
6622
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006623static void
Peter Zijlstrac73464b2015-09-28 18:06:56 +02006624ftrace_graph_probe_sched_switch(void *ignore, bool preempt,
Steven Rostedt38516ab2010-04-20 17:04:50 -04006625 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006626{
6627 unsigned long long timestamp;
6628 int index;
6629
Steven Rostedtbe6f1642009-03-24 11:06:24 -04006630 /*
6631 * Does the user want to count the time a function was asleep.
6632 * If so, do not update the time stamps.
6633 */
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04006634 if (fgraph_sleep_time)
Steven Rostedtbe6f1642009-03-24 11:06:24 -04006635 return;
6636
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006637 timestamp = trace_clock_local();
6638
6639 prev->ftrace_timestamp = timestamp;
6640
6641 /* only process tasks that we timestamped */
6642 if (!next->ftrace_timestamp)
6643 return;
6644
6645 /*
6646 * Update all the counters in next to make up for the
6647 * time next was sleeping.
6648 */
6649 timestamp -= next->ftrace_timestamp;
6650
6651 for (index = next->curr_ret_stack; index >= 0; index--)
6652 next->ret_stack[index].calltime += timestamp;
6653}
6654
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006655/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006656static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006657{
6658 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01006659 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006660
6661 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
6662 sizeof(struct ftrace_ret_stack *),
6663 GFP_KERNEL);
6664
6665 if (!ret_stack_list)
6666 return -ENOMEM;
6667
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01006668 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04006669 for_each_online_cpu(cpu) {
6670 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05006671 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04006672 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01006673
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006674 do {
6675 ret = alloc_retstack_tasklist(ret_stack_list);
6676 } while (ret == -EAGAIN);
6677
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006678 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04006679 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006680 if (ret)
6681 pr_info("ftrace_graph: Couldn't activate tracepoint"
6682 " probe to kernel_sched_switch\n");
6683 }
6684
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006685 kfree(ret_stack_list);
6686 return ret;
6687}
6688
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08006689/*
6690 * Hibernation protection.
6691 * The state of the current task is too much unstable during
6692 * suspend/restore to disk. We want to protect against that.
6693 */
6694static int
6695ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
6696 void *unused)
6697{
6698 switch (state) {
6699 case PM_HIBERNATION_PREPARE:
6700 pause_graph_tracing();
6701 break;
6702
6703 case PM_POST_HIBERNATION:
6704 unpause_graph_tracing();
6705 break;
6706 }
6707 return NOTIFY_DONE;
6708}
6709
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006710static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace)
6711{
6712 if (!ftrace_ops_test(&global_ops, trace->func, NULL))
6713 return 0;
6714 return __ftrace_graph_entry(trace);
6715}
6716
6717/*
6718 * The function graph tracer should only trace the functions defined
6719 * by set_ftrace_filter and set_ftrace_notrace. If another function
6720 * tracer ops is registered, the graph tracer requires testing the
6721 * function against the global ops, and not just trace any function
6722 * that any ftrace_ops registered.
6723 */
6724static void update_function_graph_func(void)
6725{
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006726 struct ftrace_ops *op;
6727 bool do_test = false;
6728
6729 /*
6730 * The graph and global ops share the same set of functions
6731 * to test. If any other ops is on the list, then
6732 * the graph tracing needs to test if its the function
6733 * it should call.
6734 */
6735 do_for_each_ftrace_op(op, ftrace_ops_list) {
6736 if (op != &global_ops && op != &graph_ops &&
6737 op != &ftrace_list_end) {
6738 do_test = true;
6739 /* in double loop, break out with goto */
6740 goto out;
6741 }
6742 } while_for_each_ftrace_op(op);
6743 out:
6744 if (do_test)
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006745 ftrace_graph_entry = ftrace_graph_entry_test;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006746 else
6747 ftrace_graph_entry = __ftrace_graph_entry;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006748}
6749
Mathias Krause8275f692014-03-30 15:31:50 +02006750static struct notifier_block ftrace_suspend_notifier = {
6751 .notifier_call = ftrace_suspend_notifier_call,
6752};
6753
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006754int register_ftrace_graph(trace_func_graph_ret_t retfunc,
6755 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006756{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006757 int ret = 0;
6758
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006759 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006760
Steven Rostedt05ce5812009-03-24 00:18:31 -04006761 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04006762 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04006763 ret = -EBUSY;
6764 goto out;
6765 }
6766
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08006767 register_pm_notifier(&ftrace_suspend_notifier);
6768
Steven Rostedt597af812009-04-03 15:24:12 -04006769 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006770 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006771 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04006772 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006773 goto out;
6774 }
Steven Rostedte53a6312008-11-26 00:16:25 -05006775
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006776 ftrace_graph_return = retfunc;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006777
6778 /*
6779 * Update the indirect function to the entryfunc, and the
6780 * function that gets called to the entry_test first. Then
6781 * call the update fgraph entry function to determine if
6782 * the entryfunc should be called directly or not.
6783 */
6784 __ftrace_graph_entry = entryfunc;
6785 ftrace_graph_entry = ftrace_graph_entry_test;
6786 update_function_graph_func();
Steven Rostedte53a6312008-11-26 00:16:25 -05006787
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006788 ret = ftrace_startup(&graph_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006789out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006790 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006791 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006792}
6793
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006794void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006795{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006796 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006797
Steven Rostedt597af812009-04-03 15:24:12 -04006798 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04006799 goto out;
6800
Steven Rostedt597af812009-04-03 15:24:12 -04006801 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006802 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05006803 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006804 __ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006805 ftrace_shutdown(&graph_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08006806 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04006807 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006808
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04006809#ifdef CONFIG_DYNAMIC_FTRACE
6810 /*
6811 * Function graph does not allocate the trampoline, but
6812 * other global_ops do. We need to reset the ALLOC_TRAMP flag
6813 * if one was used.
6814 */
6815 global_ops.trampoline = save_global_trampoline;
6816 if (save_global_flags & FTRACE_OPS_FL_ALLOC_TRAMP)
6817 global_ops.flags |= FTRACE_OPS_FL_ALLOC_TRAMP;
6818#endif
6819
Steven Rostedt2aad1b72009-03-30 11:11:28 -04006820 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006821 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006822}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006823
Steven Rostedt868baf02011-02-10 21:26:13 -05006824static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
6825
6826static void
6827graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
6828{
6829 atomic_set(&t->tracing_graph_pause, 0);
6830 atomic_set(&t->trace_overrun, 0);
6831 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006832 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05006833 smp_wmb();
6834 t->ret_stack = ret_stack;
6835}
6836
6837/*
6838 * Allocate a return stack for the idle task. May be the first
6839 * time through, or it may be done by CPU hotplug online.
6840 */
6841void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
6842{
6843 t->curr_ret_stack = -1;
6844 /*
6845 * The idle task has no parent, it either has its own
6846 * stack or no stack at all.
6847 */
6848 if (t->ret_stack)
6849 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
6850
6851 if (ftrace_graph_active) {
6852 struct ftrace_ret_stack *ret_stack;
6853
6854 ret_stack = per_cpu(idle_ret_stack, cpu);
6855 if (!ret_stack) {
6856 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
6857 * sizeof(struct ftrace_ret_stack),
6858 GFP_KERNEL);
6859 if (!ret_stack)
6860 return;
6861 per_cpu(idle_ret_stack, cpu) = ret_stack;
6862 }
6863 graph_init_task(t, ret_stack);
6864 }
6865}
6866
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006867/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006868void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006869{
Steven Rostedt84047e32009-06-02 16:51:55 -04006870 /* Make sure we do not use the parent ret_stack */
6871 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05006872 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04006873
Steven Rostedt597af812009-04-03 15:24:12 -04006874 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04006875 struct ftrace_ret_stack *ret_stack;
6876
6877 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006878 * sizeof(struct ftrace_ret_stack),
6879 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04006880 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006881 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05006882 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04006883 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006884}
6885
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006886void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006887{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006888 struct ftrace_ret_stack *ret_stack = t->ret_stack;
6889
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006890 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006891 /* NULL must become visible to IRQs before we free it: */
6892 barrier();
6893
6894 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006895}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006896#endif