blob: 7509ef9810bf89aeb118527e8e67c87966816842 [file] [log] [blame]
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02001/*
2 * Infrastructure for profiling code inserted by 'gcc -pg'.
3 *
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2004-2008 Ingo Molnar <mingo@redhat.com>
6 *
7 * Originally ported from the -rt patch by:
8 * Copyright (C) 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
9 *
10 * Based on code in the latency_tracer, that is:
11 *
12 * Copyright (C) 2004-2006 Ingo Molnar
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +010013 * Copyright (C) 2004 Nadia Yvette Chambers
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020014 */
15
Steven Rostedt3d083392008-05-12 21:20:42 +020016#include <linux/stop_machine.h>
17#include <linux/clocksource.h>
Ingo Molnar29930022017-02-08 18:51:36 +010018#include <linux/sched/task.h>
Steven Rostedt3d083392008-05-12 21:20:42 +020019#include <linux/kallsyms.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020020#include <linux/seq_file.h>
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -080021#include <linux/suspend.h>
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -050022#include <linux/tracefs.h>
Steven Rostedt3d083392008-05-12 21:20:42 +020023#include <linux/hardirq.h>
Ingo Molnar2d8b8202008-02-23 16:55:50 +010024#include <linux/kthread.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020025#include <linux/uaccess.h>
Steven Rostedt5855fea2011-12-16 19:27:42 -050026#include <linux/bsearch.h>
Paul Gortmaker56d82e02011-05-26 17:53:52 -040027#include <linux/module.h>
Ingo Molnar2d8b8202008-02-23 16:55:50 +010028#include <linux/ftrace.h>
Steven Rostedtb0fc4942008-05-12 21:20:43 +020029#include <linux/sysctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020031#include <linux/ctype.h>
Steven Rostedt68950612011-12-16 17:06:45 -050032#include <linux/sort.h>
Steven Rostedt3d083392008-05-12 21:20:42 +020033#include <linux/list.h>
Steven Rostedt59df055f2009-02-14 15:29:06 -050034#include <linux/hash.h>
Paul E. McKenney3f379b02010-03-05 15:03:25 -080035#include <linux/rcupdate.h>
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020036
Steven Rostedtad8d75f2009-04-14 19:39:12 -040037#include <trace/events/sched.h>
Steven Rostedt8aef2d22009-03-24 01:10:15 -040038
Steven Rostedt (VMware)b80f0f62017-04-03 12:57:35 -040039#include <asm/sections.h>
Steven Rostedt2af15d62009-05-28 13:37:24 -040040#include <asm/setup.h>
Abhishek Sagar395a59d2008-06-21 23:47:27 +053041
Steven Rostedt0706f1c2009-03-23 23:12:58 -040042#include "trace_output.h"
Steven Rostedtbac429f2009-03-20 12:50:56 -040043#include "trace_stat.h"
Steven Rostedt3d083392008-05-12 21:20:42 +020044
Steven Rostedt6912896e2008-10-23 09:33:03 -040045#define FTRACE_WARN_ON(cond) \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040046 ({ \
47 int ___r = cond; \
48 if (WARN_ON(___r)) \
Steven Rostedt6912896e2008-10-23 09:33:03 -040049 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040050 ___r; \
51 })
Steven Rostedt6912896e2008-10-23 09:33:03 -040052
53#define FTRACE_WARN_ON_ONCE(cond) \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040054 ({ \
55 int ___r = cond; \
56 if (WARN_ON_ONCE(___r)) \
Steven Rostedt6912896e2008-10-23 09:33:03 -040057 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040058 ___r; \
59 })
Steven Rostedt6912896e2008-10-23 09:33:03 -040060
Steven Rostedt8fc0c702009-02-16 15:28:00 -050061/* hash bits for specific function selection */
62#define FTRACE_HASH_BITS 7
63#define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
Steven Rostedt33dc9b12011-05-02 17:34:47 -040064#define FTRACE_HASH_DEFAULT_BITS 10
65#define FTRACE_HASH_MAX_BITS 12
Steven Rostedt8fc0c702009-02-16 15:28:00 -050066
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +090067#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -040068#define INIT_OPS_HASH(opsname) \
69 .func_hash = &opsname.local_hash, \
70 .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock),
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -040071#define ASSIGN_OPS_HASH(opsname, val) \
72 .func_hash = val, \
73 .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock),
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +090074#else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -040075#define INIT_OPS_HASH(opsname)
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -040076#define ASSIGN_OPS_HASH(opsname, val)
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +090077#endif
78
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040079static struct ftrace_ops ftrace_list_end __read_mostly = {
80 .func = ftrace_stub,
Steven Rostedt (Red Hat)395b97a2013-03-27 09:31:28 -040081 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_STUB,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -040082 INIT_OPS_HASH(ftrace_list_end)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040083};
84
Steven Rostedt4eebcc82008-05-12 21:20:48 +020085/* ftrace_enabled is a method to turn ftrace on or off */
86int ftrace_enabled __read_mostly;
Steven Rostedtd61f82d2008-05-12 21:20:43 +020087static int last_ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +020088
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040089/* Current function tracing op */
90struct ftrace_ops *function_trace_op __read_mostly = &ftrace_list_end;
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -050091/* What to set function_trace_op to */
92static struct ftrace_ops *set_function_trace_op;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050093
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -040094static bool ftrace_pids_enabled(struct ftrace_ops *ops)
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -040095{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -040096 struct trace_array *tr;
97
98 if (!(ops->flags & FTRACE_OPS_FL_PID) || !ops->private)
99 return false;
100
101 tr = ops->private;
102
103 return tr->function_pids != NULL;
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400104}
105
106static void ftrace_update_trampoline(struct ftrace_ops *ops);
107
Steven Rostedt4eebcc82008-05-12 21:20:48 +0200108/*
109 * ftrace_disabled is set when an anomaly is discovered.
110 * ftrace_disabled is much stronger than ftrace_enabled.
111 */
112static int ftrace_disabled __read_mostly;
113
Steven Rostedt52baf112009-02-14 01:15:39 -0500114static DEFINE_MUTEX(ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200115
Steven Rostedtb8489142011-05-04 09:27:52 -0400116static struct ftrace_ops *ftrace_ops_list __read_mostly = &ftrace_list_end;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200117ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
Steven Rostedt2b499382011-05-03 22:49:52 -0400118static struct ftrace_ops global_ops;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200119
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400120#if ARCH_SUPPORTS_FTRACE_OPS
121static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400122 struct ftrace_ops *op, struct pt_regs *regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400123#else
124/* See comment below, where ftrace_ops_list_func is defined */
125static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip);
126#define ftrace_ops_list_func ((ftrace_func_t)ftrace_ops_no_ops)
127#endif
Steven Rostedtb8489142011-05-04 09:27:52 -0400128
Steven Rostedt0a016402012-11-02 17:03:03 -0400129/*
130 * Traverse the ftrace_global_list, invoking all entries. The reason that we
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400131 * can use rcu_dereference_raw_notrace() is that elements removed from this list
Steven Rostedt0a016402012-11-02 17:03:03 -0400132 * are simply leaked, so there is no need to interact with a grace-period
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400133 * mechanism. The rcu_dereference_raw_notrace() calls are needed to handle
Steven Rostedt0a016402012-11-02 17:03:03 -0400134 * concurrent insertions into the ftrace_global_list.
135 *
136 * Silly Alpha and silly pointer-speculation compiler optimizations!
137 */
138#define do_for_each_ftrace_op(op, list) \
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400139 op = rcu_dereference_raw_notrace(list); \
Steven Rostedt0a016402012-11-02 17:03:03 -0400140 do
141
142/*
143 * Optimized for just a single item in the list (as that is the normal case).
144 */
145#define while_for_each_ftrace_op(op) \
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400146 while (likely(op = rcu_dereference_raw_notrace((op)->next)) && \
Steven Rostedt0a016402012-11-02 17:03:03 -0400147 unlikely((op) != &ftrace_list_end))
148
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900149static inline void ftrace_ops_init(struct ftrace_ops *ops)
150{
151#ifdef CONFIG_DYNAMIC_FTRACE
152 if (!(ops->flags & FTRACE_OPS_FL_INITIALIZED)) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400153 mutex_init(&ops->local_hash.regex_lock);
154 ops->func_hash = &ops->local_hash;
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900155 ops->flags |= FTRACE_OPS_FL_INITIALIZED;
156 }
157#endif
158}
159
Steven Rostedtea701f12012-07-20 13:08:05 -0400160/**
161 * ftrace_nr_registered_ops - return number of ops registered
162 *
163 * Returns the number of ftrace_ops registered and tracing functions
164 */
165int ftrace_nr_registered_ops(void)
166{
167 struct ftrace_ops *ops;
168 int cnt = 0;
169
170 mutex_lock(&ftrace_lock);
171
172 for (ops = ftrace_ops_list;
173 ops != &ftrace_list_end; ops = ops->next)
174 cnt++;
175
176 mutex_unlock(&ftrace_lock);
177
178 return cnt;
179}
180
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400181static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400182 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500183{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400184 struct trace_array *tr = op->private;
185
186 if (tr && this_cpu_read(tr->trace_buffer.data->ftrace_ignore_pid))
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500187 return;
188
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400189 op->saved_func(ip, parent_ip, op, regs);
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500190}
191
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200192/**
Steven Rostedt3d083392008-05-12 21:20:42 +0200193 * clear_ftrace_function - reset the ftrace function
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200194 *
Steven Rostedt3d083392008-05-12 21:20:42 +0200195 * This NULLs the ftrace function and in essence stops
196 * tracing. There may be lag
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200197 */
Steven Rostedt3d083392008-05-12 21:20:42 +0200198void clear_ftrace_function(void)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200199{
Steven Rostedt3d083392008-05-12 21:20:42 +0200200 ftrace_trace_function = ftrace_stub;
201}
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200202
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500203static void per_cpu_ops_disable_all(struct ftrace_ops *ops)
Jiri Olsae2484912012-02-15 15:51:48 +0100204{
205 int cpu;
206
207 for_each_possible_cpu(cpu)
208 *per_cpu_ptr(ops->disabled, cpu) = 1;
209}
210
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500211static int per_cpu_ops_alloc(struct ftrace_ops *ops)
Jiri Olsae2484912012-02-15 15:51:48 +0100212{
213 int __percpu *disabled;
214
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500215 if (WARN_ON_ONCE(!(ops->flags & FTRACE_OPS_FL_PER_CPU)))
216 return -EINVAL;
217
Jiri Olsae2484912012-02-15 15:51:48 +0100218 disabled = alloc_percpu(int);
219 if (!disabled)
220 return -ENOMEM;
221
222 ops->disabled = disabled;
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500223 per_cpu_ops_disable_all(ops);
Jiri Olsae2484912012-02-15 15:51:48 +0100224 return 0;
225}
226
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500227static void ftrace_sync(struct work_struct *work)
228{
229 /*
230 * This function is just a stub to implement a hard force
231 * of synchronize_sched(). This requires synchronizing
232 * tasks even in userspace and idle.
233 *
234 * Yes, function tracing is rude.
235 */
236}
237
238static void ftrace_sync_ipi(void *data)
239{
240 /* Probably not needed, but do it anyway */
241 smp_rmb();
242}
243
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500244#ifdef CONFIG_FUNCTION_GRAPH_TRACER
245static void update_function_graph_func(void);
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400246
247/* Both enabled by default (can be cleared by function_graph tracer flags */
248static bool fgraph_sleep_time = true;
249static bool fgraph_graph_time = true;
250
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500251#else
252static inline void update_function_graph_func(void) { }
253#endif
254
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100255
256static ftrace_func_t ftrace_ops_get_list_func(struct ftrace_ops *ops)
257{
258 /*
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500259 * If this is a dynamic, RCU, or per CPU ops, or we force list func,
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100260 * then it needs to call the list anyway.
261 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500262 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU |
263 FTRACE_OPS_FL_RCU) || FTRACE_FORCE_LIST_FUNC)
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100264 return ftrace_ops_list_func;
265
266 return ftrace_ops_get_func(ops);
267}
268
Steven Rostedt2b499382011-05-03 22:49:52 -0400269static void update_ftrace_function(void)
270{
271 ftrace_func_t func;
272
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400273 /*
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400274 * Prepare the ftrace_ops that the arch callback will use.
275 * If there's only one ftrace_ops registered, the ftrace_ops_list
276 * will point to the ops we want.
277 */
278 set_function_trace_op = ftrace_ops_list;
279
280 /* If there's no ftrace_ops registered, just call the stub function */
281 if (ftrace_ops_list == &ftrace_list_end) {
282 func = ftrace_stub;
283
284 /*
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400285 * If we are at the end of the list and this ops is
Steven Rostedt47409742012-07-20 11:04:44 -0400286 * recursion safe and not dynamic and the arch supports passing ops,
287 * then have the mcount trampoline call the function directly.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400288 */
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400289 } else if (ftrace_ops_list->next == &ftrace_list_end) {
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100290 func = ftrace_ops_get_list_func(ftrace_ops_list);
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400291
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400292 } else {
293 /* Just use the default ftrace_ops */
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500294 set_function_trace_op = &ftrace_list_end;
Steven Rostedtb8489142011-05-04 09:27:52 -0400295 func = ftrace_ops_list_func;
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400296 }
Steven Rostedt2b499382011-05-03 22:49:52 -0400297
Steven Rostedt (Red Hat)5f8bf2d22014-07-15 11:05:12 -0400298 update_function_graph_func();
299
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500300 /* If there's no change, then do nothing more here */
301 if (ftrace_trace_function == func)
302 return;
303
304 /*
305 * If we are using the list function, it doesn't care
306 * about the function_trace_ops.
307 */
308 if (func == ftrace_ops_list_func) {
309 ftrace_trace_function = func;
310 /*
311 * Don't even bother setting function_trace_ops,
312 * it would be racy to do so anyway.
313 */
314 return;
315 }
316
317#ifndef CONFIG_DYNAMIC_FTRACE
318 /*
319 * For static tracing, we need to be a bit more careful.
320 * The function change takes affect immediately. Thus,
321 * we need to coorditate the setting of the function_trace_ops
322 * with the setting of the ftrace_trace_function.
323 *
324 * Set the function to the list ops, which will call the
325 * function we want, albeit indirectly, but it handles the
326 * ftrace_ops and doesn't depend on function_trace_op.
327 */
328 ftrace_trace_function = ftrace_ops_list_func;
329 /*
330 * Make sure all CPUs see this. Yes this is slow, but static
331 * tracing is slow and nasty to have enabled.
332 */
333 schedule_on_each_cpu(ftrace_sync);
334 /* Now all cpus are using the list ops. */
335 function_trace_op = set_function_trace_op;
336 /* Make sure the function_trace_op is visible on all CPUs */
337 smp_wmb();
338 /* Nasty way to force a rmb on all cpus */
339 smp_call_function(ftrace_sync_ipi, NULL, 1);
340 /* OK, we are all set to update the ftrace_trace_function now! */
341#endif /* !CONFIG_DYNAMIC_FTRACE */
342
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400343 ftrace_trace_function = func;
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400344}
345
Jiaxing Wang7eea4fc2014-04-20 23:10:43 +0800346int using_ftrace_ops_list_func(void)
347{
348 return ftrace_trace_function == ftrace_ops_list_func;
349}
350
Steven Rostedt2b499382011-05-03 22:49:52 -0400351static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
Steven Rostedt3d083392008-05-12 21:20:42 +0200352{
Steven Rostedt2b499382011-05-03 22:49:52 -0400353 ops->next = *list;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200354 /*
Steven Rostedtb8489142011-05-04 09:27:52 -0400355 * We are entering ops into the list but another
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200356 * CPU might be walking that list. We need to make sure
357 * the ops->next pointer is valid before another CPU sees
Steven Rostedtb8489142011-05-04 09:27:52 -0400358 * the ops pointer included into the list.
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200359 */
Steven Rostedt2b499382011-05-03 22:49:52 -0400360 rcu_assign_pointer(*list, ops);
361}
Steven Rostedt3d083392008-05-12 21:20:42 +0200362
Steven Rostedt2b499382011-05-03 22:49:52 -0400363static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
364{
365 struct ftrace_ops **p;
366
367 /*
368 * If we are removing the last function, then simply point
369 * to the ftrace_stub.
370 */
371 if (*list == ops && ops->next == &ftrace_list_end) {
372 *list = &ftrace_list_end;
373 return 0;
374 }
375
376 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
377 if (*p == ops)
378 break;
379
380 if (*p != ops)
381 return -1;
382
383 *p = (*p)->next;
384 return 0;
385}
386
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400387static void ftrace_update_trampoline(struct ftrace_ops *ops);
388
Steven Rostedt2b499382011-05-03 22:49:52 -0400389static int __register_ftrace_function(struct ftrace_ops *ops)
390{
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -0500391 if (ops->flags & FTRACE_OPS_FL_DELETED)
392 return -EINVAL;
393
Steven Rostedtb8489142011-05-04 09:27:52 -0400394 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
395 return -EBUSY;
396
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +0900397#ifndef CONFIG_DYNAMIC_FTRACE_WITH_REGS
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400398 /*
399 * If the ftrace_ops specifies SAVE_REGS, then it only can be used
400 * if the arch supports it, or SAVE_REGS_IF_SUPPORTED is also set.
401 * Setting SAVE_REGS_IF_SUPPORTED makes SAVE_REGS irrelevant.
402 */
403 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS &&
404 !(ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED))
405 return -EINVAL;
406
407 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED)
408 ops->flags |= FTRACE_OPS_FL_SAVE_REGS;
409#endif
410
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400411 if (!core_kernel_data((unsigned long)ops))
412 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
413
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500414 if (ops->flags & FTRACE_OPS_FL_PER_CPU) {
415 if (per_cpu_ops_alloc(ops))
Jiri Olsae2484912012-02-15 15:51:48 +0100416 return -ENOMEM;
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500417 }
418
419 add_ftrace_ops(&ftrace_ops_list, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400420
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400421 /* Always save the function, and reset at unregistering */
422 ops->saved_func = ops->func;
423
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400424 if (ftrace_pids_enabled(ops))
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400425 ops->func = ftrace_pid_func;
426
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400427 ftrace_update_trampoline(ops);
428
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400429 if (ftrace_enabled)
430 update_ftrace_function();
Steven Rostedt3d083392008-05-12 21:20:42 +0200431
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200432 return 0;
433}
434
Ingo Molnare309b412008-05-12 21:20:51 +0200435static int __unregister_ftrace_function(struct ftrace_ops *ops)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200436{
Steven Rostedt2b499382011-05-03 22:49:52 -0400437 int ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200438
Steven Rostedtb8489142011-05-04 09:27:52 -0400439 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
440 return -EBUSY;
441
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500442 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400443
Steven Rostedt2b499382011-05-03 22:49:52 -0400444 if (ret < 0)
445 return ret;
Steven Rostedtb8489142011-05-04 09:27:52 -0400446
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400447 if (ftrace_enabled)
448 update_ftrace_function();
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200449
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400450 ops->func = ops->saved_func;
451
Steven Rostedte6ea44e2009-02-14 01:42:44 -0500452 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +0200453}
454
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500455static void ftrace_update_pid_func(void)
456{
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400457 struct ftrace_ops *op;
458
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400459 /* Only do something if we are tracing something */
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500460 if (ftrace_trace_function == ftrace_stub)
KOSAKI Motohiro10dd3eb2009-03-06 15:29:04 +0900461 return;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500462
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400463 do_for_each_ftrace_op(op, ftrace_ops_list) {
464 if (op->flags & FTRACE_OPS_FL_PID) {
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400465 op->func = ftrace_pids_enabled(op) ?
466 ftrace_pid_func : op->saved_func;
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400467 ftrace_update_trampoline(op);
468 }
469 } while_for_each_ftrace_op(op);
470
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400471 update_ftrace_function();
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500472}
473
Steven Rostedt493762f2009-03-23 17:12:36 -0400474#ifdef CONFIG_FUNCTION_PROFILER
475struct ftrace_profile {
476 struct hlist_node node;
477 unsigned long ip;
478 unsigned long counter;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400479#ifdef CONFIG_FUNCTION_GRAPH_TRACER
480 unsigned long long time;
Chase Douglase330b3b2010-04-26 14:02:05 -0400481 unsigned long long time_squared;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400482#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400483};
484
485struct ftrace_profile_page {
486 struct ftrace_profile_page *next;
487 unsigned long index;
488 struct ftrace_profile records[];
489};
490
Steven Rostedtcafb1682009-03-24 20:50:39 -0400491struct ftrace_profile_stat {
492 atomic_t disabled;
493 struct hlist_head *hash;
494 struct ftrace_profile_page *pages;
495 struct ftrace_profile_page *start;
496 struct tracer_stat stat;
497};
498
Steven Rostedt493762f2009-03-23 17:12:36 -0400499#define PROFILE_RECORDS_SIZE \
500 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
501
502#define PROFILES_PER_PAGE \
503 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
504
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400505static int ftrace_profile_enabled __read_mostly;
506
507/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
Steven Rostedt493762f2009-03-23 17:12:36 -0400508static DEFINE_MUTEX(ftrace_profile_lock);
509
Steven Rostedtcafb1682009-03-24 20:50:39 -0400510static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
Steven Rostedt493762f2009-03-23 17:12:36 -0400511
Namhyung Kim20079eb2013-04-10 08:55:50 +0900512#define FTRACE_PROFILE_HASH_BITS 10
513#define FTRACE_PROFILE_HASH_SIZE (1 << FTRACE_PROFILE_HASH_BITS)
Steven Rostedt493762f2009-03-23 17:12:36 -0400514
Steven Rostedt493762f2009-03-23 17:12:36 -0400515static void *
516function_stat_next(void *v, int idx)
517{
518 struct ftrace_profile *rec = v;
519 struct ftrace_profile_page *pg;
520
521 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
522
523 again:
Li Zefan0296e422009-06-26 11:15:37 +0800524 if (idx != 0)
525 rec++;
526
Steven Rostedt493762f2009-03-23 17:12:36 -0400527 if ((void *)rec >= (void *)&pg->records[pg->index]) {
528 pg = pg->next;
529 if (!pg)
530 return NULL;
531 rec = &pg->records[0];
532 if (!rec->counter)
533 goto again;
534 }
535
536 return rec;
537}
538
539static void *function_stat_start(struct tracer_stat *trace)
540{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400541 struct ftrace_profile_stat *stat =
542 container_of(trace, struct ftrace_profile_stat, stat);
543
544 if (!stat || !stat->start)
545 return NULL;
546
547 return function_stat_next(&stat->start->records[0], 0);
Steven Rostedt493762f2009-03-23 17:12:36 -0400548}
549
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400550#ifdef CONFIG_FUNCTION_GRAPH_TRACER
551/* function graph compares on total time */
552static int function_stat_cmp(void *p1, void *p2)
553{
554 struct ftrace_profile *a = p1;
555 struct ftrace_profile *b = p2;
556
557 if (a->time < b->time)
558 return -1;
559 if (a->time > b->time)
560 return 1;
561 else
562 return 0;
563}
564#else
565/* not function graph compares against hits */
Steven Rostedt493762f2009-03-23 17:12:36 -0400566static int function_stat_cmp(void *p1, void *p2)
567{
568 struct ftrace_profile *a = p1;
569 struct ftrace_profile *b = p2;
570
571 if (a->counter < b->counter)
572 return -1;
573 if (a->counter > b->counter)
574 return 1;
575 else
576 return 0;
577}
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400578#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400579
580static int function_stat_headers(struct seq_file *m)
581{
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400582#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100583 seq_puts(m, " Function "
584 "Hit Time Avg s^2\n"
585 " -------- "
586 "--- ---- --- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400587#else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100588 seq_puts(m, " Function Hit\n"
589 " -------- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400590#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400591 return 0;
592}
593
594static int function_stat_show(struct seq_file *m, void *v)
595{
596 struct ftrace_profile *rec = v;
597 char str[KSYM_SYMBOL_LEN];
Li Zefan3aaba202010-08-23 16:50:12 +0800598 int ret = 0;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400599#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400600 static struct trace_seq s;
601 unsigned long long avg;
Chase Douglase330b3b2010-04-26 14:02:05 -0400602 unsigned long long stddev;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400603#endif
Li Zefan3aaba202010-08-23 16:50:12 +0800604 mutex_lock(&ftrace_profile_lock);
605
606 /* we raced with function_profile_reset() */
607 if (unlikely(rec->counter == 0)) {
608 ret = -EBUSY;
609 goto out;
610 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400611
Umesh Tiwari8e436ca2015-06-22 16:58:08 +0530612#ifdef CONFIG_FUNCTION_GRAPH_TRACER
613 avg = rec->time;
614 do_div(avg, rec->counter);
615 if (tracing_thresh && (avg < tracing_thresh))
616 goto out;
617#endif
618
Steven Rostedt493762f2009-03-23 17:12:36 -0400619 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400620 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
Steven Rostedt493762f2009-03-23 17:12:36 -0400621
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400622#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100623 seq_puts(m, " ");
Steven Rostedt34886c82009-03-25 21:00:47 -0400624
Chase Douglase330b3b2010-04-26 14:02:05 -0400625 /* Sample standard deviation (s^2) */
626 if (rec->counter <= 1)
627 stddev = 0;
628 else {
Juri Lelli52d85d72013-06-12 12:03:18 +0200629 /*
630 * Apply Welford's method:
631 * s^2 = 1 / (n * (n-1)) * (n * \Sum (x_i)^2 - (\Sum x_i)^2)
632 */
633 stddev = rec->counter * rec->time_squared -
634 rec->time * rec->time;
635
Chase Douglase330b3b2010-04-26 14:02:05 -0400636 /*
637 * Divide only 1000 for ns^2 -> us^2 conversion.
638 * trace_print_graph_duration will divide 1000 again.
639 */
Juri Lelli52d85d72013-06-12 12:03:18 +0200640 do_div(stddev, rec->counter * (rec->counter - 1) * 1000);
Chase Douglase330b3b2010-04-26 14:02:05 -0400641 }
642
Steven Rostedt34886c82009-03-25 21:00:47 -0400643 trace_seq_init(&s);
644 trace_print_graph_duration(rec->time, &s);
645 trace_seq_puts(&s, " ");
646 trace_print_graph_duration(avg, &s);
Chase Douglase330b3b2010-04-26 14:02:05 -0400647 trace_seq_puts(&s, " ");
648 trace_print_graph_duration(stddev, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400649 trace_print_seq(m, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400650#endif
651 seq_putc(m, '\n');
Li Zefan3aaba202010-08-23 16:50:12 +0800652out:
653 mutex_unlock(&ftrace_profile_lock);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400654
Li Zefan3aaba202010-08-23 16:50:12 +0800655 return ret;
Steven Rostedt493762f2009-03-23 17:12:36 -0400656}
657
Steven Rostedtcafb1682009-03-24 20:50:39 -0400658static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400659{
660 struct ftrace_profile_page *pg;
661
Steven Rostedtcafb1682009-03-24 20:50:39 -0400662 pg = stat->pages = stat->start;
Steven Rostedt493762f2009-03-23 17:12:36 -0400663
664 while (pg) {
665 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
666 pg->index = 0;
667 pg = pg->next;
668 }
669
Steven Rostedtcafb1682009-03-24 20:50:39 -0400670 memset(stat->hash, 0,
Steven Rostedt493762f2009-03-23 17:12:36 -0400671 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
672}
673
Steven Rostedtcafb1682009-03-24 20:50:39 -0400674int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400675{
676 struct ftrace_profile_page *pg;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400677 int functions;
678 int pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400679 int i;
680
681 /* If we already allocated, do nothing */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400682 if (stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400683 return 0;
684
Steven Rostedtcafb1682009-03-24 20:50:39 -0400685 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
686 if (!stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400687 return -ENOMEM;
688
Steven Rostedt318e0a72009-03-25 20:06:34 -0400689#ifdef CONFIG_DYNAMIC_FTRACE
690 functions = ftrace_update_tot_cnt;
691#else
692 /*
693 * We do not know the number of functions that exist because
694 * dynamic tracing is what counts them. With past experience
695 * we have around 20K functions. That should be more than enough.
696 * It is highly unlikely we will execute every function in
697 * the kernel.
698 */
699 functions = 20000;
700#endif
701
Steven Rostedtcafb1682009-03-24 20:50:39 -0400702 pg = stat->start = stat->pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400703
Steven Rostedt318e0a72009-03-25 20:06:34 -0400704 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
705
Namhyung Kim39e30cd2013-04-01 21:46:24 +0900706 for (i = 1; i < pages; i++) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400707 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400708 if (!pg->next)
Steven Rostedt318e0a72009-03-25 20:06:34 -0400709 goto out_free;
Steven Rostedt493762f2009-03-23 17:12:36 -0400710 pg = pg->next;
711 }
712
713 return 0;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400714
715 out_free:
716 pg = stat->start;
717 while (pg) {
718 unsigned long tmp = (unsigned long)pg;
719
720 pg = pg->next;
721 free_page(tmp);
722 }
723
Steven Rostedt318e0a72009-03-25 20:06:34 -0400724 stat->pages = NULL;
725 stat->start = NULL;
726
727 return -ENOMEM;
Steven Rostedt493762f2009-03-23 17:12:36 -0400728}
729
Steven Rostedtcafb1682009-03-24 20:50:39 -0400730static int ftrace_profile_init_cpu(int cpu)
Steven Rostedt493762f2009-03-23 17:12:36 -0400731{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400732 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400733 int size;
734
Steven Rostedtcafb1682009-03-24 20:50:39 -0400735 stat = &per_cpu(ftrace_profile_stats, cpu);
736
737 if (stat->hash) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400738 /* If the profile is already created, simply reset it */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400739 ftrace_profile_reset(stat);
Steven Rostedt493762f2009-03-23 17:12:36 -0400740 return 0;
741 }
742
743 /*
744 * We are profiling all functions, but usually only a few thousand
745 * functions are hit. We'll make a hash of 1024 items.
746 */
747 size = FTRACE_PROFILE_HASH_SIZE;
748
Steven Rostedtcafb1682009-03-24 20:50:39 -0400749 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400750
Steven Rostedtcafb1682009-03-24 20:50:39 -0400751 if (!stat->hash)
Steven Rostedt493762f2009-03-23 17:12:36 -0400752 return -ENOMEM;
753
Steven Rostedt318e0a72009-03-25 20:06:34 -0400754 /* Preallocate the function profiling pages */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400755 if (ftrace_profile_pages_init(stat) < 0) {
756 kfree(stat->hash);
757 stat->hash = NULL;
Steven Rostedt493762f2009-03-23 17:12:36 -0400758 return -ENOMEM;
759 }
760
761 return 0;
762}
763
Steven Rostedtcafb1682009-03-24 20:50:39 -0400764static int ftrace_profile_init(void)
765{
766 int cpu;
767 int ret = 0;
768
Miao Xiec4602c12013-12-16 15:20:01 +0800769 for_each_possible_cpu(cpu) {
Steven Rostedtcafb1682009-03-24 20:50:39 -0400770 ret = ftrace_profile_init_cpu(cpu);
771 if (ret)
772 break;
773 }
774
775 return ret;
776}
777
Steven Rostedt493762f2009-03-23 17:12:36 -0400778/* interrupts must be disabled */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400779static struct ftrace_profile *
780ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400781{
782 struct ftrace_profile *rec;
783 struct hlist_head *hhd;
Steven Rostedt493762f2009-03-23 17:12:36 -0400784 unsigned long key;
785
Namhyung Kim20079eb2013-04-10 08:55:50 +0900786 key = hash_long(ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400787 hhd = &stat->hash[key];
Steven Rostedt493762f2009-03-23 17:12:36 -0400788
789 if (hlist_empty(hhd))
790 return NULL;
791
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400792 hlist_for_each_entry_rcu_notrace(rec, hhd, node) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400793 if (rec->ip == ip)
794 return rec;
795 }
796
797 return NULL;
798}
799
Steven Rostedtcafb1682009-03-24 20:50:39 -0400800static void ftrace_add_profile(struct ftrace_profile_stat *stat,
801 struct ftrace_profile *rec)
Steven Rostedt493762f2009-03-23 17:12:36 -0400802{
803 unsigned long key;
804
Namhyung Kim20079eb2013-04-10 08:55:50 +0900805 key = hash_long(rec->ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400806 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
Steven Rostedt493762f2009-03-23 17:12:36 -0400807}
808
Steven Rostedt318e0a72009-03-25 20:06:34 -0400809/*
810 * The memory is already allocated, this simply finds a new record to use.
811 */
Steven Rostedt493762f2009-03-23 17:12:36 -0400812static struct ftrace_profile *
Steven Rostedt318e0a72009-03-25 20:06:34 -0400813ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400814{
815 struct ftrace_profile *rec = NULL;
816
Steven Rostedt318e0a72009-03-25 20:06:34 -0400817 /* prevent recursion (from NMIs) */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400818 if (atomic_inc_return(&stat->disabled) != 1)
Steven Rostedt493762f2009-03-23 17:12:36 -0400819 goto out;
820
Steven Rostedt493762f2009-03-23 17:12:36 -0400821 /*
Steven Rostedt318e0a72009-03-25 20:06:34 -0400822 * Try to find the function again since an NMI
823 * could have added it
Steven Rostedt493762f2009-03-23 17:12:36 -0400824 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400825 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400826 if (rec)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400827 goto out;
Steven Rostedt493762f2009-03-23 17:12:36 -0400828
Steven Rostedtcafb1682009-03-24 20:50:39 -0400829 if (stat->pages->index == PROFILES_PER_PAGE) {
830 if (!stat->pages->next)
831 goto out;
832 stat->pages = stat->pages->next;
Steven Rostedt493762f2009-03-23 17:12:36 -0400833 }
834
Steven Rostedtcafb1682009-03-24 20:50:39 -0400835 rec = &stat->pages->records[stat->pages->index++];
Steven Rostedt493762f2009-03-23 17:12:36 -0400836 rec->ip = ip;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400837 ftrace_add_profile(stat, rec);
Steven Rostedt493762f2009-03-23 17:12:36 -0400838
Steven Rostedt493762f2009-03-23 17:12:36 -0400839 out:
Steven Rostedtcafb1682009-03-24 20:50:39 -0400840 atomic_dec(&stat->disabled);
Steven Rostedt493762f2009-03-23 17:12:36 -0400841
842 return rec;
843}
844
Steven Rostedt493762f2009-03-23 17:12:36 -0400845static void
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400846function_profile_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400847 struct ftrace_ops *ops, struct pt_regs *regs)
Steven Rostedt493762f2009-03-23 17:12:36 -0400848{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400849 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400850 struct ftrace_profile *rec;
851 unsigned long flags;
Steven Rostedt493762f2009-03-23 17:12:36 -0400852
853 if (!ftrace_profile_enabled)
854 return;
855
Steven Rostedt493762f2009-03-23 17:12:36 -0400856 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400857
Christoph Lameterbdffd892014-04-29 14:17:40 -0500858 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400859 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400860 goto out;
861
862 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400863 if (!rec) {
Steven Rostedt318e0a72009-03-25 20:06:34 -0400864 rec = ftrace_profile_alloc(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400865 if (!rec)
866 goto out;
867 }
868
869 rec->counter++;
870 out:
871 local_irq_restore(flags);
872}
873
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400874#ifdef CONFIG_FUNCTION_GRAPH_TRACER
875static int profile_graph_entry(struct ftrace_graph_ent *trace)
876{
Namhyung Kim8861dd32016-08-31 11:55:29 +0900877 int index = trace->depth;
878
Steven Rostedta1e2e312011-08-09 12:50:46 -0400879 function_profile_call(trace->func, 0, NULL, NULL);
Namhyung Kim8861dd32016-08-31 11:55:29 +0900880
881 if (index >= 0 && index < FTRACE_RETFUNC_DEPTH)
882 current->ret_stack[index].subtime = 0;
883
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400884 return 1;
885}
886
887static void profile_graph_return(struct ftrace_graph_ret *trace)
888{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400889 struct ftrace_profile_stat *stat;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400890 unsigned long long calltime;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400891 struct ftrace_profile *rec;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400892 unsigned long flags;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400893
894 local_irq_save(flags);
Christoph Lameterbdffd892014-04-29 14:17:40 -0500895 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400896 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400897 goto out;
898
Steven Rostedt37e44bc2010-04-27 21:04:24 -0400899 /* If the calltime was zero'd ignore it */
900 if (!trace->calltime)
901 goto out;
902
Steven Rostedta2a16d62009-03-24 23:17:58 -0400903 calltime = trace->rettime - trace->calltime;
904
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400905 if (!fgraph_graph_time) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400906 int index;
907
908 index = trace->depth;
909
910 /* Append this call time to the parent time to subtract */
911 if (index)
912 current->ret_stack[index - 1].subtime += calltime;
913
914 if (current->ret_stack[index].subtime < calltime)
915 calltime -= current->ret_stack[index].subtime;
916 else
917 calltime = 0;
918 }
919
Steven Rostedtcafb1682009-03-24 20:50:39 -0400920 rec = ftrace_find_profiled_func(stat, trace->func);
Chase Douglase330b3b2010-04-26 14:02:05 -0400921 if (rec) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400922 rec->time += calltime;
Chase Douglase330b3b2010-04-26 14:02:05 -0400923 rec->time_squared += calltime * calltime;
924 }
Steven Rostedta2a16d62009-03-24 23:17:58 -0400925
Steven Rostedtcafb1682009-03-24 20:50:39 -0400926 out:
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400927 local_irq_restore(flags);
928}
929
930static int register_ftrace_profiler(void)
931{
932 return register_ftrace_graph(&profile_graph_return,
933 &profile_graph_entry);
934}
935
936static void unregister_ftrace_profiler(void)
937{
938 unregister_ftrace_graph();
939}
940#else
Paul McQuadebd38c0e2011-05-31 20:51:55 +0100941static struct ftrace_ops ftrace_profile_ops __read_mostly = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400942 .func = function_profile_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900943 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400944 INIT_OPS_HASH(ftrace_profile_ops)
Steven Rostedt493762f2009-03-23 17:12:36 -0400945};
946
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400947static int register_ftrace_profiler(void)
948{
949 return register_ftrace_function(&ftrace_profile_ops);
950}
951
952static void unregister_ftrace_profiler(void)
953{
954 unregister_ftrace_function(&ftrace_profile_ops);
955}
956#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
957
Steven Rostedt493762f2009-03-23 17:12:36 -0400958static ssize_t
959ftrace_profile_write(struct file *filp, const char __user *ubuf,
960 size_t cnt, loff_t *ppos)
961{
962 unsigned long val;
Steven Rostedt493762f2009-03-23 17:12:36 -0400963 int ret;
964
Peter Huewe22fe9b52011-06-07 21:58:27 +0200965 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
966 if (ret)
Steven Rostedt493762f2009-03-23 17:12:36 -0400967 return ret;
968
969 val = !!val;
970
971 mutex_lock(&ftrace_profile_lock);
972 if (ftrace_profile_enabled ^ val) {
973 if (val) {
974 ret = ftrace_profile_init();
975 if (ret < 0) {
976 cnt = ret;
977 goto out;
978 }
979
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400980 ret = register_ftrace_profiler();
981 if (ret < 0) {
982 cnt = ret;
983 goto out;
984 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400985 ftrace_profile_enabled = 1;
986 } else {
987 ftrace_profile_enabled = 0;
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400988 /*
989 * unregister_ftrace_profiler calls stop_machine
990 * so this acts like an synchronize_sched.
991 */
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400992 unregister_ftrace_profiler();
Steven Rostedt493762f2009-03-23 17:12:36 -0400993 }
994 }
995 out:
996 mutex_unlock(&ftrace_profile_lock);
997
Jiri Olsacf8517c2009-10-23 19:36:16 -0400998 *ppos += cnt;
Steven Rostedt493762f2009-03-23 17:12:36 -0400999
1000 return cnt;
1001}
1002
1003static ssize_t
1004ftrace_profile_read(struct file *filp, char __user *ubuf,
1005 size_t cnt, loff_t *ppos)
1006{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001007 char buf[64]; /* big enough to hold a number */
Steven Rostedt493762f2009-03-23 17:12:36 -04001008 int r;
1009
1010 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
1011 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
1012}
1013
1014static const struct file_operations ftrace_profile_fops = {
1015 .open = tracing_open_generic,
1016 .read = ftrace_profile_read,
1017 .write = ftrace_profile_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001018 .llseek = default_llseek,
Steven Rostedt493762f2009-03-23 17:12:36 -04001019};
1020
Steven Rostedtcafb1682009-03-24 20:50:39 -04001021/* used to initialize the real stat files */
1022static struct tracer_stat function_stats __initdata = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001023 .name = "functions",
1024 .stat_start = function_stat_start,
1025 .stat_next = function_stat_next,
1026 .stat_cmp = function_stat_cmp,
1027 .stat_headers = function_stat_headers,
1028 .stat_show = function_stat_show
Steven Rostedtcafb1682009-03-24 20:50:39 -04001029};
1030
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001031static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001032{
Steven Rostedtcafb1682009-03-24 20:50:39 -04001033 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -04001034 struct dentry *entry;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001035 char *name;
Steven Rostedt493762f2009-03-23 17:12:36 -04001036 int ret;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001037 int cpu;
Steven Rostedt493762f2009-03-23 17:12:36 -04001038
Steven Rostedtcafb1682009-03-24 20:50:39 -04001039 for_each_possible_cpu(cpu) {
1040 stat = &per_cpu(ftrace_profile_stats, cpu);
1041
Geliang Tang6363c6b2016-03-15 22:12:34 +08001042 name = kasprintf(GFP_KERNEL, "function%d", cpu);
Steven Rostedtcafb1682009-03-24 20:50:39 -04001043 if (!name) {
1044 /*
1045 * The files created are permanent, if something happens
1046 * we still do not free memory.
1047 */
Steven Rostedtcafb1682009-03-24 20:50:39 -04001048 WARN(1,
1049 "Could not allocate stat file for cpu %d\n",
1050 cpu);
1051 return;
1052 }
1053 stat->stat = function_stats;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001054 stat->stat.name = name;
1055 ret = register_stat_tracer(&stat->stat);
1056 if (ret) {
1057 WARN(1,
1058 "Could not register function stat for cpu %d\n",
1059 cpu);
1060 kfree(name);
1061 return;
1062 }
Steven Rostedt493762f2009-03-23 17:12:36 -04001063 }
1064
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001065 entry = tracefs_create_file("function_profile_enabled", 0644,
Steven Rostedt493762f2009-03-23 17:12:36 -04001066 d_tracer, NULL, &ftrace_profile_fops);
1067 if (!entry)
Joe Perchesa395d6a2016-03-22 14:28:09 -07001068 pr_warn("Could not create tracefs 'function_profile_enabled' entry\n");
Steven Rostedt493762f2009-03-23 17:12:36 -04001069}
1070
1071#else /* CONFIG_FUNCTION_PROFILER */
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001072static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001073{
1074}
1075#endif /* CONFIG_FUNCTION_PROFILER */
1076
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001077static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1078
Pratyush Anand1619dc32015-03-06 23:58:06 +05301079#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1080static int ftrace_graph_active;
1081#else
1082# define ftrace_graph_active 0
1083#endif
1084
Steven Rostedt3d083392008-05-12 21:20:42 +02001085#ifdef CONFIG_DYNAMIC_FTRACE
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001086
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001087static struct ftrace_ops *removed_ops;
1088
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04001089/*
1090 * Set when doing a global update, like enabling all recs or disabling them.
1091 * It is not set when just updating a single ftrace_ops.
1092 */
1093static bool update_all_ops;
1094
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001095#ifndef CONFIG_FTRACE_MCOUNT_RECORD
Steven Rostedtcb7be3b2008-10-23 09:33:05 -04001096# error Dynamic ftrace depends on MCOUNT_RECORD
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001097#endif
1098
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001099struct ftrace_func_entry {
1100 struct hlist_node hlist;
1101 unsigned long ip;
1102};
1103
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04001104struct ftrace_func_probe {
1105 struct ftrace_probe_ops *probe_ops;
1106 struct ftrace_ops ops;
1107 struct trace_array *tr;
1108 struct list_head list;
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04001109 void *data;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04001110 int ref;
1111};
1112
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001113/*
1114 * We make these constant because no one should touch them,
1115 * but they are used as the default "empty hash", to avoid allocating
1116 * it all the time. These are in a read only section such that if
1117 * anyone does try to modify it, it will cause an exception.
1118 */
1119static const struct hlist_head empty_buckets[1];
1120static const struct ftrace_hash empty_hash = {
1121 .buckets = (struct hlist_head *)empty_buckets,
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001122};
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001123#define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02001124
Steven Rostedt2b499382011-05-03 22:49:52 -04001125static struct ftrace_ops global_ops = {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001126 .func = ftrace_stub,
1127 .local_hash.notrace_hash = EMPTY_HASH,
1128 .local_hash.filter_hash = EMPTY_HASH,
1129 INIT_OPS_HASH(global_ops)
1130 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04001131 FTRACE_OPS_FL_INITIALIZED |
1132 FTRACE_OPS_FL_PID,
Steven Rostedtf45948e2011-05-02 12:29:25 -04001133};
1134
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001135/*
1136 * This is used by __kernel_text_address() to return true if the
Steven Rostedt (Red Hat)0af26492014-11-20 10:05:36 -05001137 * address is on a dynamically allocated trampoline that would
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001138 * not return true for either core_kernel_text() or
1139 * is_module_text_address().
1140 */
1141bool is_ftrace_trampoline(unsigned long addr)
1142{
1143 struct ftrace_ops *op;
1144 bool ret = false;
1145
1146 /*
1147 * Some of the ops may be dynamically allocated,
1148 * they are freed after a synchronize_sched().
1149 */
1150 preempt_disable_notrace();
1151
1152 do_for_each_ftrace_op(op, ftrace_ops_list) {
1153 /*
1154 * This is to check for dynamically allocated trampolines.
1155 * Trampolines that are in kernel text will have
1156 * core_kernel_text() return true.
1157 */
1158 if (op->trampoline && op->trampoline_size)
1159 if (addr >= op->trampoline &&
1160 addr < op->trampoline + op->trampoline_size) {
1161 ret = true;
1162 goto out;
1163 }
1164 } while_for_each_ftrace_op(op);
1165
1166 out:
1167 preempt_enable_notrace();
1168
1169 return ret;
1170}
1171
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001172struct ftrace_page {
1173 struct ftrace_page *next;
Steven Rostedta7900872011-12-16 16:23:44 -05001174 struct dyn_ftrace *records;
Steven Rostedt431aa3f2009-01-06 12:43:01 -05001175 int index;
Steven Rostedta7900872011-12-16 16:23:44 -05001176 int size;
David Milleraa5e5ce2008-05-13 22:06:56 -07001177};
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001178
Steven Rostedta7900872011-12-16 16:23:44 -05001179#define ENTRY_SIZE sizeof(struct dyn_ftrace)
1180#define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001181
1182/* estimate from running different kernels */
1183#define NR_TO_INIT 10000
1184
1185static struct ftrace_page *ftrace_pages_start;
1186static struct ftrace_page *ftrace_pages;
1187
Steven Rostedt (VMware)2b0cce02017-02-01 12:19:33 -05001188static __always_inline unsigned long
1189ftrace_hash_key(struct ftrace_hash *hash, unsigned long ip)
1190{
1191 if (hash->size_bits > 0)
1192 return hash_long(ip, hash->size_bits);
1193
1194 return 0;
1195}
1196
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001197/* Only use this function if ftrace_hash_empty() has already been tested */
1198static __always_inline struct ftrace_func_entry *
1199__ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001200{
1201 unsigned long key;
1202 struct ftrace_func_entry *entry;
1203 struct hlist_head *hhd;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001204
Steven Rostedt (VMware)2b0cce02017-02-01 12:19:33 -05001205 key = ftrace_hash_key(hash, ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001206 hhd = &hash->buckets[key];
1207
Steven Rostedt1bb539c2013-05-28 14:38:43 -04001208 hlist_for_each_entry_rcu_notrace(entry, hhd, hlist) {
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001209 if (entry->ip == ip)
1210 return entry;
1211 }
1212 return NULL;
1213}
1214
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001215/**
1216 * ftrace_lookup_ip - Test to see if an ip exists in an ftrace_hash
1217 * @hash: The hash to look at
1218 * @ip: The instruction pointer to test
1219 *
1220 * Search a given @hash to see if a given instruction pointer (@ip)
1221 * exists in it.
1222 *
1223 * Returns the entry that holds the @ip if found. NULL otherwise.
1224 */
1225struct ftrace_func_entry *
1226ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1227{
1228 if (ftrace_hash_empty(hash))
1229 return NULL;
1230
1231 return __ftrace_lookup_ip(hash, ip);
1232}
1233
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001234static void __add_hash_entry(struct ftrace_hash *hash,
1235 struct ftrace_func_entry *entry)
1236{
1237 struct hlist_head *hhd;
1238 unsigned long key;
1239
Steven Rostedt (VMware)2b0cce02017-02-01 12:19:33 -05001240 key = ftrace_hash_key(hash, entry->ip);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001241 hhd = &hash->buckets[key];
1242 hlist_add_head(&entry->hlist, hhd);
1243 hash->count++;
1244}
1245
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001246static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1247{
1248 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001249
1250 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1251 if (!entry)
1252 return -ENOMEM;
1253
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001254 entry->ip = ip;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001255 __add_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001256
1257 return 0;
1258}
1259
1260static void
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001261free_hash_entry(struct ftrace_hash *hash,
1262 struct ftrace_func_entry *entry)
1263{
1264 hlist_del(&entry->hlist);
1265 kfree(entry);
1266 hash->count--;
1267}
1268
1269static void
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001270remove_hash_entry(struct ftrace_hash *hash,
1271 struct ftrace_func_entry *entry)
1272{
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04001273 hlist_del_rcu(&entry->hlist);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001274 hash->count--;
1275}
1276
1277static void ftrace_hash_clear(struct ftrace_hash *hash)
1278{
1279 struct hlist_head *hhd;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001280 struct hlist_node *tn;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001281 struct ftrace_func_entry *entry;
1282 int size = 1 << hash->size_bits;
1283 int i;
1284
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001285 if (!hash->count)
1286 return;
1287
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001288 for (i = 0; i < size; i++) {
1289 hhd = &hash->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001290 hlist_for_each_entry_safe(entry, tn, hhd, hlist)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001291 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001292 }
1293 FTRACE_WARN_ON(hash->count);
1294}
1295
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04001296static void free_ftrace_mod(struct ftrace_mod_load *ftrace_mod)
1297{
1298 list_del(&ftrace_mod->list);
1299 kfree(ftrace_mod->module);
1300 kfree(ftrace_mod->func);
1301 kfree(ftrace_mod);
1302}
1303
1304static void clear_ftrace_mod_list(struct list_head *head)
1305{
1306 struct ftrace_mod_load *p, *n;
1307
1308 /* stack tracer isn't supported yet */
1309 if (!head)
1310 return;
1311
1312 mutex_lock(&ftrace_lock);
1313 list_for_each_entry_safe(p, n, head, list)
1314 free_ftrace_mod(p);
1315 mutex_unlock(&ftrace_lock);
1316}
1317
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001318static void free_ftrace_hash(struct ftrace_hash *hash)
1319{
1320 if (!hash || hash == EMPTY_HASH)
1321 return;
1322 ftrace_hash_clear(hash);
1323 kfree(hash->buckets);
1324 kfree(hash);
1325}
1326
Steven Rostedt07fd5512011-05-05 18:03:47 -04001327static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1328{
1329 struct ftrace_hash *hash;
1330
1331 hash = container_of(rcu, struct ftrace_hash, rcu);
1332 free_ftrace_hash(hash);
1333}
1334
1335static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1336{
1337 if (!hash || hash == EMPTY_HASH)
1338 return;
1339 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1340}
1341
Jiri Olsa5500fa52012-02-15 15:51:54 +01001342void ftrace_free_filter(struct ftrace_ops *ops)
1343{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09001344 ftrace_ops_init(ops);
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001345 free_ftrace_hash(ops->func_hash->filter_hash);
1346 free_ftrace_hash(ops->func_hash->notrace_hash);
Jiri Olsa5500fa52012-02-15 15:51:54 +01001347}
1348
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001349static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1350{
1351 struct ftrace_hash *hash;
1352 int size;
1353
1354 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1355 if (!hash)
1356 return NULL;
1357
1358 size = 1 << size_bits;
Thomas Meyer47b0edc2011-11-29 22:08:00 +01001359 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001360
1361 if (!hash->buckets) {
1362 kfree(hash);
1363 return NULL;
1364 }
1365
1366 hash->size_bits = size_bits;
1367
1368 return hash;
1369}
1370
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04001371
1372static int ftrace_add_mod(struct trace_array *tr,
1373 const char *func, const char *module,
1374 int enable)
1375{
1376 struct ftrace_mod_load *ftrace_mod;
1377 struct list_head *mod_head = enable ? &tr->mod_trace : &tr->mod_notrace;
1378
1379 ftrace_mod = kzalloc(sizeof(*ftrace_mod), GFP_KERNEL);
1380 if (!ftrace_mod)
1381 return -ENOMEM;
1382
1383 ftrace_mod->func = kstrdup(func, GFP_KERNEL);
1384 ftrace_mod->module = kstrdup(module, GFP_KERNEL);
1385 ftrace_mod->enable = enable;
1386
1387 if (!ftrace_mod->func || !ftrace_mod->module)
1388 goto out_free;
1389
1390 list_add(&ftrace_mod->list, mod_head);
1391
1392 return 0;
1393
1394 out_free:
1395 free_ftrace_mod(ftrace_mod);
1396
1397 return -ENOMEM;
1398}
1399
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001400static struct ftrace_hash *
1401alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1402{
1403 struct ftrace_func_entry *entry;
1404 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001405 int size;
1406 int ret;
1407 int i;
1408
1409 new_hash = alloc_ftrace_hash(size_bits);
1410 if (!new_hash)
1411 return NULL;
1412
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04001413 if (hash)
1414 new_hash->flags = hash->flags;
1415
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001416 /* Empty hash? */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001417 if (ftrace_hash_empty(hash))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001418 return new_hash;
1419
1420 size = 1 << hash->size_bits;
1421 for (i = 0; i < size; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001422 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001423 ret = add_hash_entry(new_hash, entry->ip);
1424 if (ret < 0)
1425 goto free_hash;
1426 }
1427 }
1428
1429 FTRACE_WARN_ON(new_hash->count != hash->count);
1430
1431 return new_hash;
1432
1433 free_hash:
1434 free_ftrace_hash(new_hash);
1435 return NULL;
1436}
1437
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001438static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001439ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001440static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001441ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001442
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001443static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1444 struct ftrace_hash *new_hash);
1445
Namhyung Kim3e278c02017-01-20 11:44:45 +09001446static struct ftrace_hash *
1447__ftrace_hash_move(struct ftrace_hash *src)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001448{
1449 struct ftrace_func_entry *entry;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001450 struct hlist_node *tn;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001451 struct hlist_head *hhd;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001452 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001453 int size = src->count;
1454 int bits = 0;
1455 int i;
1456
1457 /*
Namhyung Kim3e278c02017-01-20 11:44:45 +09001458 * If the new source is empty, just return the empty_hash.
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001459 */
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04001460 if (ftrace_hash_empty(src))
Namhyung Kim3e278c02017-01-20 11:44:45 +09001461 return EMPTY_HASH;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001462
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001463 /*
1464 * Make the hash size about 1/2 the # found
1465 */
1466 for (size /= 2; size; size >>= 1)
1467 bits++;
1468
1469 /* Don't allocate too much */
1470 if (bits > FTRACE_HASH_MAX_BITS)
1471 bits = FTRACE_HASH_MAX_BITS;
1472
Steven Rostedt07fd5512011-05-05 18:03:47 -04001473 new_hash = alloc_ftrace_hash(bits);
1474 if (!new_hash)
Namhyung Kim3e278c02017-01-20 11:44:45 +09001475 return NULL;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001476
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04001477 new_hash->flags = src->flags;
1478
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001479 size = 1 << src->size_bits;
1480 for (i = 0; i < size; i++) {
1481 hhd = &src->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001482 hlist_for_each_entry_safe(entry, tn, hhd, hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001483 remove_hash_entry(src, entry);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001484 __add_hash_entry(new_hash, entry);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001485 }
1486 }
1487
Namhyung Kim3e278c02017-01-20 11:44:45 +09001488 return new_hash;
1489}
1490
1491static int
1492ftrace_hash_move(struct ftrace_ops *ops, int enable,
1493 struct ftrace_hash **dst, struct ftrace_hash *src)
1494{
1495 struct ftrace_hash *new_hash;
1496 int ret;
1497
1498 /* Reject setting notrace hash on IPMODIFY ftrace_ops */
1499 if (ops->flags & FTRACE_OPS_FL_IPMODIFY && !enable)
1500 return -EINVAL;
1501
1502 new_hash = __ftrace_hash_move(src);
1503 if (!new_hash)
1504 return -ENOMEM;
1505
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001506 /* Make sure this can be applied if it is IPMODIFY ftrace_ops */
1507 if (enable) {
1508 /* IPMODIFY should be updated only when filter_hash updating */
1509 ret = ftrace_hash_ipmodify_update(ops, new_hash);
1510 if (ret < 0) {
1511 free_ftrace_hash(new_hash);
1512 return ret;
1513 }
1514 }
1515
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001516 /*
1517 * Remove the current set, update the hash and add
1518 * them back.
1519 */
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001520 ftrace_hash_rec_disable_modify(ops, enable);
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001521
Steven Rostedt07fd5512011-05-05 18:03:47 -04001522 rcu_assign_pointer(*dst, new_hash);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001523
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001524 ftrace_hash_rec_enable_modify(ops, enable);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001525
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001526 return 0;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001527}
1528
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001529static bool hash_contains_ip(unsigned long ip,
1530 struct ftrace_ops_hash *hash)
1531{
1532 /*
1533 * The function record is a match if it exists in the filter
1534 * hash and not in the notrace hash. Note, an emty hash is
1535 * considered a match for the filter hash, but an empty
1536 * notrace hash is considered not in the notrace hash.
1537 */
1538 return (ftrace_hash_empty(hash->filter_hash) ||
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001539 __ftrace_lookup_ip(hash->filter_hash, ip)) &&
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001540 (ftrace_hash_empty(hash->notrace_hash) ||
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001541 !__ftrace_lookup_ip(hash->notrace_hash, ip));
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001542}
1543
Steven Rostedt265c8312009-02-13 12:43:56 -05001544/*
Steven Rostedtb8489142011-05-04 09:27:52 -04001545 * Test the hashes for this ops to see if we want to call
1546 * the ops->func or not.
1547 *
1548 * It's a match if the ip is in the ops->filter_hash or
1549 * the filter_hash does not exist or is empty,
1550 * AND
1551 * the ip is not in the ops->notrace_hash.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04001552 *
1553 * This needs to be called with preemption disabled as
1554 * the hashes are freed with call_rcu_sched().
Steven Rostedtb8489142011-05-04 09:27:52 -04001555 */
1556static int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001557ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04001558{
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001559 struct ftrace_ops_hash hash;
Steven Rostedtb8489142011-05-04 09:27:52 -04001560 int ret;
1561
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001562#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1563 /*
1564 * There's a small race when adding ops that the ftrace handler
1565 * that wants regs, may be called without them. We can not
1566 * allow that handler to be called if regs is NULL.
1567 */
1568 if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS))
1569 return 0;
1570#endif
1571
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001572 hash.filter_hash = rcu_dereference_raw_notrace(ops->func_hash->filter_hash);
1573 hash.notrace_hash = rcu_dereference_raw_notrace(ops->func_hash->notrace_hash);
Steven Rostedtb8489142011-05-04 09:27:52 -04001574
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001575 if (hash_contains_ip(ip, &hash))
Steven Rostedtb8489142011-05-04 09:27:52 -04001576 ret = 1;
1577 else
1578 ret = 0;
Steven Rostedtb8489142011-05-04 09:27:52 -04001579
1580 return ret;
1581}
1582
1583/*
Steven Rostedt265c8312009-02-13 12:43:56 -05001584 * This is a double for. Do not use 'break' to break out of the loop,
1585 * you must use a goto.
1586 */
1587#define do_for_each_ftrace_rec(pg, rec) \
1588 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1589 int _____i; \
1590 for (_____i = 0; _____i < pg->index; _____i++) { \
1591 rec = &pg->records[_____i];
1592
1593#define while_for_each_ftrace_rec() \
1594 } \
1595 }
Abhishek Sagarecea6562008-06-21 23:47:53 +05301596
Steven Rostedt5855fea2011-12-16 19:27:42 -05001597
1598static int ftrace_cmp_recs(const void *a, const void *b)
1599{
Steven Rostedta650e022012-04-25 13:48:13 -04001600 const struct dyn_ftrace *key = a;
1601 const struct dyn_ftrace *rec = b;
Steven Rostedt5855fea2011-12-16 19:27:42 -05001602
Steven Rostedta650e022012-04-25 13:48:13 -04001603 if (key->flags < rec->ip)
Steven Rostedt5855fea2011-12-16 19:27:42 -05001604 return -1;
Steven Rostedta650e022012-04-25 13:48:13 -04001605 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1606 return 1;
1607 return 0;
1608}
1609
Michael Ellerman04cf31a2016-03-24 22:04:01 +11001610/**
1611 * ftrace_location_range - return the first address of a traced location
1612 * if it touches the given ip range
1613 * @start: start of range to search.
1614 * @end: end of range to search (inclusive). @end points to the last byte
1615 * to check.
1616 *
1617 * Returns rec->ip if the related ftrace location is a least partly within
1618 * the given address range. That is, the first address of the instruction
1619 * that is either a NOP or call to the function tracer. It checks the ftrace
1620 * internal tables to determine if the address belongs or not.
1621 */
1622unsigned long ftrace_location_range(unsigned long start, unsigned long end)
Steven Rostedta650e022012-04-25 13:48:13 -04001623{
1624 struct ftrace_page *pg;
1625 struct dyn_ftrace *rec;
1626 struct dyn_ftrace key;
1627
1628 key.ip = start;
1629 key.flags = end; /* overload flags, as it is unsigned long */
1630
1631 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1632 if (end < pg->records[0].ip ||
1633 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1634 continue;
1635 rec = bsearch(&key, pg->records, pg->index,
1636 sizeof(struct dyn_ftrace),
1637 ftrace_cmp_recs);
1638 if (rec)
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001639 return rec->ip;
Steven Rostedta650e022012-04-25 13:48:13 -04001640 }
1641
Steven Rostedt5855fea2011-12-16 19:27:42 -05001642 return 0;
1643}
1644
Steven Rostedtc88fd862011-08-16 09:53:39 -04001645/**
1646 * ftrace_location - return true if the ip giving is a traced location
1647 * @ip: the instruction pointer to check
1648 *
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001649 * Returns rec->ip if @ip given is a pointer to a ftrace location.
Steven Rostedtc88fd862011-08-16 09:53:39 -04001650 * That is, the instruction that is either a NOP or call to
1651 * the function tracer. It checks the ftrace internal tables to
1652 * determine if the address belongs or not.
1653 */
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001654unsigned long ftrace_location(unsigned long ip)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001655{
Steven Rostedta650e022012-04-25 13:48:13 -04001656 return ftrace_location_range(ip, ip);
1657}
Steven Rostedtc88fd862011-08-16 09:53:39 -04001658
Steven Rostedta650e022012-04-25 13:48:13 -04001659/**
1660 * ftrace_text_reserved - return true if range contains an ftrace location
1661 * @start: start of range to search
1662 * @end: end of range to search (inclusive). @end points to the last byte to check.
1663 *
1664 * Returns 1 if @start and @end contains a ftrace location.
1665 * That is, the instruction that is either a NOP or call to
1666 * the function tracer. It checks the ftrace internal tables to
1667 * determine if the address belongs or not.
1668 */
Sasha Levind88471c2013-01-09 18:09:20 -05001669int ftrace_text_reserved(const void *start, const void *end)
Steven Rostedta650e022012-04-25 13:48:13 -04001670{
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001671 unsigned long ret;
1672
1673 ret = ftrace_location_range((unsigned long)start,
1674 (unsigned long)end);
1675
1676 return (int)!!ret;
Steven Rostedtc88fd862011-08-16 09:53:39 -04001677}
1678
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001679/* Test if ops registered to this rec needs regs */
1680static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec)
1681{
1682 struct ftrace_ops *ops;
1683 bool keep_regs = false;
1684
1685 for (ops = ftrace_ops_list;
1686 ops != &ftrace_list_end; ops = ops->next) {
1687 /* pass rec in as regs to have non-NULL val */
1688 if (ftrace_ops_test(ops, rec->ip, rec)) {
1689 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1690 keep_regs = true;
1691 break;
1692 }
1693 }
1694 }
1695
1696 return keep_regs;
1697}
1698
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001699static bool __ftrace_hash_rec_update(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001700 int filter_hash,
1701 bool inc)
1702{
1703 struct ftrace_hash *hash;
1704 struct ftrace_hash *other_hash;
1705 struct ftrace_page *pg;
1706 struct dyn_ftrace *rec;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001707 bool update = false;
Steven Rostedted926f92011-05-03 13:25:24 -04001708 int count = 0;
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04001709 int all = false;
Steven Rostedted926f92011-05-03 13:25:24 -04001710
1711 /* Only update if the ops has been registered */
1712 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001713 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001714
1715 /*
1716 * In the filter_hash case:
1717 * If the count is zero, we update all records.
1718 * Otherwise we just update the items in the hash.
1719 *
1720 * In the notrace_hash case:
1721 * We enable the update in the hash.
1722 * As disabling notrace means enabling the tracing,
1723 * and enabling notrace means disabling, the inc variable
1724 * gets inversed.
1725 */
1726 if (filter_hash) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001727 hash = ops->func_hash->filter_hash;
1728 other_hash = ops->func_hash->notrace_hash;
Steven Rostedt06a51d92011-12-19 19:07:36 -05001729 if (ftrace_hash_empty(hash))
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04001730 all = true;
Steven Rostedted926f92011-05-03 13:25:24 -04001731 } else {
1732 inc = !inc;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001733 hash = ops->func_hash->notrace_hash;
1734 other_hash = ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04001735 /*
1736 * If the notrace hash has no items,
1737 * then there's nothing to do.
1738 */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001739 if (ftrace_hash_empty(hash))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001740 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001741 }
1742
1743 do_for_each_ftrace_rec(pg, rec) {
1744 int in_other_hash = 0;
1745 int in_hash = 0;
1746 int match = 0;
1747
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05001748 if (rec->flags & FTRACE_FL_DISABLED)
1749 continue;
1750
Steven Rostedted926f92011-05-03 13:25:24 -04001751 if (all) {
1752 /*
1753 * Only the filter_hash affects all records.
1754 * Update if the record is not in the notrace hash.
1755 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001756 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
Steven Rostedted926f92011-05-03 13:25:24 -04001757 match = 1;
1758 } else {
Steven Rostedt06a51d92011-12-19 19:07:36 -05001759 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1760 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
Steven Rostedted926f92011-05-03 13:25:24 -04001761
1762 /*
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001763 * If filter_hash is set, we want to match all functions
1764 * that are in the hash but not in the other hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001765 *
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001766 * If filter_hash is not set, then we are decrementing.
1767 * That means we match anything that is in the hash
1768 * and also in the other_hash. That is, we need to turn
1769 * off functions in the other hash because they are disabled
1770 * by this hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001771 */
1772 if (filter_hash && in_hash && !in_other_hash)
1773 match = 1;
1774 else if (!filter_hash && in_hash &&
Steven Rostedt06a51d92011-12-19 19:07:36 -05001775 (in_other_hash || ftrace_hash_empty(other_hash)))
Steven Rostedted926f92011-05-03 13:25:24 -04001776 match = 1;
1777 }
1778 if (!match)
1779 continue;
1780
1781 if (inc) {
1782 rec->flags++;
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001783 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001784 return false;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001785
1786 /*
1787 * If there's only a single callback registered to a
1788 * function, and the ops has a trampoline registered
1789 * for it, then we can call it directly.
1790 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001791 if (ftrace_rec_count(rec) == 1 && ops->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001792 rec->flags |= FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001793 else
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001794 /*
1795 * If we are adding another function callback
1796 * to this function, and the previous had a
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04001797 * custom trampoline in use, then we need to go
1798 * back to the default trampoline.
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001799 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001800 rec->flags &= ~FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001801
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001802 /*
1803 * If any ops wants regs saved for this function
1804 * then all ops will get saved regs.
1805 */
1806 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1807 rec->flags |= FTRACE_FL_REGS;
Steven Rostedted926f92011-05-03 13:25:24 -04001808 } else {
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001809 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001810 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001811 rec->flags--;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001812
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001813 /*
1814 * If the rec had REGS enabled and the ops that is
1815 * being removed had REGS set, then see if there is
1816 * still any ops for this record that wants regs.
1817 * If not, we can stop recording them.
1818 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001819 if (ftrace_rec_count(rec) > 0 &&
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001820 rec->flags & FTRACE_FL_REGS &&
1821 ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1822 if (!test_rec_ops_needs_regs(rec))
1823 rec->flags &= ~FTRACE_FL_REGS;
1824 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001825
1826 /*
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001827 * If the rec had TRAMP enabled, then it needs to
1828 * be cleared. As TRAMP can only be enabled iff
1829 * there is only a single ops attached to it.
1830 * In otherwords, always disable it on decrementing.
1831 * In the future, we may set it if rec count is
1832 * decremented to one, and the ops that is left
1833 * has a trampoline.
1834 */
1835 rec->flags &= ~FTRACE_FL_TRAMP;
1836
1837 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001838 * flags will be cleared in ftrace_check_record()
1839 * if rec count is zero.
1840 */
Steven Rostedted926f92011-05-03 13:25:24 -04001841 }
1842 count++;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001843
1844 /* Must match FTRACE_UPDATE_CALLS in ftrace_modify_all_code() */
1845 update |= ftrace_test_record(rec, 1) != FTRACE_UPDATE_IGNORE;
1846
Steven Rostedted926f92011-05-03 13:25:24 -04001847 /* Shortcut, if we handled all records, we are done. */
1848 if (!all && count == hash->count)
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001849 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001850 } while_for_each_ftrace_rec();
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001851
1852 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001853}
1854
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001855static bool ftrace_hash_rec_disable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001856 int filter_hash)
1857{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001858 return __ftrace_hash_rec_update(ops, filter_hash, 0);
Steven Rostedted926f92011-05-03 13:25:24 -04001859}
1860
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001861static bool ftrace_hash_rec_enable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001862 int filter_hash)
1863{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001864 return __ftrace_hash_rec_update(ops, filter_hash, 1);
Steven Rostedted926f92011-05-03 13:25:24 -04001865}
1866
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001867static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops,
1868 int filter_hash, int inc)
1869{
1870 struct ftrace_ops *op;
1871
1872 __ftrace_hash_rec_update(ops, filter_hash, inc);
1873
1874 if (ops->func_hash != &global_ops.local_hash)
1875 return;
1876
1877 /*
1878 * If the ops shares the global_ops hash, then we need to update
1879 * all ops that are enabled and use this hash.
1880 */
1881 do_for_each_ftrace_op(op, ftrace_ops_list) {
1882 /* Already done */
1883 if (op == ops)
1884 continue;
1885 if (op->func_hash == &global_ops.local_hash)
1886 __ftrace_hash_rec_update(op, filter_hash, inc);
1887 } while_for_each_ftrace_op(op);
1888}
1889
1890static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops,
1891 int filter_hash)
1892{
1893 ftrace_hash_rec_update_modify(ops, filter_hash, 0);
1894}
1895
1896static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops,
1897 int filter_hash)
1898{
1899 ftrace_hash_rec_update_modify(ops, filter_hash, 1);
1900}
1901
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001902/*
1903 * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK
1904 * or no-needed to update, -EBUSY if it detects a conflict of the flag
1905 * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs.
1906 * Note that old_hash and new_hash has below meanings
1907 * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected)
1908 * - If the hash is EMPTY_HASH, it hits nothing
1909 * - Anything else hits the recs which match the hash entries.
1910 */
1911static int __ftrace_hash_update_ipmodify(struct ftrace_ops *ops,
1912 struct ftrace_hash *old_hash,
1913 struct ftrace_hash *new_hash)
1914{
1915 struct ftrace_page *pg;
1916 struct dyn_ftrace *rec, *end = NULL;
1917 int in_old, in_new;
1918
1919 /* Only update if the ops has been registered */
1920 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1921 return 0;
1922
1923 if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY))
1924 return 0;
1925
1926 /*
1927 * Since the IPMODIFY is a very address sensitive action, we do not
1928 * allow ftrace_ops to set all functions to new hash.
1929 */
1930 if (!new_hash || !old_hash)
1931 return -EINVAL;
1932
1933 /* Update rec->flags */
1934 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05001935
1936 if (rec->flags & FTRACE_FL_DISABLED)
1937 continue;
1938
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001939 /* We need to update only differences of filter_hash */
1940 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1941 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1942 if (in_old == in_new)
1943 continue;
1944
1945 if (in_new) {
1946 /* New entries must ensure no others are using it */
1947 if (rec->flags & FTRACE_FL_IPMODIFY)
1948 goto rollback;
1949 rec->flags |= FTRACE_FL_IPMODIFY;
1950 } else /* Removed entry */
1951 rec->flags &= ~FTRACE_FL_IPMODIFY;
1952 } while_for_each_ftrace_rec();
1953
1954 return 0;
1955
1956rollback:
1957 end = rec;
1958
1959 /* Roll back what we did above */
1960 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05001961
1962 if (rec->flags & FTRACE_FL_DISABLED)
1963 continue;
1964
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001965 if (rec == end)
1966 goto err_out;
1967
1968 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1969 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1970 if (in_old == in_new)
1971 continue;
1972
1973 if (in_new)
1974 rec->flags &= ~FTRACE_FL_IPMODIFY;
1975 else
1976 rec->flags |= FTRACE_FL_IPMODIFY;
1977 } while_for_each_ftrace_rec();
1978
1979err_out:
1980 return -EBUSY;
1981}
1982
1983static int ftrace_hash_ipmodify_enable(struct ftrace_ops *ops)
1984{
1985 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1986
1987 if (ftrace_hash_empty(hash))
1988 hash = NULL;
1989
1990 return __ftrace_hash_update_ipmodify(ops, EMPTY_HASH, hash);
1991}
1992
1993/* Disabling always succeeds */
1994static void ftrace_hash_ipmodify_disable(struct ftrace_ops *ops)
1995{
1996 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1997
1998 if (ftrace_hash_empty(hash))
1999 hash = NULL;
2000
2001 __ftrace_hash_update_ipmodify(ops, hash, EMPTY_HASH);
2002}
2003
2004static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
2005 struct ftrace_hash *new_hash)
2006{
2007 struct ftrace_hash *old_hash = ops->func_hash->filter_hash;
2008
2009 if (ftrace_hash_empty(old_hash))
2010 old_hash = NULL;
2011
2012 if (ftrace_hash_empty(new_hash))
2013 new_hash = NULL;
2014
2015 return __ftrace_hash_update_ipmodify(ops, old_hash, new_hash);
2016}
2017
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002018static void print_ip_ins(const char *fmt, const unsigned char *p)
Steven Rostedt05736a42008-09-22 14:55:47 -07002019{
2020 int i;
2021
2022 printk(KERN_CONT "%s", fmt);
2023
2024 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
2025 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
2026}
2027
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002028static struct ftrace_ops *
2029ftrace_find_tramp_ops_any(struct dyn_ftrace *rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002030static struct ftrace_ops *
2031ftrace_find_tramp_ops_next(struct dyn_ftrace *rec, struct ftrace_ops *ops);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002032
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002033enum ftrace_bug_type ftrace_bug_type;
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002034const void *ftrace_expected;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002035
2036static void print_bug_type(void)
2037{
2038 switch (ftrace_bug_type) {
2039 case FTRACE_BUG_UNKNOWN:
2040 break;
2041 case FTRACE_BUG_INIT:
2042 pr_info("Initializing ftrace call sites\n");
2043 break;
2044 case FTRACE_BUG_NOP:
2045 pr_info("Setting ftrace call site to NOP\n");
2046 break;
2047 case FTRACE_BUG_CALL:
2048 pr_info("Setting ftrace call site to call ftrace function\n");
2049 break;
2050 case FTRACE_BUG_UPDATE:
2051 pr_info("Updating ftrace call site to call a different ftrace function\n");
2052 break;
2053 }
2054}
2055
Steven Rostedtc88fd862011-08-16 09:53:39 -04002056/**
2057 * ftrace_bug - report and shutdown function tracer
2058 * @failed: The failed type (EFAULT, EINVAL, EPERM)
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002059 * @rec: The record that failed
Steven Rostedtc88fd862011-08-16 09:53:39 -04002060 *
2061 * The arch code that enables or disables the function tracing
2062 * can call ftrace_bug() when it has detected a problem in
2063 * modifying the code. @failed should be one of either:
2064 * EFAULT - if the problem happens on reading the @ip address
2065 * EINVAL - if what is read at @ip is not what was expected
2066 * EPERM - if the problem happens on writting to the @ip address
2067 */
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002068void ftrace_bug(int failed, struct dyn_ftrace *rec)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002069{
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002070 unsigned long ip = rec ? rec->ip : 0;
2071
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002072 switch (failed) {
2073 case -EFAULT:
2074 FTRACE_WARN_ON_ONCE(1);
2075 pr_info("ftrace faulted on modifying ");
2076 print_ip_sym(ip);
2077 break;
2078 case -EINVAL:
2079 FTRACE_WARN_ON_ONCE(1);
2080 pr_info("ftrace failed to modify ");
2081 print_ip_sym(ip);
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002082 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002083 pr_cont("\n");
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002084 if (ftrace_expected) {
2085 print_ip_ins(" expected: ", ftrace_expected);
2086 pr_cont("\n");
2087 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002088 break;
2089 case -EPERM:
2090 FTRACE_WARN_ON_ONCE(1);
2091 pr_info("ftrace faulted on writing ");
2092 print_ip_sym(ip);
2093 break;
2094 default:
2095 FTRACE_WARN_ON_ONCE(1);
2096 pr_info("ftrace faulted on unknown error ");
2097 print_ip_sym(ip);
2098 }
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002099 print_bug_type();
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002100 if (rec) {
2101 struct ftrace_ops *ops = NULL;
2102
2103 pr_info("ftrace record flags: %lx\n", rec->flags);
2104 pr_cont(" (%ld)%s", ftrace_rec_count(rec),
2105 rec->flags & FTRACE_FL_REGS ? " R" : " ");
2106 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2107 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002108 if (ops) {
2109 do {
2110 pr_cont("\ttramp: %pS (%pS)",
2111 (void *)ops->trampoline,
2112 (void *)ops->func);
2113 ops = ftrace_find_tramp_ops_next(rec, ops);
2114 } while (ops);
2115 } else
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002116 pr_cont("\ttramp: ERROR!");
2117
2118 }
2119 ip = ftrace_get_addr_curr(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002120 pr_cont("\n expected tramp: %lx\n", ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002121 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002122}
2123
Steven Rostedtc88fd862011-08-16 09:53:39 -04002124static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02002125{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002126 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01002127
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002128 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2129
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002130 if (rec->flags & FTRACE_FL_DISABLED)
2131 return FTRACE_UPDATE_IGNORE;
2132
Steven Rostedt982c3502008-11-15 16:31:41 -05002133 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002134 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05002135 *
Steven Rostedted926f92011-05-03 13:25:24 -04002136 * If the record has a ref count, then we need to enable it
2137 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05002138 *
Steven Rostedted926f92011-05-03 13:25:24 -04002139 * Otherwise we make sure its disabled.
2140 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002141 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04002142 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05002143 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002144 if (enable && ftrace_rec_count(rec))
Steven Rostedted926f92011-05-03 13:25:24 -04002145 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02002146
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002147 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002148 * If enabling and the REGS flag does not match the REGS_EN, or
2149 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
2150 * this record. Set flags to fail the compare against ENABLED.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002151 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002152 if (flag) {
2153 if (!(rec->flags & FTRACE_FL_REGS) !=
2154 !(rec->flags & FTRACE_FL_REGS_EN))
2155 flag |= FTRACE_FL_REGS;
2156
2157 if (!(rec->flags & FTRACE_FL_TRAMP) !=
2158 !(rec->flags & FTRACE_FL_TRAMP_EN))
2159 flag |= FTRACE_FL_TRAMP;
2160 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002161
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002162 /* If the state of this record hasn't changed, then do nothing */
2163 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04002164 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002165
2166 if (flag) {
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002167 /* Save off if rec is being enabled (for return value) */
2168 flag ^= rec->flags & FTRACE_FL_ENABLED;
2169
2170 if (update) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04002171 rec->flags |= FTRACE_FL_ENABLED;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002172 if (flag & FTRACE_FL_REGS) {
2173 if (rec->flags & FTRACE_FL_REGS)
2174 rec->flags |= FTRACE_FL_REGS_EN;
2175 else
2176 rec->flags &= ~FTRACE_FL_REGS_EN;
2177 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002178 if (flag & FTRACE_FL_TRAMP) {
2179 if (rec->flags & FTRACE_FL_TRAMP)
2180 rec->flags |= FTRACE_FL_TRAMP_EN;
2181 else
2182 rec->flags &= ~FTRACE_FL_TRAMP_EN;
2183 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002184 }
2185
2186 /*
2187 * If this record is being updated from a nop, then
2188 * return UPDATE_MAKE_CALL.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002189 * Otherwise,
2190 * return UPDATE_MODIFY_CALL to tell the caller to convert
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002191 * from the save regs, to a non-save regs function or
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002192 * vice versa, or from a trampoline call.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002193 */
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002194 if (flag & FTRACE_FL_ENABLED) {
2195 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002196 return FTRACE_UPDATE_MAKE_CALL;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002197 }
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002198
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002199 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002200 return FTRACE_UPDATE_MODIFY_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002201 }
2202
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002203 if (update) {
2204 /* If there's no more users, clear all flags */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002205 if (!ftrace_rec_count(rec))
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002206 rec->flags = 0;
2207 else
Steven Rostedt (Red Hat)b24d4432015-03-04 23:10:28 -05002208 /*
2209 * Just disable the record, but keep the ops TRAMP
2210 * and REGS states. The _EN flags must be disabled though.
2211 */
2212 rec->flags &= ~(FTRACE_FL_ENABLED | FTRACE_FL_TRAMP_EN |
2213 FTRACE_FL_REGS_EN);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002214 }
Steven Rostedtc88fd862011-08-16 09:53:39 -04002215
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002216 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002217 return FTRACE_UPDATE_MAKE_NOP;
2218}
2219
2220/**
2221 * ftrace_update_record, set a record that now is tracing or not
2222 * @rec: the record to update
2223 * @enable: set to 1 if the record is tracing, zero to force disable
2224 *
2225 * The records that represent all functions that can be traced need
2226 * to be updated when tracing has been enabled.
2227 */
2228int ftrace_update_record(struct dyn_ftrace *rec, int enable)
2229{
2230 return ftrace_check_record(rec, enable, 1);
2231}
2232
2233/**
2234 * ftrace_test_record, check if the record has been enabled or not
2235 * @rec: the record to test
2236 * @enable: set to 1 to check if enabled, 0 if it is disabled
2237 *
2238 * The arch code may need to test if a record is already set to
2239 * tracing to determine how to modify the function code that it
2240 * represents.
2241 */
2242int ftrace_test_record(struct dyn_ftrace *rec, int enable)
2243{
2244 return ftrace_check_record(rec, enable, 0);
2245}
2246
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002247static struct ftrace_ops *
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002248ftrace_find_tramp_ops_any(struct dyn_ftrace *rec)
2249{
2250 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002251 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002252
2253 do_for_each_ftrace_op(op, ftrace_ops_list) {
2254
2255 if (!op->trampoline)
2256 continue;
2257
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002258 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002259 return op;
2260 } while_for_each_ftrace_op(op);
2261
2262 return NULL;
2263}
2264
2265static struct ftrace_ops *
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002266ftrace_find_tramp_ops_next(struct dyn_ftrace *rec,
2267 struct ftrace_ops *op)
2268{
2269 unsigned long ip = rec->ip;
2270
2271 while_for_each_ftrace_op(op) {
2272
2273 if (!op->trampoline)
2274 continue;
2275
2276 if (hash_contains_ip(ip, op->func_hash))
2277 return op;
2278 }
2279
2280 return NULL;
2281}
2282
2283static struct ftrace_ops *
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002284ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec)
2285{
2286 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002287 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002288
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002289 /*
2290 * Need to check removed ops first.
2291 * If they are being removed, and this rec has a tramp,
2292 * and this rec is in the ops list, then it would be the
2293 * one with the tramp.
2294 */
2295 if (removed_ops) {
2296 if (hash_contains_ip(ip, &removed_ops->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002297 return removed_ops;
2298 }
2299
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002300 /*
2301 * Need to find the current trampoline for a rec.
2302 * Now, a trampoline is only attached to a rec if there
2303 * was a single 'ops' attached to it. But this can be called
2304 * when we are adding another op to the rec or removing the
2305 * current one. Thus, if the op is being added, we can
2306 * ignore it because it hasn't attached itself to the rec
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002307 * yet.
2308 *
2309 * If an ops is being modified (hooking to different functions)
2310 * then we don't care about the new functions that are being
2311 * added, just the old ones (that are probably being removed).
2312 *
2313 * If we are adding an ops to a function that already is using
2314 * a trampoline, it needs to be removed (trampolines are only
2315 * for single ops connected), then an ops that is not being
2316 * modified also needs to be checked.
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002317 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002318 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002319
2320 if (!op->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002321 continue;
2322
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002323 /*
2324 * If the ops is being added, it hasn't gotten to
2325 * the point to be removed from this tree yet.
2326 */
2327 if (op->flags & FTRACE_OPS_FL_ADDING)
2328 continue;
2329
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002330
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002331 /*
2332 * If the ops is being modified and is in the old
2333 * hash, then it is probably being removed from this
2334 * function.
2335 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002336 if ((op->flags & FTRACE_OPS_FL_MODIFYING) &&
2337 hash_contains_ip(ip, &op->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002338 return op;
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002339 /*
2340 * If the ops is not being added or modified, and it's
2341 * in its normal filter hash, then this must be the one
2342 * we want!
2343 */
2344 if (!(op->flags & FTRACE_OPS_FL_MODIFYING) &&
2345 hash_contains_ip(ip, op->func_hash))
2346 return op;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002347
2348 } while_for_each_ftrace_op(op);
2349
2350 return NULL;
2351}
2352
2353static struct ftrace_ops *
2354ftrace_find_tramp_ops_new(struct dyn_ftrace *rec)
2355{
2356 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002357 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002358
2359 do_for_each_ftrace_op(op, ftrace_ops_list) {
2360 /* pass rec in as regs to have non-NULL val */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002361 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002362 return op;
2363 } while_for_each_ftrace_op(op);
2364
2365 return NULL;
2366}
2367
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002368/**
2369 * ftrace_get_addr_new - Get the call address to set to
2370 * @rec: The ftrace record descriptor
2371 *
2372 * If the record has the FTRACE_FL_REGS set, that means that it
2373 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2374 * is not not set, then it wants to convert to the normal callback.
2375 *
2376 * Returns the address of the trampoline to set to
2377 */
2378unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec)
2379{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002380 struct ftrace_ops *ops;
2381
2382 /* Trampolines take precedence over regs */
2383 if (rec->flags & FTRACE_FL_TRAMP) {
2384 ops = ftrace_find_tramp_ops_new(rec);
2385 if (FTRACE_WARN_ON(!ops || !ops->trampoline)) {
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04002386 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2387 (void *)rec->ip, (void *)rec->ip, rec->flags);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002388 /* Ftrace is shutting down, return anything */
2389 return (unsigned long)FTRACE_ADDR;
2390 }
2391 return ops->trampoline;
2392 }
2393
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002394 if (rec->flags & FTRACE_FL_REGS)
2395 return (unsigned long)FTRACE_REGS_ADDR;
2396 else
2397 return (unsigned long)FTRACE_ADDR;
2398}
2399
2400/**
2401 * ftrace_get_addr_curr - Get the call address that is already there
2402 * @rec: The ftrace record descriptor
2403 *
2404 * The FTRACE_FL_REGS_EN is set when the record already points to
2405 * a function that saves all the regs. Basically the '_EN' version
2406 * represents the current state of the function.
2407 *
2408 * Returns the address of the trampoline that is currently being called
2409 */
2410unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec)
2411{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002412 struct ftrace_ops *ops;
2413
2414 /* Trampolines take precedence over regs */
2415 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2416 ops = ftrace_find_tramp_ops_curr(rec);
2417 if (FTRACE_WARN_ON(!ops)) {
Joe Perchesa395d6a2016-03-22 14:28:09 -07002418 pr_warn("Bad trampoline accounting at: %p (%pS)\n",
2419 (void *)rec->ip, (void *)rec->ip);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002420 /* Ftrace is shutting down, return anything */
2421 return (unsigned long)FTRACE_ADDR;
2422 }
2423 return ops->trampoline;
2424 }
2425
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002426 if (rec->flags & FTRACE_FL_REGS_EN)
2427 return (unsigned long)FTRACE_REGS_ADDR;
2428 else
2429 return (unsigned long)FTRACE_ADDR;
2430}
2431
Steven Rostedtc88fd862011-08-16 09:53:39 -04002432static int
2433__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
2434{
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002435 unsigned long ftrace_old_addr;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002436 unsigned long ftrace_addr;
2437 int ret;
2438
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002439 ftrace_addr = ftrace_get_addr_new(rec);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002440
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002441 /* This needs to be done before we call ftrace_update_record */
2442 ftrace_old_addr = ftrace_get_addr_curr(rec);
2443
2444 ret = ftrace_update_record(rec, enable);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002445
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002446 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2447
Steven Rostedtc88fd862011-08-16 09:53:39 -04002448 switch (ret) {
2449 case FTRACE_UPDATE_IGNORE:
2450 return 0;
2451
2452 case FTRACE_UPDATE_MAKE_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002453 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002454 return ftrace_make_call(rec, ftrace_addr);
2455
2456 case FTRACE_UPDATE_MAKE_NOP:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002457 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedt (Red Hat)39b55522014-08-17 20:59:10 -04002458 return ftrace_make_nop(NULL, rec, ftrace_old_addr);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002459
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002460 case FTRACE_UPDATE_MODIFY_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002461 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002462 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002463 }
2464
2465 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02002466}
2467
Steven Rostedte4f5d542012-04-27 09:13:18 -04002468void __weak ftrace_replace_code(int enable)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002469{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002470 struct dyn_ftrace *rec;
2471 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002472 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002473
Steven Rostedt45a4a232011-04-21 23:16:46 -04002474 if (unlikely(ftrace_disabled))
2475 return;
2476
Steven Rostedt265c8312009-02-13 12:43:56 -05002477 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05002478
2479 if (rec->flags & FTRACE_FL_DISABLED)
2480 continue;
2481
Steven Rostedte4f5d542012-04-27 09:13:18 -04002482 failed = __ftrace_replace_code(rec, enable);
Zhaoleifa9d13c2009-03-13 17:16:34 +08002483 if (failed) {
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002484 ftrace_bug(failed, rec);
Steven Rostedt3279ba32009-10-07 16:57:56 -04002485 /* Stop processing */
2486 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05002487 }
2488 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002489}
2490
Steven Rostedtc88fd862011-08-16 09:53:39 -04002491struct ftrace_rec_iter {
2492 struct ftrace_page *pg;
2493 int index;
2494};
2495
2496/**
2497 * ftrace_rec_iter_start, start up iterating over traced functions
2498 *
2499 * Returns an iterator handle that is used to iterate over all
2500 * the records that represent address locations where functions
2501 * are traced.
2502 *
2503 * May return NULL if no records are available.
2504 */
2505struct ftrace_rec_iter *ftrace_rec_iter_start(void)
2506{
2507 /*
2508 * We only use a single iterator.
2509 * Protected by the ftrace_lock mutex.
2510 */
2511 static struct ftrace_rec_iter ftrace_rec_iter;
2512 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
2513
2514 iter->pg = ftrace_pages_start;
2515 iter->index = 0;
2516
2517 /* Could have empty pages */
2518 while (iter->pg && !iter->pg->index)
2519 iter->pg = iter->pg->next;
2520
2521 if (!iter->pg)
2522 return NULL;
2523
2524 return iter;
2525}
2526
2527/**
2528 * ftrace_rec_iter_next, get the next record to process.
2529 * @iter: The handle to the iterator.
2530 *
2531 * Returns the next iterator after the given iterator @iter.
2532 */
2533struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
2534{
2535 iter->index++;
2536
2537 if (iter->index >= iter->pg->index) {
2538 iter->pg = iter->pg->next;
2539 iter->index = 0;
2540
2541 /* Could have empty pages */
2542 while (iter->pg && !iter->pg->index)
2543 iter->pg = iter->pg->next;
2544 }
2545
2546 if (!iter->pg)
2547 return NULL;
2548
2549 return iter;
2550}
2551
2552/**
2553 * ftrace_rec_iter_record, get the record at the iterator location
2554 * @iter: The current iterator location
2555 *
2556 * Returns the record that the current @iter is at.
2557 */
2558struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
2559{
2560 return &iter->pg->records[iter->index];
2561}
2562
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302563static int
Steven Rostedt31e88902008-11-14 16:21:19 -08002564ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002565{
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002566 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002567
Steven Rostedt45a4a232011-04-21 23:16:46 -04002568 if (unlikely(ftrace_disabled))
2569 return 0;
2570
Shaohua Li25aac9d2009-01-09 11:29:40 +08002571 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002572 if (ret) {
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002573 ftrace_bug_type = FTRACE_BUG_INIT;
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002574 ftrace_bug(ret, rec);
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302575 return 0;
Steven Rostedt37ad50842008-05-12 21:20:48 +02002576 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302577 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002578}
2579
Steven Rostedt000ab692009-02-17 13:35:06 -05002580/*
2581 * archs can override this function if they must do something
2582 * before the modifying code is performed.
2583 */
2584int __weak ftrace_arch_code_modify_prepare(void)
2585{
2586 return 0;
2587}
2588
2589/*
2590 * archs can override this function if they must do something
2591 * after the modifying code is performed.
2592 */
2593int __weak ftrace_arch_code_modify_post_process(void)
2594{
2595 return 0;
2596}
2597
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002598void ftrace_modify_all_code(int command)
2599{
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002600 int update = command & FTRACE_UPDATE_TRACE_FUNC;
Petr Mladekcd21067f2014-02-24 17:12:21 +01002601 int err = 0;
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002602
2603 /*
2604 * If the ftrace_caller calls a ftrace_ops func directly,
2605 * we need to make sure that it only traces functions it
2606 * expects to trace. When doing the switch of functions,
2607 * we need to update to the ftrace_ops_list_func first
2608 * before the transition between old and new calls are set,
2609 * as the ftrace_ops_list_func will check the ops hashes
2610 * to make sure the ops are having the right functions
2611 * traced.
2612 */
Petr Mladekcd21067f2014-02-24 17:12:21 +01002613 if (update) {
2614 err = ftrace_update_ftrace_func(ftrace_ops_list_func);
2615 if (FTRACE_WARN_ON(err))
2616 return;
2617 }
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002618
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002619 if (command & FTRACE_UPDATE_CALLS)
2620 ftrace_replace_code(1);
2621 else if (command & FTRACE_DISABLE_CALLS)
2622 ftrace_replace_code(0);
2623
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002624 if (update && ftrace_trace_function != ftrace_ops_list_func) {
2625 function_trace_op = set_function_trace_op;
2626 smp_wmb();
2627 /* If irqs are disabled, we are in stop machine */
2628 if (!irqs_disabled())
2629 smp_call_function(ftrace_sync_ipi, NULL, 1);
Petr Mladekcd21067f2014-02-24 17:12:21 +01002630 err = ftrace_update_ftrace_func(ftrace_trace_function);
2631 if (FTRACE_WARN_ON(err))
2632 return;
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002633 }
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002634
2635 if (command & FTRACE_START_FUNC_RET)
Petr Mladekcd21067f2014-02-24 17:12:21 +01002636 err = ftrace_enable_ftrace_graph_caller();
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002637 else if (command & FTRACE_STOP_FUNC_RET)
Petr Mladekcd21067f2014-02-24 17:12:21 +01002638 err = ftrace_disable_ftrace_graph_caller();
2639 FTRACE_WARN_ON(err);
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002640}
2641
Ingo Molnare309b412008-05-12 21:20:51 +02002642static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02002643{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002644 int *command = data;
2645
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002646 ftrace_modify_all_code(*command);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05002647
Steven Rostedtc88fd862011-08-16 09:53:39 -04002648 return 0;
2649}
2650
2651/**
2652 * ftrace_run_stop_machine, go back to the stop machine method
2653 * @command: The command to tell ftrace what to do
2654 *
2655 * If an arch needs to fall back to the stop machine method, the
2656 * it can call this function.
2657 */
2658void ftrace_run_stop_machine(int command)
2659{
2660 stop_machine(__ftrace_modify_code, &command, NULL);
2661}
2662
2663/**
2664 * arch_ftrace_update_code, modify the code to trace or not trace
2665 * @command: The command that needs to be done
2666 *
2667 * Archs can override this function if it does not need to
2668 * run stop_machine() to modify code.
2669 */
2670void __weak arch_ftrace_update_code(int command)
2671{
2672 ftrace_run_stop_machine(command);
2673}
2674
2675static void ftrace_run_update_code(int command)
2676{
2677 int ret;
2678
2679 ret = ftrace_arch_code_modify_prepare();
2680 FTRACE_WARN_ON(ret);
2681 if (ret)
2682 return;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002683
2684 /*
2685 * By default we use stop_machine() to modify the code.
2686 * But archs can do what ever they want as long as it
2687 * is safe. The stop_machine() is the safest, but also
2688 * produces the most overhead.
2689 */
2690 arch_ftrace_update_code(command);
2691
Steven Rostedt000ab692009-02-17 13:35:06 -05002692 ret = ftrace_arch_code_modify_post_process();
2693 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02002694}
2695
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002696static void ftrace_run_modify_code(struct ftrace_ops *ops, int command,
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002697 struct ftrace_ops_hash *old_hash)
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002698{
2699 ops->flags |= FTRACE_OPS_FL_MODIFYING;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002700 ops->old_hash.filter_hash = old_hash->filter_hash;
2701 ops->old_hash.notrace_hash = old_hash->notrace_hash;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002702 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002703 ops->old_hash.filter_hash = NULL;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002704 ops->old_hash.notrace_hash = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002705 ops->flags &= ~FTRACE_OPS_FL_MODIFYING;
2706}
2707
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002708static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002709static int ftrace_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002710
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002711void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops)
2712{
2713}
2714
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002715static void per_cpu_ops_free(struct ftrace_ops *ops)
Jiri Slabydb0fbad2014-03-10 21:42:11 +01002716{
2717 free_percpu(ops->disabled);
2718}
2719
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002720static void ftrace_startup_enable(int command)
2721{
2722 if (saved_ftrace_func != ftrace_trace_function) {
2723 saved_ftrace_func = ftrace_trace_function;
2724 command |= FTRACE_UPDATE_TRACE_FUNC;
2725 }
2726
2727 if (!command || !ftrace_enabled)
2728 return;
2729
2730 ftrace_run_update_code(command);
2731}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002732
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002733static void ftrace_startup_all(int command)
2734{
2735 update_all_ops = true;
2736 ftrace_startup_enable(command);
2737 update_all_ops = false;
2738}
2739
Steven Rostedta1cd6172011-05-23 15:24:25 -04002740static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002741{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002742 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002743
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002744 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04002745 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002746
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002747 ret = __register_ftrace_function(ops);
2748 if (ret)
2749 return ret;
2750
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002751 ftrace_start_up++;
Steven Rostedt3d083392008-05-12 21:20:42 +02002752
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002753 /*
2754 * Note that ftrace probes uses this to start up
2755 * and modify functions it will probe. But we still
2756 * set the ADDING flag for modification, as probes
2757 * do not have trampolines. If they add them in the
2758 * future, then the probes will need to distinguish
2759 * between adding and updating probes.
2760 */
2761 ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING;
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002762
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002763 ret = ftrace_hash_ipmodify_enable(ops);
2764 if (ret < 0) {
2765 /* Rollback registration process */
2766 __unregister_ftrace_function(ops);
2767 ftrace_start_up--;
2768 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2769 return ret;
2770 }
2771
Jiri Olsa7f50d062016-03-16 15:34:33 +01002772 if (ftrace_hash_rec_enable(ops, 1))
2773 command |= FTRACE_UPDATE_CALLS;
Steven Rostedted926f92011-05-03 13:25:24 -04002774
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002775 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04002776
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002777 ops->flags &= ~FTRACE_OPS_FL_ADDING;
2778
Steven Rostedta1cd6172011-05-23 15:24:25 -04002779 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002780}
2781
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002782static int ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002783{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002784 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002785
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002786 if (unlikely(ftrace_disabled))
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002787 return -ENODEV;
2788
2789 ret = __unregister_ftrace_function(ops);
2790 if (ret)
2791 return ret;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002792
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002793 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02002794 /*
2795 * Just warn in case of unbalance, no need to kill ftrace, it's not
2796 * critical but the ftrace_call callers may be never nopped again after
2797 * further ftrace uses.
2798 */
2799 WARN_ON_ONCE(ftrace_start_up < 0);
2800
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002801 /* Disabling ipmodify never fails */
2802 ftrace_hash_ipmodify_disable(ops);
Jiri Olsa7f50d062016-03-16 15:34:33 +01002803
2804 if (ftrace_hash_rec_disable(ops, 1))
2805 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtb8489142011-05-04 09:27:52 -04002806
Namhyung Kima737e6d2014-06-12 23:56:12 +09002807 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04002808
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002809 if (saved_ftrace_func != ftrace_trace_function) {
2810 saved_ftrace_func = ftrace_trace_function;
2811 command |= FTRACE_UPDATE_TRACE_FUNC;
2812 }
2813
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002814 if (!command || !ftrace_enabled) {
2815 /*
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002816 * If these are per_cpu ops, they still need their
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002817 * per_cpu field freed. Since, function tracing is
2818 * not currently active, we can just free them
2819 * without synchronizing all CPUs.
2820 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002821 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2822 per_cpu_ops_free(ops);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002823 return 0;
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002824 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002825
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002826 /*
2827 * If the ops uses a trampoline, then it needs to be
2828 * tested first on update.
2829 */
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002830 ops->flags |= FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002831 removed_ops = ops;
2832
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002833 /* The trampoline logic checks the old hashes */
2834 ops->old_hash.filter_hash = ops->func_hash->filter_hash;
2835 ops->old_hash.notrace_hash = ops->func_hash->notrace_hash;
2836
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002837 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002838
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002839 /*
2840 * If there's no more ops registered with ftrace, run a
2841 * sanity check to make sure all rec flags are cleared.
2842 */
2843 if (ftrace_ops_list == &ftrace_list_end) {
2844 struct ftrace_page *pg;
2845 struct dyn_ftrace *rec;
2846
2847 do_for_each_ftrace_rec(pg, rec) {
Alexei Starovoitov977c1f92016-11-07 15:14:20 -08002848 if (FTRACE_WARN_ON_ONCE(rec->flags & ~FTRACE_FL_DISABLED))
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002849 pr_warn(" %pS flags:%lx\n",
2850 (void *)rec->ip, rec->flags);
2851 } while_for_each_ftrace_rec();
2852 }
2853
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002854 ops->old_hash.filter_hash = NULL;
2855 ops->old_hash.notrace_hash = NULL;
2856
2857 removed_ops = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002858 ops->flags &= ~FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002859
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002860 /*
2861 * Dynamic ops may be freed, we must make sure that all
2862 * callers are done before leaving this function.
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002863 * The same goes for freeing the per_cpu data of the per_cpu
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002864 * ops.
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002865 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002866 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU)) {
Steven Rostedt (VMware)0598e4f2017-04-06 10:28:12 -04002867 /*
2868 * We need to do a hard force of sched synchronization.
2869 * This is because we use preempt_disable() to do RCU, but
2870 * the function tracers can be called where RCU is not watching
2871 * (like before user_exit()). We can not rely on the RCU
2872 * infrastructure to do the synchronization, thus we must do it
2873 * ourselves.
2874 */
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002875 schedule_on_each_cpu(ftrace_sync);
2876
Steven Rostedt (VMware)0598e4f2017-04-06 10:28:12 -04002877 /*
2878 * When the kernel is preeptive, tasks can be preempted
2879 * while on a ftrace trampoline. Just scheduling a task on
2880 * a CPU is not good enough to flush them. Calling
2881 * synchornize_rcu_tasks() will wait for those tasks to
2882 * execute and either schedule voluntarily or enter user space.
2883 */
2884 if (IS_ENABLED(CONFIG_PREEMPT))
2885 synchronize_rcu_tasks();
2886
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002887 arch_ftrace_trampoline_free(ops);
2888
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002889 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2890 per_cpu_ops_free(ops);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002891 }
2892
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002893 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002894}
2895
Ingo Molnare309b412008-05-12 21:20:51 +02002896static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002897{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302898 int command;
2899
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002900 if (unlikely(ftrace_disabled))
2901 return;
2902
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002903 /* Force update next time */
2904 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002905 /* ftrace_start_up is true if we want ftrace running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302906 if (ftrace_start_up) {
2907 command = FTRACE_UPDATE_CALLS;
2908 if (ftrace_graph_active)
2909 command |= FTRACE_START_FUNC_RET;
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05002910 ftrace_startup_enable(command);
Pratyush Anand1619dc32015-03-06 23:58:06 +05302911 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002912}
2913
Ingo Molnare309b412008-05-12 21:20:51 +02002914static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002915{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302916 int command;
2917
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002918 if (unlikely(ftrace_disabled))
2919 return;
2920
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002921 /* ftrace_start_up is true if ftrace is running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302922 if (ftrace_start_up) {
2923 command = FTRACE_DISABLE_CALLS;
2924 if (ftrace_graph_active)
2925 command |= FTRACE_STOP_FUNC_RET;
2926 ftrace_run_update_code(command);
2927 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002928}
2929
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002930static u64 ftrace_update_time;
Steven Rostedt3d083392008-05-12 21:20:42 +02002931unsigned long ftrace_update_tot_cnt;
2932
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002933static inline int ops_traces_mod(struct ftrace_ops *ops)
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002934{
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002935 /*
2936 * Filter_hash being empty will default to trace module.
2937 * But notrace hash requires a test of individual module functions.
2938 */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002939 return ftrace_hash_empty(ops->func_hash->filter_hash) &&
2940 ftrace_hash_empty(ops->func_hash->notrace_hash);
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002941}
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002942
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002943/*
2944 * Check if the current ops references the record.
2945 *
2946 * If the ops traces all functions, then it was already accounted for.
2947 * If the ops does not trace the current record function, skip it.
2948 * If the ops ignores the function via notrace filter, skip it.
2949 */
2950static inline bool
2951ops_references_rec(struct ftrace_ops *ops, struct dyn_ftrace *rec)
2952{
2953 /* If ops isn't enabled, ignore it */
2954 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
2955 return 0;
2956
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002957 /* If ops traces all then it includes this function */
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002958 if (ops_traces_mod(ops))
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002959 return 1;
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002960
2961 /* The function must be in the filter */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002962 if (!ftrace_hash_empty(ops->func_hash->filter_hash) &&
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05002963 !__ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002964 return 0;
2965
2966 /* If in notrace hash, we ignore it too */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002967 if (ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002968 return 0;
2969
2970 return 1;
2971}
2972
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002973static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs)
Steven Rostedt3d083392008-05-12 21:20:42 +02002974{
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002975 struct ftrace_page *pg;
Lai Jiangshane94142a2009-03-13 17:51:27 +08002976 struct dyn_ftrace *p;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002977 u64 start, stop;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002978 unsigned long update_cnt = 0;
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002979 unsigned long rec_flags = 0;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002980 int i;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002981
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002982 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002983
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002984 /*
2985 * When a module is loaded, this function is called to convert
2986 * the calls to mcount in its text to nops, and also to create
2987 * an entry in the ftrace data. Now, if ftrace is activated
2988 * after this call, but before the module sets its text to
2989 * read-only, the modification of enabling ftrace can fail if
2990 * the read-only is done while ftrace is converting the calls.
2991 * To prevent this, the module's records are set as disabled
2992 * and will be enabled after the call to set the module's text
2993 * to read-only.
2994 */
2995 if (mod)
2996 rec_flags |= FTRACE_FL_DISABLED;
2997
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002998 for (pg = new_pgs; pg; pg = pg->next) {
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05302999
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003000 for (i = 0; i < pg->index; i++) {
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04003001
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003002 /* If something went wrong, bail without enabling anything */
3003 if (unlikely(ftrace_disabled))
3004 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02003005
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003006 p = &pg->records[i];
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05003007 p->flags = rec_flags;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05303008
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003009 /*
3010 * Do the initial record conversion from mcount jump
3011 * to the NOP instructions.
3012 */
3013 if (!ftrace_code_disable(mod, p))
3014 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003015
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01003016 update_cnt++;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003017 }
Steven Rostedt3d083392008-05-12 21:20:42 +02003018 }
3019
Ingo Molnar750ed1a2008-05-12 21:20:46 +02003020 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02003021 ftrace_update_time = stop - start;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01003022 ftrace_update_tot_cnt += update_cnt;
Steven Rostedt3d083392008-05-12 21:20:42 +02003023
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02003024 return 0;
3025}
3026
Steven Rostedta7900872011-12-16 16:23:44 -05003027static int ftrace_allocate_records(struct ftrace_page *pg, int count)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003028{
Steven Rostedta7900872011-12-16 16:23:44 -05003029 int order;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003030 int cnt;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003031
Steven Rostedta7900872011-12-16 16:23:44 -05003032 if (WARN_ON(!count))
3033 return -EINVAL;
3034
3035 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003036
3037 /*
Steven Rostedta7900872011-12-16 16:23:44 -05003038 * We want to fill as much as possible. No more than a page
3039 * may be empty.
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003040 */
Steven Rostedta7900872011-12-16 16:23:44 -05003041 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
3042 order--;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02003043
Steven Rostedta7900872011-12-16 16:23:44 -05003044 again:
3045 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
3046
3047 if (!pg->records) {
3048 /* if we can't allocate this size, try something smaller */
3049 if (!order)
3050 return -ENOMEM;
3051 order >>= 1;
3052 goto again;
3053 }
3054
3055 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
3056 pg->size = cnt;
3057
3058 if (cnt > count)
3059 cnt = count;
3060
3061 return cnt;
3062}
3063
3064static struct ftrace_page *
3065ftrace_allocate_pages(unsigned long num_to_init)
3066{
3067 struct ftrace_page *start_pg;
3068 struct ftrace_page *pg;
3069 int order;
3070 int cnt;
3071
3072 if (!num_to_init)
3073 return 0;
3074
3075 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
3076 if (!pg)
3077 return NULL;
3078
3079 /*
3080 * Try to allocate as much as possible in one continues
3081 * location that fills in all of the space. We want to
3082 * waste as little space as possible.
3083 */
3084 for (;;) {
3085 cnt = ftrace_allocate_records(pg, num_to_init);
3086 if (cnt < 0)
3087 goto free_pages;
3088
3089 num_to_init -= cnt;
3090 if (!num_to_init)
3091 break;
3092
3093 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
3094 if (!pg->next)
3095 goto free_pages;
3096
3097 pg = pg->next;
3098 }
3099
3100 return start_pg;
3101
3102 free_pages:
Namhyung Kim1f61be002014-06-11 17:06:53 +09003103 pg = start_pg;
3104 while (pg) {
Steven Rostedta7900872011-12-16 16:23:44 -05003105 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3106 free_pages((unsigned long)pg->records, order);
3107 start_pg = pg->next;
3108 kfree(pg);
3109 pg = start_pg;
3110 }
3111 pr_info("ftrace: FAILED to allocate memory for functions\n");
3112 return NULL;
3113}
3114
Steven Rostedt5072c592008-05-12 21:20:43 +02003115#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
3116
3117struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003118 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003119 loff_t func_pos;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003120 loff_t mod_pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003121 struct ftrace_page *pg;
3122 struct dyn_ftrace *func;
3123 struct ftrace_func_probe *probe;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003124 struct ftrace_func_entry *probe_entry;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003125 struct trace_parser parser;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003126 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003127 struct ftrace_ops *ops;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003128 struct trace_array *tr;
3129 struct list_head *mod_list;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003130 int pidx;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003131 int idx;
3132 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02003133};
3134
Ingo Molnare309b412008-05-12 21:20:51 +02003135static void *
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003136t_probe_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003137{
3138 struct ftrace_iterator *iter = m->private;
Steven Rostedt (VMware)d2afd57a2017-04-20 11:31:35 -04003139 struct trace_array *tr = iter->ops->private;
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003140 struct list_head *func_probes;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003141 struct ftrace_hash *hash;
3142 struct list_head *next;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003143 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003144 struct hlist_head *hhd;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003145 int size;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003146
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003147 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003148 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003149
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003150 if (!tr)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003151 return NULL;
3152
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003153 func_probes = &tr->func_probes;
3154 if (list_empty(func_probes))
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003155 return NULL;
3156
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003157 if (!iter->probe) {
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003158 next = func_probes->next;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003159 iter->probe = list_entry(next, struct ftrace_func_probe, list);
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003160 }
3161
3162 if (iter->probe_entry)
3163 hnd = &iter->probe_entry->hlist;
3164
3165 hash = iter->probe->ops.func_hash->filter_hash;
3166 size = 1 << hash->size_bits;
3167
3168 retry:
3169 if (iter->pidx >= size) {
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04003170 if (iter->probe->list.next == func_probes)
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003171 return NULL;
3172 next = iter->probe->list.next;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003173 iter->probe = list_entry(next, struct ftrace_func_probe, list);
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003174 hash = iter->probe->ops.func_hash->filter_hash;
3175 size = 1 << hash->size_bits;
3176 iter->pidx = 0;
3177 }
3178
3179 hhd = &hash->buckets[iter->pidx];
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003180
3181 if (hlist_empty(hhd)) {
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003182 iter->pidx++;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003183 hnd = NULL;
3184 goto retry;
3185 }
3186
3187 if (!hnd)
3188 hnd = hhd->first;
3189 else {
3190 hnd = hnd->next;
3191 if (!hnd) {
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003192 iter->pidx++;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003193 goto retry;
3194 }
3195 }
3196
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003197 if (WARN_ON_ONCE(!hnd))
3198 return NULL;
3199
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003200 iter->probe_entry = hlist_entry(hnd, struct ftrace_func_entry, hlist);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003201
3202 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003203}
3204
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003205static void *t_probe_start(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003206{
3207 struct ftrace_iterator *iter = m->private;
3208 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08003209 loff_t l;
3210
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003211 if (!(iter->flags & FTRACE_ITER_DO_PROBES))
Steven Rostedt69a30832011-12-19 15:21:16 -05003212 return NULL;
3213
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003214 if (iter->mod_pos > *pos)
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003215 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003216
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003217 iter->probe = NULL;
3218 iter->probe_entry = NULL;
3219 iter->pidx = 0;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003220 for (l = 0; l <= (*pos - iter->mod_pos); ) {
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003221 p = t_probe_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08003222 if (!p)
3223 break;
3224 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003225 if (!p)
3226 return NULL;
3227
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003228 /* Only set this if we have an item */
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003229 iter->flags |= FTRACE_ITER_PROBE;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003230
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003231 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003232}
3233
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003234static int
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003235t_probe_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003236{
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003237 struct ftrace_func_entry *probe_entry;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003238 struct ftrace_probe_ops *probe_ops;
3239 struct ftrace_func_probe *probe;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003240
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003241 probe = iter->probe;
3242 probe_entry = iter->probe_entry;
3243
3244 if (WARN_ON_ONCE(!probe || !probe_entry))
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003245 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003246
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003247 probe_ops = probe->probe_ops;
Steven Rostedt809dcf22009-02-16 23:06:01 -05003248
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003249 if (probe_ops->print)
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04003250 return probe_ops->print(m, probe_entry->ip, probe_ops, probe->data);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003251
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04003252 seq_printf(m, "%ps:%ps\n", (void *)probe_entry->ip,
3253 (void *)probe_ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003254
3255 return 0;
3256}
3257
3258static void *
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003259t_mod_next(struct seq_file *m, loff_t *pos)
3260{
3261 struct ftrace_iterator *iter = m->private;
3262 struct trace_array *tr = iter->tr;
3263
3264 (*pos)++;
3265 iter->pos = *pos;
3266
3267 iter->mod_list = iter->mod_list->next;
3268
3269 if (iter->mod_list == &tr->mod_trace ||
3270 iter->mod_list == &tr->mod_notrace) {
3271 iter->flags &= ~FTRACE_ITER_MOD;
3272 return NULL;
3273 }
3274
3275 iter->mod_pos = *pos;
3276
3277 return iter;
3278}
3279
3280static void *t_mod_start(struct seq_file *m, loff_t *pos)
3281{
3282 struct ftrace_iterator *iter = m->private;
3283 void *p = NULL;
3284 loff_t l;
3285
3286 if (iter->func_pos > *pos)
3287 return NULL;
3288
3289 iter->mod_pos = iter->func_pos;
3290
3291 /* probes are only available if tr is set */
3292 if (!iter->tr)
3293 return NULL;
3294
3295 for (l = 0; l <= (*pos - iter->func_pos); ) {
3296 p = t_mod_next(m, &l);
3297 if (!p)
3298 break;
3299 }
3300 if (!p) {
3301 iter->flags &= ~FTRACE_ITER_MOD;
3302 return t_probe_start(m, pos);
3303 }
3304
3305 /* Only set this if we have an item */
3306 iter->flags |= FTRACE_ITER_MOD;
3307
3308 return iter;
3309}
3310
3311static int
3312t_mod_show(struct seq_file *m, struct ftrace_iterator *iter)
3313{
3314 struct ftrace_mod_load *ftrace_mod;
3315 struct trace_array *tr = iter->tr;
3316
3317 if (WARN_ON_ONCE(!iter->mod_list) ||
3318 iter->mod_list == &tr->mod_trace ||
3319 iter->mod_list == &tr->mod_notrace)
3320 return -EIO;
3321
3322 ftrace_mod = list_entry(iter->mod_list, struct ftrace_mod_load, list);
3323
3324 if (ftrace_mod->func)
3325 seq_printf(m, "%s", ftrace_mod->func);
3326 else
3327 seq_putc(m, '*');
3328
3329 seq_printf(m, ":mod:%s\n", ftrace_mod->module);
3330
3331 return 0;
3332}
3333
3334static void *
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003335t_func_next(struct seq_file *m, loff_t *pos)
Steven Rostedt5072c592008-05-12 21:20:43 +02003336{
3337 struct ftrace_iterator *iter = m->private;
3338 struct dyn_ftrace *rec = NULL;
3339
3340 (*pos)++;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003341
Steven Rostedt5072c592008-05-12 21:20:43 +02003342 retry:
3343 if (iter->idx >= iter->pg->index) {
3344 if (iter->pg->next) {
3345 iter->pg = iter->pg->next;
3346 iter->idx = 0;
3347 goto retry;
3348 }
3349 } else {
3350 rec = &iter->pg->records[iter->idx++];
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04003351 if (((iter->flags & (FTRACE_ITER_FILTER | FTRACE_ITER_NOTRACE)) &&
3352 !ftrace_lookup_ip(iter->hash, rec->ip)) ||
Steven Rostedt647bcd02011-05-03 14:39:21 -04003353
3354 ((iter->flags & FTRACE_ITER_ENABLED) &&
Steven Rostedt (Red Hat)23ea9c42013-05-09 19:31:48 -04003355 !(rec->flags & FTRACE_FL_ENABLED))) {
Steven Rostedt647bcd02011-05-03 14:39:21 -04003356
Steven Rostedt5072c592008-05-12 21:20:43 +02003357 rec = NULL;
3358 goto retry;
3359 }
3360 }
3361
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003362 if (!rec)
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003363 return NULL;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003364
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003365 iter->pos = iter->func_pos = *pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003366 iter->func = rec;
3367
3368 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003369}
3370
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003371static void *
3372t_next(struct seq_file *m, void *v, loff_t *pos)
3373{
3374 struct ftrace_iterator *iter = m->private;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003375 loff_t l = *pos; /* t_probe_start() must use original pos */
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003376 void *ret;
3377
3378 if (unlikely(ftrace_disabled))
3379 return NULL;
3380
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003381 if (iter->flags & FTRACE_ITER_PROBE)
3382 return t_probe_next(m, pos);
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003383
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003384 if (iter->flags & FTRACE_ITER_MOD)
3385 return t_mod_next(m, pos);
3386
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003387 if (iter->flags & FTRACE_ITER_PRINTALL) {
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003388 /* next must increment pos, and t_probe_start does not */
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003389 (*pos)++;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003390 return t_mod_start(m, &l);
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003391 }
3392
3393 ret = t_func_next(m, pos);
3394
3395 if (!ret)
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003396 return t_mod_start(m, &l);
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003397
3398 return ret;
3399}
3400
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003401static void reset_iter_read(struct ftrace_iterator *iter)
3402{
3403 iter->pos = 0;
3404 iter->func_pos = 0;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003405 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_PROBE | FTRACE_ITER_MOD);
Steven Rostedt5072c592008-05-12 21:20:43 +02003406}
3407
3408static void *t_start(struct seq_file *m, loff_t *pos)
3409{
3410 struct ftrace_iterator *iter = m->private;
3411 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08003412 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02003413
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003414 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003415
3416 if (unlikely(ftrace_disabled))
3417 return NULL;
3418
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003419 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003420 * If an lseek was done, then reset and start from beginning.
3421 */
3422 if (*pos < iter->pos)
3423 reset_iter_read(iter);
3424
3425 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003426 * For set_ftrace_filter reading, if we have the filter
3427 * off, we can short cut and just print out that all
3428 * functions are enabled.
3429 */
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04003430 if ((iter->flags & (FTRACE_ITER_FILTER | FTRACE_ITER_NOTRACE)) &&
3431 ftrace_hash_empty(iter->hash)) {
Steven Rostedt (VMware)43ff9262017-03-30 16:51:43 -04003432 iter->func_pos = 1; /* Account for the message */
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003433 if (*pos > 0)
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003434 return t_mod_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003435 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07003436 /* reset in case of seek/pread */
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003437 iter->flags &= ~FTRACE_ITER_PROBE;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003438 return iter;
3439 }
3440
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003441 if (iter->flags & FTRACE_ITER_MOD)
3442 return t_mod_start(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003443
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003444 /*
3445 * Unfortunately, we need to restart at ftrace_pages_start
3446 * every time we let go of the ftrace_mutex. This is because
3447 * those pointers can change without the lock.
3448 */
Li Zefan694ce0a2009-06-24 09:54:19 +08003449 iter->pg = ftrace_pages_start;
3450 iter->idx = 0;
3451 for (l = 0; l <= *pos; ) {
Steven Rostedt (VMware)5bd84622017-03-29 22:45:18 -04003452 p = t_func_next(m, &l);
Li Zefan694ce0a2009-06-24 09:54:19 +08003453 if (!p)
3454 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08003455 }
walimis5821e1b2008-11-15 15:19:06 +08003456
Steven Rostedt69a30832011-12-19 15:21:16 -05003457 if (!p)
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003458 return t_mod_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003459
3460 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003461}
3462
3463static void t_stop(struct seq_file *m, void *p)
3464{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003465 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003466}
3467
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003468void * __weak
3469arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec)
3470{
3471 return NULL;
3472}
3473
3474static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops,
3475 struct dyn_ftrace *rec)
3476{
3477 void *ptr;
3478
3479 ptr = arch_ftrace_trampoline_func(ops, rec);
3480 if (ptr)
3481 seq_printf(m, " ->%pS", ptr);
3482}
3483
Steven Rostedt5072c592008-05-12 21:20:43 +02003484static int t_show(struct seq_file *m, void *v)
3485{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003486 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003487 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02003488
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003489 if (iter->flags & FTRACE_ITER_PROBE)
3490 return t_probe_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003491
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003492 if (iter->flags & FTRACE_ITER_MOD)
3493 return t_mod_show(m, iter);
3494
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003495 if (iter->flags & FTRACE_ITER_PRINTALL) {
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003496 if (iter->flags & FTRACE_ITER_NOTRACE)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003497 seq_puts(m, "#### no functions disabled ####\n");
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003498 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003499 seq_puts(m, "#### all functions enabled ####\n");
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003500 return 0;
3501 }
3502
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003503 rec = iter->func;
3504
Steven Rostedt5072c592008-05-12 21:20:43 +02003505 if (!rec)
3506 return 0;
3507
Steven Rostedt647bcd02011-05-03 14:39:21 -04003508 seq_printf(m, "%ps", (void *)rec->ip);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003509 if (iter->flags & FTRACE_ITER_ENABLED) {
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003510 struct ftrace_ops *ops;
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003511
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003512 seq_printf(m, " (%ld)%s%s",
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04003513 ftrace_rec_count(rec),
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003514 rec->flags & FTRACE_FL_REGS ? " R" : " ",
3515 rec->flags & FTRACE_FL_IPMODIFY ? " I" : " ");
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003516 if (rec->flags & FTRACE_FL_TRAMP_EN) {
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04003517 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003518 if (ops) {
3519 do {
3520 seq_printf(m, "\ttramp: %pS (%pS)",
3521 (void *)ops->trampoline,
3522 (void *)ops->func);
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003523 add_trampoline_func(m, ops, rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003524 ops = ftrace_find_tramp_ops_next(rec, ops);
3525 } while (ops);
3526 } else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003527 seq_puts(m, "\ttramp: ERROR!");
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003528 } else {
3529 add_trampoline_func(m, NULL, rec);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003530 }
3531 }
3532
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003533 seq_putc(m, '\n');
Steven Rostedt5072c592008-05-12 21:20:43 +02003534
3535 return 0;
3536}
3537
James Morris88e9d342009-09-22 16:43:43 -07003538static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003539 .start = t_start,
3540 .next = t_next,
3541 .stop = t_stop,
3542 .show = t_show,
3543};
3544
Ingo Molnare309b412008-05-12 21:20:51 +02003545static int
Steven Rostedt5072c592008-05-12 21:20:43 +02003546ftrace_avail_open(struct inode *inode, struct file *file)
3547{
3548 struct ftrace_iterator *iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003549
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003550 if (unlikely(ftrace_disabled))
3551 return -ENODEV;
3552
Jiri Olsa50e18b92012-04-25 10:23:39 +02003553 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003554 if (!iter)
3555 return -ENOMEM;
Steven Rostedt5072c592008-05-12 21:20:43 +02003556
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003557 iter->pg = ftrace_pages_start;
3558 iter->ops = &global_ops;
3559
3560 return 0;
Steven Rostedt5072c592008-05-12 21:20:43 +02003561}
3562
Steven Rostedt647bcd02011-05-03 14:39:21 -04003563static int
3564ftrace_enabled_open(struct inode *inode, struct file *file)
3565{
3566 struct ftrace_iterator *iter;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003567
Jiri Olsa50e18b92012-04-25 10:23:39 +02003568 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003569 if (!iter)
3570 return -ENOMEM;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003571
Steven Rostedt (VMware)c1bc5912017-03-29 11:38:13 -04003572 iter->pg = ftrace_pages_start;
3573 iter->flags = FTRACE_ITER_ENABLED;
3574 iter->ops = &global_ops;
3575
3576 return 0;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003577}
3578
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003579/**
3580 * ftrace_regex_open - initialize function tracer filter files
3581 * @ops: The ftrace_ops that hold the hash filters
3582 * @flag: The type of filter to process
3583 * @inode: The inode, usually passed in to your open routine
3584 * @file: The file, usually passed in to your open routine
3585 *
3586 * ftrace_regex_open() initializes the filter files for the
3587 * @ops. Depending on @flag it may process the filter hash or
3588 * the notrace hash of @ops. With this called from the open
3589 * routine, you can use ftrace_filter_write() for the write
3590 * routine if @flag has FTRACE_ITER_FILTER set, or
3591 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05003592 * tracing_lseek() should be used as the lseek routine, and
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003593 * release must call ftrace_regex_release().
3594 */
3595int
Steven Rostedtf45948e2011-05-02 12:29:25 -04003596ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003597 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003598{
3599 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003600 struct ftrace_hash *hash;
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003601 struct list_head *mod_head;
3602 struct trace_array *tr = ops->private;
Steven Rostedt5072c592008-05-12 21:20:43 +02003603 int ret = 0;
3604
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003605 ftrace_ops_init(ops);
3606
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003607 if (unlikely(ftrace_disabled))
3608 return -ENODEV;
3609
Steven Rostedt5072c592008-05-12 21:20:43 +02003610 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3611 if (!iter)
3612 return -ENOMEM;
3613
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003614 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
3615 kfree(iter);
3616 return -ENOMEM;
3617 }
3618
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003619 iter->ops = ops;
3620 iter->flags = flag;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003621 iter->tr = tr;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003622
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003623 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003624
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003625 if (flag & FTRACE_ITER_NOTRACE) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003626 hash = ops->func_hash->notrace_hash;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003627 mod_head = tr ? &tr->mod_notrace : NULL;
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003628 } else {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003629 hash = ops->func_hash->filter_hash;
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003630 mod_head = tr ? &tr->mod_trace : NULL;
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003631 }
Steven Rostedtf45948e2011-05-02 12:29:25 -04003632
Steven Rostedt (VMware)5985ea82017-06-23 16:05:11 -04003633 iter->mod_list = mod_head;
3634
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003635 if (file->f_mode & FMODE_WRITE) {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003636 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
3637
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003638 if (file->f_flags & O_TRUNC) {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003639 iter->hash = alloc_ftrace_hash(size_bits);
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003640 clear_ftrace_mod_list(mod_head);
3641 } else {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003642 iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash);
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003643 }
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003644
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003645 if (!iter->hash) {
3646 trace_parser_put(&iter->parser);
3647 kfree(iter);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003648 ret = -ENOMEM;
3649 goto out_unlock;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003650 }
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04003651 } else
3652 iter->hash = hash;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003653
Steven Rostedt5072c592008-05-12 21:20:43 +02003654 if (file->f_mode & FMODE_READ) {
3655 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02003656
3657 ret = seq_open(file, &show_ftrace_seq_ops);
3658 if (!ret) {
3659 struct seq_file *m = file->private_data;
3660 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08003661 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003662 /* Failed */
3663 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08003664 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003665 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08003666 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003667 } else
3668 file->private_data = iter;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003669
3670 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003671 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003672
3673 return ret;
3674}
3675
Steven Rostedt41c52c02008-05-22 11:46:33 -04003676static int
3677ftrace_filter_open(struct inode *inode, struct file *file)
3678{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003679 struct ftrace_ops *ops = inode->i_private;
3680
3681 return ftrace_regex_open(ops,
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04003682 FTRACE_ITER_FILTER | FTRACE_ITER_DO_PROBES,
Steven Rostedt69a30832011-12-19 15:21:16 -05003683 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003684}
3685
3686static int
3687ftrace_notrace_open(struct inode *inode, struct file *file)
3688{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003689 struct ftrace_ops *ops = inode->i_private;
3690
3691 return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003692 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003693}
3694
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003695/* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */
3696struct ftrace_glob {
3697 char *search;
3698 unsigned len;
3699 int type;
3700};
3701
Thiago Jung Bauermann7132e2d2016-04-25 18:56:14 -03003702/*
3703 * If symbols in an architecture don't correspond exactly to the user-visible
3704 * name of what they represent, it is possible to define this function to
3705 * perform the necessary adjustments.
3706*/
3707char * __weak arch_ftrace_match_adjust(char *str, const char *search)
3708{
3709 return str;
3710}
3711
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003712static int ftrace_match(char *str, struct ftrace_glob *g)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003713{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003714 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08003715 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003716
Thiago Jung Bauermann7132e2d2016-04-25 18:56:14 -03003717 str = arch_ftrace_match_adjust(str, g->search);
3718
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003719 switch (g->type) {
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003720 case MATCH_FULL:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003721 if (strcmp(str, g->search) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003722 matched = 1;
3723 break;
3724 case MATCH_FRONT_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003725 if (strncmp(str, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003726 matched = 1;
3727 break;
3728 case MATCH_MIDDLE_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003729 if (strstr(str, g->search))
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003730 matched = 1;
3731 break;
3732 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08003733 slen = strlen(str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003734 if (slen >= g->len &&
3735 memcmp(str + slen - g->len, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003736 matched = 1;
3737 break;
Masami Hiramatsu60f1d5e2016-10-05 20:58:15 +09003738 case MATCH_GLOB:
3739 if (glob_match(g->search, str))
3740 matched = 1;
3741 break;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003742 }
3743
3744 return matched;
3745}
3746
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003747static int
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003748enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int clear_filter)
Steven Rostedt996e87b2011-04-26 16:11:03 -04003749{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003750 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003751 int ret = 0;
3752
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003753 entry = ftrace_lookup_ip(hash, rec->ip);
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003754 if (clear_filter) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003755 /* Do nothing if it doesn't exist */
3756 if (!entry)
3757 return 0;
3758
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003759 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003760 } else {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003761 /* Do nothing if it exists */
3762 if (entry)
3763 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003764
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003765 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003766 }
3767 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04003768}
3769
Steven Rostedt64e7c442009-02-13 17:08:48 -05003770static int
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003771ftrace_match_record(struct dyn_ftrace *rec, struct ftrace_glob *func_g,
3772 struct ftrace_glob *mod_g, int exclude_mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003773{
3774 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003775 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003776
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003777 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
3778
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003779 if (mod_g) {
3780 int mod_matches = (modname) ? ftrace_match(modname, mod_g) : 0;
3781
3782 /* blank module name to match all modules */
3783 if (!mod_g->len) {
3784 /* blank module globbing: modname xor exclude_mod */
Steven Rostedt (VMware)77c0edd2017-05-03 11:41:44 -04003785 if (!exclude_mod != !modname)
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003786 goto func_match;
3787 return 0;
3788 }
3789
Steven Rostedt (VMware)77c0edd2017-05-03 11:41:44 -04003790 /*
3791 * exclude_mod is set to trace everything but the given
3792 * module. If it is set and the module matches, then
3793 * return 0. If it is not set, and the module doesn't match
3794 * also return 0. Otherwise, check the function to see if
3795 * that matches.
3796 */
3797 if (!mod_matches == !exclude_mod)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003798 return 0;
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003799func_match:
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003800 /* blank search means to match all funcs in the mod */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003801 if (!func_g->len)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003802 return 1;
3803 }
3804
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003805 return ftrace_match(str, func_g);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003806}
3807
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003808static int
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003809match_records(struct ftrace_hash *hash, char *func, int len, char *mod)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003810{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003811 struct ftrace_page *pg;
3812 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003813 struct ftrace_glob func_g = { .type = MATCH_FULL };
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003814 struct ftrace_glob mod_g = { .type = MATCH_FULL };
3815 struct ftrace_glob *mod_match = (mod) ? &mod_g : NULL;
3816 int exclude_mod = 0;
Li Zefan311d16d2009-12-08 11:15:11 +08003817 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003818 int ret;
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003819 int clear_filter;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003820
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003821 if (func) {
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003822 func_g.type = filter_parse_regex(func, len, &func_g.search,
3823 &clear_filter);
3824 func_g.len = strlen(func_g.search);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003825 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003826
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003827 if (mod) {
3828 mod_g.type = filter_parse_regex(mod, strlen(mod),
3829 &mod_g.search, &exclude_mod);
3830 mod_g.len = strlen(mod_g.search);
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003831 }
3832
Steven Rostedt52baf112009-02-14 01:15:39 -05003833 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003834
3835 if (unlikely(ftrace_disabled))
3836 goto out_unlock;
3837
Steven Rostedt265c8312009-02-13 12:43:56 -05003838 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05003839
3840 if (rec->flags & FTRACE_FL_DISABLED)
3841 continue;
3842
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003843 if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) {
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003844 ret = enter_record(hash, rec, clear_filter);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003845 if (ret < 0) {
3846 found = ret;
3847 goto out_unlock;
3848 }
Li Zefan311d16d2009-12-08 11:15:11 +08003849 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05003850 }
3851 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003852 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05003853 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08003854
3855 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02003856}
3857
Steven Rostedt64e7c442009-02-13 17:08:48 -05003858static int
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003859ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003860{
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003861 return match_records(hash, buff, len, NULL);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003862}
3863
Steven Rostedt (VMware)e16b35d2017-04-04 14:46:56 -04003864static void ftrace_ops_update_code(struct ftrace_ops *ops,
3865 struct ftrace_ops_hash *old_hash)
3866{
3867 struct ftrace_ops *op;
3868
3869 if (!ftrace_enabled)
3870 return;
3871
3872 if (ops->flags & FTRACE_OPS_FL_ENABLED) {
3873 ftrace_run_modify_code(ops, FTRACE_UPDATE_CALLS, old_hash);
3874 return;
3875 }
3876
3877 /*
3878 * If this is the shared global_ops filter, then we need to
3879 * check if there is another ops that shares it, is enabled.
3880 * If so, we still need to run the modify code.
3881 */
3882 if (ops->func_hash != &global_ops.local_hash)
3883 return;
3884
3885 do_for_each_ftrace_op(op, ftrace_ops_list) {
3886 if (op->func_hash == &global_ops.local_hash &&
3887 op->flags & FTRACE_OPS_FL_ENABLED) {
3888 ftrace_run_modify_code(op, FTRACE_UPDATE_CALLS, old_hash);
3889 /* Only need to do this once */
3890 return;
3891 }
3892 } while_for_each_ftrace_op(op);
3893}
3894
3895static int ftrace_hash_move_and_update_ops(struct ftrace_ops *ops,
3896 struct ftrace_hash **orig_hash,
3897 struct ftrace_hash *hash,
3898 int enable)
3899{
3900 struct ftrace_ops_hash old_hash_ops;
3901 struct ftrace_hash *old_hash;
3902 int ret;
3903
3904 old_hash = *orig_hash;
3905 old_hash_ops.filter_hash = ops->func_hash->filter_hash;
3906 old_hash_ops.notrace_hash = ops->func_hash->notrace_hash;
3907 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
3908 if (!ret) {
3909 ftrace_ops_update_code(ops, &old_hash_ops);
3910 free_ftrace_hash_rcu(old_hash);
3911 }
3912 return ret;
3913}
Steven Rostedt64e7c442009-02-13 17:08:48 -05003914
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04003915static bool module_exists(const char *module)
3916{
3917 /* All modules have the symbol __this_module */
3918 const char this_mod[] = "__this_module";
3919 const int modname_size = MAX_PARAM_PREFIX_LEN + sizeof(this_mod) + 1;
3920 char modname[modname_size + 1];
3921 unsigned long val;
3922 int n;
3923
3924 n = snprintf(modname, modname_size + 1, "%s:%s", module, this_mod);
3925
3926 if (n > modname_size)
3927 return false;
3928
3929 val = module_kallsyms_lookup_name(modname);
3930 return val != 0;
3931}
3932
3933static int cache_mod(struct trace_array *tr,
3934 const char *func, char *module, int enable)
3935{
3936 struct ftrace_mod_load *ftrace_mod, *n;
3937 struct list_head *head = enable ? &tr->mod_trace : &tr->mod_notrace;
3938 int ret;
3939
3940 mutex_lock(&ftrace_lock);
3941
3942 /* We do not cache inverse filters */
3943 if (func[0] == '!') {
3944 func++;
3945 ret = -EINVAL;
3946
3947 /* Look to remove this hash */
3948 list_for_each_entry_safe(ftrace_mod, n, head, list) {
3949 if (strcmp(ftrace_mod->module, module) != 0)
3950 continue;
3951
3952 /* no func matches all */
3953 if (!func || strcmp(func, "*") == 0 ||
3954 (ftrace_mod->func &&
3955 strcmp(ftrace_mod->func, func) == 0)) {
3956 ret = 0;
3957 free_ftrace_mod(ftrace_mod);
3958 continue;
3959 }
3960 }
3961 goto out;
3962 }
3963
3964 ret = -EINVAL;
3965 /* We only care about modules that have not been loaded yet */
3966 if (module_exists(module))
3967 goto out;
3968
3969 /* Save this string off, and execute it when the module is loaded */
3970 ret = ftrace_add_mod(tr, func, module, enable);
3971 out:
3972 mutex_unlock(&ftrace_lock);
3973
3974 return ret;
3975}
3976
Steven Rostedt (VMware)d7fbf8d2017-06-26 10:57:21 -04003977static int
3978ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
3979 int reset, int enable);
3980
3981static void process_mod_list(struct list_head *head, struct ftrace_ops *ops,
3982 char *mod, bool enable)
3983{
3984 struct ftrace_mod_load *ftrace_mod, *n;
3985 struct ftrace_hash **orig_hash, *new_hash;
3986 LIST_HEAD(process_mods);
3987 char *func;
3988 int ret;
3989
3990 mutex_lock(&ops->func_hash->regex_lock);
3991
3992 if (enable)
3993 orig_hash = &ops->func_hash->filter_hash;
3994 else
3995 orig_hash = &ops->func_hash->notrace_hash;
3996
3997 new_hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS,
3998 *orig_hash);
3999 if (!new_hash)
4000 return; /* Warn? */
4001
4002 mutex_lock(&ftrace_lock);
4003
4004 list_for_each_entry_safe(ftrace_mod, n, head, list) {
4005
4006 if (strcmp(ftrace_mod->module, mod) != 0)
4007 continue;
4008
4009 if (ftrace_mod->func)
4010 func = kstrdup(ftrace_mod->func, GFP_KERNEL);
4011 else
4012 func = kstrdup("*", GFP_KERNEL);
4013
4014 if (!func) /* warn? */
4015 continue;
4016
4017 list_del(&ftrace_mod->list);
4018 list_add(&ftrace_mod->list, &process_mods);
4019
4020 /* Use the newly allocated func, as it may be "*" */
4021 kfree(ftrace_mod->func);
4022 ftrace_mod->func = func;
4023 }
4024
4025 mutex_unlock(&ftrace_lock);
4026
4027 list_for_each_entry_safe(ftrace_mod, n, &process_mods, list) {
4028
4029 func = ftrace_mod->func;
4030
4031 /* Grabs ftrace_lock, which is why we have this extra step */
4032 match_records(new_hash, func, strlen(func), mod);
4033 free_ftrace_mod(ftrace_mod);
4034 }
4035
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04004036 if (enable && list_empty(head))
4037 new_hash->flags &= ~FTRACE_HASH_FL_MOD;
4038
Steven Rostedt (VMware)d7fbf8d2017-06-26 10:57:21 -04004039 mutex_lock(&ftrace_lock);
4040
4041 ret = ftrace_hash_move_and_update_ops(ops, orig_hash,
4042 new_hash, enable);
4043 mutex_unlock(&ftrace_lock);
4044
4045 mutex_unlock(&ops->func_hash->regex_lock);
4046
4047 free_ftrace_hash(new_hash);
4048}
4049
4050static void process_cached_mods(const char *mod_name)
4051{
4052 struct trace_array *tr;
4053 char *mod;
4054
4055 mod = kstrdup(mod_name, GFP_KERNEL);
4056 if (!mod)
4057 return;
4058
4059 mutex_lock(&trace_types_lock);
4060 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
4061 if (!list_empty(&tr->mod_trace))
4062 process_mod_list(&tr->mod_trace, tr->ops, mod, true);
4063 if (!list_empty(&tr->mod_notrace))
4064 process_mod_list(&tr->mod_notrace, tr->ops, mod, false);
4065 }
4066 mutex_unlock(&trace_types_lock);
4067
4068 kfree(mod);
4069}
4070
Steven Rostedtf6180772009-02-14 00:40:25 -05004071/*
4072 * We register the module command as a template to show others how
4073 * to register the a command as well.
4074 */
4075
4076static int
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004077ftrace_mod_callback(struct trace_array *tr, struct ftrace_hash *hash,
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004078 char *func_orig, char *cmd, char *module, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05004079{
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004080 char *func;
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03004081 int ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05004082
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004083 /* match_records() modifies func, and we need the original */
4084 func = kstrdup(func_orig, GFP_KERNEL);
4085 if (!func)
4086 return -ENOMEM;
4087
Steven Rostedtf6180772009-02-14 00:40:25 -05004088 /*
4089 * cmd == 'mod' because we only registered this func
4090 * for the 'mod' ftrace_func_command.
4091 * But if you register one func with multiple commands,
4092 * you can tell which command was used by the cmd
4093 * parameter.
4094 */
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03004095 ret = match_records(hash, func, strlen(func), module);
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004096 kfree(func);
4097
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004098 if (!ret)
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04004099 return cache_mod(tr, func_orig, module, enable);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004100 if (ret < 0)
4101 return ret;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004102 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05004103}
4104
4105static struct ftrace_func_command ftrace_mod_cmd = {
4106 .name = "mod",
4107 .func = ftrace_mod_callback,
4108};
4109
4110static int __init ftrace_mod_cmd_init(void)
4111{
4112 return register_ftrace_command(&ftrace_mod_cmd);
4113}
Steven Rostedt6f415672012-10-05 12:13:07 -04004114core_initcall(ftrace_mod_cmd_init);
Steven Rostedtf6180772009-02-14 00:40:25 -05004115
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004116static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04004117 struct ftrace_ops *op, struct pt_regs *pt_regs)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004118{
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004119 struct ftrace_probe_ops *probe_ops;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004120 struct ftrace_func_probe *probe;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004121
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004122 probe = container_of(op, struct ftrace_func_probe, ops);
4123 probe_ops = probe->probe_ops;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004124
4125 /*
4126 * Disable preemption for these calls to prevent a RCU grace
4127 * period. This syncs the hash iteration and freeing of items
4128 * on the hash. rcu_read_lock is too dangerous here.
4129 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04004130 preempt_disable_notrace();
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004131 probe_ops->func(ip, parent_ip, probe->tr, probe_ops, probe->data);
Steven Rostedt5168ae52010-06-03 09:36:50 -04004132 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05004133}
4134
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004135struct ftrace_func_map {
4136 struct ftrace_func_entry entry;
4137 void *data;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004138};
4139
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004140struct ftrace_func_mapper {
4141 struct ftrace_hash hash;
4142};
Steven Rostedt59df055f2009-02-14 15:29:06 -05004143
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004144/**
4145 * allocate_ftrace_func_mapper - allocate a new ftrace_func_mapper
4146 *
4147 * Returns a ftrace_func_mapper descriptor that can be used to map ips to data.
4148 */
4149struct ftrace_func_mapper *allocate_ftrace_func_mapper(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004150{
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004151 struct ftrace_hash *hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004152
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004153 /*
4154 * The mapper is simply a ftrace_hash, but since the entries
4155 * in the hash are not ftrace_func_entry type, we define it
4156 * as a separate structure.
4157 */
4158 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4159 return (struct ftrace_func_mapper *)hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004160}
4161
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004162/**
4163 * ftrace_func_mapper_find_ip - Find some data mapped to an ip
4164 * @mapper: The mapper that has the ip maps
4165 * @ip: the instruction pointer to find the data for
4166 *
4167 * Returns the data mapped to @ip if found otherwise NULL. The return
4168 * is actually the address of the mapper data pointer. The address is
4169 * returned for use cases where the data is no bigger than a long, and
4170 * the user can use the data pointer as its data instead of having to
4171 * allocate more memory for the reference.
4172 */
4173void **ftrace_func_mapper_find_ip(struct ftrace_func_mapper *mapper,
4174 unsigned long ip)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004175{
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004176 struct ftrace_func_entry *entry;
4177 struct ftrace_func_map *map;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004178
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004179 entry = ftrace_lookup_ip(&mapper->hash, ip);
4180 if (!entry)
4181 return NULL;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004182
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004183 map = (struct ftrace_func_map *)entry;
4184 return &map->data;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004185}
4186
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004187/**
4188 * ftrace_func_mapper_add_ip - Map some data to an ip
4189 * @mapper: The mapper that has the ip maps
4190 * @ip: The instruction pointer address to map @data to
4191 * @data: The data to map to @ip
4192 *
4193 * Returns 0 on succes otherwise an error.
4194 */
4195int ftrace_func_mapper_add_ip(struct ftrace_func_mapper *mapper,
4196 unsigned long ip, void *data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004197{
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004198 struct ftrace_func_entry *entry;
4199 struct ftrace_func_map *map;
4200
4201 entry = ftrace_lookup_ip(&mapper->hash, ip);
4202 if (entry)
4203 return -EBUSY;
4204
4205 map = kmalloc(sizeof(*map), GFP_KERNEL);
4206 if (!map)
4207 return -ENOMEM;
4208
4209 map->entry.ip = ip;
4210 map->data = data;
4211
4212 __add_hash_entry(&mapper->hash, &map->entry);
4213
4214 return 0;
4215}
4216
4217/**
4218 * ftrace_func_mapper_remove_ip - Remove an ip from the mapping
4219 * @mapper: The mapper that has the ip maps
4220 * @ip: The instruction pointer address to remove the data from
4221 *
4222 * Returns the data if it is found, otherwise NULL.
4223 * Note, if the data pointer is used as the data itself, (see
4224 * ftrace_func_mapper_find_ip(), then the return value may be meaningless,
4225 * if the data pointer was set to zero.
4226 */
4227void *ftrace_func_mapper_remove_ip(struct ftrace_func_mapper *mapper,
4228 unsigned long ip)
4229{
4230 struct ftrace_func_entry *entry;
4231 struct ftrace_func_map *map;
4232 void *data;
4233
4234 entry = ftrace_lookup_ip(&mapper->hash, ip);
4235 if (!entry)
4236 return NULL;
4237
4238 map = (struct ftrace_func_map *)entry;
4239 data = map->data;
4240
4241 remove_hash_entry(&mapper->hash, entry);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004242 kfree(entry);
Steven Rostedt (VMware)41794f12017-04-03 20:58:35 -04004243
4244 return data;
4245}
4246
4247/**
4248 * free_ftrace_func_mapper - free a mapping of ips and data
4249 * @mapper: The mapper that has the ip maps
4250 * @free_func: A function to be called on each data item.
4251 *
4252 * This is used to free the function mapper. The @free_func is optional
4253 * and can be used if the data needs to be freed as well.
4254 */
4255void free_ftrace_func_mapper(struct ftrace_func_mapper *mapper,
4256 ftrace_mapper_func free_func)
4257{
4258 struct ftrace_func_entry *entry;
4259 struct ftrace_func_map *map;
4260 struct hlist_head *hhd;
4261 int size = 1 << mapper->hash.size_bits;
4262 int i;
4263
4264 if (free_func && mapper->hash.count) {
4265 for (i = 0; i < size; i++) {
4266 hhd = &mapper->hash.buckets[i];
4267 hlist_for_each_entry(entry, hhd, hlist) {
4268 map = (struct ftrace_func_map *)entry;
4269 free_func(map);
4270 }
4271 }
4272 }
4273 free_ftrace_hash(&mapper->hash);
4274}
4275
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004276static void release_probe(struct ftrace_func_probe *probe)
4277{
4278 struct ftrace_probe_ops *probe_ops;
4279
4280 mutex_lock(&ftrace_lock);
4281
4282 WARN_ON(probe->ref <= 0);
4283
4284 /* Subtract the ref that was used to protect this instance */
4285 probe->ref--;
4286
4287 if (!probe->ref) {
4288 probe_ops = probe->probe_ops;
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004289 /*
4290 * Sending zero as ip tells probe_ops to free
4291 * the probe->data itself
4292 */
4293 if (probe_ops->free)
4294 probe_ops->free(probe_ops, probe->tr, 0, probe->data);
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004295 list_del(&probe->list);
4296 kfree(probe);
4297 }
4298 mutex_unlock(&ftrace_lock);
4299}
4300
4301static void acquire_probe_locked(struct ftrace_func_probe *probe)
4302{
4303 /*
4304 * Add one ref to keep it from being freed when releasing the
4305 * ftrace_lock mutex.
4306 */
4307 probe->ref++;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004308}
4309
Steven Rostedt59df055f2009-02-14 15:29:06 -05004310int
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004311register_ftrace_function_probe(char *glob, struct trace_array *tr,
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004312 struct ftrace_probe_ops *probe_ops,
4313 void *data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004314{
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004315 struct ftrace_func_entry *entry;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004316 struct ftrace_func_probe *probe;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004317 struct ftrace_hash **orig_hash;
4318 struct ftrace_hash *old_hash;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004319 struct ftrace_hash *hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004320 int count = 0;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004321 int size;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004322 int ret;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004323 int i;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004324
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004325 if (WARN_ON(!tr))
Steven Rostedt59df055f2009-02-14 15:29:06 -05004326 return -EINVAL;
4327
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004328 /* We do not support '!' for function probes */
4329 if (WARN_ON(glob[0] == '!'))
Steven Rostedt59df055f2009-02-14 15:29:06 -05004330 return -EINVAL;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004331
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004332
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004333 mutex_lock(&ftrace_lock);
4334 /* Check if the probe_ops is already registered */
4335 list_for_each_entry(probe, &tr->func_probes, list) {
4336 if (probe->probe_ops == probe_ops)
4337 break;
4338 }
4339 if (&probe->list == &tr->func_probes) {
4340 probe = kzalloc(sizeof(*probe), GFP_KERNEL);
4341 if (!probe) {
4342 mutex_unlock(&ftrace_lock);
4343 return -ENOMEM;
4344 }
4345 probe->probe_ops = probe_ops;
4346 probe->ops.func = function_trace_probe_call;
4347 probe->tr = tr;
4348 ftrace_ops_init(&probe->ops);
4349 list_add(&probe->list, &tr->func_probes);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004350 }
4351
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004352 acquire_probe_locked(probe);
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004353
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004354 mutex_unlock(&ftrace_lock);
4355
4356 mutex_lock(&probe->ops.func_hash->regex_lock);
4357
4358 orig_hash = &probe->ops.func_hash->filter_hash;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004359 old_hash = *orig_hash;
4360 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
4361
4362 ret = ftrace_match_records(hash, glob, strlen(glob));
4363
4364 /* Nothing found? */
4365 if (!ret)
4366 ret = -EINVAL;
4367
4368 if (ret < 0)
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04004369 goto out;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004370
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004371 size = 1 << hash->size_bits;
4372 for (i = 0; i < size; i++) {
4373 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
4374 if (ftrace_lookup_ip(old_hash, entry->ip))
4375 continue;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004376 /*
4377 * The caller might want to do something special
4378 * for each function we find. We call the callback
4379 * to give the caller an opportunity to do so.
4380 */
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004381 if (probe_ops->init) {
4382 ret = probe_ops->init(probe_ops, tr,
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004383 entry->ip, data,
4384 &probe->data);
4385 if (ret < 0) {
4386 if (probe_ops->free && count)
4387 probe_ops->free(probe_ops, tr,
4388 0, probe->data);
4389 probe->data = NULL;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004390 goto out;
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004391 }
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004392 }
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004393 count++;
4394 }
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004395 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04004396
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04004397 mutex_lock(&ftrace_lock);
4398
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004399 if (!count) {
4400 /* Nothing was added? */
4401 ret = -EINVAL;
4402 goto out_unlock;
4403 }
Steven Rostedt59df055f2009-02-14 15:29:06 -05004404
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004405 ret = ftrace_hash_move_and_update_ops(&probe->ops, orig_hash,
4406 hash, 1);
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004407 if (ret < 0)
Steven Rostedt (VMware)8d707252017-04-05 13:36:18 -04004408 goto err_unlock;
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05004409
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004410 /* One ref for each new function traced */
4411 probe->ref += count;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004412
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004413 if (!(probe->ops.flags & FTRACE_OPS_FL_ENABLED))
4414 ret = ftrace_startup(&probe->ops, 0);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004415
Steven Rostedt59df055f2009-02-14 15:29:06 -05004416 out_unlock:
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04004417 mutex_unlock(&ftrace_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004418
4419 if (!ret)
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004420 ret = count;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04004421 out:
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004422 mutex_unlock(&probe->ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004423 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004424
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004425 release_probe(probe);
4426
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004427 return ret;
Steven Rostedt (VMware)8d707252017-04-05 13:36:18 -04004428
4429 err_unlock:
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004430 if (!probe_ops->free || !count)
Steven Rostedt (VMware)8d707252017-04-05 13:36:18 -04004431 goto out_unlock;
4432
4433 /* Failed to do the move, need to call the free functions */
4434 for (i = 0; i < size; i++) {
4435 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
4436 if (ftrace_lookup_ip(old_hash, entry->ip))
4437 continue;
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004438 probe_ops->free(probe_ops, tr, entry->ip, probe->data);
Steven Rostedt (VMware)8d707252017-04-05 13:36:18 -04004439 }
4440 }
4441 goto out_unlock;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004442}
4443
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004444int
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004445unregister_ftrace_function_probe_func(char *glob, struct trace_array *tr,
4446 struct ftrace_probe_ops *probe_ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004447{
Steven Rostedt (VMware)82cc4fc2017-04-14 17:45:45 -04004448 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004449 struct ftrace_func_entry *entry;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004450 struct ftrace_func_probe *probe;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004451 struct ftrace_glob func_g;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004452 struct ftrace_hash **orig_hash;
4453 struct ftrace_hash *old_hash;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004454 struct ftrace_hash *hash = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -08004455 struct hlist_node *tmp;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004456 struct hlist_head hhd;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004457 char str[KSYM_SYMBOL_LEN];
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004458 int count = 0;
4459 int i, ret = -ENODEV;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004460 int size;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004461
Naveen N. Raocbab5672017-05-16 23:21:25 +05304462 if (!glob || !strlen(glob) || !strcmp(glob, "*"))
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004463 func_g.search = NULL;
Naveen N. Raocbab5672017-05-16 23:21:25 +05304464 else {
Steven Rostedt59df055f2009-02-14 15:29:06 -05004465 int not;
4466
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004467 func_g.type = filter_parse_regex(glob, strlen(glob),
4468 &func_g.search, &not);
4469 func_g.len = strlen(func_g.search);
4470 func_g.search = glob;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004471
Steven Rostedtb6887d72009-02-17 12:32:04 -05004472 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05004473 if (WARN_ON(not))
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004474 return -EINVAL;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004475 }
4476
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004477 mutex_lock(&ftrace_lock);
4478 /* Check if the probe_ops is already registered */
4479 list_for_each_entry(probe, &tr->func_probes, list) {
4480 if (probe->probe_ops == probe_ops)
4481 break;
4482 }
4483 if (&probe->list == &tr->func_probes)
4484 goto err_unlock_ftrace;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004485
4486 ret = -EINVAL;
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004487 if (!(probe->ops.flags & FTRACE_OPS_FL_INITIALIZED))
4488 goto err_unlock_ftrace;
4489
4490 acquire_probe_locked(probe);
4491
4492 mutex_unlock(&ftrace_lock);
4493
4494 mutex_lock(&probe->ops.func_hash->regex_lock);
4495
4496 orig_hash = &probe->ops.func_hash->filter_hash;
4497 old_hash = *orig_hash;
4498
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004499 if (ftrace_hash_empty(old_hash))
4500 goto out_unlock;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004501
Steven Rostedt (VMware)82cc4fc2017-04-14 17:45:45 -04004502 old_hash_ops.filter_hash = old_hash;
4503 /* Probes only have filters */
4504 old_hash_ops.notrace_hash = NULL;
4505
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004506 ret = -ENOMEM;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004507 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004508 if (!hash)
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004509 goto out_unlock;
4510
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004511 INIT_HLIST_HEAD(&hhd);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004512
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004513 size = 1 << hash->size_bits;
4514 for (i = 0; i < size; i++) {
4515 hlist_for_each_entry_safe(entry, tmp, &hash->buckets[i], hlist) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05004516
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004517 if (func_g.search) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05004518 kallsyms_lookup(entry->ip, NULL, NULL,
4519 NULL, str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004520 if (!ftrace_match(str, &func_g))
Steven Rostedt59df055f2009-02-14 15:29:06 -05004521 continue;
4522 }
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004523 count++;
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004524 remove_hash_entry(hash, entry);
4525 hlist_add_head(&entry->hlist, &hhd);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004526 }
4527 }
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004528
4529 /* Nothing found? */
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004530 if (!count) {
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004531 ret = -EINVAL;
4532 goto out_unlock;
4533 }
4534
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004535 mutex_lock(&ftrace_lock);
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004536
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004537 WARN_ON(probe->ref < count);
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004538
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004539 probe->ref -= count;
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004540
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004541 if (ftrace_hash_empty(hash))
4542 ftrace_shutdown(&probe->ops, 0);
4543
4544 ret = ftrace_hash_move_and_update_ops(&probe->ops, orig_hash,
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004545 hash, 1);
Steven Rostedt (VMware)82cc4fc2017-04-14 17:45:45 -04004546
4547 /* still need to update the function call sites */
Steven Rostedt (VMware)1ec3a812017-04-04 18:16:29 -04004548 if (ftrace_enabled && !ftrace_hash_empty(hash))
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004549 ftrace_run_modify_code(&probe->ops, FTRACE_UPDATE_CALLS,
Steven Rostedt (VMware)82cc4fc2017-04-14 17:45:45 -04004550 &old_hash_ops);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004551 synchronize_sched();
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004552
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004553 hlist_for_each_entry_safe(entry, tmp, &hhd, hlist) {
4554 hlist_del(&entry->hlist);
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004555 if (probe_ops->free)
Steven Rostedt (VMware)6e444312017-04-19 22:39:44 -04004556 probe_ops->free(probe_ops, tr, entry->ip, probe->data);
Steven Rostedt (VMware)eee8ded2017-04-04 21:31:28 -04004557 kfree(entry);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04004558 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004559 mutex_unlock(&ftrace_lock);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004560
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004561 out_unlock:
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004562 mutex_unlock(&probe->ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04004563 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004564
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004565 release_probe(probe);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004566
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004567 return ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004568
Steven Rostedt (VMware)7b60f3d2017-04-18 14:50:39 -04004569 err_unlock_ftrace:
4570 mutex_unlock(&ftrace_lock);
Steven Rostedt (VMware)d3d532d2017-04-04 16:44:43 -04004571 return ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05004572}
4573
Naveen N. Raoa0e63692017-05-16 23:21:26 +05304574void clear_ftrace_function_probes(struct trace_array *tr)
4575{
4576 struct ftrace_func_probe *probe, *n;
4577
4578 list_for_each_entry_safe(probe, n, &tr->func_probes, list)
4579 unregister_ftrace_function_probe_func(NULL, tr, probe->probe_ops);
4580}
4581
Steven Rostedtf6180772009-02-14 00:40:25 -05004582static LIST_HEAD(ftrace_commands);
4583static DEFINE_MUTEX(ftrace_cmd_mutex);
4584
Tom Zanussi38de93a2013-10-24 08:34:18 -05004585/*
4586 * Currently we only register ftrace commands from __init, so mark this
4587 * __init too.
4588 */
4589__init int register_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05004590{
4591 struct ftrace_func_command *p;
4592 int ret = 0;
4593
4594 mutex_lock(&ftrace_cmd_mutex);
4595 list_for_each_entry(p, &ftrace_commands, list) {
4596 if (strcmp(cmd->name, p->name) == 0) {
4597 ret = -EBUSY;
4598 goto out_unlock;
4599 }
4600 }
4601 list_add(&cmd->list, &ftrace_commands);
4602 out_unlock:
4603 mutex_unlock(&ftrace_cmd_mutex);
4604
4605 return ret;
4606}
4607
Tom Zanussi38de93a2013-10-24 08:34:18 -05004608/*
4609 * Currently we only unregister ftrace commands from __init, so mark
4610 * this __init too.
4611 */
4612__init int unregister_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05004613{
4614 struct ftrace_func_command *p, *n;
4615 int ret = -ENODEV;
4616
4617 mutex_lock(&ftrace_cmd_mutex);
4618 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
4619 if (strcmp(cmd->name, p->name) == 0) {
4620 ret = 0;
4621 list_del_init(&p->list);
4622 goto out_unlock;
4623 }
4624 }
4625 out_unlock:
4626 mutex_unlock(&ftrace_cmd_mutex);
4627
4628 return ret;
4629}
4630
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004631static int ftrace_process_regex(struct ftrace_iterator *iter,
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004632 char *buff, int len, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05004633{
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004634 struct ftrace_hash *hash = iter->hash;
Steven Rostedt (VMware)d2afd57a2017-04-20 11:31:35 -04004635 struct trace_array *tr = iter->ops->private;
Steven Rostedtf6180772009-02-14 00:40:25 -05004636 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05004637 struct ftrace_func_command *p;
GuoWen Li0aff1c02011-06-01 19:18:47 +08004638 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004639
4640 func = strsep(&next, ":");
4641
4642 if (!next) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004643 ret = ftrace_match_records(hash, func, len);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004644 if (!ret)
4645 ret = -EINVAL;
4646 if (ret < 0)
4647 return ret;
4648 return 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004649 }
4650
Steven Rostedtf6180772009-02-14 00:40:25 -05004651 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05004652
4653 command = strsep(&next, ":");
4654
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004655 if (WARN_ON_ONCE(!tr))
4656 return -EINVAL;
4657
Steven Rostedtf6180772009-02-14 00:40:25 -05004658 mutex_lock(&ftrace_cmd_mutex);
4659 list_for_each_entry(p, &ftrace_commands, list) {
4660 if (strcmp(p->name, command) == 0) {
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004661 ret = p->func(tr, hash, func, command, next, enable);
Steven Rostedtf6180772009-02-14 00:40:25 -05004662 goto out_unlock;
4663 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05004664 }
Steven Rostedtf6180772009-02-14 00:40:25 -05004665 out_unlock:
4666 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05004667
Steven Rostedtf6180772009-02-14 00:40:25 -05004668 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004669}
4670
Ingo Molnare309b412008-05-12 21:20:51 +02004671static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004672ftrace_regex_write(struct file *file, const char __user *ubuf,
4673 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02004674{
4675 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004676 struct trace_parser *parser;
4677 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02004678
Li Zefan4ba79782009-09-22 13:52:20 +08004679 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02004680 return 0;
4681
Steven Rostedt5072c592008-05-12 21:20:43 +02004682 if (file->f_mode & FMODE_READ) {
4683 struct seq_file *m = file->private_data;
4684 iter = m->private;
4685 } else
4686 iter = file->private_data;
4687
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004688 if (unlikely(ftrace_disabled))
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004689 return -ENODEV;
4690
4691 /* iter->hash is a local copy, so we don't need regex_lock */
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004692
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004693 parser = &iter->parser;
4694 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02004695
Li Zefan4ba79782009-09-22 13:52:20 +08004696 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004697 !trace_parser_cont(parser)) {
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04004698 ret = ftrace_process_regex(iter, parser->buffer,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004699 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08004700 trace_parser_clear(parser);
Steven Rostedt (Red Hat)7c088b52013-05-09 11:35:12 -04004701 if (ret < 0)
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004702 goto out;
Steven Rostedt5072c592008-05-12 21:20:43 +02004703 }
4704
Steven Rostedt5072c592008-05-12 21:20:43 +02004705 ret = read;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004706 out:
Steven Rostedt5072c592008-05-12 21:20:43 +02004707 return ret;
4708}
4709
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004710ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004711ftrace_filter_write(struct file *file, const char __user *ubuf,
4712 size_t cnt, loff_t *ppos)
4713{
4714 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
4715}
4716
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004717ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004718ftrace_notrace_write(struct file *file, const char __user *ubuf,
4719 size_t cnt, loff_t *ppos)
4720{
4721 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
4722}
4723
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004724static int
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004725ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
4726{
4727 struct ftrace_func_entry *entry;
4728
4729 if (!ftrace_location(ip))
4730 return -EINVAL;
4731
4732 if (remove) {
4733 entry = ftrace_lookup_ip(hash, ip);
4734 if (!entry)
4735 return -ENOENT;
4736 free_hash_entry(hash, entry);
4737 return 0;
4738 }
4739
4740 return add_hash_entry(hash, ip);
4741}
4742
4743static int
4744ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
4745 unsigned long ip, int remove, int reset, int enable)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004746{
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004747 struct ftrace_hash **orig_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004748 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004749 int ret;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004750
Steven Rostedt41c52c02008-05-22 11:46:33 -04004751 if (unlikely(ftrace_disabled))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004752 return -ENODEV;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004753
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004754 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004755
Steven Rostedtf45948e2011-05-02 12:29:25 -04004756 if (enable)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004757 orig_hash = &ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004758 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004759 orig_hash = &ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004760
Wang Nanb972cc52014-07-15 08:40:20 +08004761 if (reset)
4762 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4763 else
4764 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
4765
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004766 if (!hash) {
4767 ret = -ENOMEM;
4768 goto out_regex_unlock;
4769 }
Steven Rostedtf45948e2011-05-02 12:29:25 -04004770
Jiri Olsaac483c42012-01-02 10:04:14 +01004771 if (buf && !ftrace_match_records(hash, buf, len)) {
4772 ret = -EINVAL;
4773 goto out_regex_unlock;
4774 }
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004775 if (ip) {
4776 ret = ftrace_match_addr(hash, ip, remove);
4777 if (ret < 0)
4778 goto out_regex_unlock;
4779 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004780
4781 mutex_lock(&ftrace_lock);
Steven Rostedt (VMware)e16b35d2017-04-04 14:46:56 -04004782 ret = ftrace_hash_move_and_update_ops(ops, orig_hash, hash, enable);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004783 mutex_unlock(&ftrace_lock);
4784
Jiri Olsaac483c42012-01-02 10:04:14 +01004785 out_regex_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004786 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004787
4788 free_ftrace_hash(hash);
4789 return ret;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004790}
4791
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004792static int
4793ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove,
4794 int reset, int enable)
4795{
4796 return ftrace_set_hash(ops, 0, 0, ip, remove, reset, enable);
4797}
4798
4799/**
4800 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
4801 * @ops - the ops to set the filter with
4802 * @ip - the address to add to or remove from the filter.
4803 * @remove - non zero to remove the ip from the filter
4804 * @reset - non zero to reset all filters before applying this filter.
4805 *
4806 * Filters denote which functions should be enabled when tracing is enabled
4807 * If @ip is NULL, it failes to update filter.
4808 */
4809int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
4810 int remove, int reset)
4811{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004812 ftrace_ops_init(ops);
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004813 return ftrace_set_addr(ops, ip, remove, reset, 1);
4814}
4815EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
4816
Joel Fernandesd032ae82016-11-15 12:31:20 -08004817/**
4818 * ftrace_ops_set_global_filter - setup ops to use global filters
4819 * @ops - the ops which will use the global filters
4820 *
4821 * ftrace users who need global function trace filtering should call this.
4822 * It can set the global filter only if ops were not initialized before.
4823 */
4824void ftrace_ops_set_global_filter(struct ftrace_ops *ops)
4825{
4826 if (ops->flags & FTRACE_OPS_FL_INITIALIZED)
4827 return;
4828
4829 ftrace_ops_init(ops);
4830 ops->func_hash = &global_ops.local_hash;
4831}
4832EXPORT_SYMBOL_GPL(ftrace_ops_set_global_filter);
4833
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004834static int
4835ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
4836 int reset, int enable)
4837{
4838 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
4839}
4840
Steven Rostedt77a2b372008-05-12 21:20:45 +02004841/**
4842 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004843 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02004844 * @buf - the string that holds the function filter text.
4845 * @len - the length of the string.
4846 * @reset - non zero to reset all filters before applying this filter.
4847 *
4848 * Filters denote which functions should be enabled when tracing is enabled.
4849 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4850 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004851int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004852 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02004853{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004854 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004855 return ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04004856}
Steven Rostedt936e0742011-05-05 22:54:01 -04004857EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004858
Steven Rostedt41c52c02008-05-22 11:46:33 -04004859/**
4860 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004861 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04004862 * @buf - the string that holds the function notrace text.
4863 * @len - the length of the string.
4864 * @reset - non zero to reset all filters before applying this filter.
4865 *
4866 * Notrace Filters denote which functions should not be enabled when tracing
4867 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4868 * for tracing.
4869 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004870int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004871 int len, int reset)
4872{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004873 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004874 return ftrace_set_regex(ops, buf, len, reset, 0);
Steven Rostedt936e0742011-05-05 22:54:01 -04004875}
4876EXPORT_SYMBOL_GPL(ftrace_set_notrace);
4877/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004878 * ftrace_set_global_filter - set a function to filter on with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004879 * @buf - the string that holds the function filter text.
4880 * @len - the length of the string.
4881 * @reset - non zero to reset all filters before applying this filter.
4882 *
4883 * Filters denote which functions should be enabled when tracing is enabled.
4884 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4885 */
4886void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
4887{
4888 ftrace_set_regex(&global_ops, buf, len, reset, 1);
4889}
4890EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
4891
4892/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004893 * ftrace_set_global_notrace - set a function to not trace with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004894 * @buf - the string that holds the function notrace text.
4895 * @len - the length of the string.
4896 * @reset - non zero to reset all filters before applying this filter.
4897 *
4898 * Notrace Filters denote which functions should not be enabled when tracing
4899 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4900 * for tracing.
4901 */
4902void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004903{
Steven Rostedtf45948e2011-05-02 12:29:25 -04004904 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004905}
Steven Rostedt936e0742011-05-05 22:54:01 -04004906EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004907
Steven Rostedt2af15d62009-05-28 13:37:24 -04004908/*
4909 * command line interface to allow users to set filters on boot up.
4910 */
4911#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
4912static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4913static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
4914
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004915/* Used by function selftest to not test if filter is set */
4916bool ftrace_filter_param __initdata;
4917
Steven Rostedt2af15d62009-05-28 13:37:24 -04004918static int __init set_ftrace_notrace(char *str)
4919{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004920 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004921 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004922 return 1;
4923}
4924__setup("ftrace_notrace=", set_ftrace_notrace);
4925
4926static int __init set_ftrace_filter(char *str)
4927{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004928 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004929 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004930 return 1;
4931}
4932__setup("ftrace_filter=", set_ftrace_filter);
4933
Stefan Assmann369bc182009-10-12 22:17:21 +02004934#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08004935static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004936static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004937static int ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer);
Steven Rostedt801c29f2010-03-05 20:02:19 -05004938
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04004939static unsigned long save_global_trampoline;
4940static unsigned long save_global_flags;
4941
Stefan Assmann369bc182009-10-12 22:17:21 +02004942static int __init set_graph_function(char *str)
4943{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02004944 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02004945 return 1;
4946}
4947__setup("ftrace_graph_filter=", set_graph_function);
4948
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004949static int __init set_graph_notrace_function(char *str)
4950{
4951 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
4952 return 1;
4953}
4954__setup("ftrace_graph_notrace=", set_graph_notrace_function);
4955
Todd Brandt65a50c62017-03-02 16:12:15 -08004956static int __init set_graph_max_depth_function(char *str)
4957{
4958 if (!str)
4959 return 0;
4960 fgraph_max_depth = simple_strtoul(str, NULL, 0);
4961 return 1;
4962}
4963__setup("ftrace_graph_max_depth=", set_graph_max_depth_function);
4964
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004965static void __init set_ftrace_early_graph(char *buf, int enable)
Stefan Assmann369bc182009-10-12 22:17:21 +02004966{
4967 int ret;
4968 char *func;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004969 struct ftrace_hash *hash;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004970
Steven Rostedt (VMware)92ad18e2017-03-02 12:53:26 -05004971 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4972 if (WARN_ON(!hash))
4973 return;
Stefan Assmann369bc182009-10-12 22:17:21 +02004974
4975 while (buf) {
4976 func = strsep(&buf, ",");
4977 /* we allow only one expression at a time */
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004978 ret = ftrace_graph_set_hash(hash, func);
Stefan Assmann369bc182009-10-12 22:17:21 +02004979 if (ret)
4980 printk(KERN_DEBUG "ftrace: function %s not "
4981 "traceable\n", func);
4982 }
Steven Rostedt (VMware)92ad18e2017-03-02 12:53:26 -05004983
4984 if (enable)
4985 ftrace_graph_hash = hash;
4986 else
4987 ftrace_graph_notrace_hash = hash;
Stefan Assmann369bc182009-10-12 22:17:21 +02004988}
4989#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4990
Steven Rostedt2a85a372011-12-19 21:57:44 -05004991void __init
4992ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04004993{
4994 char *func;
4995
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004996 ftrace_ops_init(ops);
4997
Steven Rostedt2af15d62009-05-28 13:37:24 -04004998 while (buf) {
4999 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04005000 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04005001 }
5002}
5003
5004static void __init set_ftrace_early_filters(void)
5005{
5006 if (ftrace_filter_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05005007 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04005008 if (ftrace_notrace_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05005009 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02005010#ifdef CONFIG_FUNCTION_GRAPH_TRACER
5011 if (ftrace_graph_buf[0])
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09005012 set_ftrace_early_graph(ftrace_graph_buf, 1);
5013 if (ftrace_graph_notrace_buf[0])
5014 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02005015#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04005016}
5017
Steven Rostedtfc13cb02011-12-19 14:41:25 -05005018int ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02005019{
5020 struct seq_file *m = (struct seq_file *)file->private_data;
5021 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04005022 struct ftrace_hash **orig_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005023 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04005024 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04005025 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02005026
Steven Rostedt5072c592008-05-12 21:20:43 +02005027 if (file->f_mode & FMODE_READ) {
5028 iter = m->private;
Steven Rostedt5072c592008-05-12 21:20:43 +02005029 seq_release(inode, file);
5030 } else
5031 iter = file->private_data;
5032
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005033 parser = &iter->parser;
5034 if (trace_parser_loaded(parser)) {
5035 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04005036 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02005037 }
5038
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005039 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005040
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04005041 mutex_lock(&iter->ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09005042
Steven Rostedt058e2972011-04-29 22:35:33 -04005043 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04005044 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
5045
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04005046 if (filter_hash) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04005047 orig_hash = &iter->ops->func_hash->filter_hash;
Steven Rostedt (VMware)8c08f0d2017-06-26 11:47:31 -04005048 if (!list_empty(&iter->tr->mod_trace))
5049 iter->hash->flags |= FTRACE_HASH_FL_MOD;
5050 } else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04005051 orig_hash = &iter->ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04005052
Steven Rostedt058e2972011-04-29 22:35:33 -04005053 mutex_lock(&ftrace_lock);
Steven Rostedt (VMware)e16b35d2017-04-04 14:46:56 -04005054 ret = ftrace_hash_move_and_update_ops(iter->ops, orig_hash,
5055 iter->hash, filter_hash);
Steven Rostedt058e2972011-04-29 22:35:33 -04005056 mutex_unlock(&ftrace_lock);
Steven Rostedt (VMware)c20489d2017-03-29 14:55:49 -04005057 } else {
5058 /* For read only, the hash is the ops hash */
5059 iter->hash = NULL;
Steven Rostedt058e2972011-04-29 22:35:33 -04005060 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09005061
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04005062 mutex_unlock(&iter->ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04005063 free_ftrace_hash(iter->hash);
5064 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04005065
Steven Rostedt5072c592008-05-12 21:20:43 +02005066 return 0;
5067}
5068
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005069static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02005070 .open = ftrace_avail_open,
5071 .read = seq_read,
5072 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08005073 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02005074};
5075
Steven Rostedt647bcd02011-05-03 14:39:21 -04005076static const struct file_operations ftrace_enabled_fops = {
5077 .open = ftrace_enabled_open,
5078 .read = seq_read,
5079 .llseek = seq_lseek,
5080 .release = seq_release_private,
5081};
5082
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005083static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02005084 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08005085 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02005086 .write = ftrace_filter_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005087 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04005088 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02005089};
5090
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005091static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04005092 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08005093 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04005094 .write = ftrace_notrace_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005095 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04005096 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04005097};
5098
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005099#ifdef CONFIG_FUNCTION_GRAPH_TRACER
5100
5101static DEFINE_MUTEX(graph_lock);
5102
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005103struct ftrace_hash *ftrace_graph_hash = EMPTY_HASH;
5104struct ftrace_hash *ftrace_graph_notrace_hash = EMPTY_HASH;
5105
5106enum graph_filter_type {
5107 GRAPH_FILTER_NOTRACE = 0,
5108 GRAPH_FILTER_FUNCTION,
5109};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005110
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05005111#define FTRACE_GRAPH_EMPTY ((void *)1)
5112
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005113struct ftrace_graph_data {
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005114 struct ftrace_hash *hash;
5115 struct ftrace_func_entry *entry;
5116 int idx; /* for hash table iteration */
5117 enum graph_filter_type type;
5118 struct ftrace_hash *new_hash;
5119 const struct seq_operations *seq_ops;
5120 struct trace_parser parser;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005121};
5122
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005123static void *
Li Zefan85951842009-06-24 09:54:00 +08005124__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005125{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005126 struct ftrace_graph_data *fgd = m->private;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005127 struct ftrace_func_entry *entry = fgd->entry;
5128 struct hlist_head *head;
5129 int i, idx = fgd->idx;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005130
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005131 if (*pos >= fgd->hash->count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005132 return NULL;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005133
5134 if (entry) {
5135 hlist_for_each_entry_continue(entry, hlist) {
5136 fgd->entry = entry;
5137 return entry;
5138 }
5139
5140 idx++;
5141 }
5142
5143 for (i = idx; i < 1 << fgd->hash->size_bits; i++) {
5144 head = &fgd->hash->buckets[i];
5145 hlist_for_each_entry(entry, head, hlist) {
5146 fgd->entry = entry;
5147 fgd->idx = i;
5148 return entry;
5149 }
5150 }
5151 return NULL;
Li Zefan85951842009-06-24 09:54:00 +08005152}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005153
Li Zefan85951842009-06-24 09:54:00 +08005154static void *
5155g_next(struct seq_file *m, void *v, loff_t *pos)
5156{
5157 (*pos)++;
5158 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005159}
5160
5161static void *g_start(struct seq_file *m, loff_t *pos)
5162{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005163 struct ftrace_graph_data *fgd = m->private;
5164
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005165 mutex_lock(&graph_lock);
5166
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05005167 if (fgd->type == GRAPH_FILTER_FUNCTION)
5168 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
5169 lockdep_is_held(&graph_lock));
5170 else
5171 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
5172 lockdep_is_held(&graph_lock));
5173
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005174 /* Nothing, tell g_show to print all functions are enabled */
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005175 if (ftrace_hash_empty(fgd->hash) && !*pos)
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05005176 return FTRACE_GRAPH_EMPTY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005177
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005178 fgd->idx = 0;
5179 fgd->entry = NULL;
Li Zefan85951842009-06-24 09:54:00 +08005180 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005181}
5182
5183static void g_stop(struct seq_file *m, void *p)
5184{
5185 mutex_unlock(&graph_lock);
5186}
5187
5188static int g_show(struct seq_file *m, void *v)
5189{
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005190 struct ftrace_func_entry *entry = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005191
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005192 if (!entry)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005193 return 0;
5194
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05005195 if (entry == FTRACE_GRAPH_EMPTY) {
Namhyung Kim280d1422014-06-13 01:23:51 +09005196 struct ftrace_graph_data *fgd = m->private;
5197
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005198 if (fgd->type == GRAPH_FILTER_FUNCTION)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005199 seq_puts(m, "#### all functions enabled ####\n");
Namhyung Kim280d1422014-06-13 01:23:51 +09005200 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005201 seq_puts(m, "#### no functions disabled ####\n");
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005202 return 0;
5203 }
5204
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005205 seq_printf(m, "%ps\n", (void *)entry->ip);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005206
5207 return 0;
5208}
5209
James Morris88e9d342009-09-22 16:43:43 -07005210static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005211 .start = g_start,
5212 .next = g_next,
5213 .stop = g_stop,
5214 .show = g_show,
5215};
5216
5217static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005218__ftrace_graph_open(struct inode *inode, struct file *file,
5219 struct ftrace_graph_data *fgd)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005220{
5221 int ret = 0;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005222 struct ftrace_hash *new_hash = NULL;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005223
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005224 if (file->f_mode & FMODE_WRITE) {
5225 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
5226
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005227 if (trace_parser_get_init(&fgd->parser, FTRACE_BUFF_MAX))
5228 return -ENOMEM;
5229
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005230 if (file->f_flags & O_TRUNC)
5231 new_hash = alloc_ftrace_hash(size_bits);
5232 else
5233 new_hash = alloc_and_copy_ftrace_hash(size_bits,
5234 fgd->hash);
5235 if (!new_hash) {
5236 ret = -ENOMEM;
5237 goto out;
5238 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005239 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005240
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005241 if (file->f_mode & FMODE_READ) {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005242 ret = seq_open(file, &ftrace_graph_seq_ops);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005243 if (!ret) {
5244 struct seq_file *m = file->private_data;
5245 m->private = fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005246 } else {
5247 /* Failed */
5248 free_ftrace_hash(new_hash);
5249 new_hash = NULL;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005250 }
5251 } else
5252 file->private_data = fgd;
Li Zefana4ec5e02009-09-18 14:06:28 +08005253
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005254out:
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005255 if (ret < 0 && file->f_mode & FMODE_WRITE)
5256 trace_parser_put(&fgd->parser);
5257
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005258 fgd->new_hash = new_hash;
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05005259
5260 /*
5261 * All uses of fgd->hash must be taken with the graph_lock
5262 * held. The graph_lock is going to be released, so force
5263 * fgd->hash to be reinitialized when it is taken again.
5264 */
5265 fgd->hash = NULL;
5266
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005267 return ret;
5268}
5269
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005270static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005271ftrace_graph_open(struct inode *inode, struct file *file)
5272{
5273 struct ftrace_graph_data *fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005274 int ret;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005275
5276 if (unlikely(ftrace_disabled))
5277 return -ENODEV;
5278
5279 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
5280 if (fgd == NULL)
5281 return -ENOMEM;
5282
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005283 mutex_lock(&graph_lock);
5284
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05005285 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
5286 lockdep_is_held(&graph_lock));
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005287 fgd->type = GRAPH_FILTER_FUNCTION;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005288 fgd->seq_ops = &ftrace_graph_seq_ops;
5289
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005290 ret = __ftrace_graph_open(inode, file, fgd);
5291 if (ret < 0)
5292 kfree(fgd);
5293
5294 mutex_unlock(&graph_lock);
5295 return ret;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005296}
5297
5298static int
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005299ftrace_graph_notrace_open(struct inode *inode, struct file *file)
5300{
5301 struct ftrace_graph_data *fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005302 int ret;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005303
5304 if (unlikely(ftrace_disabled))
5305 return -ENODEV;
5306
5307 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
5308 if (fgd == NULL)
5309 return -ENOMEM;
5310
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005311 mutex_lock(&graph_lock);
5312
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05005313 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
5314 lockdep_is_held(&graph_lock));
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005315 fgd->type = GRAPH_FILTER_NOTRACE;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005316 fgd->seq_ops = &ftrace_graph_seq_ops;
5317
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005318 ret = __ftrace_graph_open(inode, file, fgd);
5319 if (ret < 0)
5320 kfree(fgd);
5321
5322 mutex_unlock(&graph_lock);
5323 return ret;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005324}
5325
5326static int
Li Zefan87827112009-07-23 11:29:11 +08005327ftrace_graph_release(struct inode *inode, struct file *file)
5328{
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005329 struct ftrace_graph_data *fgd;
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005330 struct ftrace_hash *old_hash, *new_hash;
5331 struct trace_parser *parser;
5332 int ret = 0;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005333
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005334 if (file->f_mode & FMODE_READ) {
5335 struct seq_file *m = file->private_data;
5336
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005337 fgd = m->private;
Li Zefan87827112009-07-23 11:29:11 +08005338 seq_release(inode, file);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005339 } else {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005340 fgd = file->private_data;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005341 }
5342
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005343
5344 if (file->f_mode & FMODE_WRITE) {
5345
5346 parser = &fgd->parser;
5347
5348 if (trace_parser_loaded((parser))) {
5349 parser->buffer[parser->idx] = 0;
5350 ret = ftrace_graph_set_hash(fgd->new_hash,
5351 parser->buffer);
5352 }
5353
5354 trace_parser_put(parser);
5355
5356 new_hash = __ftrace_hash_move(fgd->new_hash);
5357 if (!new_hash) {
5358 ret = -ENOMEM;
5359 goto out;
5360 }
5361
5362 mutex_lock(&graph_lock);
5363
5364 if (fgd->type == GRAPH_FILTER_FUNCTION) {
5365 old_hash = rcu_dereference_protected(ftrace_graph_hash,
5366 lockdep_is_held(&graph_lock));
5367 rcu_assign_pointer(ftrace_graph_hash, new_hash);
5368 } else {
5369 old_hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
5370 lockdep_is_held(&graph_lock));
5371 rcu_assign_pointer(ftrace_graph_notrace_hash, new_hash);
5372 }
5373
5374 mutex_unlock(&graph_lock);
5375
5376 /* Wait till all users are no longer using the old hash */
5377 synchronize_sched();
5378
5379 free_ftrace_hash(old_hash);
5380 }
5381
5382 out:
Luis Henriquesf9797c22017-05-25 16:20:38 +01005383 free_ftrace_hash(fgd->new_hash);
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005384 kfree(fgd);
5385
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005386 return ret;
Li Zefan87827112009-07-23 11:29:11 +08005387}
5388
5389static int
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005390ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005391{
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005392 struct ftrace_glob func_g;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005393 struct dyn_ftrace *rec;
5394 struct ftrace_page *pg;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005395 struct ftrace_func_entry *entry;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005396 int fail = 1;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005397 int not;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005398
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005399 /* decode regex */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005400 func_g.type = filter_parse_regex(buffer, strlen(buffer),
5401 &func_g.search, &not);
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005402
Dmitry Safonov3ba00922015-09-29 19:46:14 +03005403 func_g.len = strlen(func_g.search);
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01005404
Steven Rostedt52baf112009-02-14 01:15:39 -05005405 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04005406
5407 if (unlikely(ftrace_disabled)) {
5408 mutex_unlock(&ftrace_lock);
5409 return -ENODEV;
5410 }
5411
Steven Rostedt265c8312009-02-13 12:43:56 -05005412 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005413
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05005414 if (rec->flags & FTRACE_FL_DISABLED)
5415 continue;
5416
Dmitry Safonov0b507e12015-09-29 19:46:15 +03005417 if (ftrace_match_record(rec, &func_g, NULL, 0)) {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005418 entry = ftrace_lookup_ip(hash, rec->ip);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005419
5420 if (!not) {
5421 fail = 0;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005422
5423 if (entry)
5424 continue;
5425 if (add_hash_entry(hash, rec->ip) < 0)
5426 goto out;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005427 } else {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005428 if (entry) {
5429 free_hash_entry(hash, entry);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005430 fail = 0;
5431 }
5432 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005433 }
Steven Rostedt265c8312009-02-13 12:43:56 -05005434 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005435out:
Steven Rostedt52baf112009-02-14 01:15:39 -05005436 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005437
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005438 if (fail)
5439 return -EINVAL;
5440
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005441 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005442}
5443
5444static ssize_t
5445ftrace_graph_write(struct file *file, const char __user *ubuf,
5446 size_t cnt, loff_t *ppos)
5447{
Namhyung Kim6a101082013-10-14 17:24:25 +09005448 ssize_t read, ret = 0;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09005449 struct ftrace_graph_data *fgd = file->private_data;
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005450 struct trace_parser *parser;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005451
Li Zefanc7c6b1f2010-02-10 15:43:04 +08005452 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005453 return 0;
5454
Steven Rostedt (VMware)ae98d272017-02-02 16:59:06 -05005455 /* Read mode uses seq functions */
5456 if (file->f_mode & FMODE_READ) {
5457 struct seq_file *m = file->private_data;
5458 fgd = m->private;
5459 }
5460
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005461 parser = &fgd->parser;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005462
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005463 read = trace_get_user(parser, ubuf, cnt, ppos);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02005464
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005465 if (read >= 0 && trace_parser_loaded(parser) &&
5466 !trace_parser_cont(parser)) {
Namhyung Kim6a101082013-10-14 17:24:25 +09005467
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09005468 ret = ftrace_graph_set_hash(fgd->new_hash,
Steven Rostedt (VMware)e704eff2017-02-02 20:34:37 -05005469 parser->buffer);
5470 trace_parser_clear(parser);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005471 }
5472
Namhyung Kim6a101082013-10-14 17:24:25 +09005473 if (!ret)
5474 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08005475
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005476 return ret;
5477}
5478
5479static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08005480 .open = ftrace_graph_open,
5481 .read = seq_read,
5482 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005483 .llseek = tracing_lseek,
Li Zefan87827112009-07-23 11:29:11 +08005484 .release = ftrace_graph_release,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005485};
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005486
5487static const struct file_operations ftrace_graph_notrace_fops = {
5488 .open = ftrace_graph_notrace_open,
5489 .read = seq_read,
5490 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005491 .llseek = tracing_lseek,
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005492 .release = ftrace_graph_release,
5493};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005494#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
5495
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05005496void ftrace_create_filter_files(struct ftrace_ops *ops,
5497 struct dentry *parent)
5498{
5499
5500 trace_create_file("set_ftrace_filter", 0644, parent,
5501 ops, &ftrace_filter_fops);
5502
5503 trace_create_file("set_ftrace_notrace", 0644, parent,
5504 ops, &ftrace_notrace_fops);
5505}
5506
5507/*
5508 * The name "destroy_filter_files" is really a misnomer. Although
5509 * in the future, it may actualy delete the files, but this is
5510 * really intended to make sure the ops passed in are disabled
5511 * and that when this function returns, the caller is free to
5512 * free the ops.
5513 *
5514 * The "destroy" name is only to match the "create" name that this
5515 * should be paired with.
5516 */
5517void ftrace_destroy_filter_files(struct ftrace_ops *ops)
5518{
5519 mutex_lock(&ftrace_lock);
5520 if (ops->flags & FTRACE_OPS_FL_ENABLED)
5521 ftrace_shutdown(ops, 0);
5522 ops->flags |= FTRACE_OPS_FL_DELETED;
5523 mutex_unlock(&ftrace_lock);
5524}
5525
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005526static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02005527{
Steven Rostedt5072c592008-05-12 21:20:43 +02005528
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005529 trace_create_file("available_filter_functions", 0444,
5530 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02005531
Steven Rostedt647bcd02011-05-03 14:39:21 -04005532 trace_create_file("enabled_functions", 0444,
5533 d_tracer, NULL, &ftrace_enabled_fops);
5534
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05005535 ftrace_create_filter_files(&global_ops, d_tracer);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04005536
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005537#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005538 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005539 NULL,
5540 &ftrace_graph_fops);
Namhyung Kim29ad23b2013-10-14 17:24:26 +09005541 trace_create_file("set_graph_notrace", 0444, d_tracer,
5542 NULL,
5543 &ftrace_graph_notrace_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05005544#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
5545
Steven Rostedt5072c592008-05-12 21:20:43 +02005546 return 0;
5547}
5548
Steven Rostedt9fd49322012-04-24 22:32:06 -04005549static int ftrace_cmp_ips(const void *a, const void *b)
Steven Rostedt68950612011-12-16 17:06:45 -05005550{
Steven Rostedt9fd49322012-04-24 22:32:06 -04005551 const unsigned long *ipa = a;
5552 const unsigned long *ipb = b;
Steven Rostedt68950612011-12-16 17:06:45 -05005553
Steven Rostedt9fd49322012-04-24 22:32:06 -04005554 if (*ipa > *ipb)
5555 return 1;
5556 if (*ipa < *ipb)
5557 return -1;
5558 return 0;
5559}
5560
Jiri Olsa5cb084b2009-10-13 16:33:53 -04005561static int ftrace_process_locs(struct module *mod,
Steven Rostedt31e88902008-11-14 16:21:19 -08005562 unsigned long *start,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005563 unsigned long *end)
5564{
Steven Rostedt706c81f2012-04-24 23:45:26 -04005565 struct ftrace_page *start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05005566 struct ftrace_page *pg;
Steven Rostedt706c81f2012-04-24 23:45:26 -04005567 struct dyn_ftrace *rec;
Steven Rostedta7900872011-12-16 16:23:44 -05005568 unsigned long count;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005569 unsigned long *p;
5570 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04005571 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedta7900872011-12-16 16:23:44 -05005572 int ret = -ENOMEM;
5573
5574 count = end - start;
5575
5576 if (!count)
5577 return 0;
5578
Steven Rostedt9fd49322012-04-24 22:32:06 -04005579 sort(start, count, sizeof(*start),
Rasmus Villemoes6db02902015-09-09 23:27:02 +02005580 ftrace_cmp_ips, NULL);
Steven Rostedt9fd49322012-04-24 22:32:06 -04005581
Steven Rostedt706c81f2012-04-24 23:45:26 -04005582 start_pg = ftrace_allocate_pages(count);
5583 if (!start_pg)
Steven Rostedta7900872011-12-16 16:23:44 -05005584 return -ENOMEM;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005585
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005586 mutex_lock(&ftrace_lock);
Steven Rostedta7900872011-12-16 16:23:44 -05005587
Steven Rostedt320823092011-12-16 14:42:37 -05005588 /*
5589 * Core and each module needs their own pages, as
5590 * modules will free them when they are removed.
5591 * Force a new page to be allocated for modules.
5592 */
Steven Rostedta7900872011-12-16 16:23:44 -05005593 if (!mod) {
5594 WARN_ON(ftrace_pages || ftrace_pages_start);
5595 /* First initialization */
Steven Rostedt706c81f2012-04-24 23:45:26 -04005596 ftrace_pages = ftrace_pages_start = start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05005597 } else {
Steven Rostedt320823092011-12-16 14:42:37 -05005598 if (!ftrace_pages)
Steven Rostedta7900872011-12-16 16:23:44 -05005599 goto out;
Steven Rostedt320823092011-12-16 14:42:37 -05005600
Steven Rostedta7900872011-12-16 16:23:44 -05005601 if (WARN_ON(ftrace_pages->next)) {
5602 /* Hmm, we have free pages? */
5603 while (ftrace_pages->next)
5604 ftrace_pages = ftrace_pages->next;
Steven Rostedt320823092011-12-16 14:42:37 -05005605 }
Steven Rostedta7900872011-12-16 16:23:44 -05005606
Steven Rostedt706c81f2012-04-24 23:45:26 -04005607 ftrace_pages->next = start_pg;
Steven Rostedt320823092011-12-16 14:42:37 -05005608 }
5609
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005610 p = start;
Steven Rostedt706c81f2012-04-24 23:45:26 -04005611 pg = start_pg;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005612 while (p < end) {
5613 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08005614 /*
5615 * Some architecture linkers will pad between
5616 * the different mcount_loc sections of different
5617 * object files to satisfy alignments.
5618 * Skip any NULL pointers.
5619 */
5620 if (!addr)
5621 continue;
Steven Rostedt706c81f2012-04-24 23:45:26 -04005622
5623 if (pg->index == pg->size) {
5624 /* We should have allocated enough */
5625 if (WARN_ON(!pg->next))
5626 break;
5627 pg = pg->next;
5628 }
5629
5630 rec = &pg->records[pg->index++];
5631 rec->ip = addr;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005632 }
5633
Steven Rostedt706c81f2012-04-24 23:45:26 -04005634 /* We should have used all pages */
5635 WARN_ON(pg->next);
5636
5637 /* Assign the last page to ftrace_pages */
5638 ftrace_pages = pg;
5639
Steven Rostedta4f18ed2011-06-07 09:26:46 -04005640 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04005641 * We only need to disable interrupts on start up
5642 * because we are modifying code that an interrupt
5643 * may execute, and the modification is not atomic.
5644 * But for modules, nothing runs the code we modify
5645 * until we are finished with it, and there's no
5646 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04005647 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04005648 if (!mod)
5649 local_irq_save(flags);
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01005650 ftrace_update_code(mod, start_pg);
Steven Rostedt4376cac2011-06-24 23:28:13 -04005651 if (!mod)
5652 local_irq_restore(flags);
Steven Rostedta7900872011-12-16 16:23:44 -05005653 ret = 0;
5654 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005655 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005656
Steven Rostedta7900872011-12-16 16:23:44 -05005657 return ret;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005658}
5659
Steven Rostedt93eb6772009-04-15 13:24:06 -04005660#ifdef CONFIG_MODULES
Steven Rostedt320823092011-12-16 14:42:37 -05005661
5662#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
5663
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005664static int referenced_filters(struct dyn_ftrace *rec)
5665{
5666 struct ftrace_ops *ops;
5667 int cnt = 0;
5668
5669 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
5670 if (ops_references_rec(ops, rec))
5671 cnt++;
5672 }
5673
5674 return cnt;
5675}
5676
jolsa@redhat.come7247a12009-10-07 19:00:35 +02005677void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005678{
5679 struct dyn_ftrace *rec;
Steven Rostedt320823092011-12-16 14:42:37 -05005680 struct ftrace_page **last_pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04005681 struct ftrace_page *pg;
Steven Rostedta7900872011-12-16 16:23:44 -05005682 int order;
Steven Rostedt93eb6772009-04-15 13:24:06 -04005683
Steven Rostedt93eb6772009-04-15 13:24:06 -04005684 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04005685
5686 if (ftrace_disabled)
5687 goto out_unlock;
5688
Steven Rostedt320823092011-12-16 14:42:37 -05005689 /*
5690 * Each module has its own ftrace_pages, remove
5691 * them from the list.
5692 */
5693 last_pg = &ftrace_pages_start;
5694 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
5695 rec = &pg->records[0];
jolsa@redhat.come7247a12009-10-07 19:00:35 +02005696 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04005697 /*
Steven Rostedt320823092011-12-16 14:42:37 -05005698 * As core pages are first, the first
5699 * page should never be a module page.
Steven Rostedt93eb6772009-04-15 13:24:06 -04005700 */
Steven Rostedt320823092011-12-16 14:42:37 -05005701 if (WARN_ON(pg == ftrace_pages_start))
5702 goto out_unlock;
5703
5704 /* Check if we are deleting the last page */
5705 if (pg == ftrace_pages)
5706 ftrace_pages = next_to_ftrace_page(last_pg);
5707
Steven Rostedt (VMware)83dd1492017-06-27 11:04:40 -04005708 ftrace_update_tot_cnt -= pg->index;
Steven Rostedt320823092011-12-16 14:42:37 -05005709 *last_pg = pg->next;
Steven Rostedta7900872011-12-16 16:23:44 -05005710 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
5711 free_pages((unsigned long)pg->records, order);
5712 kfree(pg);
Steven Rostedt320823092011-12-16 14:42:37 -05005713 } else
5714 last_pg = &pg->next;
5715 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04005716 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04005717 mutex_unlock(&ftrace_lock);
5718}
5719
Jessica Yu7dcd1822016-02-16 17:32:33 -05005720void ftrace_module_enable(struct module *mod)
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005721{
5722 struct dyn_ftrace *rec;
5723 struct ftrace_page *pg;
5724
5725 mutex_lock(&ftrace_lock);
5726
5727 if (ftrace_disabled)
5728 goto out_unlock;
5729
5730 /*
5731 * If the tracing is enabled, go ahead and enable the record.
5732 *
5733 * The reason not to enable the record immediatelly is the
5734 * inherent check of ftrace_make_nop/ftrace_make_call for
5735 * correct previous instructions. Making first the NOP
5736 * conversion puts the module to the correct state, thus
5737 * passing the ftrace_make_call check.
5738 *
5739 * We also delay this to after the module code already set the
5740 * text to read-only, as we now need to set it back to read-write
5741 * so that we can modify the text.
5742 */
5743 if (ftrace_start_up)
5744 ftrace_arch_code_modify_prepare();
5745
5746 do_for_each_ftrace_rec(pg, rec) {
5747 int cnt;
5748 /*
5749 * do_for_each_ftrace_rec() is a double loop.
5750 * module text shares the pg. If a record is
5751 * not part of this module, then skip this pg,
5752 * which the "break" will do.
5753 */
5754 if (!within_module_core(rec->ip, mod))
5755 break;
5756
5757 cnt = 0;
5758
5759 /*
5760 * When adding a module, we need to check if tracers are
5761 * currently enabled and if they are, and can trace this record,
5762 * we need to enable the module functions as well as update the
5763 * reference counts for those function records.
5764 */
5765 if (ftrace_start_up)
5766 cnt += referenced_filters(rec);
5767
5768 /* This clears FTRACE_FL_DISABLED */
5769 rec->flags = cnt;
5770
5771 if (ftrace_start_up && cnt) {
5772 int failed = __ftrace_replace_code(rec, 1);
5773 if (failed) {
5774 ftrace_bug(failed, rec);
5775 goto out_loop;
5776 }
5777 }
5778
5779 } while_for_each_ftrace_rec();
5780
5781 out_loop:
5782 if (ftrace_start_up)
5783 ftrace_arch_code_modify_post_process();
5784
5785 out_unlock:
5786 mutex_unlock(&ftrace_lock);
Steven Rostedt (VMware)d7fbf8d2017-06-26 10:57:21 -04005787
5788 process_cached_mods(mod->name);
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005789}
5790
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04005791void ftrace_module_init(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005792{
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005793 if (ftrace_disabled || !mod->num_ftrace_callsites)
Abel Vesab6b71f62015-12-02 15:39:57 +01005794 return;
5795
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005796 ftrace_process_locs(mod, mod->ftrace_callsites,
5797 mod->ftrace_callsites + mod->num_ftrace_callsites);
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05005798}
Steven Rostedt93eb6772009-04-15 13:24:06 -04005799#endif /* CONFIG_MODULES */
5800
Steven Rostedt (VMware)b80f0f62017-04-03 12:57:35 -04005801void __init ftrace_free_init_mem(void)
Steven Rostedt (VMware)42c269c2017-03-03 16:15:39 -05005802{
Steven Rostedt (VMware)b80f0f62017-04-03 12:57:35 -04005803 unsigned long start = (unsigned long)(&__init_begin);
5804 unsigned long end = (unsigned long)(&__init_end);
Steven Rostedt (VMware)42c269c2017-03-03 16:15:39 -05005805 struct ftrace_page **last_pg = &ftrace_pages_start;
5806 struct ftrace_page *pg;
5807 struct dyn_ftrace *rec;
5808 struct dyn_ftrace key;
5809 int order;
5810
5811 key.ip = start;
5812 key.flags = end; /* overload flags, as it is unsigned long */
5813
5814 mutex_lock(&ftrace_lock);
5815
5816 for (pg = ftrace_pages_start; pg; last_pg = &pg->next, pg = *last_pg) {
5817 if (end < pg->records[0].ip ||
5818 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
5819 continue;
5820 again:
5821 rec = bsearch(&key, pg->records, pg->index,
5822 sizeof(struct dyn_ftrace),
5823 ftrace_cmp_recs);
5824 if (!rec)
5825 continue;
5826 pg->index--;
5827 if (!pg->index) {
5828 *last_pg = pg->next;
5829 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
5830 free_pages((unsigned long)pg->records, order);
5831 kfree(pg);
5832 pg = container_of(last_pg, struct ftrace_page, next);
5833 if (!(*last_pg))
5834 ftrace_pages = pg;
5835 continue;
5836 }
5837 memmove(rec, rec + 1,
5838 (pg->index - (rec - pg->records)) * sizeof(*rec));
5839 /* More than one function may be in this block */
5840 goto again;
5841 }
5842 mutex_unlock(&ftrace_lock);
5843}
5844
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005845void __init ftrace_init(void)
5846{
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01005847 extern unsigned long __start_mcount_loc[];
5848 extern unsigned long __stop_mcount_loc[];
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005849 unsigned long count, flags;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005850 int ret;
5851
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005852 local_irq_save(flags);
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005853 ret = ftrace_dyn_arch_init();
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005854 local_irq_restore(flags);
Jiri Slabyaf64a7c2014-02-24 19:59:58 +01005855 if (ret)
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005856 goto failed;
5857
5858 count = __stop_mcount_loc - __start_mcount_loc;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005859 if (!count) {
5860 pr_info("ftrace: No functions to be traced?\n");
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005861 goto failed;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005862 }
5863
5864 pr_info("ftrace: allocating %ld entries in %ld pages\n",
5865 count, count / ENTRIES_PER_PAGE + 1);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005866
5867 last_ftrace_enabled = ftrace_enabled = 1;
5868
Jiri Olsa5cb084b2009-10-13 16:33:53 -04005869 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08005870 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005871 __stop_mcount_loc);
5872
Steven Rostedt2af15d62009-05-28 13:37:24 -04005873 set_ftrace_early_filters();
5874
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005875 return;
5876 failed:
5877 ftrace_disabled = 1;
5878}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005879
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005880/* Do nothing if arch does not support this */
5881void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
5882{
5883}
5884
5885static void ftrace_update_trampoline(struct ftrace_ops *ops)
5886{
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005887 arch_ftrace_update_trampoline(ops);
5888}
5889
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04005890void ftrace_init_trace_array(struct trace_array *tr)
5891{
5892 INIT_LIST_HEAD(&tr->func_probes);
Steven Rostedt (VMware)673feb92017-06-23 15:26:26 -04005893 INIT_LIST_HEAD(&tr->mod_trace);
5894 INIT_LIST_HEAD(&tr->mod_notrace);
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04005895}
Steven Rostedt3d083392008-05-12 21:20:42 +02005896#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005897
Steven Rostedt2b499382011-05-03 22:49:52 -04005898static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04005899 .func = ftrace_stub,
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005900 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5901 FTRACE_OPS_FL_INITIALIZED |
5902 FTRACE_OPS_FL_PID,
Steven Rostedtbd69c302011-05-03 21:55:54 -04005903};
5904
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005905static int __init ftrace_nodyn_init(void)
5906{
5907 ftrace_enabled = 1;
5908 return 0;
5909}
Steven Rostedt6f415672012-10-05 12:13:07 -04005910core_initcall(ftrace_nodyn_init);
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005911
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005912static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005913static inline void ftrace_startup_enable(int command) { }
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005914static inline void ftrace_startup_all(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05005915/* Keep as macros so we do not need to define the commands */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005916# define ftrace_startup(ops, command) \
5917 ({ \
5918 int ___ret = __register_ftrace_function(ops); \
5919 if (!___ret) \
5920 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
5921 ___ret; \
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04005922 })
Steven Rostedt (Red Hat)1fcc1552014-02-19 15:12:18 -05005923# define ftrace_shutdown(ops, command) \
5924 ({ \
5925 int ___ret = __unregister_ftrace_function(ops); \
5926 if (!___ret) \
5927 (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \
5928 ___ret; \
5929 })
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005930
Ingo Molnarc7aafc52008-05-12 21:20:45 +02005931# define ftrace_startup_sysctl() do { } while (0)
5932# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04005933
5934static inline int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04005935ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005936{
5937 return 1;
5938}
5939
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005940static void ftrace_update_trampoline(struct ftrace_ops *ops)
5941{
5942}
5943
Steven Rostedt3d083392008-05-12 21:20:42 +02005944#endif /* CONFIG_DYNAMIC_FTRACE */
5945
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005946__init void ftrace_init_global_array_ops(struct trace_array *tr)
5947{
5948 tr->ops = &global_ops;
5949 tr->ops->private = tr;
Steven Rostedt (VMware)04ec7bb2017-04-05 13:12:55 -04005950 ftrace_init_trace_array(tr);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005951}
5952
5953void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
5954{
5955 /* If we filter on pids, update to use the pid function */
5956 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
5957 if (WARN_ON(tr->ops->func != ftrace_stub))
5958 printk("ftrace ops had %pS for function\n",
5959 tr->ops->func);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005960 }
5961 tr->ops->func = func;
5962 tr->ops->private = tr;
5963}
5964
5965void ftrace_reset_array_ops(struct trace_array *tr)
5966{
5967 tr->ops->func = ftrace_stub;
5968}
5969
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005970static inline void
5971__ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005972 struct ftrace_ops *ignored, struct pt_regs *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005973{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005974 struct ftrace_ops *op;
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005975 int bit;
Steven Rostedtb8489142011-05-04 09:27:52 -04005976
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005977 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5978 if (bit < 0)
5979 return;
Steven Rostedtc29f1222012-11-02 17:17:59 -04005980
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005981 /*
5982 * Some of the ops may be dynamically allocated,
5983 * they must be freed after a synchronize_sched().
5984 */
5985 preempt_disable_notrace();
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05005986
Steven Rostedt0a016402012-11-02 17:03:03 -04005987 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05005988 /*
5989 * Check the following for each ops before calling their func:
5990 * if RCU flag is set, then rcu_is_watching() must be true
5991 * if PER_CPU is set, then ftrace_function_local_disable()
5992 * must be false
5993 * Otherwise test if the ip matches the ops filter
5994 *
5995 * If any of the above fails then the op->func() is not executed.
5996 */
5997 if ((!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching()) &&
5998 (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5999 !ftrace_function_local_disabled(op)) &&
6000 ftrace_ops_test(op, ip, regs)) {
6001
Steven Rostedt (Red Hat)1d48d592014-06-25 11:54:03 -04006002 if (FTRACE_WARN_ON(!op->func)) {
6003 pr_warn("op=%p %pS\n", op, op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05006004 goto out;
6005 }
Steven Rostedta1e2e312011-08-09 12:50:46 -04006006 op->func(ip, parent_ip, op, regs);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05006007 }
Steven Rostedt0a016402012-11-02 17:03:03 -04006008 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05006009out:
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04006010 preempt_enable_notrace();
Steven Rostedtedc15ca2012-11-02 17:47:21 -04006011 trace_clear_recursion(bit);
Steven Rostedtb8489142011-05-04 09:27:52 -04006012}
6013
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006014/*
6015 * Some archs only support passing ip and parent_ip. Even though
6016 * the list function ignores the op parameter, we do not want any
6017 * C side effects, where a function is called without the caller
6018 * sending a third parameter.
Steven Rostedta1e2e312011-08-09 12:50:46 -04006019 * Archs are to support both the regs and ftrace_ops at the same time.
6020 * If they support ftrace_ops, it is assumed they support regs.
6021 * If call backs want to use regs, they must either check for regs
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +09006022 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
6023 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
Steven Rostedta1e2e312011-08-09 12:50:46 -04006024 * An architecture can pass partial regs with ftrace_ops and still
Li Binb8ec3302015-11-30 18:23:36 +08006025 * set the ARCH_SUPPORTS_FTRACE_OPS.
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006026 */
6027#if ARCH_SUPPORTS_FTRACE_OPS
6028static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04006029 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006030{
Steven Rostedta1e2e312011-08-09 12:50:46 -04006031 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006032}
6033#else
6034static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip)
6035{
Steven Rostedta1e2e312011-08-09 12:50:46 -04006036 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04006037}
6038#endif
6039
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006040/*
6041 * If there's only one function registered but it does not support
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006042 * recursion, needs RCU protection and/or requires per cpu handling, then
6043 * this function will be called by the mcount trampoline.
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006044 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006045static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006046 struct ftrace_ops *op, struct pt_regs *regs)
6047{
6048 int bit;
6049
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006050 if ((op->flags & FTRACE_OPS_FL_RCU) && !rcu_is_watching())
6051 return;
6052
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006053 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
6054 if (bit < 0)
6055 return;
6056
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006057 preempt_disable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006058
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006059 if (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
6060 !ftrace_function_local_disabled(op)) {
6061 op->func(ip, parent_ip, op, regs);
6062 }
6063
6064 preempt_enable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04006065 trace_clear_recursion(bit);
6066}
6067
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04006068/**
6069 * ftrace_ops_get_func - get the function a trampoline should call
6070 * @ops: the ops to get the function for
6071 *
6072 * Normally the mcount trampoline will call the ops->func, but there
6073 * are times that it should not. For example, if the ops does not
6074 * have its own recursion protection, then it should call the
Chunyu Hu3a150df2017-02-22 08:29:26 +08006075 * ftrace_ops_assist_func() instead.
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04006076 *
6077 * Returns the function that the trampoline should call for @ops.
6078 */
6079ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
6080{
6081 /*
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006082 * If the function does not handle recursion, needs to be RCU safe,
6083 * or does per cpu logic, then we need to call the assist handler.
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04006084 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05006085 if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE) ||
6086 ops->flags & (FTRACE_OPS_FL_RCU | FTRACE_OPS_FL_PER_CPU))
6087 return ftrace_ops_assist_func;
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04006088
6089 return ops->func;
6090}
6091
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006092static void
6093ftrace_filter_pid_sched_switch_probe(void *data, bool preempt,
6094 struct task_struct *prev, struct task_struct *next)
Steven Rostedte32d8952008-12-04 00:26:41 -05006095{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006096 struct trace_array *tr = data;
6097 struct trace_pid_list *pid_list;
6098
6099 pid_list = rcu_dereference_sched(tr->function_pids);
6100
6101 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
6102 trace_ignore_this_task(pid_list, next));
6103}
6104
Namhyung Kim1e104862017-04-17 11:44:28 +09006105static void
6106ftrace_pid_follow_sched_process_fork(void *data,
6107 struct task_struct *self,
6108 struct task_struct *task)
6109{
6110 struct trace_pid_list *pid_list;
6111 struct trace_array *tr = data;
6112
6113 pid_list = rcu_dereference_sched(tr->function_pids);
6114 trace_filter_add_remove_task(pid_list, self, task);
6115}
6116
6117static void
6118ftrace_pid_follow_sched_process_exit(void *data, struct task_struct *task)
6119{
6120 struct trace_pid_list *pid_list;
6121 struct trace_array *tr = data;
6122
6123 pid_list = rcu_dereference_sched(tr->function_pids);
6124 trace_filter_add_remove_task(pid_list, NULL, task);
6125}
6126
6127void ftrace_pid_follow_fork(struct trace_array *tr, bool enable)
6128{
6129 if (enable) {
6130 register_trace_sched_process_fork(ftrace_pid_follow_sched_process_fork,
6131 tr);
6132 register_trace_sched_process_exit(ftrace_pid_follow_sched_process_exit,
6133 tr);
6134 } else {
6135 unregister_trace_sched_process_fork(ftrace_pid_follow_sched_process_fork,
6136 tr);
6137 unregister_trace_sched_process_exit(ftrace_pid_follow_sched_process_exit,
6138 tr);
6139 }
6140}
6141
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006142static void clear_ftrace_pids(struct trace_array *tr)
6143{
6144 struct trace_pid_list *pid_list;
Steven Rostedte32d8952008-12-04 00:26:41 -05006145 int cpu;
6146
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006147 pid_list = rcu_dereference_protected(tr->function_pids,
6148 lockdep_is_held(&ftrace_lock));
6149 if (!pid_list)
6150 return;
6151
6152 unregister_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
6153
6154 for_each_possible_cpu(cpu)
6155 per_cpu_ptr(tr->trace_buffer.data, cpu)->ftrace_ignore_pid = false;
6156
6157 rcu_assign_pointer(tr->function_pids, NULL);
6158
6159 /* Wait till all users are no longer using pid filtering */
6160 synchronize_sched();
6161
6162 trace_free_pid_list(pid_list);
Steven Rostedte32d8952008-12-04 00:26:41 -05006163}
6164
Namhyung Kimd879d0b2017-04-17 11:44:27 +09006165void ftrace_clear_pids(struct trace_array *tr)
6166{
6167 mutex_lock(&ftrace_lock);
6168
6169 clear_ftrace_pids(tr);
6170
6171 mutex_unlock(&ftrace_lock);
6172}
6173
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006174static void ftrace_pid_reset(struct trace_array *tr)
Steven Rostedte32d8952008-12-04 00:26:41 -05006175{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006176 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006177 clear_ftrace_pids(tr);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006178
6179 ftrace_update_pid_func();
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04006180 ftrace_startup_all(0);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006181
6182 mutex_unlock(&ftrace_lock);
6183}
6184
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006185/* Greater than any max PID */
6186#define FTRACE_NO_PIDS (void *)(PID_MAX_LIMIT + 1)
6187
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006188static void *fpid_start(struct seq_file *m, loff_t *pos)
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006189 __acquires(RCU)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006190{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006191 struct trace_pid_list *pid_list;
6192 struct trace_array *tr = m->private;
6193
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006194 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006195 rcu_read_lock_sched();
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006196
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006197 pid_list = rcu_dereference_sched(tr->function_pids);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006198
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006199 if (!pid_list)
6200 return !(*pos) ? FTRACE_NO_PIDS : NULL;
6201
6202 return trace_pid_start(pid_list, pos);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006203}
6204
6205static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
6206{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006207 struct trace_array *tr = m->private;
6208 struct trace_pid_list *pid_list = rcu_dereference_sched(tr->function_pids);
6209
6210 if (v == FTRACE_NO_PIDS)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006211 return NULL;
6212
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006213 return trace_pid_next(pid_list, v, pos);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006214}
6215
6216static void fpid_stop(struct seq_file *m, void *p)
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006217 __releases(RCU)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006218{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006219 rcu_read_unlock_sched();
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006220 mutex_unlock(&ftrace_lock);
6221}
6222
6223static int fpid_show(struct seq_file *m, void *v)
6224{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006225 if (v == FTRACE_NO_PIDS) {
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01006226 seq_puts(m, "no pid\n");
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006227 return 0;
6228 }
6229
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006230 return trace_pid_show(m, v);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006231}
6232
6233static const struct seq_operations ftrace_pid_sops = {
6234 .start = fpid_start,
6235 .next = fpid_next,
6236 .stop = fpid_stop,
6237 .show = fpid_show,
6238};
6239
6240static int
6241ftrace_pid_open(struct inode *inode, struct file *file)
6242{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006243 struct trace_array *tr = inode->i_private;
6244 struct seq_file *m;
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006245 int ret = 0;
6246
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006247 if (trace_array_get(tr) < 0)
6248 return -ENODEV;
6249
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006250 if ((file->f_mode & FMODE_WRITE) &&
6251 (file->f_flags & O_TRUNC))
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006252 ftrace_pid_reset(tr);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006253
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006254 ret = seq_open(file, &ftrace_pid_sops);
6255 if (ret < 0) {
6256 trace_array_put(tr);
6257 } else {
6258 m = file->private_data;
6259 /* copy tr over to seq ops */
6260 m->private = tr;
6261 }
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006262
6263 return ret;
6264}
6265
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006266static void ignore_task_cpu(void *data)
6267{
6268 struct trace_array *tr = data;
6269 struct trace_pid_list *pid_list;
6270
6271 /*
6272 * This function is called by on_each_cpu() while the
6273 * event_mutex is held.
6274 */
6275 pid_list = rcu_dereference_protected(tr->function_pids,
6276 mutex_is_locked(&ftrace_lock));
6277
6278 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
6279 trace_ignore_this_task(pid_list, current));
6280}
6281
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006282static ssize_t
6283ftrace_pid_write(struct file *filp, const char __user *ubuf,
6284 size_t cnt, loff_t *ppos)
6285{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006286 struct seq_file *m = filp->private_data;
6287 struct trace_array *tr = m->private;
6288 struct trace_pid_list *filtered_pids = NULL;
6289 struct trace_pid_list *pid_list;
6290 ssize_t ret;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006291
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006292 if (!cnt)
6293 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006294
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006295 mutex_lock(&ftrace_lock);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006296
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006297 filtered_pids = rcu_dereference_protected(tr->function_pids,
6298 lockdep_is_held(&ftrace_lock));
6299
6300 ret = trace_pid_write(filtered_pids, &pid_list, ubuf, cnt);
6301 if (ret < 0)
6302 goto out;
6303
6304 rcu_assign_pointer(tr->function_pids, pid_list);
6305
6306 if (filtered_pids) {
6307 synchronize_sched();
6308 trace_free_pid_list(filtered_pids);
6309 } else if (pid_list) {
6310 /* Register a probe to set whether to ignore the tracing of a task */
6311 register_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
6312 }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006313
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006314 /*
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006315 * Ignoring of pids is done at task switch. But we have to
6316 * check for those tasks that are currently running.
6317 * Always do this in case a pid was appended or removed.
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006318 */
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006319 on_each_cpu(ignore_task_cpu, tr, 1);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006320
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006321 ftrace_update_pid_func();
6322 ftrace_startup_all(0);
6323 out:
6324 mutex_unlock(&ftrace_lock);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006325
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006326 if (ret > 0)
6327 *ppos += ret;
Steven Rostedt978f3a42008-12-04 00:26:40 -05006328
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006329 return ret;
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006330}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006331
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006332static int
6333ftrace_pid_release(struct inode *inode, struct file *file)
6334{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006335 struct trace_array *tr = inode->i_private;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006336
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006337 trace_array_put(tr);
6338
6339 return seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006340}
6341
Steven Rostedt5e2336a2009-03-05 21:44:55 -05006342static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006343 .open = ftrace_pid_open,
6344 .write = ftrace_pid_write,
6345 .read = seq_read,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05006346 .llseek = tracing_lseek,
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04006347 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006348};
6349
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006350void ftrace_init_tracefs(struct trace_array *tr, struct dentry *d_tracer)
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006351{
Frederic Weisbecker5452af62009-03-27 00:25:38 +01006352 trace_create_file("set_ftrace_pid", 0644, d_tracer,
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04006353 tr, &ftrace_pid_fops);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006354}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05006355
Steven Rostedt (Red Hat)501c2372016-07-05 10:04:34 -04006356void __init ftrace_init_tracefs_toplevel(struct trace_array *tr,
6357 struct dentry *d_tracer)
6358{
6359 /* Only the top level directory has the dyn_tracefs and profile */
6360 WARN_ON(!(tr->flags & TRACE_ARRAY_FL_GLOBAL));
6361
6362 ftrace_init_dyn_tracefs(d_tracer);
6363 ftrace_profile_tracefs(d_tracer);
6364}
6365
Steven Rostedt3d083392008-05-12 21:20:42 +02006366/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04006367 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04006368 *
6369 * This function should be used by panic code. It stops ftrace
6370 * but in a not so nice way. If you need to simply kill ftrace
6371 * from a non-atomic section, use ftrace_kill.
6372 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04006373void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04006374{
6375 ftrace_disabled = 1;
6376 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04006377 clear_ftrace_function();
6378}
6379
6380/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04006381 * Test if ftrace is dead or not.
6382 */
6383int ftrace_is_dead(void)
6384{
6385 return ftrace_disabled;
6386}
6387
6388/**
Steven Rostedt3d083392008-05-12 21:20:42 +02006389 * register_ftrace_function - register a function for profiling
6390 * @ops - ops structure that holds the function for profiling.
6391 *
6392 * Register a function to be called by all functions in the
6393 * kernel.
6394 *
6395 * Note: @ops->func and all the functions it calls must be labeled
6396 * with "notrace", otherwise it will go into a
6397 * recursive loop.
6398 */
6399int register_ftrace_function(struct ftrace_ops *ops)
6400{
Steven Rostedt45a4a232011-04-21 23:16:46 -04006401 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02006402
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09006403 ftrace_ops_init(ops);
6404
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006405 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006406
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05006407 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04006408
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006409 mutex_unlock(&ftrace_lock);
Borislav Petkov8d240dd2012-03-29 19:11:40 +02006410
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006411 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02006412}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04006413EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02006414
6415/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01006416 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02006417 * @ops - ops structure that holds the function to unregister
6418 *
6419 * Unregister a function that was added to be called by ftrace profiling.
6420 */
6421int unregister_ftrace_function(struct ftrace_ops *ops)
6422{
6423 int ret;
6424
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006425 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05006426 ret = ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006427 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006428
6429 return ret;
6430}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04006431EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006432
Ingo Molnare309b412008-05-12 21:20:51 +02006433int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006434ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07006435 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006436 loff_t *ppos)
6437{
Steven Rostedt45a4a232011-04-21 23:16:46 -04006438 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02006439
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006440 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006441
Steven Rostedt45a4a232011-04-21 23:16:46 -04006442 if (unlikely(ftrace_disabled))
6443 goto out;
6444
6445 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006446
Li Zefana32c7762009-06-26 16:55:51 +08006447 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006448 goto out;
6449
Li Zefana32c7762009-06-26 16:55:51 +08006450 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006451
6452 if (ftrace_enabled) {
6453
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006454 /* we are starting ftrace again */
Jan Kiszka5000c412013-03-26 17:53:03 +01006455 if (ftrace_ops_list != &ftrace_list_end)
6456 update_ftrace_function();
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006457
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05006458 ftrace_startup_sysctl();
6459
Steven Rostedtb0fc4942008-05-12 21:20:43 +02006460 } else {
6461 /* stopping ftrace calls (just send to ftrace_stub) */
6462 ftrace_trace_function = ftrace_stub;
6463
6464 ftrace_shutdown_sysctl();
6465 }
6466
6467 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006468 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02006469 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02006470}
Ingo Molnarf17845e2008-10-24 12:47:10 +02006471
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006472#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006473
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006474static struct ftrace_ops graph_ops = {
6475 .func = ftrace_stub,
6476 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
6477 FTRACE_OPS_FL_INITIALIZED |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04006478 FTRACE_OPS_FL_PID |
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006479 FTRACE_OPS_FL_STUB,
6480#ifdef FTRACE_GRAPH_TRAMP_ADDR
6481 .trampoline = FTRACE_GRAPH_TRAMP_ADDR,
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05006482 /* trampoline_size is only needed for dynamically allocated tramps */
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006483#endif
6484 ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash)
6485};
6486
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04006487void ftrace_graph_sleep_time_control(bool enable)
6488{
6489 fgraph_sleep_time = enable;
6490}
6491
6492void ftrace_graph_graph_time_control(bool enable)
6493{
6494 fgraph_graph_time = enable;
6495}
6496
Steven Rostedte49dc192008-12-02 23:50:05 -05006497int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
6498{
6499 return 0;
6500}
6501
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006502/* The callbacks that hook a function */
6503trace_func_graph_ret_t ftrace_graph_return =
6504 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05006505trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006506static trace_func_graph_ent_t __ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006507
6508/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
6509static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
6510{
6511 int i;
6512 int ret = 0;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006513 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
6514 struct task_struct *g, *t;
6515
6516 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
6517 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
6518 * sizeof(struct ftrace_ret_stack),
6519 GFP_KERNEL);
6520 if (!ret_stack_list[i]) {
6521 start = 0;
6522 end = i;
6523 ret = -ENOMEM;
6524 goto free;
6525 }
6526 }
6527
Soumya PN6112a302016-05-17 21:31:14 +05306528 read_lock(&tasklist_lock);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006529 do_each_thread(g, t) {
6530 if (start == end) {
6531 ret = -EAGAIN;
6532 goto unlock;
6533 }
6534
6535 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01006536 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006537 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04006538 t->curr_ret_stack = -1;
6539 /* Make sure the tasks see the -1 first: */
6540 smp_wmb();
6541 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006542 }
6543 } while_each_thread(g, t);
6544
6545unlock:
Soumya PN6112a302016-05-17 21:31:14 +05306546 read_unlock(&tasklist_lock);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006547free:
6548 for (i = start; i < end; i++)
6549 kfree(ret_stack_list[i]);
6550 return ret;
6551}
6552
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006553static void
Peter Zijlstrac73464b2015-09-28 18:06:56 +02006554ftrace_graph_probe_sched_switch(void *ignore, bool preempt,
Steven Rostedt38516ab2010-04-20 17:04:50 -04006555 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006556{
6557 unsigned long long timestamp;
6558 int index;
6559
Steven Rostedtbe6f1642009-03-24 11:06:24 -04006560 /*
6561 * Does the user want to count the time a function was asleep.
6562 * If so, do not update the time stamps.
6563 */
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04006564 if (fgraph_sleep_time)
Steven Rostedtbe6f1642009-03-24 11:06:24 -04006565 return;
6566
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006567 timestamp = trace_clock_local();
6568
6569 prev->ftrace_timestamp = timestamp;
6570
6571 /* only process tasks that we timestamped */
6572 if (!next->ftrace_timestamp)
6573 return;
6574
6575 /*
6576 * Update all the counters in next to make up for the
6577 * time next was sleeping.
6578 */
6579 timestamp -= next->ftrace_timestamp;
6580
6581 for (index = next->curr_ret_stack; index >= 0; index--)
6582 next->ret_stack[index].calltime += timestamp;
6583}
6584
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006585/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006586static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006587{
6588 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01006589 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006590
6591 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
6592 sizeof(struct ftrace_ret_stack *),
6593 GFP_KERNEL);
6594
6595 if (!ret_stack_list)
6596 return -ENOMEM;
6597
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01006598 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04006599 for_each_online_cpu(cpu) {
6600 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05006601 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04006602 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01006603
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006604 do {
6605 ret = alloc_retstack_tasklist(ret_stack_list);
6606 } while (ret == -EAGAIN);
6607
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006608 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04006609 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04006610 if (ret)
6611 pr_info("ftrace_graph: Couldn't activate tracepoint"
6612 " probe to kernel_sched_switch\n");
6613 }
6614
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006615 kfree(ret_stack_list);
6616 return ret;
6617}
6618
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08006619/*
6620 * Hibernation protection.
6621 * The state of the current task is too much unstable during
6622 * suspend/restore to disk. We want to protect against that.
6623 */
6624static int
6625ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
6626 void *unused)
6627{
6628 switch (state) {
6629 case PM_HIBERNATION_PREPARE:
6630 pause_graph_tracing();
6631 break;
6632
6633 case PM_POST_HIBERNATION:
6634 unpause_graph_tracing();
6635 break;
6636 }
6637 return NOTIFY_DONE;
6638}
6639
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006640static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace)
6641{
6642 if (!ftrace_ops_test(&global_ops, trace->func, NULL))
6643 return 0;
6644 return __ftrace_graph_entry(trace);
6645}
6646
6647/*
6648 * The function graph tracer should only trace the functions defined
6649 * by set_ftrace_filter and set_ftrace_notrace. If another function
6650 * tracer ops is registered, the graph tracer requires testing the
6651 * function against the global ops, and not just trace any function
6652 * that any ftrace_ops registered.
6653 */
6654static void update_function_graph_func(void)
6655{
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006656 struct ftrace_ops *op;
6657 bool do_test = false;
6658
6659 /*
6660 * The graph and global ops share the same set of functions
6661 * to test. If any other ops is on the list, then
6662 * the graph tracing needs to test if its the function
6663 * it should call.
6664 */
6665 do_for_each_ftrace_op(op, ftrace_ops_list) {
6666 if (op != &global_ops && op != &graph_ops &&
6667 op != &ftrace_list_end) {
6668 do_test = true;
6669 /* in double loop, break out with goto */
6670 goto out;
6671 }
6672 } while_for_each_ftrace_op(op);
6673 out:
6674 if (do_test)
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006675 ftrace_graph_entry = ftrace_graph_entry_test;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006676 else
6677 ftrace_graph_entry = __ftrace_graph_entry;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006678}
6679
Mathias Krause8275f692014-03-30 15:31:50 +02006680static struct notifier_block ftrace_suspend_notifier = {
6681 .notifier_call = ftrace_suspend_notifier_call,
6682};
6683
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006684int register_ftrace_graph(trace_func_graph_ret_t retfunc,
6685 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006686{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006687 int ret = 0;
6688
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006689 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006690
Steven Rostedt05ce5812009-03-24 00:18:31 -04006691 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04006692 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04006693 ret = -EBUSY;
6694 goto out;
6695 }
6696
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08006697 register_pm_notifier(&ftrace_suspend_notifier);
6698
Steven Rostedt597af812009-04-03 15:24:12 -04006699 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006700 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006701 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04006702 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006703 goto out;
6704 }
Steven Rostedte53a6312008-11-26 00:16:25 -05006705
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006706 ftrace_graph_return = retfunc;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006707
6708 /*
6709 * Update the indirect function to the entryfunc, and the
6710 * function that gets called to the entry_test first. Then
6711 * call the update fgraph entry function to determine if
6712 * the entryfunc should be called directly or not.
6713 */
6714 __ftrace_graph_entry = entryfunc;
6715 ftrace_graph_entry = ftrace_graph_entry_test;
6716 update_function_graph_func();
Steven Rostedte53a6312008-11-26 00:16:25 -05006717
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006718 ret = ftrace_startup(&graph_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006719out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006720 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006721 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006722}
6723
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006724void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006725{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006726 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006727
Steven Rostedt597af812009-04-03 15:24:12 -04006728 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04006729 goto out;
6730
Steven Rostedt597af812009-04-03 15:24:12 -04006731 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006732 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05006733 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006734 __ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006735 ftrace_shutdown(&graph_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08006736 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04006737 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006738
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04006739#ifdef CONFIG_DYNAMIC_FTRACE
6740 /*
6741 * Function graph does not allocate the trampoline, but
6742 * other global_ops do. We need to reset the ALLOC_TRAMP flag
6743 * if one was used.
6744 */
6745 global_ops.trampoline = save_global_trampoline;
6746 if (save_global_flags & FTRACE_OPS_FL_ALLOC_TRAMP)
6747 global_ops.flags |= FTRACE_OPS_FL_ALLOC_TRAMP;
6748#endif
6749
Steven Rostedt2aad1b72009-03-30 11:11:28 -04006750 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006751 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006752}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006753
Steven Rostedt868baf02011-02-10 21:26:13 -05006754static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
6755
6756static void
6757graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
6758{
6759 atomic_set(&t->tracing_graph_pause, 0);
6760 atomic_set(&t->trace_overrun, 0);
6761 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006762 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05006763 smp_wmb();
6764 t->ret_stack = ret_stack;
6765}
6766
6767/*
6768 * Allocate a return stack for the idle task. May be the first
6769 * time through, or it may be done by CPU hotplug online.
6770 */
6771void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
6772{
6773 t->curr_ret_stack = -1;
6774 /*
6775 * The idle task has no parent, it either has its own
6776 * stack or no stack at all.
6777 */
6778 if (t->ret_stack)
6779 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
6780
6781 if (ftrace_graph_active) {
6782 struct ftrace_ret_stack *ret_stack;
6783
6784 ret_stack = per_cpu(idle_ret_stack, cpu);
6785 if (!ret_stack) {
6786 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
6787 * sizeof(struct ftrace_ret_stack),
6788 GFP_KERNEL);
6789 if (!ret_stack)
6790 return;
6791 per_cpu(idle_ret_stack, cpu) = ret_stack;
6792 }
6793 graph_init_task(t, ret_stack);
6794 }
6795}
6796
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006797/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006798void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006799{
Steven Rostedt84047e32009-06-02 16:51:55 -04006800 /* Make sure we do not use the parent ret_stack */
6801 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05006802 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04006803
Steven Rostedt597af812009-04-03 15:24:12 -04006804 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04006805 struct ftrace_ret_stack *ret_stack;
6806
6807 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006808 * sizeof(struct ftrace_ret_stack),
6809 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04006810 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006811 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05006812 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04006813 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006814}
6815
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006816void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006817{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006818 struct ftrace_ret_stack *ret_stack = t->ret_stack;
6819
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006820 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006821 /* NULL must become visible to IRQs before we free it: */
6822 barrier();
6823
6824 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006825}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006826#endif