blob: f1ccf8be9df77d6b8a7de996b874957f5f4bcebc [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
Steven Rostedtb8489142011-05-04 09:27:52 -0400116static struct ftrace_ops *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
172 for (ops = ftrace_ops_list;
173 ops != &ftrace_list_end; ops = ops->next)
174 cnt++;
175
176 mutex_unlock(&ftrace_lock);
177
178 return cnt;
179}
180
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400181static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400182 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500183{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400184 struct trace_array *tr = op->private;
185
186 if (tr && this_cpu_read(tr->trace_buffer.data->ftrace_ignore_pid))
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500187 return;
188
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400189 op->saved_func(ip, parent_ip, op, regs);
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500190}
191
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200192/**
Steven Rostedt3d083392008-05-12 21:20:42 +0200193 * clear_ftrace_function - reset the ftrace function
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200194 *
Steven Rostedt3d083392008-05-12 21:20:42 +0200195 * This NULLs the ftrace function and in essence stops
196 * tracing. There may be lag
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200197 */
Steven Rostedt3d083392008-05-12 21:20:42 +0200198void clear_ftrace_function(void)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200199{
Steven Rostedt3d083392008-05-12 21:20:42 +0200200 ftrace_trace_function = ftrace_stub;
201}
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200202
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500203static void per_cpu_ops_disable_all(struct ftrace_ops *ops)
Jiri Olsae2484912012-02-15 15:51:48 +0100204{
205 int cpu;
206
207 for_each_possible_cpu(cpu)
208 *per_cpu_ptr(ops->disabled, cpu) = 1;
209}
210
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500211static int per_cpu_ops_alloc(struct ftrace_ops *ops)
Jiri Olsae2484912012-02-15 15:51:48 +0100212{
213 int __percpu *disabled;
214
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500215 if (WARN_ON_ONCE(!(ops->flags & FTRACE_OPS_FL_PER_CPU)))
216 return -EINVAL;
217
Jiri Olsae2484912012-02-15 15:51:48 +0100218 disabled = alloc_percpu(int);
219 if (!disabled)
220 return -ENOMEM;
221
222 ops->disabled = disabled;
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500223 per_cpu_ops_disable_all(ops);
Jiri Olsae2484912012-02-15 15:51:48 +0100224 return 0;
225}
226
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500227static void ftrace_sync(struct work_struct *work)
228{
229 /*
230 * This function is just a stub to implement a hard force
231 * of synchronize_sched(). This requires synchronizing
232 * tasks even in userspace and idle.
233 *
234 * Yes, function tracing is rude.
235 */
236}
237
238static void ftrace_sync_ipi(void *data)
239{
240 /* Probably not needed, but do it anyway */
241 smp_rmb();
242}
243
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500244#ifdef CONFIG_FUNCTION_GRAPH_TRACER
245static void update_function_graph_func(void);
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400246
247/* Both enabled by default (can be cleared by function_graph tracer flags */
248static bool fgraph_sleep_time = true;
249static bool fgraph_graph_time = true;
250
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500251#else
252static inline void update_function_graph_func(void) { }
253#endif
254
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100255
256static ftrace_func_t ftrace_ops_get_list_func(struct ftrace_ops *ops)
257{
258 /*
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500259 * 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 +0100260 * then it needs to call the list anyway.
261 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500262 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU |
263 FTRACE_OPS_FL_RCU) || FTRACE_FORCE_LIST_FUNC)
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100264 return ftrace_ops_list_func;
265
266 return ftrace_ops_get_func(ops);
267}
268
Steven Rostedt2b499382011-05-03 22:49:52 -0400269static void update_ftrace_function(void)
270{
271 ftrace_func_t func;
272
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400273 /*
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400274 * Prepare the ftrace_ops that the arch callback will use.
275 * If there's only one ftrace_ops registered, the ftrace_ops_list
276 * will point to the ops we want.
277 */
278 set_function_trace_op = ftrace_ops_list;
279
280 /* If there's no ftrace_ops registered, just call the stub function */
281 if (ftrace_ops_list == &ftrace_list_end) {
282 func = ftrace_stub;
283
284 /*
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400285 * If we are at the end of the list and this ops is
Steven Rostedt47409742012-07-20 11:04:44 -0400286 * recursion safe and not dynamic and the arch supports passing ops,
287 * then have the mcount trampoline call the function directly.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400288 */
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400289 } else if (ftrace_ops_list->next == &ftrace_list_end) {
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100290 func = ftrace_ops_get_list_func(ftrace_ops_list);
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400291
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400292 } else {
293 /* Just use the default ftrace_ops */
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500294 set_function_trace_op = &ftrace_list_end;
Steven Rostedtb8489142011-05-04 09:27:52 -0400295 func = ftrace_ops_list_func;
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400296 }
Steven Rostedt2b499382011-05-03 22:49:52 -0400297
Steven Rostedt (Red Hat)5f8bf2d22014-07-15 11:05:12 -0400298 update_function_graph_func();
299
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500300 /* If there's no change, then do nothing more here */
301 if (ftrace_trace_function == func)
302 return;
303
304 /*
305 * If we are using the list function, it doesn't care
306 * about the function_trace_ops.
307 */
308 if (func == ftrace_ops_list_func) {
309 ftrace_trace_function = func;
310 /*
311 * Don't even bother setting function_trace_ops,
312 * it would be racy to do so anyway.
313 */
314 return;
315 }
316
317#ifndef CONFIG_DYNAMIC_FTRACE
318 /*
319 * For static tracing, we need to be a bit more careful.
320 * The function change takes affect immediately. Thus,
321 * we need to coorditate the setting of the function_trace_ops
322 * with the setting of the ftrace_trace_function.
323 *
324 * Set the function to the list ops, which will call the
325 * function we want, albeit indirectly, but it handles the
326 * ftrace_ops and doesn't depend on function_trace_op.
327 */
328 ftrace_trace_function = ftrace_ops_list_func;
329 /*
330 * Make sure all CPUs see this. Yes this is slow, but static
331 * tracing is slow and nasty to have enabled.
332 */
333 schedule_on_each_cpu(ftrace_sync);
334 /* Now all cpus are using the list ops. */
335 function_trace_op = set_function_trace_op;
336 /* Make sure the function_trace_op is visible on all CPUs */
337 smp_wmb();
338 /* Nasty way to force a rmb on all cpus */
339 smp_call_function(ftrace_sync_ipi, NULL, 1);
340 /* OK, we are all set to update the ftrace_trace_function now! */
341#endif /* !CONFIG_DYNAMIC_FTRACE */
342
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400343 ftrace_trace_function = func;
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400344}
345
Jiaxing Wang7eea4fc2014-04-20 23:10:43 +0800346int using_ftrace_ops_list_func(void)
347{
348 return ftrace_trace_function == ftrace_ops_list_func;
349}
350
Steven Rostedt2b499382011-05-03 22:49:52 -0400351static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
Steven Rostedt3d083392008-05-12 21:20:42 +0200352{
Steven Rostedt2b499382011-05-03 22:49:52 -0400353 ops->next = *list;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200354 /*
Steven Rostedtb8489142011-05-04 09:27:52 -0400355 * We are entering ops into the list but another
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200356 * CPU might be walking that list. We need to make sure
357 * the ops->next pointer is valid before another CPU sees
Steven Rostedtb8489142011-05-04 09:27:52 -0400358 * the ops pointer included into the list.
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200359 */
Steven Rostedt2b499382011-05-03 22:49:52 -0400360 rcu_assign_pointer(*list, ops);
361}
Steven Rostedt3d083392008-05-12 21:20:42 +0200362
Steven Rostedt2b499382011-05-03 22:49:52 -0400363static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
364{
365 struct ftrace_ops **p;
366
367 /*
368 * If we are removing the last function, then simply point
369 * to the ftrace_stub.
370 */
371 if (*list == ops && ops->next == &ftrace_list_end) {
372 *list = &ftrace_list_end;
373 return 0;
374 }
375
376 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
377 if (*p == ops)
378 break;
379
380 if (*p != ops)
381 return -1;
382
383 *p = (*p)->next;
384 return 0;
385}
386
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400387static void ftrace_update_trampoline(struct ftrace_ops *ops);
388
Steven Rostedt2b499382011-05-03 22:49:52 -0400389static int __register_ftrace_function(struct ftrace_ops *ops)
390{
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -0500391 if (ops->flags & FTRACE_OPS_FL_DELETED)
392 return -EINVAL;
393
Steven Rostedtb8489142011-05-04 09:27:52 -0400394 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
395 return -EBUSY;
396
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +0900397#ifndef CONFIG_DYNAMIC_FTRACE_WITH_REGS
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400398 /*
399 * If the ftrace_ops specifies SAVE_REGS, then it only can be used
400 * if the arch supports it, or SAVE_REGS_IF_SUPPORTED is also set.
401 * Setting SAVE_REGS_IF_SUPPORTED makes SAVE_REGS irrelevant.
402 */
403 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS &&
404 !(ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED))
405 return -EINVAL;
406
407 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED)
408 ops->flags |= FTRACE_OPS_FL_SAVE_REGS;
409#endif
410
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400411 if (!core_kernel_data((unsigned long)ops))
412 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
413
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500414 if (ops->flags & FTRACE_OPS_FL_PER_CPU) {
415 if (per_cpu_ops_alloc(ops))
Jiri Olsae2484912012-02-15 15:51:48 +0100416 return -ENOMEM;
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500417 }
418
419 add_ftrace_ops(&ftrace_ops_list, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400420
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400421 /* Always save the function, and reset at unregistering */
422 ops->saved_func = ops->func;
423
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400424 if (ftrace_pids_enabled(ops))
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400425 ops->func = ftrace_pid_func;
426
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400427 ftrace_update_trampoline(ops);
428
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400429 if (ftrace_enabled)
430 update_ftrace_function();
Steven Rostedt3d083392008-05-12 21:20:42 +0200431
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200432 return 0;
433}
434
Ingo Molnare309b412008-05-12 21:20:51 +0200435static int __unregister_ftrace_function(struct ftrace_ops *ops)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200436{
Steven Rostedt2b499382011-05-03 22:49:52 -0400437 int ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200438
Steven Rostedtb8489142011-05-04 09:27:52 -0400439 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
440 return -EBUSY;
441
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500442 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400443
Steven Rostedt2b499382011-05-03 22:49:52 -0400444 if (ret < 0)
445 return ret;
Steven Rostedtb8489142011-05-04 09:27:52 -0400446
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400447 if (ftrace_enabled)
448 update_ftrace_function();
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200449
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400450 ops->func = ops->saved_func;
451
Steven Rostedte6ea44e2009-02-14 01:42:44 -0500452 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +0200453}
454
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500455static void ftrace_update_pid_func(void)
456{
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400457 struct ftrace_ops *op;
458
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400459 /* Only do something if we are tracing something */
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500460 if (ftrace_trace_function == ftrace_stub)
KOSAKI Motohiro10dd3eb2009-03-06 15:29:04 +0900461 return;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500462
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400463 do_for_each_ftrace_op(op, ftrace_ops_list) {
464 if (op->flags & FTRACE_OPS_FL_PID) {
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400465 op->func = ftrace_pids_enabled(op) ?
466 ftrace_pid_func : op->saved_func;
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400467 ftrace_update_trampoline(op);
468 }
469 } while_for_each_ftrace_op(op);
470
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400471 update_ftrace_function();
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500472}
473
Steven Rostedt493762f2009-03-23 17:12:36 -0400474#ifdef CONFIG_FUNCTION_PROFILER
475struct ftrace_profile {
476 struct hlist_node node;
477 unsigned long ip;
478 unsigned long counter;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400479#ifdef CONFIG_FUNCTION_GRAPH_TRACER
480 unsigned long long time;
Chase Douglase330b3b2010-04-26 14:02:05 -0400481 unsigned long long time_squared;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400482#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400483};
484
485struct ftrace_profile_page {
486 struct ftrace_profile_page *next;
487 unsigned long index;
488 struct ftrace_profile records[];
489};
490
Steven Rostedtcafb1682009-03-24 20:50:39 -0400491struct ftrace_profile_stat {
492 atomic_t disabled;
493 struct hlist_head *hash;
494 struct ftrace_profile_page *pages;
495 struct ftrace_profile_page *start;
496 struct tracer_stat stat;
497};
498
Steven Rostedt493762f2009-03-23 17:12:36 -0400499#define PROFILE_RECORDS_SIZE \
500 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
501
502#define PROFILES_PER_PAGE \
503 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
504
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400505static int ftrace_profile_enabled __read_mostly;
506
507/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
Steven Rostedt493762f2009-03-23 17:12:36 -0400508static DEFINE_MUTEX(ftrace_profile_lock);
509
Steven Rostedtcafb1682009-03-24 20:50:39 -0400510static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
Steven Rostedt493762f2009-03-23 17:12:36 -0400511
Namhyung Kim20079eb2013-04-10 08:55:50 +0900512#define FTRACE_PROFILE_HASH_BITS 10
513#define FTRACE_PROFILE_HASH_SIZE (1 << FTRACE_PROFILE_HASH_BITS)
Steven Rostedt493762f2009-03-23 17:12:36 -0400514
Steven Rostedt493762f2009-03-23 17:12:36 -0400515static void *
516function_stat_next(void *v, int idx)
517{
518 struct ftrace_profile *rec = v;
519 struct ftrace_profile_page *pg;
520
521 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
522
523 again:
Li Zefan0296e422009-06-26 11:15:37 +0800524 if (idx != 0)
525 rec++;
526
Steven Rostedt493762f2009-03-23 17:12:36 -0400527 if ((void *)rec >= (void *)&pg->records[pg->index]) {
528 pg = pg->next;
529 if (!pg)
530 return NULL;
531 rec = &pg->records[0];
532 if (!rec->counter)
533 goto again;
534 }
535
536 return rec;
537}
538
539static void *function_stat_start(struct tracer_stat *trace)
540{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400541 struct ftrace_profile_stat *stat =
542 container_of(trace, struct ftrace_profile_stat, stat);
543
544 if (!stat || !stat->start)
545 return NULL;
546
547 return function_stat_next(&stat->start->records[0], 0);
Steven Rostedt493762f2009-03-23 17:12:36 -0400548}
549
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400550#ifdef CONFIG_FUNCTION_GRAPH_TRACER
551/* function graph compares on total time */
552static int function_stat_cmp(void *p1, void *p2)
553{
554 struct ftrace_profile *a = p1;
555 struct ftrace_profile *b = p2;
556
557 if (a->time < b->time)
558 return -1;
559 if (a->time > b->time)
560 return 1;
561 else
562 return 0;
563}
564#else
565/* not function graph compares against hits */
Steven Rostedt493762f2009-03-23 17:12:36 -0400566static int function_stat_cmp(void *p1, void *p2)
567{
568 struct ftrace_profile *a = p1;
569 struct ftrace_profile *b = p2;
570
571 if (a->counter < b->counter)
572 return -1;
573 if (a->counter > b->counter)
574 return 1;
575 else
576 return 0;
577}
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400578#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400579
580static int function_stat_headers(struct seq_file *m)
581{
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400582#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100583 seq_puts(m, " Function "
584 "Hit Time Avg s^2\n"
585 " -------- "
586 "--- ---- --- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400587#else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100588 seq_puts(m, " Function Hit\n"
589 " -------- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400590#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400591 return 0;
592}
593
594static int function_stat_show(struct seq_file *m, void *v)
595{
596 struct ftrace_profile *rec = v;
597 char str[KSYM_SYMBOL_LEN];
Li Zefan3aaba202010-08-23 16:50:12 +0800598 int ret = 0;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400599#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400600 static struct trace_seq s;
601 unsigned long long avg;
Chase Douglase330b3b2010-04-26 14:02:05 -0400602 unsigned long long stddev;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400603#endif
Li Zefan3aaba202010-08-23 16:50:12 +0800604 mutex_lock(&ftrace_profile_lock);
605
606 /* we raced with function_profile_reset() */
607 if (unlikely(rec->counter == 0)) {
608 ret = -EBUSY;
609 goto out;
610 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400611
Umesh Tiwari8e436ca2015-06-22 16:58:08 +0530612#ifdef CONFIG_FUNCTION_GRAPH_TRACER
613 avg = rec->time;
614 do_div(avg, rec->counter);
615 if (tracing_thresh && (avg < tracing_thresh))
616 goto out;
617#endif
618
Steven Rostedt493762f2009-03-23 17:12:36 -0400619 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400620 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
Steven Rostedt493762f2009-03-23 17:12:36 -0400621
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400622#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100623 seq_puts(m, " ");
Steven Rostedt34886c82009-03-25 21:00:47 -0400624
Chase Douglase330b3b2010-04-26 14:02:05 -0400625 /* Sample standard deviation (s^2) */
626 if (rec->counter <= 1)
627 stddev = 0;
628 else {
Juri Lelli52d85d72013-06-12 12:03:18 +0200629 /*
630 * Apply Welford's method:
631 * s^2 = 1 / (n * (n-1)) * (n * \Sum (x_i)^2 - (\Sum x_i)^2)
632 */
633 stddev = rec->counter * rec->time_squared -
634 rec->time * rec->time;
635
Chase Douglase330b3b2010-04-26 14:02:05 -0400636 /*
637 * Divide only 1000 for ns^2 -> us^2 conversion.
638 * trace_print_graph_duration will divide 1000 again.
639 */
Juri Lelli52d85d72013-06-12 12:03:18 +0200640 do_div(stddev, rec->counter * (rec->counter - 1) * 1000);
Chase Douglase330b3b2010-04-26 14:02:05 -0400641 }
642
Steven Rostedt34886c82009-03-25 21:00:47 -0400643 trace_seq_init(&s);
644 trace_print_graph_duration(rec->time, &s);
645 trace_seq_puts(&s, " ");
646 trace_print_graph_duration(avg, &s);
Chase Douglase330b3b2010-04-26 14:02:05 -0400647 trace_seq_puts(&s, " ");
648 trace_print_graph_duration(stddev, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400649 trace_print_seq(m, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400650#endif
651 seq_putc(m, '\n');
Li Zefan3aaba202010-08-23 16:50:12 +0800652out:
653 mutex_unlock(&ftrace_profile_lock);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400654
Li Zefan3aaba202010-08-23 16:50:12 +0800655 return ret;
Steven Rostedt493762f2009-03-23 17:12:36 -0400656}
657
Steven Rostedtcafb1682009-03-24 20:50:39 -0400658static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400659{
660 struct ftrace_profile_page *pg;
661
Steven Rostedtcafb1682009-03-24 20:50:39 -0400662 pg = stat->pages = stat->start;
Steven Rostedt493762f2009-03-23 17:12:36 -0400663
664 while (pg) {
665 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
666 pg->index = 0;
667 pg = pg->next;
668 }
669
Steven Rostedtcafb1682009-03-24 20:50:39 -0400670 memset(stat->hash, 0,
Steven Rostedt493762f2009-03-23 17:12:36 -0400671 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
672}
673
Steven Rostedtcafb1682009-03-24 20:50:39 -0400674int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400675{
676 struct ftrace_profile_page *pg;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400677 int functions;
678 int pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400679 int i;
680
681 /* If we already allocated, do nothing */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400682 if (stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400683 return 0;
684
Steven Rostedtcafb1682009-03-24 20:50:39 -0400685 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
686 if (!stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400687 return -ENOMEM;
688
Steven Rostedt318e0a72009-03-25 20:06:34 -0400689#ifdef CONFIG_DYNAMIC_FTRACE
690 functions = ftrace_update_tot_cnt;
691#else
692 /*
693 * We do not know the number of functions that exist because
694 * dynamic tracing is what counts them. With past experience
695 * we have around 20K functions. That should be more than enough.
696 * It is highly unlikely we will execute every function in
697 * the kernel.
698 */
699 functions = 20000;
700#endif
701
Steven Rostedtcafb1682009-03-24 20:50:39 -0400702 pg = stat->start = stat->pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400703
Steven Rostedt318e0a72009-03-25 20:06:34 -0400704 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
705
Namhyung Kim39e30cd2013-04-01 21:46:24 +0900706 for (i = 1; i < pages; i++) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400707 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400708 if (!pg->next)
Steven Rostedt318e0a72009-03-25 20:06:34 -0400709 goto out_free;
Steven Rostedt493762f2009-03-23 17:12:36 -0400710 pg = pg->next;
711 }
712
713 return 0;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400714
715 out_free:
716 pg = stat->start;
717 while (pg) {
718 unsigned long tmp = (unsigned long)pg;
719
720 pg = pg->next;
721 free_page(tmp);
722 }
723
Steven Rostedt318e0a72009-03-25 20:06:34 -0400724 stat->pages = NULL;
725 stat->start = NULL;
726
727 return -ENOMEM;
Steven Rostedt493762f2009-03-23 17:12:36 -0400728}
729
Steven Rostedtcafb1682009-03-24 20:50:39 -0400730static int ftrace_profile_init_cpu(int cpu)
Steven Rostedt493762f2009-03-23 17:12:36 -0400731{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400732 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400733 int size;
734
Steven Rostedtcafb1682009-03-24 20:50:39 -0400735 stat = &per_cpu(ftrace_profile_stats, cpu);
736
737 if (stat->hash) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400738 /* If the profile is already created, simply reset it */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400739 ftrace_profile_reset(stat);
Steven Rostedt493762f2009-03-23 17:12:36 -0400740 return 0;
741 }
742
743 /*
744 * We are profiling all functions, but usually only a few thousand
745 * functions are hit. We'll make a hash of 1024 items.
746 */
747 size = FTRACE_PROFILE_HASH_SIZE;
748
Steven Rostedtcafb1682009-03-24 20:50:39 -0400749 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400750
Steven Rostedtcafb1682009-03-24 20:50:39 -0400751 if (!stat->hash)
Steven Rostedt493762f2009-03-23 17:12:36 -0400752 return -ENOMEM;
753
Steven Rostedt318e0a72009-03-25 20:06:34 -0400754 /* Preallocate the function profiling pages */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400755 if (ftrace_profile_pages_init(stat) < 0) {
756 kfree(stat->hash);
757 stat->hash = NULL;
Steven Rostedt493762f2009-03-23 17:12:36 -0400758 return -ENOMEM;
759 }
760
761 return 0;
762}
763
Steven Rostedtcafb1682009-03-24 20:50:39 -0400764static int ftrace_profile_init(void)
765{
766 int cpu;
767 int ret = 0;
768
Miao Xiec4602c12013-12-16 15:20:01 +0800769 for_each_possible_cpu(cpu) {
Steven Rostedtcafb1682009-03-24 20:50:39 -0400770 ret = ftrace_profile_init_cpu(cpu);
771 if (ret)
772 break;
773 }
774
775 return ret;
776}
777
Steven Rostedt493762f2009-03-23 17:12:36 -0400778/* interrupts must be disabled */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400779static struct ftrace_profile *
780ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400781{
782 struct ftrace_profile *rec;
783 struct hlist_head *hhd;
Steven Rostedt493762f2009-03-23 17:12:36 -0400784 unsigned long key;
785
Namhyung Kim20079eb2013-04-10 08:55:50 +0900786 key = hash_long(ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400787 hhd = &stat->hash[key];
Steven Rostedt493762f2009-03-23 17:12:36 -0400788
789 if (hlist_empty(hhd))
790 return NULL;
791
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400792 hlist_for_each_entry_rcu_notrace(rec, hhd, node) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400793 if (rec->ip == ip)
794 return rec;
795 }
796
797 return NULL;
798}
799
Steven Rostedtcafb1682009-03-24 20:50:39 -0400800static void ftrace_add_profile(struct ftrace_profile_stat *stat,
801 struct ftrace_profile *rec)
Steven Rostedt493762f2009-03-23 17:12:36 -0400802{
803 unsigned long key;
804
Namhyung Kim20079eb2013-04-10 08:55:50 +0900805 key = hash_long(rec->ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400806 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
Steven Rostedt493762f2009-03-23 17:12:36 -0400807}
808
Steven Rostedt318e0a72009-03-25 20:06:34 -0400809/*
810 * The memory is already allocated, this simply finds a new record to use.
811 */
Steven Rostedt493762f2009-03-23 17:12:36 -0400812static struct ftrace_profile *
Steven Rostedt318e0a72009-03-25 20:06:34 -0400813ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400814{
815 struct ftrace_profile *rec = NULL;
816
Steven Rostedt318e0a72009-03-25 20:06:34 -0400817 /* prevent recursion (from NMIs) */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400818 if (atomic_inc_return(&stat->disabled) != 1)
Steven Rostedt493762f2009-03-23 17:12:36 -0400819 goto out;
820
Steven Rostedt493762f2009-03-23 17:12:36 -0400821 /*
Steven Rostedt318e0a72009-03-25 20:06:34 -0400822 * Try to find the function again since an NMI
823 * could have added it
Steven Rostedt493762f2009-03-23 17:12:36 -0400824 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400825 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400826 if (rec)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400827 goto out;
Steven Rostedt493762f2009-03-23 17:12:36 -0400828
Steven Rostedtcafb1682009-03-24 20:50:39 -0400829 if (stat->pages->index == PROFILES_PER_PAGE) {
830 if (!stat->pages->next)
831 goto out;
832 stat->pages = stat->pages->next;
Steven Rostedt493762f2009-03-23 17:12:36 -0400833 }
834
Steven Rostedtcafb1682009-03-24 20:50:39 -0400835 rec = &stat->pages->records[stat->pages->index++];
Steven Rostedt493762f2009-03-23 17:12:36 -0400836 rec->ip = ip;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400837 ftrace_add_profile(stat, rec);
Steven Rostedt493762f2009-03-23 17:12:36 -0400838
Steven Rostedt493762f2009-03-23 17:12:36 -0400839 out:
Steven Rostedtcafb1682009-03-24 20:50:39 -0400840 atomic_dec(&stat->disabled);
Steven Rostedt493762f2009-03-23 17:12:36 -0400841
842 return rec;
843}
844
Steven Rostedt493762f2009-03-23 17:12:36 -0400845static void
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400846function_profile_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400847 struct ftrace_ops *ops, struct pt_regs *regs)
Steven Rostedt493762f2009-03-23 17:12:36 -0400848{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400849 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400850 struct ftrace_profile *rec;
851 unsigned long flags;
Steven Rostedt493762f2009-03-23 17:12:36 -0400852
853 if (!ftrace_profile_enabled)
854 return;
855
Steven Rostedt493762f2009-03-23 17:12:36 -0400856 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400857
Christoph Lameterbdffd892014-04-29 14:17:40 -0500858 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400859 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400860 goto out;
861
862 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400863 if (!rec) {
Steven Rostedt318e0a72009-03-25 20:06:34 -0400864 rec = ftrace_profile_alloc(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400865 if (!rec)
866 goto out;
867 }
868
869 rec->counter++;
870 out:
871 local_irq_restore(flags);
872}
873
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400874#ifdef CONFIG_FUNCTION_GRAPH_TRACER
875static int profile_graph_entry(struct ftrace_graph_ent *trace)
876{
Namhyung Kim8861dd32016-08-31 11:55:29 +0900877 int index = trace->depth;
878
Steven Rostedta1e2e312011-08-09 12:50:46 -0400879 function_profile_call(trace->func, 0, NULL, NULL);
Namhyung Kim8861dd32016-08-31 11:55:29 +0900880
881 if (index >= 0 && index < FTRACE_RETFUNC_DEPTH)
882 current->ret_stack[index].subtime = 0;
883
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400884 return 1;
885}
886
887static void profile_graph_return(struct ftrace_graph_ret *trace)
888{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400889 struct ftrace_profile_stat *stat;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400890 unsigned long long calltime;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400891 struct ftrace_profile *rec;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400892 unsigned long flags;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400893
894 local_irq_save(flags);
Christoph Lameterbdffd892014-04-29 14:17:40 -0500895 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400896 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400897 goto out;
898
Steven Rostedt37e44bc2010-04-27 21:04:24 -0400899 /* If the calltime was zero'd ignore it */
900 if (!trace->calltime)
901 goto out;
902
Steven Rostedta2a16d62009-03-24 23:17:58 -0400903 calltime = trace->rettime - trace->calltime;
904
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400905 if (!fgraph_graph_time) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400906 int index;
907
908 index = trace->depth;
909
910 /* Append this call time to the parent time to subtract */
911 if (index)
912 current->ret_stack[index - 1].subtime += calltime;
913
914 if (current->ret_stack[index].subtime < calltime)
915 calltime -= current->ret_stack[index].subtime;
916 else
917 calltime = 0;
918 }
919
Steven Rostedtcafb1682009-03-24 20:50:39 -0400920 rec = ftrace_find_profiled_func(stat, trace->func);
Chase Douglase330b3b2010-04-26 14:02:05 -0400921 if (rec) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400922 rec->time += calltime;
Chase Douglase330b3b2010-04-26 14:02:05 -0400923 rec->time_squared += calltime * calltime;
924 }
Steven Rostedta2a16d62009-03-24 23:17:58 -0400925
Steven Rostedtcafb1682009-03-24 20:50:39 -0400926 out:
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400927 local_irq_restore(flags);
928}
929
930static int register_ftrace_profiler(void)
931{
932 return register_ftrace_graph(&profile_graph_return,
933 &profile_graph_entry);
934}
935
936static void unregister_ftrace_profiler(void)
937{
938 unregister_ftrace_graph();
939}
940#else
Paul McQuadebd38c0e2011-05-31 20:51:55 +0100941static struct ftrace_ops ftrace_profile_ops __read_mostly = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400942 .func = function_profile_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900943 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400944 INIT_OPS_HASH(ftrace_profile_ops)
Steven Rostedt493762f2009-03-23 17:12:36 -0400945};
946
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400947static int register_ftrace_profiler(void)
948{
949 return register_ftrace_function(&ftrace_profile_ops);
950}
951
952static void unregister_ftrace_profiler(void)
953{
954 unregister_ftrace_function(&ftrace_profile_ops);
955}
956#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
957
Steven Rostedt493762f2009-03-23 17:12:36 -0400958static ssize_t
959ftrace_profile_write(struct file *filp, const char __user *ubuf,
960 size_t cnt, loff_t *ppos)
961{
962 unsigned long val;
Steven Rostedt493762f2009-03-23 17:12:36 -0400963 int ret;
964
Peter Huewe22fe9b52011-06-07 21:58:27 +0200965 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
966 if (ret)
Steven Rostedt493762f2009-03-23 17:12:36 -0400967 return ret;
968
969 val = !!val;
970
971 mutex_lock(&ftrace_profile_lock);
972 if (ftrace_profile_enabled ^ val) {
973 if (val) {
974 ret = ftrace_profile_init();
975 if (ret < 0) {
976 cnt = ret;
977 goto out;
978 }
979
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400980 ret = register_ftrace_profiler();
981 if (ret < 0) {
982 cnt = ret;
983 goto out;
984 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400985 ftrace_profile_enabled = 1;
986 } else {
987 ftrace_profile_enabled = 0;
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400988 /*
989 * unregister_ftrace_profiler calls stop_machine
990 * so this acts like an synchronize_sched.
991 */
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400992 unregister_ftrace_profiler();
Steven Rostedt493762f2009-03-23 17:12:36 -0400993 }
994 }
995 out:
996 mutex_unlock(&ftrace_profile_lock);
997
Jiri Olsacf8517c2009-10-23 19:36:16 -0400998 *ppos += cnt;
Steven Rostedt493762f2009-03-23 17:12:36 -0400999
1000 return cnt;
1001}
1002
1003static ssize_t
1004ftrace_profile_read(struct file *filp, char __user *ubuf,
1005 size_t cnt, loff_t *ppos)
1006{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001007 char buf[64]; /* big enough to hold a number */
Steven Rostedt493762f2009-03-23 17:12:36 -04001008 int r;
1009
1010 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
1011 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
1012}
1013
1014static const struct file_operations ftrace_profile_fops = {
1015 .open = tracing_open_generic,
1016 .read = ftrace_profile_read,
1017 .write = ftrace_profile_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001018 .llseek = default_llseek,
Steven Rostedt493762f2009-03-23 17:12:36 -04001019};
1020
Steven Rostedtcafb1682009-03-24 20:50:39 -04001021/* used to initialize the real stat files */
1022static struct tracer_stat function_stats __initdata = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001023 .name = "functions",
1024 .stat_start = function_stat_start,
1025 .stat_next = function_stat_next,
1026 .stat_cmp = function_stat_cmp,
1027 .stat_headers = function_stat_headers,
1028 .stat_show = function_stat_show
Steven Rostedtcafb1682009-03-24 20:50:39 -04001029};
1030
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001031static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001032{
Steven Rostedtcafb1682009-03-24 20:50:39 -04001033 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -04001034 struct dentry *entry;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001035 char *name;
Steven Rostedt493762f2009-03-23 17:12:36 -04001036 int ret;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001037 int cpu;
Steven Rostedt493762f2009-03-23 17:12:36 -04001038
Steven Rostedtcafb1682009-03-24 20:50:39 -04001039 for_each_possible_cpu(cpu) {
1040 stat = &per_cpu(ftrace_profile_stats, cpu);
1041
Geliang Tang6363c6b2016-03-15 22:12:34 +08001042 name = kasprintf(GFP_KERNEL, "function%d", cpu);
Steven Rostedtcafb1682009-03-24 20:50:39 -04001043 if (!name) {
1044 /*
1045 * The files created are permanent, if something happens
1046 * we still do not free memory.
1047 */
Steven Rostedtcafb1682009-03-24 20:50:39 -04001048 WARN(1,
1049 "Could not allocate stat file for cpu %d\n",
1050 cpu);
1051 return;
1052 }
1053 stat->stat = function_stats;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001054 stat->stat.name = name;
1055 ret = register_stat_tracer(&stat->stat);
1056 if (ret) {
1057 WARN(1,
1058 "Could not register function stat for cpu %d\n",
1059 cpu);
1060 kfree(name);
1061 return;
1062 }
Steven Rostedt493762f2009-03-23 17:12:36 -04001063 }
1064
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001065 entry = tracefs_create_file("function_profile_enabled", 0644,
Steven Rostedt493762f2009-03-23 17:12:36 -04001066 d_tracer, NULL, &ftrace_profile_fops);
1067 if (!entry)
Joe Perchesa395d6a2016-03-22 14:28:09 -07001068 pr_warn("Could not create tracefs 'function_profile_enabled' entry\n");
Steven Rostedt493762f2009-03-23 17:12:36 -04001069}
1070
1071#else /* CONFIG_FUNCTION_PROFILER */
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001072static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001073{
1074}
1075#endif /* CONFIG_FUNCTION_PROFILER */
1076
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001077static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1078
Pratyush Anand1619dc32015-03-06 23:58:06 +05301079#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1080static int ftrace_graph_active;
1081#else
1082# define ftrace_graph_active 0
1083#endif
1084
Steven Rostedt3d083392008-05-12 21:20:42 +02001085#ifdef CONFIG_DYNAMIC_FTRACE
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001086
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001087static struct ftrace_ops *removed_ops;
1088
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04001089/*
1090 * Set when doing a global update, like enabling all recs or disabling them.
1091 * It is not set when just updating a single ftrace_ops.
1092 */
1093static bool update_all_ops;
1094
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001095#ifndef CONFIG_FTRACE_MCOUNT_RECORD
Steven Rostedtcb7be3b2008-10-23 09:33:05 -04001096# error Dynamic ftrace depends on MCOUNT_RECORD
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001097#endif
1098
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001099struct ftrace_func_entry {
1100 struct hlist_node hlist;
1101 unsigned long ip;
1102};
1103
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04001104struct ftrace_func_probe {
1105 struct ftrace_probe_ops *probe_ops;
1106 struct ftrace_ops ops;
1107 struct trace_array *tr;
1108 struct list_head list;
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04001109 void *data;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04001110 int ref;
1111};
1112
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001113/*
1114 * We make these constant because no one should touch them,
1115 * but they are used as the default "empty hash", to avoid allocating
1116 * it all the time. These are in a read only section such that if
1117 * anyone does try to modify it, it will cause an exception.
1118 */
1119static const struct hlist_head empty_buckets[1];
1120static const struct ftrace_hash empty_hash = {
1121 .buckets = (struct hlist_head *)empty_buckets,
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001122};
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001123#define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02001124
Steven Rostedt2b499382011-05-03 22:49:52 -04001125static struct ftrace_ops global_ops = {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001126 .func = ftrace_stub,
1127 .local_hash.notrace_hash = EMPTY_HASH,
1128 .local_hash.filter_hash = EMPTY_HASH,
1129 INIT_OPS_HASH(global_ops)
1130 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04001131 FTRACE_OPS_FL_INITIALIZED |
1132 FTRACE_OPS_FL_PID,
Steven Rostedtf45948e2011-05-02 12:29:25 -04001133};
1134
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001135/*
1136 * This is used by __kernel_text_address() to return true if the
Steven Rostedt (Red Hat)0af26492014-11-20 10:05:36 -05001137 * address is on a dynamically allocated trampoline that would
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001138 * not return true for either core_kernel_text() or
1139 * is_module_text_address().
1140 */
1141bool is_ftrace_trampoline(unsigned long addr)
1142{
1143 struct ftrace_ops *op;
1144 bool ret = false;
1145
1146 /*
1147 * Some of the ops may be dynamically allocated,
1148 * they are freed after a synchronize_sched().
1149 */
1150 preempt_disable_notrace();
1151
1152 do_for_each_ftrace_op(op, ftrace_ops_list) {
1153 /*
1154 * This is to check for dynamically allocated trampolines.
1155 * Trampolines that are in kernel text will have
1156 * core_kernel_text() return true.
1157 */
1158 if (op->trampoline && op->trampoline_size)
1159 if (addr >= op->trampoline &&
1160 addr < op->trampoline + op->trampoline_size) {
1161 ret = true;
1162 goto out;
1163 }
1164 } while_for_each_ftrace_op(op);
1165
1166 out:
1167 preempt_enable_notrace();
1168
1169 return ret;
1170}
1171
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001172struct ftrace_page {
1173 struct ftrace_page *next;
Steven Rostedta7900872011-12-16 16:23:44 -05001174 struct dyn_ftrace *records;
Steven Rostedt431aa3f2009-01-06 12:43:01 -05001175 int index;
Steven Rostedta7900872011-12-16 16:23:44 -05001176 int size;
David Milleraa5e5ce2008-05-13 22:06:56 -07001177};
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001178
Steven Rostedta7900872011-12-16 16:23:44 -05001179#define ENTRY_SIZE sizeof(struct dyn_ftrace)
1180#define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001181
1182/* estimate from running different kernels */
1183#define NR_TO_INIT 10000
1184
1185static struct ftrace_page *ftrace_pages_start;
1186static struct ftrace_page *ftrace_pages;
1187
Steven Rostedt (VMware)2b0cce02017-02-01 12:19:33 -05001188static __always_inline unsigned long
1189ftrace_hash_key(struct ftrace_hash *hash, unsigned long ip)
1190{
1191 if (hash->size_bits > 0)
1192 return hash_long(ip, hash->size_bits);
1193
1194 return 0;
1195}
1196
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001197/* Only use this function if ftrace_hash_empty() has already been tested */
1198static __always_inline struct ftrace_func_entry *
1199__ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001200{
1201 unsigned long key;
1202 struct ftrace_func_entry *entry;
1203 struct hlist_head *hhd;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001204
Steven Rostedt (VMware)2b0cce02017-02-01 12:19:33 -05001205 key = ftrace_hash_key(hash, ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001206 hhd = &hash->buckets[key];
1207
Steven Rostedt1bb539c2013-05-28 14:38:43 -04001208 hlist_for_each_entry_rcu_notrace(entry, hhd, hlist) {
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001209 if (entry->ip == ip)
1210 return entry;
1211 }
1212 return NULL;
1213}
1214
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001215/**
1216 * ftrace_lookup_ip - Test to see if an ip exists in an ftrace_hash
1217 * @hash: The hash to look at
1218 * @ip: The instruction pointer to test
1219 *
1220 * Search a given @hash to see if a given instruction pointer (@ip)
1221 * exists in it.
1222 *
1223 * Returns the entry that holds the @ip if found. NULL otherwise.
1224 */
1225struct ftrace_func_entry *
1226ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1227{
1228 if (ftrace_hash_empty(hash))
1229 return NULL;
1230
1231 return __ftrace_lookup_ip(hash, ip);
1232}
1233
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001234static void __add_hash_entry(struct ftrace_hash *hash,
1235 struct ftrace_func_entry *entry)
1236{
1237 struct hlist_head *hhd;
1238 unsigned long key;
1239
Steven Rostedt (VMware)2b0cce02017-02-01 12:19:33 -05001240 key = ftrace_hash_key(hash, entry->ip);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001241 hhd = &hash->buckets[key];
1242 hlist_add_head(&entry->hlist, hhd);
1243 hash->count++;
1244}
1245
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001246static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1247{
1248 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001249
1250 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1251 if (!entry)
1252 return -ENOMEM;
1253
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001254 entry->ip = ip;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001255 __add_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001256
1257 return 0;
1258}
1259
1260static void
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001261free_hash_entry(struct ftrace_hash *hash,
1262 struct ftrace_func_entry *entry)
1263{
1264 hlist_del(&entry->hlist);
1265 kfree(entry);
1266 hash->count--;
1267}
1268
1269static void
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001270remove_hash_entry(struct ftrace_hash *hash,
1271 struct ftrace_func_entry *entry)
1272{
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04001273 hlist_del_rcu(&entry->hlist);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001274 hash->count--;
1275}
1276
1277static void ftrace_hash_clear(struct ftrace_hash *hash)
1278{
1279 struct hlist_head *hhd;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001280 struct hlist_node *tn;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001281 struct ftrace_func_entry *entry;
1282 int size = 1 << hash->size_bits;
1283 int i;
1284
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001285 if (!hash->count)
1286 return;
1287
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001288 for (i = 0; i < size; i++) {
1289 hhd = &hash->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001290 hlist_for_each_entry_safe(entry, tn, hhd, hlist)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001291 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001292 }
1293 FTRACE_WARN_ON(hash->count);
1294}
1295
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04001296static void free_ftrace_mod(struct ftrace_mod_load *ftrace_mod)
1297{
1298 list_del(&ftrace_mod->list);
1299 kfree(ftrace_mod->module);
1300 kfree(ftrace_mod->func);
1301 kfree(ftrace_mod);
1302}
1303
1304static void clear_ftrace_mod_list(struct list_head *head)
1305{
1306 struct ftrace_mod_load *p, *n;
1307
1308 /* stack tracer isn't supported yet */
1309 if (!head)
1310 return;
1311
1312 mutex_lock(&ftrace_lock);
1313 list_for_each_entry_safe(p, n, head, list)
1314 free_ftrace_mod(p);
1315 mutex_unlock(&ftrace_lock);
1316}
1317
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001318static void free_ftrace_hash(struct ftrace_hash *hash)
1319{
1320 if (!hash || hash == EMPTY_HASH)
1321 return;
1322 ftrace_hash_clear(hash);
1323 kfree(hash->buckets);
1324 kfree(hash);
1325}
1326
Steven Rostedt07fd5512011-05-05 18:03:47 -04001327static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1328{
1329 struct ftrace_hash *hash;
1330
1331 hash = container_of(rcu, struct ftrace_hash, rcu);
1332 free_ftrace_hash(hash);
1333}
1334
1335static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1336{
1337 if (!hash || hash == EMPTY_HASH)
1338 return;
1339 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1340}
1341
Jiri Olsa5500fa52012-02-15 15:51:54 +01001342void ftrace_free_filter(struct ftrace_ops *ops)
1343{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09001344 ftrace_ops_init(ops);
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001345 free_ftrace_hash(ops->func_hash->filter_hash);
1346 free_ftrace_hash(ops->func_hash->notrace_hash);
Jiri Olsa5500fa52012-02-15 15:51:54 +01001347}
1348
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001349static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1350{
1351 struct ftrace_hash *hash;
1352 int size;
1353
1354 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1355 if (!hash)
1356 return NULL;
1357
1358 size = 1 << size_bits;
Thomas Meyer47b0edc2011-11-29 22:08:00 +01001359 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001360
1361 if (!hash->buckets) {
1362 kfree(hash);
1363 return NULL;
1364 }
1365
1366 hash->size_bits = size_bits;
1367
1368 return hash;
1369}
1370
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04001371
1372static int ftrace_add_mod(struct trace_array *tr,
1373 const char *func, const char *module,
1374 int enable)
1375{
1376 struct ftrace_mod_load *ftrace_mod;
1377 struct list_head *mod_head = enable ? &tr->mod_trace : &tr->mod_notrace;
1378
1379 ftrace_mod = kzalloc(sizeof(*ftrace_mod), GFP_KERNEL);
1380 if (!ftrace_mod)
1381 return -ENOMEM;
1382
1383 ftrace_mod->func = kstrdup(func, GFP_KERNEL);
1384 ftrace_mod->module = kstrdup(module, GFP_KERNEL);
1385 ftrace_mod->enable = enable;
1386
1387 if (!ftrace_mod->func || !ftrace_mod->module)
1388 goto out_free;
1389
1390 list_add(&ftrace_mod->list, mod_head);
1391
1392 return 0;
1393
1394 out_free:
1395 free_ftrace_mod(ftrace_mod);
1396
1397 return -ENOMEM;
1398}
1399
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001400static struct ftrace_hash *
1401alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1402{
1403 struct ftrace_func_entry *entry;
1404 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001405 int size;
1406 int ret;
1407 int i;
1408
1409 new_hash = alloc_ftrace_hash(size_bits);
1410 if (!new_hash)
1411 return NULL;
1412
1413 /* Empty hash? */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001414 if (ftrace_hash_empty(hash))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001415 return new_hash;
1416
1417 size = 1 << hash->size_bits;
1418 for (i = 0; i < size; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001419 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001420 ret = add_hash_entry(new_hash, entry->ip);
1421 if (ret < 0)
1422 goto free_hash;
1423 }
1424 }
1425
1426 FTRACE_WARN_ON(new_hash->count != hash->count);
1427
1428 return new_hash;
1429
1430 free_hash:
1431 free_ftrace_hash(new_hash);
1432 return NULL;
1433}
1434
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001435static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001436ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001437static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001438ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001439
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001440static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1441 struct ftrace_hash *new_hash);
1442
Namhyung Kim3e278c02017-01-20 11:44:45 +09001443static struct ftrace_hash *
1444__ftrace_hash_move(struct ftrace_hash *src)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001445{
1446 struct ftrace_func_entry *entry;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001447 struct hlist_node *tn;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001448 struct hlist_head *hhd;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001449 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001450 int size = src->count;
1451 int bits = 0;
1452 int i;
1453
1454 /*
Namhyung Kim3e278c02017-01-20 11:44:45 +09001455 * If the new source is empty, just return the empty_hash.
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001456 */
Namhyung Kim3e278c02017-01-20 11:44:45 +09001457 if (!src->count)
1458 return EMPTY_HASH;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001459
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001460 /*
1461 * Make the hash size about 1/2 the # found
1462 */
1463 for (size /= 2; size; size >>= 1)
1464 bits++;
1465
1466 /* Don't allocate too much */
1467 if (bits > FTRACE_HASH_MAX_BITS)
1468 bits = FTRACE_HASH_MAX_BITS;
1469
Steven Rostedt07fd5512011-05-05 18:03:47 -04001470 new_hash = alloc_ftrace_hash(bits);
1471 if (!new_hash)
Namhyung Kim3e278c02017-01-20 11:44:45 +09001472 return NULL;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001473
1474 size = 1 << src->size_bits;
1475 for (i = 0; i < size; i++) {
1476 hhd = &src->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001477 hlist_for_each_entry_safe(entry, tn, hhd, hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001478 remove_hash_entry(src, entry);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001479 __add_hash_entry(new_hash, entry);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001480 }
1481 }
1482
Namhyung Kim3e278c02017-01-20 11:44:45 +09001483 return new_hash;
1484}
1485
1486static int
1487ftrace_hash_move(struct ftrace_ops *ops, int enable,
1488 struct ftrace_hash **dst, struct ftrace_hash *src)
1489{
1490 struct ftrace_hash *new_hash;
1491 int ret;
1492
1493 /* Reject setting notrace hash on IPMODIFY ftrace_ops */
1494 if (ops->flags & FTRACE_OPS_FL_IPMODIFY && !enable)
1495 return -EINVAL;
1496
1497 new_hash = __ftrace_hash_move(src);
1498 if (!new_hash)
1499 return -ENOMEM;
1500
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001501 /* Make sure this can be applied if it is IPMODIFY ftrace_ops */
1502 if (enable) {
1503 /* IPMODIFY should be updated only when filter_hash updating */
1504 ret = ftrace_hash_ipmodify_update(ops, new_hash);
1505 if (ret < 0) {
1506 free_ftrace_hash(new_hash);
1507 return ret;
1508 }
1509 }
1510
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001511 /*
1512 * Remove the current set, update the hash and add
1513 * them back.
1514 */
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001515 ftrace_hash_rec_disable_modify(ops, enable);
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001516
Steven Rostedt07fd5512011-05-05 18:03:47 -04001517 rcu_assign_pointer(*dst, new_hash);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001518
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001519 ftrace_hash_rec_enable_modify(ops, enable);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001520
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001521 return 0;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001522}
1523
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001524static bool hash_contains_ip(unsigned long ip,
1525 struct ftrace_ops_hash *hash)
1526{
1527 /*
1528 * The function record is a match if it exists in the filter
1529 * hash and not in the notrace hash. Note, an emty hash is
1530 * considered a match for the filter hash, but an empty
1531 * notrace hash is considered not in the notrace hash.
1532 */
1533 return (ftrace_hash_empty(hash->filter_hash) ||
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001534 __ftrace_lookup_ip(hash->filter_hash, ip)) &&
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001535 (ftrace_hash_empty(hash->notrace_hash) ||
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001536 !__ftrace_lookup_ip(hash->notrace_hash, ip));
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001537}
1538
Steven Rostedt265c8312009-02-13 12:43:56 -05001539/*
Steven Rostedtb8489142011-05-04 09:27:52 -04001540 * Test the hashes for this ops to see if we want to call
1541 * the ops->func or not.
1542 *
1543 * It's a match if the ip is in the ops->filter_hash or
1544 * the filter_hash does not exist or is empty,
1545 * AND
1546 * the ip is not in the ops->notrace_hash.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04001547 *
1548 * This needs to be called with preemption disabled as
1549 * the hashes are freed with call_rcu_sched().
Steven Rostedtb8489142011-05-04 09:27:52 -04001550 */
1551static int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001552ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04001553{
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001554 struct ftrace_ops_hash hash;
Steven Rostedtb8489142011-05-04 09:27:52 -04001555 int ret;
1556
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001557#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1558 /*
1559 * There's a small race when adding ops that the ftrace handler
1560 * that wants regs, may be called without them. We can not
1561 * allow that handler to be called if regs is NULL.
1562 */
1563 if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS))
1564 return 0;
1565#endif
1566
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001567 hash.filter_hash = rcu_dereference_raw_notrace(ops->func_hash->filter_hash);
1568 hash.notrace_hash = rcu_dereference_raw_notrace(ops->func_hash->notrace_hash);
Steven Rostedtb8489142011-05-04 09:27:52 -04001569
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001570 if (hash_contains_ip(ip, &hash))
Steven Rostedtb8489142011-05-04 09:27:52 -04001571 ret = 1;
1572 else
1573 ret = 0;
Steven Rostedtb8489142011-05-04 09:27:52 -04001574
1575 return ret;
1576}
1577
1578/*
Steven Rostedt265c8312009-02-13 12:43:56 -05001579 * This is a double for. Do not use 'break' to break out of the loop,
1580 * you must use a goto.
1581 */
1582#define do_for_each_ftrace_rec(pg, rec) \
1583 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1584 int _____i; \
1585 for (_____i = 0; _____i < pg->index; _____i++) { \
1586 rec = &pg->records[_____i];
1587
1588#define while_for_each_ftrace_rec() \
1589 } \
1590 }
Abhishek Sagarecea6562008-06-21 23:47:53 +05301591
Steven Rostedt5855fea2011-12-16 19:27:42 -05001592
1593static int ftrace_cmp_recs(const void *a, const void *b)
1594{
Steven Rostedta650e022012-04-25 13:48:13 -04001595 const struct dyn_ftrace *key = a;
1596 const struct dyn_ftrace *rec = b;
Steven Rostedt5855fea2011-12-16 19:27:42 -05001597
Steven Rostedta650e022012-04-25 13:48:13 -04001598 if (key->flags < rec->ip)
Steven Rostedt5855fea2011-12-16 19:27:42 -05001599 return -1;
Steven Rostedta650e022012-04-25 13:48:13 -04001600 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1601 return 1;
1602 return 0;
1603}
1604
Michael Ellerman04cf31a2016-03-24 22:04:01 +11001605/**
1606 * ftrace_location_range - return the first address of a traced location
1607 * if it touches the given ip range
1608 * @start: start of range to search.
1609 * @end: end of range to search (inclusive). @end points to the last byte
1610 * to check.
1611 *
1612 * Returns rec->ip if the related ftrace location is a least partly within
1613 * the given address range. That is, the first address of the instruction
1614 * that is either a NOP or call to the function tracer. It checks the ftrace
1615 * internal tables to determine if the address belongs or not.
1616 */
1617unsigned long ftrace_location_range(unsigned long start, unsigned long end)
Steven Rostedta650e022012-04-25 13:48:13 -04001618{
1619 struct ftrace_page *pg;
1620 struct dyn_ftrace *rec;
1621 struct dyn_ftrace key;
1622
1623 key.ip = start;
1624 key.flags = end; /* overload flags, as it is unsigned long */
1625
1626 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1627 if (end < pg->records[0].ip ||
1628 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1629 continue;
1630 rec = bsearch(&key, pg->records, pg->index,
1631 sizeof(struct dyn_ftrace),
1632 ftrace_cmp_recs);
1633 if (rec)
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001634 return rec->ip;
Steven Rostedta650e022012-04-25 13:48:13 -04001635 }
1636
Steven Rostedt5855fea2011-12-16 19:27:42 -05001637 return 0;
1638}
1639
Steven Rostedtc88fd862011-08-16 09:53:39 -04001640/**
1641 * ftrace_location - return true if the ip giving is a traced location
1642 * @ip: the instruction pointer to check
1643 *
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001644 * Returns rec->ip if @ip given is a pointer to a ftrace location.
Steven Rostedtc88fd862011-08-16 09:53:39 -04001645 * That is, the instruction that is either a NOP or call to
1646 * the function tracer. It checks the ftrace internal tables to
1647 * determine if the address belongs or not.
1648 */
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001649unsigned long ftrace_location(unsigned long ip)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001650{
Steven Rostedta650e022012-04-25 13:48:13 -04001651 return ftrace_location_range(ip, ip);
1652}
Steven Rostedtc88fd862011-08-16 09:53:39 -04001653
Steven Rostedta650e022012-04-25 13:48:13 -04001654/**
1655 * ftrace_text_reserved - return true if range contains an ftrace location
1656 * @start: start of range to search
1657 * @end: end of range to search (inclusive). @end points to the last byte to check.
1658 *
1659 * Returns 1 if @start and @end contains a ftrace location.
1660 * That is, the instruction that is either a NOP or call to
1661 * the function tracer. It checks the ftrace internal tables to
1662 * determine if the address belongs or not.
1663 */
Sasha Levind88471c2013-01-09 18:09:20 -05001664int ftrace_text_reserved(const void *start, const void *end)
Steven Rostedta650e022012-04-25 13:48:13 -04001665{
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001666 unsigned long ret;
1667
1668 ret = ftrace_location_range((unsigned long)start,
1669 (unsigned long)end);
1670
1671 return (int)!!ret;
Steven Rostedtc88fd862011-08-16 09:53:39 -04001672}
1673
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001674/* Test if ops registered to this rec needs regs */
1675static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec)
1676{
1677 struct ftrace_ops *ops;
1678 bool keep_regs = false;
1679
1680 for (ops = ftrace_ops_list;
1681 ops != &ftrace_list_end; ops = ops->next) {
1682 /* pass rec in as regs to have non-NULL val */
1683 if (ftrace_ops_test(ops, rec->ip, rec)) {
1684 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1685 keep_regs = true;
1686 break;
1687 }
1688 }
1689 }
1690
1691 return keep_regs;
1692}
1693
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001694static bool __ftrace_hash_rec_update(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001695 int filter_hash,
1696 bool inc)
1697{
1698 struct ftrace_hash *hash;
1699 struct ftrace_hash *other_hash;
1700 struct ftrace_page *pg;
1701 struct dyn_ftrace *rec;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001702 bool update = false;
Steven Rostedted926f92011-05-03 13:25:24 -04001703 int count = 0;
1704 int all = 0;
1705
1706 /* Only update if the ops has been registered */
1707 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001708 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001709
1710 /*
1711 * In the filter_hash case:
1712 * If the count is zero, we update all records.
1713 * Otherwise we just update the items in the hash.
1714 *
1715 * In the notrace_hash case:
1716 * We enable the update in the hash.
1717 * As disabling notrace means enabling the tracing,
1718 * and enabling notrace means disabling, the inc variable
1719 * gets inversed.
1720 */
1721 if (filter_hash) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001722 hash = ops->func_hash->filter_hash;
1723 other_hash = ops->func_hash->notrace_hash;
Steven Rostedt06a51d92011-12-19 19:07:36 -05001724 if (ftrace_hash_empty(hash))
Steven Rostedted926f92011-05-03 13:25:24 -04001725 all = 1;
1726 } else {
1727 inc = !inc;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001728 hash = ops->func_hash->notrace_hash;
1729 other_hash = ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04001730 /*
1731 * If the notrace hash has no items,
1732 * then there's nothing to do.
1733 */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001734 if (ftrace_hash_empty(hash))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001735 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001736 }
1737
1738 do_for_each_ftrace_rec(pg, rec) {
1739 int in_other_hash = 0;
1740 int in_hash = 0;
1741 int match = 0;
1742
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05001743 if (rec->flags & FTRACE_FL_DISABLED)
1744 continue;
1745
Steven Rostedted926f92011-05-03 13:25:24 -04001746 if (all) {
1747 /*
1748 * Only the filter_hash affects all records.
1749 * Update if the record is not in the notrace hash.
1750 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001751 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
Steven Rostedted926f92011-05-03 13:25:24 -04001752 match = 1;
1753 } else {
Steven Rostedt06a51d92011-12-19 19:07:36 -05001754 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1755 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
Steven Rostedted926f92011-05-03 13:25:24 -04001756
1757 /*
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001758 * If filter_hash is set, we want to match all functions
1759 * that are in the hash but not in the other hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001760 *
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001761 * If filter_hash is not set, then we are decrementing.
1762 * That means we match anything that is in the hash
1763 * and also in the other_hash. That is, we need to turn
1764 * off functions in the other hash because they are disabled
1765 * by this hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001766 */
1767 if (filter_hash && in_hash && !in_other_hash)
1768 match = 1;
1769 else if (!filter_hash && in_hash &&
Steven Rostedt06a51d92011-12-19 19:07:36 -05001770 (in_other_hash || ftrace_hash_empty(other_hash)))
Steven Rostedted926f92011-05-03 13:25:24 -04001771 match = 1;
1772 }
1773 if (!match)
1774 continue;
1775
1776 if (inc) {
1777 rec->flags++;
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001778 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001779 return false;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001780
1781 /*
1782 * If there's only a single callback registered to a
1783 * function, and the ops has a trampoline registered
1784 * for it, then we can call it directly.
1785 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001786 if (ftrace_rec_count(rec) == 1 && ops->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001787 rec->flags |= FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001788 else
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001789 /*
1790 * If we are adding another function callback
1791 * to this function, and the previous had a
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04001792 * custom trampoline in use, then we need to go
1793 * back to the default trampoline.
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001794 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001795 rec->flags &= ~FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001796
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001797 /*
1798 * If any ops wants regs saved for this function
1799 * then all ops will get saved regs.
1800 */
1801 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1802 rec->flags |= FTRACE_FL_REGS;
Steven Rostedted926f92011-05-03 13:25:24 -04001803 } else {
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001804 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001805 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001806 rec->flags--;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001807
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001808 /*
1809 * If the rec had REGS enabled and the ops that is
1810 * being removed had REGS set, then see if there is
1811 * still any ops for this record that wants regs.
1812 * If not, we can stop recording them.
1813 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001814 if (ftrace_rec_count(rec) > 0 &&
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001815 rec->flags & FTRACE_FL_REGS &&
1816 ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1817 if (!test_rec_ops_needs_regs(rec))
1818 rec->flags &= ~FTRACE_FL_REGS;
1819 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001820
1821 /*
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001822 * If the rec had TRAMP enabled, then it needs to
1823 * be cleared. As TRAMP can only be enabled iff
1824 * there is only a single ops attached to it.
1825 * In otherwords, always disable it on decrementing.
1826 * In the future, we may set it if rec count is
1827 * decremented to one, and the ops that is left
1828 * has a trampoline.
1829 */
1830 rec->flags &= ~FTRACE_FL_TRAMP;
1831
1832 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001833 * flags will be cleared in ftrace_check_record()
1834 * if rec count is zero.
1835 */
Steven Rostedted926f92011-05-03 13:25:24 -04001836 }
1837 count++;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001838
1839 /* Must match FTRACE_UPDATE_CALLS in ftrace_modify_all_code() */
1840 update |= ftrace_test_record(rec, 1) != FTRACE_UPDATE_IGNORE;
1841
Steven Rostedted926f92011-05-03 13:25:24 -04001842 /* Shortcut, if we handled all records, we are done. */
1843 if (!all && count == hash->count)
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001844 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001845 } while_for_each_ftrace_rec();
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001846
1847 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001848}
1849
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001850static bool ftrace_hash_rec_disable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001851 int filter_hash)
1852{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001853 return __ftrace_hash_rec_update(ops, filter_hash, 0);
Steven Rostedted926f92011-05-03 13:25:24 -04001854}
1855
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001856static bool ftrace_hash_rec_enable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001857 int filter_hash)
1858{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001859 return __ftrace_hash_rec_update(ops, filter_hash, 1);
Steven Rostedted926f92011-05-03 13:25:24 -04001860}
1861
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001862static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops,
1863 int filter_hash, int inc)
1864{
1865 struct ftrace_ops *op;
1866
1867 __ftrace_hash_rec_update(ops, filter_hash, inc);
1868
1869 if (ops->func_hash != &global_ops.local_hash)
1870 return;
1871
1872 /*
1873 * If the ops shares the global_ops hash, then we need to update
1874 * all ops that are enabled and use this hash.
1875 */
1876 do_for_each_ftrace_op(op, ftrace_ops_list) {
1877 /* Already done */
1878 if (op == ops)
1879 continue;
1880 if (op->func_hash == &global_ops.local_hash)
1881 __ftrace_hash_rec_update(op, filter_hash, inc);
1882 } while_for_each_ftrace_op(op);
1883}
1884
1885static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops,
1886 int filter_hash)
1887{
1888 ftrace_hash_rec_update_modify(ops, filter_hash, 0);
1889}
1890
1891static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops,
1892 int filter_hash)
1893{
1894 ftrace_hash_rec_update_modify(ops, filter_hash, 1);
1895}
1896
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001897/*
1898 * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK
1899 * or no-needed to update, -EBUSY if it detects a conflict of the flag
1900 * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs.
1901 * Note that old_hash and new_hash has below meanings
1902 * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected)
1903 * - If the hash is EMPTY_HASH, it hits nothing
1904 * - Anything else hits the recs which match the hash entries.
1905 */
1906static int __ftrace_hash_update_ipmodify(struct ftrace_ops *ops,
1907 struct ftrace_hash *old_hash,
1908 struct ftrace_hash *new_hash)
1909{
1910 struct ftrace_page *pg;
1911 struct dyn_ftrace *rec, *end = NULL;
1912 int in_old, in_new;
1913
1914 /* Only update if the ops has been registered */
1915 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1916 return 0;
1917
1918 if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY))
1919 return 0;
1920
1921 /*
1922 * Since the IPMODIFY is a very address sensitive action, we do not
1923 * allow ftrace_ops to set all functions to new hash.
1924 */
1925 if (!new_hash || !old_hash)
1926 return -EINVAL;
1927
1928 /* Update rec->flags */
1929 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05001930
1931 if (rec->flags & FTRACE_FL_DISABLED)
1932 continue;
1933
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001934 /* We need to update only differences of filter_hash */
1935 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1936 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1937 if (in_old == in_new)
1938 continue;
1939
1940 if (in_new) {
1941 /* New entries must ensure no others are using it */
1942 if (rec->flags & FTRACE_FL_IPMODIFY)
1943 goto rollback;
1944 rec->flags |= FTRACE_FL_IPMODIFY;
1945 } else /* Removed entry */
1946 rec->flags &= ~FTRACE_FL_IPMODIFY;
1947 } while_for_each_ftrace_rec();
1948
1949 return 0;
1950
1951rollback:
1952 end = rec;
1953
1954 /* Roll back what we did above */
1955 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05001956
1957 if (rec->flags & FTRACE_FL_DISABLED)
1958 continue;
1959
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001960 if (rec == end)
1961 goto err_out;
1962
1963 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1964 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1965 if (in_old == in_new)
1966 continue;
1967
1968 if (in_new)
1969 rec->flags &= ~FTRACE_FL_IPMODIFY;
1970 else
1971 rec->flags |= FTRACE_FL_IPMODIFY;
1972 } while_for_each_ftrace_rec();
1973
1974err_out:
1975 return -EBUSY;
1976}
1977
1978static int ftrace_hash_ipmodify_enable(struct ftrace_ops *ops)
1979{
1980 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1981
1982 if (ftrace_hash_empty(hash))
1983 hash = NULL;
1984
1985 return __ftrace_hash_update_ipmodify(ops, EMPTY_HASH, hash);
1986}
1987
1988/* Disabling always succeeds */
1989static void ftrace_hash_ipmodify_disable(struct ftrace_ops *ops)
1990{
1991 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1992
1993 if (ftrace_hash_empty(hash))
1994 hash = NULL;
1995
1996 __ftrace_hash_update_ipmodify(ops, hash, EMPTY_HASH);
1997}
1998
1999static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
2000 struct ftrace_hash *new_hash)
2001{
2002 struct ftrace_hash *old_hash = ops->func_hash->filter_hash;
2003
2004 if (ftrace_hash_empty(old_hash))
2005 old_hash = NULL;
2006
2007 if (ftrace_hash_empty(new_hash))
2008 new_hash = NULL;
2009
2010 return __ftrace_hash_update_ipmodify(ops, old_hash, new_hash);
2011}
2012
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002013static void print_ip_ins(const char *fmt, const unsigned char *p)
Steven Rostedt05736a42008-09-22 14:55:47 -07002014{
2015 int i;
2016
2017 printk(KERN_CONT "%s", fmt);
2018
2019 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
2020 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
2021}
2022
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002023static struct ftrace_ops *
2024ftrace_find_tramp_ops_any(struct dyn_ftrace *rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002025static struct ftrace_ops *
2026ftrace_find_tramp_ops_next(struct dyn_ftrace *rec, struct ftrace_ops *ops);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002027
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002028enum ftrace_bug_type ftrace_bug_type;
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002029const void *ftrace_expected;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002030
2031static void print_bug_type(void)
2032{
2033 switch (ftrace_bug_type) {
2034 case FTRACE_BUG_UNKNOWN:
2035 break;
2036 case FTRACE_BUG_INIT:
2037 pr_info("Initializing ftrace call sites\n");
2038 break;
2039 case FTRACE_BUG_NOP:
2040 pr_info("Setting ftrace call site to NOP\n");
2041 break;
2042 case FTRACE_BUG_CALL:
2043 pr_info("Setting ftrace call site to call ftrace function\n");
2044 break;
2045 case FTRACE_BUG_UPDATE:
2046 pr_info("Updating ftrace call site to call a different ftrace function\n");
2047 break;
2048 }
2049}
2050
Steven Rostedtc88fd862011-08-16 09:53:39 -04002051/**
2052 * ftrace_bug - report and shutdown function tracer
2053 * @failed: The failed type (EFAULT, EINVAL, EPERM)
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002054 * @rec: The record that failed
Steven Rostedtc88fd862011-08-16 09:53:39 -04002055 *
2056 * The arch code that enables or disables the function tracing
2057 * can call ftrace_bug() when it has detected a problem in
2058 * modifying the code. @failed should be one of either:
2059 * EFAULT - if the problem happens on reading the @ip address
2060 * EINVAL - if what is read at @ip is not what was expected
2061 * EPERM - if the problem happens on writting to the @ip address
2062 */
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002063void ftrace_bug(int failed, struct dyn_ftrace *rec)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002064{
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002065 unsigned long ip = rec ? rec->ip : 0;
2066
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002067 switch (failed) {
2068 case -EFAULT:
2069 FTRACE_WARN_ON_ONCE(1);
2070 pr_info("ftrace faulted on modifying ");
2071 print_ip_sym(ip);
2072 break;
2073 case -EINVAL:
2074 FTRACE_WARN_ON_ONCE(1);
2075 pr_info("ftrace failed to modify ");
2076 print_ip_sym(ip);
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002077 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002078 pr_cont("\n");
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002079 if (ftrace_expected) {
2080 print_ip_ins(" expected: ", ftrace_expected);
2081 pr_cont("\n");
2082 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002083 break;
2084 case -EPERM:
2085 FTRACE_WARN_ON_ONCE(1);
2086 pr_info("ftrace faulted on writing ");
2087 print_ip_sym(ip);
2088 break;
2089 default:
2090 FTRACE_WARN_ON_ONCE(1);
2091 pr_info("ftrace faulted on unknown error ");
2092 print_ip_sym(ip);
2093 }
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002094 print_bug_type();
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002095 if (rec) {
2096 struct ftrace_ops *ops = NULL;
2097
2098 pr_info("ftrace record flags: %lx\n", rec->flags);
2099 pr_cont(" (%ld)%s", ftrace_rec_count(rec),
2100 rec->flags & FTRACE_FL_REGS ? " R" : " ");
2101 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2102 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002103 if (ops) {
2104 do {
2105 pr_cont("\ttramp: %pS (%pS)",
2106 (void *)ops->trampoline,
2107 (void *)ops->func);
2108 ops = ftrace_find_tramp_ops_next(rec, ops);
2109 } while (ops);
2110 } else
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002111 pr_cont("\ttramp: ERROR!");
2112
2113 }
2114 ip = ftrace_get_addr_curr(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002115 pr_cont("\n expected tramp: %lx\n", ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002116 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002117}
2118
Steven Rostedtc88fd862011-08-16 09:53:39 -04002119static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02002120{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002121 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01002122
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002123 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2124
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002125 if (rec->flags & FTRACE_FL_DISABLED)
2126 return FTRACE_UPDATE_IGNORE;
2127
Steven Rostedt982c3502008-11-15 16:31:41 -05002128 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002129 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05002130 *
Steven Rostedted926f92011-05-03 13:25:24 -04002131 * If the record has a ref count, then we need to enable it
2132 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05002133 *
Steven Rostedted926f92011-05-03 13:25:24 -04002134 * Otherwise we make sure its disabled.
2135 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002136 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04002137 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05002138 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002139 if (enable && ftrace_rec_count(rec))
Steven Rostedted926f92011-05-03 13:25:24 -04002140 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02002141
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002142 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002143 * If enabling and the REGS flag does not match the REGS_EN, or
2144 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
2145 * this record. Set flags to fail the compare against ENABLED.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002146 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002147 if (flag) {
2148 if (!(rec->flags & FTRACE_FL_REGS) !=
2149 !(rec->flags & FTRACE_FL_REGS_EN))
2150 flag |= FTRACE_FL_REGS;
2151
2152 if (!(rec->flags & FTRACE_FL_TRAMP) !=
2153 !(rec->flags & FTRACE_FL_TRAMP_EN))
2154 flag |= FTRACE_FL_TRAMP;
2155 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002156
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002157 /* If the state of this record hasn't changed, then do nothing */
2158 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04002159 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002160
2161 if (flag) {
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002162 /* Save off if rec is being enabled (for return value) */
2163 flag ^= rec->flags & FTRACE_FL_ENABLED;
2164
2165 if (update) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04002166 rec->flags |= FTRACE_FL_ENABLED;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002167 if (flag & FTRACE_FL_REGS) {
2168 if (rec->flags & FTRACE_FL_REGS)
2169 rec->flags |= FTRACE_FL_REGS_EN;
2170 else
2171 rec->flags &= ~FTRACE_FL_REGS_EN;
2172 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002173 if (flag & FTRACE_FL_TRAMP) {
2174 if (rec->flags & FTRACE_FL_TRAMP)
2175 rec->flags |= FTRACE_FL_TRAMP_EN;
2176 else
2177 rec->flags &= ~FTRACE_FL_TRAMP_EN;
2178 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002179 }
2180
2181 /*
2182 * If this record is being updated from a nop, then
2183 * return UPDATE_MAKE_CALL.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002184 * Otherwise,
2185 * return UPDATE_MODIFY_CALL to tell the caller to convert
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002186 * from the save regs, to a non-save regs function or
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002187 * vice versa, or from a trampoline call.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002188 */
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002189 if (flag & FTRACE_FL_ENABLED) {
2190 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002191 return FTRACE_UPDATE_MAKE_CALL;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002192 }
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002193
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002194 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002195 return FTRACE_UPDATE_MODIFY_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002196 }
2197
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002198 if (update) {
2199 /* If there's no more users, clear all flags */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002200 if (!ftrace_rec_count(rec))
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002201 rec->flags = 0;
2202 else
Steven Rostedt (Red Hat)b24d4432015-03-04 23:10:28 -05002203 /*
2204 * Just disable the record, but keep the ops TRAMP
2205 * and REGS states. The _EN flags must be disabled though.
2206 */
2207 rec->flags &= ~(FTRACE_FL_ENABLED | FTRACE_FL_TRAMP_EN |
2208 FTRACE_FL_REGS_EN);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002209 }
Steven Rostedtc88fd862011-08-16 09:53:39 -04002210
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002211 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002212 return FTRACE_UPDATE_MAKE_NOP;
2213}
2214
2215/**
2216 * ftrace_update_record, set a record that now is tracing or not
2217 * @rec: the record to update
2218 * @enable: set to 1 if the record is tracing, zero to force disable
2219 *
2220 * The records that represent all functions that can be traced need
2221 * to be updated when tracing has been enabled.
2222 */
2223int ftrace_update_record(struct dyn_ftrace *rec, int enable)
2224{
2225 return ftrace_check_record(rec, enable, 1);
2226}
2227
2228/**
2229 * ftrace_test_record, check if the record has been enabled or not
2230 * @rec: the record to test
2231 * @enable: set to 1 to check if enabled, 0 if it is disabled
2232 *
2233 * The arch code may need to test if a record is already set to
2234 * tracing to determine how to modify the function code that it
2235 * represents.
2236 */
2237int ftrace_test_record(struct dyn_ftrace *rec, int enable)
2238{
2239 return ftrace_check_record(rec, enable, 0);
2240}
2241
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002242static struct ftrace_ops *
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002243ftrace_find_tramp_ops_any(struct dyn_ftrace *rec)
2244{
2245 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002246 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002247
2248 do_for_each_ftrace_op(op, ftrace_ops_list) {
2249
2250 if (!op->trampoline)
2251 continue;
2252
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002253 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002254 return op;
2255 } while_for_each_ftrace_op(op);
2256
2257 return NULL;
2258}
2259
2260static struct ftrace_ops *
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002261ftrace_find_tramp_ops_next(struct dyn_ftrace *rec,
2262 struct ftrace_ops *op)
2263{
2264 unsigned long ip = rec->ip;
2265
2266 while_for_each_ftrace_op(op) {
2267
2268 if (!op->trampoline)
2269 continue;
2270
2271 if (hash_contains_ip(ip, op->func_hash))
2272 return op;
2273 }
2274
2275 return NULL;
2276}
2277
2278static struct ftrace_ops *
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002279ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec)
2280{
2281 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002282 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002283
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002284 /*
2285 * Need to check removed ops first.
2286 * If they are being removed, and this rec has a tramp,
2287 * and this rec is in the ops list, then it would be the
2288 * one with the tramp.
2289 */
2290 if (removed_ops) {
2291 if (hash_contains_ip(ip, &removed_ops->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002292 return removed_ops;
2293 }
2294
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002295 /*
2296 * Need to find the current trampoline for a rec.
2297 * Now, a trampoline is only attached to a rec if there
2298 * was a single 'ops' attached to it. But this can be called
2299 * when we are adding another op to the rec or removing the
2300 * current one. Thus, if the op is being added, we can
2301 * ignore it because it hasn't attached itself to the rec
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002302 * yet.
2303 *
2304 * If an ops is being modified (hooking to different functions)
2305 * then we don't care about the new functions that are being
2306 * added, just the old ones (that are probably being removed).
2307 *
2308 * If we are adding an ops to a function that already is using
2309 * a trampoline, it needs to be removed (trampolines are only
2310 * for single ops connected), then an ops that is not being
2311 * modified also needs to be checked.
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002312 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002313 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002314
2315 if (!op->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002316 continue;
2317
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002318 /*
2319 * If the ops is being added, it hasn't gotten to
2320 * the point to be removed from this tree yet.
2321 */
2322 if (op->flags & FTRACE_OPS_FL_ADDING)
2323 continue;
2324
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002325
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002326 /*
2327 * If the ops is being modified and is in the old
2328 * hash, then it is probably being removed from this
2329 * function.
2330 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002331 if ((op->flags & FTRACE_OPS_FL_MODIFYING) &&
2332 hash_contains_ip(ip, &op->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002333 return op;
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002334 /*
2335 * If the ops is not being added or modified, and it's
2336 * in its normal filter hash, then this must be the one
2337 * we want!
2338 */
2339 if (!(op->flags & FTRACE_OPS_FL_MODIFYING) &&
2340 hash_contains_ip(ip, op->func_hash))
2341 return op;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002342
2343 } while_for_each_ftrace_op(op);
2344
2345 return NULL;
2346}
2347
2348static struct ftrace_ops *
2349ftrace_find_tramp_ops_new(struct dyn_ftrace *rec)
2350{
2351 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002352 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002353
2354 do_for_each_ftrace_op(op, ftrace_ops_list) {
2355 /* pass rec in as regs to have non-NULL val */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002356 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002357 return op;
2358 } while_for_each_ftrace_op(op);
2359
2360 return NULL;
2361}
2362
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002363/**
2364 * ftrace_get_addr_new - Get the call address to set to
2365 * @rec: The ftrace record descriptor
2366 *
2367 * If the record has the FTRACE_FL_REGS set, that means that it
2368 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2369 * is not not set, then it wants to convert to the normal callback.
2370 *
2371 * Returns the address of the trampoline to set to
2372 */
2373unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec)
2374{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002375 struct ftrace_ops *ops;
2376
2377 /* Trampolines take precedence over regs */
2378 if (rec->flags & FTRACE_FL_TRAMP) {
2379 ops = ftrace_find_tramp_ops_new(rec);
2380 if (FTRACE_WARN_ON(!ops || !ops->trampoline)) {
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04002381 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2382 (void *)rec->ip, (void *)rec->ip, rec->flags);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002383 /* Ftrace is shutting down, return anything */
2384 return (unsigned long)FTRACE_ADDR;
2385 }
2386 return ops->trampoline;
2387 }
2388
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002389 if (rec->flags & FTRACE_FL_REGS)
2390 return (unsigned long)FTRACE_REGS_ADDR;
2391 else
2392 return (unsigned long)FTRACE_ADDR;
2393}
2394
2395/**
2396 * ftrace_get_addr_curr - Get the call address that is already there
2397 * @rec: The ftrace record descriptor
2398 *
2399 * The FTRACE_FL_REGS_EN is set when the record already points to
2400 * a function that saves all the regs. Basically the '_EN' version
2401 * represents the current state of the function.
2402 *
2403 * Returns the address of the trampoline that is currently being called
2404 */
2405unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec)
2406{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002407 struct ftrace_ops *ops;
2408
2409 /* Trampolines take precedence over regs */
2410 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2411 ops = ftrace_find_tramp_ops_curr(rec);
2412 if (FTRACE_WARN_ON(!ops)) {
Joe Perchesa395d6a2016-03-22 14:28:09 -07002413 pr_warn("Bad trampoline accounting at: %p (%pS)\n",
2414 (void *)rec->ip, (void *)rec->ip);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002415 /* Ftrace is shutting down, return anything */
2416 return (unsigned long)FTRACE_ADDR;
2417 }
2418 return ops->trampoline;
2419 }
2420
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002421 if (rec->flags & FTRACE_FL_REGS_EN)
2422 return (unsigned long)FTRACE_REGS_ADDR;
2423 else
2424 return (unsigned long)FTRACE_ADDR;
2425}
2426
Steven Rostedtc88fd862011-08-16 09:53:39 -04002427static int
2428__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
2429{
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002430 unsigned long ftrace_old_addr;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002431 unsigned long ftrace_addr;
2432 int ret;
2433
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002434 ftrace_addr = ftrace_get_addr_new(rec);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002435
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002436 /* This needs to be done before we call ftrace_update_record */
2437 ftrace_old_addr = ftrace_get_addr_curr(rec);
2438
2439 ret = ftrace_update_record(rec, enable);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002440
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002441 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2442
Steven Rostedtc88fd862011-08-16 09:53:39 -04002443 switch (ret) {
2444 case FTRACE_UPDATE_IGNORE:
2445 return 0;
2446
2447 case FTRACE_UPDATE_MAKE_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002448 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002449 return ftrace_make_call(rec, ftrace_addr);
2450
2451 case FTRACE_UPDATE_MAKE_NOP:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002452 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedt (Red Hat)39b55522014-08-17 20:59:10 -04002453 return ftrace_make_nop(NULL, rec, ftrace_old_addr);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002454
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002455 case FTRACE_UPDATE_MODIFY_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002456 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002457 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002458 }
2459
2460 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02002461}
2462
Steven Rostedte4f5d542012-04-27 09:13:18 -04002463void __weak ftrace_replace_code(int enable)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002464{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002465 struct dyn_ftrace *rec;
2466 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002467 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002468
Steven Rostedt45a4a232011-04-21 23:16:46 -04002469 if (unlikely(ftrace_disabled))
2470 return;
2471
Steven Rostedt265c8312009-02-13 12:43:56 -05002472 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05002473
2474 if (rec->flags & FTRACE_FL_DISABLED)
2475 continue;
2476
Steven Rostedte4f5d542012-04-27 09:13:18 -04002477 failed = __ftrace_replace_code(rec, enable);
Zhaoleifa9d13c2009-03-13 17:16:34 +08002478 if (failed) {
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002479 ftrace_bug(failed, rec);
Steven Rostedt3279ba32009-10-07 16:57:56 -04002480 /* Stop processing */
2481 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05002482 }
2483 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002484}
2485
Steven Rostedtc88fd862011-08-16 09:53:39 -04002486struct ftrace_rec_iter {
2487 struct ftrace_page *pg;
2488 int index;
2489};
2490
2491/**
2492 * ftrace_rec_iter_start, start up iterating over traced functions
2493 *
2494 * Returns an iterator handle that is used to iterate over all
2495 * the records that represent address locations where functions
2496 * are traced.
2497 *
2498 * May return NULL if no records are available.
2499 */
2500struct ftrace_rec_iter *ftrace_rec_iter_start(void)
2501{
2502 /*
2503 * We only use a single iterator.
2504 * Protected by the ftrace_lock mutex.
2505 */
2506 static struct ftrace_rec_iter ftrace_rec_iter;
2507 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
2508
2509 iter->pg = ftrace_pages_start;
2510 iter->index = 0;
2511
2512 /* Could have empty pages */
2513 while (iter->pg && !iter->pg->index)
2514 iter->pg = iter->pg->next;
2515
2516 if (!iter->pg)
2517 return NULL;
2518
2519 return iter;
2520}
2521
2522/**
2523 * ftrace_rec_iter_next, get the next record to process.
2524 * @iter: The handle to the iterator.
2525 *
2526 * Returns the next iterator after the given iterator @iter.
2527 */
2528struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
2529{
2530 iter->index++;
2531
2532 if (iter->index >= iter->pg->index) {
2533 iter->pg = iter->pg->next;
2534 iter->index = 0;
2535
2536 /* Could have empty pages */
2537 while (iter->pg && !iter->pg->index)
2538 iter->pg = iter->pg->next;
2539 }
2540
2541 if (!iter->pg)
2542 return NULL;
2543
2544 return iter;
2545}
2546
2547/**
2548 * ftrace_rec_iter_record, get the record at the iterator location
2549 * @iter: The current iterator location
2550 *
2551 * Returns the record that the current @iter is at.
2552 */
2553struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
2554{
2555 return &iter->pg->records[iter->index];
2556}
2557
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302558static int
Steven Rostedt31e88902008-11-14 16:21:19 -08002559ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002560{
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002561 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002562
Steven Rostedt45a4a232011-04-21 23:16:46 -04002563 if (unlikely(ftrace_disabled))
2564 return 0;
2565
Shaohua Li25aac9d2009-01-09 11:29:40 +08002566 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002567 if (ret) {
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002568 ftrace_bug_type = FTRACE_BUG_INIT;
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002569 ftrace_bug(ret, rec);
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302570 return 0;
Steven Rostedt37ad50842008-05-12 21:20:48 +02002571 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302572 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002573}
2574
Steven Rostedt000ab692009-02-17 13:35:06 -05002575/*
2576 * archs can override this function if they must do something
2577 * before the modifying code is performed.
2578 */
2579int __weak ftrace_arch_code_modify_prepare(void)
2580{
2581 return 0;
2582}
2583
2584/*
2585 * archs can override this function if they must do something
2586 * after the modifying code is performed.
2587 */
2588int __weak ftrace_arch_code_modify_post_process(void)
2589{
2590 return 0;
2591}
2592
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002593void ftrace_modify_all_code(int command)
2594{
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002595 int update = command & FTRACE_UPDATE_TRACE_FUNC;
Petr Mladekcd21067f2014-02-24 17:12:21 +01002596 int err = 0;
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002597
2598 /*
2599 * If the ftrace_caller calls a ftrace_ops func directly,
2600 * we need to make sure that it only traces functions it
2601 * expects to trace. When doing the switch of functions,
2602 * we need to update to the ftrace_ops_list_func first
2603 * before the transition between old and new calls are set,
2604 * as the ftrace_ops_list_func will check the ops hashes
2605 * to make sure the ops are having the right functions
2606 * traced.
2607 */
Petr Mladekcd21067f2014-02-24 17:12:21 +01002608 if (update) {
2609 err = ftrace_update_ftrace_func(ftrace_ops_list_func);
2610 if (FTRACE_WARN_ON(err))
2611 return;
2612 }
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002613
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002614 if (command & FTRACE_UPDATE_CALLS)
2615 ftrace_replace_code(1);
2616 else if (command & FTRACE_DISABLE_CALLS)
2617 ftrace_replace_code(0);
2618
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002619 if (update && ftrace_trace_function != ftrace_ops_list_func) {
2620 function_trace_op = set_function_trace_op;
2621 smp_wmb();
2622 /* If irqs are disabled, we are in stop machine */
2623 if (!irqs_disabled())
2624 smp_call_function(ftrace_sync_ipi, NULL, 1);
Petr Mladekcd21067f2014-02-24 17:12:21 +01002625 err = ftrace_update_ftrace_func(ftrace_trace_function);
2626 if (FTRACE_WARN_ON(err))
2627 return;
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002628 }
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002629
2630 if (command & FTRACE_START_FUNC_RET)
Petr Mladekcd21067f2014-02-24 17:12:21 +01002631 err = ftrace_enable_ftrace_graph_caller();
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002632 else if (command & FTRACE_STOP_FUNC_RET)
Petr Mladekcd21067f2014-02-24 17:12:21 +01002633 err = ftrace_disable_ftrace_graph_caller();
2634 FTRACE_WARN_ON(err);
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002635}
2636
Ingo Molnare309b412008-05-12 21:20:51 +02002637static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02002638{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002639 int *command = data;
2640
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002641 ftrace_modify_all_code(*command);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05002642
Steven Rostedtc88fd862011-08-16 09:53:39 -04002643 return 0;
2644}
2645
2646/**
2647 * ftrace_run_stop_machine, go back to the stop machine method
2648 * @command: The command to tell ftrace what to do
2649 *
2650 * If an arch needs to fall back to the stop machine method, the
2651 * it can call this function.
2652 */
2653void ftrace_run_stop_machine(int command)
2654{
2655 stop_machine(__ftrace_modify_code, &command, NULL);
2656}
2657
2658/**
2659 * arch_ftrace_update_code, modify the code to trace or not trace
2660 * @command: The command that needs to be done
2661 *
2662 * Archs can override this function if it does not need to
2663 * run stop_machine() to modify code.
2664 */
2665void __weak arch_ftrace_update_code(int command)
2666{
2667 ftrace_run_stop_machine(command);
2668}
2669
2670static void ftrace_run_update_code(int command)
2671{
2672 int ret;
2673
2674 ret = ftrace_arch_code_modify_prepare();
2675 FTRACE_WARN_ON(ret);
2676 if (ret)
2677 return;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002678
2679 /*
2680 * By default we use stop_machine() to modify the code.
2681 * But archs can do what ever they want as long as it
2682 * is safe. The stop_machine() is the safest, but also
2683 * produces the most overhead.
2684 */
2685 arch_ftrace_update_code(command);
2686
Steven Rostedt000ab692009-02-17 13:35:06 -05002687 ret = ftrace_arch_code_modify_post_process();
2688 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02002689}
2690
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002691static void ftrace_run_modify_code(struct ftrace_ops *ops, int command,
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002692 struct ftrace_ops_hash *old_hash)
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002693{
2694 ops->flags |= FTRACE_OPS_FL_MODIFYING;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002695 ops->old_hash.filter_hash = old_hash->filter_hash;
2696 ops->old_hash.notrace_hash = old_hash->notrace_hash;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002697 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002698 ops->old_hash.filter_hash = NULL;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002699 ops->old_hash.notrace_hash = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002700 ops->flags &= ~FTRACE_OPS_FL_MODIFYING;
2701}
2702
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002703static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002704static int ftrace_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002705
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002706void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops)
2707{
2708}
2709
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002710static void per_cpu_ops_free(struct ftrace_ops *ops)
Jiri Slabydb0fbad2014-03-10 21:42:11 +01002711{
2712 free_percpu(ops->disabled);
2713}
2714
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002715static void ftrace_startup_enable(int command)
2716{
2717 if (saved_ftrace_func != ftrace_trace_function) {
2718 saved_ftrace_func = ftrace_trace_function;
2719 command |= FTRACE_UPDATE_TRACE_FUNC;
2720 }
2721
2722 if (!command || !ftrace_enabled)
2723 return;
2724
2725 ftrace_run_update_code(command);
2726}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002727
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002728static void ftrace_startup_all(int command)
2729{
2730 update_all_ops = true;
2731 ftrace_startup_enable(command);
2732 update_all_ops = false;
2733}
2734
Steven Rostedta1cd6172011-05-23 15:24:25 -04002735static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002736{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002737 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002738
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002739 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04002740 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002741
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002742 ret = __register_ftrace_function(ops);
2743 if (ret)
2744 return ret;
2745
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002746 ftrace_start_up++;
Steven Rostedt3d083392008-05-12 21:20:42 +02002747
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002748 /*
2749 * Note that ftrace probes uses this to start up
2750 * and modify functions it will probe. But we still
2751 * set the ADDING flag for modification, as probes
2752 * do not have trampolines. If they add them in the
2753 * future, then the probes will need to distinguish
2754 * between adding and updating probes.
2755 */
2756 ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING;
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002757
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002758 ret = ftrace_hash_ipmodify_enable(ops);
2759 if (ret < 0) {
2760 /* Rollback registration process */
2761 __unregister_ftrace_function(ops);
2762 ftrace_start_up--;
2763 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2764 return ret;
2765 }
2766
Jiri Olsa7f50d062016-03-16 15:34:33 +01002767 if (ftrace_hash_rec_enable(ops, 1))
2768 command |= FTRACE_UPDATE_CALLS;
Steven Rostedted926f92011-05-03 13:25:24 -04002769
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002770 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04002771
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002772 ops->flags &= ~FTRACE_OPS_FL_ADDING;
2773
Steven Rostedta1cd6172011-05-23 15:24:25 -04002774 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002775}
2776
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002777static int ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002778{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002779 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002780
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002781 if (unlikely(ftrace_disabled))
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002782 return -ENODEV;
2783
2784 ret = __unregister_ftrace_function(ops);
2785 if (ret)
2786 return ret;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002787
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002788 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02002789 /*
2790 * Just warn in case of unbalance, no need to kill ftrace, it's not
2791 * critical but the ftrace_call callers may be never nopped again after
2792 * further ftrace uses.
2793 */
2794 WARN_ON_ONCE(ftrace_start_up < 0);
2795
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002796 /* Disabling ipmodify never fails */
2797 ftrace_hash_ipmodify_disable(ops);
Jiri Olsa7f50d062016-03-16 15:34:33 +01002798
2799 if (ftrace_hash_rec_disable(ops, 1))
2800 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtb8489142011-05-04 09:27:52 -04002801
Namhyung Kima737e6d2014-06-12 23:56:12 +09002802 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04002803
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002804 if (saved_ftrace_func != ftrace_trace_function) {
2805 saved_ftrace_func = ftrace_trace_function;
2806 command |= FTRACE_UPDATE_TRACE_FUNC;
2807 }
2808
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002809 if (!command || !ftrace_enabled) {
2810 /*
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002811 * If these are per_cpu ops, they still need their
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002812 * per_cpu field freed. Since, function tracing is
2813 * not currently active, we can just free them
2814 * without synchronizing all CPUs.
2815 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002816 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2817 per_cpu_ops_free(ops);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002818 return 0;
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002819 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002820
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002821 /*
2822 * If the ops uses a trampoline, then it needs to be
2823 * tested first on update.
2824 */
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002825 ops->flags |= FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002826 removed_ops = ops;
2827
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002828 /* The trampoline logic checks the old hashes */
2829 ops->old_hash.filter_hash = ops->func_hash->filter_hash;
2830 ops->old_hash.notrace_hash = ops->func_hash->notrace_hash;
2831
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002832 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002833
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002834 /*
2835 * If there's no more ops registered with ftrace, run a
2836 * sanity check to make sure all rec flags are cleared.
2837 */
2838 if (ftrace_ops_list == &ftrace_list_end) {
2839 struct ftrace_page *pg;
2840 struct dyn_ftrace *rec;
2841
2842 do_for_each_ftrace_rec(pg, rec) {
Alexei Starovoitov977c1f92016-11-07 15:14:20 -08002843 if (FTRACE_WARN_ON_ONCE(rec->flags & ~FTRACE_FL_DISABLED))
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002844 pr_warn(" %pS flags:%lx\n",
2845 (void *)rec->ip, rec->flags);
2846 } while_for_each_ftrace_rec();
2847 }
2848
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002849 ops->old_hash.filter_hash = NULL;
2850 ops->old_hash.notrace_hash = NULL;
2851
2852 removed_ops = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002853 ops->flags &= ~FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002854
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002855 /*
2856 * Dynamic ops may be freed, we must make sure that all
2857 * callers are done before leaving this function.
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002858 * The same goes for freeing the per_cpu data of the per_cpu
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002859 * ops.
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002860 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002861 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU)) {
Steven Rostedt (VMware)0598e4f2017-04-06 10:28:12 -04002862 /*
2863 * We need to do a hard force of sched synchronization.
2864 * This is because we use preempt_disable() to do RCU, but
2865 * the function tracers can be called where RCU is not watching
2866 * (like before user_exit()). We can not rely on the RCU
2867 * infrastructure to do the synchronization, thus we must do it
2868 * ourselves.
2869 */
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002870 schedule_on_each_cpu(ftrace_sync);
2871
Steven Rostedt (VMware)0598e4f2017-04-06 10:28:12 -04002872 /*
2873 * When the kernel is preeptive, tasks can be preempted
2874 * while on a ftrace trampoline. Just scheduling a task on
2875 * a CPU is not good enough to flush them. Calling
2876 * synchornize_rcu_tasks() will wait for those tasks to
2877 * execute and either schedule voluntarily or enter user space.
2878 */
2879 if (IS_ENABLED(CONFIG_PREEMPT))
2880 synchronize_rcu_tasks();
2881
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002882 arch_ftrace_trampoline_free(ops);
2883
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002884 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2885 per_cpu_ops_free(ops);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002886 }
2887
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002888 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002889}
2890
Ingo Molnare309b412008-05-12 21:20:51 +02002891static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002892{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302893 int command;
2894
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002895 if (unlikely(ftrace_disabled))
2896 return;
2897
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002898 /* Force update next time */
2899 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002900 /* ftrace_start_up is true if we want ftrace running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302901 if (ftrace_start_up) {
2902 command = FTRACE_UPDATE_CALLS;
2903 if (ftrace_graph_active)
2904 command |= FTRACE_START_FUNC_RET;
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05002905 ftrace_startup_enable(command);
Pratyush Anand1619dc32015-03-06 23:58:06 +05302906 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002907}
2908
Ingo Molnare309b412008-05-12 21:20:51 +02002909static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002910{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302911 int command;
2912
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002913 if (unlikely(ftrace_disabled))
2914 return;
2915
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002916 /* ftrace_start_up is true if ftrace is running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302917 if (ftrace_start_up) {
2918 command = FTRACE_DISABLE_CALLS;
2919 if (ftrace_graph_active)
2920 command |= FTRACE_STOP_FUNC_RET;
2921 ftrace_run_update_code(command);
2922 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002923}
2924
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002925static u64 ftrace_update_time;
Steven Rostedt3d083392008-05-12 21:20:42 +02002926unsigned long ftrace_update_tot_cnt;
2927
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002928static inline int ops_traces_mod(struct ftrace_ops *ops)
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002929{
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002930 /*
2931 * Filter_hash being empty will default to trace module.
2932 * But notrace hash requires a test of individual module functions.
2933 */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002934 return ftrace_hash_empty(ops->func_hash->filter_hash) &&
2935 ftrace_hash_empty(ops->func_hash->notrace_hash);
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002936}
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002937
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002938/*
2939 * Check if the current ops references the record.
2940 *
2941 * If the ops traces all functions, then it was already accounted for.
2942 * If the ops does not trace the current record function, skip it.
2943 * If the ops ignores the function via notrace filter, skip it.
2944 */
2945static inline bool
2946ops_references_rec(struct ftrace_ops *ops, struct dyn_ftrace *rec)
2947{
2948 /* If ops isn't enabled, ignore it */
2949 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
2950 return 0;
2951
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002952 /* If ops traces all then it includes this function */
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002953 if (ops_traces_mod(ops))
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002954 return 1;
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002955
2956 /* The function must be in the filter */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002957 if (!ftrace_hash_empty(ops->func_hash->filter_hash) &&
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05002958 !__ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002959 return 0;
2960
2961 /* If in notrace hash, we ignore it too */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002962 if (ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002963 return 0;
2964
2965 return 1;
2966}
2967
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002968static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs)
Steven Rostedt3d083392008-05-12 21:20:42 +02002969{
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002970 struct ftrace_page *pg;
Lai Jiangshane94142a2009-03-13 17:51:27 +08002971 struct dyn_ftrace *p;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002972 u64 start, stop;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002973 unsigned long update_cnt = 0;
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002974 unsigned long rec_flags = 0;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002975 int i;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002976
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002977 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002978
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002979 /*
2980 * When a module is loaded, this function is called to convert
2981 * the calls to mcount in its text to nops, and also to create
2982 * an entry in the ftrace data. Now, if ftrace is activated
2983 * after this call, but before the module sets its text to
2984 * read-only, the modification of enabling ftrace can fail if
2985 * the read-only is done while ftrace is converting the calls.
2986 * To prevent this, the module's records are set as disabled
2987 * and will be enabled after the call to set the module's text
2988 * to read-only.
2989 */
2990 if (mod)
2991 rec_flags |= FTRACE_FL_DISABLED;
2992
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002993 for (pg = new_pgs; pg; pg = pg->next) {
Abhishek Sagarf22f9a892008-06-21 23:50:29 +05302994
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002995 for (i = 0; i < pg->index; i++) {
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002996
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002997 /* If something went wrong, bail without enabling anything */
2998 if (unlikely(ftrace_disabled))
2999 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02003000
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003001 p = &pg->records[i];
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05003002 p->flags = rec_flags;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05303003
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003004 /*
3005 * Do the initial record conversion from mcount jump
3006 * to the NOP instructions.
3007 */
3008 if (!ftrace_code_disable(mod, p))
3009 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003010
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01003011 update_cnt++;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003012 }
Steven Rostedt3d083392008-05-12 21:20:42 +02003013 }
3014
Ingo Molnar750ed1a2008-05-12 21:20:46 +02003015 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02003016 ftrace_update_time = stop - start;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01003017 ftrace_update_tot_cnt += update_cnt;
Steven Rostedt3d083392008-05-12 21:20:42 +02003018
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02003019 return 0;
3020}
3021
Steven Rostedta7900872011-12-16 16:23:44 -05003022static int ftrace_allocate_records(struct ftrace_page *pg, int count)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003023{
Steven Rostedta7900872011-12-16 16:23:44 -05003024 int order;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003025 int cnt;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003026
Steven Rostedta7900872011-12-16 16:23:44 -05003027 if (WARN_ON(!count))
3028 return -EINVAL;
3029
3030 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003031
3032 /*
Steven Rostedta7900872011-12-16 16:23:44 -05003033 * We want to fill as much as possible. No more than a page
3034 * may be empty.
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003035 */
Steven Rostedta7900872011-12-16 16:23:44 -05003036 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
3037 order--;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003038
Steven Rostedta7900872011-12-16 16:23:44 -05003039 again:
3040 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
3041
3042 if (!pg->records) {
3043 /* if we can't allocate this size, try something smaller */
3044 if (!order)
3045 return -ENOMEM;
3046 order >>= 1;
3047 goto again;
3048 }
3049
3050 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
3051 pg->size = cnt;
3052
3053 if (cnt > count)
3054 cnt = count;
3055
3056 return cnt;
3057}
3058
3059static struct ftrace_page *
3060ftrace_allocate_pages(unsigned long num_to_init)
3061{
3062 struct ftrace_page *start_pg;
3063 struct ftrace_page *pg;
3064 int order;
3065 int cnt;
3066
3067 if (!num_to_init)
3068 return 0;
3069
3070 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
3071 if (!pg)
3072 return NULL;
3073
3074 /*
3075 * Try to allocate as much as possible in one continues
3076 * location that fills in all of the space. We want to
3077 * waste as little space as possible.
3078 */
3079 for (;;) {
3080 cnt = ftrace_allocate_records(pg, num_to_init);
3081 if (cnt < 0)
3082 goto free_pages;
3083
3084 num_to_init -= cnt;
3085 if (!num_to_init)
3086 break;
3087
3088 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
3089 if (!pg->next)
3090 goto free_pages;
3091
3092 pg = pg->next;
3093 }
3094
3095 return start_pg;
3096
3097 free_pages:
Namhyung Kim1f61be002014-06-11 17:06:53 +09003098 pg = start_pg;
3099 while (pg) {
Steven Rostedta7900872011-12-16 16:23:44 -05003100 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3101 free_pages((unsigned long)pg->records, order);
3102 start_pg = pg->next;
3103 kfree(pg);
3104 pg = start_pg;
3105 }
3106 pr_info("ftrace: FAILED to allocate memory for functions\n");
3107 return NULL;
3108}
3109
Steven Rostedt5072c592008-05-12 21:20:43 +02003110#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
3111
3112struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003113 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003114 loff_t func_pos;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003115 loff_t mod_pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003116 struct ftrace_page *pg;
3117 struct dyn_ftrace *func;
3118 struct ftrace_func_probe *probe;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003119 struct ftrace_func_entry *probe_entry;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003120 struct trace_parser parser;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003121 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003122 struct ftrace_ops *ops;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003123 struct trace_array *tr;
3124 struct list_head *mod_list;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003125 int pidx;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003126 int idx;
3127 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02003128};
3129
Ingo Molnare309b412008-05-12 21:20:51 +02003130static void *
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003131t_probe_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003132{
3133 struct ftrace_iterator *iter = m->private;
Steven Rostedt (VMware)d2afd57a2017-04-20 11:31:35 -04003134 struct trace_array *tr = iter->ops->private;
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003135 struct list_head *func_probes;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003136 struct ftrace_hash *hash;
3137 struct list_head *next;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003138 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003139 struct hlist_head *hhd;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003140 int size;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003141
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003142 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003143 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003144
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003145 if (!tr)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003146 return NULL;
3147
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003148 func_probes = &tr->func_probes;
3149 if (list_empty(func_probes))
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003150 return NULL;
3151
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003152 if (!iter->probe) {
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003153 next = func_probes->next;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003154 iter->probe = list_entry(next, struct ftrace_func_probe, list);
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003155 }
3156
3157 if (iter->probe_entry)
3158 hnd = &iter->probe_entry->hlist;
3159
3160 hash = iter->probe->ops.func_hash->filter_hash;
3161 size = 1 << hash->size_bits;
3162
3163 retry:
3164 if (iter->pidx >= size) {
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003165 if (iter->probe->list.next == func_probes)
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003166 return NULL;
3167 next = iter->probe->list.next;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003168 iter->probe = list_entry(next, struct ftrace_func_probe, list);
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003169 hash = iter->probe->ops.func_hash->filter_hash;
3170 size = 1 << hash->size_bits;
3171 iter->pidx = 0;
3172 }
3173
3174 hhd = &hash->buckets[iter->pidx];
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003175
3176 if (hlist_empty(hhd)) {
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003177 iter->pidx++;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003178 hnd = NULL;
3179 goto retry;
3180 }
3181
3182 if (!hnd)
3183 hnd = hhd->first;
3184 else {
3185 hnd = hnd->next;
3186 if (!hnd) {
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003187 iter->pidx++;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003188 goto retry;
3189 }
3190 }
3191
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003192 if (WARN_ON_ONCE(!hnd))
3193 return NULL;
3194
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003195 iter->probe_entry = hlist_entry(hnd, struct ftrace_func_entry, hlist);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003196
3197 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003198}
3199
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003200static void *t_probe_start(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003201{
3202 struct ftrace_iterator *iter = m->private;
3203 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08003204 loff_t l;
3205
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003206 if (!(iter->flags & FTRACE_ITER_DO_PROBES))
Steven Rostedt69a30832011-12-19 15:21:16 -05003207 return NULL;
3208
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003209 if (iter->mod_pos > *pos)
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003210 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003211
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003212 iter->probe = NULL;
3213 iter->probe_entry = NULL;
3214 iter->pidx = 0;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003215 for (l = 0; l <= (*pos - iter->mod_pos); ) {
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003216 p = t_probe_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08003217 if (!p)
3218 break;
3219 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003220 if (!p)
3221 return NULL;
3222
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003223 /* Only set this if we have an item */
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003224 iter->flags |= FTRACE_ITER_PROBE;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003225
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003226 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003227}
3228
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003229static int
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003230t_probe_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003231{
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003232 struct ftrace_func_entry *probe_entry;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003233 struct ftrace_probe_ops *probe_ops;
3234 struct ftrace_func_probe *probe;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003235
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003236 probe = iter->probe;
3237 probe_entry = iter->probe_entry;
3238
3239 if (WARN_ON_ONCE(!probe || !probe_entry))
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003240 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003241
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003242 probe_ops = probe->probe_ops;
Steven Rostedt809dcf22009-02-16 23:06:01 -05003243
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003244 if (probe_ops->print)
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04003245 return probe_ops->print(m, probe_entry->ip, probe_ops, probe->data);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003246
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003247 seq_printf(m, "%ps:%ps\n", (void *)probe_entry->ip,
3248 (void *)probe_ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003249
3250 return 0;
3251}
3252
3253static void *
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003254t_mod_next(struct seq_file *m, loff_t *pos)
3255{
3256 struct ftrace_iterator *iter = m->private;
3257 struct trace_array *tr = iter->tr;
3258
3259 (*pos)++;
3260 iter->pos = *pos;
3261
3262 iter->mod_list = iter->mod_list->next;
3263
3264 if (iter->mod_list == &tr->mod_trace ||
3265 iter->mod_list == &tr->mod_notrace) {
3266 iter->flags &= ~FTRACE_ITER_MOD;
3267 return NULL;
3268 }
3269
3270 iter->mod_pos = *pos;
3271
3272 return iter;
3273}
3274
3275static void *t_mod_start(struct seq_file *m, loff_t *pos)
3276{
3277 struct ftrace_iterator *iter = m->private;
3278 void *p = NULL;
3279 loff_t l;
3280
3281 if (iter->func_pos > *pos)
3282 return NULL;
3283
3284 iter->mod_pos = iter->func_pos;
3285
3286 /* probes are only available if tr is set */
3287 if (!iter->tr)
3288 return NULL;
3289
3290 for (l = 0; l <= (*pos - iter->func_pos); ) {
3291 p = t_mod_next(m, &l);
3292 if (!p)
3293 break;
3294 }
3295 if (!p) {
3296 iter->flags &= ~FTRACE_ITER_MOD;
3297 return t_probe_start(m, pos);
3298 }
3299
3300 /* Only set this if we have an item */
3301 iter->flags |= FTRACE_ITER_MOD;
3302
3303 return iter;
3304}
3305
3306static int
3307t_mod_show(struct seq_file *m, struct ftrace_iterator *iter)
3308{
3309 struct ftrace_mod_load *ftrace_mod;
3310 struct trace_array *tr = iter->tr;
3311
3312 if (WARN_ON_ONCE(!iter->mod_list) ||
3313 iter->mod_list == &tr->mod_trace ||
3314 iter->mod_list == &tr->mod_notrace)
3315 return -EIO;
3316
3317 ftrace_mod = list_entry(iter->mod_list, struct ftrace_mod_load, list);
3318
3319 if (ftrace_mod->func)
3320 seq_printf(m, "%s", ftrace_mod->func);
3321 else
3322 seq_putc(m, '*');
3323
3324 seq_printf(m, ":mod:%s\n", ftrace_mod->module);
3325
3326 return 0;
3327}
3328
3329static void *
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003330t_func_next(struct seq_file *m, loff_t *pos)
Steven Rostedt5072c592008-05-12 21:20:43 +02003331{
3332 struct ftrace_iterator *iter = m->private;
3333 struct dyn_ftrace *rec = NULL;
3334
3335 (*pos)++;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003336
Steven Rostedt5072c592008-05-12 21:20:43 +02003337 retry:
3338 if (iter->idx >= iter->pg->index) {
3339 if (iter->pg->next) {
3340 iter->pg = iter->pg->next;
3341 iter->idx = 0;
3342 goto retry;
3343 }
3344 } else {
3345 rec = &iter->pg->records[iter->idx++];
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04003346 if (((iter->flags & (FTRACE_ITER_FILTER | FTRACE_ITER_NOTRACE)) &&
3347 !ftrace_lookup_ip(iter->hash, rec->ip)) ||
Steven Rostedt647bcd02011-05-03 14:39:21 -04003348
3349 ((iter->flags & FTRACE_ITER_ENABLED) &&
Steven Rostedt (Red Hat)23ea9c42013-05-09 19:31:48 -04003350 !(rec->flags & FTRACE_FL_ENABLED))) {
Steven Rostedt647bcd02011-05-03 14:39:21 -04003351
Steven Rostedt5072c592008-05-12 21:20:43 +02003352 rec = NULL;
3353 goto retry;
3354 }
3355 }
3356
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003357 if (!rec)
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003358 return NULL;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003359
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003360 iter->pos = iter->func_pos = *pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003361 iter->func = rec;
3362
3363 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003364}
3365
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003366static void *
3367t_next(struct seq_file *m, void *v, loff_t *pos)
3368{
3369 struct ftrace_iterator *iter = m->private;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003370 loff_t l = *pos; /* t_probe_start() must use original pos */
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003371 void *ret;
3372
3373 if (unlikely(ftrace_disabled))
3374 return NULL;
3375
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003376 if (iter->flags & FTRACE_ITER_PROBE)
3377 return t_probe_next(m, pos);
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003378
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003379 if (iter->flags & FTRACE_ITER_MOD)
3380 return t_mod_next(m, pos);
3381
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003382 if (iter->flags & FTRACE_ITER_PRINTALL) {
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003383 /* next must increment pos, and t_probe_start does not */
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003384 (*pos)++;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003385 return t_mod_start(m, &l);
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003386 }
3387
3388 ret = t_func_next(m, pos);
3389
3390 if (!ret)
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003391 return t_mod_start(m, &l);
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003392
3393 return ret;
3394}
3395
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003396static void reset_iter_read(struct ftrace_iterator *iter)
3397{
3398 iter->pos = 0;
3399 iter->func_pos = 0;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003400 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_PROBE | FTRACE_ITER_MOD);
Steven Rostedt5072c592008-05-12 21:20:43 +02003401}
3402
3403static void *t_start(struct seq_file *m, loff_t *pos)
3404{
3405 struct ftrace_iterator *iter = m->private;
3406 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08003407 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02003408
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003409 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003410
3411 if (unlikely(ftrace_disabled))
3412 return NULL;
3413
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003414 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003415 * If an lseek was done, then reset and start from beginning.
3416 */
3417 if (*pos < iter->pos)
3418 reset_iter_read(iter);
3419
3420 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003421 * For set_ftrace_filter reading, if we have the filter
3422 * off, we can short cut and just print out that all
3423 * functions are enabled.
3424 */
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04003425 if ((iter->flags & (FTRACE_ITER_FILTER | FTRACE_ITER_NOTRACE)) &&
3426 ftrace_hash_empty(iter->hash)) {
Steven Rostedt (VMware)43ff9262017-03-30 16:51:43 -04003427 iter->func_pos = 1; /* Account for the message */
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003428 if (*pos > 0)
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003429 return t_mod_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003430 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07003431 /* reset in case of seek/pread */
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003432 iter->flags &= ~FTRACE_ITER_PROBE;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003433 return iter;
3434 }
3435
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003436 if (iter->flags & FTRACE_ITER_MOD)
3437 return t_mod_start(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003438
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003439 /*
3440 * Unfortunately, we need to restart at ftrace_pages_start
3441 * every time we let go of the ftrace_mutex. This is because
3442 * those pointers can change without the lock.
3443 */
Li Zefan694ce0a2009-06-24 09:54:19 +08003444 iter->pg = ftrace_pages_start;
3445 iter->idx = 0;
3446 for (l = 0; l <= *pos; ) {
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003447 p = t_func_next(m, &l);
Li Zefan694ce0a2009-06-24 09:54:19 +08003448 if (!p)
3449 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08003450 }
walimis5821e1b2008-11-15 15:19:06 +08003451
Steven Rostedt69a30832011-12-19 15:21:16 -05003452 if (!p)
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003453 return t_mod_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003454
3455 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003456}
3457
3458static void t_stop(struct seq_file *m, void *p)
3459{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003460 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003461}
3462
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003463void * __weak
3464arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec)
3465{
3466 return NULL;
3467}
3468
3469static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops,
3470 struct dyn_ftrace *rec)
3471{
3472 void *ptr;
3473
3474 ptr = arch_ftrace_trampoline_func(ops, rec);
3475 if (ptr)
3476 seq_printf(m, " ->%pS", ptr);
3477}
3478
Steven Rostedt5072c592008-05-12 21:20:43 +02003479static int t_show(struct seq_file *m, void *v)
3480{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003481 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003482 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02003483
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003484 if (iter->flags & FTRACE_ITER_PROBE)
3485 return t_probe_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003486
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003487 if (iter->flags & FTRACE_ITER_MOD)
3488 return t_mod_show(m, iter);
3489
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003490 if (iter->flags & FTRACE_ITER_PRINTALL) {
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003491 if (iter->flags & FTRACE_ITER_NOTRACE)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003492 seq_puts(m, "#### no functions disabled ####\n");
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003493 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003494 seq_puts(m, "#### all functions enabled ####\n");
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003495 return 0;
3496 }
3497
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003498 rec = iter->func;
3499
Steven Rostedt5072c592008-05-12 21:20:43 +02003500 if (!rec)
3501 return 0;
3502
Steven Rostedt647bcd02011-05-03 14:39:21 -04003503 seq_printf(m, "%ps", (void *)rec->ip);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003504 if (iter->flags & FTRACE_ITER_ENABLED) {
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003505 struct ftrace_ops *ops;
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003506
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003507 seq_printf(m, " (%ld)%s%s",
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04003508 ftrace_rec_count(rec),
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003509 rec->flags & FTRACE_FL_REGS ? " R" : " ",
3510 rec->flags & FTRACE_FL_IPMODIFY ? " I" : " ");
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003511 if (rec->flags & FTRACE_FL_TRAMP_EN) {
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04003512 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003513 if (ops) {
3514 do {
3515 seq_printf(m, "\ttramp: %pS (%pS)",
3516 (void *)ops->trampoline,
3517 (void *)ops->func);
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003518 add_trampoline_func(m, ops, rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003519 ops = ftrace_find_tramp_ops_next(rec, ops);
3520 } while (ops);
3521 } else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003522 seq_puts(m, "\ttramp: ERROR!");
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003523 } else {
3524 add_trampoline_func(m, NULL, rec);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003525 }
3526 }
3527
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003528 seq_putc(m, '\n');
Steven Rostedt5072c592008-05-12 21:20:43 +02003529
3530 return 0;
3531}
3532
James Morris88e9d342009-09-22 16:43:43 -07003533static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003534 .start = t_start,
3535 .next = t_next,
3536 .stop = t_stop,
3537 .show = t_show,
3538};
3539
Ingo Molnare309b412008-05-12 21:20:51 +02003540static int
Steven Rostedt5072c592008-05-12 21:20:43 +02003541ftrace_avail_open(struct inode *inode, struct file *file)
3542{
3543 struct ftrace_iterator *iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003544
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003545 if (unlikely(ftrace_disabled))
3546 return -ENODEV;
3547
Jiri Olsa50e18b92012-04-25 10:23:39 +02003548 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003549 if (!iter)
3550 return -ENOMEM;
Steven Rostedt5072c592008-05-12 21:20:43 +02003551
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003552 iter->pg = ftrace_pages_start;
3553 iter->ops = &global_ops;
3554
3555 return 0;
Steven Rostedt5072c592008-05-12 21:20:43 +02003556}
3557
Steven Rostedt647bcd02011-05-03 14:39:21 -04003558static int
3559ftrace_enabled_open(struct inode *inode, struct file *file)
3560{
3561 struct ftrace_iterator *iter;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003562
Jiri Olsa50e18b92012-04-25 10:23:39 +02003563 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003564 if (!iter)
3565 return -ENOMEM;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003566
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003567 iter->pg = ftrace_pages_start;
3568 iter->flags = FTRACE_ITER_ENABLED;
3569 iter->ops = &global_ops;
3570
3571 return 0;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003572}
3573
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003574/**
3575 * ftrace_regex_open - initialize function tracer filter files
3576 * @ops: The ftrace_ops that hold the hash filters
3577 * @flag: The type of filter to process
3578 * @inode: The inode, usually passed in to your open routine
3579 * @file: The file, usually passed in to your open routine
3580 *
3581 * ftrace_regex_open() initializes the filter files for the
3582 * @ops. Depending on @flag it may process the filter hash or
3583 * the notrace hash of @ops. With this called from the open
3584 * routine, you can use ftrace_filter_write() for the write
3585 * routine if @flag has FTRACE_ITER_FILTER set, or
3586 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05003587 * tracing_lseek() should be used as the lseek routine, and
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003588 * release must call ftrace_regex_release().
3589 */
3590int
Steven Rostedtf45948e2011-05-02 12:29:25 -04003591ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003592 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003593{
3594 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003595 struct ftrace_hash *hash;
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003596 struct list_head *mod_head;
3597 struct trace_array *tr = ops->private;
Steven Rostedt5072c592008-05-12 21:20:43 +02003598 int ret = 0;
3599
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003600 ftrace_ops_init(ops);
3601
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003602 if (unlikely(ftrace_disabled))
3603 return -ENODEV;
3604
Steven Rostedt5072c592008-05-12 21:20:43 +02003605 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3606 if (!iter)
3607 return -ENOMEM;
3608
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003609 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
3610 kfree(iter);
3611 return -ENOMEM;
3612 }
3613
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003614 iter->ops = ops;
3615 iter->flags = flag;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003616 iter->tr = tr;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003617
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003618 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003619
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003620 if (flag & FTRACE_ITER_NOTRACE) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003621 hash = ops->func_hash->notrace_hash;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003622 mod_head = tr ? &tr->mod_notrace : NULL;
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003623 } else {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003624 hash = ops->func_hash->filter_hash;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003625 mod_head = tr ? &tr->mod_trace : NULL;
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003626 }
Steven Rostedtf45948e2011-05-02 12:29:25 -04003627
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003628 iter->mod_list = mod_head;
3629
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003630 if (file->f_mode & FMODE_WRITE) {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003631 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
3632
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003633 if (file->f_flags & O_TRUNC) {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003634 iter->hash = alloc_ftrace_hash(size_bits);
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003635 clear_ftrace_mod_list(mod_head);
3636 } else {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003637 iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash);
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003638 }
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003639
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003640 if (!iter->hash) {
3641 trace_parser_put(&iter->parser);
3642 kfree(iter);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003643 ret = -ENOMEM;
3644 goto out_unlock;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003645 }
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04003646 } else
3647 iter->hash = hash;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003648
Steven Rostedt5072c592008-05-12 21:20:43 +02003649 if (file->f_mode & FMODE_READ) {
3650 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02003651
3652 ret = seq_open(file, &show_ftrace_seq_ops);
3653 if (!ret) {
3654 struct seq_file *m = file->private_data;
3655 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08003656 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003657 /* Failed */
3658 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08003659 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003660 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08003661 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003662 } else
3663 file->private_data = iter;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003664
3665 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003666 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003667
3668 return ret;
3669}
3670
Steven Rostedt41c52c02008-05-22 11:46:33 -04003671static int
3672ftrace_filter_open(struct inode *inode, struct file *file)
3673{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003674 struct ftrace_ops *ops = inode->i_private;
3675
3676 return ftrace_regex_open(ops,
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003677 FTRACE_ITER_FILTER | FTRACE_ITER_DO_PROBES,
Steven Rostedt69a30832011-12-19 15:21:16 -05003678 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003679}
3680
3681static int
3682ftrace_notrace_open(struct inode *inode, struct file *file)
3683{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003684 struct ftrace_ops *ops = inode->i_private;
3685
3686 return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003687 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003688}
3689
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003690/* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */
3691struct ftrace_glob {
3692 char *search;
3693 unsigned len;
3694 int type;
3695};
3696
Thiago Jung Bauermann7132e2d2016-04-25 18:56:14 -03003697/*
3698 * If symbols in an architecture don't correspond exactly to the user-visible
3699 * name of what they represent, it is possible to define this function to
3700 * perform the necessary adjustments.
3701*/
3702char * __weak arch_ftrace_match_adjust(char *str, const char *search)
3703{
3704 return str;
3705}
3706
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003707static int ftrace_match(char *str, struct ftrace_glob *g)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003708{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003709 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08003710 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003711
Thiago Jung Bauermann7132e2d2016-04-25 18:56:14 -03003712 str = arch_ftrace_match_adjust(str, g->search);
3713
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003714 switch (g->type) {
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003715 case MATCH_FULL:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003716 if (strcmp(str, g->search) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003717 matched = 1;
3718 break;
3719 case MATCH_FRONT_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003720 if (strncmp(str, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003721 matched = 1;
3722 break;
3723 case MATCH_MIDDLE_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003724 if (strstr(str, g->search))
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003725 matched = 1;
3726 break;
3727 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08003728 slen = strlen(str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003729 if (slen >= g->len &&
3730 memcmp(str + slen - g->len, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003731 matched = 1;
3732 break;
Masami Hiramatsu60f1d5e2016-10-05 20:58:15 +09003733 case MATCH_GLOB:
3734 if (glob_match(g->search, str))
3735 matched = 1;
3736 break;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003737 }
3738
3739 return matched;
3740}
3741
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003742static int
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003743enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int clear_filter)
Steven Rostedt996e87b2011-04-26 16:11:03 -04003744{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003745 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003746 int ret = 0;
3747
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003748 entry = ftrace_lookup_ip(hash, rec->ip);
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003749 if (clear_filter) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003750 /* Do nothing if it doesn't exist */
3751 if (!entry)
3752 return 0;
3753
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003754 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003755 } else {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003756 /* Do nothing if it exists */
3757 if (entry)
3758 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003759
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003760 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003761 }
3762 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04003763}
3764
Steven Rostedt64e7c442009-02-13 17:08:48 -05003765static int
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003766ftrace_match_record(struct dyn_ftrace *rec, struct ftrace_glob *func_g,
3767 struct ftrace_glob *mod_g, int exclude_mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003768{
3769 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003770 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003771
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003772 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
3773
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003774 if (mod_g) {
3775 int mod_matches = (modname) ? ftrace_match(modname, mod_g) : 0;
3776
3777 /* blank module name to match all modules */
3778 if (!mod_g->len) {
3779 /* blank module globbing: modname xor exclude_mod */
Steven Rostedt (VMware)77c0edd2017-05-03 11:41:44 -04003780 if (!exclude_mod != !modname)
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003781 goto func_match;
3782 return 0;
3783 }
3784
Steven Rostedt (VMware)77c0edd2017-05-03 11:41:44 -04003785 /*
3786 * exclude_mod is set to trace everything but the given
3787 * module. If it is set and the module matches, then
3788 * return 0. If it is not set, and the module doesn't match
3789 * also return 0. Otherwise, check the function to see if
3790 * that matches.
3791 */
3792 if (!mod_matches == !exclude_mod)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003793 return 0;
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003794func_match:
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003795 /* blank search means to match all funcs in the mod */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003796 if (!func_g->len)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003797 return 1;
3798 }
3799
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003800 return ftrace_match(str, func_g);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003801}
3802
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003803static int
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003804match_records(struct ftrace_hash *hash, char *func, int len, char *mod)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003805{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003806 struct ftrace_page *pg;
3807 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003808 struct ftrace_glob func_g = { .type = MATCH_FULL };
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003809 struct ftrace_glob mod_g = { .type = MATCH_FULL };
3810 struct ftrace_glob *mod_match = (mod) ? &mod_g : NULL;
3811 int exclude_mod = 0;
Li Zefan311d16d2009-12-08 11:15:11 +08003812 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003813 int ret;
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003814 int clear_filter;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003815
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003816 if (func) {
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003817 func_g.type = filter_parse_regex(func, len, &func_g.search,
3818 &clear_filter);
3819 func_g.len = strlen(func_g.search);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003820 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003821
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003822 if (mod) {
3823 mod_g.type = filter_parse_regex(mod, strlen(mod),
3824 &mod_g.search, &exclude_mod);
3825 mod_g.len = strlen(mod_g.search);
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003826 }
3827
Steven Rostedt52baf112009-02-14 01:15:39 -05003828 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003829
3830 if (unlikely(ftrace_disabled))
3831 goto out_unlock;
3832
Steven Rostedt265c8312009-02-13 12:43:56 -05003833 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05003834
3835 if (rec->flags & FTRACE_FL_DISABLED)
3836 continue;
3837
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003838 if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) {
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003839 ret = enter_record(hash, rec, clear_filter);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003840 if (ret < 0) {
3841 found = ret;
3842 goto out_unlock;
3843 }
Li Zefan311d16d2009-12-08 11:15:11 +08003844 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05003845 }
3846 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003847 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05003848 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08003849
3850 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02003851}
3852
Steven Rostedt64e7c442009-02-13 17:08:48 -05003853static int
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003854ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003855{
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003856 return match_records(hash, buff, len, NULL);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003857}
3858
Steven Rostedt (VMware)e16b35d2017-04-04 14:46:56 -04003859static void ftrace_ops_update_code(struct ftrace_ops *ops,
3860 struct ftrace_ops_hash *old_hash)
3861{
3862 struct ftrace_ops *op;
3863
3864 if (!ftrace_enabled)
3865 return;
3866
3867 if (ops->flags & FTRACE_OPS_FL_ENABLED) {
3868 ftrace_run_modify_code(ops, FTRACE_UPDATE_CALLS, old_hash);
3869 return;
3870 }
3871
3872 /*
3873 * If this is the shared global_ops filter, then we need to
3874 * check if there is another ops that shares it, is enabled.
3875 * If so, we still need to run the modify code.
3876 */
3877 if (ops->func_hash != &global_ops.local_hash)
3878 return;
3879
3880 do_for_each_ftrace_op(op, ftrace_ops_list) {
3881 if (op->func_hash == &global_ops.local_hash &&
3882 op->flags & FTRACE_OPS_FL_ENABLED) {
3883 ftrace_run_modify_code(op, FTRACE_UPDATE_CALLS, old_hash);
3884 /* Only need to do this once */
3885 return;
3886 }
3887 } while_for_each_ftrace_op(op);
3888}
3889
3890static int ftrace_hash_move_and_update_ops(struct ftrace_ops *ops,
3891 struct ftrace_hash **orig_hash,
3892 struct ftrace_hash *hash,
3893 int enable)
3894{
3895 struct ftrace_ops_hash old_hash_ops;
3896 struct ftrace_hash *old_hash;
3897 int ret;
3898
3899 old_hash = *orig_hash;
3900 old_hash_ops.filter_hash = ops->func_hash->filter_hash;
3901 old_hash_ops.notrace_hash = ops->func_hash->notrace_hash;
3902 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
3903 if (!ret) {
3904 ftrace_ops_update_code(ops, &old_hash_ops);
3905 free_ftrace_hash_rcu(old_hash);
3906 }
3907 return ret;
3908}
Steven Rostedt64e7c442009-02-13 17:08:48 -05003909
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003910static bool module_exists(const char *module)
3911{
3912 /* All modules have the symbol __this_module */
3913 const char this_mod[] = "__this_module";
3914 const int modname_size = MAX_PARAM_PREFIX_LEN + sizeof(this_mod) + 1;
3915 char modname[modname_size + 1];
3916 unsigned long val;
3917 int n;
3918
3919 n = snprintf(modname, modname_size + 1, "%s:%s", module, this_mod);
3920
3921 if (n > modname_size)
3922 return false;
3923
3924 val = module_kallsyms_lookup_name(modname);
3925 return val != 0;
3926}
3927
3928static int cache_mod(struct trace_array *tr,
3929 const char *func, char *module, int enable)
3930{
3931 struct ftrace_mod_load *ftrace_mod, *n;
3932 struct list_head *head = enable ? &tr->mod_trace : &tr->mod_notrace;
3933 int ret;
3934
3935 mutex_lock(&ftrace_lock);
3936
3937 /* We do not cache inverse filters */
3938 if (func[0] == '!') {
3939 func++;
3940 ret = -EINVAL;
3941
3942 /* Look to remove this hash */
3943 list_for_each_entry_safe(ftrace_mod, n, head, list) {
3944 if (strcmp(ftrace_mod->module, module) != 0)
3945 continue;
3946
3947 /* no func matches all */
3948 if (!func || strcmp(func, "*") == 0 ||
3949 (ftrace_mod->func &&
3950 strcmp(ftrace_mod->func, func) == 0)) {
3951 ret = 0;
3952 free_ftrace_mod(ftrace_mod);
3953 continue;
3954 }
3955 }
3956 goto out;
3957 }
3958
3959 ret = -EINVAL;
3960 /* We only care about modules that have not been loaded yet */
3961 if (module_exists(module))
3962 goto out;
3963
3964 /* Save this string off, and execute it when the module is loaded */
3965 ret = ftrace_add_mod(tr, func, module, enable);
3966 out:
3967 mutex_unlock(&ftrace_lock);
3968
3969 return ret;
3970}
3971
Steven Rostedt (VMware)d7fbf8d2017-06-26 10:57:21 -04003972static int
3973ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
3974 int reset, int enable);
3975
3976static void process_mod_list(struct list_head *head, struct ftrace_ops *ops,
3977 char *mod, bool enable)
3978{
3979 struct ftrace_mod_load *ftrace_mod, *n;
3980 struct ftrace_hash **orig_hash, *new_hash;
3981 LIST_HEAD(process_mods);
3982 char *func;
3983 int ret;
3984
3985 mutex_lock(&ops->func_hash->regex_lock);
3986
3987 if (enable)
3988 orig_hash = &ops->func_hash->filter_hash;
3989 else
3990 orig_hash = &ops->func_hash->notrace_hash;
3991
3992 new_hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS,
3993 *orig_hash);
3994 if (!new_hash)
3995 return; /* Warn? */
3996
3997 mutex_lock(&ftrace_lock);
3998
3999 list_for_each_entry_safe(ftrace_mod, n, head, list) {
4000
4001 if (strcmp(ftrace_mod->module, mod) != 0)
4002 continue;
4003
4004 if (ftrace_mod->func)
4005 func = kstrdup(ftrace_mod->func, GFP_KERNEL);
4006 else
4007 func = kstrdup("*", GFP_KERNEL);
4008
4009 if (!func) /* warn? */
4010 continue;
4011
4012 list_del(&ftrace_mod->list);
4013 list_add(&ftrace_mod->list, &process_mods);
4014
4015 /* Use the newly allocated func, as it may be "*" */
4016 kfree(ftrace_mod->func);
4017 ftrace_mod->func = func;
4018 }
4019
4020 mutex_unlock(&ftrace_lock);
4021
4022 list_for_each_entry_safe(ftrace_mod, n, &process_mods, list) {
4023
4024 func = ftrace_mod->func;
4025
4026 /* Grabs ftrace_lock, which is why we have this extra step */
4027 match_records(new_hash, func, strlen(func), mod);
4028 free_ftrace_mod(ftrace_mod);
4029 }
4030
4031 mutex_lock(&ftrace_lock);
4032
4033 ret = ftrace_hash_move_and_update_ops(ops, orig_hash,
4034 new_hash, enable);
4035 mutex_unlock(&ftrace_lock);
4036
4037 mutex_unlock(&ops->func_hash->regex_lock);
4038
4039 free_ftrace_hash(new_hash);
4040}
4041
4042static void process_cached_mods(const char *mod_name)
4043{
4044 struct trace_array *tr;
4045 char *mod;
4046
4047 mod = kstrdup(mod_name, GFP_KERNEL);
4048 if (!mod)
4049 return;
4050
4051 mutex_lock(&trace_types_lock);
4052 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
4053 if (!list_empty(&tr->mod_trace))
4054 process_mod_list(&tr->mod_trace, tr->ops, mod, true);
4055 if (!list_empty(&tr->mod_notrace))
4056 process_mod_list(&tr->mod_notrace, tr->ops, mod, false);
4057 }
4058 mutex_unlock(&trace_types_lock);
4059
4060 kfree(mod);
4061}
4062
Steven Rostedtf6180772009-02-14 00:40:25 -05004063/*
4064 * We register the module command as a template to show others how
4065 * to register the a command as well.
4066 */
4067
4068static int
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004069ftrace_mod_callback(struct trace_array *tr, struct ftrace_hash *hash,
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004070 char *func_orig, char *cmd, char *module, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05004071{
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004072 char *func;
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03004073 int ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05004074
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004075 /* match_records() modifies func, and we need the original */
4076 func = kstrdup(func_orig, GFP_KERNEL);
4077 if (!func)
4078 return -ENOMEM;
4079
Steven Rostedtf6180772009-02-14 00:40:25 -05004080 /*
4081 * cmd == 'mod' because we only registered this func
4082 * for the 'mod' ftrace_func_command.
4083 * But if you register one func with multiple commands,
4084 * you can tell which command was used by the cmd
4085 * parameter.
4086 */
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03004087 ret = match_records(hash, func, strlen(func), module);
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004088 kfree(func);
4089
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004090 if (!ret)
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004091 return cache_mod(tr, func_orig, module, enable);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004092 if (ret < 0)
4093 return ret;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004094 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05004095}
4096
4097static struct ftrace_func_command ftrace_mod_cmd = {
4098 .name = "mod",
4099 .func = ftrace_mod_callback,
4100};
4101
4102static int __init ftrace_mod_cmd_init(void)
4103{
4104 return register_ftrace_command(&ftrace_mod_cmd);
4105}
Steven Rostedt6f415672012-10-05 12:13:07 -04004106core_initcall(ftrace_mod_cmd_init);
Steven Rostedtf6180772009-02-14 00:40:25 -05004107
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004108static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04004109 struct ftrace_ops *op, struct pt_regs *pt_regs)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004110{
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004111 struct ftrace_probe_ops *probe_ops;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004112 struct ftrace_func_probe *probe;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004113
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004114 probe = container_of(op, struct ftrace_func_probe, ops);
4115 probe_ops = probe->probe_ops;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004116
4117 /*
4118 * Disable preemption for these calls to prevent a RCU grace
4119 * period. This syncs the hash iteration and freeing of items
4120 * on the hash. rcu_read_lock is too dangerous here.
4121 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04004122 preempt_disable_notrace();
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004123 probe_ops->func(ip, parent_ip, probe->tr, probe_ops, probe->data);
Steven Rostedt5168ae52010-06-03 09:36:50 -04004124 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05004125}
4126
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004127struct ftrace_func_map {
4128 struct ftrace_func_entry entry;
4129 void *data;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004130};
4131
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004132struct ftrace_func_mapper {
4133 struct ftrace_hash hash;
4134};
Steven Rostedt59df055f2009-02-14 15:29:06 -05004135
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004136/**
4137 * allocate_ftrace_func_mapper - allocate a new ftrace_func_mapper
4138 *
4139 * Returns a ftrace_func_mapper descriptor that can be used to map ips to data.
4140 */
4141struct ftrace_func_mapper *allocate_ftrace_func_mapper(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004142{
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004143 struct ftrace_hash *hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004144
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004145 /*
4146 * The mapper is simply a ftrace_hash, but since the entries
4147 * in the hash are not ftrace_func_entry type, we define it
4148 * as a separate structure.
4149 */
4150 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4151 return (struct ftrace_func_mapper *)hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004152}
4153
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004154/**
4155 * ftrace_func_mapper_find_ip - Find some data mapped to an ip
4156 * @mapper: The mapper that has the ip maps
4157 * @ip: the instruction pointer to find the data for
4158 *
4159 * Returns the data mapped to @ip if found otherwise NULL. The return
4160 * is actually the address of the mapper data pointer. The address is
4161 * returned for use cases where the data is no bigger than a long, and
4162 * the user can use the data pointer as its data instead of having to
4163 * allocate more memory for the reference.
4164 */
4165void **ftrace_func_mapper_find_ip(struct ftrace_func_mapper *mapper,
4166 unsigned long ip)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004167{
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004168 struct ftrace_func_entry *entry;
4169 struct ftrace_func_map *map;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004170
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004171 entry = ftrace_lookup_ip(&mapper->hash, ip);
4172 if (!entry)
4173 return NULL;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004174
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004175 map = (struct ftrace_func_map *)entry;
4176 return &map->data;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004177}
4178
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004179/**
4180 * ftrace_func_mapper_add_ip - Map some data to an ip
4181 * @mapper: The mapper that has the ip maps
4182 * @ip: The instruction pointer address to map @data to
4183 * @data: The data to map to @ip
4184 *
4185 * Returns 0 on succes otherwise an error.
4186 */
4187int ftrace_func_mapper_add_ip(struct ftrace_func_mapper *mapper,
4188 unsigned long ip, void *data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004189{
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004190 struct ftrace_func_entry *entry;
4191 struct ftrace_func_map *map;
4192
4193 entry = ftrace_lookup_ip(&mapper->hash, ip);
4194 if (entry)
4195 return -EBUSY;
4196
4197 map = kmalloc(sizeof(*map), GFP_KERNEL);
4198 if (!map)
4199 return -ENOMEM;
4200
4201 map->entry.ip = ip;
4202 map->data = data;
4203
4204 __add_hash_entry(&mapper->hash, &map->entry);
4205
4206 return 0;
4207}
4208
4209/**
4210 * ftrace_func_mapper_remove_ip - Remove an ip from the mapping
4211 * @mapper: The mapper that has the ip maps
4212 * @ip: The instruction pointer address to remove the data from
4213 *
4214 * Returns the data if it is found, otherwise NULL.
4215 * Note, if the data pointer is used as the data itself, (see
4216 * ftrace_func_mapper_find_ip(), then the return value may be meaningless,
4217 * if the data pointer was set to zero.
4218 */
4219void *ftrace_func_mapper_remove_ip(struct ftrace_func_mapper *mapper,
4220 unsigned long ip)
4221{
4222 struct ftrace_func_entry *entry;
4223 struct ftrace_func_map *map;
4224 void *data;
4225
4226 entry = ftrace_lookup_ip(&mapper->hash, ip);
4227 if (!entry)
4228 return NULL;
4229
4230 map = (struct ftrace_func_map *)entry;
4231 data = map->data;
4232
4233 remove_hash_entry(&mapper->hash, entry);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004234 kfree(entry);
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004235
4236 return data;
4237}
4238
4239/**
4240 * free_ftrace_func_mapper - free a mapping of ips and data
4241 * @mapper: The mapper that has the ip maps
4242 * @free_func: A function to be called on each data item.
4243 *
4244 * This is used to free the function mapper. The @free_func is optional
4245 * and can be used if the data needs to be freed as well.
4246 */
4247void free_ftrace_func_mapper(struct ftrace_func_mapper *mapper,
4248 ftrace_mapper_func free_func)
4249{
4250 struct ftrace_func_entry *entry;
4251 struct ftrace_func_map *map;
4252 struct hlist_head *hhd;
4253 int size = 1 << mapper->hash.size_bits;
4254 int i;
4255
4256 if (free_func && mapper->hash.count) {
4257 for (i = 0; i < size; i++) {
4258 hhd = &mapper->hash.buckets[i];
4259 hlist_for_each_entry(entry, hhd, hlist) {
4260 map = (struct ftrace_func_map *)entry;
4261 free_func(map);
4262 }
4263 }
4264 }
4265 free_ftrace_hash(&mapper->hash);
4266}
4267
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004268static void release_probe(struct ftrace_func_probe *probe)
4269{
4270 struct ftrace_probe_ops *probe_ops;
4271
4272 mutex_lock(&ftrace_lock);
4273
4274 WARN_ON(probe->ref <= 0);
4275
4276 /* Subtract the ref that was used to protect this instance */
4277 probe->ref--;
4278
4279 if (!probe->ref) {
4280 probe_ops = probe->probe_ops;
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004281 /*
4282 * Sending zero as ip tells probe_ops to free
4283 * the probe->data itself
4284 */
4285 if (probe_ops->free)
4286 probe_ops->free(probe_ops, probe->tr, 0, probe->data);
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004287 list_del(&probe->list);
4288 kfree(probe);
4289 }
4290 mutex_unlock(&ftrace_lock);
4291}
4292
4293static void acquire_probe_locked(struct ftrace_func_probe *probe)
4294{
4295 /*
4296 * Add one ref to keep it from being freed when releasing the
4297 * ftrace_lock mutex.
4298 */
4299 probe->ref++;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004300}
4301
Steven Rostedt59df055f2009-02-14 15:29:06 -05004302int
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004303register_ftrace_function_probe(char *glob, struct trace_array *tr,
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004304 struct ftrace_probe_ops *probe_ops,
4305 void *data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004306{
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004307 struct ftrace_func_entry *entry;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004308 struct ftrace_func_probe *probe;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004309 struct ftrace_hash **orig_hash;
4310 struct ftrace_hash *old_hash;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004311 struct ftrace_hash *hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004312 int count = 0;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004313 int size;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004314 int ret;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004315 int i;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004316
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004317 if (WARN_ON(!tr))
Steven Rostedt59df055f2009-02-14 15:29:06 -05004318 return -EINVAL;
4319
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004320 /* We do not support '!' for function probes */
4321 if (WARN_ON(glob[0] == '!'))
Steven Rostedt59df055f2009-02-14 15:29:06 -05004322 return -EINVAL;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004323
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004324
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004325 mutex_lock(&ftrace_lock);
4326 /* Check if the probe_ops is already registered */
4327 list_for_each_entry(probe, &tr->func_probes, list) {
4328 if (probe->probe_ops == probe_ops)
4329 break;
4330 }
4331 if (&probe->list == &tr->func_probes) {
4332 probe = kzalloc(sizeof(*probe), GFP_KERNEL);
4333 if (!probe) {
4334 mutex_unlock(&ftrace_lock);
4335 return -ENOMEM;
4336 }
4337 probe->probe_ops = probe_ops;
4338 probe->ops.func = function_trace_probe_call;
4339 probe->tr = tr;
4340 ftrace_ops_init(&probe->ops);
4341 list_add(&probe->list, &tr->func_probes);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004342 }
4343
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004344 acquire_probe_locked(probe);
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004345
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004346 mutex_unlock(&ftrace_lock);
4347
4348 mutex_lock(&probe->ops.func_hash->regex_lock);
4349
4350 orig_hash = &probe->ops.func_hash->filter_hash;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004351 old_hash = *orig_hash;
4352 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
4353
4354 ret = ftrace_match_records(hash, glob, strlen(glob));
4355
4356 /* Nothing found? */
4357 if (!ret)
4358 ret = -EINVAL;
4359
4360 if (ret < 0)
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04004361 goto out;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004362
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004363 size = 1 << hash->size_bits;
4364 for (i = 0; i < size; i++) {
4365 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
4366 if (ftrace_lookup_ip(old_hash, entry->ip))
4367 continue;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004368 /*
4369 * The caller might want to do something special
4370 * for each function we find. We call the callback
4371 * to give the caller an opportunity to do so.
4372 */
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004373 if (probe_ops->init) {
4374 ret = probe_ops->init(probe_ops, tr,
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004375 entry->ip, data,
4376 &probe->data);
4377 if (ret < 0) {
4378 if (probe_ops->free && count)
4379 probe_ops->free(probe_ops, tr,
4380 0, probe->data);
4381 probe->data = NULL;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004382 goto out;
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004383 }
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004384 }
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004385 count++;
4386 }
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004387 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04004388
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04004389 mutex_lock(&ftrace_lock);
4390
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004391 if (!count) {
4392 /* Nothing was added? */
4393 ret = -EINVAL;
4394 goto out_unlock;
4395 }
Steven Rostedt59df055f2009-02-14 15:29:06 -05004396
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004397 ret = ftrace_hash_move_and_update_ops(&probe->ops, orig_hash,
4398 hash, 1);
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004399 if (ret < 0)
Steven Rostedt (VMware)8d707252017-04-05 13:36:18 -04004400 goto err_unlock;
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05004401
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004402 /* One ref for each new function traced */
4403 probe->ref += count;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004404
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004405 if (!(probe->ops.flags & FTRACE_OPS_FL_ENABLED))
4406 ret = ftrace_startup(&probe->ops, 0);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004407
Steven Rostedt59df055f2009-02-14 15:29:06 -05004408 out_unlock:
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04004409 mutex_unlock(&ftrace_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004410
4411 if (!ret)
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004412 ret = count;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04004413 out:
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004414 mutex_unlock(&probe->ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004415 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004416
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004417 release_probe(probe);
4418
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004419 return ret;
Steven Rostedt (VMware)8d707252017-04-05 13:36:18 -04004420
4421 err_unlock:
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004422 if (!probe_ops->free || !count)
Steven Rostedt (VMware)8d707252017-04-05 13:36:18 -04004423 goto out_unlock;
4424
4425 /* Failed to do the move, need to call the free functions */
4426 for (i = 0; i < size; i++) {
4427 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
4428 if (ftrace_lookup_ip(old_hash, entry->ip))
4429 continue;
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004430 probe_ops->free(probe_ops, tr, entry->ip, probe->data);
Steven Rostedt (VMware)8d707252017-04-05 13:36:18 -04004431 }
4432 }
4433 goto out_unlock;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004434}
4435
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004436int
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004437unregister_ftrace_function_probe_func(char *glob, struct trace_array *tr,
4438 struct ftrace_probe_ops *probe_ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004439{
Steven Rostedt (VMware)82cc4fc2017-04-14 17:45:45 -04004440 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004441 struct ftrace_func_entry *entry;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004442 struct ftrace_func_probe *probe;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004443 struct ftrace_glob func_g;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004444 struct ftrace_hash **orig_hash;
4445 struct ftrace_hash *old_hash;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004446 struct ftrace_hash *hash = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -08004447 struct hlist_node *tmp;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004448 struct hlist_head hhd;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004449 char str[KSYM_SYMBOL_LEN];
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004450 int count = 0;
4451 int i, ret = -ENODEV;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004452 int size;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004453
Naveen N. Raocbab5672017-05-16 23:21:25 +05304454 if (!glob || !strlen(glob) || !strcmp(glob, "*"))
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004455 func_g.search = NULL;
Naveen N. Raocbab5672017-05-16 23:21:25 +05304456 else {
Steven Rostedt59df055f2009-02-14 15:29:06 -05004457 int not;
4458
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004459 func_g.type = filter_parse_regex(glob, strlen(glob),
4460 &func_g.search, &not);
4461 func_g.len = strlen(func_g.search);
4462 func_g.search = glob;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004463
Steven Rostedtb6887d72009-02-17 12:32:04 -05004464 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05004465 if (WARN_ON(not))
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004466 return -EINVAL;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004467 }
4468
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004469 mutex_lock(&ftrace_lock);
4470 /* Check if the probe_ops is already registered */
4471 list_for_each_entry(probe, &tr->func_probes, list) {
4472 if (probe->probe_ops == probe_ops)
4473 break;
4474 }
4475 if (&probe->list == &tr->func_probes)
4476 goto err_unlock_ftrace;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004477
4478 ret = -EINVAL;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004479 if (!(probe->ops.flags & FTRACE_OPS_FL_INITIALIZED))
4480 goto err_unlock_ftrace;
4481
4482 acquire_probe_locked(probe);
4483
4484 mutex_unlock(&ftrace_lock);
4485
4486 mutex_lock(&probe->ops.func_hash->regex_lock);
4487
4488 orig_hash = &probe->ops.func_hash->filter_hash;
4489 old_hash = *orig_hash;
4490
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004491 if (ftrace_hash_empty(old_hash))
4492 goto out_unlock;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004493
Steven Rostedt (VMware)82cc4fc2017-04-14 17:45:45 -04004494 old_hash_ops.filter_hash = old_hash;
4495 /* Probes only have filters */
4496 old_hash_ops.notrace_hash = NULL;
4497
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004498 ret = -ENOMEM;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004499 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004500 if (!hash)
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004501 goto out_unlock;
4502
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004503 INIT_HLIST_HEAD(&hhd);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004504
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004505 size = 1 << hash->size_bits;
4506 for (i = 0; i < size; i++) {
4507 hlist_for_each_entry_safe(entry, tmp, &hash->buckets[i], hlist) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05004508
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004509 if (func_g.search) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05004510 kallsyms_lookup(entry->ip, NULL, NULL,
4511 NULL, str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004512 if (!ftrace_match(str, &func_g))
Steven Rostedt59df055f2009-02-14 15:29:06 -05004513 continue;
4514 }
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004515 count++;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004516 remove_hash_entry(hash, entry);
4517 hlist_add_head(&entry->hlist, &hhd);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004518 }
4519 }
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004520
4521 /* Nothing found? */
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004522 if (!count) {
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004523 ret = -EINVAL;
4524 goto out_unlock;
4525 }
4526
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004527 mutex_lock(&ftrace_lock);
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004528
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004529 WARN_ON(probe->ref < count);
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004530
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004531 probe->ref -= count;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004532
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004533 if (ftrace_hash_empty(hash))
4534 ftrace_shutdown(&probe->ops, 0);
4535
4536 ret = ftrace_hash_move_and_update_ops(&probe->ops, orig_hash,
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004537 hash, 1);
Steven Rostedt (VMware)82cc4fc2017-04-14 17:45:45 -04004538
4539 /* still need to update the function call sites */
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004540 if (ftrace_enabled && !ftrace_hash_empty(hash))
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004541 ftrace_run_modify_code(&probe->ops, FTRACE_UPDATE_CALLS,
Steven Rostedt (VMware)82cc4fc2017-04-14 17:45:45 -04004542 &old_hash_ops);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004543 synchronize_sched();
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004544
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004545 hlist_for_each_entry_safe(entry, tmp, &hhd, hlist) {
4546 hlist_del(&entry->hlist);
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004547 if (probe_ops->free)
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004548 probe_ops->free(probe_ops, tr, entry->ip, probe->data);
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004549 kfree(entry);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004550 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004551 mutex_unlock(&ftrace_lock);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004552
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004553 out_unlock:
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004554 mutex_unlock(&probe->ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004555 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004556
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004557 release_probe(probe);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004558
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004559 return ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004560
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004561 err_unlock_ftrace:
4562 mutex_unlock(&ftrace_lock);
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004563 return ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004564}
4565
Naveen N. Raoa0e63692017-05-16 23:21:26 +05304566void clear_ftrace_function_probes(struct trace_array *tr)
4567{
4568 struct ftrace_func_probe *probe, *n;
4569
4570 list_for_each_entry_safe(probe, n, &tr->func_probes, list)
4571 unregister_ftrace_function_probe_func(NULL, tr, probe->probe_ops);
4572}
4573
Steven Rostedtf6180772009-02-14 00:40:25 -05004574static LIST_HEAD(ftrace_commands);
4575static DEFINE_MUTEX(ftrace_cmd_mutex);
4576
Tom Zanussi38de93a2013-10-24 08:34:18 -05004577/*
4578 * Currently we only register ftrace commands from __init, so mark this
4579 * __init too.
4580 */
4581__init int register_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05004582{
4583 struct ftrace_func_command *p;
4584 int ret = 0;
4585
4586 mutex_lock(&ftrace_cmd_mutex);
4587 list_for_each_entry(p, &ftrace_commands, list) {
4588 if (strcmp(cmd->name, p->name) == 0) {
4589 ret = -EBUSY;
4590 goto out_unlock;
4591 }
4592 }
4593 list_add(&cmd->list, &ftrace_commands);
4594 out_unlock:
4595 mutex_unlock(&ftrace_cmd_mutex);
4596
4597 return ret;
4598}
4599
Tom Zanussi38de93a2013-10-24 08:34:18 -05004600/*
4601 * Currently we only unregister ftrace commands from __init, so mark
4602 * this __init too.
4603 */
4604__init int unregister_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05004605{
4606 struct ftrace_func_command *p, *n;
4607 int ret = -ENODEV;
4608
4609 mutex_lock(&ftrace_cmd_mutex);
4610 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
4611 if (strcmp(cmd->name, p->name) == 0) {
4612 ret = 0;
4613 list_del_init(&p->list);
4614 goto out_unlock;
4615 }
4616 }
4617 out_unlock:
4618 mutex_unlock(&ftrace_cmd_mutex);
4619
4620 return ret;
4621}
4622
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004623static int ftrace_process_regex(struct ftrace_iterator *iter,
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004624 char *buff, int len, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05004625{
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004626 struct ftrace_hash *hash = iter->hash;
Steven Rostedt (VMware)d2afd57a2017-04-20 11:31:35 -04004627 struct trace_array *tr = iter->ops->private;
Steven Rostedtf6180772009-02-14 00:40:25 -05004628 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05004629 struct ftrace_func_command *p;
GuoWen Li0aff1c02011-06-01 19:18:47 +08004630 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004631
4632 func = strsep(&next, ":");
4633
4634 if (!next) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004635 ret = ftrace_match_records(hash, func, len);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004636 if (!ret)
4637 ret = -EINVAL;
4638 if (ret < 0)
4639 return ret;
4640 return 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004641 }
4642
Steven Rostedtf6180772009-02-14 00:40:25 -05004643 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05004644
4645 command = strsep(&next, ":");
4646
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004647 if (WARN_ON_ONCE(!tr))
4648 return -EINVAL;
4649
Steven Rostedtf6180772009-02-14 00:40:25 -05004650 mutex_lock(&ftrace_cmd_mutex);
4651 list_for_each_entry(p, &ftrace_commands, list) {
4652 if (strcmp(p->name, command) == 0) {
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004653 ret = p->func(tr, hash, func, command, next, enable);
Steven Rostedtf6180772009-02-14 00:40:25 -05004654 goto out_unlock;
4655 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05004656 }
Steven Rostedtf6180772009-02-14 00:40:25 -05004657 out_unlock:
4658 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05004659
Steven Rostedtf6180772009-02-14 00:40:25 -05004660 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004661}
4662
Ingo Molnare309b412008-05-12 21:20:51 +02004663static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004664ftrace_regex_write(struct file *file, const char __user *ubuf,
4665 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02004666{
4667 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004668 struct trace_parser *parser;
4669 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02004670
Li Zefan4ba79782009-09-22 13:52:20 +08004671 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02004672 return 0;
4673
Steven Rostedt5072c592008-05-12 21:20:43 +02004674 if (file->f_mode & FMODE_READ) {
4675 struct seq_file *m = file->private_data;
4676 iter = m->private;
4677 } else
4678 iter = file->private_data;
4679
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004680 if (unlikely(ftrace_disabled))
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004681 return -ENODEV;
4682
4683 /* iter->hash is a local copy, so we don't need regex_lock */
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004684
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004685 parser = &iter->parser;
4686 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02004687
Li Zefan4ba79782009-09-22 13:52:20 +08004688 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004689 !trace_parser_cont(parser)) {
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004690 ret = ftrace_process_regex(iter, parser->buffer,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004691 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08004692 trace_parser_clear(parser);
Steven Rostedt (Red Hat)7c088b52013-05-09 11:35:12 -04004693 if (ret < 0)
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004694 goto out;
Steven Rostedt5072c592008-05-12 21:20:43 +02004695 }
4696
Steven Rostedt5072c592008-05-12 21:20:43 +02004697 ret = read;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004698 out:
Steven Rostedt5072c592008-05-12 21:20:43 +02004699 return ret;
4700}
4701
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004702ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004703ftrace_filter_write(struct file *file, const char __user *ubuf,
4704 size_t cnt, loff_t *ppos)
4705{
4706 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
4707}
4708
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004709ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004710ftrace_notrace_write(struct file *file, const char __user *ubuf,
4711 size_t cnt, loff_t *ppos)
4712{
4713 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
4714}
4715
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004716static int
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004717ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
4718{
4719 struct ftrace_func_entry *entry;
4720
4721 if (!ftrace_location(ip))
4722 return -EINVAL;
4723
4724 if (remove) {
4725 entry = ftrace_lookup_ip(hash, ip);
4726 if (!entry)
4727 return -ENOENT;
4728 free_hash_entry(hash, entry);
4729 return 0;
4730 }
4731
4732 return add_hash_entry(hash, ip);
4733}
4734
4735static int
4736ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
4737 unsigned long ip, int remove, int reset, int enable)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004738{
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004739 struct ftrace_hash **orig_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004740 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004741 int ret;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004742
Steven Rostedt41c52c02008-05-22 11:46:33 -04004743 if (unlikely(ftrace_disabled))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004744 return -ENODEV;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004745
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004746 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004747
Steven Rostedtf45948e2011-05-02 12:29:25 -04004748 if (enable)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004749 orig_hash = &ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004750 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004751 orig_hash = &ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004752
Wang Nanb972cc52014-07-15 08:40:20 +08004753 if (reset)
4754 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4755 else
4756 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
4757
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004758 if (!hash) {
4759 ret = -ENOMEM;
4760 goto out_regex_unlock;
4761 }
Steven Rostedtf45948e2011-05-02 12:29:25 -04004762
Jiri Olsaac483c42012-01-02 10:04:14 +01004763 if (buf && !ftrace_match_records(hash, buf, len)) {
4764 ret = -EINVAL;
4765 goto out_regex_unlock;
4766 }
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004767 if (ip) {
4768 ret = ftrace_match_addr(hash, ip, remove);
4769 if (ret < 0)
4770 goto out_regex_unlock;
4771 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004772
4773 mutex_lock(&ftrace_lock);
Steven Rostedt (VMware)e16b35d2017-04-04 14:46:56 -04004774 ret = ftrace_hash_move_and_update_ops(ops, orig_hash, hash, enable);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004775 mutex_unlock(&ftrace_lock);
4776
Jiri Olsaac483c42012-01-02 10:04:14 +01004777 out_regex_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004778 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004779
4780 free_ftrace_hash(hash);
4781 return ret;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004782}
4783
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004784static int
4785ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove,
4786 int reset, int enable)
4787{
4788 return ftrace_set_hash(ops, 0, 0, ip, remove, reset, enable);
4789}
4790
4791/**
4792 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
4793 * @ops - the ops to set the filter with
4794 * @ip - the address to add to or remove from the filter.
4795 * @remove - non zero to remove the ip from the filter
4796 * @reset - non zero to reset all filters before applying this filter.
4797 *
4798 * Filters denote which functions should be enabled when tracing is enabled
4799 * If @ip is NULL, it failes to update filter.
4800 */
4801int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
4802 int remove, int reset)
4803{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004804 ftrace_ops_init(ops);
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004805 return ftrace_set_addr(ops, ip, remove, reset, 1);
4806}
4807EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
4808
Joel Fernandesd032ae82016-11-15 12:31:20 -08004809/**
4810 * ftrace_ops_set_global_filter - setup ops to use global filters
4811 * @ops - the ops which will use the global filters
4812 *
4813 * ftrace users who need global function trace filtering should call this.
4814 * It can set the global filter only if ops were not initialized before.
4815 */
4816void ftrace_ops_set_global_filter(struct ftrace_ops *ops)
4817{
4818 if (ops->flags & FTRACE_OPS_FL_INITIALIZED)
4819 return;
4820
4821 ftrace_ops_init(ops);
4822 ops->func_hash = &global_ops.local_hash;
4823}
4824EXPORT_SYMBOL_GPL(ftrace_ops_set_global_filter);
4825
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004826static int
4827ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
4828 int reset, int enable)
4829{
4830 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
4831}
4832
Steven Rostedt77a2b372008-05-12 21:20:45 +02004833/**
4834 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004835 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02004836 * @buf - the string that holds the function filter text.
4837 * @len - the length of the string.
4838 * @reset - non zero to reset all filters before applying this filter.
4839 *
4840 * Filters denote which functions should be enabled when tracing is enabled.
4841 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4842 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004843int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004844 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02004845{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004846 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004847 return ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04004848}
Steven Rostedt936e0742011-05-05 22:54:01 -04004849EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004850
Steven Rostedt41c52c02008-05-22 11:46:33 -04004851/**
4852 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004853 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04004854 * @buf - the string that holds the function notrace text.
4855 * @len - the length of the string.
4856 * @reset - non zero to reset all filters before applying this filter.
4857 *
4858 * Notrace Filters denote which functions should not be enabled when tracing
4859 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4860 * for tracing.
4861 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004862int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004863 int len, int reset)
4864{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004865 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004866 return ftrace_set_regex(ops, buf, len, reset, 0);
Steven Rostedt936e0742011-05-05 22:54:01 -04004867}
4868EXPORT_SYMBOL_GPL(ftrace_set_notrace);
4869/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004870 * ftrace_set_global_filter - set a function to filter on with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004871 * @buf - the string that holds the function filter text.
4872 * @len - the length of the string.
4873 * @reset - non zero to reset all filters before applying this filter.
4874 *
4875 * Filters denote which functions should be enabled when tracing is enabled.
4876 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4877 */
4878void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
4879{
4880 ftrace_set_regex(&global_ops, buf, len, reset, 1);
4881}
4882EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
4883
4884/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004885 * ftrace_set_global_notrace - set a function to not trace with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004886 * @buf - the string that holds the function notrace text.
4887 * @len - the length of the string.
4888 * @reset - non zero to reset all filters before applying this filter.
4889 *
4890 * Notrace Filters denote which functions should not be enabled when tracing
4891 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4892 * for tracing.
4893 */
4894void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004895{
Steven Rostedtf45948e2011-05-02 12:29:25 -04004896 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004897}
Steven Rostedt936e0742011-05-05 22:54:01 -04004898EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004899
Steven Rostedt2af15d62009-05-28 13:37:24 -04004900/*
4901 * command line interface to allow users to set filters on boot up.
4902 */
4903#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
4904static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4905static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
4906
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004907/* Used by function selftest to not test if filter is set */
4908bool ftrace_filter_param __initdata;
4909
Steven Rostedt2af15d62009-05-28 13:37:24 -04004910static int __init set_ftrace_notrace(char *str)
4911{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004912 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004913 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004914 return 1;
4915}
4916__setup("ftrace_notrace=", set_ftrace_notrace);
4917
4918static int __init set_ftrace_filter(char *str)
4919{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004920 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004921 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004922 return 1;
4923}
4924__setup("ftrace_filter=", set_ftrace_filter);
4925
Stefan Assmann369bc182009-10-12 22:17:21 +02004926#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08004927static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004928static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004929static int ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer);
Steven Rostedt801c29f2010-03-05 20:02:19 -05004930
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04004931static unsigned long save_global_trampoline;
4932static unsigned long save_global_flags;
4933
Stefan Assmann369bc182009-10-12 22:17:21 +02004934static int __init set_graph_function(char *str)
4935{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02004936 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02004937 return 1;
4938}
4939__setup("ftrace_graph_filter=", set_graph_function);
4940
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004941static int __init set_graph_notrace_function(char *str)
4942{
4943 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
4944 return 1;
4945}
4946__setup("ftrace_graph_notrace=", set_graph_notrace_function);
4947
Todd Brandt65a50c652017-03-02 16:12:15 -08004948static int __init set_graph_max_depth_function(char *str)
4949{
4950 if (!str)
4951 return 0;
4952 fgraph_max_depth = simple_strtoul(str, NULL, 0);
4953 return 1;
4954}
4955__setup("ftrace_graph_max_depth=", set_graph_max_depth_function);
4956
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004957static void __init set_ftrace_early_graph(char *buf, int enable)
Stefan Assmann369bc182009-10-12 22:17:21 +02004958{
4959 int ret;
4960 char *func;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004961 struct ftrace_hash *hash;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004962
Steven Rostedt (VMware)92ad18e2017-03-02 12:53:26 -05004963 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4964 if (WARN_ON(!hash))
4965 return;
Stefan Assmann369bc182009-10-12 22:17:21 +02004966
4967 while (buf) {
4968 func = strsep(&buf, ",");
4969 /* we allow only one expression at a time */
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004970 ret = ftrace_graph_set_hash(hash, func);
Stefan Assmann369bc182009-10-12 22:17:21 +02004971 if (ret)
4972 printk(KERN_DEBUG "ftrace: function %s not "
4973 "traceable\n", func);
4974 }
Steven Rostedt (VMware)92ad18e2017-03-02 12:53:26 -05004975
4976 if (enable)
4977 ftrace_graph_hash = hash;
4978 else
4979 ftrace_graph_notrace_hash = hash;
Stefan Assmann369bc182009-10-12 22:17:21 +02004980}
4981#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4982
Steven Rostedt2a85a372011-12-19 21:57:44 -05004983void __init
4984ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04004985{
4986 char *func;
4987
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004988 ftrace_ops_init(ops);
4989
Steven Rostedt2af15d62009-05-28 13:37:24 -04004990 while (buf) {
4991 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04004992 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004993 }
4994}
4995
4996static void __init set_ftrace_early_filters(void)
4997{
4998 if (ftrace_filter_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004999 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04005000 if (ftrace_notrace_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05005001 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02005002#ifdef CONFIG_FUNCTION_GRAPH_TRACER
5003 if (ftrace_graph_buf[0])
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09005004 set_ftrace_early_graph(ftrace_graph_buf, 1);
5005 if (ftrace_graph_notrace_buf[0])
5006 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02005007#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04005008}
5009
Steven Rostedtfc13cb02011-12-19 14:41:25 -05005010int ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02005011{
5012 struct seq_file *m = (struct seq_file *)file->private_data;
5013 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04005014 struct ftrace_hash **orig_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005015 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04005016 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04005017 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02005018
Steven Rostedt5072c592008-05-12 21:20:43 +02005019 if (file->f_mode & FMODE_READ) {
5020 iter = m->private;
Steven Rostedt5072c592008-05-12 21:20:43 +02005021 seq_release(inode, file);
5022 } else
5023 iter = file->private_data;
5024
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005025 parser = &iter->parser;
5026 if (trace_parser_loaded(parser)) {
5027 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04005028 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02005029 }
5030
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005031 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005032
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04005033 mutex_lock(&iter->ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09005034
Steven Rostedt058e2972011-04-29 22:35:33 -04005035 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04005036 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
5037
5038 if (filter_hash)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04005039 orig_hash = &iter->ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04005040 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04005041 orig_hash = &iter->ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04005042
Steven Rostedt058e2972011-04-29 22:35:33 -04005043 mutex_lock(&ftrace_lock);
Steven Rostedt (VMware)e16b35d2017-04-04 14:46:56 -04005044 ret = ftrace_hash_move_and_update_ops(iter->ops, orig_hash,
5045 iter->hash, filter_hash);
Steven Rostedt058e2972011-04-29 22:35:33 -04005046 mutex_unlock(&ftrace_lock);
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04005047 } else {
5048 /* For read only, the hash is the ops hash */
5049 iter->hash = NULL;
Steven Rostedt058e2972011-04-29 22:35:33 -04005050 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09005051
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04005052 mutex_unlock(&iter->ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04005053 free_ftrace_hash(iter->hash);
5054 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04005055
Steven Rostedt5072c592008-05-12 21:20:43 +02005056 return 0;
5057}
5058
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005059static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02005060 .open = ftrace_avail_open,
5061 .read = seq_read,
5062 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08005063 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02005064};
5065
Steven Rostedt647bcd02011-05-03 14:39:21 -04005066static const struct file_operations ftrace_enabled_fops = {
5067 .open = ftrace_enabled_open,
5068 .read = seq_read,
5069 .llseek = seq_lseek,
5070 .release = seq_release_private,
5071};
5072
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005073static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02005074 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08005075 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02005076 .write = ftrace_filter_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005077 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04005078 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02005079};
5080
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005081static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04005082 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08005083 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04005084 .write = ftrace_notrace_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005085 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04005086 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04005087};
5088
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005089#ifdef CONFIG_FUNCTION_GRAPH_TRACER
5090
5091static DEFINE_MUTEX(graph_lock);
5092
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005093struct ftrace_hash *ftrace_graph_hash = EMPTY_HASH;
5094struct ftrace_hash *ftrace_graph_notrace_hash = EMPTY_HASH;
5095
5096enum graph_filter_type {
5097 GRAPH_FILTER_NOTRACE = 0,
5098 GRAPH_FILTER_FUNCTION,
5099};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005100
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05005101#define FTRACE_GRAPH_EMPTY ((void *)1)
5102
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005103struct ftrace_graph_data {
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005104 struct ftrace_hash *hash;
5105 struct ftrace_func_entry *entry;
5106 int idx; /* for hash table iteration */
5107 enum graph_filter_type type;
5108 struct ftrace_hash *new_hash;
5109 const struct seq_operations *seq_ops;
5110 struct trace_parser parser;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005111};
5112
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005113static void *
Li Zefan85951842009-06-24 09:54:00 +08005114__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005115{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005116 struct ftrace_graph_data *fgd = m->private;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005117 struct ftrace_func_entry *entry = fgd->entry;
5118 struct hlist_head *head;
5119 int i, idx = fgd->idx;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005120
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005121 if (*pos >= fgd->hash->count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005122 return NULL;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005123
5124 if (entry) {
5125 hlist_for_each_entry_continue(entry, hlist) {
5126 fgd->entry = entry;
5127 return entry;
5128 }
5129
5130 idx++;
5131 }
5132
5133 for (i = idx; i < 1 << fgd->hash->size_bits; i++) {
5134 head = &fgd->hash->buckets[i];
5135 hlist_for_each_entry(entry, head, hlist) {
5136 fgd->entry = entry;
5137 fgd->idx = i;
5138 return entry;
5139 }
5140 }
5141 return NULL;
Li Zefan85951842009-06-24 09:54:00 +08005142}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005143
Li Zefan85951842009-06-24 09:54:00 +08005144static void *
5145g_next(struct seq_file *m, void *v, loff_t *pos)
5146{
5147 (*pos)++;
5148 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005149}
5150
5151static void *g_start(struct seq_file *m, loff_t *pos)
5152{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005153 struct ftrace_graph_data *fgd = m->private;
5154
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005155 mutex_lock(&graph_lock);
5156
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05005157 if (fgd->type == GRAPH_FILTER_FUNCTION)
5158 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
5159 lockdep_is_held(&graph_lock));
5160 else
5161 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
5162 lockdep_is_held(&graph_lock));
5163
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005164 /* Nothing, tell g_show to print all functions are enabled */
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005165 if (ftrace_hash_empty(fgd->hash) && !*pos)
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05005166 return FTRACE_GRAPH_EMPTY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005167
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005168 fgd->idx = 0;
5169 fgd->entry = NULL;
Li Zefan85951842009-06-24 09:54:00 +08005170 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005171}
5172
5173static void g_stop(struct seq_file *m, void *p)
5174{
5175 mutex_unlock(&graph_lock);
5176}
5177
5178static int g_show(struct seq_file *m, void *v)
5179{
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005180 struct ftrace_func_entry *entry = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005181
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005182 if (!entry)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005183 return 0;
5184
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05005185 if (entry == FTRACE_GRAPH_EMPTY) {
Namhyung Kim280d1422014-06-13 01:23:51 +09005186 struct ftrace_graph_data *fgd = m->private;
5187
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005188 if (fgd->type == GRAPH_FILTER_FUNCTION)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005189 seq_puts(m, "#### all functions enabled ####\n");
Namhyung Kim280d1422014-06-13 01:23:51 +09005190 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005191 seq_puts(m, "#### no functions disabled ####\n");
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005192 return 0;
5193 }
5194
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005195 seq_printf(m, "%ps\n", (void *)entry->ip);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005196
5197 return 0;
5198}
5199
James Morris88e9d342009-09-22 16:43:43 -07005200static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005201 .start = g_start,
5202 .next = g_next,
5203 .stop = g_stop,
5204 .show = g_show,
5205};
5206
5207static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005208__ftrace_graph_open(struct inode *inode, struct file *file,
5209 struct ftrace_graph_data *fgd)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005210{
5211 int ret = 0;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005212 struct ftrace_hash *new_hash = NULL;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005213
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005214 if (file->f_mode & FMODE_WRITE) {
5215 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
5216
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005217 if (trace_parser_get_init(&fgd->parser, FTRACE_BUFF_MAX))
5218 return -ENOMEM;
5219
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005220 if (file->f_flags & O_TRUNC)
5221 new_hash = alloc_ftrace_hash(size_bits);
5222 else
5223 new_hash = alloc_and_copy_ftrace_hash(size_bits,
5224 fgd->hash);
5225 if (!new_hash) {
5226 ret = -ENOMEM;
5227 goto out;
5228 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005229 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005230
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005231 if (file->f_mode & FMODE_READ) {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005232 ret = seq_open(file, &ftrace_graph_seq_ops);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005233 if (!ret) {
5234 struct seq_file *m = file->private_data;
5235 m->private = fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005236 } else {
5237 /* Failed */
5238 free_ftrace_hash(new_hash);
5239 new_hash = NULL;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005240 }
5241 } else
5242 file->private_data = fgd;
Li Zefana4ec5e02009-09-18 14:06:28 +08005243
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005244out:
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005245 if (ret < 0 && file->f_mode & FMODE_WRITE)
5246 trace_parser_put(&fgd->parser);
5247
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005248 fgd->new_hash = new_hash;
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05005249
5250 /*
5251 * All uses of fgd->hash must be taken with the graph_lock
5252 * held. The graph_lock is going to be released, so force
5253 * fgd->hash to be reinitialized when it is taken again.
5254 */
5255 fgd->hash = NULL;
5256
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005257 return ret;
5258}
5259
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005260static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005261ftrace_graph_open(struct inode *inode, struct file *file)
5262{
5263 struct ftrace_graph_data *fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005264 int ret;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005265
5266 if (unlikely(ftrace_disabled))
5267 return -ENODEV;
5268
5269 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
5270 if (fgd == NULL)
5271 return -ENOMEM;
5272
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005273 mutex_lock(&graph_lock);
5274
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05005275 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
5276 lockdep_is_held(&graph_lock));
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005277 fgd->type = GRAPH_FILTER_FUNCTION;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005278 fgd->seq_ops = &ftrace_graph_seq_ops;
5279
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005280 ret = __ftrace_graph_open(inode, file, fgd);
5281 if (ret < 0)
5282 kfree(fgd);
5283
5284 mutex_unlock(&graph_lock);
5285 return ret;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005286}
5287
5288static int
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005289ftrace_graph_notrace_open(struct inode *inode, struct file *file)
5290{
5291 struct ftrace_graph_data *fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005292 int ret;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005293
5294 if (unlikely(ftrace_disabled))
5295 return -ENODEV;
5296
5297 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
5298 if (fgd == NULL)
5299 return -ENOMEM;
5300
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005301 mutex_lock(&graph_lock);
5302
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05005303 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
5304 lockdep_is_held(&graph_lock));
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005305 fgd->type = GRAPH_FILTER_NOTRACE;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005306 fgd->seq_ops = &ftrace_graph_seq_ops;
5307
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005308 ret = __ftrace_graph_open(inode, file, fgd);
5309 if (ret < 0)
5310 kfree(fgd);
5311
5312 mutex_unlock(&graph_lock);
5313 return ret;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005314}
5315
5316static int
Li Zefan87827112009-07-23 11:29:11 +08005317ftrace_graph_release(struct inode *inode, struct file *file)
5318{
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005319 struct ftrace_graph_data *fgd;
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005320 struct ftrace_hash *old_hash, *new_hash;
5321 struct trace_parser *parser;
5322 int ret = 0;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005323
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005324 if (file->f_mode & FMODE_READ) {
5325 struct seq_file *m = file->private_data;
5326
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005327 fgd = m->private;
Li Zefan87827112009-07-23 11:29:11 +08005328 seq_release(inode, file);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005329 } else {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005330 fgd = file->private_data;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005331 }
5332
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005333
5334 if (file->f_mode & FMODE_WRITE) {
5335
5336 parser = &fgd->parser;
5337
5338 if (trace_parser_loaded((parser))) {
5339 parser->buffer[parser->idx] = 0;
5340 ret = ftrace_graph_set_hash(fgd->new_hash,
5341 parser->buffer);
5342 }
5343
5344 trace_parser_put(parser);
5345
5346 new_hash = __ftrace_hash_move(fgd->new_hash);
5347 if (!new_hash) {
5348 ret = -ENOMEM;
5349 goto out;
5350 }
5351
5352 mutex_lock(&graph_lock);
5353
5354 if (fgd->type == GRAPH_FILTER_FUNCTION) {
5355 old_hash = rcu_dereference_protected(ftrace_graph_hash,
5356 lockdep_is_held(&graph_lock));
5357 rcu_assign_pointer(ftrace_graph_hash, new_hash);
5358 } else {
5359 old_hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
5360 lockdep_is_held(&graph_lock));
5361 rcu_assign_pointer(ftrace_graph_notrace_hash, new_hash);
5362 }
5363
5364 mutex_unlock(&graph_lock);
5365
5366 /* Wait till all users are no longer using the old hash */
5367 synchronize_sched();
5368
5369 free_ftrace_hash(old_hash);
5370 }
5371
5372 out:
Luis Henriquesf9797c22017-05-25 16:20:38 +01005373 free_ftrace_hash(fgd->new_hash);
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005374 kfree(fgd);
5375
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005376 return ret;
Li Zefan87827112009-07-23 11:29:11 +08005377}
5378
5379static int
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005380ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005381{
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005382 struct ftrace_glob func_g;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005383 struct dyn_ftrace *rec;
5384 struct ftrace_page *pg;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005385 struct ftrace_func_entry *entry;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005386 int fail = 1;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005387 int not;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005388
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005389 /* decode regex */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005390 func_g.type = filter_parse_regex(buffer, strlen(buffer),
5391 &func_g.search, &not);
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005392
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005393 func_g.len = strlen(func_g.search);
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005394
Steven Rostedt52baf112009-02-14 01:15:39 -05005395 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04005396
5397 if (unlikely(ftrace_disabled)) {
5398 mutex_unlock(&ftrace_lock);
5399 return -ENODEV;
5400 }
5401
Steven Rostedt265c8312009-02-13 12:43:56 -05005402 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005403
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05005404 if (rec->flags & FTRACE_FL_DISABLED)
5405 continue;
5406
Dmitry Safonov0b507e12015-09-29 19:46:15 +03005407 if (ftrace_match_record(rec, &func_g, NULL, 0)) {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005408 entry = ftrace_lookup_ip(hash, rec->ip);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005409
5410 if (!not) {
5411 fail = 0;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005412
5413 if (entry)
5414 continue;
5415 if (add_hash_entry(hash, rec->ip) < 0)
5416 goto out;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005417 } else {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005418 if (entry) {
5419 free_hash_entry(hash, entry);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005420 fail = 0;
5421 }
5422 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005423 }
Steven Rostedt265c8312009-02-13 12:43:56 -05005424 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005425out:
Steven Rostedt52baf112009-02-14 01:15:39 -05005426 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005427
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005428 if (fail)
5429 return -EINVAL;
5430
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005431 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005432}
5433
5434static ssize_t
5435ftrace_graph_write(struct file *file, const char __user *ubuf,
5436 size_t cnt, loff_t *ppos)
5437{
Namhyung Kim6a101082013-10-14 17:24:25 +09005438 ssize_t read, ret = 0;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005439 struct ftrace_graph_data *fgd = file->private_data;
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005440 struct trace_parser *parser;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005441
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005442 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005443 return 0;
5444
Steven Rostedt (VMware)ae98d272017-02-02 16:59:06 -05005445 /* Read mode uses seq functions */
5446 if (file->f_mode & FMODE_READ) {
5447 struct seq_file *m = file->private_data;
5448 fgd = m->private;
5449 }
5450
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005451 parser = &fgd->parser;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005452
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005453 read = trace_get_user(parser, ubuf, cnt, ppos);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005454
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005455 if (read >= 0 && trace_parser_loaded(parser) &&
5456 !trace_parser_cont(parser)) {
Namhyung Kim6a101082013-10-14 17:24:25 +09005457
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005458 ret = ftrace_graph_set_hash(fgd->new_hash,
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005459 parser->buffer);
5460 trace_parser_clear(parser);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005461 }
5462
Namhyung Kim6a101082013-10-14 17:24:25 +09005463 if (!ret)
5464 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08005465
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005466 return ret;
5467}
5468
5469static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08005470 .open = ftrace_graph_open,
5471 .read = seq_read,
5472 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005473 .llseek = tracing_lseek,
Li Zefan87827112009-07-23 11:29:11 +08005474 .release = ftrace_graph_release,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005475};
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005476
5477static const struct file_operations ftrace_graph_notrace_fops = {
5478 .open = ftrace_graph_notrace_open,
5479 .read = seq_read,
5480 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005481 .llseek = tracing_lseek,
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005482 .release = ftrace_graph_release,
5483};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005484#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
5485
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05005486void ftrace_create_filter_files(struct ftrace_ops *ops,
5487 struct dentry *parent)
5488{
5489
5490 trace_create_file("set_ftrace_filter", 0644, parent,
5491 ops, &ftrace_filter_fops);
5492
5493 trace_create_file("set_ftrace_notrace", 0644, parent,
5494 ops, &ftrace_notrace_fops);
5495}
5496
5497/*
5498 * The name "destroy_filter_files" is really a misnomer. Although
5499 * in the future, it may actualy delete the files, but this is
5500 * really intended to make sure the ops passed in are disabled
5501 * and that when this function returns, the caller is free to
5502 * free the ops.
5503 *
5504 * The "destroy" name is only to match the "create" name that this
5505 * should be paired with.
5506 */
5507void ftrace_destroy_filter_files(struct ftrace_ops *ops)
5508{
5509 mutex_lock(&ftrace_lock);
5510 if (ops->flags & FTRACE_OPS_FL_ENABLED)
5511 ftrace_shutdown(ops, 0);
5512 ops->flags |= FTRACE_OPS_FL_DELETED;
5513 mutex_unlock(&ftrace_lock);
5514}
5515
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005516static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02005517{
Steven Rostedt5072c592008-05-12 21:20:43 +02005518
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005519 trace_create_file("available_filter_functions", 0444,
5520 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02005521
Steven Rostedt647bcd02011-05-03 14:39:21 -04005522 trace_create_file("enabled_functions", 0444,
5523 d_tracer, NULL, &ftrace_enabled_fops);
5524
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05005525 ftrace_create_filter_files(&global_ops, d_tracer);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04005526
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005527#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005528 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005529 NULL,
5530 &ftrace_graph_fops);
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005531 trace_create_file("set_graph_notrace", 0444, d_tracer,
5532 NULL,
5533 &ftrace_graph_notrace_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005534#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
5535
Steven Rostedt5072c592008-05-12 21:20:43 +02005536 return 0;
5537}
5538
Steven Rostedt9fd49322012-04-24 22:32:06 -04005539static int ftrace_cmp_ips(const void *a, const void *b)
Steven Rostedt68950612011-12-16 17:06:45 -05005540{
Steven Rostedt9fd49322012-04-24 22:32:06 -04005541 const unsigned long *ipa = a;
5542 const unsigned long *ipb = b;
Steven Rostedt68950612011-12-16 17:06:45 -05005543
Steven Rostedt9fd49322012-04-24 22:32:06 -04005544 if (*ipa > *ipb)
5545 return 1;
5546 if (*ipa < *ipb)
5547 return -1;
5548 return 0;
5549}
5550
Jiri Olsa5cb084b2009-10-13 16:33:53 -04005551static int ftrace_process_locs(struct module *mod,
Steven Rostedt31e88902008-11-14 16:21:19 -08005552 unsigned long *start,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005553 unsigned long *end)
5554{
Steven Rostedt706c81f2012-04-24 23:45:26 -04005555 struct ftrace_page *start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05005556 struct ftrace_page *pg;
Steven Rostedt706c81f2012-04-24 23:45:26 -04005557 struct dyn_ftrace *rec;
Steven Rostedta7900872011-12-16 16:23:44 -05005558 unsigned long count;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005559 unsigned long *p;
5560 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04005561 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedta7900872011-12-16 16:23:44 -05005562 int ret = -ENOMEM;
5563
5564 count = end - start;
5565
5566 if (!count)
5567 return 0;
5568
Steven Rostedt9fd49322012-04-24 22:32:06 -04005569 sort(start, count, sizeof(*start),
Rasmus Villemoes6db02902015-09-09 23:27:02 +02005570 ftrace_cmp_ips, NULL);
Steven Rostedt9fd49322012-04-24 22:32:06 -04005571
Steven Rostedt706c81f2012-04-24 23:45:26 -04005572 start_pg = ftrace_allocate_pages(count);
5573 if (!start_pg)
Steven Rostedta7900872011-12-16 16:23:44 -05005574 return -ENOMEM;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005575
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005576 mutex_lock(&ftrace_lock);
Steven Rostedta7900872011-12-16 16:23:44 -05005577
Steven Rostedt320823092011-12-16 14:42:37 -05005578 /*
5579 * Core and each module needs their own pages, as
5580 * modules will free them when they are removed.
5581 * Force a new page to be allocated for modules.
5582 */
Steven Rostedta7900872011-12-16 16:23:44 -05005583 if (!mod) {
5584 WARN_ON(ftrace_pages || ftrace_pages_start);
5585 /* First initialization */
Steven Rostedt706c81f2012-04-24 23:45:26 -04005586 ftrace_pages = ftrace_pages_start = start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05005587 } else {
Steven Rostedt320823092011-12-16 14:42:37 -05005588 if (!ftrace_pages)
Steven Rostedta7900872011-12-16 16:23:44 -05005589 goto out;
Steven Rostedt320823092011-12-16 14:42:37 -05005590
Steven Rostedta7900872011-12-16 16:23:44 -05005591 if (WARN_ON(ftrace_pages->next)) {
5592 /* Hmm, we have free pages? */
5593 while (ftrace_pages->next)
5594 ftrace_pages = ftrace_pages->next;
Steven Rostedt320823092011-12-16 14:42:37 -05005595 }
Steven Rostedta7900872011-12-16 16:23:44 -05005596
Steven Rostedt706c81f2012-04-24 23:45:26 -04005597 ftrace_pages->next = start_pg;
Steven Rostedt320823092011-12-16 14:42:37 -05005598 }
5599
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005600 p = start;
Steven Rostedt706c81f2012-04-24 23:45:26 -04005601 pg = start_pg;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005602 while (p < end) {
5603 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08005604 /*
5605 * Some architecture linkers will pad between
5606 * the different mcount_loc sections of different
5607 * object files to satisfy alignments.
5608 * Skip any NULL pointers.
5609 */
5610 if (!addr)
5611 continue;
Steven Rostedt706c81f2012-04-24 23:45:26 -04005612
5613 if (pg->index == pg->size) {
5614 /* We should have allocated enough */
5615 if (WARN_ON(!pg->next))
5616 break;
5617 pg = pg->next;
5618 }
5619
5620 rec = &pg->records[pg->index++];
5621 rec->ip = addr;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005622 }
5623
Steven Rostedt706c81f2012-04-24 23:45:26 -04005624 /* We should have used all pages */
5625 WARN_ON(pg->next);
5626
5627 /* Assign the last page to ftrace_pages */
5628 ftrace_pages = pg;
5629
Steven Rostedta4f18ed2011-06-07 09:26:46 -04005630 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04005631 * We only need to disable interrupts on start up
5632 * because we are modifying code that an interrupt
5633 * may execute, and the modification is not atomic.
5634 * But for modules, nothing runs the code we modify
5635 * until we are finished with it, and there's no
5636 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04005637 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04005638 if (!mod)
5639 local_irq_save(flags);
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01005640 ftrace_update_code(mod, start_pg);
Steven Rostedt4376cac2011-06-24 23:28:13 -04005641 if (!mod)
5642 local_irq_restore(flags);
Steven Rostedta7900872011-12-16 16:23:44 -05005643 ret = 0;
5644 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005645 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005646
Steven Rostedta7900872011-12-16 16:23:44 -05005647 return ret;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005648}
5649
Steven Rostedt93eb6772009-04-15 13:24:06 -04005650#ifdef CONFIG_MODULES
Steven Rostedt320823092011-12-16 14:42:37 -05005651
5652#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
5653
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005654static int referenced_filters(struct dyn_ftrace *rec)
5655{
5656 struct ftrace_ops *ops;
5657 int cnt = 0;
5658
5659 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
5660 if (ops_references_rec(ops, rec))
5661 cnt++;
5662 }
5663
5664 return cnt;
5665}
5666
jolsa@redhat.come7247a12009-10-07 19:00:35 +02005667void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005668{
5669 struct dyn_ftrace *rec;
Steven Rostedt320823092011-12-16 14:42:37 -05005670 struct ftrace_page **last_pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04005671 struct ftrace_page *pg;
Steven Rostedta7900872011-12-16 16:23:44 -05005672 int order;
Steven Rostedt93eb6772009-04-15 13:24:06 -04005673
Steven Rostedt93eb6772009-04-15 13:24:06 -04005674 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04005675
5676 if (ftrace_disabled)
5677 goto out_unlock;
5678
Steven Rostedt320823092011-12-16 14:42:37 -05005679 /*
5680 * Each module has its own ftrace_pages, remove
5681 * them from the list.
5682 */
5683 last_pg = &ftrace_pages_start;
5684 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
5685 rec = &pg->records[0];
jolsa@redhat.come7247a12009-10-07 19:00:35 +02005686 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04005687 /*
Steven Rostedt320823092011-12-16 14:42:37 -05005688 * As core pages are first, the first
5689 * page should never be a module page.
Steven Rostedt93eb6772009-04-15 13:24:06 -04005690 */
Steven Rostedt320823092011-12-16 14:42:37 -05005691 if (WARN_ON(pg == ftrace_pages_start))
5692 goto out_unlock;
5693
5694 /* Check if we are deleting the last page */
5695 if (pg == ftrace_pages)
5696 ftrace_pages = next_to_ftrace_page(last_pg);
5697
5698 *last_pg = pg->next;
Steven Rostedta7900872011-12-16 16:23:44 -05005699 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
5700 free_pages((unsigned long)pg->records, order);
5701 kfree(pg);
Steven Rostedt320823092011-12-16 14:42:37 -05005702 } else
5703 last_pg = &pg->next;
5704 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04005705 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04005706 mutex_unlock(&ftrace_lock);
5707}
5708
Jessica Yu7dcd1822016-02-16 17:32:33 -05005709void ftrace_module_enable(struct module *mod)
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005710{
5711 struct dyn_ftrace *rec;
5712 struct ftrace_page *pg;
5713
5714 mutex_lock(&ftrace_lock);
5715
5716 if (ftrace_disabled)
5717 goto out_unlock;
5718
5719 /*
5720 * If the tracing is enabled, go ahead and enable the record.
5721 *
5722 * The reason not to enable the record immediatelly is the
5723 * inherent check of ftrace_make_nop/ftrace_make_call for
5724 * correct previous instructions. Making first the NOP
5725 * conversion puts the module to the correct state, thus
5726 * passing the ftrace_make_call check.
5727 *
5728 * We also delay this to after the module code already set the
5729 * text to read-only, as we now need to set it back to read-write
5730 * so that we can modify the text.
5731 */
5732 if (ftrace_start_up)
5733 ftrace_arch_code_modify_prepare();
5734
5735 do_for_each_ftrace_rec(pg, rec) {
5736 int cnt;
5737 /*
5738 * do_for_each_ftrace_rec() is a double loop.
5739 * module text shares the pg. If a record is
5740 * not part of this module, then skip this pg,
5741 * which the "break" will do.
5742 */
5743 if (!within_module_core(rec->ip, mod))
5744 break;
5745
5746 cnt = 0;
5747
5748 /*
5749 * When adding a module, we need to check if tracers are
5750 * currently enabled and if they are, and can trace this record,
5751 * we need to enable the module functions as well as update the
5752 * reference counts for those function records.
5753 */
5754 if (ftrace_start_up)
5755 cnt += referenced_filters(rec);
5756
5757 /* This clears FTRACE_FL_DISABLED */
5758 rec->flags = cnt;
5759
5760 if (ftrace_start_up && cnt) {
5761 int failed = __ftrace_replace_code(rec, 1);
5762 if (failed) {
5763 ftrace_bug(failed, rec);
5764 goto out_loop;
5765 }
5766 }
5767
5768 } while_for_each_ftrace_rec();
5769
5770 out_loop:
5771 if (ftrace_start_up)
5772 ftrace_arch_code_modify_post_process();
5773
5774 out_unlock:
5775 mutex_unlock(&ftrace_lock);
Steven Rostedt (VMware)d7fbf8d2017-06-26 10:57:21 -04005776
5777 process_cached_mods(mod->name);
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005778}
5779
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04005780void ftrace_module_init(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005781{
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005782 if (ftrace_disabled || !mod->num_ftrace_callsites)
Abel Vesab6b71f62015-12-02 15:39:57 +01005783 return;
5784
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005785 ftrace_process_locs(mod, mod->ftrace_callsites,
5786 mod->ftrace_callsites + mod->num_ftrace_callsites);
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05005787}
Steven Rostedt93eb6772009-04-15 13:24:06 -04005788#endif /* CONFIG_MODULES */
5789
Steven Rostedt (VMware)b80f0f62017-04-03 12:57:35 -04005790void __init ftrace_free_init_mem(void)
Steven Rostedt (VMware)42c269c2017-03-03 16:15:39 -05005791{
Steven Rostedt (VMware)b80f0f62017-04-03 12:57:35 -04005792 unsigned long start = (unsigned long)(&__init_begin);
5793 unsigned long end = (unsigned long)(&__init_end);
Steven Rostedt (VMware)42c269c2017-03-03 16:15:39 -05005794 struct ftrace_page **last_pg = &ftrace_pages_start;
5795 struct ftrace_page *pg;
5796 struct dyn_ftrace *rec;
5797 struct dyn_ftrace key;
5798 int order;
5799
5800 key.ip = start;
5801 key.flags = end; /* overload flags, as it is unsigned long */
5802
5803 mutex_lock(&ftrace_lock);
5804
5805 for (pg = ftrace_pages_start; pg; last_pg = &pg->next, pg = *last_pg) {
5806 if (end < pg->records[0].ip ||
5807 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
5808 continue;
5809 again:
5810 rec = bsearch(&key, pg->records, pg->index,
5811 sizeof(struct dyn_ftrace),
5812 ftrace_cmp_recs);
5813 if (!rec)
5814 continue;
5815 pg->index--;
5816 if (!pg->index) {
5817 *last_pg = pg->next;
5818 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
5819 free_pages((unsigned long)pg->records, order);
5820 kfree(pg);
5821 pg = container_of(last_pg, struct ftrace_page, next);
5822 if (!(*last_pg))
5823 ftrace_pages = pg;
5824 continue;
5825 }
5826 memmove(rec, rec + 1,
5827 (pg->index - (rec - pg->records)) * sizeof(*rec));
5828 /* More than one function may be in this block */
5829 goto again;
5830 }
5831 mutex_unlock(&ftrace_lock);
5832}
5833
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005834void __init ftrace_init(void)
5835{
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01005836 extern unsigned long __start_mcount_loc[];
5837 extern unsigned long __stop_mcount_loc[];
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005838 unsigned long count, flags;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005839 int ret;
5840
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005841 local_irq_save(flags);
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005842 ret = ftrace_dyn_arch_init();
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005843 local_irq_restore(flags);
Jiri Slabyaf64a7c2014-02-24 19:59:58 +01005844 if (ret)
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005845 goto failed;
5846
5847 count = __stop_mcount_loc - __start_mcount_loc;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005848 if (!count) {
5849 pr_info("ftrace: No functions to be traced?\n");
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005850 goto failed;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005851 }
5852
5853 pr_info("ftrace: allocating %ld entries in %ld pages\n",
5854 count, count / ENTRIES_PER_PAGE + 1);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005855
5856 last_ftrace_enabled = ftrace_enabled = 1;
5857
Jiri Olsa5cb084b2009-10-13 16:33:53 -04005858 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08005859 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005860 __stop_mcount_loc);
5861
Steven Rostedt2af15d62009-05-28 13:37:24 -04005862 set_ftrace_early_filters();
5863
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005864 return;
5865 failed:
5866 ftrace_disabled = 1;
5867}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005868
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005869/* Do nothing if arch does not support this */
5870void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
5871{
5872}
5873
5874static void ftrace_update_trampoline(struct ftrace_ops *ops)
5875{
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005876 arch_ftrace_update_trampoline(ops);
5877}
5878
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04005879void ftrace_init_trace_array(struct trace_array *tr)
5880{
5881 INIT_LIST_HEAD(&tr->func_probes);
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04005882 INIT_LIST_HEAD(&tr->mod_trace);
5883 INIT_LIST_HEAD(&tr->mod_notrace);
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04005884}
Steven Rostedt3d083392008-05-12 21:20:42 +02005885#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005886
Steven Rostedt2b499382011-05-03 22:49:52 -04005887static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04005888 .func = ftrace_stub,
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005889 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5890 FTRACE_OPS_FL_INITIALIZED |
5891 FTRACE_OPS_FL_PID,
Steven Rostedtbd69c302011-05-03 21:55:54 -04005892};
5893
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005894static int __init ftrace_nodyn_init(void)
5895{
5896 ftrace_enabled = 1;
5897 return 0;
5898}
Steven Rostedt6f415672012-10-05 12:13:07 -04005899core_initcall(ftrace_nodyn_init);
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005900
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005901static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005902static inline void ftrace_startup_enable(int command) { }
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005903static inline void ftrace_startup_all(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05005904/* Keep as macros so we do not need to define the commands */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005905# define ftrace_startup(ops, command) \
5906 ({ \
5907 int ___ret = __register_ftrace_function(ops); \
5908 if (!___ret) \
5909 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
5910 ___ret; \
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04005911 })
Steven Rostedt (Red Hat)1fcc1552014-02-19 15:12:18 -05005912# define ftrace_shutdown(ops, command) \
5913 ({ \
5914 int ___ret = __unregister_ftrace_function(ops); \
5915 if (!___ret) \
5916 (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \
5917 ___ret; \
5918 })
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005919
Ingo Molnarc7aafc52008-05-12 21:20:45 +02005920# define ftrace_startup_sysctl() do { } while (0)
5921# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04005922
5923static inline int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04005924ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005925{
5926 return 1;
5927}
5928
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005929static void ftrace_update_trampoline(struct ftrace_ops *ops)
5930{
5931}
5932
Steven Rostedt3d083392008-05-12 21:20:42 +02005933#endif /* CONFIG_DYNAMIC_FTRACE */
5934
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005935__init void ftrace_init_global_array_ops(struct trace_array *tr)
5936{
5937 tr->ops = &global_ops;
5938 tr->ops->private = tr;
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04005939 ftrace_init_trace_array(tr);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005940}
5941
5942void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
5943{
5944 /* If we filter on pids, update to use the pid function */
5945 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
5946 if (WARN_ON(tr->ops->func != ftrace_stub))
5947 printk("ftrace ops had %pS for function\n",
5948 tr->ops->func);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005949 }
5950 tr->ops->func = func;
5951 tr->ops->private = tr;
5952}
5953
5954void ftrace_reset_array_ops(struct trace_array *tr)
5955{
5956 tr->ops->func = ftrace_stub;
5957}
5958
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005959static inline void
5960__ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005961 struct ftrace_ops *ignored, struct pt_regs *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005962{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005963 struct ftrace_ops *op;
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005964 int bit;
Steven Rostedtb8489142011-05-04 09:27:52 -04005965
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005966 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5967 if (bit < 0)
5968 return;
Steven Rostedtc29f1222012-11-02 17:17:59 -04005969
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005970 /*
5971 * Some of the ops may be dynamically allocated,
5972 * they must be freed after a synchronize_sched().
5973 */
5974 preempt_disable_notrace();
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05005975
Steven Rostedt0a016402012-11-02 17:03:03 -04005976 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05005977 /*
5978 * Check the following for each ops before calling their func:
5979 * if RCU flag is set, then rcu_is_watching() must be true
5980 * if PER_CPU is set, then ftrace_function_local_disable()
5981 * must be false
5982 * Otherwise test if the ip matches the ops filter
5983 *
5984 * If any of the above fails then the op->func() is not executed.
5985 */
5986 if ((!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching()) &&
5987 (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5988 !ftrace_function_local_disabled(op)) &&
5989 ftrace_ops_test(op, ip, regs)) {
5990
Steven Rostedt (Red Hat)1d48d592014-06-25 11:54:03 -04005991 if (FTRACE_WARN_ON(!op->func)) {
5992 pr_warn("op=%p %pS\n", op, op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005993 goto out;
5994 }
Steven Rostedta1e2e312011-08-09 12:50:46 -04005995 op->func(ip, parent_ip, op, regs);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005996 }
Steven Rostedt0a016402012-11-02 17:03:03 -04005997 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005998out:
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005999 preempt_enable_notrace();
Steven Rostedtedc15ca2012-11-02 17:47:21 -04006000 trace_clear_recursion(bit);
Steven Rostedtb8489142011-05-04 09:27:52 -04006001}
6002
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006003/*
6004 * Some archs only support passing ip and parent_ip. Even though
6005 * the list function ignores the op parameter, we do not want any
6006 * C side effects, where a function is called without the caller
6007 * sending a third parameter.
Steven Rostedta1e2e312011-08-09 12:50:46 -04006008 * Archs are to support both the regs and ftrace_ops at the same time.
6009 * If they support ftrace_ops, it is assumed they support regs.
6010 * If call backs want to use regs, they must either check for regs
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +09006011 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
6012 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
Steven Rostedta1e2e312011-08-09 12:50:46 -04006013 * An architecture can pass partial regs with ftrace_ops and still
Li Binb8ec3302015-11-30 18:23:36 +08006014 * set the ARCH_SUPPORTS_FTRACE_OPS.
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006015 */
6016#if ARCH_SUPPORTS_FTRACE_OPS
6017static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04006018 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006019{
Steven Rostedta1e2e312011-08-09 12:50:46 -04006020 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006021}
6022#else
6023static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip)
6024{
Steven Rostedta1e2e312011-08-09 12:50:46 -04006025 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006026}
6027#endif
6028
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006029/*
6030 * If there's only one function registered but it does not support
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006031 * recursion, needs RCU protection and/or requires per cpu handling, then
6032 * this function will be called by the mcount trampoline.
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006033 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006034static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006035 struct ftrace_ops *op, struct pt_regs *regs)
6036{
6037 int bit;
6038
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006039 if ((op->flags & FTRACE_OPS_FL_RCU) && !rcu_is_watching())
6040 return;
6041
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006042 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
6043 if (bit < 0)
6044 return;
6045
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006046 preempt_disable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006047
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006048 if (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
6049 !ftrace_function_local_disabled(op)) {
6050 op->func(ip, parent_ip, op, regs);
6051 }
6052
6053 preempt_enable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006054 trace_clear_recursion(bit);
6055}
6056
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04006057/**
6058 * ftrace_ops_get_func - get the function a trampoline should call
6059 * @ops: the ops to get the function for
6060 *
6061 * Normally the mcount trampoline will call the ops->func, but there
6062 * are times that it should not. For example, if the ops does not
6063 * have its own recursion protection, then it should call the
Chunyu Hu3a150df2017-02-22 08:29:26 +08006064 * ftrace_ops_assist_func() instead.
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04006065 *
6066 * Returns the function that the trampoline should call for @ops.
6067 */
6068ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
6069{
6070 /*
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006071 * If the function does not handle recursion, needs to be RCU safe,
6072 * or does per cpu logic, then we need to call the assist handler.
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04006073 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006074 if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE) ||
6075 ops->flags & (FTRACE_OPS_FL_RCU | FTRACE_OPS_FL_PER_CPU))
6076 return ftrace_ops_assist_func;
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04006077
6078 return ops->func;
6079}
6080
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006081static void
6082ftrace_filter_pid_sched_switch_probe(void *data, bool preempt,
6083 struct task_struct *prev, struct task_struct *next)
Steven Rostedte32d8952008-12-04 00:26:41 -05006084{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006085 struct trace_array *tr = data;
6086 struct trace_pid_list *pid_list;
6087
6088 pid_list = rcu_dereference_sched(tr->function_pids);
6089
6090 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
6091 trace_ignore_this_task(pid_list, next));
6092}
6093
Namhyung Kim1e104862017-04-17 11:44:28 +09006094static void
6095ftrace_pid_follow_sched_process_fork(void *data,
6096 struct task_struct *self,
6097 struct task_struct *task)
6098{
6099 struct trace_pid_list *pid_list;
6100 struct trace_array *tr = data;
6101
6102 pid_list = rcu_dereference_sched(tr->function_pids);
6103 trace_filter_add_remove_task(pid_list, self, task);
6104}
6105
6106static void
6107ftrace_pid_follow_sched_process_exit(void *data, struct task_struct *task)
6108{
6109 struct trace_pid_list *pid_list;
6110 struct trace_array *tr = data;
6111
6112 pid_list = rcu_dereference_sched(tr->function_pids);
6113 trace_filter_add_remove_task(pid_list, NULL, task);
6114}
6115
6116void ftrace_pid_follow_fork(struct trace_array *tr, bool enable)
6117{
6118 if (enable) {
6119 register_trace_sched_process_fork(ftrace_pid_follow_sched_process_fork,
6120 tr);
6121 register_trace_sched_process_exit(ftrace_pid_follow_sched_process_exit,
6122 tr);
6123 } else {
6124 unregister_trace_sched_process_fork(ftrace_pid_follow_sched_process_fork,
6125 tr);
6126 unregister_trace_sched_process_exit(ftrace_pid_follow_sched_process_exit,
6127 tr);
6128 }
6129}
6130
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006131static void clear_ftrace_pids(struct trace_array *tr)
6132{
6133 struct trace_pid_list *pid_list;
Steven Rostedte32d8952008-12-04 00:26:41 -05006134 int cpu;
6135
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006136 pid_list = rcu_dereference_protected(tr->function_pids,
6137 lockdep_is_held(&ftrace_lock));
6138 if (!pid_list)
6139 return;
6140
6141 unregister_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
6142
6143 for_each_possible_cpu(cpu)
6144 per_cpu_ptr(tr->trace_buffer.data, cpu)->ftrace_ignore_pid = false;
6145
6146 rcu_assign_pointer(tr->function_pids, NULL);
6147
6148 /* Wait till all users are no longer using pid filtering */
6149 synchronize_sched();
6150
6151 trace_free_pid_list(pid_list);
Steven Rostedte32d8952008-12-04 00:26:41 -05006152}
6153
Namhyung Kimd879d0b2017-04-17 11:44:27 +09006154void ftrace_clear_pids(struct trace_array *tr)
6155{
6156 mutex_lock(&ftrace_lock);
6157
6158 clear_ftrace_pids(tr);
6159
6160 mutex_unlock(&ftrace_lock);
6161}
6162
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006163static void ftrace_pid_reset(struct trace_array *tr)
Steven Rostedte32d8952008-12-04 00:26:41 -05006164{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006165 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006166 clear_ftrace_pids(tr);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006167
6168 ftrace_update_pid_func();
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04006169 ftrace_startup_all(0);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006170
6171 mutex_unlock(&ftrace_lock);
6172}
6173
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006174/* Greater than any max PID */
6175#define FTRACE_NO_PIDS (void *)(PID_MAX_LIMIT + 1)
6176
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006177static void *fpid_start(struct seq_file *m, loff_t *pos)
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006178 __acquires(RCU)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006179{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006180 struct trace_pid_list *pid_list;
6181 struct trace_array *tr = m->private;
6182
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006183 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006184 rcu_read_lock_sched();
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006185
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006186 pid_list = rcu_dereference_sched(tr->function_pids);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006187
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006188 if (!pid_list)
6189 return !(*pos) ? FTRACE_NO_PIDS : NULL;
6190
6191 return trace_pid_start(pid_list, pos);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006192}
6193
6194static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
6195{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006196 struct trace_array *tr = m->private;
6197 struct trace_pid_list *pid_list = rcu_dereference_sched(tr->function_pids);
6198
6199 if (v == FTRACE_NO_PIDS)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006200 return NULL;
6201
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006202 return trace_pid_next(pid_list, v, pos);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006203}
6204
6205static void fpid_stop(struct seq_file *m, void *p)
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006206 __releases(RCU)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006207{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006208 rcu_read_unlock_sched();
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006209 mutex_unlock(&ftrace_lock);
6210}
6211
6212static int fpid_show(struct seq_file *m, void *v)
6213{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006214 if (v == FTRACE_NO_PIDS) {
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01006215 seq_puts(m, "no pid\n");
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006216 return 0;
6217 }
6218
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006219 return trace_pid_show(m, v);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006220}
6221
6222static const struct seq_operations ftrace_pid_sops = {
6223 .start = fpid_start,
6224 .next = fpid_next,
6225 .stop = fpid_stop,
6226 .show = fpid_show,
6227};
6228
6229static int
6230ftrace_pid_open(struct inode *inode, struct file *file)
6231{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006232 struct trace_array *tr = inode->i_private;
6233 struct seq_file *m;
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006234 int ret = 0;
6235
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006236 if (trace_array_get(tr) < 0)
6237 return -ENODEV;
6238
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006239 if ((file->f_mode & FMODE_WRITE) &&
6240 (file->f_flags & O_TRUNC))
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006241 ftrace_pid_reset(tr);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006242
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006243 ret = seq_open(file, &ftrace_pid_sops);
6244 if (ret < 0) {
6245 trace_array_put(tr);
6246 } else {
6247 m = file->private_data;
6248 /* copy tr over to seq ops */
6249 m->private = tr;
6250 }
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006251
6252 return ret;
6253}
6254
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006255static void ignore_task_cpu(void *data)
6256{
6257 struct trace_array *tr = data;
6258 struct trace_pid_list *pid_list;
6259
6260 /*
6261 * This function is called by on_each_cpu() while the
6262 * event_mutex is held.
6263 */
6264 pid_list = rcu_dereference_protected(tr->function_pids,
6265 mutex_is_locked(&ftrace_lock));
6266
6267 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
6268 trace_ignore_this_task(pid_list, current));
6269}
6270
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006271static ssize_t
6272ftrace_pid_write(struct file *filp, const char __user *ubuf,
6273 size_t cnt, loff_t *ppos)
6274{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006275 struct seq_file *m = filp->private_data;
6276 struct trace_array *tr = m->private;
6277 struct trace_pid_list *filtered_pids = NULL;
6278 struct trace_pid_list *pid_list;
6279 ssize_t ret;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006280
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006281 if (!cnt)
6282 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006283
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006284 mutex_lock(&ftrace_lock);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006285
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006286 filtered_pids = rcu_dereference_protected(tr->function_pids,
6287 lockdep_is_held(&ftrace_lock));
6288
6289 ret = trace_pid_write(filtered_pids, &pid_list, ubuf, cnt);
6290 if (ret < 0)
6291 goto out;
6292
6293 rcu_assign_pointer(tr->function_pids, pid_list);
6294
6295 if (filtered_pids) {
6296 synchronize_sched();
6297 trace_free_pid_list(filtered_pids);
6298 } else if (pid_list) {
6299 /* Register a probe to set whether to ignore the tracing of a task */
6300 register_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
6301 }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006302
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006303 /*
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006304 * Ignoring of pids is done at task switch. But we have to
6305 * check for those tasks that are currently running.
6306 * Always do this in case a pid was appended or removed.
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006307 */
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006308 on_each_cpu(ignore_task_cpu, tr, 1);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006309
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006310 ftrace_update_pid_func();
6311 ftrace_startup_all(0);
6312 out:
6313 mutex_unlock(&ftrace_lock);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006314
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006315 if (ret > 0)
6316 *ppos += ret;
Steven Rostedt978f3a42008-12-04 00:26:40 -05006317
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006318 return ret;
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006319}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006320
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006321static int
6322ftrace_pid_release(struct inode *inode, struct file *file)
6323{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006324 struct trace_array *tr = inode->i_private;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006325
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006326 trace_array_put(tr);
6327
6328 return seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006329}
6330
Steven Rostedt5e2336a2009-03-05 21:44:55 -05006331static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006332 .open = ftrace_pid_open,
6333 .write = ftrace_pid_write,
6334 .read = seq_read,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05006335 .llseek = tracing_lseek,
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006336 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006337};
6338
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006339void ftrace_init_tracefs(struct trace_array *tr, struct dentry *d_tracer)
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006340{
Frederic Weisbecker5452af62009-03-27 00:25:38 +01006341 trace_create_file("set_ftrace_pid", 0644, d_tracer,
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006342 tr, &ftrace_pid_fops);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006343}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006344
Steven Rostedt (Red Hat)501c2372016-07-05 10:04:34 -04006345void __init ftrace_init_tracefs_toplevel(struct trace_array *tr,
6346 struct dentry *d_tracer)
6347{
6348 /* Only the top level directory has the dyn_tracefs and profile */
6349 WARN_ON(!(tr->flags & TRACE_ARRAY_FL_GLOBAL));
6350
6351 ftrace_init_dyn_tracefs(d_tracer);
6352 ftrace_profile_tracefs(d_tracer);
6353}
6354
Steven Rostedt3d083392008-05-12 21:20:42 +02006355/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04006356 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04006357 *
6358 * This function should be used by panic code. It stops ftrace
6359 * but in a not so nice way. If you need to simply kill ftrace
6360 * from a non-atomic section, use ftrace_kill.
6361 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04006362void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04006363{
6364 ftrace_disabled = 1;
6365 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04006366 clear_ftrace_function();
6367}
6368
6369/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04006370 * Test if ftrace is dead or not.
6371 */
6372int ftrace_is_dead(void)
6373{
6374 return ftrace_disabled;
6375}
6376
6377/**
Steven Rostedt3d083392008-05-12 21:20:42 +02006378 * register_ftrace_function - register a function for profiling
6379 * @ops - ops structure that holds the function for profiling.
6380 *
6381 * Register a function to be called by all functions in the
6382 * kernel.
6383 *
6384 * Note: @ops->func and all the functions it calls must be labeled
6385 * with "notrace", otherwise it will go into a
6386 * recursive loop.
6387 */
6388int register_ftrace_function(struct ftrace_ops *ops)
6389{
Steven Rostedt45a4a232011-04-21 23:16:46 -04006390 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02006391
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09006392 ftrace_ops_init(ops);
6393
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006394 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006395
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05006396 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04006397
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006398 mutex_unlock(&ftrace_lock);
Borislav Petkov8d240dd2012-03-29 19:11:40 +02006399
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006400 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02006401}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04006402EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02006403
6404/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01006405 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02006406 * @ops - ops structure that holds the function to unregister
6407 *
6408 * Unregister a function that was added to be called by ftrace profiling.
6409 */
6410int unregister_ftrace_function(struct ftrace_ops *ops)
6411{
6412 int ret;
6413
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006414 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05006415 ret = ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006416 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006417
6418 return ret;
6419}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04006420EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006421
Ingo Molnare309b412008-05-12 21:20:51 +02006422int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006423ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07006424 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006425 loff_t *ppos)
6426{
Steven Rostedt45a4a232011-04-21 23:16:46 -04006427 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02006428
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006429 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006430
Steven Rostedt45a4a232011-04-21 23:16:46 -04006431 if (unlikely(ftrace_disabled))
6432 goto out;
6433
6434 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006435
Li Zefana32c7762009-06-26 16:55:51 +08006436 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006437 goto out;
6438
Li Zefana32c7762009-06-26 16:55:51 +08006439 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006440
6441 if (ftrace_enabled) {
6442
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006443 /* we are starting ftrace again */
Jan Kiszka5000c412013-03-26 17:53:03 +01006444 if (ftrace_ops_list != &ftrace_list_end)
6445 update_ftrace_function();
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006446
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05006447 ftrace_startup_sysctl();
6448
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006449 } else {
6450 /* stopping ftrace calls (just send to ftrace_stub) */
6451 ftrace_trace_function = ftrace_stub;
6452
6453 ftrace_shutdown_sysctl();
6454 }
6455
6456 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006457 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02006458 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02006459}
Ingo Molnarf17845e2008-10-24 12:47:10 +02006460
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006461#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006462
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006463static struct ftrace_ops graph_ops = {
6464 .func = ftrace_stub,
6465 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
6466 FTRACE_OPS_FL_INITIALIZED |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04006467 FTRACE_OPS_FL_PID |
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006468 FTRACE_OPS_FL_STUB,
6469#ifdef FTRACE_GRAPH_TRAMP_ADDR
6470 .trampoline = FTRACE_GRAPH_TRAMP_ADDR,
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05006471 /* trampoline_size is only needed for dynamically allocated tramps */
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006472#endif
6473 ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash)
6474};
6475
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04006476void ftrace_graph_sleep_time_control(bool enable)
6477{
6478 fgraph_sleep_time = enable;
6479}
6480
6481void ftrace_graph_graph_time_control(bool enable)
6482{
6483 fgraph_graph_time = enable;
6484}
6485
Steven Rostedte49dc192008-12-02 23:50:05 -05006486int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
6487{
6488 return 0;
6489}
6490
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006491/* The callbacks that hook a function */
6492trace_func_graph_ret_t ftrace_graph_return =
6493 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05006494trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006495static trace_func_graph_ent_t __ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006496
6497/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
6498static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
6499{
6500 int i;
6501 int ret = 0;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006502 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
6503 struct task_struct *g, *t;
6504
6505 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
6506 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
6507 * sizeof(struct ftrace_ret_stack),
6508 GFP_KERNEL);
6509 if (!ret_stack_list[i]) {
6510 start = 0;
6511 end = i;
6512 ret = -ENOMEM;
6513 goto free;
6514 }
6515 }
6516
Soumya PN6112a302016-05-17 21:31:14 +05306517 read_lock(&tasklist_lock);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006518 do_each_thread(g, t) {
6519 if (start == end) {
6520 ret = -EAGAIN;
6521 goto unlock;
6522 }
6523
6524 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01006525 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006526 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04006527 t->curr_ret_stack = -1;
6528 /* Make sure the tasks see the -1 first: */
6529 smp_wmb();
6530 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006531 }
6532 } while_each_thread(g, t);
6533
6534unlock:
Soumya PN6112a302016-05-17 21:31:14 +05306535 read_unlock(&tasklist_lock);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006536free:
6537 for (i = start; i < end; i++)
6538 kfree(ret_stack_list[i]);
6539 return ret;
6540}
6541
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006542static void
Peter Zijlstrac73464b2015-09-28 18:06:56 +02006543ftrace_graph_probe_sched_switch(void *ignore, bool preempt,
Steven Rostedt38516ab2010-04-20 17:04:50 -04006544 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006545{
6546 unsigned long long timestamp;
6547 int index;
6548
Steven Rostedtbe6f1642009-03-24 11:06:24 -04006549 /*
6550 * Does the user want to count the time a function was asleep.
6551 * If so, do not update the time stamps.
6552 */
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04006553 if (fgraph_sleep_time)
Steven Rostedtbe6f1642009-03-24 11:06:24 -04006554 return;
6555
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006556 timestamp = trace_clock_local();
6557
6558 prev->ftrace_timestamp = timestamp;
6559
6560 /* only process tasks that we timestamped */
6561 if (!next->ftrace_timestamp)
6562 return;
6563
6564 /*
6565 * Update all the counters in next to make up for the
6566 * time next was sleeping.
6567 */
6568 timestamp -= next->ftrace_timestamp;
6569
6570 for (index = next->curr_ret_stack; index >= 0; index--)
6571 next->ret_stack[index].calltime += timestamp;
6572}
6573
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006574/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006575static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006576{
6577 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01006578 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006579
6580 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
6581 sizeof(struct ftrace_ret_stack *),
6582 GFP_KERNEL);
6583
6584 if (!ret_stack_list)
6585 return -ENOMEM;
6586
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01006587 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04006588 for_each_online_cpu(cpu) {
6589 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05006590 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04006591 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01006592
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006593 do {
6594 ret = alloc_retstack_tasklist(ret_stack_list);
6595 } while (ret == -EAGAIN);
6596
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006597 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04006598 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006599 if (ret)
6600 pr_info("ftrace_graph: Couldn't activate tracepoint"
6601 " probe to kernel_sched_switch\n");
6602 }
6603
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006604 kfree(ret_stack_list);
6605 return ret;
6606}
6607
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08006608/*
6609 * Hibernation protection.
6610 * The state of the current task is too much unstable during
6611 * suspend/restore to disk. We want to protect against that.
6612 */
6613static int
6614ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
6615 void *unused)
6616{
6617 switch (state) {
6618 case PM_HIBERNATION_PREPARE:
6619 pause_graph_tracing();
6620 break;
6621
6622 case PM_POST_HIBERNATION:
6623 unpause_graph_tracing();
6624 break;
6625 }
6626 return NOTIFY_DONE;
6627}
6628
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006629static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace)
6630{
6631 if (!ftrace_ops_test(&global_ops, trace->func, NULL))
6632 return 0;
6633 return __ftrace_graph_entry(trace);
6634}
6635
6636/*
6637 * The function graph tracer should only trace the functions defined
6638 * by set_ftrace_filter and set_ftrace_notrace. If another function
6639 * tracer ops is registered, the graph tracer requires testing the
6640 * function against the global ops, and not just trace any function
6641 * that any ftrace_ops registered.
6642 */
6643static void update_function_graph_func(void)
6644{
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006645 struct ftrace_ops *op;
6646 bool do_test = false;
6647
6648 /*
6649 * The graph and global ops share the same set of functions
6650 * to test. If any other ops is on the list, then
6651 * the graph tracing needs to test if its the function
6652 * it should call.
6653 */
6654 do_for_each_ftrace_op(op, ftrace_ops_list) {
6655 if (op != &global_ops && op != &graph_ops &&
6656 op != &ftrace_list_end) {
6657 do_test = true;
6658 /* in double loop, break out with goto */
6659 goto out;
6660 }
6661 } while_for_each_ftrace_op(op);
6662 out:
6663 if (do_test)
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006664 ftrace_graph_entry = ftrace_graph_entry_test;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006665 else
6666 ftrace_graph_entry = __ftrace_graph_entry;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006667}
6668
Mathias Krause8275f692014-03-30 15:31:50 +02006669static struct notifier_block ftrace_suspend_notifier = {
6670 .notifier_call = ftrace_suspend_notifier_call,
6671};
6672
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006673int register_ftrace_graph(trace_func_graph_ret_t retfunc,
6674 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006675{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006676 int ret = 0;
6677
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006678 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006679
Steven Rostedt05ce5812009-03-24 00:18:31 -04006680 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04006681 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04006682 ret = -EBUSY;
6683 goto out;
6684 }
6685
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08006686 register_pm_notifier(&ftrace_suspend_notifier);
6687
Steven Rostedt597af812009-04-03 15:24:12 -04006688 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006689 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006690 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04006691 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006692 goto out;
6693 }
Steven Rostedte53a6312008-11-26 00:16:25 -05006694
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006695 ftrace_graph_return = retfunc;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006696
6697 /*
6698 * Update the indirect function to the entryfunc, and the
6699 * function that gets called to the entry_test first. Then
6700 * call the update fgraph entry function to determine if
6701 * the entryfunc should be called directly or not.
6702 */
6703 __ftrace_graph_entry = entryfunc;
6704 ftrace_graph_entry = ftrace_graph_entry_test;
6705 update_function_graph_func();
Steven Rostedte53a6312008-11-26 00:16:25 -05006706
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006707 ret = ftrace_startup(&graph_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006708out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006709 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006710 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006711}
6712
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006713void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006714{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006715 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006716
Steven Rostedt597af812009-04-03 15:24:12 -04006717 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04006718 goto out;
6719
Steven Rostedt597af812009-04-03 15:24:12 -04006720 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006721 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05006722 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006723 __ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006724 ftrace_shutdown(&graph_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08006725 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04006726 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006727
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04006728#ifdef CONFIG_DYNAMIC_FTRACE
6729 /*
6730 * Function graph does not allocate the trampoline, but
6731 * other global_ops do. We need to reset the ALLOC_TRAMP flag
6732 * if one was used.
6733 */
6734 global_ops.trampoline = save_global_trampoline;
6735 if (save_global_flags & FTRACE_OPS_FL_ALLOC_TRAMP)
6736 global_ops.flags |= FTRACE_OPS_FL_ALLOC_TRAMP;
6737#endif
6738
Steven Rostedt2aad1b72009-03-30 11:11:28 -04006739 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006740 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006741}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006742
Steven Rostedt868baf02011-02-10 21:26:13 -05006743static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
6744
6745static void
6746graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
6747{
6748 atomic_set(&t->tracing_graph_pause, 0);
6749 atomic_set(&t->trace_overrun, 0);
6750 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006751 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05006752 smp_wmb();
6753 t->ret_stack = ret_stack;
6754}
6755
6756/*
6757 * Allocate a return stack for the idle task. May be the first
6758 * time through, or it may be done by CPU hotplug online.
6759 */
6760void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
6761{
6762 t->curr_ret_stack = -1;
6763 /*
6764 * The idle task has no parent, it either has its own
6765 * stack or no stack at all.
6766 */
6767 if (t->ret_stack)
6768 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
6769
6770 if (ftrace_graph_active) {
6771 struct ftrace_ret_stack *ret_stack;
6772
6773 ret_stack = per_cpu(idle_ret_stack, cpu);
6774 if (!ret_stack) {
6775 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
6776 * sizeof(struct ftrace_ret_stack),
6777 GFP_KERNEL);
6778 if (!ret_stack)
6779 return;
6780 per_cpu(idle_ret_stack, cpu) = ret_stack;
6781 }
6782 graph_init_task(t, ret_stack);
6783 }
6784}
6785
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006786/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006787void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006788{
Steven Rostedt84047e32009-06-02 16:51:55 -04006789 /* Make sure we do not use the parent ret_stack */
6790 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05006791 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04006792
Steven Rostedt597af812009-04-03 15:24:12 -04006793 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04006794 struct ftrace_ret_stack *ret_stack;
6795
6796 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006797 * sizeof(struct ftrace_ret_stack),
6798 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04006799 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006800 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05006801 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04006802 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006803}
6804
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006805void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006806{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006807 struct ftrace_ret_stack *ret_stack = t->ret_stack;
6808
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006809 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006810 /* NULL must become visible to IRQs before we free it: */
6811 barrier();
6812
6813 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006814}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006815#endif