blob: f7fcab8f3aa1a9cfdc0198b5474fcab79b6ecf4d [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 Rostedt8fc0c702009-02-16 15:28:00 -05001099static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
1100
Steven Rostedtb6887d72009-02-17 12:32:04 -05001101struct ftrace_func_probe {
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001102 struct hlist_node node;
Steven Rostedtb6887d72009-02-17 12:32:04 -05001103 struct ftrace_probe_ops *ops;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001104 unsigned long ip;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04001105 struct list_head free_list;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001106};
1107
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001108struct ftrace_func_entry {
1109 struct hlist_node hlist;
1110 unsigned long ip;
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{
1273 hlist_del(&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 Rostedt33dc9b12011-05-02 17:34:47 -04001296static void free_ftrace_hash(struct ftrace_hash *hash)
1297{
1298 if (!hash || hash == EMPTY_HASH)
1299 return;
1300 ftrace_hash_clear(hash);
1301 kfree(hash->buckets);
1302 kfree(hash);
1303}
1304
Steven Rostedt07fd5512011-05-05 18:03:47 -04001305static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1306{
1307 struct ftrace_hash *hash;
1308
1309 hash = container_of(rcu, struct ftrace_hash, rcu);
1310 free_ftrace_hash(hash);
1311}
1312
1313static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1314{
1315 if (!hash || hash == EMPTY_HASH)
1316 return;
1317 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1318}
1319
Jiri Olsa5500fa52012-02-15 15:51:54 +01001320void ftrace_free_filter(struct ftrace_ops *ops)
1321{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09001322 ftrace_ops_init(ops);
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001323 free_ftrace_hash(ops->func_hash->filter_hash);
1324 free_ftrace_hash(ops->func_hash->notrace_hash);
Jiri Olsa5500fa52012-02-15 15:51:54 +01001325}
1326
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001327static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1328{
1329 struct ftrace_hash *hash;
1330 int size;
1331
1332 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1333 if (!hash)
1334 return NULL;
1335
1336 size = 1 << size_bits;
Thomas Meyer47b0edc2011-11-29 22:08:00 +01001337 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001338
1339 if (!hash->buckets) {
1340 kfree(hash);
1341 return NULL;
1342 }
1343
1344 hash->size_bits = size_bits;
1345
1346 return hash;
1347}
1348
1349static struct ftrace_hash *
1350alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1351{
1352 struct ftrace_func_entry *entry;
1353 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001354 int size;
1355 int ret;
1356 int i;
1357
1358 new_hash = alloc_ftrace_hash(size_bits);
1359 if (!new_hash)
1360 return NULL;
1361
1362 /* Empty hash? */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001363 if (ftrace_hash_empty(hash))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001364 return new_hash;
1365
1366 size = 1 << hash->size_bits;
1367 for (i = 0; i < size; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001368 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001369 ret = add_hash_entry(new_hash, entry->ip);
1370 if (ret < 0)
1371 goto free_hash;
1372 }
1373 }
1374
1375 FTRACE_WARN_ON(new_hash->count != hash->count);
1376
1377 return new_hash;
1378
1379 free_hash:
1380 free_ftrace_hash(new_hash);
1381 return NULL;
1382}
1383
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001384static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001385ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001386static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001387ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001388
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001389static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1390 struct ftrace_hash *new_hash);
1391
Namhyung Kim3e278c02017-01-20 11:44:45 +09001392static struct ftrace_hash *
1393__ftrace_hash_move(struct ftrace_hash *src)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001394{
1395 struct ftrace_func_entry *entry;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001396 struct hlist_node *tn;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001397 struct hlist_head *hhd;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001398 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001399 int size = src->count;
1400 int bits = 0;
1401 int i;
1402
1403 /*
Namhyung Kim3e278c02017-01-20 11:44:45 +09001404 * If the new source is empty, just return the empty_hash.
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001405 */
Namhyung Kim3e278c02017-01-20 11:44:45 +09001406 if (!src->count)
1407 return EMPTY_HASH;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001408
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001409 /*
1410 * Make the hash size about 1/2 the # found
1411 */
1412 for (size /= 2; size; size >>= 1)
1413 bits++;
1414
1415 /* Don't allocate too much */
1416 if (bits > FTRACE_HASH_MAX_BITS)
1417 bits = FTRACE_HASH_MAX_BITS;
1418
Steven Rostedt07fd5512011-05-05 18:03:47 -04001419 new_hash = alloc_ftrace_hash(bits);
1420 if (!new_hash)
Namhyung Kim3e278c02017-01-20 11:44:45 +09001421 return NULL;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001422
1423 size = 1 << src->size_bits;
1424 for (i = 0; i < size; i++) {
1425 hhd = &src->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001426 hlist_for_each_entry_safe(entry, tn, hhd, hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001427 remove_hash_entry(src, entry);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001428 __add_hash_entry(new_hash, entry);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001429 }
1430 }
1431
Namhyung Kim3e278c02017-01-20 11:44:45 +09001432 return new_hash;
1433}
1434
1435static int
1436ftrace_hash_move(struct ftrace_ops *ops, int enable,
1437 struct ftrace_hash **dst, struct ftrace_hash *src)
1438{
1439 struct ftrace_hash *new_hash;
1440 int ret;
1441
1442 /* Reject setting notrace hash on IPMODIFY ftrace_ops */
1443 if (ops->flags & FTRACE_OPS_FL_IPMODIFY && !enable)
1444 return -EINVAL;
1445
1446 new_hash = __ftrace_hash_move(src);
1447 if (!new_hash)
1448 return -ENOMEM;
1449
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001450 /* Make sure this can be applied if it is IPMODIFY ftrace_ops */
1451 if (enable) {
1452 /* IPMODIFY should be updated only when filter_hash updating */
1453 ret = ftrace_hash_ipmodify_update(ops, new_hash);
1454 if (ret < 0) {
1455 free_ftrace_hash(new_hash);
1456 return ret;
1457 }
1458 }
1459
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001460 /*
1461 * Remove the current set, update the hash and add
1462 * them back.
1463 */
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001464 ftrace_hash_rec_disable_modify(ops, enable);
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001465
Steven Rostedt07fd5512011-05-05 18:03:47 -04001466 rcu_assign_pointer(*dst, new_hash);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001467
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001468 ftrace_hash_rec_enable_modify(ops, enable);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001469
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001470 return 0;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001471}
1472
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001473static bool hash_contains_ip(unsigned long ip,
1474 struct ftrace_ops_hash *hash)
1475{
1476 /*
1477 * The function record is a match if it exists in the filter
1478 * hash and not in the notrace hash. Note, an emty hash is
1479 * considered a match for the filter hash, but an empty
1480 * notrace hash is considered not in the notrace hash.
1481 */
1482 return (ftrace_hash_empty(hash->filter_hash) ||
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001483 __ftrace_lookup_ip(hash->filter_hash, ip)) &&
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001484 (ftrace_hash_empty(hash->notrace_hash) ||
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001485 !__ftrace_lookup_ip(hash->notrace_hash, ip));
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001486}
1487
Steven Rostedt265c8312009-02-13 12:43:56 -05001488/*
Steven Rostedtb8489142011-05-04 09:27:52 -04001489 * Test the hashes for this ops to see if we want to call
1490 * the ops->func or not.
1491 *
1492 * It's a match if the ip is in the ops->filter_hash or
1493 * the filter_hash does not exist or is empty,
1494 * AND
1495 * the ip is not in the ops->notrace_hash.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04001496 *
1497 * This needs to be called with preemption disabled as
1498 * the hashes are freed with call_rcu_sched().
Steven Rostedtb8489142011-05-04 09:27:52 -04001499 */
1500static int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001501ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04001502{
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001503 struct ftrace_ops_hash hash;
Steven Rostedtb8489142011-05-04 09:27:52 -04001504 int ret;
1505
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001506#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1507 /*
1508 * There's a small race when adding ops that the ftrace handler
1509 * that wants regs, may be called without them. We can not
1510 * allow that handler to be called if regs is NULL.
1511 */
1512 if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS))
1513 return 0;
1514#endif
1515
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001516 hash.filter_hash = rcu_dereference_raw_notrace(ops->func_hash->filter_hash);
1517 hash.notrace_hash = rcu_dereference_raw_notrace(ops->func_hash->notrace_hash);
Steven Rostedtb8489142011-05-04 09:27:52 -04001518
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001519 if (hash_contains_ip(ip, &hash))
Steven Rostedtb8489142011-05-04 09:27:52 -04001520 ret = 1;
1521 else
1522 ret = 0;
Steven Rostedtb8489142011-05-04 09:27:52 -04001523
1524 return ret;
1525}
1526
1527/*
Steven Rostedt265c8312009-02-13 12:43:56 -05001528 * This is a double for. Do not use 'break' to break out of the loop,
1529 * you must use a goto.
1530 */
1531#define do_for_each_ftrace_rec(pg, rec) \
1532 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1533 int _____i; \
1534 for (_____i = 0; _____i < pg->index; _____i++) { \
1535 rec = &pg->records[_____i];
1536
1537#define while_for_each_ftrace_rec() \
1538 } \
1539 }
Abhishek Sagarecea6562008-06-21 23:47:53 +05301540
Steven Rostedt5855fea2011-12-16 19:27:42 -05001541
1542static int ftrace_cmp_recs(const void *a, const void *b)
1543{
Steven Rostedta650e022012-04-25 13:48:13 -04001544 const struct dyn_ftrace *key = a;
1545 const struct dyn_ftrace *rec = b;
Steven Rostedt5855fea2011-12-16 19:27:42 -05001546
Steven Rostedta650e022012-04-25 13:48:13 -04001547 if (key->flags < rec->ip)
Steven Rostedt5855fea2011-12-16 19:27:42 -05001548 return -1;
Steven Rostedta650e022012-04-25 13:48:13 -04001549 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1550 return 1;
1551 return 0;
1552}
1553
Michael Ellerman04cf31a2016-03-24 22:04:01 +11001554/**
1555 * ftrace_location_range - return the first address of a traced location
1556 * if it touches the given ip range
1557 * @start: start of range to search.
1558 * @end: end of range to search (inclusive). @end points to the last byte
1559 * to check.
1560 *
1561 * Returns rec->ip if the related ftrace location is a least partly within
1562 * the given address range. That is, the first address of the instruction
1563 * that is either a NOP or call to the function tracer. It checks the ftrace
1564 * internal tables to determine if the address belongs or not.
1565 */
1566unsigned long ftrace_location_range(unsigned long start, unsigned long end)
Steven Rostedta650e022012-04-25 13:48:13 -04001567{
1568 struct ftrace_page *pg;
1569 struct dyn_ftrace *rec;
1570 struct dyn_ftrace key;
1571
1572 key.ip = start;
1573 key.flags = end; /* overload flags, as it is unsigned long */
1574
1575 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1576 if (end < pg->records[0].ip ||
1577 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1578 continue;
1579 rec = bsearch(&key, pg->records, pg->index,
1580 sizeof(struct dyn_ftrace),
1581 ftrace_cmp_recs);
1582 if (rec)
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001583 return rec->ip;
Steven Rostedta650e022012-04-25 13:48:13 -04001584 }
1585
Steven Rostedt5855fea2011-12-16 19:27:42 -05001586 return 0;
1587}
1588
Steven Rostedtc88fd862011-08-16 09:53:39 -04001589/**
1590 * ftrace_location - return true if the ip giving is a traced location
1591 * @ip: the instruction pointer to check
1592 *
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001593 * Returns rec->ip if @ip given is a pointer to a ftrace location.
Steven Rostedtc88fd862011-08-16 09:53:39 -04001594 * That is, the instruction that is either a NOP or call to
1595 * the function tracer. It checks the ftrace internal tables to
1596 * determine if the address belongs or not.
1597 */
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001598unsigned long ftrace_location(unsigned long ip)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001599{
Steven Rostedta650e022012-04-25 13:48:13 -04001600 return ftrace_location_range(ip, ip);
1601}
Steven Rostedtc88fd862011-08-16 09:53:39 -04001602
Steven Rostedta650e022012-04-25 13:48:13 -04001603/**
1604 * ftrace_text_reserved - return true if range contains an ftrace location
1605 * @start: start of range to search
1606 * @end: end of range to search (inclusive). @end points to the last byte to check.
1607 *
1608 * Returns 1 if @start and @end contains a ftrace location.
1609 * That is, the instruction that is either a NOP or call to
1610 * the function tracer. It checks the ftrace internal tables to
1611 * determine if the address belongs or not.
1612 */
Sasha Levind88471c2013-01-09 18:09:20 -05001613int ftrace_text_reserved(const void *start, const void *end)
Steven Rostedta650e022012-04-25 13:48:13 -04001614{
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001615 unsigned long ret;
1616
1617 ret = ftrace_location_range((unsigned long)start,
1618 (unsigned long)end);
1619
1620 return (int)!!ret;
Steven Rostedtc88fd862011-08-16 09:53:39 -04001621}
1622
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001623/* Test if ops registered to this rec needs regs */
1624static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec)
1625{
1626 struct ftrace_ops *ops;
1627 bool keep_regs = false;
1628
1629 for (ops = ftrace_ops_list;
1630 ops != &ftrace_list_end; ops = ops->next) {
1631 /* pass rec in as regs to have non-NULL val */
1632 if (ftrace_ops_test(ops, rec->ip, rec)) {
1633 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1634 keep_regs = true;
1635 break;
1636 }
1637 }
1638 }
1639
1640 return keep_regs;
1641}
1642
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001643static bool __ftrace_hash_rec_update(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001644 int filter_hash,
1645 bool inc)
1646{
1647 struct ftrace_hash *hash;
1648 struct ftrace_hash *other_hash;
1649 struct ftrace_page *pg;
1650 struct dyn_ftrace *rec;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001651 bool update = false;
Steven Rostedted926f92011-05-03 13:25:24 -04001652 int count = 0;
1653 int all = 0;
1654
1655 /* Only update if the ops has been registered */
1656 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001657 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001658
1659 /*
1660 * In the filter_hash case:
1661 * If the count is zero, we update all records.
1662 * Otherwise we just update the items in the hash.
1663 *
1664 * In the notrace_hash case:
1665 * We enable the update in the hash.
1666 * As disabling notrace means enabling the tracing,
1667 * and enabling notrace means disabling, the inc variable
1668 * gets inversed.
1669 */
1670 if (filter_hash) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001671 hash = ops->func_hash->filter_hash;
1672 other_hash = ops->func_hash->notrace_hash;
Steven Rostedt06a51d92011-12-19 19:07:36 -05001673 if (ftrace_hash_empty(hash))
Steven Rostedted926f92011-05-03 13:25:24 -04001674 all = 1;
1675 } else {
1676 inc = !inc;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001677 hash = ops->func_hash->notrace_hash;
1678 other_hash = ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04001679 /*
1680 * If the notrace hash has no items,
1681 * then there's nothing to do.
1682 */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001683 if (ftrace_hash_empty(hash))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001684 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001685 }
1686
1687 do_for_each_ftrace_rec(pg, rec) {
1688 int in_other_hash = 0;
1689 int in_hash = 0;
1690 int match = 0;
1691
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05001692 if (rec->flags & FTRACE_FL_DISABLED)
1693 continue;
1694
Steven Rostedted926f92011-05-03 13:25:24 -04001695 if (all) {
1696 /*
1697 * Only the filter_hash affects all records.
1698 * Update if the record is not in the notrace hash.
1699 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001700 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
Steven Rostedted926f92011-05-03 13:25:24 -04001701 match = 1;
1702 } else {
Steven Rostedt06a51d92011-12-19 19:07:36 -05001703 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1704 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
Steven Rostedted926f92011-05-03 13:25:24 -04001705
1706 /*
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001707 * If filter_hash is set, we want to match all functions
1708 * that are in the hash but not in the other hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001709 *
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001710 * If filter_hash is not set, then we are decrementing.
1711 * That means we match anything that is in the hash
1712 * and also in the other_hash. That is, we need to turn
1713 * off functions in the other hash because they are disabled
1714 * by this hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001715 */
1716 if (filter_hash && in_hash && !in_other_hash)
1717 match = 1;
1718 else if (!filter_hash && in_hash &&
Steven Rostedt06a51d92011-12-19 19:07:36 -05001719 (in_other_hash || ftrace_hash_empty(other_hash)))
Steven Rostedted926f92011-05-03 13:25:24 -04001720 match = 1;
1721 }
1722 if (!match)
1723 continue;
1724
1725 if (inc) {
1726 rec->flags++;
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001727 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001728 return false;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001729
1730 /*
1731 * If there's only a single callback registered to a
1732 * function, and the ops has a trampoline registered
1733 * for it, then we can call it directly.
1734 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001735 if (ftrace_rec_count(rec) == 1 && ops->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001736 rec->flags |= FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001737 else
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001738 /*
1739 * If we are adding another function callback
1740 * to this function, and the previous had a
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04001741 * custom trampoline in use, then we need to go
1742 * back to the default trampoline.
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001743 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001744 rec->flags &= ~FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001745
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001746 /*
1747 * If any ops wants regs saved for this function
1748 * then all ops will get saved regs.
1749 */
1750 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1751 rec->flags |= FTRACE_FL_REGS;
Steven Rostedted926f92011-05-03 13:25:24 -04001752 } else {
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001753 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001754 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001755 rec->flags--;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001756
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001757 /*
1758 * If the rec had REGS enabled and the ops that is
1759 * being removed had REGS set, then see if there is
1760 * still any ops for this record that wants regs.
1761 * If not, we can stop recording them.
1762 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001763 if (ftrace_rec_count(rec) > 0 &&
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001764 rec->flags & FTRACE_FL_REGS &&
1765 ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1766 if (!test_rec_ops_needs_regs(rec))
1767 rec->flags &= ~FTRACE_FL_REGS;
1768 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001769
1770 /*
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001771 * If the rec had TRAMP enabled, then it needs to
1772 * be cleared. As TRAMP can only be enabled iff
1773 * there is only a single ops attached to it.
1774 * In otherwords, always disable it on decrementing.
1775 * In the future, we may set it if rec count is
1776 * decremented to one, and the ops that is left
1777 * has a trampoline.
1778 */
1779 rec->flags &= ~FTRACE_FL_TRAMP;
1780
1781 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001782 * flags will be cleared in ftrace_check_record()
1783 * if rec count is zero.
1784 */
Steven Rostedted926f92011-05-03 13:25:24 -04001785 }
1786 count++;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001787
1788 /* Must match FTRACE_UPDATE_CALLS in ftrace_modify_all_code() */
1789 update |= ftrace_test_record(rec, 1) != FTRACE_UPDATE_IGNORE;
1790
Steven Rostedted926f92011-05-03 13:25:24 -04001791 /* Shortcut, if we handled all records, we are done. */
1792 if (!all && count == hash->count)
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001793 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001794 } while_for_each_ftrace_rec();
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001795
1796 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001797}
1798
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001799static bool ftrace_hash_rec_disable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001800 int filter_hash)
1801{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001802 return __ftrace_hash_rec_update(ops, filter_hash, 0);
Steven Rostedted926f92011-05-03 13:25:24 -04001803}
1804
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001805static bool ftrace_hash_rec_enable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001806 int filter_hash)
1807{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001808 return __ftrace_hash_rec_update(ops, filter_hash, 1);
Steven Rostedted926f92011-05-03 13:25:24 -04001809}
1810
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001811static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops,
1812 int filter_hash, int inc)
1813{
1814 struct ftrace_ops *op;
1815
1816 __ftrace_hash_rec_update(ops, filter_hash, inc);
1817
1818 if (ops->func_hash != &global_ops.local_hash)
1819 return;
1820
1821 /*
1822 * If the ops shares the global_ops hash, then we need to update
1823 * all ops that are enabled and use this hash.
1824 */
1825 do_for_each_ftrace_op(op, ftrace_ops_list) {
1826 /* Already done */
1827 if (op == ops)
1828 continue;
1829 if (op->func_hash == &global_ops.local_hash)
1830 __ftrace_hash_rec_update(op, filter_hash, inc);
1831 } while_for_each_ftrace_op(op);
1832}
1833
1834static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops,
1835 int filter_hash)
1836{
1837 ftrace_hash_rec_update_modify(ops, filter_hash, 0);
1838}
1839
1840static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops,
1841 int filter_hash)
1842{
1843 ftrace_hash_rec_update_modify(ops, filter_hash, 1);
1844}
1845
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001846/*
1847 * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK
1848 * or no-needed to update, -EBUSY if it detects a conflict of the flag
1849 * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs.
1850 * Note that old_hash and new_hash has below meanings
1851 * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected)
1852 * - If the hash is EMPTY_HASH, it hits nothing
1853 * - Anything else hits the recs which match the hash entries.
1854 */
1855static int __ftrace_hash_update_ipmodify(struct ftrace_ops *ops,
1856 struct ftrace_hash *old_hash,
1857 struct ftrace_hash *new_hash)
1858{
1859 struct ftrace_page *pg;
1860 struct dyn_ftrace *rec, *end = NULL;
1861 int in_old, in_new;
1862
1863 /* Only update if the ops has been registered */
1864 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1865 return 0;
1866
1867 if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY))
1868 return 0;
1869
1870 /*
1871 * Since the IPMODIFY is a very address sensitive action, we do not
1872 * allow ftrace_ops to set all functions to new hash.
1873 */
1874 if (!new_hash || !old_hash)
1875 return -EINVAL;
1876
1877 /* Update rec->flags */
1878 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05001879
1880 if (rec->flags & FTRACE_FL_DISABLED)
1881 continue;
1882
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001883 /* We need to update only differences of filter_hash */
1884 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1885 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1886 if (in_old == in_new)
1887 continue;
1888
1889 if (in_new) {
1890 /* New entries must ensure no others are using it */
1891 if (rec->flags & FTRACE_FL_IPMODIFY)
1892 goto rollback;
1893 rec->flags |= FTRACE_FL_IPMODIFY;
1894 } else /* Removed entry */
1895 rec->flags &= ~FTRACE_FL_IPMODIFY;
1896 } while_for_each_ftrace_rec();
1897
1898 return 0;
1899
1900rollback:
1901 end = rec;
1902
1903 /* Roll back what we did above */
1904 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05001905
1906 if (rec->flags & FTRACE_FL_DISABLED)
1907 continue;
1908
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001909 if (rec == end)
1910 goto err_out;
1911
1912 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1913 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1914 if (in_old == in_new)
1915 continue;
1916
1917 if (in_new)
1918 rec->flags &= ~FTRACE_FL_IPMODIFY;
1919 else
1920 rec->flags |= FTRACE_FL_IPMODIFY;
1921 } while_for_each_ftrace_rec();
1922
1923err_out:
1924 return -EBUSY;
1925}
1926
1927static int ftrace_hash_ipmodify_enable(struct ftrace_ops *ops)
1928{
1929 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1930
1931 if (ftrace_hash_empty(hash))
1932 hash = NULL;
1933
1934 return __ftrace_hash_update_ipmodify(ops, EMPTY_HASH, hash);
1935}
1936
1937/* Disabling always succeeds */
1938static void ftrace_hash_ipmodify_disable(struct ftrace_ops *ops)
1939{
1940 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1941
1942 if (ftrace_hash_empty(hash))
1943 hash = NULL;
1944
1945 __ftrace_hash_update_ipmodify(ops, hash, EMPTY_HASH);
1946}
1947
1948static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1949 struct ftrace_hash *new_hash)
1950{
1951 struct ftrace_hash *old_hash = ops->func_hash->filter_hash;
1952
1953 if (ftrace_hash_empty(old_hash))
1954 old_hash = NULL;
1955
1956 if (ftrace_hash_empty(new_hash))
1957 new_hash = NULL;
1958
1959 return __ftrace_hash_update_ipmodify(ops, old_hash, new_hash);
1960}
1961
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05001962static void print_ip_ins(const char *fmt, const unsigned char *p)
Steven Rostedt05736a42008-09-22 14:55:47 -07001963{
1964 int i;
1965
1966 printk(KERN_CONT "%s", fmt);
1967
1968 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1969 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1970}
1971
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001972static struct ftrace_ops *
1973ftrace_find_tramp_ops_any(struct dyn_ftrace *rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05001974static struct ftrace_ops *
1975ftrace_find_tramp_ops_next(struct dyn_ftrace *rec, struct ftrace_ops *ops);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001976
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05001977enum ftrace_bug_type ftrace_bug_type;
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05001978const void *ftrace_expected;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05001979
1980static void print_bug_type(void)
1981{
1982 switch (ftrace_bug_type) {
1983 case FTRACE_BUG_UNKNOWN:
1984 break;
1985 case FTRACE_BUG_INIT:
1986 pr_info("Initializing ftrace call sites\n");
1987 break;
1988 case FTRACE_BUG_NOP:
1989 pr_info("Setting ftrace call site to NOP\n");
1990 break;
1991 case FTRACE_BUG_CALL:
1992 pr_info("Setting ftrace call site to call ftrace function\n");
1993 break;
1994 case FTRACE_BUG_UPDATE:
1995 pr_info("Updating ftrace call site to call a different ftrace function\n");
1996 break;
1997 }
1998}
1999
Steven Rostedtc88fd862011-08-16 09:53:39 -04002000/**
2001 * ftrace_bug - report and shutdown function tracer
2002 * @failed: The failed type (EFAULT, EINVAL, EPERM)
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002003 * @rec: The record that failed
Steven Rostedtc88fd862011-08-16 09:53:39 -04002004 *
2005 * The arch code that enables or disables the function tracing
2006 * can call ftrace_bug() when it has detected a problem in
2007 * modifying the code. @failed should be one of either:
2008 * EFAULT - if the problem happens on reading the @ip address
2009 * EINVAL - if what is read at @ip is not what was expected
2010 * EPERM - if the problem happens on writting to the @ip address
2011 */
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002012void ftrace_bug(int failed, struct dyn_ftrace *rec)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002013{
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002014 unsigned long ip = rec ? rec->ip : 0;
2015
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002016 switch (failed) {
2017 case -EFAULT:
2018 FTRACE_WARN_ON_ONCE(1);
2019 pr_info("ftrace faulted on modifying ");
2020 print_ip_sym(ip);
2021 break;
2022 case -EINVAL:
2023 FTRACE_WARN_ON_ONCE(1);
2024 pr_info("ftrace failed to modify ");
2025 print_ip_sym(ip);
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002026 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002027 pr_cont("\n");
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002028 if (ftrace_expected) {
2029 print_ip_ins(" expected: ", ftrace_expected);
2030 pr_cont("\n");
2031 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002032 break;
2033 case -EPERM:
2034 FTRACE_WARN_ON_ONCE(1);
2035 pr_info("ftrace faulted on writing ");
2036 print_ip_sym(ip);
2037 break;
2038 default:
2039 FTRACE_WARN_ON_ONCE(1);
2040 pr_info("ftrace faulted on unknown error ");
2041 print_ip_sym(ip);
2042 }
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002043 print_bug_type();
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002044 if (rec) {
2045 struct ftrace_ops *ops = NULL;
2046
2047 pr_info("ftrace record flags: %lx\n", rec->flags);
2048 pr_cont(" (%ld)%s", ftrace_rec_count(rec),
2049 rec->flags & FTRACE_FL_REGS ? " R" : " ");
2050 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2051 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002052 if (ops) {
2053 do {
2054 pr_cont("\ttramp: %pS (%pS)",
2055 (void *)ops->trampoline,
2056 (void *)ops->func);
2057 ops = ftrace_find_tramp_ops_next(rec, ops);
2058 } while (ops);
2059 } else
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002060 pr_cont("\ttramp: ERROR!");
2061
2062 }
2063 ip = ftrace_get_addr_curr(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002064 pr_cont("\n expected tramp: %lx\n", ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002065 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002066}
2067
Steven Rostedtc88fd862011-08-16 09:53:39 -04002068static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02002069{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002070 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01002071
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002072 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2073
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002074 if (rec->flags & FTRACE_FL_DISABLED)
2075 return FTRACE_UPDATE_IGNORE;
2076
Steven Rostedt982c3502008-11-15 16:31:41 -05002077 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002078 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05002079 *
Steven Rostedted926f92011-05-03 13:25:24 -04002080 * If the record has a ref count, then we need to enable it
2081 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05002082 *
Steven Rostedted926f92011-05-03 13:25:24 -04002083 * Otherwise we make sure its disabled.
2084 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002085 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04002086 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05002087 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002088 if (enable && ftrace_rec_count(rec))
Steven Rostedted926f92011-05-03 13:25:24 -04002089 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02002090
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002091 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002092 * If enabling and the REGS flag does not match the REGS_EN, or
2093 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
2094 * this record. Set flags to fail the compare against ENABLED.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002095 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002096 if (flag) {
2097 if (!(rec->flags & FTRACE_FL_REGS) !=
2098 !(rec->flags & FTRACE_FL_REGS_EN))
2099 flag |= FTRACE_FL_REGS;
2100
2101 if (!(rec->flags & FTRACE_FL_TRAMP) !=
2102 !(rec->flags & FTRACE_FL_TRAMP_EN))
2103 flag |= FTRACE_FL_TRAMP;
2104 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002105
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002106 /* If the state of this record hasn't changed, then do nothing */
2107 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04002108 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002109
2110 if (flag) {
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002111 /* Save off if rec is being enabled (for return value) */
2112 flag ^= rec->flags & FTRACE_FL_ENABLED;
2113
2114 if (update) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04002115 rec->flags |= FTRACE_FL_ENABLED;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002116 if (flag & FTRACE_FL_REGS) {
2117 if (rec->flags & FTRACE_FL_REGS)
2118 rec->flags |= FTRACE_FL_REGS_EN;
2119 else
2120 rec->flags &= ~FTRACE_FL_REGS_EN;
2121 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002122 if (flag & FTRACE_FL_TRAMP) {
2123 if (rec->flags & FTRACE_FL_TRAMP)
2124 rec->flags |= FTRACE_FL_TRAMP_EN;
2125 else
2126 rec->flags &= ~FTRACE_FL_TRAMP_EN;
2127 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002128 }
2129
2130 /*
2131 * If this record is being updated from a nop, then
2132 * return UPDATE_MAKE_CALL.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002133 * Otherwise,
2134 * return UPDATE_MODIFY_CALL to tell the caller to convert
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002135 * from the save regs, to a non-save regs function or
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002136 * vice versa, or from a trampoline call.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002137 */
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002138 if (flag & FTRACE_FL_ENABLED) {
2139 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002140 return FTRACE_UPDATE_MAKE_CALL;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002141 }
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002142
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002143 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002144 return FTRACE_UPDATE_MODIFY_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002145 }
2146
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002147 if (update) {
2148 /* If there's no more users, clear all flags */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002149 if (!ftrace_rec_count(rec))
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002150 rec->flags = 0;
2151 else
Steven Rostedt (Red Hat)b24d4432015-03-04 23:10:28 -05002152 /*
2153 * Just disable the record, but keep the ops TRAMP
2154 * and REGS states. The _EN flags must be disabled though.
2155 */
2156 rec->flags &= ~(FTRACE_FL_ENABLED | FTRACE_FL_TRAMP_EN |
2157 FTRACE_FL_REGS_EN);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002158 }
Steven Rostedtc88fd862011-08-16 09:53:39 -04002159
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002160 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002161 return FTRACE_UPDATE_MAKE_NOP;
2162}
2163
2164/**
2165 * ftrace_update_record, set a record that now is tracing or not
2166 * @rec: the record to update
2167 * @enable: set to 1 if the record is tracing, zero to force disable
2168 *
2169 * The records that represent all functions that can be traced need
2170 * to be updated when tracing has been enabled.
2171 */
2172int ftrace_update_record(struct dyn_ftrace *rec, int enable)
2173{
2174 return ftrace_check_record(rec, enable, 1);
2175}
2176
2177/**
2178 * ftrace_test_record, check if the record has been enabled or not
2179 * @rec: the record to test
2180 * @enable: set to 1 to check if enabled, 0 if it is disabled
2181 *
2182 * The arch code may need to test if a record is already set to
2183 * tracing to determine how to modify the function code that it
2184 * represents.
2185 */
2186int ftrace_test_record(struct dyn_ftrace *rec, int enable)
2187{
2188 return ftrace_check_record(rec, enable, 0);
2189}
2190
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002191static struct ftrace_ops *
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002192ftrace_find_tramp_ops_any(struct dyn_ftrace *rec)
2193{
2194 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002195 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002196
2197 do_for_each_ftrace_op(op, ftrace_ops_list) {
2198
2199 if (!op->trampoline)
2200 continue;
2201
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002202 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002203 return op;
2204 } while_for_each_ftrace_op(op);
2205
2206 return NULL;
2207}
2208
2209static struct ftrace_ops *
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002210ftrace_find_tramp_ops_next(struct dyn_ftrace *rec,
2211 struct ftrace_ops *op)
2212{
2213 unsigned long ip = rec->ip;
2214
2215 while_for_each_ftrace_op(op) {
2216
2217 if (!op->trampoline)
2218 continue;
2219
2220 if (hash_contains_ip(ip, op->func_hash))
2221 return op;
2222 }
2223
2224 return NULL;
2225}
2226
2227static struct ftrace_ops *
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002228ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec)
2229{
2230 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002231 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002232
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002233 /*
2234 * Need to check removed ops first.
2235 * If they are being removed, and this rec has a tramp,
2236 * and this rec is in the ops list, then it would be the
2237 * one with the tramp.
2238 */
2239 if (removed_ops) {
2240 if (hash_contains_ip(ip, &removed_ops->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002241 return removed_ops;
2242 }
2243
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002244 /*
2245 * Need to find the current trampoline for a rec.
2246 * Now, a trampoline is only attached to a rec if there
2247 * was a single 'ops' attached to it. But this can be called
2248 * when we are adding another op to the rec or removing the
2249 * current one. Thus, if the op is being added, we can
2250 * ignore it because it hasn't attached itself to the rec
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002251 * yet.
2252 *
2253 * If an ops is being modified (hooking to different functions)
2254 * then we don't care about the new functions that are being
2255 * added, just the old ones (that are probably being removed).
2256 *
2257 * If we are adding an ops to a function that already is using
2258 * a trampoline, it needs to be removed (trampolines are only
2259 * for single ops connected), then an ops that is not being
2260 * modified also needs to be checked.
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002261 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002262 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002263
2264 if (!op->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002265 continue;
2266
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002267 /*
2268 * If the ops is being added, it hasn't gotten to
2269 * the point to be removed from this tree yet.
2270 */
2271 if (op->flags & FTRACE_OPS_FL_ADDING)
2272 continue;
2273
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002274
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002275 /*
2276 * If the ops is being modified and is in the old
2277 * hash, then it is probably being removed from this
2278 * function.
2279 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002280 if ((op->flags & FTRACE_OPS_FL_MODIFYING) &&
2281 hash_contains_ip(ip, &op->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002282 return op;
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002283 /*
2284 * If the ops is not being added or modified, and it's
2285 * in its normal filter hash, then this must be the one
2286 * we want!
2287 */
2288 if (!(op->flags & FTRACE_OPS_FL_MODIFYING) &&
2289 hash_contains_ip(ip, op->func_hash))
2290 return op;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002291
2292 } while_for_each_ftrace_op(op);
2293
2294 return NULL;
2295}
2296
2297static struct ftrace_ops *
2298ftrace_find_tramp_ops_new(struct dyn_ftrace *rec)
2299{
2300 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002301 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002302
2303 do_for_each_ftrace_op(op, ftrace_ops_list) {
2304 /* pass rec in as regs to have non-NULL val */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002305 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002306 return op;
2307 } while_for_each_ftrace_op(op);
2308
2309 return NULL;
2310}
2311
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002312/**
2313 * ftrace_get_addr_new - Get the call address to set to
2314 * @rec: The ftrace record descriptor
2315 *
2316 * If the record has the FTRACE_FL_REGS set, that means that it
2317 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2318 * is not not set, then it wants to convert to the normal callback.
2319 *
2320 * Returns the address of the trampoline to set to
2321 */
2322unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec)
2323{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002324 struct ftrace_ops *ops;
2325
2326 /* Trampolines take precedence over regs */
2327 if (rec->flags & FTRACE_FL_TRAMP) {
2328 ops = ftrace_find_tramp_ops_new(rec);
2329 if (FTRACE_WARN_ON(!ops || !ops->trampoline)) {
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04002330 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2331 (void *)rec->ip, (void *)rec->ip, rec->flags);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002332 /* Ftrace is shutting down, return anything */
2333 return (unsigned long)FTRACE_ADDR;
2334 }
2335 return ops->trampoline;
2336 }
2337
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002338 if (rec->flags & FTRACE_FL_REGS)
2339 return (unsigned long)FTRACE_REGS_ADDR;
2340 else
2341 return (unsigned long)FTRACE_ADDR;
2342}
2343
2344/**
2345 * ftrace_get_addr_curr - Get the call address that is already there
2346 * @rec: The ftrace record descriptor
2347 *
2348 * The FTRACE_FL_REGS_EN is set when the record already points to
2349 * a function that saves all the regs. Basically the '_EN' version
2350 * represents the current state of the function.
2351 *
2352 * Returns the address of the trampoline that is currently being called
2353 */
2354unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec)
2355{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002356 struct ftrace_ops *ops;
2357
2358 /* Trampolines take precedence over regs */
2359 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2360 ops = ftrace_find_tramp_ops_curr(rec);
2361 if (FTRACE_WARN_ON(!ops)) {
Joe Perchesa395d6a2016-03-22 14:28:09 -07002362 pr_warn("Bad trampoline accounting at: %p (%pS)\n",
2363 (void *)rec->ip, (void *)rec->ip);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002364 /* Ftrace is shutting down, return anything */
2365 return (unsigned long)FTRACE_ADDR;
2366 }
2367 return ops->trampoline;
2368 }
2369
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002370 if (rec->flags & FTRACE_FL_REGS_EN)
2371 return (unsigned long)FTRACE_REGS_ADDR;
2372 else
2373 return (unsigned long)FTRACE_ADDR;
2374}
2375
Steven Rostedtc88fd862011-08-16 09:53:39 -04002376static int
2377__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
2378{
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002379 unsigned long ftrace_old_addr;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002380 unsigned long ftrace_addr;
2381 int ret;
2382
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002383 ftrace_addr = ftrace_get_addr_new(rec);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002384
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002385 /* This needs to be done before we call ftrace_update_record */
2386 ftrace_old_addr = ftrace_get_addr_curr(rec);
2387
2388 ret = ftrace_update_record(rec, enable);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002389
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002390 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2391
Steven Rostedtc88fd862011-08-16 09:53:39 -04002392 switch (ret) {
2393 case FTRACE_UPDATE_IGNORE:
2394 return 0;
2395
2396 case FTRACE_UPDATE_MAKE_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002397 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002398 return ftrace_make_call(rec, ftrace_addr);
2399
2400 case FTRACE_UPDATE_MAKE_NOP:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002401 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedt (Red Hat)39b55522014-08-17 20:59:10 -04002402 return ftrace_make_nop(NULL, rec, ftrace_old_addr);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002403
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002404 case FTRACE_UPDATE_MODIFY_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002405 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002406 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002407 }
2408
2409 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02002410}
2411
Steven Rostedte4f5d542012-04-27 09:13:18 -04002412void __weak ftrace_replace_code(int enable)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002413{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002414 struct dyn_ftrace *rec;
2415 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002416 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002417
Steven Rostedt45a4a232011-04-21 23:16:46 -04002418 if (unlikely(ftrace_disabled))
2419 return;
2420
Steven Rostedt265c8312009-02-13 12:43:56 -05002421 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05002422
2423 if (rec->flags & FTRACE_FL_DISABLED)
2424 continue;
2425
Steven Rostedte4f5d542012-04-27 09:13:18 -04002426 failed = __ftrace_replace_code(rec, enable);
Zhaoleifa9d13c2009-03-13 17:16:34 +08002427 if (failed) {
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002428 ftrace_bug(failed, rec);
Steven Rostedt3279ba32009-10-07 16:57:56 -04002429 /* Stop processing */
2430 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05002431 }
2432 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002433}
2434
Steven Rostedtc88fd862011-08-16 09:53:39 -04002435struct ftrace_rec_iter {
2436 struct ftrace_page *pg;
2437 int index;
2438};
2439
2440/**
2441 * ftrace_rec_iter_start, start up iterating over traced functions
2442 *
2443 * Returns an iterator handle that is used to iterate over all
2444 * the records that represent address locations where functions
2445 * are traced.
2446 *
2447 * May return NULL if no records are available.
2448 */
2449struct ftrace_rec_iter *ftrace_rec_iter_start(void)
2450{
2451 /*
2452 * We only use a single iterator.
2453 * Protected by the ftrace_lock mutex.
2454 */
2455 static struct ftrace_rec_iter ftrace_rec_iter;
2456 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
2457
2458 iter->pg = ftrace_pages_start;
2459 iter->index = 0;
2460
2461 /* Could have empty pages */
2462 while (iter->pg && !iter->pg->index)
2463 iter->pg = iter->pg->next;
2464
2465 if (!iter->pg)
2466 return NULL;
2467
2468 return iter;
2469}
2470
2471/**
2472 * ftrace_rec_iter_next, get the next record to process.
2473 * @iter: The handle to the iterator.
2474 *
2475 * Returns the next iterator after the given iterator @iter.
2476 */
2477struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
2478{
2479 iter->index++;
2480
2481 if (iter->index >= iter->pg->index) {
2482 iter->pg = iter->pg->next;
2483 iter->index = 0;
2484
2485 /* Could have empty pages */
2486 while (iter->pg && !iter->pg->index)
2487 iter->pg = iter->pg->next;
2488 }
2489
2490 if (!iter->pg)
2491 return NULL;
2492
2493 return iter;
2494}
2495
2496/**
2497 * ftrace_rec_iter_record, get the record at the iterator location
2498 * @iter: The current iterator location
2499 *
2500 * Returns the record that the current @iter is at.
2501 */
2502struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
2503{
2504 return &iter->pg->records[iter->index];
2505}
2506
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302507static int
Steven Rostedt31e88902008-11-14 16:21:19 -08002508ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002509{
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002510 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002511
Steven Rostedt45a4a232011-04-21 23:16:46 -04002512 if (unlikely(ftrace_disabled))
2513 return 0;
2514
Shaohua Li25aac9d2009-01-09 11:29:40 +08002515 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002516 if (ret) {
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002517 ftrace_bug_type = FTRACE_BUG_INIT;
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002518 ftrace_bug(ret, rec);
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302519 return 0;
Steven Rostedt37ad50842008-05-12 21:20:48 +02002520 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302521 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002522}
2523
Steven Rostedt000ab692009-02-17 13:35:06 -05002524/*
2525 * archs can override this function if they must do something
2526 * before the modifying code is performed.
2527 */
2528int __weak ftrace_arch_code_modify_prepare(void)
2529{
2530 return 0;
2531}
2532
2533/*
2534 * archs can override this function if they must do something
2535 * after the modifying code is performed.
2536 */
2537int __weak ftrace_arch_code_modify_post_process(void)
2538{
2539 return 0;
2540}
2541
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002542void ftrace_modify_all_code(int command)
2543{
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002544 int update = command & FTRACE_UPDATE_TRACE_FUNC;
Petr Mladekcd21067f2014-02-24 17:12:21 +01002545 int err = 0;
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002546
2547 /*
2548 * If the ftrace_caller calls a ftrace_ops func directly,
2549 * we need to make sure that it only traces functions it
2550 * expects to trace. When doing the switch of functions,
2551 * we need to update to the ftrace_ops_list_func first
2552 * before the transition between old and new calls are set,
2553 * as the ftrace_ops_list_func will check the ops hashes
2554 * to make sure the ops are having the right functions
2555 * traced.
2556 */
Petr Mladekcd21067f2014-02-24 17:12:21 +01002557 if (update) {
2558 err = ftrace_update_ftrace_func(ftrace_ops_list_func);
2559 if (FTRACE_WARN_ON(err))
2560 return;
2561 }
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002562
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002563 if (command & FTRACE_UPDATE_CALLS)
2564 ftrace_replace_code(1);
2565 else if (command & FTRACE_DISABLE_CALLS)
2566 ftrace_replace_code(0);
2567
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002568 if (update && ftrace_trace_function != ftrace_ops_list_func) {
2569 function_trace_op = set_function_trace_op;
2570 smp_wmb();
2571 /* If irqs are disabled, we are in stop machine */
2572 if (!irqs_disabled())
2573 smp_call_function(ftrace_sync_ipi, NULL, 1);
Petr Mladekcd21067f2014-02-24 17:12:21 +01002574 err = ftrace_update_ftrace_func(ftrace_trace_function);
2575 if (FTRACE_WARN_ON(err))
2576 return;
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002577 }
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002578
2579 if (command & FTRACE_START_FUNC_RET)
Petr Mladekcd21067f2014-02-24 17:12:21 +01002580 err = ftrace_enable_ftrace_graph_caller();
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002581 else if (command & FTRACE_STOP_FUNC_RET)
Petr Mladekcd21067f2014-02-24 17:12:21 +01002582 err = ftrace_disable_ftrace_graph_caller();
2583 FTRACE_WARN_ON(err);
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002584}
2585
Ingo Molnare309b412008-05-12 21:20:51 +02002586static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02002587{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002588 int *command = data;
2589
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002590 ftrace_modify_all_code(*command);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05002591
Steven Rostedtc88fd862011-08-16 09:53:39 -04002592 return 0;
2593}
2594
2595/**
2596 * ftrace_run_stop_machine, go back to the stop machine method
2597 * @command: The command to tell ftrace what to do
2598 *
2599 * If an arch needs to fall back to the stop machine method, the
2600 * it can call this function.
2601 */
2602void ftrace_run_stop_machine(int command)
2603{
2604 stop_machine(__ftrace_modify_code, &command, NULL);
2605}
2606
2607/**
2608 * arch_ftrace_update_code, modify the code to trace or not trace
2609 * @command: The command that needs to be done
2610 *
2611 * Archs can override this function if it does not need to
2612 * run stop_machine() to modify code.
2613 */
2614void __weak arch_ftrace_update_code(int command)
2615{
2616 ftrace_run_stop_machine(command);
2617}
2618
2619static void ftrace_run_update_code(int command)
2620{
2621 int ret;
2622
2623 ret = ftrace_arch_code_modify_prepare();
2624 FTRACE_WARN_ON(ret);
2625 if (ret)
2626 return;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002627
2628 /*
2629 * By default we use stop_machine() to modify the code.
2630 * But archs can do what ever they want as long as it
2631 * is safe. The stop_machine() is the safest, but also
2632 * produces the most overhead.
2633 */
2634 arch_ftrace_update_code(command);
2635
Steven Rostedt000ab692009-02-17 13:35:06 -05002636 ret = ftrace_arch_code_modify_post_process();
2637 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02002638}
2639
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002640static void ftrace_run_modify_code(struct ftrace_ops *ops, int command,
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002641 struct ftrace_ops_hash *old_hash)
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002642{
2643 ops->flags |= FTRACE_OPS_FL_MODIFYING;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002644 ops->old_hash.filter_hash = old_hash->filter_hash;
2645 ops->old_hash.notrace_hash = old_hash->notrace_hash;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002646 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002647 ops->old_hash.filter_hash = NULL;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002648 ops->old_hash.notrace_hash = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002649 ops->flags &= ~FTRACE_OPS_FL_MODIFYING;
2650}
2651
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002652static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002653static int ftrace_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002654
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002655void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops)
2656{
2657}
2658
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002659static void per_cpu_ops_free(struct ftrace_ops *ops)
Jiri Slabydb0fbad2014-03-10 21:42:11 +01002660{
2661 free_percpu(ops->disabled);
2662}
2663
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002664static void ftrace_startup_enable(int command)
2665{
2666 if (saved_ftrace_func != ftrace_trace_function) {
2667 saved_ftrace_func = ftrace_trace_function;
2668 command |= FTRACE_UPDATE_TRACE_FUNC;
2669 }
2670
2671 if (!command || !ftrace_enabled)
2672 return;
2673
2674 ftrace_run_update_code(command);
2675}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002676
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002677static void ftrace_startup_all(int command)
2678{
2679 update_all_ops = true;
2680 ftrace_startup_enable(command);
2681 update_all_ops = false;
2682}
2683
Steven Rostedta1cd6172011-05-23 15:24:25 -04002684static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002685{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002686 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002687
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002688 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04002689 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002690
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002691 ret = __register_ftrace_function(ops);
2692 if (ret)
2693 return ret;
2694
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002695 ftrace_start_up++;
Steven Rostedt3d083392008-05-12 21:20:42 +02002696
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002697 /*
2698 * Note that ftrace probes uses this to start up
2699 * and modify functions it will probe. But we still
2700 * set the ADDING flag for modification, as probes
2701 * do not have trampolines. If they add them in the
2702 * future, then the probes will need to distinguish
2703 * between adding and updating probes.
2704 */
2705 ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING;
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002706
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002707 ret = ftrace_hash_ipmodify_enable(ops);
2708 if (ret < 0) {
2709 /* Rollback registration process */
2710 __unregister_ftrace_function(ops);
2711 ftrace_start_up--;
2712 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2713 return ret;
2714 }
2715
Jiri Olsa7f50d062016-03-16 15:34:33 +01002716 if (ftrace_hash_rec_enable(ops, 1))
2717 command |= FTRACE_UPDATE_CALLS;
Steven Rostedted926f92011-05-03 13:25:24 -04002718
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002719 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04002720
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002721 ops->flags &= ~FTRACE_OPS_FL_ADDING;
2722
Steven Rostedta1cd6172011-05-23 15:24:25 -04002723 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002724}
2725
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002726static int ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002727{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002728 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002729
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002730 if (unlikely(ftrace_disabled))
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002731 return -ENODEV;
2732
2733 ret = __unregister_ftrace_function(ops);
2734 if (ret)
2735 return ret;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002736
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002737 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02002738 /*
2739 * Just warn in case of unbalance, no need to kill ftrace, it's not
2740 * critical but the ftrace_call callers may be never nopped again after
2741 * further ftrace uses.
2742 */
2743 WARN_ON_ONCE(ftrace_start_up < 0);
2744
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002745 /* Disabling ipmodify never fails */
2746 ftrace_hash_ipmodify_disable(ops);
Jiri Olsa7f50d062016-03-16 15:34:33 +01002747
2748 if (ftrace_hash_rec_disable(ops, 1))
2749 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtb8489142011-05-04 09:27:52 -04002750
Namhyung Kima737e6d2014-06-12 23:56:12 +09002751 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04002752
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002753 if (saved_ftrace_func != ftrace_trace_function) {
2754 saved_ftrace_func = ftrace_trace_function;
2755 command |= FTRACE_UPDATE_TRACE_FUNC;
2756 }
2757
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002758 if (!command || !ftrace_enabled) {
2759 /*
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002760 * If these are per_cpu ops, they still need their
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002761 * per_cpu field freed. Since, function tracing is
2762 * not currently active, we can just free them
2763 * without synchronizing all CPUs.
2764 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002765 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2766 per_cpu_ops_free(ops);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002767 return 0;
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002768 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002769
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002770 /*
2771 * If the ops uses a trampoline, then it needs to be
2772 * tested first on update.
2773 */
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002774 ops->flags |= FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002775 removed_ops = ops;
2776
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002777 /* The trampoline logic checks the old hashes */
2778 ops->old_hash.filter_hash = ops->func_hash->filter_hash;
2779 ops->old_hash.notrace_hash = ops->func_hash->notrace_hash;
2780
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002781 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002782
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002783 /*
2784 * If there's no more ops registered with ftrace, run a
2785 * sanity check to make sure all rec flags are cleared.
2786 */
2787 if (ftrace_ops_list == &ftrace_list_end) {
2788 struct ftrace_page *pg;
2789 struct dyn_ftrace *rec;
2790
2791 do_for_each_ftrace_rec(pg, rec) {
Alexei Starovoitov977c1f92016-11-07 15:14:20 -08002792 if (FTRACE_WARN_ON_ONCE(rec->flags & ~FTRACE_FL_DISABLED))
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002793 pr_warn(" %pS flags:%lx\n",
2794 (void *)rec->ip, rec->flags);
2795 } while_for_each_ftrace_rec();
2796 }
2797
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002798 ops->old_hash.filter_hash = NULL;
2799 ops->old_hash.notrace_hash = NULL;
2800
2801 removed_ops = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002802 ops->flags &= ~FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002803
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002804 /*
2805 * Dynamic ops may be freed, we must make sure that all
2806 * callers are done before leaving this function.
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002807 * The same goes for freeing the per_cpu data of the per_cpu
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002808 * ops.
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002809 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002810 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU)) {
Steven Rostedt (VMware)0598e4f2017-04-06 10:28:12 -04002811 /*
2812 * We need to do a hard force of sched synchronization.
2813 * This is because we use preempt_disable() to do RCU, but
2814 * the function tracers can be called where RCU is not watching
2815 * (like before user_exit()). We can not rely on the RCU
2816 * infrastructure to do the synchronization, thus we must do it
2817 * ourselves.
2818 */
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002819 schedule_on_each_cpu(ftrace_sync);
2820
Steven Rostedt (VMware)0598e4f2017-04-06 10:28:12 -04002821 /*
2822 * When the kernel is preeptive, tasks can be preempted
2823 * while on a ftrace trampoline. Just scheduling a task on
2824 * a CPU is not good enough to flush them. Calling
2825 * synchornize_rcu_tasks() will wait for those tasks to
2826 * execute and either schedule voluntarily or enter user space.
2827 */
2828 if (IS_ENABLED(CONFIG_PREEMPT))
2829 synchronize_rcu_tasks();
2830
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002831 arch_ftrace_trampoline_free(ops);
2832
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002833 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2834 per_cpu_ops_free(ops);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002835 }
2836
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002837 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002838}
2839
Ingo Molnare309b412008-05-12 21:20:51 +02002840static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002841{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302842 int command;
2843
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002844 if (unlikely(ftrace_disabled))
2845 return;
2846
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002847 /* Force update next time */
2848 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002849 /* ftrace_start_up is true if we want ftrace running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302850 if (ftrace_start_up) {
2851 command = FTRACE_UPDATE_CALLS;
2852 if (ftrace_graph_active)
2853 command |= FTRACE_START_FUNC_RET;
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05002854 ftrace_startup_enable(command);
Pratyush Anand1619dc32015-03-06 23:58:06 +05302855 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002856}
2857
Ingo Molnare309b412008-05-12 21:20:51 +02002858static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002859{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302860 int command;
2861
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002862 if (unlikely(ftrace_disabled))
2863 return;
2864
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002865 /* ftrace_start_up is true if ftrace is running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302866 if (ftrace_start_up) {
2867 command = FTRACE_DISABLE_CALLS;
2868 if (ftrace_graph_active)
2869 command |= FTRACE_STOP_FUNC_RET;
2870 ftrace_run_update_code(command);
2871 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002872}
2873
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002874static u64 ftrace_update_time;
Steven Rostedt3d083392008-05-12 21:20:42 +02002875unsigned long ftrace_update_tot_cnt;
2876
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002877static inline int ops_traces_mod(struct ftrace_ops *ops)
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002878{
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002879 /*
2880 * Filter_hash being empty will default to trace module.
2881 * But notrace hash requires a test of individual module functions.
2882 */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002883 return ftrace_hash_empty(ops->func_hash->filter_hash) &&
2884 ftrace_hash_empty(ops->func_hash->notrace_hash);
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002885}
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002886
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002887/*
2888 * Check if the current ops references the record.
2889 *
2890 * If the ops traces all functions, then it was already accounted for.
2891 * If the ops does not trace the current record function, skip it.
2892 * If the ops ignores the function via notrace filter, skip it.
2893 */
2894static inline bool
2895ops_references_rec(struct ftrace_ops *ops, struct dyn_ftrace *rec)
2896{
2897 /* If ops isn't enabled, ignore it */
2898 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
2899 return 0;
2900
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002901 /* If ops traces all then it includes this function */
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002902 if (ops_traces_mod(ops))
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002903 return 1;
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002904
2905 /* The function must be in the filter */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002906 if (!ftrace_hash_empty(ops->func_hash->filter_hash) &&
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05002907 !__ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002908 return 0;
2909
2910 /* If in notrace hash, we ignore it too */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002911 if (ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002912 return 0;
2913
2914 return 1;
2915}
2916
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002917static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs)
Steven Rostedt3d083392008-05-12 21:20:42 +02002918{
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002919 struct ftrace_page *pg;
Lai Jiangshane94142a2009-03-13 17:51:27 +08002920 struct dyn_ftrace *p;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002921 u64 start, stop;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002922 unsigned long update_cnt = 0;
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002923 unsigned long rec_flags = 0;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002924 int i;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002925
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002926 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002927
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002928 /*
2929 * When a module is loaded, this function is called to convert
2930 * the calls to mcount in its text to nops, and also to create
2931 * an entry in the ftrace data. Now, if ftrace is activated
2932 * after this call, but before the module sets its text to
2933 * read-only, the modification of enabling ftrace can fail if
2934 * the read-only is done while ftrace is converting the calls.
2935 * To prevent this, the module's records are set as disabled
2936 * and will be enabled after the call to set the module's text
2937 * to read-only.
2938 */
2939 if (mod)
2940 rec_flags |= FTRACE_FL_DISABLED;
2941
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002942 for (pg = new_pgs; pg; pg = pg->next) {
Abhishek Sagarf22f9a892008-06-21 23:50:29 +05302943
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002944 for (i = 0; i < pg->index; i++) {
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002945
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002946 /* If something went wrong, bail without enabling anything */
2947 if (unlikely(ftrace_disabled))
2948 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02002949
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002950 p = &pg->records[i];
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002951 p->flags = rec_flags;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05302952
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002953 /*
2954 * Do the initial record conversion from mcount jump
2955 * to the NOP instructions.
2956 */
2957 if (!ftrace_code_disable(mod, p))
2958 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002959
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002960 update_cnt++;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002961 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002962 }
2963
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002964 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002965 ftrace_update_time = stop - start;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002966 ftrace_update_tot_cnt += update_cnt;
Steven Rostedt3d083392008-05-12 21:20:42 +02002967
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02002968 return 0;
2969}
2970
Steven Rostedta7900872011-12-16 16:23:44 -05002971static int ftrace_allocate_records(struct ftrace_page *pg, int count)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002972{
Steven Rostedta7900872011-12-16 16:23:44 -05002973 int order;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002974 int cnt;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002975
Steven Rostedta7900872011-12-16 16:23:44 -05002976 if (WARN_ON(!count))
2977 return -EINVAL;
2978
2979 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002980
2981 /*
Steven Rostedta7900872011-12-16 16:23:44 -05002982 * We want to fill as much as possible. No more than a page
2983 * may be empty.
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002984 */
Steven Rostedta7900872011-12-16 16:23:44 -05002985 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2986 order--;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002987
Steven Rostedta7900872011-12-16 16:23:44 -05002988 again:
2989 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
2990
2991 if (!pg->records) {
2992 /* if we can't allocate this size, try something smaller */
2993 if (!order)
2994 return -ENOMEM;
2995 order >>= 1;
2996 goto again;
2997 }
2998
2999 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
3000 pg->size = cnt;
3001
3002 if (cnt > count)
3003 cnt = count;
3004
3005 return cnt;
3006}
3007
3008static struct ftrace_page *
3009ftrace_allocate_pages(unsigned long num_to_init)
3010{
3011 struct ftrace_page *start_pg;
3012 struct ftrace_page *pg;
3013 int order;
3014 int cnt;
3015
3016 if (!num_to_init)
3017 return 0;
3018
3019 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
3020 if (!pg)
3021 return NULL;
3022
3023 /*
3024 * Try to allocate as much as possible in one continues
3025 * location that fills in all of the space. We want to
3026 * waste as little space as possible.
3027 */
3028 for (;;) {
3029 cnt = ftrace_allocate_records(pg, num_to_init);
3030 if (cnt < 0)
3031 goto free_pages;
3032
3033 num_to_init -= cnt;
3034 if (!num_to_init)
3035 break;
3036
3037 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
3038 if (!pg->next)
3039 goto free_pages;
3040
3041 pg = pg->next;
3042 }
3043
3044 return start_pg;
3045
3046 free_pages:
Namhyung Kim1f61be002014-06-11 17:06:53 +09003047 pg = start_pg;
3048 while (pg) {
Steven Rostedta7900872011-12-16 16:23:44 -05003049 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3050 free_pages((unsigned long)pg->records, order);
3051 start_pg = pg->next;
3052 kfree(pg);
3053 pg = start_pg;
3054 }
3055 pr_info("ftrace: FAILED to allocate memory for functions\n");
3056 return NULL;
3057}
3058
Steven Rostedt5072c592008-05-12 21:20:43 +02003059#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
3060
3061struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003062 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003063 loff_t func_pos;
3064 struct ftrace_page *pg;
3065 struct dyn_ftrace *func;
3066 struct ftrace_func_probe *probe;
3067 struct trace_parser parser;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003068 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003069 struct ftrace_ops *ops;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003070 int hidx;
3071 int idx;
3072 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02003073};
3074
Ingo Molnare309b412008-05-12 21:20:51 +02003075static void *
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003076t_hash_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003077{
3078 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003079 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003080 struct hlist_head *hhd;
3081
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003082 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003083 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003084
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003085 if (iter->probe)
3086 hnd = &iter->probe->node;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003087 retry:
3088 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
3089 return NULL;
3090
3091 hhd = &ftrace_func_hash[iter->hidx];
3092
3093 if (hlist_empty(hhd)) {
3094 iter->hidx++;
3095 hnd = NULL;
3096 goto retry;
3097 }
3098
3099 if (!hnd)
3100 hnd = hhd->first;
3101 else {
3102 hnd = hnd->next;
3103 if (!hnd) {
3104 iter->hidx++;
3105 goto retry;
3106 }
3107 }
3108
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003109 if (WARN_ON_ONCE(!hnd))
3110 return NULL;
3111
3112 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
3113
3114 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003115}
3116
3117static void *t_hash_start(struct seq_file *m, loff_t *pos)
3118{
3119 struct ftrace_iterator *iter = m->private;
3120 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08003121 loff_t l;
3122
Steven Rostedt69a30832011-12-19 15:21:16 -05003123 if (!(iter->flags & FTRACE_ITER_DO_HASH))
3124 return NULL;
3125
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003126 if (iter->func_pos > *pos)
3127 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003128
Li Zefand82d6242009-06-24 09:54:54 +08003129 iter->hidx = 0;
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003130 for (l = 0; l <= (*pos - iter->func_pos); ) {
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003131 p = t_hash_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08003132 if (!p)
3133 break;
3134 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003135 if (!p)
3136 return NULL;
3137
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003138 /* Only set this if we have an item */
3139 iter->flags |= FTRACE_ITER_HASH;
3140
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003141 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003142}
3143
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003144static int
3145t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003146{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003147 struct ftrace_func_probe *rec;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003148
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003149 rec = iter->probe;
3150 if (WARN_ON_ONCE(!rec))
3151 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003152
Steven Rostedt809dcf22009-02-16 23:06:01 -05003153 if (rec->ops->print)
Steven Rostedt (VMware)1a48df02017-04-04 10:27:51 -04003154 return rec->ops->print(m, rec->ip, rec->ops, NULL);
Steven Rostedt809dcf22009-02-16 23:06:01 -05003155
Steven Rostedt (VMware)02b77e22017-04-04 10:04:26 -04003156 seq_printf(m, "%ps:%ps\n", (void *)rec->ip, (void *)rec->ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003157
3158 return 0;
3159}
3160
3161static void *
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003162t_func_next(struct seq_file *m, loff_t *pos)
Steven Rostedt5072c592008-05-12 21:20:43 +02003163{
3164 struct ftrace_iterator *iter = m->private;
3165 struct dyn_ftrace *rec = NULL;
3166
3167 (*pos)++;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003168
Steven Rostedt5072c592008-05-12 21:20:43 +02003169 retry:
3170 if (iter->idx >= iter->pg->index) {
3171 if (iter->pg->next) {
3172 iter->pg = iter->pg->next;
3173 iter->idx = 0;
3174 goto retry;
3175 }
3176 } else {
3177 rec = &iter->pg->records[iter->idx++];
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04003178 if (((iter->flags & (FTRACE_ITER_FILTER | FTRACE_ITER_NOTRACE)) &&
3179 !ftrace_lookup_ip(iter->hash, rec->ip)) ||
Steven Rostedt647bcd02011-05-03 14:39:21 -04003180
3181 ((iter->flags & FTRACE_ITER_ENABLED) &&
Steven Rostedt (Red Hat)23ea9c42013-05-09 19:31:48 -04003182 !(rec->flags & FTRACE_FL_ENABLED))) {
Steven Rostedt647bcd02011-05-03 14:39:21 -04003183
Steven Rostedt5072c592008-05-12 21:20:43 +02003184 rec = NULL;
3185 goto retry;
3186 }
3187 }
3188
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003189 if (!rec)
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003190 return NULL;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003191
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003192 iter->pos = iter->func_pos = *pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003193 iter->func = rec;
3194
3195 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003196}
3197
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003198static void *
3199t_next(struct seq_file *m, void *v, loff_t *pos)
3200{
3201 struct ftrace_iterator *iter = m->private;
Steven Rostedt (VMware)fcdc7122017-04-17 10:22:29 -04003202 loff_t l = *pos; /* t_hash_start() must use original pos */
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003203 void *ret;
3204
3205 if (unlikely(ftrace_disabled))
3206 return NULL;
3207
3208 if (iter->flags & FTRACE_ITER_HASH)
3209 return t_hash_next(m, pos);
3210
3211 if (iter->flags & FTRACE_ITER_PRINTALL) {
3212 /* next must increment pos, and t_hash_start does not */
3213 (*pos)++;
Steven Rostedt (VMware)fcdc7122017-04-17 10:22:29 -04003214 return t_hash_start(m, &l);
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003215 }
3216
3217 ret = t_func_next(m, pos);
3218
3219 if (!ret)
Steven Rostedt (VMware)fcdc7122017-04-17 10:22:29 -04003220 return t_hash_start(m, &l);
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003221
3222 return ret;
3223}
3224
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003225static void reset_iter_read(struct ftrace_iterator *iter)
3226{
3227 iter->pos = 0;
3228 iter->func_pos = 0;
Dan Carpenter70f77b3f2012-06-09 19:10:27 +03003229 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_HASH);
Steven Rostedt5072c592008-05-12 21:20:43 +02003230}
3231
3232static void *t_start(struct seq_file *m, loff_t *pos)
3233{
3234 struct ftrace_iterator *iter = m->private;
3235 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08003236 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02003237
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003238 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003239
3240 if (unlikely(ftrace_disabled))
3241 return NULL;
3242
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003243 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003244 * If an lseek was done, then reset and start from beginning.
3245 */
3246 if (*pos < iter->pos)
3247 reset_iter_read(iter);
3248
3249 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003250 * For set_ftrace_filter reading, if we have the filter
3251 * off, we can short cut and just print out that all
3252 * functions are enabled.
3253 */
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04003254 if ((iter->flags & (FTRACE_ITER_FILTER | FTRACE_ITER_NOTRACE)) &&
3255 ftrace_hash_empty(iter->hash)) {
Steven Rostedt (VMware)43ff9262017-03-30 16:51:43 -04003256 iter->func_pos = 1; /* Account for the message */
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003257 if (*pos > 0)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003258 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003259 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07003260 /* reset in case of seek/pread */
3261 iter->flags &= ~FTRACE_ITER_HASH;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003262 return iter;
3263 }
3264
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003265 if (iter->flags & FTRACE_ITER_HASH)
3266 return t_hash_start(m, pos);
3267
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003268 /*
3269 * Unfortunately, we need to restart at ftrace_pages_start
3270 * every time we let go of the ftrace_mutex. This is because
3271 * those pointers can change without the lock.
3272 */
Li Zefan694ce0a2009-06-24 09:54:19 +08003273 iter->pg = ftrace_pages_start;
3274 iter->idx = 0;
3275 for (l = 0; l <= *pos; ) {
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003276 p = t_func_next(m, &l);
Li Zefan694ce0a2009-06-24 09:54:19 +08003277 if (!p)
3278 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08003279 }
walimis5821e1b2008-11-15 15:19:06 +08003280
Steven Rostedt69a30832011-12-19 15:21:16 -05003281 if (!p)
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003282 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003283
3284 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003285}
3286
3287static void t_stop(struct seq_file *m, void *p)
3288{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003289 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003290}
3291
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003292void * __weak
3293arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec)
3294{
3295 return NULL;
3296}
3297
3298static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops,
3299 struct dyn_ftrace *rec)
3300{
3301 void *ptr;
3302
3303 ptr = arch_ftrace_trampoline_func(ops, rec);
3304 if (ptr)
3305 seq_printf(m, " ->%pS", ptr);
3306}
3307
Steven Rostedt5072c592008-05-12 21:20:43 +02003308static int t_show(struct seq_file *m, void *v)
3309{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003310 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003311 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02003312
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003313 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003314 return t_hash_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003315
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003316 if (iter->flags & FTRACE_ITER_PRINTALL) {
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003317 if (iter->flags & FTRACE_ITER_NOTRACE)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003318 seq_puts(m, "#### no functions disabled ####\n");
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003319 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003320 seq_puts(m, "#### all functions enabled ####\n");
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003321 return 0;
3322 }
3323
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003324 rec = iter->func;
3325
Steven Rostedt5072c592008-05-12 21:20:43 +02003326 if (!rec)
3327 return 0;
3328
Steven Rostedt647bcd02011-05-03 14:39:21 -04003329 seq_printf(m, "%ps", (void *)rec->ip);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003330 if (iter->flags & FTRACE_ITER_ENABLED) {
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003331 struct ftrace_ops *ops;
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003332
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003333 seq_printf(m, " (%ld)%s%s",
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04003334 ftrace_rec_count(rec),
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003335 rec->flags & FTRACE_FL_REGS ? " R" : " ",
3336 rec->flags & FTRACE_FL_IPMODIFY ? " I" : " ");
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003337 if (rec->flags & FTRACE_FL_TRAMP_EN) {
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04003338 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003339 if (ops) {
3340 do {
3341 seq_printf(m, "\ttramp: %pS (%pS)",
3342 (void *)ops->trampoline,
3343 (void *)ops->func);
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003344 add_trampoline_func(m, ops, rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003345 ops = ftrace_find_tramp_ops_next(rec, ops);
3346 } while (ops);
3347 } else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003348 seq_puts(m, "\ttramp: ERROR!");
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003349 } else {
3350 add_trampoline_func(m, NULL, rec);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003351 }
3352 }
3353
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003354 seq_putc(m, '\n');
Steven Rostedt5072c592008-05-12 21:20:43 +02003355
3356 return 0;
3357}
3358
James Morris88e9d342009-09-22 16:43:43 -07003359static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003360 .start = t_start,
3361 .next = t_next,
3362 .stop = t_stop,
3363 .show = t_show,
3364};
3365
Ingo Molnare309b412008-05-12 21:20:51 +02003366static int
Steven Rostedt5072c592008-05-12 21:20:43 +02003367ftrace_avail_open(struct inode *inode, struct file *file)
3368{
3369 struct ftrace_iterator *iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003370
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003371 if (unlikely(ftrace_disabled))
3372 return -ENODEV;
3373
Jiri Olsa50e18b92012-04-25 10:23:39 +02003374 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003375 if (!iter)
3376 return -ENOMEM;
Steven Rostedt5072c592008-05-12 21:20:43 +02003377
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003378 iter->pg = ftrace_pages_start;
3379 iter->ops = &global_ops;
3380
3381 return 0;
Steven Rostedt5072c592008-05-12 21:20:43 +02003382}
3383
Steven Rostedt647bcd02011-05-03 14:39:21 -04003384static int
3385ftrace_enabled_open(struct inode *inode, struct file *file)
3386{
3387 struct ftrace_iterator *iter;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003388
Jiri Olsa50e18b92012-04-25 10:23:39 +02003389 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003390 if (!iter)
3391 return -ENOMEM;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003392
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003393 iter->pg = ftrace_pages_start;
3394 iter->flags = FTRACE_ITER_ENABLED;
3395 iter->ops = &global_ops;
3396
3397 return 0;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003398}
3399
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003400/**
3401 * ftrace_regex_open - initialize function tracer filter files
3402 * @ops: The ftrace_ops that hold the hash filters
3403 * @flag: The type of filter to process
3404 * @inode: The inode, usually passed in to your open routine
3405 * @file: The file, usually passed in to your open routine
3406 *
3407 * ftrace_regex_open() initializes the filter files for the
3408 * @ops. Depending on @flag it may process the filter hash or
3409 * the notrace hash of @ops. With this called from the open
3410 * routine, you can use ftrace_filter_write() for the write
3411 * routine if @flag has FTRACE_ITER_FILTER set, or
3412 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05003413 * tracing_lseek() should be used as the lseek routine, and
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003414 * release must call ftrace_regex_release().
3415 */
3416int
Steven Rostedtf45948e2011-05-02 12:29:25 -04003417ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003418 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003419{
3420 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003421 struct ftrace_hash *hash;
Steven Rostedt5072c592008-05-12 21:20:43 +02003422 int ret = 0;
3423
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003424 ftrace_ops_init(ops);
3425
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003426 if (unlikely(ftrace_disabled))
3427 return -ENODEV;
3428
Steven Rostedt5072c592008-05-12 21:20:43 +02003429 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3430 if (!iter)
3431 return -ENOMEM;
3432
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003433 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
3434 kfree(iter);
3435 return -ENOMEM;
3436 }
3437
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003438 iter->ops = ops;
3439 iter->flags = flag;
3440
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003441 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003442
Steven Rostedtf45948e2011-05-02 12:29:25 -04003443 if (flag & FTRACE_ITER_NOTRACE)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003444 hash = ops->func_hash->notrace_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003445 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003446 hash = ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003447
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003448 if (file->f_mode & FMODE_WRITE) {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003449 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
3450
3451 if (file->f_flags & O_TRUNC)
3452 iter->hash = alloc_ftrace_hash(size_bits);
3453 else
3454 iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash);
3455
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003456 if (!iter->hash) {
3457 trace_parser_put(&iter->parser);
3458 kfree(iter);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003459 ret = -ENOMEM;
3460 goto out_unlock;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003461 }
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04003462 } else
3463 iter->hash = hash;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003464
Steven Rostedt5072c592008-05-12 21:20:43 +02003465 if (file->f_mode & FMODE_READ) {
3466 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02003467
3468 ret = seq_open(file, &show_ftrace_seq_ops);
3469 if (!ret) {
3470 struct seq_file *m = file->private_data;
3471 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08003472 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003473 /* Failed */
3474 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08003475 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003476 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08003477 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003478 } else
3479 file->private_data = iter;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003480
3481 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003482 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003483
3484 return ret;
3485}
3486
Steven Rostedt41c52c02008-05-22 11:46:33 -04003487static int
3488ftrace_filter_open(struct inode *inode, struct file *file)
3489{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003490 struct ftrace_ops *ops = inode->i_private;
3491
3492 return ftrace_regex_open(ops,
Steven Rostedt69a30832011-12-19 15:21:16 -05003493 FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH,
3494 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003495}
3496
3497static int
3498ftrace_notrace_open(struct inode *inode, struct file *file)
3499{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003500 struct ftrace_ops *ops = inode->i_private;
3501
3502 return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003503 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003504}
3505
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003506/* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */
3507struct ftrace_glob {
3508 char *search;
3509 unsigned len;
3510 int type;
3511};
3512
Thiago Jung Bauermann7132e2d2016-04-25 18:56:14 -03003513/*
3514 * If symbols in an architecture don't correspond exactly to the user-visible
3515 * name of what they represent, it is possible to define this function to
3516 * perform the necessary adjustments.
3517*/
3518char * __weak arch_ftrace_match_adjust(char *str, const char *search)
3519{
3520 return str;
3521}
3522
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003523static int ftrace_match(char *str, struct ftrace_glob *g)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003524{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003525 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08003526 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003527
Thiago Jung Bauermann7132e2d2016-04-25 18:56:14 -03003528 str = arch_ftrace_match_adjust(str, g->search);
3529
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003530 switch (g->type) {
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003531 case MATCH_FULL:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003532 if (strcmp(str, g->search) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003533 matched = 1;
3534 break;
3535 case MATCH_FRONT_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003536 if (strncmp(str, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003537 matched = 1;
3538 break;
3539 case MATCH_MIDDLE_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003540 if (strstr(str, g->search))
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003541 matched = 1;
3542 break;
3543 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08003544 slen = strlen(str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003545 if (slen >= g->len &&
3546 memcmp(str + slen - g->len, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003547 matched = 1;
3548 break;
Masami Hiramatsu60f1d5e2016-10-05 20:58:15 +09003549 case MATCH_GLOB:
3550 if (glob_match(g->search, str))
3551 matched = 1;
3552 break;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003553 }
3554
3555 return matched;
3556}
3557
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003558static int
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003559enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int clear_filter)
Steven Rostedt996e87b2011-04-26 16:11:03 -04003560{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003561 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003562 int ret = 0;
3563
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003564 entry = ftrace_lookup_ip(hash, rec->ip);
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003565 if (clear_filter) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003566 /* Do nothing if it doesn't exist */
3567 if (!entry)
3568 return 0;
3569
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003570 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003571 } else {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003572 /* Do nothing if it exists */
3573 if (entry)
3574 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003575
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003576 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003577 }
3578 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04003579}
3580
Steven Rostedt64e7c442009-02-13 17:08:48 -05003581static int
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003582ftrace_match_record(struct dyn_ftrace *rec, struct ftrace_glob *func_g,
3583 struct ftrace_glob *mod_g, int exclude_mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003584{
3585 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003586 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003587
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003588 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
3589
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003590 if (mod_g) {
3591 int mod_matches = (modname) ? ftrace_match(modname, mod_g) : 0;
3592
3593 /* blank module name to match all modules */
3594 if (!mod_g->len) {
3595 /* blank module globbing: modname xor exclude_mod */
3596 if ((!exclude_mod) != (!modname))
3597 goto func_match;
3598 return 0;
3599 }
3600
3601 /* not matching the module */
3602 if (!modname || !mod_matches) {
3603 if (exclude_mod)
3604 goto func_match;
3605 else
3606 return 0;
3607 }
3608
3609 if (mod_matches && exclude_mod)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003610 return 0;
3611
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003612func_match:
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003613 /* blank search means to match all funcs in the mod */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003614 if (!func_g->len)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003615 return 1;
3616 }
3617
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003618 return ftrace_match(str, func_g);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003619}
3620
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003621static int
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003622match_records(struct ftrace_hash *hash, char *func, int len, char *mod)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003623{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003624 struct ftrace_page *pg;
3625 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003626 struct ftrace_glob func_g = { .type = MATCH_FULL };
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003627 struct ftrace_glob mod_g = { .type = MATCH_FULL };
3628 struct ftrace_glob *mod_match = (mod) ? &mod_g : NULL;
3629 int exclude_mod = 0;
Li Zefan311d16d2009-12-08 11:15:11 +08003630 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003631 int ret;
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003632 int clear_filter;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003633
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003634 if (func) {
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003635 func_g.type = filter_parse_regex(func, len, &func_g.search,
3636 &clear_filter);
3637 func_g.len = strlen(func_g.search);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003638 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003639
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003640 if (mod) {
3641 mod_g.type = filter_parse_regex(mod, strlen(mod),
3642 &mod_g.search, &exclude_mod);
3643 mod_g.len = strlen(mod_g.search);
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003644 }
3645
Steven Rostedt52baf112009-02-14 01:15:39 -05003646 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003647
3648 if (unlikely(ftrace_disabled))
3649 goto out_unlock;
3650
Steven Rostedt265c8312009-02-13 12:43:56 -05003651 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05003652
3653 if (rec->flags & FTRACE_FL_DISABLED)
3654 continue;
3655
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003656 if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) {
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003657 ret = enter_record(hash, rec, clear_filter);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003658 if (ret < 0) {
3659 found = ret;
3660 goto out_unlock;
3661 }
Li Zefan311d16d2009-12-08 11:15:11 +08003662 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05003663 }
3664 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003665 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05003666 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08003667
3668 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02003669}
3670
Steven Rostedt64e7c442009-02-13 17:08:48 -05003671static int
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003672ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003673{
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003674 return match_records(hash, buff, len, NULL);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003675}
3676
Steven Rostedt64e7c442009-02-13 17:08:48 -05003677
Steven Rostedtf6180772009-02-14 00:40:25 -05003678/*
3679 * We register the module command as a template to show others how
3680 * to register the a command as well.
3681 */
3682
3683static int
Steven Rostedt43dd61c2011-07-07 11:09:22 -04003684ftrace_mod_callback(struct ftrace_hash *hash,
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003685 char *func, char *cmd, char *module, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05003686{
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03003687 int ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05003688
3689 /*
3690 * cmd == 'mod' because we only registered this func
3691 * for the 'mod' ftrace_func_command.
3692 * But if you register one func with multiple commands,
3693 * you can tell which command was used by the cmd
3694 * parameter.
3695 */
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003696 ret = match_records(hash, func, strlen(func), module);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003697 if (!ret)
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03003698 return -EINVAL;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003699 if (ret < 0)
3700 return ret;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003701 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05003702}
3703
3704static struct ftrace_func_command ftrace_mod_cmd = {
3705 .name = "mod",
3706 .func = ftrace_mod_callback,
3707};
3708
3709static int __init ftrace_mod_cmd_init(void)
3710{
3711 return register_ftrace_command(&ftrace_mod_cmd);
3712}
Steven Rostedt6f415672012-10-05 12:13:07 -04003713core_initcall(ftrace_mod_cmd_init);
Steven Rostedtf6180772009-02-14 00:40:25 -05003714
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04003715static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04003716 struct ftrace_ops *op, struct pt_regs *pt_regs)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003717{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003718 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003719 struct hlist_head *hhd;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003720 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003721
3722 key = hash_long(ip, FTRACE_HASH_BITS);
3723
3724 hhd = &ftrace_func_hash[key];
3725
3726 if (hlist_empty(hhd))
3727 return;
3728
3729 /*
3730 * Disable preemption for these calls to prevent a RCU grace
3731 * period. This syncs the hash iteration and freeing of items
3732 * on the hash. rcu_read_lock is too dangerous here.
3733 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04003734 preempt_disable_notrace();
Steven Rostedt1bb539c2013-05-28 14:38:43 -04003735 hlist_for_each_entry_rcu_notrace(entry, hhd, node) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003736 if (entry->ip == ip)
Steven Rostedt (VMware)1a48df02017-04-04 10:27:51 -04003737 entry->ops->func(ip, parent_ip, entry->ops, NULL);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003738 }
Steven Rostedt5168ae52010-06-03 09:36:50 -04003739 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05003740}
3741
Steven Rostedtb6887d72009-02-17 12:32:04 -05003742static struct ftrace_ops trace_probe_ops __read_mostly =
Steven Rostedt59df055f2009-02-14 15:29:06 -05003743{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04003744 .func = function_trace_probe_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003745 .flags = FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003746 INIT_OPS_HASH(trace_probe_ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003747};
3748
Steven Rostedtb6887d72009-02-17 12:32:04 -05003749static int ftrace_probe_registered;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003750
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003751static void __enable_ftrace_function_probe(struct ftrace_ops_hash *old_hash)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003752{
Steven Rostedtb8489142011-05-04 09:27:52 -04003753 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003754 int i;
3755
Steven Rostedt (Red Hat)19dd6032013-05-09 19:37:36 -04003756 if (ftrace_probe_registered) {
3757 /* still need to update the function call sites */
3758 if (ftrace_enabled)
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003759 ftrace_run_modify_code(&trace_probe_ops, FTRACE_UPDATE_CALLS,
3760 old_hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003761 return;
Steven Rostedt (Red Hat)19dd6032013-05-09 19:37:36 -04003762 }
Steven Rostedt59df055f2009-02-14 15:29:06 -05003763
3764 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3765 struct hlist_head *hhd = &ftrace_func_hash[i];
3766 if (hhd->first)
3767 break;
3768 }
3769 /* Nothing registered? */
3770 if (i == FTRACE_FUNC_HASHSIZE)
3771 return;
3772
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05003773 ret = ftrace_startup(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04003774
Steven Rostedtb6887d72009-02-17 12:32:04 -05003775 ftrace_probe_registered = 1;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003776}
3777
Steven Rostedt (VMware)acceb722017-04-14 17:45:45 -04003778static bool __disable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003779{
3780 int i;
3781
Steven Rostedtb6887d72009-02-17 12:32:04 -05003782 if (!ftrace_probe_registered)
Steven Rostedt (VMware)acceb722017-04-14 17:45:45 -04003783 return false;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003784
3785 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3786 struct hlist_head *hhd = &ftrace_func_hash[i];
3787 if (hhd->first)
Steven Rostedt (VMware)acceb722017-04-14 17:45:45 -04003788 return false;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003789 }
3790
3791 /* no more funcs left */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05003792 ftrace_shutdown(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04003793
Steven Rostedtb6887d72009-02-17 12:32:04 -05003794 ftrace_probe_registered = 0;
Steven Rostedt (VMware)acceb722017-04-14 17:45:45 -04003795 return true;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003796}
3797
3798
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003799static void ftrace_free_entry(struct ftrace_func_probe *entry)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003800{
Steven Rostedt59df055f2009-02-14 15:29:06 -05003801 if (entry->ops->free)
Steven Rostedt (VMware)1a48df02017-04-04 10:27:51 -04003802 entry->ops->free(entry->ops, entry->ip, NULL);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003803 kfree(entry);
3804}
3805
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04003806struct ftrace_func_map {
3807 struct ftrace_func_entry entry;
3808 void *data;
3809};
3810
3811struct ftrace_func_mapper {
3812 struct ftrace_hash hash;
3813};
3814
3815/**
3816 * allocate_ftrace_func_mapper - allocate a new ftrace_func_mapper
3817 *
3818 * Returns a ftrace_func_mapper descriptor that can be used to map ips to data.
3819 */
3820struct ftrace_func_mapper *allocate_ftrace_func_mapper(void)
3821{
3822 struct ftrace_hash *hash;
3823
3824 /*
3825 * The mapper is simply a ftrace_hash, but since the entries
3826 * in the hash are not ftrace_func_entry type, we define it
3827 * as a separate structure.
3828 */
3829 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
3830 return (struct ftrace_func_mapper *)hash;
3831}
3832
3833/**
3834 * ftrace_func_mapper_find_ip - Find some data mapped to an ip
3835 * @mapper: The mapper that has the ip maps
3836 * @ip: the instruction pointer to find the data for
3837 *
3838 * Returns the data mapped to @ip if found otherwise NULL. The return
3839 * is actually the address of the mapper data pointer. The address is
3840 * returned for use cases where the data is no bigger than a long, and
3841 * the user can use the data pointer as its data instead of having to
3842 * allocate more memory for the reference.
3843 */
3844void **ftrace_func_mapper_find_ip(struct ftrace_func_mapper *mapper,
3845 unsigned long ip)
3846{
3847 struct ftrace_func_entry *entry;
3848 struct ftrace_func_map *map;
3849
3850 entry = ftrace_lookup_ip(&mapper->hash, ip);
3851 if (!entry)
3852 return NULL;
3853
3854 map = (struct ftrace_func_map *)entry;
3855 return &map->data;
3856}
3857
3858/**
3859 * ftrace_func_mapper_add_ip - Map some data to an ip
3860 * @mapper: The mapper that has the ip maps
3861 * @ip: The instruction pointer address to map @data to
3862 * @data: The data to map to @ip
3863 *
3864 * Returns 0 on succes otherwise an error.
3865 */
3866int ftrace_func_mapper_add_ip(struct ftrace_func_mapper *mapper,
3867 unsigned long ip, void *data)
3868{
3869 struct ftrace_func_entry *entry;
3870 struct ftrace_func_map *map;
3871
3872 entry = ftrace_lookup_ip(&mapper->hash, ip);
3873 if (entry)
3874 return -EBUSY;
3875
3876 map = kmalloc(sizeof(*map), GFP_KERNEL);
3877 if (!map)
3878 return -ENOMEM;
3879
3880 map->entry.ip = ip;
3881 map->data = data;
3882
3883 __add_hash_entry(&mapper->hash, &map->entry);
3884
3885 return 0;
3886}
3887
3888/**
3889 * ftrace_func_mapper_remove_ip - Remove an ip from the mapping
3890 * @mapper: The mapper that has the ip maps
3891 * @ip: The instruction pointer address to remove the data from
3892 *
3893 * Returns the data if it is found, otherwise NULL.
3894 * Note, if the data pointer is used as the data itself, (see
3895 * ftrace_func_mapper_find_ip(), then the return value may be meaningless,
3896 * if the data pointer was set to zero.
3897 */
3898void *ftrace_func_mapper_remove_ip(struct ftrace_func_mapper *mapper,
3899 unsigned long ip)
3900{
3901 struct ftrace_func_entry *entry;
3902 struct ftrace_func_map *map;
3903 void *data;
3904
3905 entry = ftrace_lookup_ip(&mapper->hash, ip);
3906 if (!entry)
3907 return NULL;
3908
3909 map = (struct ftrace_func_map *)entry;
3910 data = map->data;
3911
3912 remove_hash_entry(&mapper->hash, entry);
3913 kfree(entry);
3914
3915 return data;
3916}
3917
3918/**
3919 * free_ftrace_func_mapper - free a mapping of ips and data
3920 * @mapper: The mapper that has the ip maps
3921 * @free_func: A function to be called on each data item.
3922 *
3923 * This is used to free the function mapper. The @free_func is optional
3924 * and can be used if the data needs to be freed as well.
3925 */
3926void free_ftrace_func_mapper(struct ftrace_func_mapper *mapper,
3927 ftrace_mapper_func free_func)
3928{
3929 struct ftrace_func_entry *entry;
3930 struct ftrace_func_map *map;
3931 struct hlist_head *hhd;
3932 int size = 1 << mapper->hash.size_bits;
3933 int i;
3934
3935 if (free_func && mapper->hash.count) {
3936 for (i = 0; i < size; i++) {
3937 hhd = &mapper->hash.buckets[i];
3938 hlist_for_each_entry(entry, hhd, hlist) {
3939 map = (struct ftrace_func_map *)entry;
3940 free_func(map);
3941 }
3942 }
3943 }
3944 free_ftrace_hash(&mapper->hash);
3945}
3946
Steven Rostedt59df055f2009-02-14 15:29:06 -05003947int
Steven Rostedtb6887d72009-02-17 12:32:04 -05003948register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003949 void *data)
3950{
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003951 struct ftrace_ops_hash old_hash_ops;
Steven Rostedtb6887d72009-02-17 12:32:04 -05003952 struct ftrace_func_probe *entry;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003953 struct ftrace_glob func_g;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003954 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003955 struct ftrace_hash *old_hash = *orig_hash;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003956 struct ftrace_hash *hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003957 struct ftrace_page *pg;
3958 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003959 int not;
Steven Rostedt6a24a242009-02-17 11:20:26 -05003960 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003961 int count = 0;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003962 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003963
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003964 func_g.type = filter_parse_regex(glob, strlen(glob),
3965 &func_g.search, &not);
3966 func_g.len = strlen(func_g.search);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003967
Steven Rostedtb6887d72009-02-17 12:32:04 -05003968 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003969 if (WARN_ON(not))
3970 return -EINVAL;
3971
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003972 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003973
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003974 old_hash_ops.filter_hash = old_hash;
3975 /* Probes only have filters */
3976 old_hash_ops.notrace_hash = NULL;
3977
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003978 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003979 if (!hash) {
3980 count = -ENOMEM;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003981 goto out;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003982 }
3983
3984 if (unlikely(ftrace_disabled)) {
3985 count = -ENODEV;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003986 goto out;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003987 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04003988
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003989 mutex_lock(&ftrace_lock);
3990
Steven Rostedt59df055f2009-02-14 15:29:06 -05003991 do_for_each_ftrace_rec(pg, rec) {
3992
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05003993 if (rec->flags & FTRACE_FL_DISABLED)
3994 continue;
3995
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003996 if (!ftrace_match_record(rec, &func_g, NULL, 0))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003997 continue;
3998
3999 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
4000 if (!entry) {
Steven Rostedtb6887d72009-02-17 12:32:04 -05004001 /* If we did not process any, then return error */
Steven Rostedt59df055f2009-02-14 15:29:06 -05004002 if (!count)
4003 count = -ENOMEM;
4004 goto out_unlock;
4005 }
4006
4007 count++;
4008
Steven Rostedt59df055f2009-02-14 15:29:06 -05004009 /*
4010 * The caller might want to do something special
4011 * for each function we find. We call the callback
4012 * to give the caller an opportunity to do so.
4013 */
Steven Rostedt (Red Hat)e67efb92013-03-12 15:07:59 -04004014 if (ops->init) {
Steven Rostedt (VMware)1a48df02017-04-04 10:27:51 -04004015 if (ops->init(ops, rec->ip, data) < 0) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05004016 /* caller does not like this func */
4017 kfree(entry);
4018 continue;
4019 }
4020 }
4021
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004022 ret = enter_record(hash, rec, 0);
4023 if (ret < 0) {
4024 kfree(entry);
4025 count = ret;
4026 goto out_unlock;
4027 }
4028
Steven Rostedt59df055f2009-02-14 15:29:06 -05004029 entry->ops = ops;
4030 entry->ip = rec->ip;
4031
4032 key = hash_long(entry->ip, FTRACE_HASH_BITS);
4033 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
4034
4035 } while_for_each_ftrace_rec();
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004036
4037 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04004038
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004039 __enable_ftrace_function_probe(&old_hash_ops);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04004040
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004041 if (!ret)
4042 free_ftrace_hash_rcu(old_hash);
4043 else
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004044 count = ret;
4045
Steven Rostedt59df055f2009-02-14 15:29:06 -05004046 out_unlock:
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04004047 mutex_unlock(&ftrace_lock);
4048 out:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004049 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004050 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004051
4052 return count;
4053}
4054
Steven Rostedt (VMware)78f78e02017-04-04 13:39:59 -04004055void
4056unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004057{
Steven Rostedt (VMware)acceb722017-04-14 17:45:45 -04004058 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004059 struct ftrace_func_entry *rec_entry;
Steven Rostedtb6887d72009-02-17 12:32:04 -05004060 struct ftrace_func_probe *entry;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004061 struct ftrace_func_probe *p;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004062 struct ftrace_glob func_g;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004063 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004064 struct ftrace_hash *old_hash = *orig_hash;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004065 struct list_head free_list;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004066 struct ftrace_hash *hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -08004067 struct hlist_node *tmp;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004068 char str[KSYM_SYMBOL_LEN];
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004069 int i, ret;
Steven Rostedt (VMware)acceb722017-04-14 17:45:45 -04004070 bool disabled;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004071
Atsushi Tsujib36461d2009-09-15 19:06:30 +09004072 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004073 func_g.search = NULL;
Atsushi Tsujib36461d2009-09-15 19:06:30 +09004074 else if (glob) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05004075 int not;
4076
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004077 func_g.type = filter_parse_regex(glob, strlen(glob),
4078 &func_g.search, &not);
4079 func_g.len = strlen(func_g.search);
4080 func_g.search = glob;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004081
Steven Rostedtb6887d72009-02-17 12:32:04 -05004082 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05004083 if (WARN_ON(not))
4084 return;
4085 }
4086
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004087 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004088
Steven Rostedt (VMware)acceb722017-04-14 17:45:45 -04004089 old_hash_ops.filter_hash = old_hash;
4090 /* Probes only have filters */
4091 old_hash_ops.notrace_hash = NULL;
4092
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004093 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
4094 if (!hash)
4095 /* Hmm, should report this somehow */
4096 goto out_unlock;
4097
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004098 INIT_LIST_HEAD(&free_list);
4099
Steven Rostedt59df055f2009-02-14 15:29:06 -05004100 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
4101 struct hlist_head *hhd = &ftrace_func_hash[i];
4102
Sasha Levinb67bfe02013-02-27 17:06:00 -08004103 hlist_for_each_entry_safe(entry, tmp, hhd, node) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05004104
4105 /* break up if statements for readability */
Steven Rostedt (VMware)78f78e02017-04-04 13:39:59 -04004106 if (entry->ops != ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004107 continue;
4108
Steven Rostedt59df055f2009-02-14 15:29:06 -05004109 /* do this last, since it is the most expensive */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004110 if (func_g.search) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05004111 kallsyms_lookup(entry->ip, NULL, NULL,
4112 NULL, str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004113 if (!ftrace_match(str, &func_g))
Steven Rostedt59df055f2009-02-14 15:29:06 -05004114 continue;
4115 }
4116
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004117 rec_entry = ftrace_lookup_ip(hash, entry->ip);
4118 /* It is possible more than one entry had this ip */
4119 if (rec_entry)
4120 free_hash_entry(hash, rec_entry);
4121
Steven Rostedt (Red Hat)740466b2013-03-13 11:15:19 -04004122 hlist_del_rcu(&entry->node);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004123 list_add(&entry->free_list, &free_list);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004124 }
4125 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004126 mutex_lock(&ftrace_lock);
Steven Rostedt (VMware)acceb722017-04-14 17:45:45 -04004127 disabled = __disable_ftrace_function_probe();
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004128 /*
4129 * Remove after the disable is called. Otherwise, if the last
4130 * probe is removed, a null hash means *all enabled*.
4131 */
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004132 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
Steven Rostedt (VMware)acceb722017-04-14 17:45:45 -04004133
4134 /* still need to update the function call sites */
4135 if (ftrace_enabled && !disabled)
4136 ftrace_run_modify_code(&trace_probe_ops, FTRACE_UPDATE_CALLS,
4137 &old_hash_ops);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004138 synchronize_sched();
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004139 if (!ret)
4140 free_ftrace_hash_rcu(old_hash);
4141
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004142 list_for_each_entry_safe(entry, p, &free_list, free_list) {
4143 list_del(&entry->free_list);
4144 ftrace_free_entry(entry);
4145 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004146 mutex_unlock(&ftrace_lock);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004147
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004148 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004149 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004150 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004151}
4152
Steven Rostedtf6180772009-02-14 00:40:25 -05004153static LIST_HEAD(ftrace_commands);
4154static DEFINE_MUTEX(ftrace_cmd_mutex);
4155
Tom Zanussi38de93a2013-10-24 08:34:18 -05004156/*
4157 * Currently we only register ftrace commands from __init, so mark this
4158 * __init too.
4159 */
4160__init int register_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05004161{
4162 struct ftrace_func_command *p;
4163 int ret = 0;
4164
4165 mutex_lock(&ftrace_cmd_mutex);
4166 list_for_each_entry(p, &ftrace_commands, list) {
4167 if (strcmp(cmd->name, p->name) == 0) {
4168 ret = -EBUSY;
4169 goto out_unlock;
4170 }
4171 }
4172 list_add(&cmd->list, &ftrace_commands);
4173 out_unlock:
4174 mutex_unlock(&ftrace_cmd_mutex);
4175
4176 return ret;
4177}
4178
Tom Zanussi38de93a2013-10-24 08:34:18 -05004179/*
4180 * Currently we only unregister ftrace commands from __init, so mark
4181 * this __init too.
4182 */
4183__init int unregister_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05004184{
4185 struct ftrace_func_command *p, *n;
4186 int ret = -ENODEV;
4187
4188 mutex_lock(&ftrace_cmd_mutex);
4189 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
4190 if (strcmp(cmd->name, p->name) == 0) {
4191 ret = 0;
4192 list_del_init(&p->list);
4193 goto out_unlock;
4194 }
4195 }
4196 out_unlock:
4197 mutex_unlock(&ftrace_cmd_mutex);
4198
4199 return ret;
4200}
4201
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004202static int ftrace_process_regex(struct ftrace_hash *hash,
4203 char *buff, int len, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05004204{
Steven Rostedtf6180772009-02-14 00:40:25 -05004205 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05004206 struct ftrace_func_command *p;
GuoWen Li0aff1c02011-06-01 19:18:47 +08004207 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004208
4209 func = strsep(&next, ":");
4210
4211 if (!next) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004212 ret = ftrace_match_records(hash, func, len);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004213 if (!ret)
4214 ret = -EINVAL;
4215 if (ret < 0)
4216 return ret;
4217 return 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004218 }
4219
Steven Rostedtf6180772009-02-14 00:40:25 -05004220 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05004221
4222 command = strsep(&next, ":");
4223
Steven Rostedtf6180772009-02-14 00:40:25 -05004224 mutex_lock(&ftrace_cmd_mutex);
4225 list_for_each_entry(p, &ftrace_commands, list) {
4226 if (strcmp(p->name, command) == 0) {
Steven Rostedt43dd61c2011-07-07 11:09:22 -04004227 ret = p->func(hash, func, command, next, enable);
Steven Rostedtf6180772009-02-14 00:40:25 -05004228 goto out_unlock;
4229 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05004230 }
Steven Rostedtf6180772009-02-14 00:40:25 -05004231 out_unlock:
4232 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05004233
Steven Rostedtf6180772009-02-14 00:40:25 -05004234 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004235}
4236
Ingo Molnare309b412008-05-12 21:20:51 +02004237static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004238ftrace_regex_write(struct file *file, const char __user *ubuf,
4239 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02004240{
4241 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004242 struct trace_parser *parser;
4243 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02004244
Li Zefan4ba79782009-09-22 13:52:20 +08004245 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02004246 return 0;
4247
Steven Rostedt5072c592008-05-12 21:20:43 +02004248 if (file->f_mode & FMODE_READ) {
4249 struct seq_file *m = file->private_data;
4250 iter = m->private;
4251 } else
4252 iter = file->private_data;
4253
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004254 if (unlikely(ftrace_disabled))
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004255 return -ENODEV;
4256
4257 /* iter->hash is a local copy, so we don't need regex_lock */
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004258
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004259 parser = &iter->parser;
4260 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02004261
Li Zefan4ba79782009-09-22 13:52:20 +08004262 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004263 !trace_parser_cont(parser)) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004264 ret = ftrace_process_regex(iter->hash, parser->buffer,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004265 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08004266 trace_parser_clear(parser);
Steven Rostedt (Red Hat)7c088b52013-05-09 11:35:12 -04004267 if (ret < 0)
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004268 goto out;
Steven Rostedt5072c592008-05-12 21:20:43 +02004269 }
4270
Steven Rostedt5072c592008-05-12 21:20:43 +02004271 ret = read;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004272 out:
Steven Rostedt5072c592008-05-12 21:20:43 +02004273 return ret;
4274}
4275
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004276ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004277ftrace_filter_write(struct file *file, const char __user *ubuf,
4278 size_t cnt, loff_t *ppos)
4279{
4280 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
4281}
4282
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004283ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004284ftrace_notrace_write(struct file *file, const char __user *ubuf,
4285 size_t cnt, loff_t *ppos)
4286{
4287 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
4288}
4289
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004290static int
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004291ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
4292{
4293 struct ftrace_func_entry *entry;
4294
4295 if (!ftrace_location(ip))
4296 return -EINVAL;
4297
4298 if (remove) {
4299 entry = ftrace_lookup_ip(hash, ip);
4300 if (!entry)
4301 return -ENOENT;
4302 free_hash_entry(hash, entry);
4303 return 0;
4304 }
4305
4306 return add_hash_entry(hash, ip);
4307}
4308
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04004309static void ftrace_ops_update_code(struct ftrace_ops *ops,
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004310 struct ftrace_ops_hash *old_hash)
Steven Rostedt (Red Hat)1c80c432013-07-25 20:22:00 -04004311{
Steven Rostedt (Red Hat)8f86f832015-01-13 11:20:43 -05004312 struct ftrace_ops *op;
4313
4314 if (!ftrace_enabled)
4315 return;
4316
4317 if (ops->flags & FTRACE_OPS_FL_ENABLED) {
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04004318 ftrace_run_modify_code(ops, FTRACE_UPDATE_CALLS, old_hash);
Steven Rostedt (Red Hat)8f86f832015-01-13 11:20:43 -05004319 return;
4320 }
4321
4322 /*
4323 * If this is the shared global_ops filter, then we need to
4324 * check if there is another ops that shares it, is enabled.
4325 * If so, we still need to run the modify code.
4326 */
4327 if (ops->func_hash != &global_ops.local_hash)
4328 return;
4329
4330 do_for_each_ftrace_op(op, ftrace_ops_list) {
4331 if (op->func_hash == &global_ops.local_hash &&
4332 op->flags & FTRACE_OPS_FL_ENABLED) {
4333 ftrace_run_modify_code(op, FTRACE_UPDATE_CALLS, old_hash);
4334 /* Only need to do this once */
4335 return;
4336 }
4337 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)1c80c432013-07-25 20:22:00 -04004338}
4339
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004340static int
4341ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
4342 unsigned long ip, int remove, int reset, int enable)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004343{
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004344 struct ftrace_hash **orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004345 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004346 struct ftrace_hash *old_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004347 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004348 int ret;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004349
Steven Rostedt41c52c02008-05-22 11:46:33 -04004350 if (unlikely(ftrace_disabled))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004351 return -ENODEV;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004352
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004353 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004354
Steven Rostedtf45948e2011-05-02 12:29:25 -04004355 if (enable)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004356 orig_hash = &ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004357 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004358 orig_hash = &ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004359
Wang Nanb972cc52014-07-15 08:40:20 +08004360 if (reset)
4361 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4362 else
4363 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
4364
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004365 if (!hash) {
4366 ret = -ENOMEM;
4367 goto out_regex_unlock;
4368 }
Steven Rostedtf45948e2011-05-02 12:29:25 -04004369
Jiri Olsaac483c42012-01-02 10:04:14 +01004370 if (buf && !ftrace_match_records(hash, buf, len)) {
4371 ret = -EINVAL;
4372 goto out_regex_unlock;
4373 }
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004374 if (ip) {
4375 ret = ftrace_match_addr(hash, ip, remove);
4376 if (ret < 0)
4377 goto out_regex_unlock;
4378 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004379
4380 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004381 old_hash = *orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004382 old_hash_ops.filter_hash = ops->func_hash->filter_hash;
4383 old_hash_ops.notrace_hash = ops->func_hash->notrace_hash;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04004384 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004385 if (!ret) {
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004386 ftrace_ops_update_code(ops, &old_hash_ops);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004387 free_ftrace_hash_rcu(old_hash);
4388 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004389 mutex_unlock(&ftrace_lock);
4390
Jiri Olsaac483c42012-01-02 10:04:14 +01004391 out_regex_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004392 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004393
4394 free_ftrace_hash(hash);
4395 return ret;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004396}
4397
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004398static int
4399ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove,
4400 int reset, int enable)
4401{
4402 return ftrace_set_hash(ops, 0, 0, ip, remove, reset, enable);
4403}
4404
4405/**
4406 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
4407 * @ops - the ops to set the filter with
4408 * @ip - the address to add to or remove from the filter.
4409 * @remove - non zero to remove the ip from the filter
4410 * @reset - non zero to reset all filters before applying this filter.
4411 *
4412 * Filters denote which functions should be enabled when tracing is enabled
4413 * If @ip is NULL, it failes to update filter.
4414 */
4415int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
4416 int remove, int reset)
4417{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004418 ftrace_ops_init(ops);
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004419 return ftrace_set_addr(ops, ip, remove, reset, 1);
4420}
4421EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
4422
Joel Fernandesd032ae82016-11-15 12:31:20 -08004423/**
4424 * ftrace_ops_set_global_filter - setup ops to use global filters
4425 * @ops - the ops which will use the global filters
4426 *
4427 * ftrace users who need global function trace filtering should call this.
4428 * It can set the global filter only if ops were not initialized before.
4429 */
4430void ftrace_ops_set_global_filter(struct ftrace_ops *ops)
4431{
4432 if (ops->flags & FTRACE_OPS_FL_INITIALIZED)
4433 return;
4434
4435 ftrace_ops_init(ops);
4436 ops->func_hash = &global_ops.local_hash;
4437}
4438EXPORT_SYMBOL_GPL(ftrace_ops_set_global_filter);
4439
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004440static int
4441ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
4442 int reset, int enable)
4443{
4444 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
4445}
4446
Steven Rostedt77a2b372008-05-12 21:20:45 +02004447/**
4448 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004449 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02004450 * @buf - the string that holds the function filter text.
4451 * @len - the length of the string.
4452 * @reset - non zero to reset all filters before applying this filter.
4453 *
4454 * Filters denote which functions should be enabled when tracing is enabled.
4455 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4456 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004457int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004458 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02004459{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004460 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004461 return ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04004462}
Steven Rostedt936e0742011-05-05 22:54:01 -04004463EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004464
Steven Rostedt41c52c02008-05-22 11:46:33 -04004465/**
4466 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004467 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04004468 * @buf - the string that holds the function notrace text.
4469 * @len - the length of the string.
4470 * @reset - non zero to reset all filters before applying this filter.
4471 *
4472 * Notrace Filters denote which functions should not be enabled when tracing
4473 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4474 * for tracing.
4475 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004476int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004477 int len, int reset)
4478{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004479 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004480 return ftrace_set_regex(ops, buf, len, reset, 0);
Steven Rostedt936e0742011-05-05 22:54:01 -04004481}
4482EXPORT_SYMBOL_GPL(ftrace_set_notrace);
4483/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004484 * ftrace_set_global_filter - set a function to filter on with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004485 * @buf - the string that holds the function filter text.
4486 * @len - the length of the string.
4487 * @reset - non zero to reset all filters before applying this filter.
4488 *
4489 * Filters denote which functions should be enabled when tracing is enabled.
4490 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4491 */
4492void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
4493{
4494 ftrace_set_regex(&global_ops, buf, len, reset, 1);
4495}
4496EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
4497
4498/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004499 * ftrace_set_global_notrace - set a function to not trace with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004500 * @buf - the string that holds the function notrace text.
4501 * @len - the length of the string.
4502 * @reset - non zero to reset all filters before applying this filter.
4503 *
4504 * Notrace Filters denote which functions should not be enabled when tracing
4505 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4506 * for tracing.
4507 */
4508void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004509{
Steven Rostedtf45948e2011-05-02 12:29:25 -04004510 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004511}
Steven Rostedt936e0742011-05-05 22:54:01 -04004512EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004513
Steven Rostedt2af15d62009-05-28 13:37:24 -04004514/*
4515 * command line interface to allow users to set filters on boot up.
4516 */
4517#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
4518static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4519static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
4520
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004521/* Used by function selftest to not test if filter is set */
4522bool ftrace_filter_param __initdata;
4523
Steven Rostedt2af15d62009-05-28 13:37:24 -04004524static int __init set_ftrace_notrace(char *str)
4525{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004526 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004527 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004528 return 1;
4529}
4530__setup("ftrace_notrace=", set_ftrace_notrace);
4531
4532static int __init set_ftrace_filter(char *str)
4533{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004534 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004535 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004536 return 1;
4537}
4538__setup("ftrace_filter=", set_ftrace_filter);
4539
Stefan Assmann369bc182009-10-12 22:17:21 +02004540#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08004541static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004542static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004543static int ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer);
Steven Rostedt801c29f2010-03-05 20:02:19 -05004544
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04004545static unsigned long save_global_trampoline;
4546static unsigned long save_global_flags;
4547
Stefan Assmann369bc182009-10-12 22:17:21 +02004548static int __init set_graph_function(char *str)
4549{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02004550 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02004551 return 1;
4552}
4553__setup("ftrace_graph_filter=", set_graph_function);
4554
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004555static int __init set_graph_notrace_function(char *str)
4556{
4557 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
4558 return 1;
4559}
4560__setup("ftrace_graph_notrace=", set_graph_notrace_function);
4561
Todd Brandt65a50c652017-03-02 16:12:15 -08004562static int __init set_graph_max_depth_function(char *str)
4563{
4564 if (!str)
4565 return 0;
4566 fgraph_max_depth = simple_strtoul(str, NULL, 0);
4567 return 1;
4568}
4569__setup("ftrace_graph_max_depth=", set_graph_max_depth_function);
4570
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004571static void __init set_ftrace_early_graph(char *buf, int enable)
Stefan Assmann369bc182009-10-12 22:17:21 +02004572{
4573 int ret;
4574 char *func;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004575 struct ftrace_hash *hash;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004576
Steven Rostedt (VMware)92ad18e2017-03-02 12:53:26 -05004577 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4578 if (WARN_ON(!hash))
4579 return;
Stefan Assmann369bc182009-10-12 22:17:21 +02004580
4581 while (buf) {
4582 func = strsep(&buf, ",");
4583 /* we allow only one expression at a time */
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004584 ret = ftrace_graph_set_hash(hash, func);
Stefan Assmann369bc182009-10-12 22:17:21 +02004585 if (ret)
4586 printk(KERN_DEBUG "ftrace: function %s not "
4587 "traceable\n", func);
4588 }
Steven Rostedt (VMware)92ad18e2017-03-02 12:53:26 -05004589
4590 if (enable)
4591 ftrace_graph_hash = hash;
4592 else
4593 ftrace_graph_notrace_hash = hash;
Stefan Assmann369bc182009-10-12 22:17:21 +02004594}
4595#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4596
Steven Rostedt2a85a372011-12-19 21:57:44 -05004597void __init
4598ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04004599{
4600 char *func;
4601
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004602 ftrace_ops_init(ops);
4603
Steven Rostedt2af15d62009-05-28 13:37:24 -04004604 while (buf) {
4605 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04004606 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004607 }
4608}
4609
4610static void __init set_ftrace_early_filters(void)
4611{
4612 if (ftrace_filter_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004613 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004614 if (ftrace_notrace_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004615 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02004616#ifdef CONFIG_FUNCTION_GRAPH_TRACER
4617 if (ftrace_graph_buf[0])
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004618 set_ftrace_early_graph(ftrace_graph_buf, 1);
4619 if (ftrace_graph_notrace_buf[0])
4620 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02004621#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04004622}
4623
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004624int ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02004625{
4626 struct seq_file *m = (struct seq_file *)file->private_data;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004627 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02004628 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004629 struct ftrace_hash **orig_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004630 struct ftrace_hash *old_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004631 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04004632 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004633 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02004634
Steven Rostedt5072c592008-05-12 21:20:43 +02004635 if (file->f_mode & FMODE_READ) {
4636 iter = m->private;
Steven Rostedt5072c592008-05-12 21:20:43 +02004637 seq_release(inode, file);
4638 } else
4639 iter = file->private_data;
4640
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004641 parser = &iter->parser;
4642 if (trace_parser_loaded(parser)) {
4643 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004644 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02004645 }
4646
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004647 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004648
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004649 mutex_lock(&iter->ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004650
Steven Rostedt058e2972011-04-29 22:35:33 -04004651 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04004652 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
4653
4654 if (filter_hash)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004655 orig_hash = &iter->ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04004656 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004657 orig_hash = &iter->ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004658
Steven Rostedt058e2972011-04-29 22:35:33 -04004659 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004660 old_hash = *orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004661 old_hash_ops.filter_hash = iter->ops->func_hash->filter_hash;
4662 old_hash_ops.notrace_hash = iter->ops->func_hash->notrace_hash;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04004663 ret = ftrace_hash_move(iter->ops, filter_hash,
4664 orig_hash, iter->hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004665 if (!ret) {
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004666 ftrace_ops_update_code(iter->ops, &old_hash_ops);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004667 free_ftrace_hash_rcu(old_hash);
4668 }
Steven Rostedt058e2972011-04-29 22:35:33 -04004669 mutex_unlock(&ftrace_lock);
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04004670 } else {
4671 /* For read only, the hash is the ops hash */
4672 iter->hash = NULL;
Steven Rostedt058e2972011-04-29 22:35:33 -04004673 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004674
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004675 mutex_unlock(&iter->ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004676 free_ftrace_hash(iter->hash);
4677 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04004678
Steven Rostedt5072c592008-05-12 21:20:43 +02004679 return 0;
4680}
4681
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004682static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02004683 .open = ftrace_avail_open,
4684 .read = seq_read,
4685 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08004686 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02004687};
4688
Steven Rostedt647bcd02011-05-03 14:39:21 -04004689static const struct file_operations ftrace_enabled_fops = {
4690 .open = ftrace_enabled_open,
4691 .read = seq_read,
4692 .llseek = seq_lseek,
4693 .release = seq_release_private,
4694};
4695
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004696static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02004697 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08004698 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02004699 .write = ftrace_filter_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004700 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004701 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02004702};
4703
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004704static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04004705 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08004706 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04004707 .write = ftrace_notrace_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004708 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004709 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04004710};
4711
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004712#ifdef CONFIG_FUNCTION_GRAPH_TRACER
4713
4714static DEFINE_MUTEX(graph_lock);
4715
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004716struct ftrace_hash *ftrace_graph_hash = EMPTY_HASH;
4717struct ftrace_hash *ftrace_graph_notrace_hash = EMPTY_HASH;
4718
4719enum graph_filter_type {
4720 GRAPH_FILTER_NOTRACE = 0,
4721 GRAPH_FILTER_FUNCTION,
4722};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004723
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05004724#define FTRACE_GRAPH_EMPTY ((void *)1)
4725
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004726struct ftrace_graph_data {
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05004727 struct ftrace_hash *hash;
4728 struct ftrace_func_entry *entry;
4729 int idx; /* for hash table iteration */
4730 enum graph_filter_type type;
4731 struct ftrace_hash *new_hash;
4732 const struct seq_operations *seq_ops;
4733 struct trace_parser parser;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004734};
4735
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004736static void *
Li Zefan85951842009-06-24 09:54:00 +08004737__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004738{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004739 struct ftrace_graph_data *fgd = m->private;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004740 struct ftrace_func_entry *entry = fgd->entry;
4741 struct hlist_head *head;
4742 int i, idx = fgd->idx;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004743
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004744 if (*pos >= fgd->hash->count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004745 return NULL;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004746
4747 if (entry) {
4748 hlist_for_each_entry_continue(entry, hlist) {
4749 fgd->entry = entry;
4750 return entry;
4751 }
4752
4753 idx++;
4754 }
4755
4756 for (i = idx; i < 1 << fgd->hash->size_bits; i++) {
4757 head = &fgd->hash->buckets[i];
4758 hlist_for_each_entry(entry, head, hlist) {
4759 fgd->entry = entry;
4760 fgd->idx = i;
4761 return entry;
4762 }
4763 }
4764 return NULL;
Li Zefan85951842009-06-24 09:54:00 +08004765}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004766
Li Zefan85951842009-06-24 09:54:00 +08004767static void *
4768g_next(struct seq_file *m, void *v, loff_t *pos)
4769{
4770 (*pos)++;
4771 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004772}
4773
4774static void *g_start(struct seq_file *m, loff_t *pos)
4775{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004776 struct ftrace_graph_data *fgd = m->private;
4777
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004778 mutex_lock(&graph_lock);
4779
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05004780 if (fgd->type == GRAPH_FILTER_FUNCTION)
4781 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
4782 lockdep_is_held(&graph_lock));
4783 else
4784 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
4785 lockdep_is_held(&graph_lock));
4786
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004787 /* Nothing, tell g_show to print all functions are enabled */
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004788 if (ftrace_hash_empty(fgd->hash) && !*pos)
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05004789 return FTRACE_GRAPH_EMPTY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004790
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004791 fgd->idx = 0;
4792 fgd->entry = NULL;
Li Zefan85951842009-06-24 09:54:00 +08004793 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004794}
4795
4796static void g_stop(struct seq_file *m, void *p)
4797{
4798 mutex_unlock(&graph_lock);
4799}
4800
4801static int g_show(struct seq_file *m, void *v)
4802{
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004803 struct ftrace_func_entry *entry = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004804
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004805 if (!entry)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004806 return 0;
4807
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05004808 if (entry == FTRACE_GRAPH_EMPTY) {
Namhyung Kim280d1422014-06-13 01:23:51 +09004809 struct ftrace_graph_data *fgd = m->private;
4810
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004811 if (fgd->type == GRAPH_FILTER_FUNCTION)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01004812 seq_puts(m, "#### all functions enabled ####\n");
Namhyung Kim280d1422014-06-13 01:23:51 +09004813 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01004814 seq_puts(m, "#### no functions disabled ####\n");
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004815 return 0;
4816 }
4817
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004818 seq_printf(m, "%ps\n", (void *)entry->ip);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004819
4820 return 0;
4821}
4822
James Morris88e9d342009-09-22 16:43:43 -07004823static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004824 .start = g_start,
4825 .next = g_next,
4826 .stop = g_stop,
4827 .show = g_show,
4828};
4829
4830static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004831__ftrace_graph_open(struct inode *inode, struct file *file,
4832 struct ftrace_graph_data *fgd)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004833{
4834 int ret = 0;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004835 struct ftrace_hash *new_hash = NULL;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004836
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004837 if (file->f_mode & FMODE_WRITE) {
4838 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
4839
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05004840 if (trace_parser_get_init(&fgd->parser, FTRACE_BUFF_MAX))
4841 return -ENOMEM;
4842
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004843 if (file->f_flags & O_TRUNC)
4844 new_hash = alloc_ftrace_hash(size_bits);
4845 else
4846 new_hash = alloc_and_copy_ftrace_hash(size_bits,
4847 fgd->hash);
4848 if (!new_hash) {
4849 ret = -ENOMEM;
4850 goto out;
4851 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004852 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004853
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004854 if (file->f_mode & FMODE_READ) {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004855 ret = seq_open(file, &ftrace_graph_seq_ops);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004856 if (!ret) {
4857 struct seq_file *m = file->private_data;
4858 m->private = fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004859 } else {
4860 /* Failed */
4861 free_ftrace_hash(new_hash);
4862 new_hash = NULL;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004863 }
4864 } else
4865 file->private_data = fgd;
Li Zefana4ec5e02009-09-18 14:06:28 +08004866
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004867out:
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05004868 if (ret < 0 && file->f_mode & FMODE_WRITE)
4869 trace_parser_put(&fgd->parser);
4870
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004871 fgd->new_hash = new_hash;
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05004872
4873 /*
4874 * All uses of fgd->hash must be taken with the graph_lock
4875 * held. The graph_lock is going to be released, so force
4876 * fgd->hash to be reinitialized when it is taken again.
4877 */
4878 fgd->hash = NULL;
4879
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004880 return ret;
4881}
4882
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004883static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004884ftrace_graph_open(struct inode *inode, struct file *file)
4885{
4886 struct ftrace_graph_data *fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004887 int ret;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004888
4889 if (unlikely(ftrace_disabled))
4890 return -ENODEV;
4891
4892 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4893 if (fgd == NULL)
4894 return -ENOMEM;
4895
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004896 mutex_lock(&graph_lock);
4897
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05004898 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
4899 lockdep_is_held(&graph_lock));
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004900 fgd->type = GRAPH_FILTER_FUNCTION;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004901 fgd->seq_ops = &ftrace_graph_seq_ops;
4902
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004903 ret = __ftrace_graph_open(inode, file, fgd);
4904 if (ret < 0)
4905 kfree(fgd);
4906
4907 mutex_unlock(&graph_lock);
4908 return ret;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004909}
4910
4911static int
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004912ftrace_graph_notrace_open(struct inode *inode, struct file *file)
4913{
4914 struct ftrace_graph_data *fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004915 int ret;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004916
4917 if (unlikely(ftrace_disabled))
4918 return -ENODEV;
4919
4920 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4921 if (fgd == NULL)
4922 return -ENOMEM;
4923
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004924 mutex_lock(&graph_lock);
4925
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05004926 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
4927 lockdep_is_held(&graph_lock));
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004928 fgd->type = GRAPH_FILTER_NOTRACE;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004929 fgd->seq_ops = &ftrace_graph_seq_ops;
4930
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004931 ret = __ftrace_graph_open(inode, file, fgd);
4932 if (ret < 0)
4933 kfree(fgd);
4934
4935 mutex_unlock(&graph_lock);
4936 return ret;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004937}
4938
4939static int
Li Zefan87827112009-07-23 11:29:11 +08004940ftrace_graph_release(struct inode *inode, struct file *file)
4941{
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004942 struct ftrace_graph_data *fgd;
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05004943 struct ftrace_hash *old_hash, *new_hash;
4944 struct trace_parser *parser;
4945 int ret = 0;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004946
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004947 if (file->f_mode & FMODE_READ) {
4948 struct seq_file *m = file->private_data;
4949
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004950 fgd = m->private;
Li Zefan87827112009-07-23 11:29:11 +08004951 seq_release(inode, file);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004952 } else {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004953 fgd = file->private_data;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004954 }
4955
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05004956
4957 if (file->f_mode & FMODE_WRITE) {
4958
4959 parser = &fgd->parser;
4960
4961 if (trace_parser_loaded((parser))) {
4962 parser->buffer[parser->idx] = 0;
4963 ret = ftrace_graph_set_hash(fgd->new_hash,
4964 parser->buffer);
4965 }
4966
4967 trace_parser_put(parser);
4968
4969 new_hash = __ftrace_hash_move(fgd->new_hash);
4970 if (!new_hash) {
4971 ret = -ENOMEM;
4972 goto out;
4973 }
4974
4975 mutex_lock(&graph_lock);
4976
4977 if (fgd->type == GRAPH_FILTER_FUNCTION) {
4978 old_hash = rcu_dereference_protected(ftrace_graph_hash,
4979 lockdep_is_held(&graph_lock));
4980 rcu_assign_pointer(ftrace_graph_hash, new_hash);
4981 } else {
4982 old_hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
4983 lockdep_is_held(&graph_lock));
4984 rcu_assign_pointer(ftrace_graph_notrace_hash, new_hash);
4985 }
4986
4987 mutex_unlock(&graph_lock);
4988
4989 /* Wait till all users are no longer using the old hash */
4990 synchronize_sched();
4991
4992 free_ftrace_hash(old_hash);
4993 }
4994
4995 out:
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004996 kfree(fgd->new_hash);
4997 kfree(fgd);
4998
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05004999 return ret;
Li Zefan87827112009-07-23 11:29:11 +08005000}
5001
5002static int
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005003ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005004{
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005005 struct ftrace_glob func_g;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005006 struct dyn_ftrace *rec;
5007 struct ftrace_page *pg;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005008 struct ftrace_func_entry *entry;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005009 int fail = 1;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005010 int not;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005011
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005012 /* decode regex */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005013 func_g.type = filter_parse_regex(buffer, strlen(buffer),
5014 &func_g.search, &not);
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005015
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005016 func_g.len = strlen(func_g.search);
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005017
Steven Rostedt52baf112009-02-14 01:15:39 -05005018 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04005019
5020 if (unlikely(ftrace_disabled)) {
5021 mutex_unlock(&ftrace_lock);
5022 return -ENODEV;
5023 }
5024
Steven Rostedt265c8312009-02-13 12:43:56 -05005025 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005026
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05005027 if (rec->flags & FTRACE_FL_DISABLED)
5028 continue;
5029
Dmitry Safonov0b507e12015-09-29 19:46:15 +03005030 if (ftrace_match_record(rec, &func_g, NULL, 0)) {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005031 entry = ftrace_lookup_ip(hash, rec->ip);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005032
5033 if (!not) {
5034 fail = 0;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005035
5036 if (entry)
5037 continue;
5038 if (add_hash_entry(hash, rec->ip) < 0)
5039 goto out;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005040 } else {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005041 if (entry) {
5042 free_hash_entry(hash, entry);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005043 fail = 0;
5044 }
5045 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005046 }
Steven Rostedt265c8312009-02-13 12:43:56 -05005047 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005048out:
Steven Rostedt52baf112009-02-14 01:15:39 -05005049 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005050
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005051 if (fail)
5052 return -EINVAL;
5053
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005054 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005055}
5056
5057static ssize_t
5058ftrace_graph_write(struct file *file, const char __user *ubuf,
5059 size_t cnt, loff_t *ppos)
5060{
Namhyung Kim6a101082013-10-14 17:24:25 +09005061 ssize_t read, ret = 0;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005062 struct ftrace_graph_data *fgd = file->private_data;
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005063 struct trace_parser *parser;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005064
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005065 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005066 return 0;
5067
Steven Rostedt (VMware)ae98d272017-02-02 16:59:06 -05005068 /* Read mode uses seq functions */
5069 if (file->f_mode & FMODE_READ) {
5070 struct seq_file *m = file->private_data;
5071 fgd = m->private;
5072 }
5073
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005074 parser = &fgd->parser;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005075
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005076 read = trace_get_user(parser, ubuf, cnt, ppos);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005077
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005078 if (read >= 0 && trace_parser_loaded(parser) &&
5079 !trace_parser_cont(parser)) {
Namhyung Kim6a101082013-10-14 17:24:25 +09005080
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005081 ret = ftrace_graph_set_hash(fgd->new_hash,
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005082 parser->buffer);
5083 trace_parser_clear(parser);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005084 }
5085
Namhyung Kim6a101082013-10-14 17:24:25 +09005086 if (!ret)
5087 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08005088
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005089 return ret;
5090}
5091
5092static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08005093 .open = ftrace_graph_open,
5094 .read = seq_read,
5095 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005096 .llseek = tracing_lseek,
Li Zefan87827112009-07-23 11:29:11 +08005097 .release = ftrace_graph_release,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005098};
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005099
5100static const struct file_operations ftrace_graph_notrace_fops = {
5101 .open = ftrace_graph_notrace_open,
5102 .read = seq_read,
5103 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005104 .llseek = tracing_lseek,
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005105 .release = ftrace_graph_release,
5106};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005107#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
5108
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05005109void ftrace_create_filter_files(struct ftrace_ops *ops,
5110 struct dentry *parent)
5111{
5112
5113 trace_create_file("set_ftrace_filter", 0644, parent,
5114 ops, &ftrace_filter_fops);
5115
5116 trace_create_file("set_ftrace_notrace", 0644, parent,
5117 ops, &ftrace_notrace_fops);
5118}
5119
5120/*
5121 * The name "destroy_filter_files" is really a misnomer. Although
5122 * in the future, it may actualy delete the files, but this is
5123 * really intended to make sure the ops passed in are disabled
5124 * and that when this function returns, the caller is free to
5125 * free the ops.
5126 *
5127 * The "destroy" name is only to match the "create" name that this
5128 * should be paired with.
5129 */
5130void ftrace_destroy_filter_files(struct ftrace_ops *ops)
5131{
5132 mutex_lock(&ftrace_lock);
5133 if (ops->flags & FTRACE_OPS_FL_ENABLED)
5134 ftrace_shutdown(ops, 0);
5135 ops->flags |= FTRACE_OPS_FL_DELETED;
5136 mutex_unlock(&ftrace_lock);
5137}
5138
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005139static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02005140{
Steven Rostedt5072c592008-05-12 21:20:43 +02005141
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005142 trace_create_file("available_filter_functions", 0444,
5143 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02005144
Steven Rostedt647bcd02011-05-03 14:39:21 -04005145 trace_create_file("enabled_functions", 0444,
5146 d_tracer, NULL, &ftrace_enabled_fops);
5147
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05005148 ftrace_create_filter_files(&global_ops, d_tracer);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04005149
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005150#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005151 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005152 NULL,
5153 &ftrace_graph_fops);
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005154 trace_create_file("set_graph_notrace", 0444, d_tracer,
5155 NULL,
5156 &ftrace_graph_notrace_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005157#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
5158
Steven Rostedt5072c592008-05-12 21:20:43 +02005159 return 0;
5160}
5161
Steven Rostedt9fd49322012-04-24 22:32:06 -04005162static int ftrace_cmp_ips(const void *a, const void *b)
Steven Rostedt68950612011-12-16 17:06:45 -05005163{
Steven Rostedt9fd49322012-04-24 22:32:06 -04005164 const unsigned long *ipa = a;
5165 const unsigned long *ipb = b;
Steven Rostedt68950612011-12-16 17:06:45 -05005166
Steven Rostedt9fd49322012-04-24 22:32:06 -04005167 if (*ipa > *ipb)
5168 return 1;
5169 if (*ipa < *ipb)
5170 return -1;
5171 return 0;
5172}
5173
Jiri Olsa5cb084b2009-10-13 16:33:53 -04005174static int ftrace_process_locs(struct module *mod,
Steven Rostedt31e88902008-11-14 16:21:19 -08005175 unsigned long *start,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005176 unsigned long *end)
5177{
Steven Rostedt706c81f2012-04-24 23:45:26 -04005178 struct ftrace_page *start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05005179 struct ftrace_page *pg;
Steven Rostedt706c81f2012-04-24 23:45:26 -04005180 struct dyn_ftrace *rec;
Steven Rostedta7900872011-12-16 16:23:44 -05005181 unsigned long count;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005182 unsigned long *p;
5183 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04005184 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedta7900872011-12-16 16:23:44 -05005185 int ret = -ENOMEM;
5186
5187 count = end - start;
5188
5189 if (!count)
5190 return 0;
5191
Steven Rostedt9fd49322012-04-24 22:32:06 -04005192 sort(start, count, sizeof(*start),
Rasmus Villemoes6db02902015-09-09 23:27:02 +02005193 ftrace_cmp_ips, NULL);
Steven Rostedt9fd49322012-04-24 22:32:06 -04005194
Steven Rostedt706c81f2012-04-24 23:45:26 -04005195 start_pg = ftrace_allocate_pages(count);
5196 if (!start_pg)
Steven Rostedta7900872011-12-16 16:23:44 -05005197 return -ENOMEM;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005198
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005199 mutex_lock(&ftrace_lock);
Steven Rostedta7900872011-12-16 16:23:44 -05005200
Steven Rostedt320823092011-12-16 14:42:37 -05005201 /*
5202 * Core and each module needs their own pages, as
5203 * modules will free them when they are removed.
5204 * Force a new page to be allocated for modules.
5205 */
Steven Rostedta7900872011-12-16 16:23:44 -05005206 if (!mod) {
5207 WARN_ON(ftrace_pages || ftrace_pages_start);
5208 /* First initialization */
Steven Rostedt706c81f2012-04-24 23:45:26 -04005209 ftrace_pages = ftrace_pages_start = start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05005210 } else {
Steven Rostedt320823092011-12-16 14:42:37 -05005211 if (!ftrace_pages)
Steven Rostedta7900872011-12-16 16:23:44 -05005212 goto out;
Steven Rostedt320823092011-12-16 14:42:37 -05005213
Steven Rostedta7900872011-12-16 16:23:44 -05005214 if (WARN_ON(ftrace_pages->next)) {
5215 /* Hmm, we have free pages? */
5216 while (ftrace_pages->next)
5217 ftrace_pages = ftrace_pages->next;
Steven Rostedt320823092011-12-16 14:42:37 -05005218 }
Steven Rostedta7900872011-12-16 16:23:44 -05005219
Steven Rostedt706c81f2012-04-24 23:45:26 -04005220 ftrace_pages->next = start_pg;
Steven Rostedt320823092011-12-16 14:42:37 -05005221 }
5222
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005223 p = start;
Steven Rostedt706c81f2012-04-24 23:45:26 -04005224 pg = start_pg;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005225 while (p < end) {
5226 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08005227 /*
5228 * Some architecture linkers will pad between
5229 * the different mcount_loc sections of different
5230 * object files to satisfy alignments.
5231 * Skip any NULL pointers.
5232 */
5233 if (!addr)
5234 continue;
Steven Rostedt706c81f2012-04-24 23:45:26 -04005235
5236 if (pg->index == pg->size) {
5237 /* We should have allocated enough */
5238 if (WARN_ON(!pg->next))
5239 break;
5240 pg = pg->next;
5241 }
5242
5243 rec = &pg->records[pg->index++];
5244 rec->ip = addr;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005245 }
5246
Steven Rostedt706c81f2012-04-24 23:45:26 -04005247 /* We should have used all pages */
5248 WARN_ON(pg->next);
5249
5250 /* Assign the last page to ftrace_pages */
5251 ftrace_pages = pg;
5252
Steven Rostedta4f18ed2011-06-07 09:26:46 -04005253 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04005254 * We only need to disable interrupts on start up
5255 * because we are modifying code that an interrupt
5256 * may execute, and the modification is not atomic.
5257 * But for modules, nothing runs the code we modify
5258 * until we are finished with it, and there's no
5259 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04005260 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04005261 if (!mod)
5262 local_irq_save(flags);
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01005263 ftrace_update_code(mod, start_pg);
Steven Rostedt4376cac2011-06-24 23:28:13 -04005264 if (!mod)
5265 local_irq_restore(flags);
Steven Rostedta7900872011-12-16 16:23:44 -05005266 ret = 0;
5267 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005268 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005269
Steven Rostedta7900872011-12-16 16:23:44 -05005270 return ret;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005271}
5272
Steven Rostedt93eb6772009-04-15 13:24:06 -04005273#ifdef CONFIG_MODULES
Steven Rostedt320823092011-12-16 14:42:37 -05005274
5275#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
5276
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005277static int referenced_filters(struct dyn_ftrace *rec)
5278{
5279 struct ftrace_ops *ops;
5280 int cnt = 0;
5281
5282 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
5283 if (ops_references_rec(ops, rec))
5284 cnt++;
5285 }
5286
5287 return cnt;
5288}
5289
jolsa@redhat.come7247a12009-10-07 19:00:35 +02005290void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005291{
5292 struct dyn_ftrace *rec;
Steven Rostedt320823092011-12-16 14:42:37 -05005293 struct ftrace_page **last_pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04005294 struct ftrace_page *pg;
Steven Rostedta7900872011-12-16 16:23:44 -05005295 int order;
Steven Rostedt93eb6772009-04-15 13:24:06 -04005296
Steven Rostedt93eb6772009-04-15 13:24:06 -04005297 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04005298
5299 if (ftrace_disabled)
5300 goto out_unlock;
5301
Steven Rostedt320823092011-12-16 14:42:37 -05005302 /*
5303 * Each module has its own ftrace_pages, remove
5304 * them from the list.
5305 */
5306 last_pg = &ftrace_pages_start;
5307 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
5308 rec = &pg->records[0];
jolsa@redhat.come7247a12009-10-07 19:00:35 +02005309 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04005310 /*
Steven Rostedt320823092011-12-16 14:42:37 -05005311 * As core pages are first, the first
5312 * page should never be a module page.
Steven Rostedt93eb6772009-04-15 13:24:06 -04005313 */
Steven Rostedt320823092011-12-16 14:42:37 -05005314 if (WARN_ON(pg == ftrace_pages_start))
5315 goto out_unlock;
5316
5317 /* Check if we are deleting the last page */
5318 if (pg == ftrace_pages)
5319 ftrace_pages = next_to_ftrace_page(last_pg);
5320
5321 *last_pg = pg->next;
Steven Rostedta7900872011-12-16 16:23:44 -05005322 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
5323 free_pages((unsigned long)pg->records, order);
5324 kfree(pg);
Steven Rostedt320823092011-12-16 14:42:37 -05005325 } else
5326 last_pg = &pg->next;
5327 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04005328 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04005329 mutex_unlock(&ftrace_lock);
5330}
5331
Jessica Yu7dcd1822016-02-16 17:32:33 -05005332void ftrace_module_enable(struct module *mod)
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005333{
5334 struct dyn_ftrace *rec;
5335 struct ftrace_page *pg;
5336
5337 mutex_lock(&ftrace_lock);
5338
5339 if (ftrace_disabled)
5340 goto out_unlock;
5341
5342 /*
5343 * If the tracing is enabled, go ahead and enable the record.
5344 *
5345 * The reason not to enable the record immediatelly is the
5346 * inherent check of ftrace_make_nop/ftrace_make_call for
5347 * correct previous instructions. Making first the NOP
5348 * conversion puts the module to the correct state, thus
5349 * passing the ftrace_make_call check.
5350 *
5351 * We also delay this to after the module code already set the
5352 * text to read-only, as we now need to set it back to read-write
5353 * so that we can modify the text.
5354 */
5355 if (ftrace_start_up)
5356 ftrace_arch_code_modify_prepare();
5357
5358 do_for_each_ftrace_rec(pg, rec) {
5359 int cnt;
5360 /*
5361 * do_for_each_ftrace_rec() is a double loop.
5362 * module text shares the pg. If a record is
5363 * not part of this module, then skip this pg,
5364 * which the "break" will do.
5365 */
5366 if (!within_module_core(rec->ip, mod))
5367 break;
5368
5369 cnt = 0;
5370
5371 /*
5372 * When adding a module, we need to check if tracers are
5373 * currently enabled and if they are, and can trace this record,
5374 * we need to enable the module functions as well as update the
5375 * reference counts for those function records.
5376 */
5377 if (ftrace_start_up)
5378 cnt += referenced_filters(rec);
5379
5380 /* This clears FTRACE_FL_DISABLED */
5381 rec->flags = cnt;
5382
5383 if (ftrace_start_up && cnt) {
5384 int failed = __ftrace_replace_code(rec, 1);
5385 if (failed) {
5386 ftrace_bug(failed, rec);
5387 goto out_loop;
5388 }
5389 }
5390
5391 } while_for_each_ftrace_rec();
5392
5393 out_loop:
5394 if (ftrace_start_up)
5395 ftrace_arch_code_modify_post_process();
5396
5397 out_unlock:
5398 mutex_unlock(&ftrace_lock);
5399}
5400
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04005401void ftrace_module_init(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005402{
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005403 if (ftrace_disabled || !mod->num_ftrace_callsites)
Abel Vesab6b71f62015-12-02 15:39:57 +01005404 return;
5405
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005406 ftrace_process_locs(mod, mod->ftrace_callsites,
5407 mod->ftrace_callsites + mod->num_ftrace_callsites);
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05005408}
Steven Rostedt93eb6772009-04-15 13:24:06 -04005409#endif /* CONFIG_MODULES */
5410
Steven Rostedt (VMware)b80f0f62017-04-03 12:57:35 -04005411void __init ftrace_free_init_mem(void)
Steven Rostedt (VMware)42c269c2017-03-03 16:15:39 -05005412{
Steven Rostedt (VMware)b80f0f62017-04-03 12:57:35 -04005413 unsigned long start = (unsigned long)(&__init_begin);
5414 unsigned long end = (unsigned long)(&__init_end);
Steven Rostedt (VMware)42c269c2017-03-03 16:15:39 -05005415 struct ftrace_page **last_pg = &ftrace_pages_start;
5416 struct ftrace_page *pg;
5417 struct dyn_ftrace *rec;
5418 struct dyn_ftrace key;
5419 int order;
5420
5421 key.ip = start;
5422 key.flags = end; /* overload flags, as it is unsigned long */
5423
5424 mutex_lock(&ftrace_lock);
5425
5426 for (pg = ftrace_pages_start; pg; last_pg = &pg->next, pg = *last_pg) {
5427 if (end < pg->records[0].ip ||
5428 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
5429 continue;
5430 again:
5431 rec = bsearch(&key, pg->records, pg->index,
5432 sizeof(struct dyn_ftrace),
5433 ftrace_cmp_recs);
5434 if (!rec)
5435 continue;
5436 pg->index--;
5437 if (!pg->index) {
5438 *last_pg = pg->next;
5439 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
5440 free_pages((unsigned long)pg->records, order);
5441 kfree(pg);
5442 pg = container_of(last_pg, struct ftrace_page, next);
5443 if (!(*last_pg))
5444 ftrace_pages = pg;
5445 continue;
5446 }
5447 memmove(rec, rec + 1,
5448 (pg->index - (rec - pg->records)) * sizeof(*rec));
5449 /* More than one function may be in this block */
5450 goto again;
5451 }
5452 mutex_unlock(&ftrace_lock);
5453}
5454
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005455void __init ftrace_init(void)
5456{
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01005457 extern unsigned long __start_mcount_loc[];
5458 extern unsigned long __stop_mcount_loc[];
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005459 unsigned long count, flags;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005460 int ret;
5461
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005462 local_irq_save(flags);
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005463 ret = ftrace_dyn_arch_init();
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005464 local_irq_restore(flags);
Jiri Slabyaf64a7c2014-02-24 19:59:58 +01005465 if (ret)
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005466 goto failed;
5467
5468 count = __stop_mcount_loc - __start_mcount_loc;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005469 if (!count) {
5470 pr_info("ftrace: No functions to be traced?\n");
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005471 goto failed;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005472 }
5473
5474 pr_info("ftrace: allocating %ld entries in %ld pages\n",
5475 count, count / ENTRIES_PER_PAGE + 1);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005476
5477 last_ftrace_enabled = ftrace_enabled = 1;
5478
Jiri Olsa5cb084b2009-10-13 16:33:53 -04005479 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08005480 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005481 __stop_mcount_loc);
5482
Steven Rostedt2af15d62009-05-28 13:37:24 -04005483 set_ftrace_early_filters();
5484
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005485 return;
5486 failed:
5487 ftrace_disabled = 1;
5488}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005489
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005490/* Do nothing if arch does not support this */
5491void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
5492{
5493}
5494
5495static void ftrace_update_trampoline(struct ftrace_ops *ops)
5496{
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005497 arch_ftrace_update_trampoline(ops);
5498}
5499
Steven Rostedt3d083392008-05-12 21:20:42 +02005500#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005501
Steven Rostedt2b499382011-05-03 22:49:52 -04005502static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04005503 .func = ftrace_stub,
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005504 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5505 FTRACE_OPS_FL_INITIALIZED |
5506 FTRACE_OPS_FL_PID,
Steven Rostedtbd69c302011-05-03 21:55:54 -04005507};
5508
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005509static int __init ftrace_nodyn_init(void)
5510{
5511 ftrace_enabled = 1;
5512 return 0;
5513}
Steven Rostedt6f415672012-10-05 12:13:07 -04005514core_initcall(ftrace_nodyn_init);
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005515
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005516static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005517static inline void ftrace_startup_enable(int command) { }
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005518static inline void ftrace_startup_all(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05005519/* Keep as macros so we do not need to define the commands */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005520# define ftrace_startup(ops, command) \
5521 ({ \
5522 int ___ret = __register_ftrace_function(ops); \
5523 if (!___ret) \
5524 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
5525 ___ret; \
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04005526 })
Steven Rostedt (Red Hat)1fcc1552014-02-19 15:12:18 -05005527# define ftrace_shutdown(ops, command) \
5528 ({ \
5529 int ___ret = __unregister_ftrace_function(ops); \
5530 if (!___ret) \
5531 (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \
5532 ___ret; \
5533 })
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005534
Ingo Molnarc7aafc52008-05-12 21:20:45 +02005535# define ftrace_startup_sysctl() do { } while (0)
5536# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04005537
5538static inline int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04005539ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005540{
5541 return 1;
5542}
5543
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005544static void ftrace_update_trampoline(struct ftrace_ops *ops)
5545{
5546}
5547
Steven Rostedt3d083392008-05-12 21:20:42 +02005548#endif /* CONFIG_DYNAMIC_FTRACE */
5549
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005550__init void ftrace_init_global_array_ops(struct trace_array *tr)
5551{
5552 tr->ops = &global_ops;
5553 tr->ops->private = tr;
5554}
5555
5556void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
5557{
5558 /* If we filter on pids, update to use the pid function */
5559 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
5560 if (WARN_ON(tr->ops->func != ftrace_stub))
5561 printk("ftrace ops had %pS for function\n",
5562 tr->ops->func);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005563 }
5564 tr->ops->func = func;
5565 tr->ops->private = tr;
5566}
5567
5568void ftrace_reset_array_ops(struct trace_array *tr)
5569{
5570 tr->ops->func = ftrace_stub;
5571}
5572
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005573static inline void
5574__ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005575 struct ftrace_ops *ignored, struct pt_regs *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005576{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005577 struct ftrace_ops *op;
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005578 int bit;
Steven Rostedtb8489142011-05-04 09:27:52 -04005579
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005580 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5581 if (bit < 0)
5582 return;
Steven Rostedtc29f1222012-11-02 17:17:59 -04005583
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005584 /*
5585 * Some of the ops may be dynamically allocated,
5586 * they must be freed after a synchronize_sched().
5587 */
5588 preempt_disable_notrace();
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05005589
Steven Rostedt0a016402012-11-02 17:03:03 -04005590 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05005591 /*
5592 * Check the following for each ops before calling their func:
5593 * if RCU flag is set, then rcu_is_watching() must be true
5594 * if PER_CPU is set, then ftrace_function_local_disable()
5595 * must be false
5596 * Otherwise test if the ip matches the ops filter
5597 *
5598 * If any of the above fails then the op->func() is not executed.
5599 */
5600 if ((!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching()) &&
5601 (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5602 !ftrace_function_local_disabled(op)) &&
5603 ftrace_ops_test(op, ip, regs)) {
5604
Steven Rostedt (Red Hat)1d48d592014-06-25 11:54:03 -04005605 if (FTRACE_WARN_ON(!op->func)) {
5606 pr_warn("op=%p %pS\n", op, op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005607 goto out;
5608 }
Steven Rostedta1e2e312011-08-09 12:50:46 -04005609 op->func(ip, parent_ip, op, regs);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005610 }
Steven Rostedt0a016402012-11-02 17:03:03 -04005611 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005612out:
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005613 preempt_enable_notrace();
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005614 trace_clear_recursion(bit);
Steven Rostedtb8489142011-05-04 09:27:52 -04005615}
5616
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005617/*
5618 * Some archs only support passing ip and parent_ip. Even though
5619 * the list function ignores the op parameter, we do not want any
5620 * C side effects, where a function is called without the caller
5621 * sending a third parameter.
Steven Rostedta1e2e312011-08-09 12:50:46 -04005622 * Archs are to support both the regs and ftrace_ops at the same time.
5623 * If they support ftrace_ops, it is assumed they support regs.
5624 * If call backs want to use regs, they must either check for regs
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +09005625 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
5626 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
Steven Rostedta1e2e312011-08-09 12:50:46 -04005627 * An architecture can pass partial regs with ftrace_ops and still
Li Binb8ec3302015-11-30 18:23:36 +08005628 * set the ARCH_SUPPORTS_FTRACE_OPS.
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005629 */
5630#if ARCH_SUPPORTS_FTRACE_OPS
5631static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005632 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005633{
Steven Rostedta1e2e312011-08-09 12:50:46 -04005634 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005635}
5636#else
5637static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip)
5638{
Steven Rostedta1e2e312011-08-09 12:50:46 -04005639 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005640}
5641#endif
5642
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005643/*
5644 * If there's only one function registered but it does not support
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005645 * recursion, needs RCU protection and/or requires per cpu handling, then
5646 * this function will be called by the mcount trampoline.
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005647 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005648static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005649 struct ftrace_ops *op, struct pt_regs *regs)
5650{
5651 int bit;
5652
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005653 if ((op->flags & FTRACE_OPS_FL_RCU) && !rcu_is_watching())
5654 return;
5655
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005656 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5657 if (bit < 0)
5658 return;
5659
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005660 preempt_disable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005661
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005662 if (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5663 !ftrace_function_local_disabled(op)) {
5664 op->func(ip, parent_ip, op, regs);
5665 }
5666
5667 preempt_enable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005668 trace_clear_recursion(bit);
5669}
5670
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005671/**
5672 * ftrace_ops_get_func - get the function a trampoline should call
5673 * @ops: the ops to get the function for
5674 *
5675 * Normally the mcount trampoline will call the ops->func, but there
5676 * are times that it should not. For example, if the ops does not
5677 * have its own recursion protection, then it should call the
Chunyu Hu3a150df2017-02-22 08:29:26 +08005678 * ftrace_ops_assist_func() instead.
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005679 *
5680 * Returns the function that the trampoline should call for @ops.
5681 */
5682ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
5683{
5684 /*
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005685 * If the function does not handle recursion, needs to be RCU safe,
5686 * or does per cpu logic, then we need to call the assist handler.
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005687 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005688 if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE) ||
5689 ops->flags & (FTRACE_OPS_FL_RCU | FTRACE_OPS_FL_PER_CPU))
5690 return ftrace_ops_assist_func;
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005691
5692 return ops->func;
5693}
5694
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005695static void
5696ftrace_filter_pid_sched_switch_probe(void *data, bool preempt,
5697 struct task_struct *prev, struct task_struct *next)
Steven Rostedte32d8952008-12-04 00:26:41 -05005698{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005699 struct trace_array *tr = data;
5700 struct trace_pid_list *pid_list;
5701
5702 pid_list = rcu_dereference_sched(tr->function_pids);
5703
5704 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
5705 trace_ignore_this_task(pid_list, next));
5706}
5707
Namhyung Kim1e104862017-04-17 11:44:28 +09005708static void
5709ftrace_pid_follow_sched_process_fork(void *data,
5710 struct task_struct *self,
5711 struct task_struct *task)
5712{
5713 struct trace_pid_list *pid_list;
5714 struct trace_array *tr = data;
5715
5716 pid_list = rcu_dereference_sched(tr->function_pids);
5717 trace_filter_add_remove_task(pid_list, self, task);
5718}
5719
5720static void
5721ftrace_pid_follow_sched_process_exit(void *data, struct task_struct *task)
5722{
5723 struct trace_pid_list *pid_list;
5724 struct trace_array *tr = data;
5725
5726 pid_list = rcu_dereference_sched(tr->function_pids);
5727 trace_filter_add_remove_task(pid_list, NULL, task);
5728}
5729
5730void ftrace_pid_follow_fork(struct trace_array *tr, bool enable)
5731{
5732 if (enable) {
5733 register_trace_sched_process_fork(ftrace_pid_follow_sched_process_fork,
5734 tr);
5735 register_trace_sched_process_exit(ftrace_pid_follow_sched_process_exit,
5736 tr);
5737 } else {
5738 unregister_trace_sched_process_fork(ftrace_pid_follow_sched_process_fork,
5739 tr);
5740 unregister_trace_sched_process_exit(ftrace_pid_follow_sched_process_exit,
5741 tr);
5742 }
5743}
5744
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005745static void clear_ftrace_pids(struct trace_array *tr)
5746{
5747 struct trace_pid_list *pid_list;
Steven Rostedte32d8952008-12-04 00:26:41 -05005748 int cpu;
5749
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005750 pid_list = rcu_dereference_protected(tr->function_pids,
5751 lockdep_is_held(&ftrace_lock));
5752 if (!pid_list)
5753 return;
5754
5755 unregister_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
5756
5757 for_each_possible_cpu(cpu)
5758 per_cpu_ptr(tr->trace_buffer.data, cpu)->ftrace_ignore_pid = false;
5759
5760 rcu_assign_pointer(tr->function_pids, NULL);
5761
5762 /* Wait till all users are no longer using pid filtering */
5763 synchronize_sched();
5764
5765 trace_free_pid_list(pid_list);
Steven Rostedte32d8952008-12-04 00:26:41 -05005766}
5767
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005768static void ftrace_pid_reset(struct trace_array *tr)
Steven Rostedte32d8952008-12-04 00:26:41 -05005769{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005770 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005771 clear_ftrace_pids(tr);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005772
5773 ftrace_update_pid_func();
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005774 ftrace_startup_all(0);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005775
5776 mutex_unlock(&ftrace_lock);
5777}
5778
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005779/* Greater than any max PID */
5780#define FTRACE_NO_PIDS (void *)(PID_MAX_LIMIT + 1)
5781
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005782static void *fpid_start(struct seq_file *m, loff_t *pos)
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005783 __acquires(RCU)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005784{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005785 struct trace_pid_list *pid_list;
5786 struct trace_array *tr = m->private;
5787
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005788 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005789 rcu_read_lock_sched();
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005790
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005791 pid_list = rcu_dereference_sched(tr->function_pids);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005792
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005793 if (!pid_list)
5794 return !(*pos) ? FTRACE_NO_PIDS : NULL;
5795
5796 return trace_pid_start(pid_list, pos);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005797}
5798
5799static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
5800{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005801 struct trace_array *tr = m->private;
5802 struct trace_pid_list *pid_list = rcu_dereference_sched(tr->function_pids);
5803
5804 if (v == FTRACE_NO_PIDS)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005805 return NULL;
5806
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005807 return trace_pid_next(pid_list, v, pos);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005808}
5809
5810static void fpid_stop(struct seq_file *m, void *p)
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005811 __releases(RCU)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005812{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005813 rcu_read_unlock_sched();
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005814 mutex_unlock(&ftrace_lock);
5815}
5816
5817static int fpid_show(struct seq_file *m, void *v)
5818{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005819 if (v == FTRACE_NO_PIDS) {
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005820 seq_puts(m, "no pid\n");
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005821 return 0;
5822 }
5823
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005824 return trace_pid_show(m, v);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005825}
5826
5827static const struct seq_operations ftrace_pid_sops = {
5828 .start = fpid_start,
5829 .next = fpid_next,
5830 .stop = fpid_stop,
5831 .show = fpid_show,
5832};
5833
5834static int
5835ftrace_pid_open(struct inode *inode, struct file *file)
5836{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005837 struct trace_array *tr = inode->i_private;
5838 struct seq_file *m;
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005839 int ret = 0;
5840
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005841 if (trace_array_get(tr) < 0)
5842 return -ENODEV;
5843
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005844 if ((file->f_mode & FMODE_WRITE) &&
5845 (file->f_flags & O_TRUNC))
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005846 ftrace_pid_reset(tr);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005847
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005848 ret = seq_open(file, &ftrace_pid_sops);
5849 if (ret < 0) {
5850 trace_array_put(tr);
5851 } else {
5852 m = file->private_data;
5853 /* copy tr over to seq ops */
5854 m->private = tr;
5855 }
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005856
5857 return ret;
5858}
5859
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005860static void ignore_task_cpu(void *data)
5861{
5862 struct trace_array *tr = data;
5863 struct trace_pid_list *pid_list;
5864
5865 /*
5866 * This function is called by on_each_cpu() while the
5867 * event_mutex is held.
5868 */
5869 pid_list = rcu_dereference_protected(tr->function_pids,
5870 mutex_is_locked(&ftrace_lock));
5871
5872 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
5873 trace_ignore_this_task(pid_list, current));
5874}
5875
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005876static ssize_t
5877ftrace_pid_write(struct file *filp, const char __user *ubuf,
5878 size_t cnt, loff_t *ppos)
5879{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005880 struct seq_file *m = filp->private_data;
5881 struct trace_array *tr = m->private;
5882 struct trace_pid_list *filtered_pids = NULL;
5883 struct trace_pid_list *pid_list;
5884 ssize_t ret;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005885
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005886 if (!cnt)
5887 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005888
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005889 mutex_lock(&ftrace_lock);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005890
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005891 filtered_pids = rcu_dereference_protected(tr->function_pids,
5892 lockdep_is_held(&ftrace_lock));
5893
5894 ret = trace_pid_write(filtered_pids, &pid_list, ubuf, cnt);
5895 if (ret < 0)
5896 goto out;
5897
5898 rcu_assign_pointer(tr->function_pids, pid_list);
5899
5900 if (filtered_pids) {
5901 synchronize_sched();
5902 trace_free_pid_list(filtered_pids);
5903 } else if (pid_list) {
5904 /* Register a probe to set whether to ignore the tracing of a task */
5905 register_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
5906 }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005907
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005908 /*
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005909 * Ignoring of pids is done at task switch. But we have to
5910 * check for those tasks that are currently running.
5911 * Always do this in case a pid was appended or removed.
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005912 */
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005913 on_each_cpu(ignore_task_cpu, tr, 1);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005914
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005915 ftrace_update_pid_func();
5916 ftrace_startup_all(0);
5917 out:
5918 mutex_unlock(&ftrace_lock);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005919
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005920 if (ret > 0)
5921 *ppos += ret;
Steven Rostedt978f3a42008-12-04 00:26:40 -05005922
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005923 return ret;
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005924}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005925
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005926static int
5927ftrace_pid_release(struct inode *inode, struct file *file)
5928{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005929 struct trace_array *tr = inode->i_private;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005930
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005931 trace_array_put(tr);
5932
5933 return seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005934}
5935
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005936static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005937 .open = ftrace_pid_open,
5938 .write = ftrace_pid_write,
5939 .read = seq_read,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005940 .llseek = tracing_lseek,
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005941 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005942};
5943
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005944void ftrace_init_tracefs(struct trace_array *tr, struct dentry *d_tracer)
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005945{
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005946 trace_create_file("set_ftrace_pid", 0644, d_tracer,
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005947 tr, &ftrace_pid_fops);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005948}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005949
Steven Rostedt (Red Hat)501c2372016-07-05 10:04:34 -04005950void __init ftrace_init_tracefs_toplevel(struct trace_array *tr,
5951 struct dentry *d_tracer)
5952{
5953 /* Only the top level directory has the dyn_tracefs and profile */
5954 WARN_ON(!(tr->flags & TRACE_ARRAY_FL_GLOBAL));
5955
5956 ftrace_init_dyn_tracefs(d_tracer);
5957 ftrace_profile_tracefs(d_tracer);
5958}
5959
Steven Rostedt3d083392008-05-12 21:20:42 +02005960/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04005961 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005962 *
5963 * This function should be used by panic code. It stops ftrace
5964 * but in a not so nice way. If you need to simply kill ftrace
5965 * from a non-atomic section, use ftrace_kill.
5966 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04005967void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005968{
5969 ftrace_disabled = 1;
5970 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005971 clear_ftrace_function();
5972}
5973
5974/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04005975 * Test if ftrace is dead or not.
5976 */
5977int ftrace_is_dead(void)
5978{
5979 return ftrace_disabled;
5980}
5981
5982/**
Steven Rostedt3d083392008-05-12 21:20:42 +02005983 * register_ftrace_function - register a function for profiling
5984 * @ops - ops structure that holds the function for profiling.
5985 *
5986 * Register a function to be called by all functions in the
5987 * kernel.
5988 *
5989 * Note: @ops->func and all the functions it calls must be labeled
5990 * with "notrace", otherwise it will go into a
5991 * recursive loop.
5992 */
5993int register_ftrace_function(struct ftrace_ops *ops)
5994{
Steven Rostedt45a4a232011-04-21 23:16:46 -04005995 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02005996
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09005997 ftrace_ops_init(ops);
5998
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005999 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006000
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05006001 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04006002
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006003 mutex_unlock(&ftrace_lock);
Borislav Petkov8d240dd2012-03-29 19:11:40 +02006004
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006005 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02006006}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04006007EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02006008
6009/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01006010 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02006011 * @ops - ops structure that holds the function to unregister
6012 *
6013 * Unregister a function that was added to be called by ftrace profiling.
6014 */
6015int unregister_ftrace_function(struct ftrace_ops *ops)
6016{
6017 int ret;
6018
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006019 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05006020 ret = ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006021 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006022
6023 return ret;
6024}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04006025EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006026
Ingo Molnare309b412008-05-12 21:20:51 +02006027int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006028ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07006029 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006030 loff_t *ppos)
6031{
Steven Rostedt45a4a232011-04-21 23:16:46 -04006032 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02006033
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006034 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006035
Steven Rostedt45a4a232011-04-21 23:16:46 -04006036 if (unlikely(ftrace_disabled))
6037 goto out;
6038
6039 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006040
Li Zefana32c7762009-06-26 16:55:51 +08006041 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006042 goto out;
6043
Li Zefana32c7762009-06-26 16:55:51 +08006044 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006045
6046 if (ftrace_enabled) {
6047
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006048 /* we are starting ftrace again */
Jan Kiszka5000c412013-03-26 17:53:03 +01006049 if (ftrace_ops_list != &ftrace_list_end)
6050 update_ftrace_function();
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006051
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05006052 ftrace_startup_sysctl();
6053
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006054 } else {
6055 /* stopping ftrace calls (just send to ftrace_stub) */
6056 ftrace_trace_function = ftrace_stub;
6057
6058 ftrace_shutdown_sysctl();
6059 }
6060
6061 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006062 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02006063 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02006064}
Ingo Molnarf17845e2008-10-24 12:47:10 +02006065
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006066#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006067
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006068static struct ftrace_ops graph_ops = {
6069 .func = ftrace_stub,
6070 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
6071 FTRACE_OPS_FL_INITIALIZED |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04006072 FTRACE_OPS_FL_PID |
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006073 FTRACE_OPS_FL_STUB,
6074#ifdef FTRACE_GRAPH_TRAMP_ADDR
6075 .trampoline = FTRACE_GRAPH_TRAMP_ADDR,
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05006076 /* trampoline_size is only needed for dynamically allocated tramps */
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006077#endif
6078 ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash)
6079};
6080
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04006081void ftrace_graph_sleep_time_control(bool enable)
6082{
6083 fgraph_sleep_time = enable;
6084}
6085
6086void ftrace_graph_graph_time_control(bool enable)
6087{
6088 fgraph_graph_time = enable;
6089}
6090
Steven Rostedte49dc192008-12-02 23:50:05 -05006091int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
6092{
6093 return 0;
6094}
6095
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006096/* The callbacks that hook a function */
6097trace_func_graph_ret_t ftrace_graph_return =
6098 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05006099trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006100static trace_func_graph_ent_t __ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006101
6102/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
6103static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
6104{
6105 int i;
6106 int ret = 0;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006107 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
6108 struct task_struct *g, *t;
6109
6110 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
6111 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
6112 * sizeof(struct ftrace_ret_stack),
6113 GFP_KERNEL);
6114 if (!ret_stack_list[i]) {
6115 start = 0;
6116 end = i;
6117 ret = -ENOMEM;
6118 goto free;
6119 }
6120 }
6121
Soumya PN6112a302016-05-17 21:31:14 +05306122 read_lock(&tasklist_lock);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006123 do_each_thread(g, t) {
6124 if (start == end) {
6125 ret = -EAGAIN;
6126 goto unlock;
6127 }
6128
6129 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01006130 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006131 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04006132 t->curr_ret_stack = -1;
6133 /* Make sure the tasks see the -1 first: */
6134 smp_wmb();
6135 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006136 }
6137 } while_each_thread(g, t);
6138
6139unlock:
Soumya PN6112a302016-05-17 21:31:14 +05306140 read_unlock(&tasklist_lock);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006141free:
6142 for (i = start; i < end; i++)
6143 kfree(ret_stack_list[i]);
6144 return ret;
6145}
6146
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006147static void
Peter Zijlstrac73464b2015-09-28 18:06:56 +02006148ftrace_graph_probe_sched_switch(void *ignore, bool preempt,
Steven Rostedt38516ab2010-04-20 17:04:50 -04006149 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006150{
6151 unsigned long long timestamp;
6152 int index;
6153
Steven Rostedtbe6f1642009-03-24 11:06:24 -04006154 /*
6155 * Does the user want to count the time a function was asleep.
6156 * If so, do not update the time stamps.
6157 */
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04006158 if (fgraph_sleep_time)
Steven Rostedtbe6f1642009-03-24 11:06:24 -04006159 return;
6160
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006161 timestamp = trace_clock_local();
6162
6163 prev->ftrace_timestamp = timestamp;
6164
6165 /* only process tasks that we timestamped */
6166 if (!next->ftrace_timestamp)
6167 return;
6168
6169 /*
6170 * Update all the counters in next to make up for the
6171 * time next was sleeping.
6172 */
6173 timestamp -= next->ftrace_timestamp;
6174
6175 for (index = next->curr_ret_stack; index >= 0; index--)
6176 next->ret_stack[index].calltime += timestamp;
6177}
6178
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006179/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006180static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006181{
6182 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01006183 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006184
6185 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
6186 sizeof(struct ftrace_ret_stack *),
6187 GFP_KERNEL);
6188
6189 if (!ret_stack_list)
6190 return -ENOMEM;
6191
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01006192 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04006193 for_each_online_cpu(cpu) {
6194 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05006195 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04006196 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01006197
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006198 do {
6199 ret = alloc_retstack_tasklist(ret_stack_list);
6200 } while (ret == -EAGAIN);
6201
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006202 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04006203 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006204 if (ret)
6205 pr_info("ftrace_graph: Couldn't activate tracepoint"
6206 " probe to kernel_sched_switch\n");
6207 }
6208
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006209 kfree(ret_stack_list);
6210 return ret;
6211}
6212
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08006213/*
6214 * Hibernation protection.
6215 * The state of the current task is too much unstable during
6216 * suspend/restore to disk. We want to protect against that.
6217 */
6218static int
6219ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
6220 void *unused)
6221{
6222 switch (state) {
6223 case PM_HIBERNATION_PREPARE:
6224 pause_graph_tracing();
6225 break;
6226
6227 case PM_POST_HIBERNATION:
6228 unpause_graph_tracing();
6229 break;
6230 }
6231 return NOTIFY_DONE;
6232}
6233
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006234static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace)
6235{
6236 if (!ftrace_ops_test(&global_ops, trace->func, NULL))
6237 return 0;
6238 return __ftrace_graph_entry(trace);
6239}
6240
6241/*
6242 * The function graph tracer should only trace the functions defined
6243 * by set_ftrace_filter and set_ftrace_notrace. If another function
6244 * tracer ops is registered, the graph tracer requires testing the
6245 * function against the global ops, and not just trace any function
6246 * that any ftrace_ops registered.
6247 */
6248static void update_function_graph_func(void)
6249{
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006250 struct ftrace_ops *op;
6251 bool do_test = false;
6252
6253 /*
6254 * The graph and global ops share the same set of functions
6255 * to test. If any other ops is on the list, then
6256 * the graph tracing needs to test if its the function
6257 * it should call.
6258 */
6259 do_for_each_ftrace_op(op, ftrace_ops_list) {
6260 if (op != &global_ops && op != &graph_ops &&
6261 op != &ftrace_list_end) {
6262 do_test = true;
6263 /* in double loop, break out with goto */
6264 goto out;
6265 }
6266 } while_for_each_ftrace_op(op);
6267 out:
6268 if (do_test)
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006269 ftrace_graph_entry = ftrace_graph_entry_test;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006270 else
6271 ftrace_graph_entry = __ftrace_graph_entry;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006272}
6273
Mathias Krause8275f692014-03-30 15:31:50 +02006274static struct notifier_block ftrace_suspend_notifier = {
6275 .notifier_call = ftrace_suspend_notifier_call,
6276};
6277
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006278int register_ftrace_graph(trace_func_graph_ret_t retfunc,
6279 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006280{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006281 int ret = 0;
6282
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006283 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006284
Steven Rostedt05ce5812009-03-24 00:18:31 -04006285 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04006286 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04006287 ret = -EBUSY;
6288 goto out;
6289 }
6290
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08006291 register_pm_notifier(&ftrace_suspend_notifier);
6292
Steven Rostedt597af812009-04-03 15:24:12 -04006293 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006294 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006295 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04006296 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006297 goto out;
6298 }
Steven Rostedte53a6312008-11-26 00:16:25 -05006299
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006300 ftrace_graph_return = retfunc;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006301
6302 /*
6303 * Update the indirect function to the entryfunc, and the
6304 * function that gets called to the entry_test first. Then
6305 * call the update fgraph entry function to determine if
6306 * the entryfunc should be called directly or not.
6307 */
6308 __ftrace_graph_entry = entryfunc;
6309 ftrace_graph_entry = ftrace_graph_entry_test;
6310 update_function_graph_func();
Steven Rostedte53a6312008-11-26 00:16:25 -05006311
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006312 ret = ftrace_startup(&graph_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006313out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006314 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006315 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006316}
6317
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006318void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006319{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006320 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006321
Steven Rostedt597af812009-04-03 15:24:12 -04006322 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04006323 goto out;
6324
Steven Rostedt597af812009-04-03 15:24:12 -04006325 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006326 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05006327 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006328 __ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006329 ftrace_shutdown(&graph_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08006330 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04006331 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006332
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04006333#ifdef CONFIG_DYNAMIC_FTRACE
6334 /*
6335 * Function graph does not allocate the trampoline, but
6336 * other global_ops do. We need to reset the ALLOC_TRAMP flag
6337 * if one was used.
6338 */
6339 global_ops.trampoline = save_global_trampoline;
6340 if (save_global_flags & FTRACE_OPS_FL_ALLOC_TRAMP)
6341 global_ops.flags |= FTRACE_OPS_FL_ALLOC_TRAMP;
6342#endif
6343
Steven Rostedt2aad1b72009-03-30 11:11:28 -04006344 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006345 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006346}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006347
Steven Rostedt868baf02011-02-10 21:26:13 -05006348static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
6349
6350static void
6351graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
6352{
6353 atomic_set(&t->tracing_graph_pause, 0);
6354 atomic_set(&t->trace_overrun, 0);
6355 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006356 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05006357 smp_wmb();
6358 t->ret_stack = ret_stack;
6359}
6360
6361/*
6362 * Allocate a return stack for the idle task. May be the first
6363 * time through, or it may be done by CPU hotplug online.
6364 */
6365void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
6366{
6367 t->curr_ret_stack = -1;
6368 /*
6369 * The idle task has no parent, it either has its own
6370 * stack or no stack at all.
6371 */
6372 if (t->ret_stack)
6373 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
6374
6375 if (ftrace_graph_active) {
6376 struct ftrace_ret_stack *ret_stack;
6377
6378 ret_stack = per_cpu(idle_ret_stack, cpu);
6379 if (!ret_stack) {
6380 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
6381 * sizeof(struct ftrace_ret_stack),
6382 GFP_KERNEL);
6383 if (!ret_stack)
6384 return;
6385 per_cpu(idle_ret_stack, cpu) = ret_stack;
6386 }
6387 graph_init_task(t, ret_stack);
6388 }
6389}
6390
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006391/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006392void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006393{
Steven Rostedt84047e32009-06-02 16:51:55 -04006394 /* Make sure we do not use the parent ret_stack */
6395 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05006396 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04006397
Steven Rostedt597af812009-04-03 15:24:12 -04006398 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04006399 struct ftrace_ret_stack *ret_stack;
6400
6401 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006402 * sizeof(struct ftrace_ret_stack),
6403 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04006404 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006405 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05006406 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04006407 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006408}
6409
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006410void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006411{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006412 struct ftrace_ret_stack *ret_stack = t->ret_stack;
6413
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006414 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006415 /* NULL must become visible to IRQs before we free it: */
6416 barrier();
6417
6418 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006419}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006420#endif