blob: 5534be18797ed8e7c85d384134f4628df30b4950 [file] [log] [blame]
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02001/*
2 * Infrastructure for profiling code inserted by 'gcc -pg'.
3 *
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2004-2008 Ingo Molnar <mingo@redhat.com>
6 *
7 * Originally ported from the -rt patch by:
8 * Copyright (C) 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
9 *
10 * Based on code in the latency_tracer, that is:
11 *
12 * Copyright (C) 2004-2006 Ingo Molnar
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +010013 * Copyright (C) 2004 Nadia Yvette Chambers
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020014 */
15
Steven Rostedt3d083392008-05-12 21:20:42 +020016#include <linux/stop_machine.h>
17#include <linux/clocksource.h>
18#include <linux/kallsyms.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020019#include <linux/seq_file.h>
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -080020#include <linux/suspend.h>
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -050021#include <linux/tracefs.h>
Steven Rostedt3d083392008-05-12 21:20:42 +020022#include <linux/hardirq.h>
Ingo Molnar2d8b8202008-02-23 16:55:50 +010023#include <linux/kthread.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020024#include <linux/uaccess.h>
Steven Rostedt5855fea2011-12-16 19:27:42 -050025#include <linux/bsearch.h>
Paul Gortmaker56d82e02011-05-26 17:53:52 -040026#include <linux/module.h>
Ingo Molnar2d8b8202008-02-23 16:55:50 +010027#include <linux/ftrace.h>
Steven Rostedtb0fc4942008-05-12 21:20:43 +020028#include <linux/sysctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020030#include <linux/ctype.h>
Steven Rostedt68950612011-12-16 17:06:45 -050031#include <linux/sort.h>
Steven Rostedt3d083392008-05-12 21:20:42 +020032#include <linux/list.h>
Steven Rostedt59df055f2009-02-14 15:29:06 -050033#include <linux/hash.h>
Paul E. McKenney3f379b02010-03-05 15:03:25 -080034#include <linux/rcupdate.h>
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020035
Steven Rostedtad8d75f2009-04-14 19:39:12 -040036#include <trace/events/sched.h>
Steven Rostedt8aef2d22009-03-24 01:10:15 -040037
Steven Rostedt2af15d62009-05-28 13:37:24 -040038#include <asm/setup.h>
Abhishek Sagar395a59d2008-06-21 23:47:27 +053039
Steven Rostedt0706f1c2009-03-23 23:12:58 -040040#include "trace_output.h"
Steven Rostedtbac429f2009-03-20 12:50:56 -040041#include "trace_stat.h"
Steven Rostedt3d083392008-05-12 21:20:42 +020042
Steven Rostedt6912896e2008-10-23 09:33:03 -040043#define FTRACE_WARN_ON(cond) \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040044 ({ \
45 int ___r = cond; \
46 if (WARN_ON(___r)) \
Steven Rostedt6912896e2008-10-23 09:33:03 -040047 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040048 ___r; \
49 })
Steven Rostedt6912896e2008-10-23 09:33:03 -040050
51#define FTRACE_WARN_ON_ONCE(cond) \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040052 ({ \
53 int ___r = cond; \
54 if (WARN_ON_ONCE(___r)) \
Steven Rostedt6912896e2008-10-23 09:33:03 -040055 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040056 ___r; \
57 })
Steven Rostedt6912896e2008-10-23 09:33:03 -040058
Steven Rostedt8fc0c702009-02-16 15:28:00 -050059/* hash bits for specific function selection */
60#define FTRACE_HASH_BITS 7
61#define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
Steven Rostedt33dc9b12011-05-02 17:34:47 -040062#define FTRACE_HASH_DEFAULT_BITS 10
63#define FTRACE_HASH_MAX_BITS 12
Steven Rostedt8fc0c702009-02-16 15:28:00 -050064
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +090065#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -040066#define INIT_OPS_HASH(opsname) \
67 .func_hash = &opsname.local_hash, \
68 .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock),
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -040069#define ASSIGN_OPS_HASH(opsname, val) \
70 .func_hash = val, \
71 .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock),
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +090072#else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -040073#define INIT_OPS_HASH(opsname)
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -040074#define ASSIGN_OPS_HASH(opsname, val)
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +090075#endif
76
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040077static struct ftrace_ops ftrace_list_end __read_mostly = {
78 .func = ftrace_stub,
Steven Rostedt (Red Hat)395b97a2013-03-27 09:31:28 -040079 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_STUB,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -040080 INIT_OPS_HASH(ftrace_list_end)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040081};
82
Steven Rostedt4eebcc82008-05-12 21:20:48 +020083/* ftrace_enabled is a method to turn ftrace on or off */
84int ftrace_enabled __read_mostly;
Steven Rostedtd61f82d2008-05-12 21:20:43 +020085static int last_ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +020086
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040087/* Current function tracing op */
88struct ftrace_ops *function_trace_op __read_mostly = &ftrace_list_end;
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -050089/* What to set function_trace_op to */
90static struct ftrace_ops *set_function_trace_op;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050091
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -040092static bool ftrace_pids_enabled(struct ftrace_ops *ops)
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -040093{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -040094 struct trace_array *tr;
95
96 if (!(ops->flags & FTRACE_OPS_FL_PID) || !ops->private)
97 return false;
98
99 tr = ops->private;
100
101 return tr->function_pids != NULL;
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400102}
103
104static void ftrace_update_trampoline(struct ftrace_ops *ops);
105
Steven Rostedt4eebcc82008-05-12 21:20:48 +0200106/*
107 * ftrace_disabled is set when an anomaly is discovered.
108 * ftrace_disabled is much stronger than ftrace_enabled.
109 */
110static int ftrace_disabled __read_mostly;
111
Steven Rostedt52baf112009-02-14 01:15:39 -0500112static DEFINE_MUTEX(ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200113
Steven Rostedtb8489142011-05-04 09:27:52 -0400114static struct ftrace_ops *ftrace_ops_list __read_mostly = &ftrace_list_end;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200115ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
Steven Rostedt2b499382011-05-03 22:49:52 -0400116static struct ftrace_ops global_ops;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200117
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400118#if ARCH_SUPPORTS_FTRACE_OPS
119static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400120 struct ftrace_ops *op, struct pt_regs *regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400121#else
122/* See comment below, where ftrace_ops_list_func is defined */
Sami Tolvanenc2f9bce2018-05-10 14:56:41 -0700123static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip,
124 struct ftrace_ops *op, struct pt_regs *regs);
125#define ftrace_ops_list_func ftrace_ops_no_ops
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400126#endif
Steven Rostedtb8489142011-05-04 09:27:52 -0400127
Steven Rostedt0a016402012-11-02 17:03:03 -0400128/*
129 * Traverse the ftrace_global_list, invoking all entries. The reason that we
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400130 * can use rcu_dereference_raw_notrace() is that elements removed from this list
Steven Rostedt0a016402012-11-02 17:03:03 -0400131 * are simply leaked, so there is no need to interact with a grace-period
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400132 * mechanism. The rcu_dereference_raw_notrace() calls are needed to handle
Steven Rostedt0a016402012-11-02 17:03:03 -0400133 * concurrent insertions into the ftrace_global_list.
134 *
135 * Silly Alpha and silly pointer-speculation compiler optimizations!
136 */
137#define do_for_each_ftrace_op(op, list) \
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400138 op = rcu_dereference_raw_notrace(list); \
Steven Rostedt0a016402012-11-02 17:03:03 -0400139 do
140
141/*
142 * Optimized for just a single item in the list (as that is the normal case).
143 */
144#define while_for_each_ftrace_op(op) \
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400145 while (likely(op = rcu_dereference_raw_notrace((op)->next)) && \
Steven Rostedt0a016402012-11-02 17:03:03 -0400146 unlikely((op) != &ftrace_list_end))
147
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900148static inline void ftrace_ops_init(struct ftrace_ops *ops)
149{
150#ifdef CONFIG_DYNAMIC_FTRACE
151 if (!(ops->flags & FTRACE_OPS_FL_INITIALIZED)) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400152 mutex_init(&ops->local_hash.regex_lock);
153 ops->func_hash = &ops->local_hash;
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900154 ops->flags |= FTRACE_OPS_FL_INITIALIZED;
155 }
156#endif
157}
158
Steven Rostedtea701f12012-07-20 13:08:05 -0400159/**
160 * ftrace_nr_registered_ops - return number of ops registered
161 *
162 * Returns the number of ftrace_ops registered and tracing functions
163 */
164int ftrace_nr_registered_ops(void)
165{
166 struct ftrace_ops *ops;
167 int cnt = 0;
168
169 mutex_lock(&ftrace_lock);
170
171 for (ops = ftrace_ops_list;
172 ops != &ftrace_list_end; ops = ops->next)
173 cnt++;
174
175 mutex_unlock(&ftrace_lock);
176
177 return cnt;
178}
179
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400180static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400181 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500182{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400183 struct trace_array *tr = op->private;
184
185 if (tr && this_cpu_read(tr->trace_buffer.data->ftrace_ignore_pid))
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500186 return;
187
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400188 op->saved_func(ip, parent_ip, op, regs);
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500189}
190
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200191/**
Steven Rostedt3d083392008-05-12 21:20:42 +0200192 * clear_ftrace_function - reset the ftrace function
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200193 *
Steven Rostedt3d083392008-05-12 21:20:42 +0200194 * This NULLs the ftrace function and in essence stops
195 * tracing. There may be lag
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200196 */
Steven Rostedt3d083392008-05-12 21:20:42 +0200197void clear_ftrace_function(void)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200198{
Steven Rostedt3d083392008-05-12 21:20:42 +0200199 ftrace_trace_function = ftrace_stub;
200}
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200201
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500202static void per_cpu_ops_disable_all(struct ftrace_ops *ops)
Jiri Olsae2484912012-02-15 15:51:48 +0100203{
204 int cpu;
205
206 for_each_possible_cpu(cpu)
207 *per_cpu_ptr(ops->disabled, cpu) = 1;
208}
209
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500210static int per_cpu_ops_alloc(struct ftrace_ops *ops)
Jiri Olsae2484912012-02-15 15:51:48 +0100211{
212 int __percpu *disabled;
213
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500214 if (WARN_ON_ONCE(!(ops->flags & FTRACE_OPS_FL_PER_CPU)))
215 return -EINVAL;
216
Jiri Olsae2484912012-02-15 15:51:48 +0100217 disabled = alloc_percpu(int);
218 if (!disabled)
219 return -ENOMEM;
220
221 ops->disabled = disabled;
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500222 per_cpu_ops_disable_all(ops);
Jiri Olsae2484912012-02-15 15:51:48 +0100223 return 0;
224}
225
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500226static void ftrace_sync(struct work_struct *work)
227{
228 /*
229 * This function is just a stub to implement a hard force
230 * of synchronize_sched(). This requires synchronizing
231 * tasks even in userspace and idle.
232 *
233 * Yes, function tracing is rude.
234 */
235}
236
237static void ftrace_sync_ipi(void *data)
238{
239 /* Probably not needed, but do it anyway */
240 smp_rmb();
241}
242
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500243#ifdef CONFIG_FUNCTION_GRAPH_TRACER
244static void update_function_graph_func(void);
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400245
246/* Both enabled by default (can be cleared by function_graph tracer flags */
247static bool fgraph_sleep_time = true;
248static bool fgraph_graph_time = true;
249
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500250#else
251static inline void update_function_graph_func(void) { }
252#endif
253
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100254
255static ftrace_func_t ftrace_ops_get_list_func(struct ftrace_ops *ops)
256{
257 /*
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500258 * 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 +0100259 * then it needs to call the list anyway.
260 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500261 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU |
262 FTRACE_OPS_FL_RCU) || FTRACE_FORCE_LIST_FUNC)
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100263 return ftrace_ops_list_func;
264
265 return ftrace_ops_get_func(ops);
266}
267
Steven Rostedt2b499382011-05-03 22:49:52 -0400268static void update_ftrace_function(void)
269{
270 ftrace_func_t func;
271
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400272 /*
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400273 * Prepare the ftrace_ops that the arch callback will use.
274 * If there's only one ftrace_ops registered, the ftrace_ops_list
275 * will point to the ops we want.
276 */
277 set_function_trace_op = ftrace_ops_list;
278
279 /* If there's no ftrace_ops registered, just call the stub function */
280 if (ftrace_ops_list == &ftrace_list_end) {
281 func = ftrace_stub;
282
283 /*
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400284 * If we are at the end of the list and this ops is
Steven Rostedt47409742012-07-20 11:04:44 -0400285 * recursion safe and not dynamic and the arch supports passing ops,
286 * then have the mcount trampoline call the function directly.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400287 */
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400288 } else if (ftrace_ops_list->next == &ftrace_list_end) {
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100289 func = ftrace_ops_get_list_func(ftrace_ops_list);
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400290
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400291 } else {
292 /* Just use the default ftrace_ops */
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500293 set_function_trace_op = &ftrace_list_end;
Steven Rostedtb8489142011-05-04 09:27:52 -0400294 func = ftrace_ops_list_func;
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400295 }
Steven Rostedt2b499382011-05-03 22:49:52 -0400296
Steven Rostedt (Red Hat)5f8bf2d22014-07-15 11:05:12 -0400297 update_function_graph_func();
298
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500299 /* If there's no change, then do nothing more here */
300 if (ftrace_trace_function == func)
301 return;
302
303 /*
304 * If we are using the list function, it doesn't care
305 * about the function_trace_ops.
306 */
307 if (func == ftrace_ops_list_func) {
308 ftrace_trace_function = func;
309 /*
310 * Don't even bother setting function_trace_ops,
311 * it would be racy to do so anyway.
312 */
313 return;
314 }
315
316#ifndef CONFIG_DYNAMIC_FTRACE
317 /*
318 * For static tracing, we need to be a bit more careful.
319 * The function change takes affect immediately. Thus,
320 * we need to coorditate the setting of the function_trace_ops
321 * with the setting of the ftrace_trace_function.
322 *
323 * Set the function to the list ops, which will call the
324 * function we want, albeit indirectly, but it handles the
325 * ftrace_ops and doesn't depend on function_trace_op.
326 */
327 ftrace_trace_function = ftrace_ops_list_func;
328 /*
329 * Make sure all CPUs see this. Yes this is slow, but static
330 * tracing is slow and nasty to have enabled.
331 */
332 schedule_on_each_cpu(ftrace_sync);
333 /* Now all cpus are using the list ops. */
334 function_trace_op = set_function_trace_op;
335 /* Make sure the function_trace_op is visible on all CPUs */
336 smp_wmb();
337 /* Nasty way to force a rmb on all cpus */
338 smp_call_function(ftrace_sync_ipi, NULL, 1);
339 /* OK, we are all set to update the ftrace_trace_function now! */
340#endif /* !CONFIG_DYNAMIC_FTRACE */
341
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400342 ftrace_trace_function = func;
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400343}
344
Jiaxing Wang7eea4fc2014-04-20 23:10:43 +0800345int using_ftrace_ops_list_func(void)
346{
347 return ftrace_trace_function == ftrace_ops_list_func;
348}
349
Steven Rostedt2b499382011-05-03 22:49:52 -0400350static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
Steven Rostedt3d083392008-05-12 21:20:42 +0200351{
Steven Rostedt2b499382011-05-03 22:49:52 -0400352 ops->next = *list;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200353 /*
Steven Rostedtb8489142011-05-04 09:27:52 -0400354 * We are entering ops into the list but another
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200355 * CPU might be walking that list. We need to make sure
356 * the ops->next pointer is valid before another CPU sees
Steven Rostedtb8489142011-05-04 09:27:52 -0400357 * the ops pointer included into the list.
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200358 */
Steven Rostedt2b499382011-05-03 22:49:52 -0400359 rcu_assign_pointer(*list, ops);
360}
Steven Rostedt3d083392008-05-12 21:20:42 +0200361
Steven Rostedt2b499382011-05-03 22:49:52 -0400362static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
363{
364 struct ftrace_ops **p;
365
366 /*
367 * If we are removing the last function, then simply point
368 * to the ftrace_stub.
369 */
370 if (*list == ops && ops->next == &ftrace_list_end) {
371 *list = &ftrace_list_end;
372 return 0;
373 }
374
375 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
376 if (*p == ops)
377 break;
378
379 if (*p != ops)
380 return -1;
381
382 *p = (*p)->next;
383 return 0;
384}
385
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400386static void ftrace_update_trampoline(struct ftrace_ops *ops);
387
Steven Rostedt2b499382011-05-03 22:49:52 -0400388static int __register_ftrace_function(struct ftrace_ops *ops)
389{
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -0500390 if (ops->flags & FTRACE_OPS_FL_DELETED)
391 return -EINVAL;
392
Steven Rostedtb8489142011-05-04 09:27:52 -0400393 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
394 return -EBUSY;
395
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +0900396#ifndef CONFIG_DYNAMIC_FTRACE_WITH_REGS
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400397 /*
398 * If the ftrace_ops specifies SAVE_REGS, then it only can be used
399 * if the arch supports it, or SAVE_REGS_IF_SUPPORTED is also set.
400 * Setting SAVE_REGS_IF_SUPPORTED makes SAVE_REGS irrelevant.
401 */
402 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS &&
403 !(ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED))
404 return -EINVAL;
405
406 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED)
407 ops->flags |= FTRACE_OPS_FL_SAVE_REGS;
408#endif
409
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400410 if (!core_kernel_data((unsigned long)ops))
411 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
412
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500413 if (ops->flags & FTRACE_OPS_FL_PER_CPU) {
414 if (per_cpu_ops_alloc(ops))
Jiri Olsae2484912012-02-15 15:51:48 +0100415 return -ENOMEM;
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500416 }
417
418 add_ftrace_ops(&ftrace_ops_list, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400419
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400420 /* Always save the function, and reset at unregistering */
421 ops->saved_func = ops->func;
422
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400423 if (ftrace_pids_enabled(ops))
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400424 ops->func = ftrace_pid_func;
425
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400426 ftrace_update_trampoline(ops);
427
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400428 if (ftrace_enabled)
429 update_ftrace_function();
Steven Rostedt3d083392008-05-12 21:20:42 +0200430
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200431 return 0;
432}
433
Ingo Molnare309b412008-05-12 21:20:51 +0200434static int __unregister_ftrace_function(struct ftrace_ops *ops)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200435{
Steven Rostedt2b499382011-05-03 22:49:52 -0400436 int ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200437
Steven Rostedtb8489142011-05-04 09:27:52 -0400438 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
439 return -EBUSY;
440
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500441 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400442
Steven Rostedt2b499382011-05-03 22:49:52 -0400443 if (ret < 0)
444 return ret;
Steven Rostedtb8489142011-05-04 09:27:52 -0400445
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400446 if (ftrace_enabled)
447 update_ftrace_function();
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200448
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400449 ops->func = ops->saved_func;
450
Steven Rostedte6ea44e2009-02-14 01:42:44 -0500451 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +0200452}
453
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500454static void ftrace_update_pid_func(void)
455{
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400456 struct ftrace_ops *op;
457
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400458 /* Only do something if we are tracing something */
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500459 if (ftrace_trace_function == ftrace_stub)
KOSAKI Motohiro10dd3eb2009-03-06 15:29:04 +0900460 return;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500461
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400462 do_for_each_ftrace_op(op, ftrace_ops_list) {
463 if (op->flags & FTRACE_OPS_FL_PID) {
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400464 op->func = ftrace_pids_enabled(op) ?
465 ftrace_pid_func : op->saved_func;
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400466 ftrace_update_trampoline(op);
467 }
468 } while_for_each_ftrace_op(op);
469
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400470 update_ftrace_function();
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500471}
472
Steven Rostedt493762f2009-03-23 17:12:36 -0400473#ifdef CONFIG_FUNCTION_PROFILER
474struct ftrace_profile {
475 struct hlist_node node;
476 unsigned long ip;
477 unsigned long counter;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400478#ifdef CONFIG_FUNCTION_GRAPH_TRACER
479 unsigned long long time;
Chase Douglase330b3b2010-04-26 14:02:05 -0400480 unsigned long long time_squared;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400481#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400482};
483
484struct ftrace_profile_page {
485 struct ftrace_profile_page *next;
486 unsigned long index;
487 struct ftrace_profile records[];
488};
489
Steven Rostedtcafb1682009-03-24 20:50:39 -0400490struct ftrace_profile_stat {
491 atomic_t disabled;
492 struct hlist_head *hash;
493 struct ftrace_profile_page *pages;
494 struct ftrace_profile_page *start;
495 struct tracer_stat stat;
496};
497
Steven Rostedt493762f2009-03-23 17:12:36 -0400498#define PROFILE_RECORDS_SIZE \
499 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
500
501#define PROFILES_PER_PAGE \
502 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
503
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400504static int ftrace_profile_enabled __read_mostly;
505
506/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
Steven Rostedt493762f2009-03-23 17:12:36 -0400507static DEFINE_MUTEX(ftrace_profile_lock);
508
Steven Rostedtcafb1682009-03-24 20:50:39 -0400509static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
Steven Rostedt493762f2009-03-23 17:12:36 -0400510
Namhyung Kim20079eb2013-04-10 08:55:50 +0900511#define FTRACE_PROFILE_HASH_BITS 10
512#define FTRACE_PROFILE_HASH_SIZE (1 << FTRACE_PROFILE_HASH_BITS)
Steven Rostedt493762f2009-03-23 17:12:36 -0400513
Steven Rostedt493762f2009-03-23 17:12:36 -0400514static void *
515function_stat_next(void *v, int idx)
516{
517 struct ftrace_profile *rec = v;
518 struct ftrace_profile_page *pg;
519
520 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
521
522 again:
Li Zefan0296e422009-06-26 11:15:37 +0800523 if (idx != 0)
524 rec++;
525
Steven Rostedt493762f2009-03-23 17:12:36 -0400526 if ((void *)rec >= (void *)&pg->records[pg->index]) {
527 pg = pg->next;
528 if (!pg)
529 return NULL;
530 rec = &pg->records[0];
531 if (!rec->counter)
532 goto again;
533 }
534
535 return rec;
536}
537
538static void *function_stat_start(struct tracer_stat *trace)
539{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400540 struct ftrace_profile_stat *stat =
541 container_of(trace, struct ftrace_profile_stat, stat);
542
543 if (!stat || !stat->start)
544 return NULL;
545
546 return function_stat_next(&stat->start->records[0], 0);
Steven Rostedt493762f2009-03-23 17:12:36 -0400547}
548
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400549#ifdef CONFIG_FUNCTION_GRAPH_TRACER
550/* function graph compares on total time */
551static int function_stat_cmp(void *p1, void *p2)
552{
553 struct ftrace_profile *a = p1;
554 struct ftrace_profile *b = p2;
555
556 if (a->time < b->time)
557 return -1;
558 if (a->time > b->time)
559 return 1;
560 else
561 return 0;
562}
563#else
564/* not function graph compares against hits */
Steven Rostedt493762f2009-03-23 17:12:36 -0400565static int function_stat_cmp(void *p1, void *p2)
566{
567 struct ftrace_profile *a = p1;
568 struct ftrace_profile *b = p2;
569
570 if (a->counter < b->counter)
571 return -1;
572 if (a->counter > b->counter)
573 return 1;
574 else
575 return 0;
576}
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400577#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400578
579static int function_stat_headers(struct seq_file *m)
580{
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400581#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100582 seq_puts(m, " Function "
583 "Hit Time Avg s^2\n"
584 " -------- "
585 "--- ---- --- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400586#else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100587 seq_puts(m, " Function Hit\n"
588 " -------- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400589#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400590 return 0;
591}
592
593static int function_stat_show(struct seq_file *m, void *v)
594{
595 struct ftrace_profile *rec = v;
596 char str[KSYM_SYMBOL_LEN];
Li Zefan3aaba202010-08-23 16:50:12 +0800597 int ret = 0;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400598#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400599 static struct trace_seq s;
600 unsigned long long avg;
Chase Douglase330b3b2010-04-26 14:02:05 -0400601 unsigned long long stddev;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400602#endif
Li Zefan3aaba202010-08-23 16:50:12 +0800603 mutex_lock(&ftrace_profile_lock);
604
605 /* we raced with function_profile_reset() */
606 if (unlikely(rec->counter == 0)) {
607 ret = -EBUSY;
608 goto out;
609 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400610
Umesh Tiwari8e436ca2015-06-22 16:58:08 +0530611#ifdef CONFIG_FUNCTION_GRAPH_TRACER
612 avg = rec->time;
613 do_div(avg, rec->counter);
614 if (tracing_thresh && (avg < tracing_thresh))
615 goto out;
616#endif
617
Steven Rostedt493762f2009-03-23 17:12:36 -0400618 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400619 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
Steven Rostedt493762f2009-03-23 17:12:36 -0400620
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400621#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100622 seq_puts(m, " ");
Steven Rostedt34886c82009-03-25 21:00:47 -0400623
Chase Douglase330b3b2010-04-26 14:02:05 -0400624 /* Sample standard deviation (s^2) */
625 if (rec->counter <= 1)
626 stddev = 0;
627 else {
Juri Lelli52d85d72013-06-12 12:03:18 +0200628 /*
629 * Apply Welford's method:
630 * s^2 = 1 / (n * (n-1)) * (n * \Sum (x_i)^2 - (\Sum x_i)^2)
631 */
632 stddev = rec->counter * rec->time_squared -
633 rec->time * rec->time;
634
Chase Douglase330b3b2010-04-26 14:02:05 -0400635 /*
636 * Divide only 1000 for ns^2 -> us^2 conversion.
637 * trace_print_graph_duration will divide 1000 again.
638 */
Juri Lelli52d85d72013-06-12 12:03:18 +0200639 do_div(stddev, rec->counter * (rec->counter - 1) * 1000);
Chase Douglase330b3b2010-04-26 14:02:05 -0400640 }
641
Steven Rostedt34886c82009-03-25 21:00:47 -0400642 trace_seq_init(&s);
643 trace_print_graph_duration(rec->time, &s);
644 trace_seq_puts(&s, " ");
645 trace_print_graph_duration(avg, &s);
Chase Douglase330b3b2010-04-26 14:02:05 -0400646 trace_seq_puts(&s, " ");
647 trace_print_graph_duration(stddev, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400648 trace_print_seq(m, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400649#endif
650 seq_putc(m, '\n');
Li Zefan3aaba202010-08-23 16:50:12 +0800651out:
652 mutex_unlock(&ftrace_profile_lock);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400653
Li Zefan3aaba202010-08-23 16:50:12 +0800654 return ret;
Steven Rostedt493762f2009-03-23 17:12:36 -0400655}
656
Steven Rostedtcafb1682009-03-24 20:50:39 -0400657static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400658{
659 struct ftrace_profile_page *pg;
660
Steven Rostedtcafb1682009-03-24 20:50:39 -0400661 pg = stat->pages = stat->start;
Steven Rostedt493762f2009-03-23 17:12:36 -0400662
663 while (pg) {
664 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
665 pg->index = 0;
666 pg = pg->next;
667 }
668
Steven Rostedtcafb1682009-03-24 20:50:39 -0400669 memset(stat->hash, 0,
Steven Rostedt493762f2009-03-23 17:12:36 -0400670 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
671}
672
Steven Rostedtcafb1682009-03-24 20:50:39 -0400673int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400674{
675 struct ftrace_profile_page *pg;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400676 int functions;
677 int pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400678 int i;
679
680 /* If we already allocated, do nothing */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400681 if (stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400682 return 0;
683
Steven Rostedtcafb1682009-03-24 20:50:39 -0400684 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
685 if (!stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400686 return -ENOMEM;
687
Steven Rostedt318e0a72009-03-25 20:06:34 -0400688#ifdef CONFIG_DYNAMIC_FTRACE
689 functions = ftrace_update_tot_cnt;
690#else
691 /*
692 * We do not know the number of functions that exist because
693 * dynamic tracing is what counts them. With past experience
694 * we have around 20K functions. That should be more than enough.
695 * It is highly unlikely we will execute every function in
696 * the kernel.
697 */
698 functions = 20000;
699#endif
700
Steven Rostedtcafb1682009-03-24 20:50:39 -0400701 pg = stat->start = stat->pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400702
Steven Rostedt318e0a72009-03-25 20:06:34 -0400703 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
704
Namhyung Kim39e30cd2013-04-01 21:46:24 +0900705 for (i = 1; i < pages; i++) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400706 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400707 if (!pg->next)
Steven Rostedt318e0a72009-03-25 20:06:34 -0400708 goto out_free;
Steven Rostedt493762f2009-03-23 17:12:36 -0400709 pg = pg->next;
710 }
711
712 return 0;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400713
714 out_free:
715 pg = stat->start;
716 while (pg) {
717 unsigned long tmp = (unsigned long)pg;
718
719 pg = pg->next;
720 free_page(tmp);
721 }
722
Steven Rostedt318e0a72009-03-25 20:06:34 -0400723 stat->pages = NULL;
724 stat->start = NULL;
725
726 return -ENOMEM;
Steven Rostedt493762f2009-03-23 17:12:36 -0400727}
728
Steven Rostedtcafb1682009-03-24 20:50:39 -0400729static int ftrace_profile_init_cpu(int cpu)
Steven Rostedt493762f2009-03-23 17:12:36 -0400730{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400731 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400732 int size;
733
Steven Rostedtcafb1682009-03-24 20:50:39 -0400734 stat = &per_cpu(ftrace_profile_stats, cpu);
735
736 if (stat->hash) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400737 /* If the profile is already created, simply reset it */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400738 ftrace_profile_reset(stat);
Steven Rostedt493762f2009-03-23 17:12:36 -0400739 return 0;
740 }
741
742 /*
743 * We are profiling all functions, but usually only a few thousand
744 * functions are hit. We'll make a hash of 1024 items.
745 */
746 size = FTRACE_PROFILE_HASH_SIZE;
747
Steven Rostedtcafb1682009-03-24 20:50:39 -0400748 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400749
Steven Rostedtcafb1682009-03-24 20:50:39 -0400750 if (!stat->hash)
Steven Rostedt493762f2009-03-23 17:12:36 -0400751 return -ENOMEM;
752
Steven Rostedt318e0a72009-03-25 20:06:34 -0400753 /* Preallocate the function profiling pages */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400754 if (ftrace_profile_pages_init(stat) < 0) {
755 kfree(stat->hash);
756 stat->hash = NULL;
Steven Rostedt493762f2009-03-23 17:12:36 -0400757 return -ENOMEM;
758 }
759
760 return 0;
761}
762
Steven Rostedtcafb1682009-03-24 20:50:39 -0400763static int ftrace_profile_init(void)
764{
765 int cpu;
766 int ret = 0;
767
Miao Xiec4602c12013-12-16 15:20:01 +0800768 for_each_possible_cpu(cpu) {
Steven Rostedtcafb1682009-03-24 20:50:39 -0400769 ret = ftrace_profile_init_cpu(cpu);
770 if (ret)
771 break;
772 }
773
774 return ret;
775}
776
Steven Rostedt493762f2009-03-23 17:12:36 -0400777/* interrupts must be disabled */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400778static struct ftrace_profile *
779ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400780{
781 struct ftrace_profile *rec;
782 struct hlist_head *hhd;
Steven Rostedt493762f2009-03-23 17:12:36 -0400783 unsigned long key;
784
Namhyung Kim20079eb2013-04-10 08:55:50 +0900785 key = hash_long(ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400786 hhd = &stat->hash[key];
Steven Rostedt493762f2009-03-23 17:12:36 -0400787
788 if (hlist_empty(hhd))
789 return NULL;
790
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400791 hlist_for_each_entry_rcu_notrace(rec, hhd, node) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400792 if (rec->ip == ip)
793 return rec;
794 }
795
796 return NULL;
797}
798
Steven Rostedtcafb1682009-03-24 20:50:39 -0400799static void ftrace_add_profile(struct ftrace_profile_stat *stat,
800 struct ftrace_profile *rec)
Steven Rostedt493762f2009-03-23 17:12:36 -0400801{
802 unsigned long key;
803
Namhyung Kim20079eb2013-04-10 08:55:50 +0900804 key = hash_long(rec->ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400805 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
Steven Rostedt493762f2009-03-23 17:12:36 -0400806}
807
Steven Rostedt318e0a72009-03-25 20:06:34 -0400808/*
809 * The memory is already allocated, this simply finds a new record to use.
810 */
Steven Rostedt493762f2009-03-23 17:12:36 -0400811static struct ftrace_profile *
Steven Rostedt318e0a72009-03-25 20:06:34 -0400812ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400813{
814 struct ftrace_profile *rec = NULL;
815
Steven Rostedt318e0a72009-03-25 20:06:34 -0400816 /* prevent recursion (from NMIs) */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400817 if (atomic_inc_return(&stat->disabled) != 1)
Steven Rostedt493762f2009-03-23 17:12:36 -0400818 goto out;
819
Steven Rostedt493762f2009-03-23 17:12:36 -0400820 /*
Steven Rostedt318e0a72009-03-25 20:06:34 -0400821 * Try to find the function again since an NMI
822 * could have added it
Steven Rostedt493762f2009-03-23 17:12:36 -0400823 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400824 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400825 if (rec)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400826 goto out;
Steven Rostedt493762f2009-03-23 17:12:36 -0400827
Steven Rostedtcafb1682009-03-24 20:50:39 -0400828 if (stat->pages->index == PROFILES_PER_PAGE) {
829 if (!stat->pages->next)
830 goto out;
831 stat->pages = stat->pages->next;
Steven Rostedt493762f2009-03-23 17:12:36 -0400832 }
833
Steven Rostedtcafb1682009-03-24 20:50:39 -0400834 rec = &stat->pages->records[stat->pages->index++];
Steven Rostedt493762f2009-03-23 17:12:36 -0400835 rec->ip = ip;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400836 ftrace_add_profile(stat, rec);
Steven Rostedt493762f2009-03-23 17:12:36 -0400837
Steven Rostedt493762f2009-03-23 17:12:36 -0400838 out:
Steven Rostedtcafb1682009-03-24 20:50:39 -0400839 atomic_dec(&stat->disabled);
Steven Rostedt493762f2009-03-23 17:12:36 -0400840
841 return rec;
842}
843
Steven Rostedt493762f2009-03-23 17:12:36 -0400844static void
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400845function_profile_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400846 struct ftrace_ops *ops, struct pt_regs *regs)
Steven Rostedt493762f2009-03-23 17:12:36 -0400847{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400848 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400849 struct ftrace_profile *rec;
850 unsigned long flags;
Steven Rostedt493762f2009-03-23 17:12:36 -0400851
852 if (!ftrace_profile_enabled)
853 return;
854
Steven Rostedt493762f2009-03-23 17:12:36 -0400855 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400856
Christoph Lameterbdffd892014-04-29 14:17:40 -0500857 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400858 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400859 goto out;
860
861 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400862 if (!rec) {
Steven Rostedt318e0a72009-03-25 20:06:34 -0400863 rec = ftrace_profile_alloc(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400864 if (!rec)
865 goto out;
866 }
867
868 rec->counter++;
869 out:
870 local_irq_restore(flags);
871}
872
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400873#ifdef CONFIG_FUNCTION_GRAPH_TRACER
874static int profile_graph_entry(struct ftrace_graph_ent *trace)
875{
Namhyung Kim8861dd32016-08-31 11:55:29 +0900876 int index = trace->depth;
877
Steven Rostedta1e2e312011-08-09 12:50:46 -0400878 function_profile_call(trace->func, 0, NULL, NULL);
Namhyung Kim8861dd32016-08-31 11:55:29 +0900879
Steven Rostedt (VMware)741397d2017-08-17 16:37:25 -0400880 /* If function graph is shutting down, ret_stack can be NULL */
881 if (!current->ret_stack)
882 return 0;
883
Namhyung Kim8861dd32016-08-31 11:55:29 +0900884 if (index >= 0 && index < FTRACE_RETFUNC_DEPTH)
885 current->ret_stack[index].subtime = 0;
886
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400887 return 1;
888}
889
890static void profile_graph_return(struct ftrace_graph_ret *trace)
891{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400892 struct ftrace_profile_stat *stat;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400893 unsigned long long calltime;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400894 struct ftrace_profile *rec;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400895 unsigned long flags;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400896
897 local_irq_save(flags);
Christoph Lameterbdffd892014-04-29 14:17:40 -0500898 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400899 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400900 goto out;
901
Steven Rostedt37e44bc2010-04-27 21:04:24 -0400902 /* If the calltime was zero'd ignore it */
903 if (!trace->calltime)
904 goto out;
905
Steven Rostedta2a16d62009-03-24 23:17:58 -0400906 calltime = trace->rettime - trace->calltime;
907
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400908 if (!fgraph_graph_time) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400909 int index;
910
911 index = trace->depth;
912
913 /* Append this call time to the parent time to subtract */
914 if (index)
915 current->ret_stack[index - 1].subtime += calltime;
916
917 if (current->ret_stack[index].subtime < calltime)
918 calltime -= current->ret_stack[index].subtime;
919 else
920 calltime = 0;
921 }
922
Steven Rostedtcafb1682009-03-24 20:50:39 -0400923 rec = ftrace_find_profiled_func(stat, trace->func);
Chase Douglase330b3b2010-04-26 14:02:05 -0400924 if (rec) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400925 rec->time += calltime;
Chase Douglase330b3b2010-04-26 14:02:05 -0400926 rec->time_squared += calltime * calltime;
927 }
Steven Rostedta2a16d62009-03-24 23:17:58 -0400928
Steven Rostedtcafb1682009-03-24 20:50:39 -0400929 out:
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400930 local_irq_restore(flags);
931}
932
933static int register_ftrace_profiler(void)
934{
935 return register_ftrace_graph(&profile_graph_return,
936 &profile_graph_entry);
937}
938
939static void unregister_ftrace_profiler(void)
940{
941 unregister_ftrace_graph();
942}
943#else
Paul McQuadebd38c0e2011-05-31 20:51:55 +0100944static struct ftrace_ops ftrace_profile_ops __read_mostly = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400945 .func = function_profile_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900946 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400947 INIT_OPS_HASH(ftrace_profile_ops)
Steven Rostedt493762f2009-03-23 17:12:36 -0400948};
949
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400950static int register_ftrace_profiler(void)
951{
952 return register_ftrace_function(&ftrace_profile_ops);
953}
954
955static void unregister_ftrace_profiler(void)
956{
957 unregister_ftrace_function(&ftrace_profile_ops);
958}
959#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
960
Steven Rostedt493762f2009-03-23 17:12:36 -0400961static ssize_t
962ftrace_profile_write(struct file *filp, const char __user *ubuf,
963 size_t cnt, loff_t *ppos)
964{
965 unsigned long val;
Steven Rostedt493762f2009-03-23 17:12:36 -0400966 int ret;
967
Peter Huewe22fe9b52011-06-07 21:58:27 +0200968 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
969 if (ret)
Steven Rostedt493762f2009-03-23 17:12:36 -0400970 return ret;
971
972 val = !!val;
973
974 mutex_lock(&ftrace_profile_lock);
975 if (ftrace_profile_enabled ^ val) {
976 if (val) {
977 ret = ftrace_profile_init();
978 if (ret < 0) {
979 cnt = ret;
980 goto out;
981 }
982
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400983 ret = register_ftrace_profiler();
984 if (ret < 0) {
985 cnt = ret;
986 goto out;
987 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400988 ftrace_profile_enabled = 1;
989 } else {
990 ftrace_profile_enabled = 0;
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400991 /*
992 * unregister_ftrace_profiler calls stop_machine
993 * so this acts like an synchronize_sched.
994 */
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400995 unregister_ftrace_profiler();
Steven Rostedt493762f2009-03-23 17:12:36 -0400996 }
997 }
998 out:
999 mutex_unlock(&ftrace_profile_lock);
1000
Jiri Olsacf8517c2009-10-23 19:36:16 -04001001 *ppos += cnt;
Steven Rostedt493762f2009-03-23 17:12:36 -04001002
1003 return cnt;
1004}
1005
1006static ssize_t
1007ftrace_profile_read(struct file *filp, char __user *ubuf,
1008 size_t cnt, loff_t *ppos)
1009{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001010 char buf[64]; /* big enough to hold a number */
Steven Rostedt493762f2009-03-23 17:12:36 -04001011 int r;
1012
1013 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
1014 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
1015}
1016
1017static const struct file_operations ftrace_profile_fops = {
1018 .open = tracing_open_generic,
1019 .read = ftrace_profile_read,
1020 .write = ftrace_profile_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001021 .llseek = default_llseek,
Steven Rostedt493762f2009-03-23 17:12:36 -04001022};
1023
Steven Rostedtcafb1682009-03-24 20:50:39 -04001024/* used to initialize the real stat files */
1025static struct tracer_stat function_stats __initdata = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001026 .name = "functions",
1027 .stat_start = function_stat_start,
1028 .stat_next = function_stat_next,
1029 .stat_cmp = function_stat_cmp,
1030 .stat_headers = function_stat_headers,
1031 .stat_show = function_stat_show
Steven Rostedtcafb1682009-03-24 20:50:39 -04001032};
1033
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001034static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001035{
Steven Rostedtcafb1682009-03-24 20:50:39 -04001036 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -04001037 struct dentry *entry;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001038 char *name;
Steven Rostedt493762f2009-03-23 17:12:36 -04001039 int ret;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001040 int cpu;
Steven Rostedt493762f2009-03-23 17:12:36 -04001041
Steven Rostedtcafb1682009-03-24 20:50:39 -04001042 for_each_possible_cpu(cpu) {
1043 stat = &per_cpu(ftrace_profile_stats, cpu);
1044
Geliang Tang6363c6b2016-03-15 22:12:34 +08001045 name = kasprintf(GFP_KERNEL, "function%d", cpu);
Steven Rostedtcafb1682009-03-24 20:50:39 -04001046 if (!name) {
1047 /*
1048 * The files created are permanent, if something happens
1049 * we still do not free memory.
1050 */
Steven Rostedtcafb1682009-03-24 20:50:39 -04001051 WARN(1,
1052 "Could not allocate stat file for cpu %d\n",
1053 cpu);
1054 return;
1055 }
1056 stat->stat = function_stats;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001057 stat->stat.name = name;
1058 ret = register_stat_tracer(&stat->stat);
1059 if (ret) {
1060 WARN(1,
1061 "Could not register function stat for cpu %d\n",
1062 cpu);
1063 kfree(name);
1064 return;
1065 }
Steven Rostedt493762f2009-03-23 17:12:36 -04001066 }
1067
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001068 entry = tracefs_create_file("function_profile_enabled", 0644,
Steven Rostedt493762f2009-03-23 17:12:36 -04001069 d_tracer, NULL, &ftrace_profile_fops);
1070 if (!entry)
Joe Perchesa395d6a2016-03-22 14:28:09 -07001071 pr_warn("Could not create tracefs 'function_profile_enabled' entry\n");
Steven Rostedt493762f2009-03-23 17:12:36 -04001072}
1073
1074#else /* CONFIG_FUNCTION_PROFILER */
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001075static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001076{
1077}
1078#endif /* CONFIG_FUNCTION_PROFILER */
1079
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001080static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1081
Pratyush Anand1619dc32015-03-06 23:58:06 +05301082#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1083static int ftrace_graph_active;
1084#else
1085# define ftrace_graph_active 0
1086#endif
1087
Steven Rostedt3d083392008-05-12 21:20:42 +02001088#ifdef CONFIG_DYNAMIC_FTRACE
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001089
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001090static struct ftrace_ops *removed_ops;
1091
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04001092/*
1093 * Set when doing a global update, like enabling all recs or disabling them.
1094 * It is not set when just updating a single ftrace_ops.
1095 */
1096static bool update_all_ops;
1097
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001098#ifndef CONFIG_FTRACE_MCOUNT_RECORD
Steven Rostedtcb7be3b2008-10-23 09:33:05 -04001099# error Dynamic ftrace depends on MCOUNT_RECORD
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001100#endif
1101
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001102static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
1103
Steven Rostedtb6887d72009-02-17 12:32:04 -05001104struct ftrace_func_probe {
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001105 struct hlist_node node;
Steven Rostedtb6887d72009-02-17 12:32:04 -05001106 struct ftrace_probe_ops *ops;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001107 unsigned long flags;
1108 unsigned long ip;
1109 void *data;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04001110 struct list_head free_list;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001111};
1112
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001113struct ftrace_func_entry {
1114 struct hlist_node hlist;
1115 unsigned long ip;
1116};
1117
1118struct ftrace_hash {
1119 unsigned long size_bits;
1120 struct hlist_head *buckets;
1121 unsigned long count;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001122 struct rcu_head rcu;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001123};
1124
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001125/*
1126 * We make these constant because no one should touch them,
1127 * but they are used as the default "empty hash", to avoid allocating
1128 * it all the time. These are in a read only section such that if
1129 * anyone does try to modify it, it will cause an exception.
1130 */
1131static const struct hlist_head empty_buckets[1];
1132static const struct ftrace_hash empty_hash = {
1133 .buckets = (struct hlist_head *)empty_buckets,
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001134};
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001135#define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02001136
Steven Rostedt2b499382011-05-03 22:49:52 -04001137static struct ftrace_ops global_ops = {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001138 .func = ftrace_stub,
1139 .local_hash.notrace_hash = EMPTY_HASH,
1140 .local_hash.filter_hash = EMPTY_HASH,
1141 INIT_OPS_HASH(global_ops)
1142 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04001143 FTRACE_OPS_FL_INITIALIZED |
1144 FTRACE_OPS_FL_PID,
Steven Rostedtf45948e2011-05-02 12:29:25 -04001145};
1146
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001147/*
1148 * This is used by __kernel_text_address() to return true if the
Steven Rostedt (Red Hat)0af26492014-11-20 10:05:36 -05001149 * address is on a dynamically allocated trampoline that would
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001150 * not return true for either core_kernel_text() or
1151 * is_module_text_address().
1152 */
1153bool is_ftrace_trampoline(unsigned long addr)
1154{
1155 struct ftrace_ops *op;
1156 bool ret = false;
1157
1158 /*
1159 * Some of the ops may be dynamically allocated,
1160 * they are freed after a synchronize_sched().
1161 */
1162 preempt_disable_notrace();
1163
1164 do_for_each_ftrace_op(op, ftrace_ops_list) {
1165 /*
1166 * This is to check for dynamically allocated trampolines.
1167 * Trampolines that are in kernel text will have
1168 * core_kernel_text() return true.
1169 */
1170 if (op->trampoline && op->trampoline_size)
1171 if (addr >= op->trampoline &&
1172 addr < op->trampoline + op->trampoline_size) {
1173 ret = true;
1174 goto out;
1175 }
1176 } while_for_each_ftrace_op(op);
1177
1178 out:
1179 preempt_enable_notrace();
1180
1181 return ret;
1182}
1183
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001184struct ftrace_page {
1185 struct ftrace_page *next;
Steven Rostedta7900872011-12-16 16:23:44 -05001186 struct dyn_ftrace *records;
Steven Rostedt431aa3f2009-01-06 12:43:01 -05001187 int index;
Steven Rostedta7900872011-12-16 16:23:44 -05001188 int size;
David Milleraa5e5ce2008-05-13 22:06:56 -07001189};
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001190
Steven Rostedta7900872011-12-16 16:23:44 -05001191#define ENTRY_SIZE sizeof(struct dyn_ftrace)
1192#define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001193
1194/* estimate from running different kernels */
1195#define NR_TO_INIT 10000
1196
1197static struct ftrace_page *ftrace_pages_start;
1198static struct ftrace_page *ftrace_pages;
1199
Steven Rostedt (Red Hat)68f40962014-05-01 12:44:50 -04001200static bool __always_inline ftrace_hash_empty(struct ftrace_hash *hash)
Steven Rostedt06a51d92011-12-19 19:07:36 -05001201{
1202 return !hash || !hash->count;
1203}
1204
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001205static struct ftrace_func_entry *
1206ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1207{
1208 unsigned long key;
1209 struct ftrace_func_entry *entry;
1210 struct hlist_head *hhd;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001211
Steven Rostedt06a51d92011-12-19 19:07:36 -05001212 if (ftrace_hash_empty(hash))
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001213 return NULL;
1214
1215 if (hash->size_bits > 0)
1216 key = hash_long(ip, hash->size_bits);
1217 else
1218 key = 0;
1219
1220 hhd = &hash->buckets[key];
1221
Steven Rostedt1bb539c2013-05-28 14:38:43 -04001222 hlist_for_each_entry_rcu_notrace(entry, hhd, hlist) {
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001223 if (entry->ip == ip)
1224 return entry;
1225 }
1226 return NULL;
1227}
1228
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001229static void __add_hash_entry(struct ftrace_hash *hash,
1230 struct ftrace_func_entry *entry)
1231{
1232 struct hlist_head *hhd;
1233 unsigned long key;
1234
1235 if (hash->size_bits)
1236 key = hash_long(entry->ip, hash->size_bits);
1237 else
1238 key = 0;
1239
1240 hhd = &hash->buckets[key];
1241 hlist_add_head(&entry->hlist, hhd);
1242 hash->count++;
1243}
1244
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001245static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1246{
1247 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001248
1249 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1250 if (!entry)
1251 return -ENOMEM;
1252
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001253 entry->ip = ip;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001254 __add_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001255
1256 return 0;
1257}
1258
1259static void
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001260free_hash_entry(struct ftrace_hash *hash,
1261 struct ftrace_func_entry *entry)
1262{
1263 hlist_del(&entry->hlist);
1264 kfree(entry);
1265 hash->count--;
1266}
1267
1268static void
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001269remove_hash_entry(struct ftrace_hash *hash,
1270 struct ftrace_func_entry *entry)
1271{
1272 hlist_del(&entry->hlist);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001273 hash->count--;
1274}
1275
1276static void ftrace_hash_clear(struct ftrace_hash *hash)
1277{
1278 struct hlist_head *hhd;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001279 struct hlist_node *tn;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001280 struct ftrace_func_entry *entry;
1281 int size = 1 << hash->size_bits;
1282 int i;
1283
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001284 if (!hash->count)
1285 return;
1286
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001287 for (i = 0; i < size; i++) {
1288 hhd = &hash->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001289 hlist_for_each_entry_safe(entry, tn, hhd, hlist)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001290 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001291 }
1292 FTRACE_WARN_ON(hash->count);
1293}
1294
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001295static void free_ftrace_hash(struct ftrace_hash *hash)
1296{
1297 if (!hash || hash == EMPTY_HASH)
1298 return;
1299 ftrace_hash_clear(hash);
1300 kfree(hash->buckets);
1301 kfree(hash);
1302}
1303
Steven Rostedt07fd5512011-05-05 18:03:47 -04001304static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1305{
1306 struct ftrace_hash *hash;
1307
1308 hash = container_of(rcu, struct ftrace_hash, rcu);
1309 free_ftrace_hash(hash);
1310}
1311
1312static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1313{
1314 if (!hash || hash == EMPTY_HASH)
1315 return;
1316 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1317}
1318
Jiri Olsa5500fa52012-02-15 15:51:54 +01001319void ftrace_free_filter(struct ftrace_ops *ops)
1320{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09001321 ftrace_ops_init(ops);
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001322 free_ftrace_hash(ops->func_hash->filter_hash);
1323 free_ftrace_hash(ops->func_hash->notrace_hash);
Jiri Olsa5500fa52012-02-15 15:51:54 +01001324}
1325
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001326static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1327{
1328 struct ftrace_hash *hash;
1329 int size;
1330
1331 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1332 if (!hash)
1333 return NULL;
1334
1335 size = 1 << size_bits;
Thomas Meyer47b0edc2011-11-29 22:08:00 +01001336 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001337
1338 if (!hash->buckets) {
1339 kfree(hash);
1340 return NULL;
1341 }
1342
1343 hash->size_bits = size_bits;
1344
1345 return hash;
1346}
1347
1348static struct ftrace_hash *
1349alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1350{
1351 struct ftrace_func_entry *entry;
1352 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001353 int size;
1354 int ret;
1355 int i;
1356
1357 new_hash = alloc_ftrace_hash(size_bits);
1358 if (!new_hash)
1359 return NULL;
1360
1361 /* Empty hash? */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001362 if (ftrace_hash_empty(hash))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001363 return new_hash;
1364
1365 size = 1 << hash->size_bits;
1366 for (i = 0; i < size; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001367 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001368 ret = add_hash_entry(new_hash, entry->ip);
1369 if (ret < 0)
1370 goto free_hash;
1371 }
1372 }
1373
1374 FTRACE_WARN_ON(new_hash->count != hash->count);
1375
1376 return new_hash;
1377
1378 free_hash:
1379 free_ftrace_hash(new_hash);
1380 return NULL;
1381}
1382
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001383static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001384ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001385static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001386ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001387
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001388static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1389 struct ftrace_hash *new_hash);
1390
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001391static int
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001392ftrace_hash_move(struct ftrace_ops *ops, int enable,
1393 struct ftrace_hash **dst, struct ftrace_hash *src)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001394{
1395 struct ftrace_func_entry *entry;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001396 struct hlist_node *tn;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001397 struct hlist_head *hhd;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001398 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001399 int size = src->count;
1400 int bits = 0;
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001401 int ret;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001402 int i;
1403
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001404 /* Reject setting notrace hash on IPMODIFY ftrace_ops */
1405 if (ops->flags & FTRACE_OPS_FL_IPMODIFY && !enable)
1406 return -EINVAL;
1407
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001408 /*
1409 * If the new source is empty, just free dst and assign it
1410 * the empty_hash.
1411 */
1412 if (!src->count) {
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001413 new_hash = EMPTY_HASH;
1414 goto update;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001415 }
1416
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001417 /*
1418 * Make the hash size about 1/2 the # found
1419 */
1420 for (size /= 2; size; size >>= 1)
1421 bits++;
1422
1423 /* Don't allocate too much */
1424 if (bits > FTRACE_HASH_MAX_BITS)
1425 bits = FTRACE_HASH_MAX_BITS;
1426
Steven Rostedt07fd5512011-05-05 18:03:47 -04001427 new_hash = alloc_ftrace_hash(bits);
1428 if (!new_hash)
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001429 return -ENOMEM;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001430
1431 size = 1 << src->size_bits;
1432 for (i = 0; i < size; i++) {
1433 hhd = &src->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001434 hlist_for_each_entry_safe(entry, tn, hhd, hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001435 remove_hash_entry(src, entry);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001436 __add_hash_entry(new_hash, entry);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001437 }
1438 }
1439
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001440update:
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001441 /* Make sure this can be applied if it is IPMODIFY ftrace_ops */
1442 if (enable) {
1443 /* IPMODIFY should be updated only when filter_hash updating */
1444 ret = ftrace_hash_ipmodify_update(ops, new_hash);
1445 if (ret < 0) {
1446 free_ftrace_hash(new_hash);
1447 return ret;
1448 }
1449 }
1450
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001451 /*
1452 * Remove the current set, update the hash and add
1453 * them back.
1454 */
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001455 ftrace_hash_rec_disable_modify(ops, enable);
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001456
Steven Rostedt07fd5512011-05-05 18:03:47 -04001457 rcu_assign_pointer(*dst, new_hash);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001458
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001459 ftrace_hash_rec_enable_modify(ops, enable);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001460
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001461 return 0;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001462}
1463
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001464static bool hash_contains_ip(unsigned long ip,
1465 struct ftrace_ops_hash *hash)
1466{
1467 /*
1468 * The function record is a match if it exists in the filter
1469 * hash and not in the notrace hash. Note, an emty hash is
1470 * considered a match for the filter hash, but an empty
1471 * notrace hash is considered not in the notrace hash.
1472 */
1473 return (ftrace_hash_empty(hash->filter_hash) ||
1474 ftrace_lookup_ip(hash->filter_hash, ip)) &&
1475 (ftrace_hash_empty(hash->notrace_hash) ||
1476 !ftrace_lookup_ip(hash->notrace_hash, ip));
1477}
1478
Steven Rostedt265c8312009-02-13 12:43:56 -05001479/*
Steven Rostedtb8489142011-05-04 09:27:52 -04001480 * Test the hashes for this ops to see if we want to call
1481 * the ops->func or not.
1482 *
1483 * It's a match if the ip is in the ops->filter_hash or
1484 * the filter_hash does not exist or is empty,
1485 * AND
1486 * the ip is not in the ops->notrace_hash.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04001487 *
1488 * This needs to be called with preemption disabled as
1489 * the hashes are freed with call_rcu_sched().
Steven Rostedtb8489142011-05-04 09:27:52 -04001490 */
1491static int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001492ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04001493{
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001494 struct ftrace_ops_hash hash;
Steven Rostedtb8489142011-05-04 09:27:52 -04001495 int ret;
1496
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001497#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1498 /*
1499 * There's a small race when adding ops that the ftrace handler
1500 * that wants regs, may be called without them. We can not
1501 * allow that handler to be called if regs is NULL.
1502 */
1503 if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS))
1504 return 0;
1505#endif
1506
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001507 hash.filter_hash = rcu_dereference_raw_notrace(ops->func_hash->filter_hash);
1508 hash.notrace_hash = rcu_dereference_raw_notrace(ops->func_hash->notrace_hash);
Steven Rostedtb8489142011-05-04 09:27:52 -04001509
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001510 if (hash_contains_ip(ip, &hash))
Steven Rostedtb8489142011-05-04 09:27:52 -04001511 ret = 1;
1512 else
1513 ret = 0;
Steven Rostedtb8489142011-05-04 09:27:52 -04001514
1515 return ret;
1516}
1517
1518/*
Steven Rostedt265c8312009-02-13 12:43:56 -05001519 * This is a double for. Do not use 'break' to break out of the loop,
1520 * you must use a goto.
1521 */
1522#define do_for_each_ftrace_rec(pg, rec) \
1523 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1524 int _____i; \
1525 for (_____i = 0; _____i < pg->index; _____i++) { \
1526 rec = &pg->records[_____i];
1527
1528#define while_for_each_ftrace_rec() \
1529 } \
1530 }
Abhishek Sagarecea6562008-06-21 23:47:53 +05301531
Steven Rostedt5855fea2011-12-16 19:27:42 -05001532
1533static int ftrace_cmp_recs(const void *a, const void *b)
1534{
Steven Rostedta650e022012-04-25 13:48:13 -04001535 const struct dyn_ftrace *key = a;
1536 const struct dyn_ftrace *rec = b;
Steven Rostedt5855fea2011-12-16 19:27:42 -05001537
Steven Rostedta650e022012-04-25 13:48:13 -04001538 if (key->flags < rec->ip)
Steven Rostedt5855fea2011-12-16 19:27:42 -05001539 return -1;
Steven Rostedta650e022012-04-25 13:48:13 -04001540 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1541 return 1;
1542 return 0;
1543}
1544
Michael Ellerman04cf31a2016-03-24 22:04:01 +11001545/**
1546 * ftrace_location_range - return the first address of a traced location
1547 * if it touches the given ip range
1548 * @start: start of range to search.
1549 * @end: end of range to search (inclusive). @end points to the last byte
1550 * to check.
1551 *
1552 * Returns rec->ip if the related ftrace location is a least partly within
1553 * the given address range. That is, the first address of the instruction
1554 * that is either a NOP or call to the function tracer. It checks the ftrace
1555 * internal tables to determine if the address belongs or not.
1556 */
1557unsigned long ftrace_location_range(unsigned long start, unsigned long end)
Steven Rostedta650e022012-04-25 13:48:13 -04001558{
1559 struct ftrace_page *pg;
1560 struct dyn_ftrace *rec;
1561 struct dyn_ftrace key;
1562
1563 key.ip = start;
1564 key.flags = end; /* overload flags, as it is unsigned long */
1565
1566 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1567 if (end < pg->records[0].ip ||
1568 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1569 continue;
1570 rec = bsearch(&key, pg->records, pg->index,
1571 sizeof(struct dyn_ftrace),
1572 ftrace_cmp_recs);
1573 if (rec)
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001574 return rec->ip;
Steven Rostedta650e022012-04-25 13:48:13 -04001575 }
1576
Steven Rostedt5855fea2011-12-16 19:27:42 -05001577 return 0;
1578}
1579
Steven Rostedtc88fd862011-08-16 09:53:39 -04001580/**
1581 * ftrace_location - return true if the ip giving is a traced location
1582 * @ip: the instruction pointer to check
1583 *
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001584 * Returns rec->ip if @ip given is a pointer to a ftrace location.
Steven Rostedtc88fd862011-08-16 09:53:39 -04001585 * That is, the instruction that is either a NOP or call to
1586 * the function tracer. It checks the ftrace internal tables to
1587 * determine if the address belongs or not.
1588 */
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001589unsigned long ftrace_location(unsigned long ip)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001590{
Steven Rostedta650e022012-04-25 13:48:13 -04001591 return ftrace_location_range(ip, ip);
1592}
Steven Rostedtc88fd862011-08-16 09:53:39 -04001593
Steven Rostedta650e022012-04-25 13:48:13 -04001594/**
1595 * ftrace_text_reserved - return true if range contains an ftrace location
1596 * @start: start of range to search
1597 * @end: end of range to search (inclusive). @end points to the last byte to check.
1598 *
1599 * Returns 1 if @start and @end contains a ftrace location.
1600 * That is, the instruction that is either a NOP or call to
1601 * the function tracer. It checks the ftrace internal tables to
1602 * determine if the address belongs or not.
1603 */
Sasha Levind88471c2013-01-09 18:09:20 -05001604int ftrace_text_reserved(const void *start, const void *end)
Steven Rostedta650e022012-04-25 13:48:13 -04001605{
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001606 unsigned long ret;
1607
1608 ret = ftrace_location_range((unsigned long)start,
1609 (unsigned long)end);
1610
1611 return (int)!!ret;
Steven Rostedtc88fd862011-08-16 09:53:39 -04001612}
1613
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001614/* Test if ops registered to this rec needs regs */
1615static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec)
1616{
1617 struct ftrace_ops *ops;
1618 bool keep_regs = false;
1619
1620 for (ops = ftrace_ops_list;
1621 ops != &ftrace_list_end; ops = ops->next) {
1622 /* pass rec in as regs to have non-NULL val */
1623 if (ftrace_ops_test(ops, rec->ip, rec)) {
1624 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1625 keep_regs = true;
1626 break;
1627 }
1628 }
1629 }
1630
1631 return keep_regs;
1632}
1633
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001634static bool __ftrace_hash_rec_update(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001635 int filter_hash,
1636 bool inc)
1637{
1638 struct ftrace_hash *hash;
1639 struct ftrace_hash *other_hash;
1640 struct ftrace_page *pg;
1641 struct dyn_ftrace *rec;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001642 bool update = false;
Steven Rostedted926f92011-05-03 13:25:24 -04001643 int count = 0;
1644 int all = 0;
1645
1646 /* Only update if the ops has been registered */
1647 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001648 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001649
1650 /*
1651 * In the filter_hash case:
1652 * If the count is zero, we update all records.
1653 * Otherwise we just update the items in the hash.
1654 *
1655 * In the notrace_hash case:
1656 * We enable the update in the hash.
1657 * As disabling notrace means enabling the tracing,
1658 * and enabling notrace means disabling, the inc variable
1659 * gets inversed.
1660 */
1661 if (filter_hash) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001662 hash = ops->func_hash->filter_hash;
1663 other_hash = ops->func_hash->notrace_hash;
Steven Rostedt06a51d92011-12-19 19:07:36 -05001664 if (ftrace_hash_empty(hash))
Steven Rostedted926f92011-05-03 13:25:24 -04001665 all = 1;
1666 } else {
1667 inc = !inc;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001668 hash = ops->func_hash->notrace_hash;
1669 other_hash = ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04001670 /*
1671 * If the notrace hash has no items,
1672 * then there's nothing to do.
1673 */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001674 if (ftrace_hash_empty(hash))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001675 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001676 }
1677
1678 do_for_each_ftrace_rec(pg, rec) {
1679 int in_other_hash = 0;
1680 int in_hash = 0;
1681 int match = 0;
1682
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05001683 if (rec->flags & FTRACE_FL_DISABLED)
1684 continue;
1685
Steven Rostedted926f92011-05-03 13:25:24 -04001686 if (all) {
1687 /*
1688 * Only the filter_hash affects all records.
1689 * Update if the record is not in the notrace hash.
1690 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001691 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
Steven Rostedted926f92011-05-03 13:25:24 -04001692 match = 1;
1693 } else {
Steven Rostedt06a51d92011-12-19 19:07:36 -05001694 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1695 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
Steven Rostedted926f92011-05-03 13:25:24 -04001696
1697 /*
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001698 * If filter_hash is set, we want to match all functions
1699 * that are in the hash but not in the other hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001700 *
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001701 * If filter_hash is not set, then we are decrementing.
1702 * That means we match anything that is in the hash
1703 * and also in the other_hash. That is, we need to turn
1704 * off functions in the other hash because they are disabled
1705 * by this hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001706 */
1707 if (filter_hash && in_hash && !in_other_hash)
1708 match = 1;
1709 else if (!filter_hash && in_hash &&
Steven Rostedt06a51d92011-12-19 19:07:36 -05001710 (in_other_hash || ftrace_hash_empty(other_hash)))
Steven Rostedted926f92011-05-03 13:25:24 -04001711 match = 1;
1712 }
1713 if (!match)
1714 continue;
1715
1716 if (inc) {
1717 rec->flags++;
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001718 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001719 return false;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001720
1721 /*
1722 * If there's only a single callback registered to a
1723 * function, and the ops has a trampoline registered
1724 * for it, then we can call it directly.
1725 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001726 if (ftrace_rec_count(rec) == 1 && ops->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001727 rec->flags |= FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001728 else
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001729 /*
1730 * If we are adding another function callback
1731 * to this function, and the previous had a
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04001732 * custom trampoline in use, then we need to go
1733 * back to the default trampoline.
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001734 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001735 rec->flags &= ~FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001736
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001737 /*
1738 * If any ops wants regs saved for this function
1739 * then all ops will get saved regs.
1740 */
1741 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1742 rec->flags |= FTRACE_FL_REGS;
Steven Rostedted926f92011-05-03 13:25:24 -04001743 } else {
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001744 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001745 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001746 rec->flags--;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001747
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001748 /*
1749 * If the rec had REGS enabled and the ops that is
1750 * being removed had REGS set, then see if there is
1751 * still any ops for this record that wants regs.
1752 * If not, we can stop recording them.
1753 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001754 if (ftrace_rec_count(rec) > 0 &&
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001755 rec->flags & FTRACE_FL_REGS &&
1756 ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1757 if (!test_rec_ops_needs_regs(rec))
1758 rec->flags &= ~FTRACE_FL_REGS;
1759 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001760
1761 /*
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001762 * If the rec had TRAMP enabled, then it needs to
1763 * be cleared. As TRAMP can only be enabled iff
1764 * there is only a single ops attached to it.
1765 * In otherwords, always disable it on decrementing.
1766 * In the future, we may set it if rec count is
1767 * decremented to one, and the ops that is left
1768 * has a trampoline.
1769 */
1770 rec->flags &= ~FTRACE_FL_TRAMP;
1771
1772 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001773 * flags will be cleared in ftrace_check_record()
1774 * if rec count is zero.
1775 */
Steven Rostedted926f92011-05-03 13:25:24 -04001776 }
1777 count++;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001778
1779 /* Must match FTRACE_UPDATE_CALLS in ftrace_modify_all_code() */
1780 update |= ftrace_test_record(rec, 1) != FTRACE_UPDATE_IGNORE;
1781
Steven Rostedted926f92011-05-03 13:25:24 -04001782 /* Shortcut, if we handled all records, we are done. */
1783 if (!all && count == hash->count)
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001784 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001785 } while_for_each_ftrace_rec();
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001786
1787 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001788}
1789
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001790static bool ftrace_hash_rec_disable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001791 int filter_hash)
1792{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001793 return __ftrace_hash_rec_update(ops, filter_hash, 0);
Steven Rostedted926f92011-05-03 13:25:24 -04001794}
1795
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001796static bool ftrace_hash_rec_enable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001797 int filter_hash)
1798{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001799 return __ftrace_hash_rec_update(ops, filter_hash, 1);
Steven Rostedted926f92011-05-03 13:25:24 -04001800}
1801
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001802static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops,
1803 int filter_hash, int inc)
1804{
1805 struct ftrace_ops *op;
1806
1807 __ftrace_hash_rec_update(ops, filter_hash, inc);
1808
1809 if (ops->func_hash != &global_ops.local_hash)
1810 return;
1811
1812 /*
1813 * If the ops shares the global_ops hash, then we need to update
1814 * all ops that are enabled and use this hash.
1815 */
1816 do_for_each_ftrace_op(op, ftrace_ops_list) {
1817 /* Already done */
1818 if (op == ops)
1819 continue;
1820 if (op->func_hash == &global_ops.local_hash)
1821 __ftrace_hash_rec_update(op, filter_hash, inc);
1822 } while_for_each_ftrace_op(op);
1823}
1824
1825static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops,
1826 int filter_hash)
1827{
1828 ftrace_hash_rec_update_modify(ops, filter_hash, 0);
1829}
1830
1831static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops,
1832 int filter_hash)
1833{
1834 ftrace_hash_rec_update_modify(ops, filter_hash, 1);
1835}
1836
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001837/*
1838 * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK
1839 * or no-needed to update, -EBUSY if it detects a conflict of the flag
1840 * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs.
1841 * Note that old_hash and new_hash has below meanings
1842 * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected)
1843 * - If the hash is EMPTY_HASH, it hits nothing
1844 * - Anything else hits the recs which match the hash entries.
1845 */
1846static int __ftrace_hash_update_ipmodify(struct ftrace_ops *ops,
1847 struct ftrace_hash *old_hash,
1848 struct ftrace_hash *new_hash)
1849{
1850 struct ftrace_page *pg;
1851 struct dyn_ftrace *rec, *end = NULL;
1852 int in_old, in_new;
1853
1854 /* Only update if the ops has been registered */
1855 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1856 return 0;
1857
1858 if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY))
1859 return 0;
1860
1861 /*
1862 * Since the IPMODIFY is a very address sensitive action, we do not
1863 * allow ftrace_ops to set all functions to new hash.
1864 */
1865 if (!new_hash || !old_hash)
1866 return -EINVAL;
1867
1868 /* Update rec->flags */
1869 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05001870
1871 if (rec->flags & FTRACE_FL_DISABLED)
1872 continue;
1873
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001874 /* We need to update only differences of filter_hash */
1875 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1876 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1877 if (in_old == in_new)
1878 continue;
1879
1880 if (in_new) {
1881 /* New entries must ensure no others are using it */
1882 if (rec->flags & FTRACE_FL_IPMODIFY)
1883 goto rollback;
1884 rec->flags |= FTRACE_FL_IPMODIFY;
1885 } else /* Removed entry */
1886 rec->flags &= ~FTRACE_FL_IPMODIFY;
1887 } while_for_each_ftrace_rec();
1888
1889 return 0;
1890
1891rollback:
1892 end = rec;
1893
1894 /* Roll back what we did above */
1895 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05001896
1897 if (rec->flags & FTRACE_FL_DISABLED)
1898 continue;
1899
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001900 if (rec == end)
1901 goto err_out;
1902
1903 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1904 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1905 if (in_old == in_new)
1906 continue;
1907
1908 if (in_new)
1909 rec->flags &= ~FTRACE_FL_IPMODIFY;
1910 else
1911 rec->flags |= FTRACE_FL_IPMODIFY;
1912 } while_for_each_ftrace_rec();
1913
1914err_out:
1915 return -EBUSY;
1916}
1917
1918static int ftrace_hash_ipmodify_enable(struct ftrace_ops *ops)
1919{
1920 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1921
1922 if (ftrace_hash_empty(hash))
1923 hash = NULL;
1924
1925 return __ftrace_hash_update_ipmodify(ops, EMPTY_HASH, hash);
1926}
1927
1928/* Disabling always succeeds */
1929static void ftrace_hash_ipmodify_disable(struct ftrace_ops *ops)
1930{
1931 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1932
1933 if (ftrace_hash_empty(hash))
1934 hash = NULL;
1935
1936 __ftrace_hash_update_ipmodify(ops, hash, EMPTY_HASH);
1937}
1938
1939static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1940 struct ftrace_hash *new_hash)
1941{
1942 struct ftrace_hash *old_hash = ops->func_hash->filter_hash;
1943
1944 if (ftrace_hash_empty(old_hash))
1945 old_hash = NULL;
1946
1947 if (ftrace_hash_empty(new_hash))
1948 new_hash = NULL;
1949
1950 return __ftrace_hash_update_ipmodify(ops, old_hash, new_hash);
1951}
1952
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05001953static void print_ip_ins(const char *fmt, const unsigned char *p)
Steven Rostedt05736a42008-09-22 14:55:47 -07001954{
1955 int i;
1956
1957 printk(KERN_CONT "%s", fmt);
1958
1959 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1960 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1961}
1962
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001963static struct ftrace_ops *
1964ftrace_find_tramp_ops_any(struct dyn_ftrace *rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05001965static struct ftrace_ops *
1966ftrace_find_tramp_ops_next(struct dyn_ftrace *rec, struct ftrace_ops *ops);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001967
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05001968enum ftrace_bug_type ftrace_bug_type;
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05001969const void *ftrace_expected;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05001970
1971static void print_bug_type(void)
1972{
1973 switch (ftrace_bug_type) {
1974 case FTRACE_BUG_UNKNOWN:
1975 break;
1976 case FTRACE_BUG_INIT:
1977 pr_info("Initializing ftrace call sites\n");
1978 break;
1979 case FTRACE_BUG_NOP:
1980 pr_info("Setting ftrace call site to NOP\n");
1981 break;
1982 case FTRACE_BUG_CALL:
1983 pr_info("Setting ftrace call site to call ftrace function\n");
1984 break;
1985 case FTRACE_BUG_UPDATE:
1986 pr_info("Updating ftrace call site to call a different ftrace function\n");
1987 break;
1988 }
1989}
1990
Steven Rostedtc88fd862011-08-16 09:53:39 -04001991/**
1992 * ftrace_bug - report and shutdown function tracer
1993 * @failed: The failed type (EFAULT, EINVAL, EPERM)
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001994 * @rec: The record that failed
Steven Rostedtc88fd862011-08-16 09:53:39 -04001995 *
1996 * The arch code that enables or disables the function tracing
1997 * can call ftrace_bug() when it has detected a problem in
1998 * modifying the code. @failed should be one of either:
1999 * EFAULT - if the problem happens on reading the @ip address
2000 * EINVAL - if what is read at @ip is not what was expected
2001 * EPERM - if the problem happens on writting to the @ip address
2002 */
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002003void ftrace_bug(int failed, struct dyn_ftrace *rec)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002004{
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002005 unsigned long ip = rec ? rec->ip : 0;
2006
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002007 switch (failed) {
2008 case -EFAULT:
2009 FTRACE_WARN_ON_ONCE(1);
2010 pr_info("ftrace faulted on modifying ");
2011 print_ip_sym(ip);
2012 break;
2013 case -EINVAL:
2014 FTRACE_WARN_ON_ONCE(1);
2015 pr_info("ftrace failed to modify ");
2016 print_ip_sym(ip);
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002017 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002018 pr_cont("\n");
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002019 if (ftrace_expected) {
2020 print_ip_ins(" expected: ", ftrace_expected);
2021 pr_cont("\n");
2022 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002023 break;
2024 case -EPERM:
2025 FTRACE_WARN_ON_ONCE(1);
2026 pr_info("ftrace faulted on writing ");
2027 print_ip_sym(ip);
2028 break;
2029 default:
2030 FTRACE_WARN_ON_ONCE(1);
2031 pr_info("ftrace faulted on unknown error ");
2032 print_ip_sym(ip);
2033 }
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002034 print_bug_type();
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002035 if (rec) {
2036 struct ftrace_ops *ops = NULL;
2037
2038 pr_info("ftrace record flags: %lx\n", rec->flags);
2039 pr_cont(" (%ld)%s", ftrace_rec_count(rec),
2040 rec->flags & FTRACE_FL_REGS ? " R" : " ");
2041 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2042 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002043 if (ops) {
2044 do {
2045 pr_cont("\ttramp: %pS (%pS)",
2046 (void *)ops->trampoline,
2047 (void *)ops->func);
2048 ops = ftrace_find_tramp_ops_next(rec, ops);
2049 } while (ops);
2050 } else
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002051 pr_cont("\ttramp: ERROR!");
2052
2053 }
2054 ip = ftrace_get_addr_curr(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002055 pr_cont("\n expected tramp: %lx\n", ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002056 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002057}
2058
Steven Rostedtc88fd862011-08-16 09:53:39 -04002059static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02002060{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002061 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01002062
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002063 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2064
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002065 if (rec->flags & FTRACE_FL_DISABLED)
2066 return FTRACE_UPDATE_IGNORE;
2067
Steven Rostedt982c3502008-11-15 16:31:41 -05002068 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002069 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05002070 *
Steven Rostedted926f92011-05-03 13:25:24 -04002071 * If the record has a ref count, then we need to enable it
2072 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05002073 *
Steven Rostedted926f92011-05-03 13:25:24 -04002074 * Otherwise we make sure its disabled.
2075 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002076 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04002077 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05002078 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002079 if (enable && ftrace_rec_count(rec))
Steven Rostedted926f92011-05-03 13:25:24 -04002080 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02002081
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002082 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002083 * If enabling and the REGS flag does not match the REGS_EN, or
2084 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
2085 * this record. Set flags to fail the compare against ENABLED.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002086 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002087 if (flag) {
2088 if (!(rec->flags & FTRACE_FL_REGS) !=
2089 !(rec->flags & FTRACE_FL_REGS_EN))
2090 flag |= FTRACE_FL_REGS;
2091
2092 if (!(rec->flags & FTRACE_FL_TRAMP) !=
2093 !(rec->flags & FTRACE_FL_TRAMP_EN))
2094 flag |= FTRACE_FL_TRAMP;
2095 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002096
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002097 /* If the state of this record hasn't changed, then do nothing */
2098 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04002099 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002100
2101 if (flag) {
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002102 /* Save off if rec is being enabled (for return value) */
2103 flag ^= rec->flags & FTRACE_FL_ENABLED;
2104
2105 if (update) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04002106 rec->flags |= FTRACE_FL_ENABLED;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002107 if (flag & FTRACE_FL_REGS) {
2108 if (rec->flags & FTRACE_FL_REGS)
2109 rec->flags |= FTRACE_FL_REGS_EN;
2110 else
2111 rec->flags &= ~FTRACE_FL_REGS_EN;
2112 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002113 if (flag & FTRACE_FL_TRAMP) {
2114 if (rec->flags & FTRACE_FL_TRAMP)
2115 rec->flags |= FTRACE_FL_TRAMP_EN;
2116 else
2117 rec->flags &= ~FTRACE_FL_TRAMP_EN;
2118 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002119 }
2120
2121 /*
2122 * If this record is being updated from a nop, then
2123 * return UPDATE_MAKE_CALL.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002124 * Otherwise,
2125 * return UPDATE_MODIFY_CALL to tell the caller to convert
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002126 * from the save regs, to a non-save regs function or
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002127 * vice versa, or from a trampoline call.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002128 */
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002129 if (flag & FTRACE_FL_ENABLED) {
2130 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002131 return FTRACE_UPDATE_MAKE_CALL;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002132 }
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002133
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002134 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002135 return FTRACE_UPDATE_MODIFY_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002136 }
2137
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002138 if (update) {
2139 /* If there's no more users, clear all flags */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002140 if (!ftrace_rec_count(rec))
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002141 rec->flags = 0;
2142 else
Steven Rostedt (Red Hat)b24d4432015-03-04 23:10:28 -05002143 /*
2144 * Just disable the record, but keep the ops TRAMP
2145 * and REGS states. The _EN flags must be disabled though.
2146 */
2147 rec->flags &= ~(FTRACE_FL_ENABLED | FTRACE_FL_TRAMP_EN |
2148 FTRACE_FL_REGS_EN);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002149 }
Steven Rostedtc88fd862011-08-16 09:53:39 -04002150
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002151 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002152 return FTRACE_UPDATE_MAKE_NOP;
2153}
2154
2155/**
2156 * ftrace_update_record, set a record that now is tracing or not
2157 * @rec: the record to update
2158 * @enable: set to 1 if the record is tracing, zero to force disable
2159 *
2160 * The records that represent all functions that can be traced need
2161 * to be updated when tracing has been enabled.
2162 */
2163int ftrace_update_record(struct dyn_ftrace *rec, int enable)
2164{
2165 return ftrace_check_record(rec, enable, 1);
2166}
2167
2168/**
2169 * ftrace_test_record, check if the record has been enabled or not
2170 * @rec: the record to test
2171 * @enable: set to 1 to check if enabled, 0 if it is disabled
2172 *
2173 * The arch code may need to test if a record is already set to
2174 * tracing to determine how to modify the function code that it
2175 * represents.
2176 */
2177int ftrace_test_record(struct dyn_ftrace *rec, int enable)
2178{
2179 return ftrace_check_record(rec, enable, 0);
2180}
2181
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002182static struct ftrace_ops *
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002183ftrace_find_tramp_ops_any(struct dyn_ftrace *rec)
2184{
2185 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002186 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002187
2188 do_for_each_ftrace_op(op, ftrace_ops_list) {
2189
2190 if (!op->trampoline)
2191 continue;
2192
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002193 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002194 return op;
2195 } while_for_each_ftrace_op(op);
2196
2197 return NULL;
2198}
2199
2200static struct ftrace_ops *
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002201ftrace_find_tramp_ops_next(struct dyn_ftrace *rec,
2202 struct ftrace_ops *op)
2203{
2204 unsigned long ip = rec->ip;
2205
2206 while_for_each_ftrace_op(op) {
2207
2208 if (!op->trampoline)
2209 continue;
2210
2211 if (hash_contains_ip(ip, op->func_hash))
2212 return op;
2213 }
2214
2215 return NULL;
2216}
2217
2218static struct ftrace_ops *
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002219ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec)
2220{
2221 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002222 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002223
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002224 /*
2225 * Need to check removed ops first.
2226 * If they are being removed, and this rec has a tramp,
2227 * and this rec is in the ops list, then it would be the
2228 * one with the tramp.
2229 */
2230 if (removed_ops) {
2231 if (hash_contains_ip(ip, &removed_ops->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002232 return removed_ops;
2233 }
2234
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002235 /*
2236 * Need to find the current trampoline for a rec.
2237 * Now, a trampoline is only attached to a rec if there
2238 * was a single 'ops' attached to it. But this can be called
2239 * when we are adding another op to the rec or removing the
2240 * current one. Thus, if the op is being added, we can
2241 * ignore it because it hasn't attached itself to the rec
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002242 * yet.
2243 *
2244 * If an ops is being modified (hooking to different functions)
2245 * then we don't care about the new functions that are being
2246 * added, just the old ones (that are probably being removed).
2247 *
2248 * If we are adding an ops to a function that already is using
2249 * a trampoline, it needs to be removed (trampolines are only
2250 * for single ops connected), then an ops that is not being
2251 * modified also needs to be checked.
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002252 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002253 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002254
2255 if (!op->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002256 continue;
2257
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002258 /*
2259 * If the ops is being added, it hasn't gotten to
2260 * the point to be removed from this tree yet.
2261 */
2262 if (op->flags & FTRACE_OPS_FL_ADDING)
2263 continue;
2264
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002265
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002266 /*
2267 * If the ops is being modified and is in the old
2268 * hash, then it is probably being removed from this
2269 * function.
2270 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002271 if ((op->flags & FTRACE_OPS_FL_MODIFYING) &&
2272 hash_contains_ip(ip, &op->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002273 return op;
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002274 /*
2275 * If the ops is not being added or modified, and it's
2276 * in its normal filter hash, then this must be the one
2277 * we want!
2278 */
2279 if (!(op->flags & FTRACE_OPS_FL_MODIFYING) &&
2280 hash_contains_ip(ip, op->func_hash))
2281 return op;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002282
2283 } while_for_each_ftrace_op(op);
2284
2285 return NULL;
2286}
2287
2288static struct ftrace_ops *
2289ftrace_find_tramp_ops_new(struct dyn_ftrace *rec)
2290{
2291 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002292 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002293
2294 do_for_each_ftrace_op(op, ftrace_ops_list) {
2295 /* pass rec in as regs to have non-NULL val */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002296 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002297 return op;
2298 } while_for_each_ftrace_op(op);
2299
2300 return NULL;
2301}
2302
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002303/**
2304 * ftrace_get_addr_new - Get the call address to set to
2305 * @rec: The ftrace record descriptor
2306 *
2307 * If the record has the FTRACE_FL_REGS set, that means that it
2308 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2309 * is not not set, then it wants to convert to the normal callback.
2310 *
2311 * Returns the address of the trampoline to set to
2312 */
2313unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec)
2314{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002315 struct ftrace_ops *ops;
2316
2317 /* Trampolines take precedence over regs */
2318 if (rec->flags & FTRACE_FL_TRAMP) {
2319 ops = ftrace_find_tramp_ops_new(rec);
2320 if (FTRACE_WARN_ON(!ops || !ops->trampoline)) {
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04002321 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2322 (void *)rec->ip, (void *)rec->ip, rec->flags);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002323 /* Ftrace is shutting down, return anything */
2324 return (unsigned long)FTRACE_ADDR;
2325 }
2326 return ops->trampoline;
2327 }
2328
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002329 if (rec->flags & FTRACE_FL_REGS)
2330 return (unsigned long)FTRACE_REGS_ADDR;
2331 else
2332 return (unsigned long)FTRACE_ADDR;
2333}
2334
2335/**
2336 * ftrace_get_addr_curr - Get the call address that is already there
2337 * @rec: The ftrace record descriptor
2338 *
2339 * The FTRACE_FL_REGS_EN is set when the record already points to
2340 * a function that saves all the regs. Basically the '_EN' version
2341 * represents the current state of the function.
2342 *
2343 * Returns the address of the trampoline that is currently being called
2344 */
2345unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec)
2346{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002347 struct ftrace_ops *ops;
2348
2349 /* Trampolines take precedence over regs */
2350 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2351 ops = ftrace_find_tramp_ops_curr(rec);
2352 if (FTRACE_WARN_ON(!ops)) {
Joe Perchesa395d6a2016-03-22 14:28:09 -07002353 pr_warn("Bad trampoline accounting at: %p (%pS)\n",
2354 (void *)rec->ip, (void *)rec->ip);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002355 /* Ftrace is shutting down, return anything */
2356 return (unsigned long)FTRACE_ADDR;
2357 }
2358 return ops->trampoline;
2359 }
2360
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002361 if (rec->flags & FTRACE_FL_REGS_EN)
2362 return (unsigned long)FTRACE_REGS_ADDR;
2363 else
2364 return (unsigned long)FTRACE_ADDR;
2365}
2366
Steven Rostedtc88fd862011-08-16 09:53:39 -04002367static int
2368__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
2369{
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002370 unsigned long ftrace_old_addr;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002371 unsigned long ftrace_addr;
2372 int ret;
2373
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002374 ftrace_addr = ftrace_get_addr_new(rec);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002375
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002376 /* This needs to be done before we call ftrace_update_record */
2377 ftrace_old_addr = ftrace_get_addr_curr(rec);
2378
2379 ret = ftrace_update_record(rec, enable);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002380
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002381 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2382
Steven Rostedtc88fd862011-08-16 09:53:39 -04002383 switch (ret) {
2384 case FTRACE_UPDATE_IGNORE:
2385 return 0;
2386
2387 case FTRACE_UPDATE_MAKE_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002388 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002389 return ftrace_make_call(rec, ftrace_addr);
2390
2391 case FTRACE_UPDATE_MAKE_NOP:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002392 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedt (Red Hat)39b55522014-08-17 20:59:10 -04002393 return ftrace_make_nop(NULL, rec, ftrace_old_addr);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002394
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002395 case FTRACE_UPDATE_MODIFY_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002396 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002397 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002398 }
2399
2400 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02002401}
2402
Steven Rostedte4f5d542012-04-27 09:13:18 -04002403void __weak ftrace_replace_code(int enable)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002404{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002405 struct dyn_ftrace *rec;
2406 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002407 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002408
Steven Rostedt45a4a232011-04-21 23:16:46 -04002409 if (unlikely(ftrace_disabled))
2410 return;
2411
Steven Rostedt265c8312009-02-13 12:43:56 -05002412 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05002413
2414 if (rec->flags & FTRACE_FL_DISABLED)
2415 continue;
2416
Steven Rostedte4f5d542012-04-27 09:13:18 -04002417 failed = __ftrace_replace_code(rec, enable);
Zhaoleifa9d13c2009-03-13 17:16:34 +08002418 if (failed) {
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002419 ftrace_bug(failed, rec);
Steven Rostedt3279ba32009-10-07 16:57:56 -04002420 /* Stop processing */
2421 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05002422 }
2423 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002424}
2425
Steven Rostedtc88fd862011-08-16 09:53:39 -04002426struct ftrace_rec_iter {
2427 struct ftrace_page *pg;
2428 int index;
2429};
2430
2431/**
2432 * ftrace_rec_iter_start, start up iterating over traced functions
2433 *
2434 * Returns an iterator handle that is used to iterate over all
2435 * the records that represent address locations where functions
2436 * are traced.
2437 *
2438 * May return NULL if no records are available.
2439 */
2440struct ftrace_rec_iter *ftrace_rec_iter_start(void)
2441{
2442 /*
2443 * We only use a single iterator.
2444 * Protected by the ftrace_lock mutex.
2445 */
2446 static struct ftrace_rec_iter ftrace_rec_iter;
2447 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
2448
2449 iter->pg = ftrace_pages_start;
2450 iter->index = 0;
2451
2452 /* Could have empty pages */
2453 while (iter->pg && !iter->pg->index)
2454 iter->pg = iter->pg->next;
2455
2456 if (!iter->pg)
2457 return NULL;
2458
2459 return iter;
2460}
2461
2462/**
2463 * ftrace_rec_iter_next, get the next record to process.
2464 * @iter: The handle to the iterator.
2465 *
2466 * Returns the next iterator after the given iterator @iter.
2467 */
2468struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
2469{
2470 iter->index++;
2471
2472 if (iter->index >= iter->pg->index) {
2473 iter->pg = iter->pg->next;
2474 iter->index = 0;
2475
2476 /* Could have empty pages */
2477 while (iter->pg && !iter->pg->index)
2478 iter->pg = iter->pg->next;
2479 }
2480
2481 if (!iter->pg)
2482 return NULL;
2483
2484 return iter;
2485}
2486
2487/**
2488 * ftrace_rec_iter_record, get the record at the iterator location
2489 * @iter: The current iterator location
2490 *
2491 * Returns the record that the current @iter is at.
2492 */
2493struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
2494{
2495 return &iter->pg->records[iter->index];
2496}
2497
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302498static int
Steven Rostedt31e88902008-11-14 16:21:19 -08002499ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002500{
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002501 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002502
Steven Rostedt45a4a232011-04-21 23:16:46 -04002503 if (unlikely(ftrace_disabled))
2504 return 0;
2505
Shaohua Li25aac9d2009-01-09 11:29:40 +08002506 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002507 if (ret) {
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002508 ftrace_bug_type = FTRACE_BUG_INIT;
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002509 ftrace_bug(ret, rec);
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302510 return 0;
Steven Rostedt37ad5082008-05-12 21:20:48 +02002511 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302512 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002513}
2514
Steven Rostedt000ab692009-02-17 13:35:06 -05002515/*
2516 * archs can override this function if they must do something
2517 * before the modifying code is performed.
2518 */
2519int __weak ftrace_arch_code_modify_prepare(void)
2520{
2521 return 0;
2522}
2523
2524/*
2525 * archs can override this function if they must do something
2526 * after the modifying code is performed.
2527 */
2528int __weak ftrace_arch_code_modify_post_process(void)
2529{
2530 return 0;
2531}
2532
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002533void ftrace_modify_all_code(int command)
2534{
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002535 int update = command & FTRACE_UPDATE_TRACE_FUNC;
Petr Mladekcd210672014-02-24 17:12:21 +01002536 int err = 0;
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002537
2538 /*
2539 * If the ftrace_caller calls a ftrace_ops func directly,
2540 * we need to make sure that it only traces functions it
2541 * expects to trace. When doing the switch of functions,
2542 * we need to update to the ftrace_ops_list_func first
2543 * before the transition between old and new calls are set,
2544 * as the ftrace_ops_list_func will check the ops hashes
2545 * to make sure the ops are having the right functions
2546 * traced.
2547 */
Petr Mladekcd210672014-02-24 17:12:21 +01002548 if (update) {
2549 err = ftrace_update_ftrace_func(ftrace_ops_list_func);
2550 if (FTRACE_WARN_ON(err))
2551 return;
2552 }
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002553
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002554 if (command & FTRACE_UPDATE_CALLS)
2555 ftrace_replace_code(1);
2556 else if (command & FTRACE_DISABLE_CALLS)
2557 ftrace_replace_code(0);
2558
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002559 if (update && ftrace_trace_function != ftrace_ops_list_func) {
2560 function_trace_op = set_function_trace_op;
2561 smp_wmb();
2562 /* If irqs are disabled, we are in stop machine */
2563 if (!irqs_disabled())
2564 smp_call_function(ftrace_sync_ipi, NULL, 1);
Petr Mladekcd210672014-02-24 17:12:21 +01002565 err = ftrace_update_ftrace_func(ftrace_trace_function);
2566 if (FTRACE_WARN_ON(err))
2567 return;
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002568 }
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002569
2570 if (command & FTRACE_START_FUNC_RET)
Petr Mladekcd210672014-02-24 17:12:21 +01002571 err = ftrace_enable_ftrace_graph_caller();
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002572 else if (command & FTRACE_STOP_FUNC_RET)
Petr Mladekcd210672014-02-24 17:12:21 +01002573 err = ftrace_disable_ftrace_graph_caller();
2574 FTRACE_WARN_ON(err);
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002575}
2576
Ingo Molnare309b412008-05-12 21:20:51 +02002577static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02002578{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002579 int *command = data;
2580
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002581 ftrace_modify_all_code(*command);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05002582
Steven Rostedtc88fd862011-08-16 09:53:39 -04002583 return 0;
2584}
2585
2586/**
2587 * ftrace_run_stop_machine, go back to the stop machine method
2588 * @command: The command to tell ftrace what to do
2589 *
2590 * If an arch needs to fall back to the stop machine method, the
2591 * it can call this function.
2592 */
2593void ftrace_run_stop_machine(int command)
2594{
2595 stop_machine(__ftrace_modify_code, &command, NULL);
2596}
2597
2598/**
2599 * arch_ftrace_update_code, modify the code to trace or not trace
2600 * @command: The command that needs to be done
2601 *
2602 * Archs can override this function if it does not need to
2603 * run stop_machine() to modify code.
2604 */
2605void __weak arch_ftrace_update_code(int command)
2606{
2607 ftrace_run_stop_machine(command);
2608}
2609
2610static void ftrace_run_update_code(int command)
2611{
2612 int ret;
2613
2614 ret = ftrace_arch_code_modify_prepare();
2615 FTRACE_WARN_ON(ret);
2616 if (ret)
2617 return;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002618
2619 /*
2620 * By default we use stop_machine() to modify the code.
2621 * But archs can do what ever they want as long as it
2622 * is safe. The stop_machine() is the safest, but also
2623 * produces the most overhead.
2624 */
2625 arch_ftrace_update_code(command);
2626
Steven Rostedt000ab692009-02-17 13:35:06 -05002627 ret = ftrace_arch_code_modify_post_process();
2628 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02002629}
2630
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002631static void ftrace_run_modify_code(struct ftrace_ops *ops, int command,
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002632 struct ftrace_ops_hash *old_hash)
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002633{
2634 ops->flags |= FTRACE_OPS_FL_MODIFYING;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002635 ops->old_hash.filter_hash = old_hash->filter_hash;
2636 ops->old_hash.notrace_hash = old_hash->notrace_hash;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002637 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002638 ops->old_hash.filter_hash = NULL;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002639 ops->old_hash.notrace_hash = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002640 ops->flags &= ~FTRACE_OPS_FL_MODIFYING;
2641}
2642
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002643static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002644static int ftrace_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002645
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002646void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops)
2647{
2648}
2649
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002650static void per_cpu_ops_free(struct ftrace_ops *ops)
Jiri Slabydb0fbad2014-03-10 21:42:11 +01002651{
2652 free_percpu(ops->disabled);
2653}
2654
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002655static void ftrace_startup_enable(int command)
2656{
2657 if (saved_ftrace_func != ftrace_trace_function) {
2658 saved_ftrace_func = ftrace_trace_function;
2659 command |= FTRACE_UPDATE_TRACE_FUNC;
2660 }
2661
2662 if (!command || !ftrace_enabled)
2663 return;
2664
2665 ftrace_run_update_code(command);
2666}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002667
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002668static void ftrace_startup_all(int command)
2669{
2670 update_all_ops = true;
2671 ftrace_startup_enable(command);
2672 update_all_ops = false;
2673}
2674
Steven Rostedta1cd6172011-05-23 15:24:25 -04002675static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002676{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002677 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002678
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002679 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04002680 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002681
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002682 ret = __register_ftrace_function(ops);
2683 if (ret)
2684 return ret;
2685
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002686 ftrace_start_up++;
Steven Rostedt3d083392008-05-12 21:20:42 +02002687
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002688 /*
2689 * Note that ftrace probes uses this to start up
2690 * and modify functions it will probe. But we still
2691 * set the ADDING flag for modification, as probes
2692 * do not have trampolines. If they add them in the
2693 * future, then the probes will need to distinguish
2694 * between adding and updating probes.
2695 */
2696 ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING;
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002697
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002698 ret = ftrace_hash_ipmodify_enable(ops);
2699 if (ret < 0) {
2700 /* Rollback registration process */
2701 __unregister_ftrace_function(ops);
2702 ftrace_start_up--;
2703 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2704 return ret;
2705 }
2706
Jiri Olsa7f50d062016-03-16 15:34:33 +01002707 if (ftrace_hash_rec_enable(ops, 1))
2708 command |= FTRACE_UPDATE_CALLS;
Steven Rostedted926f92011-05-03 13:25:24 -04002709
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002710 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04002711
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002712 ops->flags &= ~FTRACE_OPS_FL_ADDING;
2713
Steven Rostedta1cd6172011-05-23 15:24:25 -04002714 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002715}
2716
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002717static int ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002718{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002719 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002720
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002721 if (unlikely(ftrace_disabled))
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002722 return -ENODEV;
2723
2724 ret = __unregister_ftrace_function(ops);
2725 if (ret)
2726 return ret;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002727
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002728 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02002729 /*
2730 * Just warn in case of unbalance, no need to kill ftrace, it's not
2731 * critical but the ftrace_call callers may be never nopped again after
2732 * further ftrace uses.
2733 */
2734 WARN_ON_ONCE(ftrace_start_up < 0);
2735
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002736 /* Disabling ipmodify never fails */
2737 ftrace_hash_ipmodify_disable(ops);
Jiri Olsa7f50d062016-03-16 15:34:33 +01002738
2739 if (ftrace_hash_rec_disable(ops, 1))
2740 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtb8489142011-05-04 09:27:52 -04002741
Namhyung Kima737e6d2014-06-12 23:56:12 +09002742 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04002743
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002744 if (saved_ftrace_func != ftrace_trace_function) {
2745 saved_ftrace_func = ftrace_trace_function;
2746 command |= FTRACE_UPDATE_TRACE_FUNC;
2747 }
2748
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002749 if (!command || !ftrace_enabled) {
2750 /*
Steven Rostedt (VMware)100553e2017-09-01 12:18:28 -04002751 * If these are dynamic or per_cpu ops, they still
2752 * need their data freed. Since, function tracing is
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002753 * not currently active, we can just free them
2754 * without synchronizing all CPUs.
2755 */
Steven Rostedt (VMware)100553e2017-09-01 12:18:28 -04002756 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU))
2757 goto free_ops;
2758
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002759 return 0;
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002760 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002761
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002762 /*
2763 * If the ops uses a trampoline, then it needs to be
2764 * tested first on update.
2765 */
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002766 ops->flags |= FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002767 removed_ops = ops;
2768
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002769 /* The trampoline logic checks the old hashes */
2770 ops->old_hash.filter_hash = ops->func_hash->filter_hash;
2771 ops->old_hash.notrace_hash = ops->func_hash->notrace_hash;
2772
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002773 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002774
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002775 /*
2776 * If there's no more ops registered with ftrace, run a
2777 * sanity check to make sure all rec flags are cleared.
2778 */
2779 if (ftrace_ops_list == &ftrace_list_end) {
2780 struct ftrace_page *pg;
2781 struct dyn_ftrace *rec;
2782
2783 do_for_each_ftrace_rec(pg, rec) {
Alexei Starovoitov977c1f92016-11-07 15:14:20 -08002784 if (FTRACE_WARN_ON_ONCE(rec->flags & ~FTRACE_FL_DISABLED))
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002785 pr_warn(" %pS flags:%lx\n",
2786 (void *)rec->ip, rec->flags);
2787 } while_for_each_ftrace_rec();
2788 }
2789
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002790 ops->old_hash.filter_hash = NULL;
2791 ops->old_hash.notrace_hash = NULL;
2792
2793 removed_ops = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002794 ops->flags &= ~FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002795
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002796 /*
2797 * Dynamic ops may be freed, we must make sure that all
2798 * callers are done before leaving this function.
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002799 * The same goes for freeing the per_cpu data of the per_cpu
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002800 * ops.
2801 *
2802 * Again, normal synchronize_sched() is not good enough.
2803 * We need to do a hard force of sched synchronization.
2804 * This is because we use preempt_disable() to do RCU, but
2805 * the function tracers can be called where RCU is not watching
2806 * (like before user_exit()). We can not rely on the RCU
2807 * infrastructure to do the synchronization, thus we must do it
2808 * ourselves.
2809 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002810 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU)) {
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002811 schedule_on_each_cpu(ftrace_sync);
2812
Steven Rostedt (VMware)100553e2017-09-01 12:18:28 -04002813 free_ops:
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002814 arch_ftrace_trampoline_free(ops);
2815
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002816 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2817 per_cpu_ops_free(ops);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002818 }
2819
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002820 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002821}
2822
Ingo Molnare309b412008-05-12 21:20:51 +02002823static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002824{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302825 int command;
2826
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002827 if (unlikely(ftrace_disabled))
2828 return;
2829
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002830 /* Force update next time */
2831 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002832 /* ftrace_start_up is true if we want ftrace running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302833 if (ftrace_start_up) {
2834 command = FTRACE_UPDATE_CALLS;
2835 if (ftrace_graph_active)
2836 command |= FTRACE_START_FUNC_RET;
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05002837 ftrace_startup_enable(command);
Pratyush Anand1619dc32015-03-06 23:58:06 +05302838 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002839}
2840
Ingo Molnare309b412008-05-12 21:20:51 +02002841static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002842{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302843 int command;
2844
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002845 if (unlikely(ftrace_disabled))
2846 return;
2847
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002848 /* ftrace_start_up is true if ftrace is running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302849 if (ftrace_start_up) {
2850 command = FTRACE_DISABLE_CALLS;
2851 if (ftrace_graph_active)
2852 command |= FTRACE_STOP_FUNC_RET;
2853 ftrace_run_update_code(command);
2854 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002855}
2856
Steven Rostedt3d083392008-05-12 21:20:42 +02002857static cycle_t ftrace_update_time;
Steven Rostedt3d083392008-05-12 21:20:42 +02002858unsigned long ftrace_update_tot_cnt;
2859
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002860static inline int ops_traces_mod(struct ftrace_ops *ops)
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002861{
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002862 /*
2863 * Filter_hash being empty will default to trace module.
2864 * But notrace hash requires a test of individual module functions.
2865 */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002866 return ftrace_hash_empty(ops->func_hash->filter_hash) &&
2867 ftrace_hash_empty(ops->func_hash->notrace_hash);
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002868}
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002869
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002870/*
2871 * Check if the current ops references the record.
2872 *
2873 * If the ops traces all functions, then it was already accounted for.
2874 * If the ops does not trace the current record function, skip it.
2875 * If the ops ignores the function via notrace filter, skip it.
2876 */
2877static inline bool
2878ops_references_rec(struct ftrace_ops *ops, struct dyn_ftrace *rec)
2879{
2880 /* If ops isn't enabled, ignore it */
2881 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
2882 return 0;
2883
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002884 /* If ops traces all then it includes this function */
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002885 if (ops_traces_mod(ops))
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002886 return 1;
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002887
2888 /* The function must be in the filter */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002889 if (!ftrace_hash_empty(ops->func_hash->filter_hash) &&
2890 !ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002891 return 0;
2892
2893 /* If in notrace hash, we ignore it too */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002894 if (ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002895 return 0;
2896
2897 return 1;
2898}
2899
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002900static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs)
Steven Rostedt3d083392008-05-12 21:20:42 +02002901{
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002902 struct ftrace_page *pg;
Lai Jiangshane94142a2009-03-13 17:51:27 +08002903 struct dyn_ftrace *p;
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05302904 cycle_t start, stop;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002905 unsigned long update_cnt = 0;
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002906 unsigned long rec_flags = 0;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002907 int i;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002908
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002909 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002910
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002911 /*
2912 * When a module is loaded, this function is called to convert
2913 * the calls to mcount in its text to nops, and also to create
2914 * an entry in the ftrace data. Now, if ftrace is activated
2915 * after this call, but before the module sets its text to
2916 * read-only, the modification of enabling ftrace can fail if
2917 * the read-only is done while ftrace is converting the calls.
2918 * To prevent this, the module's records are set as disabled
2919 * and will be enabled after the call to set the module's text
2920 * to read-only.
2921 */
2922 if (mod)
2923 rec_flags |= FTRACE_FL_DISABLED;
2924
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002925 for (pg = new_pgs; pg; pg = pg->next) {
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05302926
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002927 for (i = 0; i < pg->index; i++) {
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002928
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002929 /* If something went wrong, bail without enabling anything */
2930 if (unlikely(ftrace_disabled))
2931 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02002932
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002933 p = &pg->records[i];
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002934 p->flags = rec_flags;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05302935
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002936 /*
2937 * Do the initial record conversion from mcount jump
2938 * to the NOP instructions.
2939 */
2940 if (!ftrace_code_disable(mod, p))
2941 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002942
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002943 update_cnt++;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002944 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002945 }
2946
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002947 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002948 ftrace_update_time = stop - start;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002949 ftrace_update_tot_cnt += update_cnt;
Steven Rostedt3d083392008-05-12 21:20:42 +02002950
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02002951 return 0;
2952}
2953
Steven Rostedta7900872011-12-16 16:23:44 -05002954static int ftrace_allocate_records(struct ftrace_page *pg, int count)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002955{
Steven Rostedta7900872011-12-16 16:23:44 -05002956 int order;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002957 int cnt;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002958
Steven Rostedta7900872011-12-16 16:23:44 -05002959 if (WARN_ON(!count))
2960 return -EINVAL;
2961
2962 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002963
2964 /*
Steven Rostedta7900872011-12-16 16:23:44 -05002965 * We want to fill as much as possible. No more than a page
2966 * may be empty.
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002967 */
Steven Rostedta7900872011-12-16 16:23:44 -05002968 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2969 order--;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002970
Steven Rostedta7900872011-12-16 16:23:44 -05002971 again:
2972 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
2973
2974 if (!pg->records) {
2975 /* if we can't allocate this size, try something smaller */
2976 if (!order)
2977 return -ENOMEM;
2978 order >>= 1;
2979 goto again;
2980 }
2981
2982 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
2983 pg->size = cnt;
2984
2985 if (cnt > count)
2986 cnt = count;
2987
2988 return cnt;
2989}
2990
2991static struct ftrace_page *
2992ftrace_allocate_pages(unsigned long num_to_init)
2993{
2994 struct ftrace_page *start_pg;
2995 struct ftrace_page *pg;
2996 int order;
2997 int cnt;
2998
2999 if (!num_to_init)
3000 return 0;
3001
3002 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
3003 if (!pg)
3004 return NULL;
3005
3006 /*
3007 * Try to allocate as much as possible in one continues
3008 * location that fills in all of the space. We want to
3009 * waste as little space as possible.
3010 */
3011 for (;;) {
3012 cnt = ftrace_allocate_records(pg, num_to_init);
3013 if (cnt < 0)
3014 goto free_pages;
3015
3016 num_to_init -= cnt;
3017 if (!num_to_init)
3018 break;
3019
3020 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
3021 if (!pg->next)
3022 goto free_pages;
3023
3024 pg = pg->next;
3025 }
3026
3027 return start_pg;
3028
3029 free_pages:
Namhyung Kim1f61be002014-06-11 17:06:53 +09003030 pg = start_pg;
3031 while (pg) {
Steven Rostedta7900872011-12-16 16:23:44 -05003032 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3033 free_pages((unsigned long)pg->records, order);
3034 start_pg = pg->next;
3035 kfree(pg);
3036 pg = start_pg;
3037 }
3038 pr_info("ftrace: FAILED to allocate memory for functions\n");
3039 return NULL;
3040}
3041
Steven Rostedt5072c592008-05-12 21:20:43 +02003042#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
3043
3044struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003045 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003046 loff_t func_pos;
3047 struct ftrace_page *pg;
3048 struct dyn_ftrace *func;
3049 struct ftrace_func_probe *probe;
3050 struct trace_parser parser;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003051 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003052 struct ftrace_ops *ops;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003053 int hidx;
3054 int idx;
3055 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02003056};
3057
Ingo Molnare309b412008-05-12 21:20:51 +02003058static void *
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003059t_hash_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003060{
3061 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003062 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003063 struct hlist_head *hhd;
3064
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003065 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003066 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003067
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003068 if (iter->probe)
3069 hnd = &iter->probe->node;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003070 retry:
3071 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
3072 return NULL;
3073
3074 hhd = &ftrace_func_hash[iter->hidx];
3075
3076 if (hlist_empty(hhd)) {
3077 iter->hidx++;
3078 hnd = NULL;
3079 goto retry;
3080 }
3081
3082 if (!hnd)
3083 hnd = hhd->first;
3084 else {
3085 hnd = hnd->next;
3086 if (!hnd) {
3087 iter->hidx++;
3088 goto retry;
3089 }
3090 }
3091
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003092 if (WARN_ON_ONCE(!hnd))
3093 return NULL;
3094
3095 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
3096
3097 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003098}
3099
3100static void *t_hash_start(struct seq_file *m, loff_t *pos)
3101{
3102 struct ftrace_iterator *iter = m->private;
3103 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08003104 loff_t l;
3105
Steven Rostedt69a30832011-12-19 15:21:16 -05003106 if (!(iter->flags & FTRACE_ITER_DO_HASH))
3107 return NULL;
3108
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003109 if (iter->func_pos > *pos)
3110 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003111
Li Zefand82d6242009-06-24 09:54:54 +08003112 iter->hidx = 0;
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003113 for (l = 0; l <= (*pos - iter->func_pos); ) {
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003114 p = t_hash_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08003115 if (!p)
3116 break;
3117 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003118 if (!p)
3119 return NULL;
3120
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003121 /* Only set this if we have an item */
3122 iter->flags |= FTRACE_ITER_HASH;
3123
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003124 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003125}
3126
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003127static int
3128t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003129{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003130 struct ftrace_func_probe *rec;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003131
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003132 rec = iter->probe;
3133 if (WARN_ON_ONCE(!rec))
3134 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003135
Steven Rostedt809dcf22009-02-16 23:06:01 -05003136 if (rec->ops->print)
3137 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
3138
Steven Rostedtb375a112009-09-17 00:05:58 -04003139 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003140
3141 if (rec->data)
3142 seq_printf(m, ":%p", rec->data);
3143 seq_putc(m, '\n');
3144
3145 return 0;
3146}
3147
3148static void *
Steven Rostedt5072c592008-05-12 21:20:43 +02003149t_next(struct seq_file *m, void *v, loff_t *pos)
3150{
3151 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003152 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02003153 struct dyn_ftrace *rec = NULL;
3154
Steven Rostedt45a4a232011-04-21 23:16:46 -04003155 if (unlikely(ftrace_disabled))
3156 return NULL;
3157
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003158 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003159 return t_hash_next(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003160
Steven Rostedt5072c592008-05-12 21:20:43 +02003161 (*pos)++;
Jiri Olsa1106b692011-02-16 17:35:34 +01003162 iter->pos = iter->func_pos = *pos;
Steven Rostedt5072c592008-05-12 21:20:43 +02003163
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003164 if (iter->flags & FTRACE_ITER_PRINTALL)
Steven Rostedt57c072c2010-09-14 11:21:11 -04003165 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003166
Steven Rostedt5072c592008-05-12 21:20:43 +02003167 retry:
3168 if (iter->idx >= iter->pg->index) {
3169 if (iter->pg->next) {
3170 iter->pg = iter->pg->next;
3171 iter->idx = 0;
3172 goto retry;
3173 }
3174 } else {
3175 rec = &iter->pg->records[iter->idx++];
Steven Rostedt32082302011-12-16 14:42:37 -05003176 if (((iter->flags & FTRACE_ITER_FILTER) &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003177 !(ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))) ||
Steven Rostedt0183fb12008-11-07 22:36:02 -05003178
Steven Rostedt41c52c02008-05-22 11:46:33 -04003179 ((iter->flags & FTRACE_ITER_NOTRACE) &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003180 !ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip)) ||
Steven Rostedt647bcd02011-05-03 14:39:21 -04003181
3182 ((iter->flags & FTRACE_ITER_ENABLED) &&
Steven Rostedt (Red Hat)23ea9c42013-05-09 19:31:48 -04003183 !(rec->flags & FTRACE_FL_ENABLED))) {
Steven Rostedt647bcd02011-05-03 14:39:21 -04003184
Steven Rostedt5072c592008-05-12 21:20:43 +02003185 rec = NULL;
3186 goto retry;
3187 }
3188 }
3189
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003190 if (!rec)
Steven Rostedt57c072c2010-09-14 11:21:11 -04003191 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003192
3193 iter->func = rec;
3194
3195 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003196}
3197
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003198static void reset_iter_read(struct ftrace_iterator *iter)
3199{
3200 iter->pos = 0;
3201 iter->func_pos = 0;
Dan Carpenter70f77b32012-06-09 19:10:27 +03003202 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_HASH);
Steven Rostedt5072c592008-05-12 21:20:43 +02003203}
3204
3205static void *t_start(struct seq_file *m, loff_t *pos)
3206{
3207 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003208 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02003209 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08003210 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02003211
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003212 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003213
3214 if (unlikely(ftrace_disabled))
3215 return NULL;
3216
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003217 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003218 * If an lseek was done, then reset and start from beginning.
3219 */
3220 if (*pos < iter->pos)
3221 reset_iter_read(iter);
3222
3223 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003224 * For set_ftrace_filter reading, if we have the filter
3225 * off, we can short cut and just print out that all
3226 * functions are enabled.
3227 */
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003228 if ((iter->flags & FTRACE_ITER_FILTER &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003229 ftrace_hash_empty(ops->func_hash->filter_hash)) ||
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003230 (iter->flags & FTRACE_ITER_NOTRACE &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003231 ftrace_hash_empty(ops->func_hash->notrace_hash))) {
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003232 if (*pos > 0)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003233 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003234 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07003235 /* reset in case of seek/pread */
3236 iter->flags &= ~FTRACE_ITER_HASH;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003237 return iter;
3238 }
3239
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003240 if (iter->flags & FTRACE_ITER_HASH)
3241 return t_hash_start(m, pos);
3242
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003243 /*
3244 * Unfortunately, we need to restart at ftrace_pages_start
3245 * every time we let go of the ftrace_mutex. This is because
3246 * those pointers can change without the lock.
3247 */
Li Zefan694ce0a2009-06-24 09:54:19 +08003248 iter->pg = ftrace_pages_start;
3249 iter->idx = 0;
3250 for (l = 0; l <= *pos; ) {
3251 p = t_next(m, p, &l);
3252 if (!p)
3253 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08003254 }
walimis5821e1b2008-11-15 15:19:06 +08003255
Steven Rostedt69a30832011-12-19 15:21:16 -05003256 if (!p)
3257 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003258
3259 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003260}
3261
3262static void t_stop(struct seq_file *m, void *p)
3263{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003264 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003265}
3266
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003267void * __weak
3268arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec)
3269{
3270 return NULL;
3271}
3272
3273static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops,
3274 struct dyn_ftrace *rec)
3275{
3276 void *ptr;
3277
3278 ptr = arch_ftrace_trampoline_func(ops, rec);
3279 if (ptr)
3280 seq_printf(m, " ->%pS", ptr);
3281}
3282
Steven Rostedt5072c592008-05-12 21:20:43 +02003283static int t_show(struct seq_file *m, void *v)
3284{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003285 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003286 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02003287
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003288 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003289 return t_hash_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003290
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003291 if (iter->flags & FTRACE_ITER_PRINTALL) {
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003292 if (iter->flags & FTRACE_ITER_NOTRACE)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003293 seq_puts(m, "#### no functions disabled ####\n");
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003294 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003295 seq_puts(m, "#### all functions enabled ####\n");
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003296 return 0;
3297 }
3298
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003299 rec = iter->func;
3300
Steven Rostedt5072c592008-05-12 21:20:43 +02003301 if (!rec)
3302 return 0;
3303
Steven Rostedt647bcd02011-05-03 14:39:21 -04003304 seq_printf(m, "%ps", (void *)rec->ip);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003305 if (iter->flags & FTRACE_ITER_ENABLED) {
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003306 struct ftrace_ops *ops;
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003307
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003308 seq_printf(m, " (%ld)%s%s",
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04003309 ftrace_rec_count(rec),
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003310 rec->flags & FTRACE_FL_REGS ? " R" : " ",
3311 rec->flags & FTRACE_FL_IPMODIFY ? " I" : " ");
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003312 if (rec->flags & FTRACE_FL_TRAMP_EN) {
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04003313 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003314 if (ops) {
3315 do {
3316 seq_printf(m, "\ttramp: %pS (%pS)",
3317 (void *)ops->trampoline,
3318 (void *)ops->func);
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003319 add_trampoline_func(m, ops, rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003320 ops = ftrace_find_tramp_ops_next(rec, ops);
3321 } while (ops);
3322 } else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003323 seq_puts(m, "\ttramp: ERROR!");
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003324 } else {
3325 add_trampoline_func(m, NULL, rec);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003326 }
3327 }
3328
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003329 seq_putc(m, '\n');
Steven Rostedt5072c592008-05-12 21:20:43 +02003330
3331 return 0;
3332}
3333
James Morris88e9d342009-09-22 16:43:43 -07003334static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003335 .start = t_start,
3336 .next = t_next,
3337 .stop = t_stop,
3338 .show = t_show,
3339};
3340
Ingo Molnare309b412008-05-12 21:20:51 +02003341static int
Steven Rostedt5072c592008-05-12 21:20:43 +02003342ftrace_avail_open(struct inode *inode, struct file *file)
3343{
3344 struct ftrace_iterator *iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003345
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003346 if (unlikely(ftrace_disabled))
3347 return -ENODEV;
3348
Jiri Olsa50e18b92012-04-25 10:23:39 +02003349 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3350 if (iter) {
3351 iter->pg = ftrace_pages_start;
3352 iter->ops = &global_ops;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003353 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003354
Jiri Olsa50e18b92012-04-25 10:23:39 +02003355 return iter ? 0 : -ENOMEM;
Steven Rostedt5072c592008-05-12 21:20:43 +02003356}
3357
Steven Rostedt647bcd02011-05-03 14:39:21 -04003358static int
3359ftrace_enabled_open(struct inode *inode, struct file *file)
3360{
3361 struct ftrace_iterator *iter;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003362
Jiri Olsa50e18b92012-04-25 10:23:39 +02003363 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3364 if (iter) {
3365 iter->pg = ftrace_pages_start;
3366 iter->flags = FTRACE_ITER_ENABLED;
3367 iter->ops = &global_ops;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003368 }
3369
Jiri Olsa50e18b92012-04-25 10:23:39 +02003370 return iter ? 0 : -ENOMEM;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003371}
3372
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003373/**
3374 * ftrace_regex_open - initialize function tracer filter files
3375 * @ops: The ftrace_ops that hold the hash filters
3376 * @flag: The type of filter to process
3377 * @inode: The inode, usually passed in to your open routine
3378 * @file: The file, usually passed in to your open routine
3379 *
3380 * ftrace_regex_open() initializes the filter files for the
3381 * @ops. Depending on @flag it may process the filter hash or
3382 * the notrace hash of @ops. With this called from the open
3383 * routine, you can use ftrace_filter_write() for the write
3384 * routine if @flag has FTRACE_ITER_FILTER set, or
3385 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05003386 * tracing_lseek() should be used as the lseek routine, and
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003387 * release must call ftrace_regex_release().
3388 */
3389int
Steven Rostedtf45948e2011-05-02 12:29:25 -04003390ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003391 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003392{
3393 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003394 struct ftrace_hash *hash;
Steven Rostedt5072c592008-05-12 21:20:43 +02003395 int ret = 0;
3396
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003397 ftrace_ops_init(ops);
3398
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003399 if (unlikely(ftrace_disabled))
3400 return -ENODEV;
3401
Steven Rostedt5072c592008-05-12 21:20:43 +02003402 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3403 if (!iter)
3404 return -ENOMEM;
3405
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003406 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
3407 kfree(iter);
3408 return -ENOMEM;
3409 }
3410
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003411 iter->ops = ops;
3412 iter->flags = flag;
3413
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003414 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003415
Steven Rostedtf45948e2011-05-02 12:29:25 -04003416 if (flag & FTRACE_ITER_NOTRACE)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003417 hash = ops->func_hash->notrace_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003418 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003419 hash = ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003420
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003421 if (file->f_mode & FMODE_WRITE) {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003422 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
3423
3424 if (file->f_flags & O_TRUNC)
3425 iter->hash = alloc_ftrace_hash(size_bits);
3426 else
3427 iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash);
3428
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003429 if (!iter->hash) {
3430 trace_parser_put(&iter->parser);
3431 kfree(iter);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003432 ret = -ENOMEM;
3433 goto out_unlock;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003434 }
3435 }
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003436
Steven Rostedt5072c592008-05-12 21:20:43 +02003437 if (file->f_mode & FMODE_READ) {
3438 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02003439
3440 ret = seq_open(file, &show_ftrace_seq_ops);
3441 if (!ret) {
3442 struct seq_file *m = file->private_data;
3443 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08003444 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003445 /* Failed */
3446 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08003447 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003448 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08003449 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003450 } else
3451 file->private_data = iter;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003452
3453 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003454 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003455
3456 return ret;
3457}
3458
Steven Rostedt41c52c02008-05-22 11:46:33 -04003459static int
3460ftrace_filter_open(struct inode *inode, struct file *file)
3461{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003462 struct ftrace_ops *ops = inode->i_private;
3463
3464 return ftrace_regex_open(ops,
Steven Rostedt69a30832011-12-19 15:21:16 -05003465 FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH,
3466 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003467}
3468
3469static int
3470ftrace_notrace_open(struct inode *inode, struct file *file)
3471{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003472 struct ftrace_ops *ops = inode->i_private;
3473
3474 return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003475 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003476}
3477
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003478/* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */
3479struct ftrace_glob {
3480 char *search;
3481 unsigned len;
3482 int type;
3483};
3484
Thiago Jung Bauermann7132e2d2016-04-25 18:56:14 -03003485/*
3486 * If symbols in an architecture don't correspond exactly to the user-visible
3487 * name of what they represent, it is possible to define this function to
3488 * perform the necessary adjustments.
3489*/
3490char * __weak arch_ftrace_match_adjust(char *str, const char *search)
3491{
3492 return str;
3493}
3494
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003495static int ftrace_match(char *str, struct ftrace_glob *g)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003496{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003497 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08003498 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003499
Thiago Jung Bauermann7132e2d2016-04-25 18:56:14 -03003500 str = arch_ftrace_match_adjust(str, g->search);
3501
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003502 switch (g->type) {
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003503 case MATCH_FULL:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003504 if (strcmp(str, g->search) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003505 matched = 1;
3506 break;
3507 case MATCH_FRONT_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003508 if (strncmp(str, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003509 matched = 1;
3510 break;
3511 case MATCH_MIDDLE_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003512 if (strstr(str, g->search))
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003513 matched = 1;
3514 break;
3515 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08003516 slen = strlen(str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003517 if (slen >= g->len &&
3518 memcmp(str + slen - g->len, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003519 matched = 1;
3520 break;
3521 }
3522
3523 return matched;
3524}
3525
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003526static int
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003527enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int clear_filter)
Steven Rostedt996e87b2011-04-26 16:11:03 -04003528{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003529 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003530 int ret = 0;
3531
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003532 entry = ftrace_lookup_ip(hash, rec->ip);
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003533 if (clear_filter) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003534 /* Do nothing if it doesn't exist */
3535 if (!entry)
3536 return 0;
3537
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003538 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003539 } else {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003540 /* Do nothing if it exists */
3541 if (entry)
3542 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003543
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003544 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003545 }
3546 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04003547}
3548
Steven Rostedt64e7c442009-02-13 17:08:48 -05003549static int
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003550ftrace_match_record(struct dyn_ftrace *rec, struct ftrace_glob *func_g,
3551 struct ftrace_glob *mod_g, int exclude_mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003552{
3553 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003554 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003555
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003556 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
3557
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003558 if (mod_g) {
3559 int mod_matches = (modname) ? ftrace_match(modname, mod_g) : 0;
3560
3561 /* blank module name to match all modules */
3562 if (!mod_g->len) {
3563 /* blank module globbing: modname xor exclude_mod */
3564 if ((!exclude_mod) != (!modname))
3565 goto func_match;
3566 return 0;
3567 }
3568
3569 /* not matching the module */
3570 if (!modname || !mod_matches) {
3571 if (exclude_mod)
3572 goto func_match;
3573 else
3574 return 0;
3575 }
3576
3577 if (mod_matches && exclude_mod)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003578 return 0;
3579
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003580func_match:
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003581 /* blank search means to match all funcs in the mod */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003582 if (!func_g->len)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003583 return 1;
3584 }
3585
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003586 return ftrace_match(str, func_g);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003587}
3588
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003589static int
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003590match_records(struct ftrace_hash *hash, char *func, int len, char *mod)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003591{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003592 struct ftrace_page *pg;
3593 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003594 struct ftrace_glob func_g = { .type = MATCH_FULL };
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003595 struct ftrace_glob mod_g = { .type = MATCH_FULL };
3596 struct ftrace_glob *mod_match = (mod) ? &mod_g : NULL;
3597 int exclude_mod = 0;
Li Zefan311d16d2009-12-08 11:15:11 +08003598 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003599 int ret;
Dan Carpenter198bd492017-07-12 10:35:57 +03003600 int clear_filter = 0;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003601
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003602 if (func) {
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003603 func_g.type = filter_parse_regex(func, len, &func_g.search,
3604 &clear_filter);
3605 func_g.len = strlen(func_g.search);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003606 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003607
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003608 if (mod) {
3609 mod_g.type = filter_parse_regex(mod, strlen(mod),
3610 &mod_g.search, &exclude_mod);
3611 mod_g.len = strlen(mod_g.search);
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003612 }
3613
Steven Rostedt52baf112009-02-14 01:15:39 -05003614 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003615
3616 if (unlikely(ftrace_disabled))
3617 goto out_unlock;
3618
Steven Rostedt265c8312009-02-13 12:43:56 -05003619 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05003620
3621 if (rec->flags & FTRACE_FL_DISABLED)
3622 continue;
3623
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003624 if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) {
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003625 ret = enter_record(hash, rec, clear_filter);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003626 if (ret < 0) {
3627 found = ret;
3628 goto out_unlock;
3629 }
Li Zefan311d16d2009-12-08 11:15:11 +08003630 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05003631 }
3632 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003633 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05003634 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08003635
3636 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02003637}
3638
Steven Rostedt64e7c442009-02-13 17:08:48 -05003639static int
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003640ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003641{
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003642 return match_records(hash, buff, len, NULL);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003643}
3644
Steven Rostedt64e7c442009-02-13 17:08:48 -05003645
Steven Rostedtf6180772009-02-14 00:40:25 -05003646/*
3647 * We register the module command as a template to show others how
3648 * to register the a command as well.
3649 */
3650
3651static int
Steven Rostedt43dd61c2011-07-07 11:09:22 -04003652ftrace_mod_callback(struct ftrace_hash *hash,
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003653 char *func, char *cmd, char *module, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05003654{
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03003655 int ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05003656
3657 /*
3658 * cmd == 'mod' because we only registered this func
3659 * for the 'mod' ftrace_func_command.
3660 * But if you register one func with multiple commands,
3661 * you can tell which command was used by the cmd
3662 * parameter.
3663 */
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003664 ret = match_records(hash, func, strlen(func), module);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003665 if (!ret)
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03003666 return -EINVAL;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003667 if (ret < 0)
3668 return ret;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003669 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05003670}
3671
3672static struct ftrace_func_command ftrace_mod_cmd = {
3673 .name = "mod",
3674 .func = ftrace_mod_callback,
3675};
3676
3677static int __init ftrace_mod_cmd_init(void)
3678{
3679 return register_ftrace_command(&ftrace_mod_cmd);
3680}
Steven Rostedt6f415672012-10-05 12:13:07 -04003681core_initcall(ftrace_mod_cmd_init);
Steven Rostedtf6180772009-02-14 00:40:25 -05003682
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04003683static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04003684 struct ftrace_ops *op, struct pt_regs *pt_regs)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003685{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003686 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003687 struct hlist_head *hhd;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003688 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003689
3690 key = hash_long(ip, FTRACE_HASH_BITS);
3691
3692 hhd = &ftrace_func_hash[key];
3693
3694 if (hlist_empty(hhd))
3695 return;
3696
3697 /*
3698 * Disable preemption for these calls to prevent a RCU grace
3699 * period. This syncs the hash iteration and freeing of items
3700 * on the hash. rcu_read_lock is too dangerous here.
3701 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04003702 preempt_disable_notrace();
Steven Rostedt1bb539c2013-05-28 14:38:43 -04003703 hlist_for_each_entry_rcu_notrace(entry, hhd, node) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003704 if (entry->ip == ip)
3705 entry->ops->func(ip, parent_ip, &entry->data);
3706 }
Steven Rostedt5168ae52010-06-03 09:36:50 -04003707 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05003708}
3709
Steven Rostedtb6887d72009-02-17 12:32:04 -05003710static struct ftrace_ops trace_probe_ops __read_mostly =
Steven Rostedt59df055f2009-02-14 15:29:06 -05003711{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04003712 .func = function_trace_probe_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003713 .flags = FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003714 INIT_OPS_HASH(trace_probe_ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003715};
3716
Steven Rostedtb6887d72009-02-17 12:32:04 -05003717static int ftrace_probe_registered;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003718
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003719static void __enable_ftrace_function_probe(struct ftrace_ops_hash *old_hash)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003720{
Steven Rostedtb8489142011-05-04 09:27:52 -04003721 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003722 int i;
3723
Steven Rostedt (Red Hat)19dd6032013-05-09 19:37:36 -04003724 if (ftrace_probe_registered) {
3725 /* still need to update the function call sites */
3726 if (ftrace_enabled)
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003727 ftrace_run_modify_code(&trace_probe_ops, FTRACE_UPDATE_CALLS,
3728 old_hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003729 return;
Steven Rostedt (Red Hat)19dd6032013-05-09 19:37:36 -04003730 }
Steven Rostedt59df055f2009-02-14 15:29:06 -05003731
3732 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3733 struct hlist_head *hhd = &ftrace_func_hash[i];
3734 if (hhd->first)
3735 break;
3736 }
3737 /* Nothing registered? */
3738 if (i == FTRACE_FUNC_HASHSIZE)
3739 return;
3740
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05003741 ret = ftrace_startup(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04003742
Steven Rostedtb6887d72009-02-17 12:32:04 -05003743 ftrace_probe_registered = 1;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003744}
3745
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003746static bool __disable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003747{
3748 int i;
3749
Steven Rostedtb6887d72009-02-17 12:32:04 -05003750 if (!ftrace_probe_registered)
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003751 return false;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003752
3753 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3754 struct hlist_head *hhd = &ftrace_func_hash[i];
3755 if (hhd->first)
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003756 return false;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003757 }
3758
3759 /* no more funcs left */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05003760 ftrace_shutdown(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04003761
Steven Rostedtb6887d72009-02-17 12:32:04 -05003762 ftrace_probe_registered = 0;
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003763 return true;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003764}
3765
3766
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003767static void ftrace_free_entry(struct ftrace_func_probe *entry)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003768{
Steven Rostedt59df055f2009-02-14 15:29:06 -05003769 if (entry->ops->free)
Steven Rostedt (Red Hat)e67efb92013-03-12 15:07:59 -04003770 entry->ops->free(entry->ops, entry->ip, &entry->data);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003771 kfree(entry);
3772}
3773
Steven Rostedt59df055f2009-02-14 15:29:06 -05003774int
Steven Rostedtb6887d72009-02-17 12:32:04 -05003775register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003776 void *data)
3777{
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003778 struct ftrace_ops_hash old_hash_ops;
Steven Rostedtb6887d72009-02-17 12:32:04 -05003779 struct ftrace_func_probe *entry;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003780 struct ftrace_glob func_g;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003781 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003782 struct ftrace_hash *old_hash = *orig_hash;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003783 struct ftrace_hash *hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003784 struct ftrace_page *pg;
3785 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003786 int not;
Steven Rostedt6a24a242009-02-17 11:20:26 -05003787 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003788 int count = 0;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003789 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003790
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003791 func_g.type = filter_parse_regex(glob, strlen(glob),
3792 &func_g.search, &not);
3793 func_g.len = strlen(func_g.search);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003794
Steven Rostedtb6887d72009-02-17 12:32:04 -05003795 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003796 if (WARN_ON(not))
3797 return -EINVAL;
3798
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003799 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003800
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003801 old_hash_ops.filter_hash = old_hash;
3802 /* Probes only have filters */
3803 old_hash_ops.notrace_hash = NULL;
3804
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003805 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003806 if (!hash) {
3807 count = -ENOMEM;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003808 goto out;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003809 }
3810
3811 if (unlikely(ftrace_disabled)) {
3812 count = -ENODEV;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003813 goto out;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003814 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04003815
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003816 mutex_lock(&ftrace_lock);
3817
Steven Rostedt59df055f2009-02-14 15:29:06 -05003818 do_for_each_ftrace_rec(pg, rec) {
3819
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05003820 if (rec->flags & FTRACE_FL_DISABLED)
3821 continue;
3822
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003823 if (!ftrace_match_record(rec, &func_g, NULL, 0))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003824 continue;
3825
3826 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
3827 if (!entry) {
Steven Rostedtb6887d72009-02-17 12:32:04 -05003828 /* If we did not process any, then return error */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003829 if (!count)
3830 count = -ENOMEM;
3831 goto out_unlock;
3832 }
3833
3834 count++;
3835
3836 entry->data = data;
3837
3838 /*
3839 * The caller might want to do something special
3840 * for each function we find. We call the callback
3841 * to give the caller an opportunity to do so.
3842 */
Steven Rostedt (Red Hat)e67efb92013-03-12 15:07:59 -04003843 if (ops->init) {
3844 if (ops->init(ops, rec->ip, &entry->data) < 0) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003845 /* caller does not like this func */
3846 kfree(entry);
3847 continue;
3848 }
3849 }
3850
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003851 ret = enter_record(hash, rec, 0);
3852 if (ret < 0) {
3853 kfree(entry);
3854 count = ret;
3855 goto out_unlock;
3856 }
3857
Steven Rostedt59df055f2009-02-14 15:29:06 -05003858 entry->ops = ops;
3859 entry->ip = rec->ip;
3860
3861 key = hash_long(entry->ip, FTRACE_HASH_BITS);
3862 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
3863
3864 } while_for_each_ftrace_rec();
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003865
3866 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003867
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003868 __enable_ftrace_function_probe(&old_hash_ops);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003869
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003870 if (!ret)
3871 free_ftrace_hash_rcu(old_hash);
3872 else
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003873 count = ret;
3874
Steven Rostedt59df055f2009-02-14 15:29:06 -05003875 out_unlock:
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003876 mutex_unlock(&ftrace_lock);
3877 out:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003878 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003879 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003880
3881 return count;
3882}
3883
3884enum {
Steven Rostedtb6887d72009-02-17 12:32:04 -05003885 PROBE_TEST_FUNC = 1,
3886 PROBE_TEST_DATA = 2
Steven Rostedt59df055f2009-02-14 15:29:06 -05003887};
3888
3889static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003890__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003891 void *data, int flags)
3892{
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003893 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003894 struct ftrace_func_entry *rec_entry;
Steven Rostedtb6887d72009-02-17 12:32:04 -05003895 struct ftrace_func_probe *entry;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003896 struct ftrace_func_probe *p;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003897 struct ftrace_glob func_g;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003898 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003899 struct ftrace_hash *old_hash = *orig_hash;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003900 struct list_head free_list;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003901 struct ftrace_hash *hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003902 struct hlist_node *tmp;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003903 char str[KSYM_SYMBOL_LEN];
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003904 int i, ret;
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003905 bool disabled;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003906
Atsushi Tsujib36461d2009-09-15 19:06:30 +09003907 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003908 func_g.search = NULL;
Atsushi Tsujib36461d2009-09-15 19:06:30 +09003909 else if (glob) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003910 int not;
3911
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003912 func_g.type = filter_parse_regex(glob, strlen(glob),
3913 &func_g.search, &not);
3914 func_g.len = strlen(func_g.search);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003915
Steven Rostedtb6887d72009-02-17 12:32:04 -05003916 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003917 if (WARN_ON(not))
3918 return;
3919 }
3920
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003921 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003922
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003923 old_hash_ops.filter_hash = old_hash;
3924 /* Probes only have filters */
3925 old_hash_ops.notrace_hash = NULL;
3926
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003927 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3928 if (!hash)
3929 /* Hmm, should report this somehow */
3930 goto out_unlock;
3931
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003932 INIT_LIST_HEAD(&free_list);
3933
Steven Rostedt59df055f2009-02-14 15:29:06 -05003934 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3935 struct hlist_head *hhd = &ftrace_func_hash[i];
3936
Sasha Levinb67bfe02013-02-27 17:06:00 -08003937 hlist_for_each_entry_safe(entry, tmp, hhd, node) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003938
3939 /* break up if statements for readability */
Steven Rostedtb6887d72009-02-17 12:32:04 -05003940 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003941 continue;
3942
Steven Rostedtb6887d72009-02-17 12:32:04 -05003943 if ((flags & PROBE_TEST_DATA) && entry->data != data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003944 continue;
3945
3946 /* do this last, since it is the most expensive */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003947 if (func_g.search) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003948 kallsyms_lookup(entry->ip, NULL, NULL,
3949 NULL, str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003950 if (!ftrace_match(str, &func_g))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003951 continue;
3952 }
3953
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003954 rec_entry = ftrace_lookup_ip(hash, entry->ip);
3955 /* It is possible more than one entry had this ip */
3956 if (rec_entry)
3957 free_hash_entry(hash, rec_entry);
3958
Steven Rostedt (Red Hat)740466b2013-03-13 11:15:19 -04003959 hlist_del_rcu(&entry->node);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003960 list_add(&entry->free_list, &free_list);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003961 }
3962 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003963 mutex_lock(&ftrace_lock);
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003964 disabled = __disable_ftrace_function_probe();
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003965 /*
3966 * Remove after the disable is called. Otherwise, if the last
3967 * probe is removed, a null hash means *all enabled*.
3968 */
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003969 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003970
3971 /* still need to update the function call sites */
3972 if (ftrace_enabled && !disabled)
3973 ftrace_run_modify_code(&trace_probe_ops, FTRACE_UPDATE_CALLS,
3974 &old_hash_ops);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003975 synchronize_sched();
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003976 if (!ret)
3977 free_ftrace_hash_rcu(old_hash);
3978
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003979 list_for_each_entry_safe(entry, p, &free_list, free_list) {
3980 list_del(&entry->free_list);
3981 ftrace_free_entry(entry);
3982 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003983 mutex_unlock(&ftrace_lock);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003984
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003985 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003986 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003987 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003988}
3989
3990void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003991unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003992 void *data)
3993{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003994 __unregister_ftrace_function_probe(glob, ops, data,
3995 PROBE_TEST_FUNC | PROBE_TEST_DATA);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003996}
3997
3998void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003999unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004000{
Steven Rostedtb6887d72009-02-17 12:32:04 -05004001 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004002}
4003
Steven Rostedtb6887d72009-02-17 12:32:04 -05004004void unregister_ftrace_function_probe_all(char *glob)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004005{
Steven Rostedtb6887d72009-02-17 12:32:04 -05004006 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004007}
4008
Steven Rostedtf6180772009-02-14 00:40:25 -05004009static LIST_HEAD(ftrace_commands);
4010static DEFINE_MUTEX(ftrace_cmd_mutex);
4011
Tom Zanussi38de93a2013-10-24 08:34:18 -05004012/*
4013 * Currently we only register ftrace commands from __init, so mark this
4014 * __init too.
4015 */
4016__init int register_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05004017{
4018 struct ftrace_func_command *p;
4019 int ret = 0;
4020
4021 mutex_lock(&ftrace_cmd_mutex);
4022 list_for_each_entry(p, &ftrace_commands, list) {
4023 if (strcmp(cmd->name, p->name) == 0) {
4024 ret = -EBUSY;
4025 goto out_unlock;
4026 }
4027 }
4028 list_add(&cmd->list, &ftrace_commands);
4029 out_unlock:
4030 mutex_unlock(&ftrace_cmd_mutex);
4031
4032 return ret;
4033}
4034
Tom Zanussi38de93a2013-10-24 08:34:18 -05004035/*
4036 * Currently we only unregister ftrace commands from __init, so mark
4037 * this __init too.
4038 */
4039__init int unregister_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05004040{
4041 struct ftrace_func_command *p, *n;
4042 int ret = -ENODEV;
4043
4044 mutex_lock(&ftrace_cmd_mutex);
4045 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
4046 if (strcmp(cmd->name, p->name) == 0) {
4047 ret = 0;
4048 list_del_init(&p->list);
4049 goto out_unlock;
4050 }
4051 }
4052 out_unlock:
4053 mutex_unlock(&ftrace_cmd_mutex);
4054
4055 return ret;
4056}
4057
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004058static int ftrace_process_regex(struct ftrace_hash *hash,
4059 char *buff, int len, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05004060{
Steven Rostedtf6180772009-02-14 00:40:25 -05004061 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05004062 struct ftrace_func_command *p;
GuoWen Li0aff1c02011-06-01 19:18:47 +08004063 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004064
4065 func = strsep(&next, ":");
4066
4067 if (!next) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004068 ret = ftrace_match_records(hash, func, len);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004069 if (!ret)
4070 ret = -EINVAL;
4071 if (ret < 0)
4072 return ret;
4073 return 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004074 }
4075
Steven Rostedtf6180772009-02-14 00:40:25 -05004076 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05004077
4078 command = strsep(&next, ":");
4079
Steven Rostedtf6180772009-02-14 00:40:25 -05004080 mutex_lock(&ftrace_cmd_mutex);
4081 list_for_each_entry(p, &ftrace_commands, list) {
4082 if (strcmp(p->name, command) == 0) {
Steven Rostedt43dd61c2011-07-07 11:09:22 -04004083 ret = p->func(hash, func, command, next, enable);
Steven Rostedtf6180772009-02-14 00:40:25 -05004084 goto out_unlock;
4085 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05004086 }
Steven Rostedtf6180772009-02-14 00:40:25 -05004087 out_unlock:
4088 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05004089
Steven Rostedtf6180772009-02-14 00:40:25 -05004090 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004091}
4092
Ingo Molnare309b412008-05-12 21:20:51 +02004093static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004094ftrace_regex_write(struct file *file, const char __user *ubuf,
4095 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02004096{
4097 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004098 struct trace_parser *parser;
4099 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02004100
Li Zefan4ba79782009-09-22 13:52:20 +08004101 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02004102 return 0;
4103
Steven Rostedt5072c592008-05-12 21:20:43 +02004104 if (file->f_mode & FMODE_READ) {
4105 struct seq_file *m = file->private_data;
4106 iter = m->private;
4107 } else
4108 iter = file->private_data;
4109
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004110 if (unlikely(ftrace_disabled))
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004111 return -ENODEV;
4112
4113 /* iter->hash is a local copy, so we don't need regex_lock */
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004114
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004115 parser = &iter->parser;
4116 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02004117
Li Zefan4ba79782009-09-22 13:52:20 +08004118 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004119 !trace_parser_cont(parser)) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004120 ret = ftrace_process_regex(iter->hash, parser->buffer,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004121 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08004122 trace_parser_clear(parser);
Steven Rostedt (Red Hat)7c088b52013-05-09 11:35:12 -04004123 if (ret < 0)
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004124 goto out;
Steven Rostedt5072c592008-05-12 21:20:43 +02004125 }
4126
Steven Rostedt5072c592008-05-12 21:20:43 +02004127 ret = read;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004128 out:
Steven Rostedt5072c592008-05-12 21:20:43 +02004129 return ret;
4130}
4131
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004132ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004133ftrace_filter_write(struct file *file, const char __user *ubuf,
4134 size_t cnt, loff_t *ppos)
4135{
4136 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
4137}
4138
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004139ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004140ftrace_notrace_write(struct file *file, const char __user *ubuf,
4141 size_t cnt, loff_t *ppos)
4142{
4143 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
4144}
4145
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004146static int
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004147ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
4148{
4149 struct ftrace_func_entry *entry;
4150
4151 if (!ftrace_location(ip))
4152 return -EINVAL;
4153
4154 if (remove) {
4155 entry = ftrace_lookup_ip(hash, ip);
4156 if (!entry)
4157 return -ENOENT;
4158 free_hash_entry(hash, entry);
4159 return 0;
4160 }
4161
4162 return add_hash_entry(hash, ip);
4163}
4164
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04004165static void ftrace_ops_update_code(struct ftrace_ops *ops,
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004166 struct ftrace_ops_hash *old_hash)
Steven Rostedt (Red Hat)1c80c432013-07-25 20:22:00 -04004167{
Steven Rostedt (Red Hat)8f86f832015-01-13 11:20:43 -05004168 struct ftrace_ops *op;
4169
4170 if (!ftrace_enabled)
4171 return;
4172
4173 if (ops->flags & FTRACE_OPS_FL_ENABLED) {
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04004174 ftrace_run_modify_code(ops, FTRACE_UPDATE_CALLS, old_hash);
Steven Rostedt (Red Hat)8f86f832015-01-13 11:20:43 -05004175 return;
4176 }
4177
4178 /*
4179 * If this is the shared global_ops filter, then we need to
4180 * check if there is another ops that shares it, is enabled.
4181 * If so, we still need to run the modify code.
4182 */
4183 if (ops->func_hash != &global_ops.local_hash)
4184 return;
4185
4186 do_for_each_ftrace_op(op, ftrace_ops_list) {
4187 if (op->func_hash == &global_ops.local_hash &&
4188 op->flags & FTRACE_OPS_FL_ENABLED) {
4189 ftrace_run_modify_code(op, FTRACE_UPDATE_CALLS, old_hash);
4190 /* Only need to do this once */
4191 return;
4192 }
4193 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)1c80c432013-07-25 20:22:00 -04004194}
4195
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004196static int
4197ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
4198 unsigned long ip, int remove, int reset, int enable)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004199{
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004200 struct ftrace_hash **orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004201 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004202 struct ftrace_hash *old_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004203 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004204 int ret;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004205
Steven Rostedt41c52c02008-05-22 11:46:33 -04004206 if (unlikely(ftrace_disabled))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004207 return -ENODEV;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004208
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004209 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004210
Steven Rostedtf45948e2011-05-02 12:29:25 -04004211 if (enable)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004212 orig_hash = &ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004213 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004214 orig_hash = &ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004215
Wang Nanb972cc52014-07-15 08:40:20 +08004216 if (reset)
4217 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4218 else
4219 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
4220
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004221 if (!hash) {
4222 ret = -ENOMEM;
4223 goto out_regex_unlock;
4224 }
Steven Rostedtf45948e2011-05-02 12:29:25 -04004225
Jiri Olsaac483c42012-01-02 10:04:14 +01004226 if (buf && !ftrace_match_records(hash, buf, len)) {
4227 ret = -EINVAL;
4228 goto out_regex_unlock;
4229 }
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004230 if (ip) {
4231 ret = ftrace_match_addr(hash, ip, remove);
4232 if (ret < 0)
4233 goto out_regex_unlock;
4234 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004235
4236 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004237 old_hash = *orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004238 old_hash_ops.filter_hash = ops->func_hash->filter_hash;
4239 old_hash_ops.notrace_hash = ops->func_hash->notrace_hash;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04004240 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004241 if (!ret) {
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004242 ftrace_ops_update_code(ops, &old_hash_ops);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004243 free_ftrace_hash_rcu(old_hash);
4244 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004245 mutex_unlock(&ftrace_lock);
4246
Jiri Olsaac483c42012-01-02 10:04:14 +01004247 out_regex_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004248 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004249
4250 free_ftrace_hash(hash);
4251 return ret;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004252}
4253
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004254static int
4255ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove,
4256 int reset, int enable)
4257{
4258 return ftrace_set_hash(ops, 0, 0, ip, remove, reset, enable);
4259}
4260
4261/**
4262 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
4263 * @ops - the ops to set the filter with
4264 * @ip - the address to add to or remove from the filter.
4265 * @remove - non zero to remove the ip from the filter
4266 * @reset - non zero to reset all filters before applying this filter.
4267 *
4268 * Filters denote which functions should be enabled when tracing is enabled
4269 * If @ip is NULL, it failes to update filter.
4270 */
4271int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
4272 int remove, int reset)
4273{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004274 ftrace_ops_init(ops);
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004275 return ftrace_set_addr(ops, ip, remove, reset, 1);
4276}
4277EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
4278
4279static int
4280ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
4281 int reset, int enable)
4282{
4283 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
4284}
4285
Steven Rostedt77a2b372008-05-12 21:20:45 +02004286/**
4287 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004288 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02004289 * @buf - the string that holds the function filter text.
4290 * @len - the length of the string.
4291 * @reset - non zero to reset all filters before applying this filter.
4292 *
4293 * Filters denote which functions should be enabled when tracing is enabled.
4294 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4295 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004296int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004297 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02004298{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004299 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004300 return ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04004301}
Steven Rostedt936e0742011-05-05 22:54:01 -04004302EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004303
Steven Rostedt41c52c02008-05-22 11:46:33 -04004304/**
4305 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004306 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04004307 * @buf - the string that holds the function notrace text.
4308 * @len - the length of the string.
4309 * @reset - non zero to reset all filters before applying this filter.
4310 *
4311 * Notrace Filters denote which functions should not be enabled when tracing
4312 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4313 * for tracing.
4314 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004315int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004316 int len, int reset)
4317{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004318 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004319 return ftrace_set_regex(ops, buf, len, reset, 0);
Steven Rostedt936e0742011-05-05 22:54:01 -04004320}
4321EXPORT_SYMBOL_GPL(ftrace_set_notrace);
4322/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004323 * ftrace_set_global_filter - set a function to filter on with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004324 * @buf - the string that holds the function filter text.
4325 * @len - the length of the string.
4326 * @reset - non zero to reset all filters before applying this filter.
4327 *
4328 * Filters denote which functions should be enabled when tracing is enabled.
4329 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4330 */
4331void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
4332{
4333 ftrace_set_regex(&global_ops, buf, len, reset, 1);
4334}
4335EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
4336
4337/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004338 * ftrace_set_global_notrace - set a function to not trace with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004339 * @buf - the string that holds the function notrace text.
4340 * @len - the length of the string.
4341 * @reset - non zero to reset all filters before applying this filter.
4342 *
4343 * Notrace Filters denote which functions should not be enabled when tracing
4344 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4345 * for tracing.
4346 */
4347void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004348{
Steven Rostedtf45948e2011-05-02 12:29:25 -04004349 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004350}
Steven Rostedt936e0742011-05-05 22:54:01 -04004351EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004352
Steven Rostedt2af15d62009-05-28 13:37:24 -04004353/*
4354 * command line interface to allow users to set filters on boot up.
4355 */
4356#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
4357static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4358static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
4359
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004360/* Used by function selftest to not test if filter is set */
4361bool ftrace_filter_param __initdata;
4362
Steven Rostedt2af15d62009-05-28 13:37:24 -04004363static int __init set_ftrace_notrace(char *str)
4364{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004365 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004366 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004367 return 1;
4368}
4369__setup("ftrace_notrace=", set_ftrace_notrace);
4370
4371static int __init set_ftrace_filter(char *str)
4372{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004373 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004374 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004375 return 1;
4376}
4377__setup("ftrace_filter=", set_ftrace_filter);
4378
Stefan Assmann369bc182009-10-12 22:17:21 +02004379#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08004380static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004381static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004382static int ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer);
Steven Rostedt801c29f2010-03-05 20:02:19 -05004383
Stefan Assmann369bc182009-10-12 22:17:21 +02004384static int __init set_graph_function(char *str)
4385{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02004386 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02004387 return 1;
4388}
4389__setup("ftrace_graph_filter=", set_graph_function);
4390
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004391static int __init set_graph_notrace_function(char *str)
4392{
4393 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
4394 return 1;
4395}
4396__setup("ftrace_graph_notrace=", set_graph_notrace_function);
4397
4398static void __init set_ftrace_early_graph(char *buf, int enable)
Stefan Assmann369bc182009-10-12 22:17:21 +02004399{
4400 int ret;
4401 char *func;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004402 unsigned long *table = ftrace_graph_funcs;
4403 int *count = &ftrace_graph_count;
4404
4405 if (!enable) {
4406 table = ftrace_graph_notrace_funcs;
4407 count = &ftrace_graph_notrace_count;
4408 }
Stefan Assmann369bc182009-10-12 22:17:21 +02004409
4410 while (buf) {
4411 func = strsep(&buf, ",");
4412 /* we allow only one expression at a time */
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004413 ret = ftrace_set_func(table, count, FTRACE_GRAPH_MAX_FUNCS, func);
Stefan Assmann369bc182009-10-12 22:17:21 +02004414 if (ret)
4415 printk(KERN_DEBUG "ftrace: function %s not "
4416 "traceable\n", func);
4417 }
4418}
4419#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4420
Steven Rostedt2a85a372011-12-19 21:57:44 -05004421void __init
4422ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04004423{
4424 char *func;
4425
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004426 ftrace_ops_init(ops);
4427
Steven Rostedt2af15d62009-05-28 13:37:24 -04004428 while (buf) {
4429 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04004430 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004431 }
4432}
4433
4434static void __init set_ftrace_early_filters(void)
4435{
4436 if (ftrace_filter_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004437 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004438 if (ftrace_notrace_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004439 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02004440#ifdef CONFIG_FUNCTION_GRAPH_TRACER
4441 if (ftrace_graph_buf[0])
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004442 set_ftrace_early_graph(ftrace_graph_buf, 1);
4443 if (ftrace_graph_notrace_buf[0])
4444 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02004445#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04004446}
4447
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004448int ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02004449{
4450 struct seq_file *m = (struct seq_file *)file->private_data;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004451 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02004452 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004453 struct ftrace_hash **orig_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004454 struct ftrace_hash *old_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004455 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04004456 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004457 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02004458
Steven Rostedt5072c592008-05-12 21:20:43 +02004459 if (file->f_mode & FMODE_READ) {
4460 iter = m->private;
Steven Rostedt5072c592008-05-12 21:20:43 +02004461 seq_release(inode, file);
4462 } else
4463 iter = file->private_data;
4464
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004465 parser = &iter->parser;
4466 if (trace_parser_loaded(parser)) {
4467 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004468 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02004469 }
4470
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004471 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004472
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004473 mutex_lock(&iter->ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004474
Steven Rostedt058e2972011-04-29 22:35:33 -04004475 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04004476 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
4477
4478 if (filter_hash)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004479 orig_hash = &iter->ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04004480 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004481 orig_hash = &iter->ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004482
Steven Rostedt058e2972011-04-29 22:35:33 -04004483 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004484 old_hash = *orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004485 old_hash_ops.filter_hash = iter->ops->func_hash->filter_hash;
4486 old_hash_ops.notrace_hash = iter->ops->func_hash->notrace_hash;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04004487 ret = ftrace_hash_move(iter->ops, filter_hash,
4488 orig_hash, iter->hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004489 if (!ret) {
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004490 ftrace_ops_update_code(iter->ops, &old_hash_ops);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004491 free_ftrace_hash_rcu(old_hash);
4492 }
Steven Rostedt058e2972011-04-29 22:35:33 -04004493 mutex_unlock(&ftrace_lock);
4494 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004495
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004496 mutex_unlock(&iter->ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004497 free_ftrace_hash(iter->hash);
4498 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04004499
Steven Rostedt5072c592008-05-12 21:20:43 +02004500 return 0;
4501}
4502
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004503static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02004504 .open = ftrace_avail_open,
4505 .read = seq_read,
4506 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08004507 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02004508};
4509
Steven Rostedt647bcd02011-05-03 14:39:21 -04004510static const struct file_operations ftrace_enabled_fops = {
4511 .open = ftrace_enabled_open,
4512 .read = seq_read,
4513 .llseek = seq_lseek,
4514 .release = seq_release_private,
4515};
4516
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004517static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02004518 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08004519 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02004520 .write = ftrace_filter_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004521 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004522 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02004523};
4524
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004525static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04004526 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08004527 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04004528 .write = ftrace_notrace_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004529 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004530 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04004531};
4532
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004533#ifdef CONFIG_FUNCTION_GRAPH_TRACER
4534
4535static DEFINE_MUTEX(graph_lock);
4536
4537int ftrace_graph_count;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004538int ftrace_graph_notrace_count;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004539unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004540unsigned long ftrace_graph_notrace_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004541
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004542struct ftrace_graph_data {
4543 unsigned long *table;
4544 size_t size;
4545 int *count;
4546 const struct seq_operations *seq_ops;
4547};
4548
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004549static void *
Li Zefan85951842009-06-24 09:54:00 +08004550__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004551{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004552 struct ftrace_graph_data *fgd = m->private;
4553
4554 if (*pos >= *fgd->count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004555 return NULL;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004556 return &fgd->table[*pos];
Li Zefan85951842009-06-24 09:54:00 +08004557}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004558
Li Zefan85951842009-06-24 09:54:00 +08004559static void *
4560g_next(struct seq_file *m, void *v, loff_t *pos)
4561{
4562 (*pos)++;
4563 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004564}
4565
4566static void *g_start(struct seq_file *m, loff_t *pos)
4567{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004568 struct ftrace_graph_data *fgd = m->private;
4569
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004570 mutex_lock(&graph_lock);
4571
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004572 /* Nothing, tell g_show to print all functions are enabled */
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004573 if (!*fgd->count && !*pos)
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004574 return (void *)1;
4575
Li Zefan85951842009-06-24 09:54:00 +08004576 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004577}
4578
4579static void g_stop(struct seq_file *m, void *p)
4580{
4581 mutex_unlock(&graph_lock);
4582}
4583
4584static int g_show(struct seq_file *m, void *v)
4585{
4586 unsigned long *ptr = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004587
4588 if (!ptr)
4589 return 0;
4590
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004591 if (ptr == (unsigned long *)1) {
Namhyung Kim280d1422014-06-13 01:23:51 +09004592 struct ftrace_graph_data *fgd = m->private;
4593
4594 if (fgd->table == ftrace_graph_funcs)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01004595 seq_puts(m, "#### all functions enabled ####\n");
Namhyung Kim280d1422014-06-13 01:23:51 +09004596 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01004597 seq_puts(m, "#### no functions disabled ####\n");
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004598 return 0;
4599 }
4600
Steven Rostedtb375a112009-09-17 00:05:58 -04004601 seq_printf(m, "%ps\n", (void *)*ptr);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004602
4603 return 0;
4604}
4605
James Morris88e9d342009-09-22 16:43:43 -07004606static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004607 .start = g_start,
4608 .next = g_next,
4609 .stop = g_stop,
4610 .show = g_show,
4611};
4612
4613static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004614__ftrace_graph_open(struct inode *inode, struct file *file,
4615 struct ftrace_graph_data *fgd)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004616{
4617 int ret = 0;
4618
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004619 mutex_lock(&graph_lock);
4620 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04004621 (file->f_flags & O_TRUNC)) {
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004622 *fgd->count = 0;
4623 memset(fgd->table, 0, fgd->size * sizeof(*fgd->table));
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004624 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004625 mutex_unlock(&graph_lock);
4626
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004627 if (file->f_mode & FMODE_READ) {
4628 ret = seq_open(file, fgd->seq_ops);
4629 if (!ret) {
4630 struct seq_file *m = file->private_data;
4631 m->private = fgd;
4632 }
4633 } else
4634 file->private_data = fgd;
Li Zefana4ec5e02009-09-18 14:06:28 +08004635
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004636 return ret;
4637}
4638
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004639static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004640ftrace_graph_open(struct inode *inode, struct file *file)
4641{
4642 struct ftrace_graph_data *fgd;
4643
4644 if (unlikely(ftrace_disabled))
4645 return -ENODEV;
4646
4647 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4648 if (fgd == NULL)
4649 return -ENOMEM;
4650
4651 fgd->table = ftrace_graph_funcs;
4652 fgd->size = FTRACE_GRAPH_MAX_FUNCS;
4653 fgd->count = &ftrace_graph_count;
4654 fgd->seq_ops = &ftrace_graph_seq_ops;
4655
4656 return __ftrace_graph_open(inode, file, fgd);
4657}
4658
4659static int
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004660ftrace_graph_notrace_open(struct inode *inode, struct file *file)
4661{
4662 struct ftrace_graph_data *fgd;
4663
4664 if (unlikely(ftrace_disabled))
4665 return -ENODEV;
4666
4667 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4668 if (fgd == NULL)
4669 return -ENOMEM;
4670
4671 fgd->table = ftrace_graph_notrace_funcs;
4672 fgd->size = FTRACE_GRAPH_MAX_FUNCS;
4673 fgd->count = &ftrace_graph_notrace_count;
4674 fgd->seq_ops = &ftrace_graph_seq_ops;
4675
4676 return __ftrace_graph_open(inode, file, fgd);
4677}
4678
4679static int
Li Zefan87827112009-07-23 11:29:11 +08004680ftrace_graph_release(struct inode *inode, struct file *file)
4681{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004682 if (file->f_mode & FMODE_READ) {
4683 struct seq_file *m = file->private_data;
4684
4685 kfree(m->private);
Li Zefan87827112009-07-23 11:29:11 +08004686 seq_release(inode, file);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004687 } else {
4688 kfree(file->private_data);
4689 }
4690
Li Zefan87827112009-07-23 11:29:11 +08004691 return 0;
4692}
4693
4694static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004695ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004696{
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004697 struct ftrace_glob func_g;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004698 struct dyn_ftrace *rec;
4699 struct ftrace_page *pg;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004700 int fail = 1;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004701 int not;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004702 bool exists;
4703 int i;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004704
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004705 /* decode regex */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004706 func_g.type = filter_parse_regex(buffer, strlen(buffer),
4707 &func_g.search, &not);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004708 if (!not && *idx >= size)
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004709 return -EBUSY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004710
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004711 func_g.len = strlen(func_g.search);
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004712
Steven Rostedt52baf112009-02-14 01:15:39 -05004713 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04004714
4715 if (unlikely(ftrace_disabled)) {
4716 mutex_unlock(&ftrace_lock);
4717 return -ENODEV;
4718 }
4719
Steven Rostedt265c8312009-02-13 12:43:56 -05004720 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004721
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05004722 if (rec->flags & FTRACE_FL_DISABLED)
4723 continue;
4724
Dmitry Safonov0b507e12015-09-29 19:46:15 +03004725 if (ftrace_match_record(rec, &func_g, NULL, 0)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004726 /* if it is in the array */
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004727 exists = false;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004728 for (i = 0; i < *idx; i++) {
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004729 if (array[i] == rec->ip) {
4730 exists = true;
Steven Rostedt265c8312009-02-13 12:43:56 -05004731 break;
4732 }
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004733 }
4734
4735 if (!not) {
4736 fail = 0;
4737 if (!exists) {
4738 array[(*idx)++] = rec->ip;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004739 if (*idx >= size)
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004740 goto out;
4741 }
4742 } else {
4743 if (exists) {
4744 array[i] = array[--(*idx)];
4745 array[*idx] = 0;
4746 fail = 0;
4747 }
4748 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004749 }
Steven Rostedt265c8312009-02-13 12:43:56 -05004750 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004751out:
Steven Rostedt52baf112009-02-14 01:15:39 -05004752 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004753
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004754 if (fail)
4755 return -EINVAL;
4756
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004757 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004758}
4759
4760static ssize_t
4761ftrace_graph_write(struct file *file, const char __user *ubuf,
4762 size_t cnt, loff_t *ppos)
4763{
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004764 struct trace_parser parser;
Namhyung Kim6a101082013-10-14 17:24:25 +09004765 ssize_t read, ret = 0;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004766 struct ftrace_graph_data *fgd = file->private_data;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004767
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004768 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004769 return 0;
4770
Namhyung Kim6a101082013-10-14 17:24:25 +09004771 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX))
4772 return -ENOMEM;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004773
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004774 read = trace_get_user(&parser, ubuf, cnt, ppos);
4775
Li Zefan4ba79782009-09-22 13:52:20 +08004776 if (read >= 0 && trace_parser_loaded((&parser))) {
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004777 parser.buffer[parser.idx] = 0;
4778
Namhyung Kim6a101082013-10-14 17:24:25 +09004779 mutex_lock(&graph_lock);
4780
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004781 /* we allow only one expression at a time */
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004782 ret = ftrace_set_func(fgd->table, fgd->count, fgd->size,
4783 parser.buffer);
Namhyung Kim6a101082013-10-14 17:24:25 +09004784
4785 mutex_unlock(&graph_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004786 }
4787
Namhyung Kim6a101082013-10-14 17:24:25 +09004788 if (!ret)
4789 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08004790
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004791 trace_parser_put(&parser);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004792
4793 return ret;
4794}
4795
4796static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08004797 .open = ftrace_graph_open,
4798 .read = seq_read,
4799 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004800 .llseek = tracing_lseek,
Li Zefan87827112009-07-23 11:29:11 +08004801 .release = ftrace_graph_release,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004802};
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004803
4804static const struct file_operations ftrace_graph_notrace_fops = {
4805 .open = ftrace_graph_notrace_open,
4806 .read = seq_read,
4807 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004808 .llseek = tracing_lseek,
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004809 .release = ftrace_graph_release,
4810};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004811#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4812
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05004813void ftrace_create_filter_files(struct ftrace_ops *ops,
4814 struct dentry *parent)
4815{
4816
4817 trace_create_file("set_ftrace_filter", 0644, parent,
4818 ops, &ftrace_filter_fops);
4819
4820 trace_create_file("set_ftrace_notrace", 0644, parent,
4821 ops, &ftrace_notrace_fops);
4822}
4823
4824/*
4825 * The name "destroy_filter_files" is really a misnomer. Although
4826 * in the future, it may actualy delete the files, but this is
4827 * really intended to make sure the ops passed in are disabled
4828 * and that when this function returns, the caller is free to
4829 * free the ops.
4830 *
4831 * The "destroy" name is only to match the "create" name that this
4832 * should be paired with.
4833 */
4834void ftrace_destroy_filter_files(struct ftrace_ops *ops)
4835{
4836 mutex_lock(&ftrace_lock);
4837 if (ops->flags & FTRACE_OPS_FL_ENABLED)
4838 ftrace_shutdown(ops, 0);
4839 ops->flags |= FTRACE_OPS_FL_DELETED;
4840 mutex_unlock(&ftrace_lock);
4841}
4842
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05004843static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02004844{
Steven Rostedt5072c592008-05-12 21:20:43 +02004845
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004846 trace_create_file("available_filter_functions", 0444,
4847 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02004848
Steven Rostedt647bcd02011-05-03 14:39:21 -04004849 trace_create_file("enabled_functions", 0444,
4850 d_tracer, NULL, &ftrace_enabled_fops);
4851
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05004852 ftrace_create_filter_files(&global_ops, d_tracer);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04004853
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004854#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004855 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004856 NULL,
4857 &ftrace_graph_fops);
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004858 trace_create_file("set_graph_notrace", 0444, d_tracer,
4859 NULL,
4860 &ftrace_graph_notrace_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004861#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4862
Steven Rostedt5072c592008-05-12 21:20:43 +02004863 return 0;
4864}
4865
Steven Rostedt9fd49322012-04-24 22:32:06 -04004866static int ftrace_cmp_ips(const void *a, const void *b)
Steven Rostedt68950612011-12-16 17:06:45 -05004867{
Steven Rostedt9fd49322012-04-24 22:32:06 -04004868 const unsigned long *ipa = a;
4869 const unsigned long *ipb = b;
Steven Rostedt68950612011-12-16 17:06:45 -05004870
Steven Rostedt9fd49322012-04-24 22:32:06 -04004871 if (*ipa > *ipb)
4872 return 1;
4873 if (*ipa < *ipb)
4874 return -1;
4875 return 0;
4876}
4877
Sami Tolvanen7bd125e2017-06-16 12:52:57 -07004878static int __norecordmcount ftrace_process_locs(struct module *mod,
4879 unsigned long *start,
4880 unsigned long *end)
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004881{
Steven Rostedt706c81f2012-04-24 23:45:26 -04004882 struct ftrace_page *start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004883 struct ftrace_page *pg;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004884 struct dyn_ftrace *rec;
Steven Rostedta7900872011-12-16 16:23:44 -05004885 unsigned long count;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004886 unsigned long *p;
4887 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04004888 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedta7900872011-12-16 16:23:44 -05004889 int ret = -ENOMEM;
4890
4891 count = end - start;
4892
4893 if (!count)
4894 return 0;
4895
Steven Rostedt9fd49322012-04-24 22:32:06 -04004896 sort(start, count, sizeof(*start),
Rasmus Villemoes6db02902015-09-09 23:27:02 +02004897 ftrace_cmp_ips, NULL);
Steven Rostedt9fd49322012-04-24 22:32:06 -04004898
Steven Rostedt706c81f2012-04-24 23:45:26 -04004899 start_pg = ftrace_allocate_pages(count);
4900 if (!start_pg)
Steven Rostedta7900872011-12-16 16:23:44 -05004901 return -ENOMEM;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004902
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004903 mutex_lock(&ftrace_lock);
Steven Rostedta7900872011-12-16 16:23:44 -05004904
Steven Rostedt32082302011-12-16 14:42:37 -05004905 /*
4906 * Core and each module needs their own pages, as
4907 * modules will free them when they are removed.
4908 * Force a new page to be allocated for modules.
4909 */
Steven Rostedta7900872011-12-16 16:23:44 -05004910 if (!mod) {
4911 WARN_ON(ftrace_pages || ftrace_pages_start);
4912 /* First initialization */
Steven Rostedt706c81f2012-04-24 23:45:26 -04004913 ftrace_pages = ftrace_pages_start = start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004914 } else {
Steven Rostedt32082302011-12-16 14:42:37 -05004915 if (!ftrace_pages)
Steven Rostedta7900872011-12-16 16:23:44 -05004916 goto out;
Steven Rostedt32082302011-12-16 14:42:37 -05004917
Steven Rostedta7900872011-12-16 16:23:44 -05004918 if (WARN_ON(ftrace_pages->next)) {
4919 /* Hmm, we have free pages? */
4920 while (ftrace_pages->next)
4921 ftrace_pages = ftrace_pages->next;
Steven Rostedt32082302011-12-16 14:42:37 -05004922 }
Steven Rostedta7900872011-12-16 16:23:44 -05004923
Steven Rostedt706c81f2012-04-24 23:45:26 -04004924 ftrace_pages->next = start_pg;
Steven Rostedt32082302011-12-16 14:42:37 -05004925 }
4926
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004927 p = start;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004928 pg = start_pg;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004929 while (p < end) {
4930 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08004931 /*
4932 * Some architecture linkers will pad between
4933 * the different mcount_loc sections of different
4934 * object files to satisfy alignments.
4935 * Skip any NULL pointers.
4936 */
4937 if (!addr)
4938 continue;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004939
4940 if (pg->index == pg->size) {
4941 /* We should have allocated enough */
4942 if (WARN_ON(!pg->next))
4943 break;
4944 pg = pg->next;
4945 }
4946
4947 rec = &pg->records[pg->index++];
4948 rec->ip = addr;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004949 }
4950
Steven Rostedt706c81f2012-04-24 23:45:26 -04004951 /* We should have used all pages */
4952 WARN_ON(pg->next);
4953
4954 /* Assign the last page to ftrace_pages */
4955 ftrace_pages = pg;
4956
Steven Rostedta4f18ed2011-06-07 09:26:46 -04004957 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04004958 * We only need to disable interrupts on start up
4959 * because we are modifying code that an interrupt
4960 * may execute, and the modification is not atomic.
4961 * But for modules, nothing runs the code we modify
4962 * until we are finished with it, and there's no
4963 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04004964 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04004965 if (!mod)
4966 local_irq_save(flags);
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01004967 ftrace_update_code(mod, start_pg);
Steven Rostedt4376cac2011-06-24 23:28:13 -04004968 if (!mod)
4969 local_irq_restore(flags);
Steven Rostedta7900872011-12-16 16:23:44 -05004970 ret = 0;
4971 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004972 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004973
Steven Rostedta7900872011-12-16 16:23:44 -05004974 return ret;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004975}
4976
Steven Rostedt93eb6772009-04-15 13:24:06 -04004977#ifdef CONFIG_MODULES
Steven Rostedt32082302011-12-16 14:42:37 -05004978
4979#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
4980
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05004981static int referenced_filters(struct dyn_ftrace *rec)
4982{
4983 struct ftrace_ops *ops;
4984 int cnt = 0;
4985
4986 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
4987 if (ops_references_rec(ops, rec))
4988 cnt++;
4989 }
4990
4991 return cnt;
4992}
4993
jolsa@redhat.come7247a12009-10-07 19:00:35 +02004994void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04004995{
4996 struct dyn_ftrace *rec;
Steven Rostedt32082302011-12-16 14:42:37 -05004997 struct ftrace_page **last_pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04004998 struct ftrace_page *pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004999 int order;
Steven Rostedt93eb6772009-04-15 13:24:06 -04005000
Steven Rostedt93eb6772009-04-15 13:24:06 -04005001 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04005002
5003 if (ftrace_disabled)
5004 goto out_unlock;
5005
Steven Rostedt32082302011-12-16 14:42:37 -05005006 /*
5007 * Each module has its own ftrace_pages, remove
5008 * them from the list.
5009 */
5010 last_pg = &ftrace_pages_start;
5011 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
5012 rec = &pg->records[0];
jolsa@redhat.come7247a12009-10-07 19:00:35 +02005013 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04005014 /*
Steven Rostedt32082302011-12-16 14:42:37 -05005015 * As core pages are first, the first
5016 * page should never be a module page.
Steven Rostedt93eb6772009-04-15 13:24:06 -04005017 */
Steven Rostedt32082302011-12-16 14:42:37 -05005018 if (WARN_ON(pg == ftrace_pages_start))
5019 goto out_unlock;
5020
5021 /* Check if we are deleting the last page */
5022 if (pg == ftrace_pages)
5023 ftrace_pages = next_to_ftrace_page(last_pg);
5024
5025 *last_pg = pg->next;
Steven Rostedta7900872011-12-16 16:23:44 -05005026 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
5027 free_pages((unsigned long)pg->records, order);
5028 kfree(pg);
Steven Rostedt32082302011-12-16 14:42:37 -05005029 } else
5030 last_pg = &pg->next;
5031 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04005032 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04005033 mutex_unlock(&ftrace_lock);
5034}
5035
Jessica Yu7dcd1822016-02-16 17:32:33 -05005036void ftrace_module_enable(struct module *mod)
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005037{
5038 struct dyn_ftrace *rec;
5039 struct ftrace_page *pg;
5040
5041 mutex_lock(&ftrace_lock);
5042
5043 if (ftrace_disabled)
5044 goto out_unlock;
5045
5046 /*
5047 * If the tracing is enabled, go ahead and enable the record.
5048 *
5049 * The reason not to enable the record immediatelly is the
5050 * inherent check of ftrace_make_nop/ftrace_make_call for
5051 * correct previous instructions. Making first the NOP
5052 * conversion puts the module to the correct state, thus
5053 * passing the ftrace_make_call check.
5054 *
5055 * We also delay this to after the module code already set the
5056 * text to read-only, as we now need to set it back to read-write
5057 * so that we can modify the text.
5058 */
5059 if (ftrace_start_up)
5060 ftrace_arch_code_modify_prepare();
5061
5062 do_for_each_ftrace_rec(pg, rec) {
5063 int cnt;
5064 /*
5065 * do_for_each_ftrace_rec() is a double loop.
5066 * module text shares the pg. If a record is
5067 * not part of this module, then skip this pg,
5068 * which the "break" will do.
5069 */
5070 if (!within_module_core(rec->ip, mod))
5071 break;
5072
5073 cnt = 0;
5074
5075 /*
5076 * When adding a module, we need to check if tracers are
5077 * currently enabled and if they are, and can trace this record,
5078 * we need to enable the module functions as well as update the
5079 * reference counts for those function records.
5080 */
5081 if (ftrace_start_up)
5082 cnt += referenced_filters(rec);
5083
5084 /* This clears FTRACE_FL_DISABLED */
5085 rec->flags = cnt;
5086
5087 if (ftrace_start_up && cnt) {
5088 int failed = __ftrace_replace_code(rec, 1);
5089 if (failed) {
5090 ftrace_bug(failed, rec);
5091 goto out_loop;
5092 }
5093 }
5094
5095 } while_for_each_ftrace_rec();
5096
5097 out_loop:
5098 if (ftrace_start_up)
5099 ftrace_arch_code_modify_post_process();
5100
5101 out_unlock:
5102 mutex_unlock(&ftrace_lock);
5103}
5104
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04005105void ftrace_module_init(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005106{
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005107 if (ftrace_disabled || !mod->num_ftrace_callsites)
Abel Vesab6b71f62015-12-02 15:39:57 +01005108 return;
5109
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005110 ftrace_process_locs(mod, mod->ftrace_callsites,
5111 mod->ftrace_callsites + mod->num_ftrace_callsites);
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05005112}
Steven Rostedt93eb6772009-04-15 13:24:06 -04005113#endif /* CONFIG_MODULES */
5114
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005115void __init ftrace_init(void)
5116{
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01005117 extern unsigned long __start_mcount_loc[];
5118 extern unsigned long __stop_mcount_loc[];
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005119 unsigned long count, flags;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005120 int ret;
5121
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005122 local_irq_save(flags);
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005123 ret = ftrace_dyn_arch_init();
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005124 local_irq_restore(flags);
Jiri Slabyaf64a7c2014-02-24 19:59:58 +01005125 if (ret)
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005126 goto failed;
5127
5128 count = __stop_mcount_loc - __start_mcount_loc;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005129 if (!count) {
5130 pr_info("ftrace: No functions to be traced?\n");
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005131 goto failed;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005132 }
5133
5134 pr_info("ftrace: allocating %ld entries in %ld pages\n",
5135 count, count / ENTRIES_PER_PAGE + 1);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005136
5137 last_ftrace_enabled = ftrace_enabled = 1;
5138
Jiri Olsa5cb084b2009-10-13 16:33:53 -04005139 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08005140 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005141 __stop_mcount_loc);
5142
Steven Rostedt2af15d62009-05-28 13:37:24 -04005143 set_ftrace_early_filters();
5144
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005145 return;
5146 failed:
5147 ftrace_disabled = 1;
5148}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005149
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005150/* Do nothing if arch does not support this */
5151void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
5152{
5153}
5154
5155static void ftrace_update_trampoline(struct ftrace_ops *ops)
5156{
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04005157
5158/*
5159 * Currently there's no safe way to free a trampoline when the kernel
5160 * is configured with PREEMPT. That is because a task could be preempted
5161 * when it jumped to the trampoline, it may be preempted for a long time
5162 * depending on the system load, and currently there's no way to know
5163 * when it will be off the trampoline. If the trampoline is freed
5164 * too early, when the task runs again, it will be executing on freed
5165 * memory and crash.
5166 */
5167#ifdef CONFIG_PREEMPT
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005168 /* Currently, only non dynamic ops can have a trampoline */
5169 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
5170 return;
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04005171#endif
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005172
5173 arch_ftrace_update_trampoline(ops);
5174}
5175
Steven Rostedt3d083392008-05-12 21:20:42 +02005176#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005177
Steven Rostedt2b499382011-05-03 22:49:52 -04005178static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04005179 .func = ftrace_stub,
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005180 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5181 FTRACE_OPS_FL_INITIALIZED |
5182 FTRACE_OPS_FL_PID,
Steven Rostedtbd69c302011-05-03 21:55:54 -04005183};
5184
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005185static int __init ftrace_nodyn_init(void)
5186{
5187 ftrace_enabled = 1;
5188 return 0;
5189}
Steven Rostedt6f415672012-10-05 12:13:07 -04005190core_initcall(ftrace_nodyn_init);
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005191
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005192static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005193static inline void ftrace_startup_enable(int command) { }
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005194static inline void ftrace_startup_all(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05005195/* Keep as macros so we do not need to define the commands */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005196# define ftrace_startup(ops, command) \
5197 ({ \
5198 int ___ret = __register_ftrace_function(ops); \
5199 if (!___ret) \
5200 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
5201 ___ret; \
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04005202 })
Steven Rostedt (Red Hat)1fcc1552014-02-19 15:12:18 -05005203# define ftrace_shutdown(ops, command) \
5204 ({ \
5205 int ___ret = __unregister_ftrace_function(ops); \
5206 if (!___ret) \
5207 (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \
5208 ___ret; \
5209 })
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005210
Ingo Molnarc7aafc52008-05-12 21:20:45 +02005211# define ftrace_startup_sysctl() do { } while (0)
5212# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04005213
5214static inline int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04005215ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005216{
5217 return 1;
5218}
5219
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005220static void ftrace_update_trampoline(struct ftrace_ops *ops)
5221{
5222}
5223
Steven Rostedt3d083392008-05-12 21:20:42 +02005224#endif /* CONFIG_DYNAMIC_FTRACE */
5225
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005226__init void ftrace_init_global_array_ops(struct trace_array *tr)
5227{
5228 tr->ops = &global_ops;
5229 tr->ops->private = tr;
5230}
5231
5232void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
5233{
5234 /* If we filter on pids, update to use the pid function */
5235 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
5236 if (WARN_ON(tr->ops->func != ftrace_stub))
5237 printk("ftrace ops had %pS for function\n",
5238 tr->ops->func);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005239 }
5240 tr->ops->func = func;
5241 tr->ops->private = tr;
5242}
5243
5244void ftrace_reset_array_ops(struct trace_array *tr)
5245{
5246 tr->ops->func = ftrace_stub;
5247}
5248
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005249static inline void
5250__ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005251 struct ftrace_ops *ignored, struct pt_regs *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005252{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005253 struct ftrace_ops *op;
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005254 int bit;
Steven Rostedtb8489142011-05-04 09:27:52 -04005255
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005256 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5257 if (bit < 0)
5258 return;
Steven Rostedtc29f1222012-11-02 17:17:59 -04005259
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005260 /*
5261 * Some of the ops may be dynamically allocated,
5262 * they must be freed after a synchronize_sched().
5263 */
5264 preempt_disable_notrace();
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05005265
Steven Rostedt0a016402012-11-02 17:03:03 -04005266 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05005267 /*
5268 * Check the following for each ops before calling their func:
5269 * if RCU flag is set, then rcu_is_watching() must be true
5270 * if PER_CPU is set, then ftrace_function_local_disable()
5271 * must be false
5272 * Otherwise test if the ip matches the ops filter
5273 *
5274 * If any of the above fails then the op->func() is not executed.
5275 */
5276 if ((!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching()) &&
5277 (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5278 !ftrace_function_local_disabled(op)) &&
5279 ftrace_ops_test(op, ip, regs)) {
5280
Steven Rostedt (Red Hat)1d48d592014-06-25 11:54:03 -04005281 if (FTRACE_WARN_ON(!op->func)) {
5282 pr_warn("op=%p %pS\n", op, op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005283 goto out;
5284 }
Steven Rostedta1e2e312011-08-09 12:50:46 -04005285 op->func(ip, parent_ip, op, regs);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005286 }
Steven Rostedt0a016402012-11-02 17:03:03 -04005287 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005288out:
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005289 preempt_enable_notrace();
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005290 trace_clear_recursion(bit);
Steven Rostedtb8489142011-05-04 09:27:52 -04005291}
5292
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005293/*
5294 * Some archs only support passing ip and parent_ip. Even though
5295 * the list function ignores the op parameter, we do not want any
5296 * C side effects, where a function is called without the caller
5297 * sending a third parameter.
Steven Rostedta1e2e312011-08-09 12:50:46 -04005298 * Archs are to support both the regs and ftrace_ops at the same time.
5299 * If they support ftrace_ops, it is assumed they support regs.
5300 * If call backs want to use regs, they must either check for regs
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +09005301 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
5302 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
Steven Rostedta1e2e312011-08-09 12:50:46 -04005303 * An architecture can pass partial regs with ftrace_ops and still
Li Binb8ec3302015-11-30 18:23:36 +08005304 * set the ARCH_SUPPORTS_FTRACE_OPS.
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005305 */
5306#if ARCH_SUPPORTS_FTRACE_OPS
5307static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005308 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005309{
Steven Rostedta1e2e312011-08-09 12:50:46 -04005310 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005311}
5312#else
Sami Tolvanenc2f9bce2018-05-10 14:56:41 -07005313static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip,
5314 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005315{
Steven Rostedta1e2e312011-08-09 12:50:46 -04005316 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005317}
5318#endif
5319
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005320/*
5321 * If there's only one function registered but it does not support
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005322 * recursion, needs RCU protection and/or requires per cpu handling, then
5323 * this function will be called by the mcount trampoline.
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005324 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005325static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005326 struct ftrace_ops *op, struct pt_regs *regs)
5327{
5328 int bit;
5329
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005330 if ((op->flags & FTRACE_OPS_FL_RCU) && !rcu_is_watching())
5331 return;
5332
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005333 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5334 if (bit < 0)
5335 return;
5336
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005337 preempt_disable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005338
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005339 if (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5340 !ftrace_function_local_disabled(op)) {
5341 op->func(ip, parent_ip, op, regs);
5342 }
5343
5344 preempt_enable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005345 trace_clear_recursion(bit);
5346}
5347
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005348/**
5349 * ftrace_ops_get_func - get the function a trampoline should call
5350 * @ops: the ops to get the function for
5351 *
5352 * Normally the mcount trampoline will call the ops->func, but there
5353 * are times that it should not. For example, if the ops does not
5354 * have its own recursion protection, then it should call the
5355 * ftrace_ops_recurs_func() instead.
5356 *
5357 * Returns the function that the trampoline should call for @ops.
5358 */
5359ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
5360{
5361 /*
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005362 * If the function does not handle recursion, needs to be RCU safe,
5363 * or does per cpu logic, then we need to call the assist handler.
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005364 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005365 if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE) ||
5366 ops->flags & (FTRACE_OPS_FL_RCU | FTRACE_OPS_FL_PER_CPU))
5367 return ftrace_ops_assist_func;
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005368
5369 return ops->func;
5370}
5371
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005372static void
5373ftrace_filter_pid_sched_switch_probe(void *data, bool preempt,
5374 struct task_struct *prev, struct task_struct *next)
Steven Rostedte32d8952008-12-04 00:26:41 -05005375{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005376 struct trace_array *tr = data;
5377 struct trace_pid_list *pid_list;
5378
5379 pid_list = rcu_dereference_sched(tr->function_pids);
5380
5381 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
5382 trace_ignore_this_task(pid_list, next));
5383}
5384
5385static void clear_ftrace_pids(struct trace_array *tr)
5386{
5387 struct trace_pid_list *pid_list;
Steven Rostedte32d8952008-12-04 00:26:41 -05005388 int cpu;
5389
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005390 pid_list = rcu_dereference_protected(tr->function_pids,
5391 lockdep_is_held(&ftrace_lock));
5392 if (!pid_list)
5393 return;
5394
5395 unregister_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
5396
5397 for_each_possible_cpu(cpu)
5398 per_cpu_ptr(tr->trace_buffer.data, cpu)->ftrace_ignore_pid = false;
5399
5400 rcu_assign_pointer(tr->function_pids, NULL);
5401
5402 /* Wait till all users are no longer using pid filtering */
5403 synchronize_sched();
5404
5405 trace_free_pid_list(pid_list);
Steven Rostedte32d8952008-12-04 00:26:41 -05005406}
5407
Namhyung Kim7da0f8e2017-04-17 11:44:27 +09005408void ftrace_clear_pids(struct trace_array *tr)
5409{
5410 mutex_lock(&ftrace_lock);
5411
5412 clear_ftrace_pids(tr);
5413
5414 mutex_unlock(&ftrace_lock);
5415}
5416
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005417static void ftrace_pid_reset(struct trace_array *tr)
Steven Rostedte32d8952008-12-04 00:26:41 -05005418{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005419 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005420 clear_ftrace_pids(tr);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005421
5422 ftrace_update_pid_func();
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005423 ftrace_startup_all(0);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005424
5425 mutex_unlock(&ftrace_lock);
5426}
5427
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005428/* Greater than any max PID */
5429#define FTRACE_NO_PIDS (void *)(PID_MAX_LIMIT + 1)
5430
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005431static void *fpid_start(struct seq_file *m, loff_t *pos)
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005432 __acquires(RCU)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005433{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005434 struct trace_pid_list *pid_list;
5435 struct trace_array *tr = m->private;
5436
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005437 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005438 rcu_read_lock_sched();
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005439
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005440 pid_list = rcu_dereference_sched(tr->function_pids);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005441
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005442 if (!pid_list)
5443 return !(*pos) ? FTRACE_NO_PIDS : NULL;
5444
5445 return trace_pid_start(pid_list, pos);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005446}
5447
5448static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
5449{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005450 struct trace_array *tr = m->private;
5451 struct trace_pid_list *pid_list = rcu_dereference_sched(tr->function_pids);
5452
5453 if (v == FTRACE_NO_PIDS)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005454 return NULL;
5455
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005456 return trace_pid_next(pid_list, v, pos);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005457}
5458
5459static void fpid_stop(struct seq_file *m, void *p)
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005460 __releases(RCU)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005461{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005462 rcu_read_unlock_sched();
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005463 mutex_unlock(&ftrace_lock);
5464}
5465
5466static int fpid_show(struct seq_file *m, void *v)
5467{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005468 if (v == FTRACE_NO_PIDS) {
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005469 seq_puts(m, "no pid\n");
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005470 return 0;
5471 }
5472
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005473 return trace_pid_show(m, v);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005474}
5475
5476static const struct seq_operations ftrace_pid_sops = {
5477 .start = fpid_start,
5478 .next = fpid_next,
5479 .stop = fpid_stop,
5480 .show = fpid_show,
5481};
5482
5483static int
5484ftrace_pid_open(struct inode *inode, struct file *file)
5485{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005486 struct trace_array *tr = inode->i_private;
5487 struct seq_file *m;
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005488 int ret = 0;
5489
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005490 if (trace_array_get(tr) < 0)
5491 return -ENODEV;
5492
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005493 if ((file->f_mode & FMODE_WRITE) &&
5494 (file->f_flags & O_TRUNC))
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005495 ftrace_pid_reset(tr);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005496
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005497 ret = seq_open(file, &ftrace_pid_sops);
5498 if (ret < 0) {
5499 trace_array_put(tr);
5500 } else {
5501 m = file->private_data;
5502 /* copy tr over to seq ops */
5503 m->private = tr;
5504 }
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005505
5506 return ret;
5507}
5508
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005509static void ignore_task_cpu(void *data)
5510{
5511 struct trace_array *tr = data;
5512 struct trace_pid_list *pid_list;
5513
5514 /*
5515 * This function is called by on_each_cpu() while the
5516 * event_mutex is held.
5517 */
5518 pid_list = rcu_dereference_protected(tr->function_pids,
5519 mutex_is_locked(&ftrace_lock));
5520
5521 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
5522 trace_ignore_this_task(pid_list, current));
5523}
5524
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005525static ssize_t
5526ftrace_pid_write(struct file *filp, const char __user *ubuf,
5527 size_t cnt, loff_t *ppos)
5528{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005529 struct seq_file *m = filp->private_data;
5530 struct trace_array *tr = m->private;
5531 struct trace_pid_list *filtered_pids = NULL;
5532 struct trace_pid_list *pid_list;
5533 ssize_t ret;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005534
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005535 if (!cnt)
5536 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005537
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005538 mutex_lock(&ftrace_lock);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005539
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005540 filtered_pids = rcu_dereference_protected(tr->function_pids,
5541 lockdep_is_held(&ftrace_lock));
5542
5543 ret = trace_pid_write(filtered_pids, &pid_list, ubuf, cnt);
5544 if (ret < 0)
5545 goto out;
5546
5547 rcu_assign_pointer(tr->function_pids, pid_list);
5548
5549 if (filtered_pids) {
5550 synchronize_sched();
5551 trace_free_pid_list(filtered_pids);
5552 } else if (pid_list) {
5553 /* Register a probe to set whether to ignore the tracing of a task */
5554 register_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
5555 }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005556
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005557 /*
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005558 * Ignoring of pids is done at task switch. But we have to
5559 * check for those tasks that are currently running.
5560 * Always do this in case a pid was appended or removed.
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005561 */
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005562 on_each_cpu(ignore_task_cpu, tr, 1);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005563
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005564 ftrace_update_pid_func();
5565 ftrace_startup_all(0);
5566 out:
5567 mutex_unlock(&ftrace_lock);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005568
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005569 if (ret > 0)
5570 *ppos += ret;
Steven Rostedt978f3a42008-12-04 00:26:40 -05005571
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005572 return ret;
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005573}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005574
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005575static int
5576ftrace_pid_release(struct inode *inode, struct file *file)
5577{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005578 struct trace_array *tr = inode->i_private;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005579
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005580 trace_array_put(tr);
5581
5582 return seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005583}
5584
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005585static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005586 .open = ftrace_pid_open,
5587 .write = ftrace_pid_write,
5588 .read = seq_read,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005589 .llseek = tracing_lseek,
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005590 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005591};
5592
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005593void ftrace_init_tracefs(struct trace_array *tr, struct dentry *d_tracer)
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005594{
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005595 trace_create_file("set_ftrace_pid", 0644, d_tracer,
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005596 tr, &ftrace_pid_fops);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005597}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005598
Steven Rostedt (Red Hat)501c2372016-07-05 10:04:34 -04005599void __init ftrace_init_tracefs_toplevel(struct trace_array *tr,
5600 struct dentry *d_tracer)
5601{
5602 /* Only the top level directory has the dyn_tracefs and profile */
5603 WARN_ON(!(tr->flags & TRACE_ARRAY_FL_GLOBAL));
5604
5605 ftrace_init_dyn_tracefs(d_tracer);
5606 ftrace_profile_tracefs(d_tracer);
5607}
5608
Steven Rostedt3d083392008-05-12 21:20:42 +02005609/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04005610 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005611 *
5612 * This function should be used by panic code. It stops ftrace
5613 * but in a not so nice way. If you need to simply kill ftrace
5614 * from a non-atomic section, use ftrace_kill.
5615 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04005616void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005617{
5618 ftrace_disabled = 1;
5619 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005620 clear_ftrace_function();
5621}
5622
5623/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04005624 * Test if ftrace is dead or not.
5625 */
5626int ftrace_is_dead(void)
5627{
5628 return ftrace_disabled;
5629}
5630
5631/**
Steven Rostedt3d083392008-05-12 21:20:42 +02005632 * register_ftrace_function - register a function for profiling
5633 * @ops - ops structure that holds the function for profiling.
5634 *
5635 * Register a function to be called by all functions in the
5636 * kernel.
5637 *
5638 * Note: @ops->func and all the functions it calls must be labeled
5639 * with "notrace", otherwise it will go into a
5640 * recursive loop.
5641 */
5642int register_ftrace_function(struct ftrace_ops *ops)
5643{
Steven Rostedt45a4a232011-04-21 23:16:46 -04005644 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02005645
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09005646 ftrace_ops_init(ops);
5647
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005648 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005649
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005650 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04005651
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005652 mutex_unlock(&ftrace_lock);
Borislav Petkov8d240dd2012-03-29 19:11:40 +02005653
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005654 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02005655}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005656EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02005657
5658/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01005659 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02005660 * @ops - ops structure that holds the function to unregister
5661 *
5662 * Unregister a function that was added to be called by ftrace profiling.
5663 */
5664int unregister_ftrace_function(struct ftrace_ops *ops)
5665{
5666 int ret;
5667
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005668 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005669 ret = ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005670 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005671
5672 return ret;
5673}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005674EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005675
Ingo Molnare309b412008-05-12 21:20:51 +02005676int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005677ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07005678 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005679 loff_t *ppos)
5680{
Steven Rostedt45a4a232011-04-21 23:16:46 -04005681 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02005682
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005683 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005684
Steven Rostedt45a4a232011-04-21 23:16:46 -04005685 if (unlikely(ftrace_disabled))
5686 goto out;
5687
5688 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005689
Li Zefana32c7762009-06-26 16:55:51 +08005690 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005691 goto out;
5692
Li Zefana32c7762009-06-26 16:55:51 +08005693 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005694
5695 if (ftrace_enabled) {
5696
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005697 /* we are starting ftrace again */
Jan Kiszka5000c412013-03-26 17:53:03 +01005698 if (ftrace_ops_list != &ftrace_list_end)
5699 update_ftrace_function();
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005700
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05005701 ftrace_startup_sysctl();
5702
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005703 } else {
5704 /* stopping ftrace calls (just send to ftrace_stub) */
5705 ftrace_trace_function = ftrace_stub;
5706
5707 ftrace_shutdown_sysctl();
5708 }
5709
5710 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005711 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02005712 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02005713}
Ingo Molnarf17845e2008-10-24 12:47:10 +02005714
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005715#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005716
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005717static struct ftrace_ops graph_ops = {
5718 .func = ftrace_stub,
5719 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5720 FTRACE_OPS_FL_INITIALIZED |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005721 FTRACE_OPS_FL_PID |
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005722 FTRACE_OPS_FL_STUB,
5723#ifdef FTRACE_GRAPH_TRAMP_ADDR
5724 .trampoline = FTRACE_GRAPH_TRAMP_ADDR,
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05005725 /* trampoline_size is only needed for dynamically allocated tramps */
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005726#endif
5727 ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash)
5728};
5729
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04005730void ftrace_graph_sleep_time_control(bool enable)
5731{
5732 fgraph_sleep_time = enable;
5733}
5734
5735void ftrace_graph_graph_time_control(bool enable)
5736{
5737 fgraph_graph_time = enable;
5738}
5739
Sami Tolvanenc2f9bce2018-05-10 14:56:41 -07005740void ftrace_graph_return_stub(struct ftrace_graph_ret *trace)
5741{
5742}
5743
Steven Rostedte49dc192008-12-02 23:50:05 -05005744int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
5745{
5746 return 0;
5747}
5748
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005749/* The callbacks that hook a function */
Sami Tolvanenc2f9bce2018-05-10 14:56:41 -07005750trace_func_graph_ret_t ftrace_graph_return = ftrace_graph_return_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05005751trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005752static trace_func_graph_ent_t __ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005753
5754/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
5755static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
5756{
5757 int i;
5758 int ret = 0;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005759 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
5760 struct task_struct *g, *t;
5761
5762 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
5763 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
5764 * sizeof(struct ftrace_ret_stack),
5765 GFP_KERNEL);
5766 if (!ret_stack_list[i]) {
5767 start = 0;
5768 end = i;
5769 ret = -ENOMEM;
5770 goto free;
5771 }
5772 }
5773
Soumya PN6112a302016-05-17 21:31:14 +05305774 read_lock(&tasklist_lock);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005775 do_each_thread(g, t) {
5776 if (start == end) {
5777 ret = -EAGAIN;
5778 goto unlock;
5779 }
5780
5781 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01005782 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005783 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04005784 t->curr_ret_stack = -1;
5785 /* Make sure the tasks see the -1 first: */
5786 smp_wmb();
5787 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005788 }
5789 } while_each_thread(g, t);
5790
5791unlock:
Soumya PN6112a302016-05-17 21:31:14 +05305792 read_unlock(&tasklist_lock);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005793free:
5794 for (i = start; i < end; i++)
5795 kfree(ret_stack_list[i]);
5796 return ret;
5797}
5798
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005799static void
Peter Zijlstrac73464b2015-09-28 18:06:56 +02005800ftrace_graph_probe_sched_switch(void *ignore, bool preempt,
Steven Rostedt38516ab2010-04-20 17:04:50 -04005801 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005802{
5803 unsigned long long timestamp;
5804 int index;
5805
Steven Rostedtbe6f1642009-03-24 11:06:24 -04005806 /*
5807 * Does the user want to count the time a function was asleep.
5808 * If so, do not update the time stamps.
5809 */
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04005810 if (fgraph_sleep_time)
Steven Rostedtbe6f1642009-03-24 11:06:24 -04005811 return;
5812
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005813 timestamp = trace_clock_local();
5814
5815 prev->ftrace_timestamp = timestamp;
5816
5817 /* only process tasks that we timestamped */
5818 if (!next->ftrace_timestamp)
5819 return;
5820
5821 /*
5822 * Update all the counters in next to make up for the
5823 * time next was sleeping.
5824 */
5825 timestamp -= next->ftrace_timestamp;
5826
5827 for (index = next->curr_ret_stack; index >= 0; index--)
5828 next->ret_stack[index].calltime += timestamp;
5829}
5830
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005831/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005832static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005833{
5834 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005835 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005836
5837 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
5838 sizeof(struct ftrace_ret_stack *),
5839 GFP_KERNEL);
5840
5841 if (!ret_stack_list)
5842 return -ENOMEM;
5843
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005844 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04005845 for_each_online_cpu(cpu) {
5846 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05005847 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04005848 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005849
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005850 do {
5851 ret = alloc_retstack_tasklist(ret_stack_list);
5852 } while (ret == -EAGAIN);
5853
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005854 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04005855 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005856 if (ret)
5857 pr_info("ftrace_graph: Couldn't activate tracepoint"
5858 " probe to kernel_sched_switch\n");
5859 }
5860
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005861 kfree(ret_stack_list);
5862 return ret;
5863}
5864
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005865/*
5866 * Hibernation protection.
5867 * The state of the current task is too much unstable during
5868 * suspend/restore to disk. We want to protect against that.
5869 */
5870static int
5871ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
5872 void *unused)
5873{
5874 switch (state) {
5875 case PM_HIBERNATION_PREPARE:
5876 pause_graph_tracing();
5877 break;
5878
5879 case PM_POST_HIBERNATION:
5880 unpause_graph_tracing();
5881 break;
5882 }
5883 return NOTIFY_DONE;
5884}
5885
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005886static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace)
5887{
5888 if (!ftrace_ops_test(&global_ops, trace->func, NULL))
5889 return 0;
5890 return __ftrace_graph_entry(trace);
5891}
5892
5893/*
5894 * The function graph tracer should only trace the functions defined
5895 * by set_ftrace_filter and set_ftrace_notrace. If another function
5896 * tracer ops is registered, the graph tracer requires testing the
5897 * function against the global ops, and not just trace any function
5898 * that any ftrace_ops registered.
5899 */
5900static void update_function_graph_func(void)
5901{
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005902 struct ftrace_ops *op;
5903 bool do_test = false;
5904
5905 /*
5906 * The graph and global ops share the same set of functions
5907 * to test. If any other ops is on the list, then
5908 * the graph tracing needs to test if its the function
5909 * it should call.
5910 */
5911 do_for_each_ftrace_op(op, ftrace_ops_list) {
5912 if (op != &global_ops && op != &graph_ops &&
5913 op != &ftrace_list_end) {
5914 do_test = true;
5915 /* in double loop, break out with goto */
5916 goto out;
5917 }
5918 } while_for_each_ftrace_op(op);
5919 out:
5920 if (do_test)
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005921 ftrace_graph_entry = ftrace_graph_entry_test;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005922 else
5923 ftrace_graph_entry = __ftrace_graph_entry;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005924}
5925
Mathias Krause8275f692014-03-30 15:31:50 +02005926static struct notifier_block ftrace_suspend_notifier = {
5927 .notifier_call = ftrace_suspend_notifier_call,
5928};
5929
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005930int register_ftrace_graph(trace_func_graph_ret_t retfunc,
5931 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005932{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005933 int ret = 0;
5934
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005935 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005936
Steven Rostedt05ce5812009-03-24 00:18:31 -04005937 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04005938 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04005939 ret = -EBUSY;
5940 goto out;
5941 }
5942
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005943 register_pm_notifier(&ftrace_suspend_notifier);
5944
Steven Rostedt597af812009-04-03 15:24:12 -04005945 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005946 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005947 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04005948 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005949 goto out;
5950 }
Steven Rostedte53a6312008-11-26 00:16:25 -05005951
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005952 ftrace_graph_return = retfunc;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005953
5954 /*
5955 * Update the indirect function to the entryfunc, and the
5956 * function that gets called to the entry_test first. Then
5957 * call the update fgraph entry function to determine if
5958 * the entryfunc should be called directly or not.
5959 */
5960 __ftrace_graph_entry = entryfunc;
5961 ftrace_graph_entry = ftrace_graph_entry_test;
5962 update_function_graph_func();
Steven Rostedte53a6312008-11-26 00:16:25 -05005963
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005964 ret = ftrace_startup(&graph_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005965out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005966 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005967 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005968}
5969
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005970void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005971{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005972 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005973
Steven Rostedt597af812009-04-03 15:24:12 -04005974 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04005975 goto out;
5976
Steven Rostedt597af812009-04-03 15:24:12 -04005977 ftrace_graph_active--;
Sami Tolvanenc2f9bce2018-05-10 14:56:41 -07005978 ftrace_graph_return = ftrace_graph_return_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05005979 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005980 __ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005981 ftrace_shutdown(&graph_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005982 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04005983 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005984
Steven Rostedt2aad1b72009-03-30 11:11:28 -04005985 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005986 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005987}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005988
Steven Rostedt868baf02011-02-10 21:26:13 -05005989static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
5990
5991static void
5992graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
5993{
5994 atomic_set(&t->tracing_graph_pause, 0);
5995 atomic_set(&t->trace_overrun, 0);
5996 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005997 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05005998 smp_wmb();
5999 t->ret_stack = ret_stack;
6000}
6001
6002/*
6003 * Allocate a return stack for the idle task. May be the first
6004 * time through, or it may be done by CPU hotplug online.
6005 */
6006void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
6007{
6008 t->curr_ret_stack = -1;
6009 /*
6010 * The idle task has no parent, it either has its own
6011 * stack or no stack at all.
6012 */
6013 if (t->ret_stack)
6014 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
6015
6016 if (ftrace_graph_active) {
6017 struct ftrace_ret_stack *ret_stack;
6018
6019 ret_stack = per_cpu(idle_ret_stack, cpu);
6020 if (!ret_stack) {
6021 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
6022 * sizeof(struct ftrace_ret_stack),
6023 GFP_KERNEL);
6024 if (!ret_stack)
6025 return;
6026 per_cpu(idle_ret_stack, cpu) = ret_stack;
6027 }
6028 graph_init_task(t, ret_stack);
6029 }
6030}
6031
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006032/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006033void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006034{
Steven Rostedt84047e32009-06-02 16:51:55 -04006035 /* Make sure we do not use the parent ret_stack */
6036 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05006037 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04006038
Steven Rostedt597af812009-04-03 15:24:12 -04006039 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04006040 struct ftrace_ret_stack *ret_stack;
6041
6042 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006043 * sizeof(struct ftrace_ret_stack),
6044 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04006045 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006046 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05006047 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04006048 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006049}
6050
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006051void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006052{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006053 struct ftrace_ret_stack *ret_stack = t->ret_stack;
6054
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006055 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006056 /* NULL must become visible to IRQs before we free it: */
6057 barrier();
6058
6059 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006060}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006061#endif