blob: b3a4896ef78a28a9ac6c596f80457db42220355c [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 */
123static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip);
124#define ftrace_ops_list_func ((ftrace_func_t)ftrace_ops_no_ops)
125#endif
Steven Rostedtb8489142011-05-04 09:27:52 -0400126
Steven Rostedt0a016402012-11-02 17:03:03 -0400127/*
128 * Traverse the ftrace_global_list, invoking all entries. The reason that we
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400129 * can use rcu_dereference_raw_notrace() is that elements removed from this list
Steven Rostedt0a016402012-11-02 17:03:03 -0400130 * are simply leaked, so there is no need to interact with a grace-period
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400131 * mechanism. The rcu_dereference_raw_notrace() calls are needed to handle
Steven Rostedt0a016402012-11-02 17:03:03 -0400132 * concurrent insertions into the ftrace_global_list.
133 *
134 * Silly Alpha and silly pointer-speculation compiler optimizations!
135 */
136#define do_for_each_ftrace_op(op, list) \
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400137 op = rcu_dereference_raw_notrace(list); \
Steven Rostedt0a016402012-11-02 17:03:03 -0400138 do
139
140/*
141 * Optimized for just a single item in the list (as that is the normal case).
142 */
143#define while_for_each_ftrace_op(op) \
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400144 while (likely(op = rcu_dereference_raw_notrace((op)->next)) && \
Steven Rostedt0a016402012-11-02 17:03:03 -0400145 unlikely((op) != &ftrace_list_end))
146
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900147static inline void ftrace_ops_init(struct ftrace_ops *ops)
148{
149#ifdef CONFIG_DYNAMIC_FTRACE
150 if (!(ops->flags & FTRACE_OPS_FL_INITIALIZED)) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400151 mutex_init(&ops->local_hash.regex_lock);
152 ops->func_hash = &ops->local_hash;
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900153 ops->flags |= FTRACE_OPS_FL_INITIALIZED;
154 }
155#endif
156}
157
Steven Rostedtea701f12012-07-20 13:08:05 -0400158/**
159 * ftrace_nr_registered_ops - return number of ops registered
160 *
161 * Returns the number of ftrace_ops registered and tracing functions
162 */
163int ftrace_nr_registered_ops(void)
164{
165 struct ftrace_ops *ops;
166 int cnt = 0;
167
168 mutex_lock(&ftrace_lock);
169
170 for (ops = ftrace_ops_list;
171 ops != &ftrace_list_end; ops = ops->next)
172 cnt++;
173
174 mutex_unlock(&ftrace_lock);
175
176 return cnt;
177}
178
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400179static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400180 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500181{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400182 struct trace_array *tr = op->private;
183
184 if (tr && this_cpu_read(tr->trace_buffer.data->ftrace_ignore_pid))
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500185 return;
186
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400187 op->saved_func(ip, parent_ip, op, regs);
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500188}
189
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200190/**
Steven Rostedt3d083392008-05-12 21:20:42 +0200191 * clear_ftrace_function - reset the ftrace function
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200192 *
Steven Rostedt3d083392008-05-12 21:20:42 +0200193 * This NULLs the ftrace function and in essence stops
194 * tracing. There may be lag
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200195 */
Steven Rostedt3d083392008-05-12 21:20:42 +0200196void clear_ftrace_function(void)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200197{
Steven Rostedt3d083392008-05-12 21:20:42 +0200198 ftrace_trace_function = ftrace_stub;
199}
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200200
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500201static void per_cpu_ops_disable_all(struct ftrace_ops *ops)
Jiri Olsae2484912012-02-15 15:51:48 +0100202{
203 int cpu;
204
205 for_each_possible_cpu(cpu)
206 *per_cpu_ptr(ops->disabled, cpu) = 1;
207}
208
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500209static int per_cpu_ops_alloc(struct ftrace_ops *ops)
Jiri Olsae2484912012-02-15 15:51:48 +0100210{
211 int __percpu *disabled;
212
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500213 if (WARN_ON_ONCE(!(ops->flags & FTRACE_OPS_FL_PER_CPU)))
214 return -EINVAL;
215
Jiri Olsae2484912012-02-15 15:51:48 +0100216 disabled = alloc_percpu(int);
217 if (!disabled)
218 return -ENOMEM;
219
220 ops->disabled = disabled;
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500221 per_cpu_ops_disable_all(ops);
Jiri Olsae2484912012-02-15 15:51:48 +0100222 return 0;
223}
224
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500225static void ftrace_sync(struct work_struct *work)
226{
227 /*
228 * This function is just a stub to implement a hard force
229 * of synchronize_sched(). This requires synchronizing
230 * tasks even in userspace and idle.
231 *
232 * Yes, function tracing is rude.
233 */
234}
235
236static void ftrace_sync_ipi(void *data)
237{
238 /* Probably not needed, but do it anyway */
239 smp_rmb();
240}
241
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500242#ifdef CONFIG_FUNCTION_GRAPH_TRACER
243static void update_function_graph_func(void);
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400244
245/* Both enabled by default (can be cleared by function_graph tracer flags */
246static bool fgraph_sleep_time = true;
247static bool fgraph_graph_time = true;
248
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500249#else
250static inline void update_function_graph_func(void) { }
251#endif
252
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100253
254static ftrace_func_t ftrace_ops_get_list_func(struct ftrace_ops *ops)
255{
256 /*
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500257 * 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 +0100258 * then it needs to call the list anyway.
259 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500260 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU |
261 FTRACE_OPS_FL_RCU) || FTRACE_FORCE_LIST_FUNC)
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100262 return ftrace_ops_list_func;
263
264 return ftrace_ops_get_func(ops);
265}
266
Steven Rostedt2b499382011-05-03 22:49:52 -0400267static void update_ftrace_function(void)
268{
269 ftrace_func_t func;
270
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400271 /*
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400272 * Prepare the ftrace_ops that the arch callback will use.
273 * If there's only one ftrace_ops registered, the ftrace_ops_list
274 * will point to the ops we want.
275 */
276 set_function_trace_op = ftrace_ops_list;
277
278 /* If there's no ftrace_ops registered, just call the stub function */
279 if (ftrace_ops_list == &ftrace_list_end) {
280 func = ftrace_stub;
281
282 /*
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400283 * If we are at the end of the list and this ops is
Steven Rostedt47409742012-07-20 11:04:44 -0400284 * recursion safe and not dynamic and the arch supports passing ops,
285 * then have the mcount trampoline call the function directly.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400286 */
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400287 } else if (ftrace_ops_list->next == &ftrace_list_end) {
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100288 func = ftrace_ops_get_list_func(ftrace_ops_list);
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400289
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400290 } else {
291 /* Just use the default ftrace_ops */
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500292 set_function_trace_op = &ftrace_list_end;
Steven Rostedtb8489142011-05-04 09:27:52 -0400293 func = ftrace_ops_list_func;
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400294 }
Steven Rostedt2b499382011-05-03 22:49:52 -0400295
Steven Rostedt (Red Hat)5f8bf2d22014-07-15 11:05:12 -0400296 update_function_graph_func();
297
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500298 /* If there's no change, then do nothing more here */
299 if (ftrace_trace_function == func)
300 return;
301
302 /*
303 * If we are using the list function, it doesn't care
304 * about the function_trace_ops.
305 */
306 if (func == ftrace_ops_list_func) {
307 ftrace_trace_function = func;
308 /*
309 * Don't even bother setting function_trace_ops,
310 * it would be racy to do so anyway.
311 */
312 return;
313 }
314
315#ifndef CONFIG_DYNAMIC_FTRACE
316 /*
317 * For static tracing, we need to be a bit more careful.
318 * The function change takes affect immediately. Thus,
319 * we need to coorditate the setting of the function_trace_ops
320 * with the setting of the ftrace_trace_function.
321 *
322 * Set the function to the list ops, which will call the
323 * function we want, albeit indirectly, but it handles the
324 * ftrace_ops and doesn't depend on function_trace_op.
325 */
326 ftrace_trace_function = ftrace_ops_list_func;
327 /*
328 * Make sure all CPUs see this. Yes this is slow, but static
329 * tracing is slow and nasty to have enabled.
330 */
331 schedule_on_each_cpu(ftrace_sync);
332 /* Now all cpus are using the list ops. */
333 function_trace_op = set_function_trace_op;
334 /* Make sure the function_trace_op is visible on all CPUs */
335 smp_wmb();
336 /* Nasty way to force a rmb on all cpus */
337 smp_call_function(ftrace_sync_ipi, NULL, 1);
338 /* OK, we are all set to update the ftrace_trace_function now! */
339#endif /* !CONFIG_DYNAMIC_FTRACE */
340
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400341 ftrace_trace_function = func;
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400342}
343
Jiaxing Wang7eea4fc2014-04-20 23:10:43 +0800344int using_ftrace_ops_list_func(void)
345{
346 return ftrace_trace_function == ftrace_ops_list_func;
347}
348
Steven Rostedt2b499382011-05-03 22:49:52 -0400349static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
Steven Rostedt3d083392008-05-12 21:20:42 +0200350{
Steven Rostedt2b499382011-05-03 22:49:52 -0400351 ops->next = *list;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200352 /*
Steven Rostedtb8489142011-05-04 09:27:52 -0400353 * We are entering ops into the list but another
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200354 * CPU might be walking that list. We need to make sure
355 * the ops->next pointer is valid before another CPU sees
Steven Rostedtb8489142011-05-04 09:27:52 -0400356 * the ops pointer included into the list.
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200357 */
Steven Rostedt2b499382011-05-03 22:49:52 -0400358 rcu_assign_pointer(*list, ops);
359}
Steven Rostedt3d083392008-05-12 21:20:42 +0200360
Steven Rostedt2b499382011-05-03 22:49:52 -0400361static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
362{
363 struct ftrace_ops **p;
364
365 /*
366 * If we are removing the last function, then simply point
367 * to the ftrace_stub.
368 */
369 if (*list == ops && ops->next == &ftrace_list_end) {
370 *list = &ftrace_list_end;
371 return 0;
372 }
373
374 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
375 if (*p == ops)
376 break;
377
378 if (*p != ops)
379 return -1;
380
381 *p = (*p)->next;
382 return 0;
383}
384
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400385static void ftrace_update_trampoline(struct ftrace_ops *ops);
386
Steven Rostedt2b499382011-05-03 22:49:52 -0400387static int __register_ftrace_function(struct ftrace_ops *ops)
388{
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -0500389 if (ops->flags & FTRACE_OPS_FL_DELETED)
390 return -EINVAL;
391
Steven Rostedtb8489142011-05-04 09:27:52 -0400392 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
393 return -EBUSY;
394
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +0900395#ifndef CONFIG_DYNAMIC_FTRACE_WITH_REGS
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400396 /*
397 * If the ftrace_ops specifies SAVE_REGS, then it only can be used
398 * if the arch supports it, or SAVE_REGS_IF_SUPPORTED is also set.
399 * Setting SAVE_REGS_IF_SUPPORTED makes SAVE_REGS irrelevant.
400 */
401 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS &&
402 !(ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED))
403 return -EINVAL;
404
405 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED)
406 ops->flags |= FTRACE_OPS_FL_SAVE_REGS;
407#endif
408
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400409 if (!core_kernel_data((unsigned long)ops))
410 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
411
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500412 if (ops->flags & FTRACE_OPS_FL_PER_CPU) {
413 if (per_cpu_ops_alloc(ops))
Jiri Olsae2484912012-02-15 15:51:48 +0100414 return -ENOMEM;
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500415 }
416
417 add_ftrace_ops(&ftrace_ops_list, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400418
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400419 /* Always save the function, and reset at unregistering */
420 ops->saved_func = ops->func;
421
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400422 if (ftrace_pids_enabled(ops))
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400423 ops->func = ftrace_pid_func;
424
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400425 ftrace_update_trampoline(ops);
426
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400427 if (ftrace_enabled)
428 update_ftrace_function();
Steven Rostedt3d083392008-05-12 21:20:42 +0200429
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200430 return 0;
431}
432
Ingo Molnare309b412008-05-12 21:20:51 +0200433static int __unregister_ftrace_function(struct ftrace_ops *ops)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200434{
Steven Rostedt2b499382011-05-03 22:49:52 -0400435 int ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200436
Steven Rostedtb8489142011-05-04 09:27:52 -0400437 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
438 return -EBUSY;
439
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500440 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400441
Steven Rostedt2b499382011-05-03 22:49:52 -0400442 if (ret < 0)
443 return ret;
Steven Rostedtb8489142011-05-04 09:27:52 -0400444
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400445 if (ftrace_enabled)
446 update_ftrace_function();
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200447
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400448 ops->func = ops->saved_func;
449
Steven Rostedte6ea44e2009-02-14 01:42:44 -0500450 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +0200451}
452
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500453static void ftrace_update_pid_func(void)
454{
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400455 struct ftrace_ops *op;
456
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400457 /* Only do something if we are tracing something */
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500458 if (ftrace_trace_function == ftrace_stub)
KOSAKI Motohiro10dd3eb2009-03-06 15:29:04 +0900459 return;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500460
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400461 do_for_each_ftrace_op(op, ftrace_ops_list) {
462 if (op->flags & FTRACE_OPS_FL_PID) {
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -0400463 op->func = ftrace_pids_enabled(op) ?
464 ftrace_pid_func : op->saved_func;
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400465 ftrace_update_trampoline(op);
466 }
467 } while_for_each_ftrace_op(op);
468
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400469 update_ftrace_function();
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500470}
471
Steven Rostedt493762f2009-03-23 17:12:36 -0400472#ifdef CONFIG_FUNCTION_PROFILER
473struct ftrace_profile {
474 struct hlist_node node;
475 unsigned long ip;
476 unsigned long counter;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400477#ifdef CONFIG_FUNCTION_GRAPH_TRACER
478 unsigned long long time;
Chase Douglase330b3b2010-04-26 14:02:05 -0400479 unsigned long long time_squared;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400480#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400481};
482
483struct ftrace_profile_page {
484 struct ftrace_profile_page *next;
485 unsigned long index;
486 struct ftrace_profile records[];
487};
488
Steven Rostedtcafb1682009-03-24 20:50:39 -0400489struct ftrace_profile_stat {
490 atomic_t disabled;
491 struct hlist_head *hash;
492 struct ftrace_profile_page *pages;
493 struct ftrace_profile_page *start;
494 struct tracer_stat stat;
495};
496
Steven Rostedt493762f2009-03-23 17:12:36 -0400497#define PROFILE_RECORDS_SIZE \
498 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
499
500#define PROFILES_PER_PAGE \
501 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
502
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400503static int ftrace_profile_enabled __read_mostly;
504
505/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
Steven Rostedt493762f2009-03-23 17:12:36 -0400506static DEFINE_MUTEX(ftrace_profile_lock);
507
Steven Rostedtcafb1682009-03-24 20:50:39 -0400508static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
Steven Rostedt493762f2009-03-23 17:12:36 -0400509
Namhyung Kim20079eb2013-04-10 08:55:50 +0900510#define FTRACE_PROFILE_HASH_BITS 10
511#define FTRACE_PROFILE_HASH_SIZE (1 << FTRACE_PROFILE_HASH_BITS)
Steven Rostedt493762f2009-03-23 17:12:36 -0400512
Steven Rostedt493762f2009-03-23 17:12:36 -0400513static void *
514function_stat_next(void *v, int idx)
515{
516 struct ftrace_profile *rec = v;
517 struct ftrace_profile_page *pg;
518
519 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
520
521 again:
Li Zefan0296e422009-06-26 11:15:37 +0800522 if (idx != 0)
523 rec++;
524
Steven Rostedt493762f2009-03-23 17:12:36 -0400525 if ((void *)rec >= (void *)&pg->records[pg->index]) {
526 pg = pg->next;
527 if (!pg)
528 return NULL;
529 rec = &pg->records[0];
530 if (!rec->counter)
531 goto again;
532 }
533
534 return rec;
535}
536
537static void *function_stat_start(struct tracer_stat *trace)
538{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400539 struct ftrace_profile_stat *stat =
540 container_of(trace, struct ftrace_profile_stat, stat);
541
542 if (!stat || !stat->start)
543 return NULL;
544
545 return function_stat_next(&stat->start->records[0], 0);
Steven Rostedt493762f2009-03-23 17:12:36 -0400546}
547
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400548#ifdef CONFIG_FUNCTION_GRAPH_TRACER
549/* function graph compares on total time */
550static int function_stat_cmp(void *p1, void *p2)
551{
552 struct ftrace_profile *a = p1;
553 struct ftrace_profile *b = p2;
554
555 if (a->time < b->time)
556 return -1;
557 if (a->time > b->time)
558 return 1;
559 else
560 return 0;
561}
562#else
563/* not function graph compares against hits */
Steven Rostedt493762f2009-03-23 17:12:36 -0400564static int function_stat_cmp(void *p1, void *p2)
565{
566 struct ftrace_profile *a = p1;
567 struct ftrace_profile *b = p2;
568
569 if (a->counter < b->counter)
570 return -1;
571 if (a->counter > b->counter)
572 return 1;
573 else
574 return 0;
575}
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400576#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400577
578static int function_stat_headers(struct seq_file *m)
579{
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400580#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100581 seq_puts(m, " Function "
582 "Hit Time Avg s^2\n"
583 " -------- "
584 "--- ---- --- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400585#else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100586 seq_puts(m, " Function Hit\n"
587 " -------- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400588#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400589 return 0;
590}
591
592static int function_stat_show(struct seq_file *m, void *v)
593{
594 struct ftrace_profile *rec = v;
595 char str[KSYM_SYMBOL_LEN];
Li Zefan3aaba202010-08-23 16:50:12 +0800596 int ret = 0;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400597#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400598 static struct trace_seq s;
599 unsigned long long avg;
Chase Douglase330b3b2010-04-26 14:02:05 -0400600 unsigned long long stddev;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400601#endif
Li Zefan3aaba202010-08-23 16:50:12 +0800602 mutex_lock(&ftrace_profile_lock);
603
604 /* we raced with function_profile_reset() */
605 if (unlikely(rec->counter == 0)) {
606 ret = -EBUSY;
607 goto out;
608 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400609
Umesh Tiwari8e436ca2015-06-22 16:58:08 +0530610#ifdef CONFIG_FUNCTION_GRAPH_TRACER
611 avg = rec->time;
612 do_div(avg, rec->counter);
613 if (tracing_thresh && (avg < tracing_thresh))
614 goto out;
615#endif
616
Steven Rostedt493762f2009-03-23 17:12:36 -0400617 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400618 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
Steven Rostedt493762f2009-03-23 17:12:36 -0400619
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400620#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100621 seq_puts(m, " ");
Steven Rostedt34886c82009-03-25 21:00:47 -0400622
Chase Douglase330b3b2010-04-26 14:02:05 -0400623 /* Sample standard deviation (s^2) */
624 if (rec->counter <= 1)
625 stddev = 0;
626 else {
Juri Lelli52d85d72013-06-12 12:03:18 +0200627 /*
628 * Apply Welford's method:
629 * s^2 = 1 / (n * (n-1)) * (n * \Sum (x_i)^2 - (\Sum x_i)^2)
630 */
631 stddev = rec->counter * rec->time_squared -
632 rec->time * rec->time;
633
Chase Douglase330b3b2010-04-26 14:02:05 -0400634 /*
635 * Divide only 1000 for ns^2 -> us^2 conversion.
636 * trace_print_graph_duration will divide 1000 again.
637 */
Juri Lelli52d85d72013-06-12 12:03:18 +0200638 do_div(stddev, rec->counter * (rec->counter - 1) * 1000);
Chase Douglase330b3b2010-04-26 14:02:05 -0400639 }
640
Steven Rostedt34886c82009-03-25 21:00:47 -0400641 trace_seq_init(&s);
642 trace_print_graph_duration(rec->time, &s);
643 trace_seq_puts(&s, " ");
644 trace_print_graph_duration(avg, &s);
Chase Douglase330b3b2010-04-26 14:02:05 -0400645 trace_seq_puts(&s, " ");
646 trace_print_graph_duration(stddev, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400647 trace_print_seq(m, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400648#endif
649 seq_putc(m, '\n');
Li Zefan3aaba202010-08-23 16:50:12 +0800650out:
651 mutex_unlock(&ftrace_profile_lock);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400652
Li Zefan3aaba202010-08-23 16:50:12 +0800653 return ret;
Steven Rostedt493762f2009-03-23 17:12:36 -0400654}
655
Steven Rostedtcafb1682009-03-24 20:50:39 -0400656static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400657{
658 struct ftrace_profile_page *pg;
659
Steven Rostedtcafb1682009-03-24 20:50:39 -0400660 pg = stat->pages = stat->start;
Steven Rostedt493762f2009-03-23 17:12:36 -0400661
662 while (pg) {
663 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
664 pg->index = 0;
665 pg = pg->next;
666 }
667
Steven Rostedtcafb1682009-03-24 20:50:39 -0400668 memset(stat->hash, 0,
Steven Rostedt493762f2009-03-23 17:12:36 -0400669 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
670}
671
Steven Rostedtcafb1682009-03-24 20:50:39 -0400672int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400673{
674 struct ftrace_profile_page *pg;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400675 int functions;
676 int pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400677 int i;
678
679 /* If we already allocated, do nothing */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400680 if (stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400681 return 0;
682
Steven Rostedtcafb1682009-03-24 20:50:39 -0400683 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
684 if (!stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400685 return -ENOMEM;
686
Steven Rostedt318e0a72009-03-25 20:06:34 -0400687#ifdef CONFIG_DYNAMIC_FTRACE
688 functions = ftrace_update_tot_cnt;
689#else
690 /*
691 * We do not know the number of functions that exist because
692 * dynamic tracing is what counts them. With past experience
693 * we have around 20K functions. That should be more than enough.
694 * It is highly unlikely we will execute every function in
695 * the kernel.
696 */
697 functions = 20000;
698#endif
699
Steven Rostedtcafb1682009-03-24 20:50:39 -0400700 pg = stat->start = stat->pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400701
Steven Rostedt318e0a72009-03-25 20:06:34 -0400702 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
703
Namhyung Kim39e30cd2013-04-01 21:46:24 +0900704 for (i = 1; i < pages; i++) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400705 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400706 if (!pg->next)
Steven Rostedt318e0a72009-03-25 20:06:34 -0400707 goto out_free;
Steven Rostedt493762f2009-03-23 17:12:36 -0400708 pg = pg->next;
709 }
710
711 return 0;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400712
713 out_free:
714 pg = stat->start;
715 while (pg) {
716 unsigned long tmp = (unsigned long)pg;
717
718 pg = pg->next;
719 free_page(tmp);
720 }
721
Steven Rostedt318e0a72009-03-25 20:06:34 -0400722 stat->pages = NULL;
723 stat->start = NULL;
724
725 return -ENOMEM;
Steven Rostedt493762f2009-03-23 17:12:36 -0400726}
727
Steven Rostedtcafb1682009-03-24 20:50:39 -0400728static int ftrace_profile_init_cpu(int cpu)
Steven Rostedt493762f2009-03-23 17:12:36 -0400729{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400730 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400731 int size;
732
Steven Rostedtcafb1682009-03-24 20:50:39 -0400733 stat = &per_cpu(ftrace_profile_stats, cpu);
734
735 if (stat->hash) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400736 /* If the profile is already created, simply reset it */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400737 ftrace_profile_reset(stat);
Steven Rostedt493762f2009-03-23 17:12:36 -0400738 return 0;
739 }
740
741 /*
742 * We are profiling all functions, but usually only a few thousand
743 * functions are hit. We'll make a hash of 1024 items.
744 */
745 size = FTRACE_PROFILE_HASH_SIZE;
746
Steven Rostedtcafb1682009-03-24 20:50:39 -0400747 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400748
Steven Rostedtcafb1682009-03-24 20:50:39 -0400749 if (!stat->hash)
Steven Rostedt493762f2009-03-23 17:12:36 -0400750 return -ENOMEM;
751
Steven Rostedt318e0a72009-03-25 20:06:34 -0400752 /* Preallocate the function profiling pages */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400753 if (ftrace_profile_pages_init(stat) < 0) {
754 kfree(stat->hash);
755 stat->hash = NULL;
Steven Rostedt493762f2009-03-23 17:12:36 -0400756 return -ENOMEM;
757 }
758
759 return 0;
760}
761
Steven Rostedtcafb1682009-03-24 20:50:39 -0400762static int ftrace_profile_init(void)
763{
764 int cpu;
765 int ret = 0;
766
Miao Xiec4602c12013-12-16 15:20:01 +0800767 for_each_possible_cpu(cpu) {
Steven Rostedtcafb1682009-03-24 20:50:39 -0400768 ret = ftrace_profile_init_cpu(cpu);
769 if (ret)
770 break;
771 }
772
773 return ret;
774}
775
Steven Rostedt493762f2009-03-23 17:12:36 -0400776/* interrupts must be disabled */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400777static struct ftrace_profile *
778ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400779{
780 struct ftrace_profile *rec;
781 struct hlist_head *hhd;
Steven Rostedt493762f2009-03-23 17:12:36 -0400782 unsigned long key;
783
Namhyung Kim20079eb2013-04-10 08:55:50 +0900784 key = hash_long(ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400785 hhd = &stat->hash[key];
Steven Rostedt493762f2009-03-23 17:12:36 -0400786
787 if (hlist_empty(hhd))
788 return NULL;
789
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400790 hlist_for_each_entry_rcu_notrace(rec, hhd, node) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400791 if (rec->ip == ip)
792 return rec;
793 }
794
795 return NULL;
796}
797
Steven Rostedtcafb1682009-03-24 20:50:39 -0400798static void ftrace_add_profile(struct ftrace_profile_stat *stat,
799 struct ftrace_profile *rec)
Steven Rostedt493762f2009-03-23 17:12:36 -0400800{
801 unsigned long key;
802
Namhyung Kim20079eb2013-04-10 08:55:50 +0900803 key = hash_long(rec->ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400804 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
Steven Rostedt493762f2009-03-23 17:12:36 -0400805}
806
Steven Rostedt318e0a72009-03-25 20:06:34 -0400807/*
808 * The memory is already allocated, this simply finds a new record to use.
809 */
Steven Rostedt493762f2009-03-23 17:12:36 -0400810static struct ftrace_profile *
Steven Rostedt318e0a72009-03-25 20:06:34 -0400811ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400812{
813 struct ftrace_profile *rec = NULL;
814
Steven Rostedt318e0a72009-03-25 20:06:34 -0400815 /* prevent recursion (from NMIs) */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400816 if (atomic_inc_return(&stat->disabled) != 1)
Steven Rostedt493762f2009-03-23 17:12:36 -0400817 goto out;
818
Steven Rostedt493762f2009-03-23 17:12:36 -0400819 /*
Steven Rostedt318e0a72009-03-25 20:06:34 -0400820 * Try to find the function again since an NMI
821 * could have added it
Steven Rostedt493762f2009-03-23 17:12:36 -0400822 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400823 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400824 if (rec)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400825 goto out;
Steven Rostedt493762f2009-03-23 17:12:36 -0400826
Steven Rostedtcafb1682009-03-24 20:50:39 -0400827 if (stat->pages->index == PROFILES_PER_PAGE) {
828 if (!stat->pages->next)
829 goto out;
830 stat->pages = stat->pages->next;
Steven Rostedt493762f2009-03-23 17:12:36 -0400831 }
832
Steven Rostedtcafb1682009-03-24 20:50:39 -0400833 rec = &stat->pages->records[stat->pages->index++];
Steven Rostedt493762f2009-03-23 17:12:36 -0400834 rec->ip = ip;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400835 ftrace_add_profile(stat, rec);
Steven Rostedt493762f2009-03-23 17:12:36 -0400836
Steven Rostedt493762f2009-03-23 17:12:36 -0400837 out:
Steven Rostedtcafb1682009-03-24 20:50:39 -0400838 atomic_dec(&stat->disabled);
Steven Rostedt493762f2009-03-23 17:12:36 -0400839
840 return rec;
841}
842
Steven Rostedt493762f2009-03-23 17:12:36 -0400843static void
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400844function_profile_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400845 struct ftrace_ops *ops, struct pt_regs *regs)
Steven Rostedt493762f2009-03-23 17:12:36 -0400846{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400847 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400848 struct ftrace_profile *rec;
849 unsigned long flags;
Steven Rostedt493762f2009-03-23 17:12:36 -0400850
851 if (!ftrace_profile_enabled)
852 return;
853
Steven Rostedt493762f2009-03-23 17:12:36 -0400854 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400855
Christoph Lameterbdffd892014-04-29 14:17:40 -0500856 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400857 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400858 goto out;
859
860 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400861 if (!rec) {
Steven Rostedt318e0a72009-03-25 20:06:34 -0400862 rec = ftrace_profile_alloc(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400863 if (!rec)
864 goto out;
865 }
866
867 rec->counter++;
868 out:
869 local_irq_restore(flags);
870}
871
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400872#ifdef CONFIG_FUNCTION_GRAPH_TRACER
873static int profile_graph_entry(struct ftrace_graph_ent *trace)
874{
Namhyung Kim8861dd32016-08-31 11:55:29 +0900875 int index = trace->depth;
876
Steven Rostedta1e2e312011-08-09 12:50:46 -0400877 function_profile_call(trace->func, 0, NULL, NULL);
Namhyung Kim8861dd32016-08-31 11:55:29 +0900878
879 if (index >= 0 && index < FTRACE_RETFUNC_DEPTH)
880 current->ret_stack[index].subtime = 0;
881
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400882 return 1;
883}
884
885static void profile_graph_return(struct ftrace_graph_ret *trace)
886{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400887 struct ftrace_profile_stat *stat;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400888 unsigned long long calltime;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400889 struct ftrace_profile *rec;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400890 unsigned long flags;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400891
892 local_irq_save(flags);
Christoph Lameterbdffd892014-04-29 14:17:40 -0500893 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400894 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400895 goto out;
896
Steven Rostedt37e44bc2010-04-27 21:04:24 -0400897 /* If the calltime was zero'd ignore it */
898 if (!trace->calltime)
899 goto out;
900
Steven Rostedta2a16d62009-03-24 23:17:58 -0400901 calltime = trace->rettime - trace->calltime;
902
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400903 if (!fgraph_graph_time) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400904 int index;
905
906 index = trace->depth;
907
908 /* Append this call time to the parent time to subtract */
909 if (index)
910 current->ret_stack[index - 1].subtime += calltime;
911
912 if (current->ret_stack[index].subtime < calltime)
913 calltime -= current->ret_stack[index].subtime;
914 else
915 calltime = 0;
916 }
917
Steven Rostedtcafb1682009-03-24 20:50:39 -0400918 rec = ftrace_find_profiled_func(stat, trace->func);
Chase Douglase330b3b2010-04-26 14:02:05 -0400919 if (rec) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400920 rec->time += calltime;
Chase Douglase330b3b2010-04-26 14:02:05 -0400921 rec->time_squared += calltime * calltime;
922 }
Steven Rostedta2a16d62009-03-24 23:17:58 -0400923
Steven Rostedtcafb1682009-03-24 20:50:39 -0400924 out:
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400925 local_irq_restore(flags);
926}
927
928static int register_ftrace_profiler(void)
929{
930 return register_ftrace_graph(&profile_graph_return,
931 &profile_graph_entry);
932}
933
934static void unregister_ftrace_profiler(void)
935{
936 unregister_ftrace_graph();
937}
938#else
Paul McQuadebd38c0e2011-05-31 20:51:55 +0100939static struct ftrace_ops ftrace_profile_ops __read_mostly = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400940 .func = function_profile_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900941 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400942 INIT_OPS_HASH(ftrace_profile_ops)
Steven Rostedt493762f2009-03-23 17:12:36 -0400943};
944
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400945static int register_ftrace_profiler(void)
946{
947 return register_ftrace_function(&ftrace_profile_ops);
948}
949
950static void unregister_ftrace_profiler(void)
951{
952 unregister_ftrace_function(&ftrace_profile_ops);
953}
954#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
955
Steven Rostedt493762f2009-03-23 17:12:36 -0400956static ssize_t
957ftrace_profile_write(struct file *filp, const char __user *ubuf,
958 size_t cnt, loff_t *ppos)
959{
960 unsigned long val;
Steven Rostedt493762f2009-03-23 17:12:36 -0400961 int ret;
962
Peter Huewe22fe9b52011-06-07 21:58:27 +0200963 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
964 if (ret)
Steven Rostedt493762f2009-03-23 17:12:36 -0400965 return ret;
966
967 val = !!val;
968
969 mutex_lock(&ftrace_profile_lock);
970 if (ftrace_profile_enabled ^ val) {
971 if (val) {
972 ret = ftrace_profile_init();
973 if (ret < 0) {
974 cnt = ret;
975 goto out;
976 }
977
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400978 ret = register_ftrace_profiler();
979 if (ret < 0) {
980 cnt = ret;
981 goto out;
982 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400983 ftrace_profile_enabled = 1;
984 } else {
985 ftrace_profile_enabled = 0;
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400986 /*
987 * unregister_ftrace_profiler calls stop_machine
988 * so this acts like an synchronize_sched.
989 */
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400990 unregister_ftrace_profiler();
Steven Rostedt493762f2009-03-23 17:12:36 -0400991 }
992 }
993 out:
994 mutex_unlock(&ftrace_profile_lock);
995
Jiri Olsacf8517c2009-10-23 19:36:16 -0400996 *ppos += cnt;
Steven Rostedt493762f2009-03-23 17:12:36 -0400997
998 return cnt;
999}
1000
1001static ssize_t
1002ftrace_profile_read(struct file *filp, char __user *ubuf,
1003 size_t cnt, loff_t *ppos)
1004{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001005 char buf[64]; /* big enough to hold a number */
Steven Rostedt493762f2009-03-23 17:12:36 -04001006 int r;
1007
1008 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
1009 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
1010}
1011
1012static const struct file_operations ftrace_profile_fops = {
1013 .open = tracing_open_generic,
1014 .read = ftrace_profile_read,
1015 .write = ftrace_profile_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001016 .llseek = default_llseek,
Steven Rostedt493762f2009-03-23 17:12:36 -04001017};
1018
Steven Rostedtcafb1682009-03-24 20:50:39 -04001019/* used to initialize the real stat files */
1020static struct tracer_stat function_stats __initdata = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001021 .name = "functions",
1022 .stat_start = function_stat_start,
1023 .stat_next = function_stat_next,
1024 .stat_cmp = function_stat_cmp,
1025 .stat_headers = function_stat_headers,
1026 .stat_show = function_stat_show
Steven Rostedtcafb1682009-03-24 20:50:39 -04001027};
1028
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001029static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001030{
Steven Rostedtcafb1682009-03-24 20:50:39 -04001031 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -04001032 struct dentry *entry;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001033 char *name;
Steven Rostedt493762f2009-03-23 17:12:36 -04001034 int ret;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001035 int cpu;
Steven Rostedt493762f2009-03-23 17:12:36 -04001036
Steven Rostedtcafb1682009-03-24 20:50:39 -04001037 for_each_possible_cpu(cpu) {
1038 stat = &per_cpu(ftrace_profile_stats, cpu);
1039
Geliang Tang6363c6b2016-03-15 22:12:34 +08001040 name = kasprintf(GFP_KERNEL, "function%d", cpu);
Steven Rostedtcafb1682009-03-24 20:50:39 -04001041 if (!name) {
1042 /*
1043 * The files created are permanent, if something happens
1044 * we still do not free memory.
1045 */
Steven Rostedtcafb1682009-03-24 20:50:39 -04001046 WARN(1,
1047 "Could not allocate stat file for cpu %d\n",
1048 cpu);
1049 return;
1050 }
1051 stat->stat = function_stats;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001052 stat->stat.name = name;
1053 ret = register_stat_tracer(&stat->stat);
1054 if (ret) {
1055 WARN(1,
1056 "Could not register function stat for cpu %d\n",
1057 cpu);
1058 kfree(name);
1059 return;
1060 }
Steven Rostedt493762f2009-03-23 17:12:36 -04001061 }
1062
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001063 entry = tracefs_create_file("function_profile_enabled", 0644,
Steven Rostedt493762f2009-03-23 17:12:36 -04001064 d_tracer, NULL, &ftrace_profile_fops);
1065 if (!entry)
Joe Perchesa395d6a2016-03-22 14:28:09 -07001066 pr_warn("Could not create tracefs 'function_profile_enabled' entry\n");
Steven Rostedt493762f2009-03-23 17:12:36 -04001067}
1068
1069#else /* CONFIG_FUNCTION_PROFILER */
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001070static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001071{
1072}
1073#endif /* CONFIG_FUNCTION_PROFILER */
1074
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001075static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1076
Pratyush Anand1619dc32015-03-06 23:58:06 +05301077#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1078static int ftrace_graph_active;
1079#else
1080# define ftrace_graph_active 0
1081#endif
1082
Steven Rostedt3d083392008-05-12 21:20:42 +02001083#ifdef CONFIG_DYNAMIC_FTRACE
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001084
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001085static struct ftrace_ops *removed_ops;
1086
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04001087/*
1088 * Set when doing a global update, like enabling all recs or disabling them.
1089 * It is not set when just updating a single ftrace_ops.
1090 */
1091static bool update_all_ops;
1092
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001093#ifndef CONFIG_FTRACE_MCOUNT_RECORD
Steven Rostedtcb7be3b2008-10-23 09:33:05 -04001094# error Dynamic ftrace depends on MCOUNT_RECORD
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001095#endif
1096
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001097static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
1098
Steven Rostedtb6887d72009-02-17 12:32:04 -05001099struct ftrace_func_probe {
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001100 struct hlist_node node;
Steven Rostedtb6887d72009-02-17 12:32:04 -05001101 struct ftrace_probe_ops *ops;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001102 unsigned long flags;
1103 unsigned long ip;
1104 void *data;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04001105 struct list_head free_list;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001106};
1107
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001108struct ftrace_func_entry {
1109 struct hlist_node hlist;
1110 unsigned long ip;
1111};
1112
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001113/*
1114 * We make these constant because no one should touch them,
1115 * but they are used as the default "empty hash", to avoid allocating
1116 * it all the time. These are in a read only section such that if
1117 * anyone does try to modify it, it will cause an exception.
1118 */
1119static const struct hlist_head empty_buckets[1];
1120static const struct ftrace_hash empty_hash = {
1121 .buckets = (struct hlist_head *)empty_buckets,
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001122};
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001123#define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02001124
Steven Rostedt2b499382011-05-03 22:49:52 -04001125static struct ftrace_ops global_ops = {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001126 .func = ftrace_stub,
1127 .local_hash.notrace_hash = EMPTY_HASH,
1128 .local_hash.filter_hash = EMPTY_HASH,
1129 INIT_OPS_HASH(global_ops)
1130 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04001131 FTRACE_OPS_FL_INITIALIZED |
1132 FTRACE_OPS_FL_PID,
Steven Rostedtf45948e2011-05-02 12:29:25 -04001133};
1134
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001135/*
1136 * This is used by __kernel_text_address() to return true if the
Steven Rostedt (Red Hat)0af26492014-11-20 10:05:36 -05001137 * address is on a dynamically allocated trampoline that would
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001138 * not return true for either core_kernel_text() or
1139 * is_module_text_address().
1140 */
1141bool is_ftrace_trampoline(unsigned long addr)
1142{
1143 struct ftrace_ops *op;
1144 bool ret = false;
1145
1146 /*
1147 * Some of the ops may be dynamically allocated,
1148 * they are freed after a synchronize_sched().
1149 */
1150 preempt_disable_notrace();
1151
1152 do_for_each_ftrace_op(op, ftrace_ops_list) {
1153 /*
1154 * This is to check for dynamically allocated trampolines.
1155 * Trampolines that are in kernel text will have
1156 * core_kernel_text() return true.
1157 */
1158 if (op->trampoline && op->trampoline_size)
1159 if (addr >= op->trampoline &&
1160 addr < op->trampoline + op->trampoline_size) {
1161 ret = true;
1162 goto out;
1163 }
1164 } while_for_each_ftrace_op(op);
1165
1166 out:
1167 preempt_enable_notrace();
1168
1169 return ret;
1170}
1171
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001172struct ftrace_page {
1173 struct ftrace_page *next;
Steven Rostedta7900872011-12-16 16:23:44 -05001174 struct dyn_ftrace *records;
Steven Rostedt431aa3f2009-01-06 12:43:01 -05001175 int index;
Steven Rostedta7900872011-12-16 16:23:44 -05001176 int size;
David Milleraa5e5ce2008-05-13 22:06:56 -07001177};
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001178
Steven Rostedta7900872011-12-16 16:23:44 -05001179#define ENTRY_SIZE sizeof(struct dyn_ftrace)
1180#define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001181
1182/* estimate from running different kernels */
1183#define NR_TO_INIT 10000
1184
1185static struct ftrace_page *ftrace_pages_start;
1186static struct ftrace_page *ftrace_pages;
1187
Steven Rostedt (VMware)2b0cce02017-02-01 12:19:33 -05001188static __always_inline unsigned long
1189ftrace_hash_key(struct ftrace_hash *hash, unsigned long ip)
1190{
1191 if (hash->size_bits > 0)
1192 return hash_long(ip, hash->size_bits);
1193
1194 return 0;
1195}
1196
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001197/* Only use this function if ftrace_hash_empty() has already been tested */
1198static __always_inline struct ftrace_func_entry *
1199__ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001200{
1201 unsigned long key;
1202 struct ftrace_func_entry *entry;
1203 struct hlist_head *hhd;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001204
Steven Rostedt (VMware)2b0cce02017-02-01 12:19:33 -05001205 key = ftrace_hash_key(hash, ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001206 hhd = &hash->buckets[key];
1207
Steven Rostedt1bb539c2013-05-28 14:38:43 -04001208 hlist_for_each_entry_rcu_notrace(entry, hhd, hlist) {
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001209 if (entry->ip == ip)
1210 return entry;
1211 }
1212 return NULL;
1213}
1214
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001215/**
1216 * ftrace_lookup_ip - Test to see if an ip exists in an ftrace_hash
1217 * @hash: The hash to look at
1218 * @ip: The instruction pointer to test
1219 *
1220 * Search a given @hash to see if a given instruction pointer (@ip)
1221 * exists in it.
1222 *
1223 * Returns the entry that holds the @ip if found. NULL otherwise.
1224 */
1225struct ftrace_func_entry *
1226ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1227{
1228 if (ftrace_hash_empty(hash))
1229 return NULL;
1230
1231 return __ftrace_lookup_ip(hash, ip);
1232}
1233
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001234static void __add_hash_entry(struct ftrace_hash *hash,
1235 struct ftrace_func_entry *entry)
1236{
1237 struct hlist_head *hhd;
1238 unsigned long key;
1239
Steven Rostedt (VMware)2b0cce02017-02-01 12:19:33 -05001240 key = ftrace_hash_key(hash, entry->ip);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001241 hhd = &hash->buckets[key];
1242 hlist_add_head(&entry->hlist, hhd);
1243 hash->count++;
1244}
1245
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001246static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1247{
1248 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001249
1250 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1251 if (!entry)
1252 return -ENOMEM;
1253
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001254 entry->ip = ip;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001255 __add_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001256
1257 return 0;
1258}
1259
1260static void
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001261free_hash_entry(struct ftrace_hash *hash,
1262 struct ftrace_func_entry *entry)
1263{
1264 hlist_del(&entry->hlist);
1265 kfree(entry);
1266 hash->count--;
1267}
1268
1269static void
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001270remove_hash_entry(struct ftrace_hash *hash,
1271 struct ftrace_func_entry *entry)
1272{
1273 hlist_del(&entry->hlist);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001274 hash->count--;
1275}
1276
1277static void ftrace_hash_clear(struct ftrace_hash *hash)
1278{
1279 struct hlist_head *hhd;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001280 struct hlist_node *tn;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001281 struct ftrace_func_entry *entry;
1282 int size = 1 << hash->size_bits;
1283 int i;
1284
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001285 if (!hash->count)
1286 return;
1287
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001288 for (i = 0; i < size; i++) {
1289 hhd = &hash->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001290 hlist_for_each_entry_safe(entry, tn, hhd, hlist)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001291 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001292 }
1293 FTRACE_WARN_ON(hash->count);
1294}
1295
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001296static void free_ftrace_hash(struct ftrace_hash *hash)
1297{
1298 if (!hash || hash == EMPTY_HASH)
1299 return;
1300 ftrace_hash_clear(hash);
1301 kfree(hash->buckets);
1302 kfree(hash);
1303}
1304
Steven Rostedt07fd5512011-05-05 18:03:47 -04001305static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1306{
1307 struct ftrace_hash *hash;
1308
1309 hash = container_of(rcu, struct ftrace_hash, rcu);
1310 free_ftrace_hash(hash);
1311}
1312
1313static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1314{
1315 if (!hash || hash == EMPTY_HASH)
1316 return;
1317 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1318}
1319
Jiri Olsa5500fa52012-02-15 15:51:54 +01001320void ftrace_free_filter(struct ftrace_ops *ops)
1321{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09001322 ftrace_ops_init(ops);
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001323 free_ftrace_hash(ops->func_hash->filter_hash);
1324 free_ftrace_hash(ops->func_hash->notrace_hash);
Jiri Olsa5500fa52012-02-15 15:51:54 +01001325}
1326
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001327static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1328{
1329 struct ftrace_hash *hash;
1330 int size;
1331
1332 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1333 if (!hash)
1334 return NULL;
1335
1336 size = 1 << size_bits;
Thomas Meyer47b0edc2011-11-29 22:08:00 +01001337 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001338
1339 if (!hash->buckets) {
1340 kfree(hash);
1341 return NULL;
1342 }
1343
1344 hash->size_bits = size_bits;
1345
1346 return hash;
1347}
1348
1349static struct ftrace_hash *
1350alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1351{
1352 struct ftrace_func_entry *entry;
1353 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001354 int size;
1355 int ret;
1356 int i;
1357
1358 new_hash = alloc_ftrace_hash(size_bits);
1359 if (!new_hash)
1360 return NULL;
1361
1362 /* Empty hash? */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001363 if (ftrace_hash_empty(hash))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001364 return new_hash;
1365
1366 size = 1 << hash->size_bits;
1367 for (i = 0; i < size; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001368 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001369 ret = add_hash_entry(new_hash, entry->ip);
1370 if (ret < 0)
1371 goto free_hash;
1372 }
1373 }
1374
1375 FTRACE_WARN_ON(new_hash->count != hash->count);
1376
1377 return new_hash;
1378
1379 free_hash:
1380 free_ftrace_hash(new_hash);
1381 return NULL;
1382}
1383
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001384static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001385ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001386static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001387ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001388
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001389static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1390 struct ftrace_hash *new_hash);
1391
Namhyung Kim3e278c02017-01-20 11:44:45 +09001392static struct ftrace_hash *
1393__ftrace_hash_move(struct ftrace_hash *src)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001394{
1395 struct ftrace_func_entry *entry;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001396 struct hlist_node *tn;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001397 struct hlist_head *hhd;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001398 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001399 int size = src->count;
1400 int bits = 0;
1401 int i;
1402
1403 /*
Namhyung Kim3e278c02017-01-20 11:44:45 +09001404 * If the new source is empty, just return the empty_hash.
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001405 */
Namhyung Kim3e278c02017-01-20 11:44:45 +09001406 if (!src->count)
1407 return EMPTY_HASH;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001408
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001409 /*
1410 * Make the hash size about 1/2 the # found
1411 */
1412 for (size /= 2; size; size >>= 1)
1413 bits++;
1414
1415 /* Don't allocate too much */
1416 if (bits > FTRACE_HASH_MAX_BITS)
1417 bits = FTRACE_HASH_MAX_BITS;
1418
Steven Rostedt07fd5512011-05-05 18:03:47 -04001419 new_hash = alloc_ftrace_hash(bits);
1420 if (!new_hash)
Namhyung Kim3e278c02017-01-20 11:44:45 +09001421 return NULL;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001422
1423 size = 1 << src->size_bits;
1424 for (i = 0; i < size; i++) {
1425 hhd = &src->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001426 hlist_for_each_entry_safe(entry, tn, hhd, hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001427 remove_hash_entry(src, entry);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001428 __add_hash_entry(new_hash, entry);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001429 }
1430 }
1431
Namhyung Kim3e278c02017-01-20 11:44:45 +09001432 return new_hash;
1433}
1434
1435static int
1436ftrace_hash_move(struct ftrace_ops *ops, int enable,
1437 struct ftrace_hash **dst, struct ftrace_hash *src)
1438{
1439 struct ftrace_hash *new_hash;
1440 int ret;
1441
1442 /* Reject setting notrace hash on IPMODIFY ftrace_ops */
1443 if (ops->flags & FTRACE_OPS_FL_IPMODIFY && !enable)
1444 return -EINVAL;
1445
1446 new_hash = __ftrace_hash_move(src);
1447 if (!new_hash)
1448 return -ENOMEM;
1449
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001450 /* Make sure this can be applied if it is IPMODIFY ftrace_ops */
1451 if (enable) {
1452 /* IPMODIFY should be updated only when filter_hash updating */
1453 ret = ftrace_hash_ipmodify_update(ops, new_hash);
1454 if (ret < 0) {
1455 free_ftrace_hash(new_hash);
1456 return ret;
1457 }
1458 }
1459
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001460 /*
1461 * Remove the current set, update the hash and add
1462 * them back.
1463 */
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001464 ftrace_hash_rec_disable_modify(ops, enable);
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001465
Steven Rostedt07fd5512011-05-05 18:03:47 -04001466 rcu_assign_pointer(*dst, new_hash);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001467
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001468 ftrace_hash_rec_enable_modify(ops, enable);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001469
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001470 return 0;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001471}
1472
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001473static bool hash_contains_ip(unsigned long ip,
1474 struct ftrace_ops_hash *hash)
1475{
1476 /*
1477 * The function record is a match if it exists in the filter
1478 * hash and not in the notrace hash. Note, an emty hash is
1479 * considered a match for the filter hash, but an empty
1480 * notrace hash is considered not in the notrace hash.
1481 */
1482 return (ftrace_hash_empty(hash->filter_hash) ||
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001483 __ftrace_lookup_ip(hash->filter_hash, ip)) &&
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001484 (ftrace_hash_empty(hash->notrace_hash) ||
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05001485 !__ftrace_lookup_ip(hash->notrace_hash, ip));
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001486}
1487
Steven Rostedt265c8312009-02-13 12:43:56 -05001488/*
Steven Rostedtb8489142011-05-04 09:27:52 -04001489 * Test the hashes for this ops to see if we want to call
1490 * the ops->func or not.
1491 *
1492 * It's a match if the ip is in the ops->filter_hash or
1493 * the filter_hash does not exist or is empty,
1494 * AND
1495 * the ip is not in the ops->notrace_hash.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04001496 *
1497 * This needs to be called with preemption disabled as
1498 * the hashes are freed with call_rcu_sched().
Steven Rostedtb8489142011-05-04 09:27:52 -04001499 */
1500static int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001501ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04001502{
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001503 struct ftrace_ops_hash hash;
Steven Rostedtb8489142011-05-04 09:27:52 -04001504 int ret;
1505
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001506#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1507 /*
1508 * There's a small race when adding ops that the ftrace handler
1509 * that wants regs, may be called without them. We can not
1510 * allow that handler to be called if regs is NULL.
1511 */
1512 if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS))
1513 return 0;
1514#endif
1515
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001516 hash.filter_hash = rcu_dereference_raw_notrace(ops->func_hash->filter_hash);
1517 hash.notrace_hash = rcu_dereference_raw_notrace(ops->func_hash->notrace_hash);
Steven Rostedtb8489142011-05-04 09:27:52 -04001518
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001519 if (hash_contains_ip(ip, &hash))
Steven Rostedtb8489142011-05-04 09:27:52 -04001520 ret = 1;
1521 else
1522 ret = 0;
Steven Rostedtb8489142011-05-04 09:27:52 -04001523
1524 return ret;
1525}
1526
1527/*
Steven Rostedt265c8312009-02-13 12:43:56 -05001528 * This is a double for. Do not use 'break' to break out of the loop,
1529 * you must use a goto.
1530 */
1531#define do_for_each_ftrace_rec(pg, rec) \
1532 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1533 int _____i; \
1534 for (_____i = 0; _____i < pg->index; _____i++) { \
1535 rec = &pg->records[_____i];
1536
1537#define while_for_each_ftrace_rec() \
1538 } \
1539 }
Abhishek Sagarecea6562008-06-21 23:47:53 +05301540
Steven Rostedt5855fea2011-12-16 19:27:42 -05001541
1542static int ftrace_cmp_recs(const void *a, const void *b)
1543{
Steven Rostedta650e022012-04-25 13:48:13 -04001544 const struct dyn_ftrace *key = a;
1545 const struct dyn_ftrace *rec = b;
Steven Rostedt5855fea2011-12-16 19:27:42 -05001546
Steven Rostedta650e022012-04-25 13:48:13 -04001547 if (key->flags < rec->ip)
Steven Rostedt5855fea2011-12-16 19:27:42 -05001548 return -1;
Steven Rostedta650e022012-04-25 13:48:13 -04001549 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1550 return 1;
1551 return 0;
1552}
1553
Michael Ellerman04cf31a2016-03-24 22:04:01 +11001554/**
1555 * ftrace_location_range - return the first address of a traced location
1556 * if it touches the given ip range
1557 * @start: start of range to search.
1558 * @end: end of range to search (inclusive). @end points to the last byte
1559 * to check.
1560 *
1561 * Returns rec->ip if the related ftrace location is a least partly within
1562 * the given address range. That is, the first address of the instruction
1563 * that is either a NOP or call to the function tracer. It checks the ftrace
1564 * internal tables to determine if the address belongs or not.
1565 */
1566unsigned long ftrace_location_range(unsigned long start, unsigned long end)
Steven Rostedta650e022012-04-25 13:48:13 -04001567{
1568 struct ftrace_page *pg;
1569 struct dyn_ftrace *rec;
1570 struct dyn_ftrace key;
1571
1572 key.ip = start;
1573 key.flags = end; /* overload flags, as it is unsigned long */
1574
1575 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1576 if (end < pg->records[0].ip ||
1577 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1578 continue;
1579 rec = bsearch(&key, pg->records, pg->index,
1580 sizeof(struct dyn_ftrace),
1581 ftrace_cmp_recs);
1582 if (rec)
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001583 return rec->ip;
Steven Rostedta650e022012-04-25 13:48:13 -04001584 }
1585
Steven Rostedt5855fea2011-12-16 19:27:42 -05001586 return 0;
1587}
1588
Steven Rostedtc88fd862011-08-16 09:53:39 -04001589/**
1590 * ftrace_location - return true if the ip giving is a traced location
1591 * @ip: the instruction pointer to check
1592 *
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001593 * Returns rec->ip if @ip given is a pointer to a ftrace location.
Steven Rostedtc88fd862011-08-16 09:53:39 -04001594 * That is, the instruction that is either a NOP or call to
1595 * the function tracer. It checks the ftrace internal tables to
1596 * determine if the address belongs or not.
1597 */
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001598unsigned long ftrace_location(unsigned long ip)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001599{
Steven Rostedta650e022012-04-25 13:48:13 -04001600 return ftrace_location_range(ip, ip);
1601}
Steven Rostedtc88fd862011-08-16 09:53:39 -04001602
Steven Rostedta650e022012-04-25 13:48:13 -04001603/**
1604 * ftrace_text_reserved - return true if range contains an ftrace location
1605 * @start: start of range to search
1606 * @end: end of range to search (inclusive). @end points to the last byte to check.
1607 *
1608 * Returns 1 if @start and @end contains a ftrace location.
1609 * That is, the instruction that is either a NOP or call to
1610 * the function tracer. It checks the ftrace internal tables to
1611 * determine if the address belongs or not.
1612 */
Sasha Levind88471c2013-01-09 18:09:20 -05001613int ftrace_text_reserved(const void *start, const void *end)
Steven Rostedta650e022012-04-25 13:48:13 -04001614{
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001615 unsigned long ret;
1616
1617 ret = ftrace_location_range((unsigned long)start,
1618 (unsigned long)end);
1619
1620 return (int)!!ret;
Steven Rostedtc88fd862011-08-16 09:53:39 -04001621}
1622
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001623/* Test if ops registered to this rec needs regs */
1624static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec)
1625{
1626 struct ftrace_ops *ops;
1627 bool keep_regs = false;
1628
1629 for (ops = ftrace_ops_list;
1630 ops != &ftrace_list_end; ops = ops->next) {
1631 /* pass rec in as regs to have non-NULL val */
1632 if (ftrace_ops_test(ops, rec->ip, rec)) {
1633 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1634 keep_regs = true;
1635 break;
1636 }
1637 }
1638 }
1639
1640 return keep_regs;
1641}
1642
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001643static bool __ftrace_hash_rec_update(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001644 int filter_hash,
1645 bool inc)
1646{
1647 struct ftrace_hash *hash;
1648 struct ftrace_hash *other_hash;
1649 struct ftrace_page *pg;
1650 struct dyn_ftrace *rec;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001651 bool update = false;
Steven Rostedted926f92011-05-03 13:25:24 -04001652 int count = 0;
1653 int all = 0;
1654
1655 /* Only update if the ops has been registered */
1656 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001657 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001658
1659 /*
1660 * In the filter_hash case:
1661 * If the count is zero, we update all records.
1662 * Otherwise we just update the items in the hash.
1663 *
1664 * In the notrace_hash case:
1665 * We enable the update in the hash.
1666 * As disabling notrace means enabling the tracing,
1667 * and enabling notrace means disabling, the inc variable
1668 * gets inversed.
1669 */
1670 if (filter_hash) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001671 hash = ops->func_hash->filter_hash;
1672 other_hash = ops->func_hash->notrace_hash;
Steven Rostedt06a51d92011-12-19 19:07:36 -05001673 if (ftrace_hash_empty(hash))
Steven Rostedted926f92011-05-03 13:25:24 -04001674 all = 1;
1675 } else {
1676 inc = !inc;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001677 hash = ops->func_hash->notrace_hash;
1678 other_hash = ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04001679 /*
1680 * If the notrace hash has no items,
1681 * then there's nothing to do.
1682 */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001683 if (ftrace_hash_empty(hash))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001684 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001685 }
1686
1687 do_for_each_ftrace_rec(pg, rec) {
1688 int in_other_hash = 0;
1689 int in_hash = 0;
1690 int match = 0;
1691
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05001692 if (rec->flags & FTRACE_FL_DISABLED)
1693 continue;
1694
Steven Rostedted926f92011-05-03 13:25:24 -04001695 if (all) {
1696 /*
1697 * Only the filter_hash affects all records.
1698 * Update if the record is not in the notrace hash.
1699 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001700 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
Steven Rostedted926f92011-05-03 13:25:24 -04001701 match = 1;
1702 } else {
Steven Rostedt06a51d92011-12-19 19:07:36 -05001703 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1704 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
Steven Rostedted926f92011-05-03 13:25:24 -04001705
1706 /*
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001707 * If filter_hash is set, we want to match all functions
1708 * that are in the hash but not in the other hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001709 *
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001710 * If filter_hash is not set, then we are decrementing.
1711 * That means we match anything that is in the hash
1712 * and also in the other_hash. That is, we need to turn
1713 * off functions in the other hash because they are disabled
1714 * by this hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001715 */
1716 if (filter_hash && in_hash && !in_other_hash)
1717 match = 1;
1718 else if (!filter_hash && in_hash &&
Steven Rostedt06a51d92011-12-19 19:07:36 -05001719 (in_other_hash || ftrace_hash_empty(other_hash)))
Steven Rostedted926f92011-05-03 13:25:24 -04001720 match = 1;
1721 }
1722 if (!match)
1723 continue;
1724
1725 if (inc) {
1726 rec->flags++;
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001727 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001728 return false;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001729
1730 /*
1731 * If there's only a single callback registered to a
1732 * function, and the ops has a trampoline registered
1733 * for it, then we can call it directly.
1734 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001735 if (ftrace_rec_count(rec) == 1 && ops->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001736 rec->flags |= FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001737 else
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001738 /*
1739 * If we are adding another function callback
1740 * to this function, and the previous had a
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04001741 * custom trampoline in use, then we need to go
1742 * back to the default trampoline.
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001743 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001744 rec->flags &= ~FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001745
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001746 /*
1747 * If any ops wants regs saved for this function
1748 * then all ops will get saved regs.
1749 */
1750 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1751 rec->flags |= FTRACE_FL_REGS;
Steven Rostedted926f92011-05-03 13:25:24 -04001752 } else {
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001753 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001754 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001755 rec->flags--;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001756
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001757 /*
1758 * If the rec had REGS enabled and the ops that is
1759 * being removed had REGS set, then see if there is
1760 * still any ops for this record that wants regs.
1761 * If not, we can stop recording them.
1762 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001763 if (ftrace_rec_count(rec) > 0 &&
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001764 rec->flags & FTRACE_FL_REGS &&
1765 ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1766 if (!test_rec_ops_needs_regs(rec))
1767 rec->flags &= ~FTRACE_FL_REGS;
1768 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001769
1770 /*
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001771 * If the rec had TRAMP enabled, then it needs to
1772 * be cleared. As TRAMP can only be enabled iff
1773 * there is only a single ops attached to it.
1774 * In otherwords, always disable it on decrementing.
1775 * In the future, we may set it if rec count is
1776 * decremented to one, and the ops that is left
1777 * has a trampoline.
1778 */
1779 rec->flags &= ~FTRACE_FL_TRAMP;
1780
1781 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001782 * flags will be cleared in ftrace_check_record()
1783 * if rec count is zero.
1784 */
Steven Rostedted926f92011-05-03 13:25:24 -04001785 }
1786 count++;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001787
1788 /* Must match FTRACE_UPDATE_CALLS in ftrace_modify_all_code() */
1789 update |= ftrace_test_record(rec, 1) != FTRACE_UPDATE_IGNORE;
1790
Steven Rostedted926f92011-05-03 13:25:24 -04001791 /* Shortcut, if we handled all records, we are done. */
1792 if (!all && count == hash->count)
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001793 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001794 } while_for_each_ftrace_rec();
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001795
1796 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001797}
1798
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001799static bool ftrace_hash_rec_disable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001800 int filter_hash)
1801{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001802 return __ftrace_hash_rec_update(ops, filter_hash, 0);
Steven Rostedted926f92011-05-03 13:25:24 -04001803}
1804
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001805static bool ftrace_hash_rec_enable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001806 int filter_hash)
1807{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001808 return __ftrace_hash_rec_update(ops, filter_hash, 1);
Steven Rostedted926f92011-05-03 13:25:24 -04001809}
1810
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001811static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops,
1812 int filter_hash, int inc)
1813{
1814 struct ftrace_ops *op;
1815
1816 __ftrace_hash_rec_update(ops, filter_hash, inc);
1817
1818 if (ops->func_hash != &global_ops.local_hash)
1819 return;
1820
1821 /*
1822 * If the ops shares the global_ops hash, then we need to update
1823 * all ops that are enabled and use this hash.
1824 */
1825 do_for_each_ftrace_op(op, ftrace_ops_list) {
1826 /* Already done */
1827 if (op == ops)
1828 continue;
1829 if (op->func_hash == &global_ops.local_hash)
1830 __ftrace_hash_rec_update(op, filter_hash, inc);
1831 } while_for_each_ftrace_op(op);
1832}
1833
1834static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops,
1835 int filter_hash)
1836{
1837 ftrace_hash_rec_update_modify(ops, filter_hash, 0);
1838}
1839
1840static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops,
1841 int filter_hash)
1842{
1843 ftrace_hash_rec_update_modify(ops, filter_hash, 1);
1844}
1845
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001846/*
1847 * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK
1848 * or no-needed to update, -EBUSY if it detects a conflict of the flag
1849 * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs.
1850 * Note that old_hash and new_hash has below meanings
1851 * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected)
1852 * - If the hash is EMPTY_HASH, it hits nothing
1853 * - Anything else hits the recs which match the hash entries.
1854 */
1855static int __ftrace_hash_update_ipmodify(struct ftrace_ops *ops,
1856 struct ftrace_hash *old_hash,
1857 struct ftrace_hash *new_hash)
1858{
1859 struct ftrace_page *pg;
1860 struct dyn_ftrace *rec, *end = NULL;
1861 int in_old, in_new;
1862
1863 /* Only update if the ops has been registered */
1864 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1865 return 0;
1866
1867 if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY))
1868 return 0;
1869
1870 /*
1871 * Since the IPMODIFY is a very address sensitive action, we do not
1872 * allow ftrace_ops to set all functions to new hash.
1873 */
1874 if (!new_hash || !old_hash)
1875 return -EINVAL;
1876
1877 /* Update rec->flags */
1878 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05001879
1880 if (rec->flags & FTRACE_FL_DISABLED)
1881 continue;
1882
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001883 /* We need to update only differences of filter_hash */
1884 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1885 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1886 if (in_old == in_new)
1887 continue;
1888
1889 if (in_new) {
1890 /* New entries must ensure no others are using it */
1891 if (rec->flags & FTRACE_FL_IPMODIFY)
1892 goto rollback;
1893 rec->flags |= FTRACE_FL_IPMODIFY;
1894 } else /* Removed entry */
1895 rec->flags &= ~FTRACE_FL_IPMODIFY;
1896 } while_for_each_ftrace_rec();
1897
1898 return 0;
1899
1900rollback:
1901 end = rec;
1902
1903 /* Roll back what we did above */
1904 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05001905
1906 if (rec->flags & FTRACE_FL_DISABLED)
1907 continue;
1908
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001909 if (rec == end)
1910 goto err_out;
1911
1912 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1913 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1914 if (in_old == in_new)
1915 continue;
1916
1917 if (in_new)
1918 rec->flags &= ~FTRACE_FL_IPMODIFY;
1919 else
1920 rec->flags |= FTRACE_FL_IPMODIFY;
1921 } while_for_each_ftrace_rec();
1922
1923err_out:
1924 return -EBUSY;
1925}
1926
1927static int ftrace_hash_ipmodify_enable(struct ftrace_ops *ops)
1928{
1929 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1930
1931 if (ftrace_hash_empty(hash))
1932 hash = NULL;
1933
1934 return __ftrace_hash_update_ipmodify(ops, EMPTY_HASH, hash);
1935}
1936
1937/* Disabling always succeeds */
1938static void ftrace_hash_ipmodify_disable(struct ftrace_ops *ops)
1939{
1940 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1941
1942 if (ftrace_hash_empty(hash))
1943 hash = NULL;
1944
1945 __ftrace_hash_update_ipmodify(ops, hash, EMPTY_HASH);
1946}
1947
1948static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1949 struct ftrace_hash *new_hash)
1950{
1951 struct ftrace_hash *old_hash = ops->func_hash->filter_hash;
1952
1953 if (ftrace_hash_empty(old_hash))
1954 old_hash = NULL;
1955
1956 if (ftrace_hash_empty(new_hash))
1957 new_hash = NULL;
1958
1959 return __ftrace_hash_update_ipmodify(ops, old_hash, new_hash);
1960}
1961
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05001962static void print_ip_ins(const char *fmt, const unsigned char *p)
Steven Rostedt05736a42008-09-22 14:55:47 -07001963{
1964 int i;
1965
1966 printk(KERN_CONT "%s", fmt);
1967
1968 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1969 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1970}
1971
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001972static struct ftrace_ops *
1973ftrace_find_tramp_ops_any(struct dyn_ftrace *rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05001974static struct ftrace_ops *
1975ftrace_find_tramp_ops_next(struct dyn_ftrace *rec, struct ftrace_ops *ops);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001976
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05001977enum ftrace_bug_type ftrace_bug_type;
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05001978const void *ftrace_expected;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05001979
1980static void print_bug_type(void)
1981{
1982 switch (ftrace_bug_type) {
1983 case FTRACE_BUG_UNKNOWN:
1984 break;
1985 case FTRACE_BUG_INIT:
1986 pr_info("Initializing ftrace call sites\n");
1987 break;
1988 case FTRACE_BUG_NOP:
1989 pr_info("Setting ftrace call site to NOP\n");
1990 break;
1991 case FTRACE_BUG_CALL:
1992 pr_info("Setting ftrace call site to call ftrace function\n");
1993 break;
1994 case FTRACE_BUG_UPDATE:
1995 pr_info("Updating ftrace call site to call a different ftrace function\n");
1996 break;
1997 }
1998}
1999
Steven Rostedtc88fd862011-08-16 09:53:39 -04002000/**
2001 * ftrace_bug - report and shutdown function tracer
2002 * @failed: The failed type (EFAULT, EINVAL, EPERM)
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002003 * @rec: The record that failed
Steven Rostedtc88fd862011-08-16 09:53:39 -04002004 *
2005 * The arch code that enables or disables the function tracing
2006 * can call ftrace_bug() when it has detected a problem in
2007 * modifying the code. @failed should be one of either:
2008 * EFAULT - if the problem happens on reading the @ip address
2009 * EINVAL - if what is read at @ip is not what was expected
2010 * EPERM - if the problem happens on writting to the @ip address
2011 */
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002012void ftrace_bug(int failed, struct dyn_ftrace *rec)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002013{
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002014 unsigned long ip = rec ? rec->ip : 0;
2015
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002016 switch (failed) {
2017 case -EFAULT:
2018 FTRACE_WARN_ON_ONCE(1);
2019 pr_info("ftrace faulted on modifying ");
2020 print_ip_sym(ip);
2021 break;
2022 case -EINVAL:
2023 FTRACE_WARN_ON_ONCE(1);
2024 pr_info("ftrace failed to modify ");
2025 print_ip_sym(ip);
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002026 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002027 pr_cont("\n");
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002028 if (ftrace_expected) {
2029 print_ip_ins(" expected: ", ftrace_expected);
2030 pr_cont("\n");
2031 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002032 break;
2033 case -EPERM:
2034 FTRACE_WARN_ON_ONCE(1);
2035 pr_info("ftrace faulted on writing ");
2036 print_ip_sym(ip);
2037 break;
2038 default:
2039 FTRACE_WARN_ON_ONCE(1);
2040 pr_info("ftrace faulted on unknown error ");
2041 print_ip_sym(ip);
2042 }
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002043 print_bug_type();
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002044 if (rec) {
2045 struct ftrace_ops *ops = NULL;
2046
2047 pr_info("ftrace record flags: %lx\n", rec->flags);
2048 pr_cont(" (%ld)%s", ftrace_rec_count(rec),
2049 rec->flags & FTRACE_FL_REGS ? " R" : " ");
2050 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2051 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002052 if (ops) {
2053 do {
2054 pr_cont("\ttramp: %pS (%pS)",
2055 (void *)ops->trampoline,
2056 (void *)ops->func);
2057 ops = ftrace_find_tramp_ops_next(rec, ops);
2058 } while (ops);
2059 } else
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002060 pr_cont("\ttramp: ERROR!");
2061
2062 }
2063 ip = ftrace_get_addr_curr(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002064 pr_cont("\n expected tramp: %lx\n", ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002065 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002066}
2067
Steven Rostedtc88fd862011-08-16 09:53:39 -04002068static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02002069{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002070 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01002071
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002072 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2073
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002074 if (rec->flags & FTRACE_FL_DISABLED)
2075 return FTRACE_UPDATE_IGNORE;
2076
Steven Rostedt982c3502008-11-15 16:31:41 -05002077 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002078 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05002079 *
Steven Rostedted926f92011-05-03 13:25:24 -04002080 * If the record has a ref count, then we need to enable it
2081 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05002082 *
Steven Rostedted926f92011-05-03 13:25:24 -04002083 * Otherwise we make sure its disabled.
2084 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002085 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04002086 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05002087 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002088 if (enable && ftrace_rec_count(rec))
Steven Rostedted926f92011-05-03 13:25:24 -04002089 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02002090
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002091 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002092 * If enabling and the REGS flag does not match the REGS_EN, or
2093 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
2094 * this record. Set flags to fail the compare against ENABLED.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002095 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002096 if (flag) {
2097 if (!(rec->flags & FTRACE_FL_REGS) !=
2098 !(rec->flags & FTRACE_FL_REGS_EN))
2099 flag |= FTRACE_FL_REGS;
2100
2101 if (!(rec->flags & FTRACE_FL_TRAMP) !=
2102 !(rec->flags & FTRACE_FL_TRAMP_EN))
2103 flag |= FTRACE_FL_TRAMP;
2104 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002105
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002106 /* If the state of this record hasn't changed, then do nothing */
2107 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04002108 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002109
2110 if (flag) {
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002111 /* Save off if rec is being enabled (for return value) */
2112 flag ^= rec->flags & FTRACE_FL_ENABLED;
2113
2114 if (update) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04002115 rec->flags |= FTRACE_FL_ENABLED;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002116 if (flag & FTRACE_FL_REGS) {
2117 if (rec->flags & FTRACE_FL_REGS)
2118 rec->flags |= FTRACE_FL_REGS_EN;
2119 else
2120 rec->flags &= ~FTRACE_FL_REGS_EN;
2121 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002122 if (flag & FTRACE_FL_TRAMP) {
2123 if (rec->flags & FTRACE_FL_TRAMP)
2124 rec->flags |= FTRACE_FL_TRAMP_EN;
2125 else
2126 rec->flags &= ~FTRACE_FL_TRAMP_EN;
2127 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002128 }
2129
2130 /*
2131 * If this record is being updated from a nop, then
2132 * return UPDATE_MAKE_CALL.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002133 * Otherwise,
2134 * return UPDATE_MODIFY_CALL to tell the caller to convert
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002135 * from the save regs, to a non-save regs function or
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002136 * vice versa, or from a trampoline call.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002137 */
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002138 if (flag & FTRACE_FL_ENABLED) {
2139 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002140 return FTRACE_UPDATE_MAKE_CALL;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002141 }
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002142
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002143 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002144 return FTRACE_UPDATE_MODIFY_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002145 }
2146
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002147 if (update) {
2148 /* If there's no more users, clear all flags */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002149 if (!ftrace_rec_count(rec))
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002150 rec->flags = 0;
2151 else
Steven Rostedt (Red Hat)b24d4432015-03-04 23:10:28 -05002152 /*
2153 * Just disable the record, but keep the ops TRAMP
2154 * and REGS states. The _EN flags must be disabled though.
2155 */
2156 rec->flags &= ~(FTRACE_FL_ENABLED | FTRACE_FL_TRAMP_EN |
2157 FTRACE_FL_REGS_EN);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002158 }
Steven Rostedtc88fd862011-08-16 09:53:39 -04002159
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002160 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002161 return FTRACE_UPDATE_MAKE_NOP;
2162}
2163
2164/**
2165 * ftrace_update_record, set a record that now is tracing or not
2166 * @rec: the record to update
2167 * @enable: set to 1 if the record is tracing, zero to force disable
2168 *
2169 * The records that represent all functions that can be traced need
2170 * to be updated when tracing has been enabled.
2171 */
2172int ftrace_update_record(struct dyn_ftrace *rec, int enable)
2173{
2174 return ftrace_check_record(rec, enable, 1);
2175}
2176
2177/**
2178 * ftrace_test_record, check if the record has been enabled or not
2179 * @rec: the record to test
2180 * @enable: set to 1 to check if enabled, 0 if it is disabled
2181 *
2182 * The arch code may need to test if a record is already set to
2183 * tracing to determine how to modify the function code that it
2184 * represents.
2185 */
2186int ftrace_test_record(struct dyn_ftrace *rec, int enable)
2187{
2188 return ftrace_check_record(rec, enable, 0);
2189}
2190
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002191static struct ftrace_ops *
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002192ftrace_find_tramp_ops_any(struct dyn_ftrace *rec)
2193{
2194 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002195 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002196
2197 do_for_each_ftrace_op(op, ftrace_ops_list) {
2198
2199 if (!op->trampoline)
2200 continue;
2201
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002202 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002203 return op;
2204 } while_for_each_ftrace_op(op);
2205
2206 return NULL;
2207}
2208
2209static struct ftrace_ops *
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002210ftrace_find_tramp_ops_next(struct dyn_ftrace *rec,
2211 struct ftrace_ops *op)
2212{
2213 unsigned long ip = rec->ip;
2214
2215 while_for_each_ftrace_op(op) {
2216
2217 if (!op->trampoline)
2218 continue;
2219
2220 if (hash_contains_ip(ip, op->func_hash))
2221 return op;
2222 }
2223
2224 return NULL;
2225}
2226
2227static struct ftrace_ops *
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002228ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec)
2229{
2230 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002231 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002232
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002233 /*
2234 * Need to check removed ops first.
2235 * If they are being removed, and this rec has a tramp,
2236 * and this rec is in the ops list, then it would be the
2237 * one with the tramp.
2238 */
2239 if (removed_ops) {
2240 if (hash_contains_ip(ip, &removed_ops->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002241 return removed_ops;
2242 }
2243
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002244 /*
2245 * Need to find the current trampoline for a rec.
2246 * Now, a trampoline is only attached to a rec if there
2247 * was a single 'ops' attached to it. But this can be called
2248 * when we are adding another op to the rec or removing the
2249 * current one. Thus, if the op is being added, we can
2250 * ignore it because it hasn't attached itself to the rec
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002251 * yet.
2252 *
2253 * If an ops is being modified (hooking to different functions)
2254 * then we don't care about the new functions that are being
2255 * added, just the old ones (that are probably being removed).
2256 *
2257 * If we are adding an ops to a function that already is using
2258 * a trampoline, it needs to be removed (trampolines are only
2259 * for single ops connected), then an ops that is not being
2260 * modified also needs to be checked.
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002261 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002262 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002263
2264 if (!op->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002265 continue;
2266
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002267 /*
2268 * If the ops is being added, it hasn't gotten to
2269 * the point to be removed from this tree yet.
2270 */
2271 if (op->flags & FTRACE_OPS_FL_ADDING)
2272 continue;
2273
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002274
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002275 /*
2276 * If the ops is being modified and is in the old
2277 * hash, then it is probably being removed from this
2278 * function.
2279 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002280 if ((op->flags & FTRACE_OPS_FL_MODIFYING) &&
2281 hash_contains_ip(ip, &op->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002282 return op;
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002283 /*
2284 * If the ops is not being added or modified, and it's
2285 * in its normal filter hash, then this must be the one
2286 * we want!
2287 */
2288 if (!(op->flags & FTRACE_OPS_FL_MODIFYING) &&
2289 hash_contains_ip(ip, op->func_hash))
2290 return op;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002291
2292 } while_for_each_ftrace_op(op);
2293
2294 return NULL;
2295}
2296
2297static struct ftrace_ops *
2298ftrace_find_tramp_ops_new(struct dyn_ftrace *rec)
2299{
2300 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002301 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002302
2303 do_for_each_ftrace_op(op, ftrace_ops_list) {
2304 /* pass rec in as regs to have non-NULL val */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002305 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002306 return op;
2307 } while_for_each_ftrace_op(op);
2308
2309 return NULL;
2310}
2311
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002312/**
2313 * ftrace_get_addr_new - Get the call address to set to
2314 * @rec: The ftrace record descriptor
2315 *
2316 * If the record has the FTRACE_FL_REGS set, that means that it
2317 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2318 * is not not set, then it wants to convert to the normal callback.
2319 *
2320 * Returns the address of the trampoline to set to
2321 */
2322unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec)
2323{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002324 struct ftrace_ops *ops;
2325
2326 /* Trampolines take precedence over regs */
2327 if (rec->flags & FTRACE_FL_TRAMP) {
2328 ops = ftrace_find_tramp_ops_new(rec);
2329 if (FTRACE_WARN_ON(!ops || !ops->trampoline)) {
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04002330 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2331 (void *)rec->ip, (void *)rec->ip, rec->flags);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002332 /* Ftrace is shutting down, return anything */
2333 return (unsigned long)FTRACE_ADDR;
2334 }
2335 return ops->trampoline;
2336 }
2337
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002338 if (rec->flags & FTRACE_FL_REGS)
2339 return (unsigned long)FTRACE_REGS_ADDR;
2340 else
2341 return (unsigned long)FTRACE_ADDR;
2342}
2343
2344/**
2345 * ftrace_get_addr_curr - Get the call address that is already there
2346 * @rec: The ftrace record descriptor
2347 *
2348 * The FTRACE_FL_REGS_EN is set when the record already points to
2349 * a function that saves all the regs. Basically the '_EN' version
2350 * represents the current state of the function.
2351 *
2352 * Returns the address of the trampoline that is currently being called
2353 */
2354unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec)
2355{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002356 struct ftrace_ops *ops;
2357
2358 /* Trampolines take precedence over regs */
2359 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2360 ops = ftrace_find_tramp_ops_curr(rec);
2361 if (FTRACE_WARN_ON(!ops)) {
Joe Perchesa395d6a2016-03-22 14:28:09 -07002362 pr_warn("Bad trampoline accounting at: %p (%pS)\n",
2363 (void *)rec->ip, (void *)rec->ip);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002364 /* Ftrace is shutting down, return anything */
2365 return (unsigned long)FTRACE_ADDR;
2366 }
2367 return ops->trampoline;
2368 }
2369
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002370 if (rec->flags & FTRACE_FL_REGS_EN)
2371 return (unsigned long)FTRACE_REGS_ADDR;
2372 else
2373 return (unsigned long)FTRACE_ADDR;
2374}
2375
Steven Rostedtc88fd862011-08-16 09:53:39 -04002376static int
2377__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
2378{
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002379 unsigned long ftrace_old_addr;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002380 unsigned long ftrace_addr;
2381 int ret;
2382
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002383 ftrace_addr = ftrace_get_addr_new(rec);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002384
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002385 /* This needs to be done before we call ftrace_update_record */
2386 ftrace_old_addr = ftrace_get_addr_curr(rec);
2387
2388 ret = ftrace_update_record(rec, enable);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002389
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002390 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2391
Steven Rostedtc88fd862011-08-16 09:53:39 -04002392 switch (ret) {
2393 case FTRACE_UPDATE_IGNORE:
2394 return 0;
2395
2396 case FTRACE_UPDATE_MAKE_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002397 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002398 return ftrace_make_call(rec, ftrace_addr);
2399
2400 case FTRACE_UPDATE_MAKE_NOP:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002401 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedt (Red Hat)39b55522014-08-17 20:59:10 -04002402 return ftrace_make_nop(NULL, rec, ftrace_old_addr);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002403
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002404 case FTRACE_UPDATE_MODIFY_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002405 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002406 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002407 }
2408
2409 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02002410}
2411
Steven Rostedte4f5d542012-04-27 09:13:18 -04002412void __weak ftrace_replace_code(int enable)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002413{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002414 struct dyn_ftrace *rec;
2415 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002416 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002417
Steven Rostedt45a4a232011-04-21 23:16:46 -04002418 if (unlikely(ftrace_disabled))
2419 return;
2420
Steven Rostedt265c8312009-02-13 12:43:56 -05002421 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05002422
2423 if (rec->flags & FTRACE_FL_DISABLED)
2424 continue;
2425
Steven Rostedte4f5d542012-04-27 09:13:18 -04002426 failed = __ftrace_replace_code(rec, enable);
Zhaoleifa9d13c2009-03-13 17:16:34 +08002427 if (failed) {
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002428 ftrace_bug(failed, rec);
Steven Rostedt3279ba32009-10-07 16:57:56 -04002429 /* Stop processing */
2430 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05002431 }
2432 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002433}
2434
Steven Rostedtc88fd862011-08-16 09:53:39 -04002435struct ftrace_rec_iter {
2436 struct ftrace_page *pg;
2437 int index;
2438};
2439
2440/**
2441 * ftrace_rec_iter_start, start up iterating over traced functions
2442 *
2443 * Returns an iterator handle that is used to iterate over all
2444 * the records that represent address locations where functions
2445 * are traced.
2446 *
2447 * May return NULL if no records are available.
2448 */
2449struct ftrace_rec_iter *ftrace_rec_iter_start(void)
2450{
2451 /*
2452 * We only use a single iterator.
2453 * Protected by the ftrace_lock mutex.
2454 */
2455 static struct ftrace_rec_iter ftrace_rec_iter;
2456 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
2457
2458 iter->pg = ftrace_pages_start;
2459 iter->index = 0;
2460
2461 /* Could have empty pages */
2462 while (iter->pg && !iter->pg->index)
2463 iter->pg = iter->pg->next;
2464
2465 if (!iter->pg)
2466 return NULL;
2467
2468 return iter;
2469}
2470
2471/**
2472 * ftrace_rec_iter_next, get the next record to process.
2473 * @iter: The handle to the iterator.
2474 *
2475 * Returns the next iterator after the given iterator @iter.
2476 */
2477struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
2478{
2479 iter->index++;
2480
2481 if (iter->index >= iter->pg->index) {
2482 iter->pg = iter->pg->next;
2483 iter->index = 0;
2484
2485 /* Could have empty pages */
2486 while (iter->pg && !iter->pg->index)
2487 iter->pg = iter->pg->next;
2488 }
2489
2490 if (!iter->pg)
2491 return NULL;
2492
2493 return iter;
2494}
2495
2496/**
2497 * ftrace_rec_iter_record, get the record at the iterator location
2498 * @iter: The current iterator location
2499 *
2500 * Returns the record that the current @iter is at.
2501 */
2502struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
2503{
2504 return &iter->pg->records[iter->index];
2505}
2506
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302507static int
Steven Rostedt31e88902008-11-14 16:21:19 -08002508ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002509{
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002510 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002511
Steven Rostedt45a4a232011-04-21 23:16:46 -04002512 if (unlikely(ftrace_disabled))
2513 return 0;
2514
Shaohua Li25aac9d2009-01-09 11:29:40 +08002515 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002516 if (ret) {
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002517 ftrace_bug_type = FTRACE_BUG_INIT;
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002518 ftrace_bug(ret, rec);
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302519 return 0;
Steven Rostedt37ad50842008-05-12 21:20:48 +02002520 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302521 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002522}
2523
Steven Rostedt000ab692009-02-17 13:35:06 -05002524/*
2525 * archs can override this function if they must do something
2526 * before the modifying code is performed.
2527 */
2528int __weak ftrace_arch_code_modify_prepare(void)
2529{
2530 return 0;
2531}
2532
2533/*
2534 * archs can override this function if they must do something
2535 * after the modifying code is performed.
2536 */
2537int __weak ftrace_arch_code_modify_post_process(void)
2538{
2539 return 0;
2540}
2541
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002542void ftrace_modify_all_code(int command)
2543{
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002544 int update = command & FTRACE_UPDATE_TRACE_FUNC;
Petr Mladekcd21067f2014-02-24 17:12:21 +01002545 int err = 0;
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002546
2547 /*
2548 * If the ftrace_caller calls a ftrace_ops func directly,
2549 * we need to make sure that it only traces functions it
2550 * expects to trace. When doing the switch of functions,
2551 * we need to update to the ftrace_ops_list_func first
2552 * before the transition between old and new calls are set,
2553 * as the ftrace_ops_list_func will check the ops hashes
2554 * to make sure the ops are having the right functions
2555 * traced.
2556 */
Petr Mladekcd21067f2014-02-24 17:12:21 +01002557 if (update) {
2558 err = ftrace_update_ftrace_func(ftrace_ops_list_func);
2559 if (FTRACE_WARN_ON(err))
2560 return;
2561 }
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002562
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002563 if (command & FTRACE_UPDATE_CALLS)
2564 ftrace_replace_code(1);
2565 else if (command & FTRACE_DISABLE_CALLS)
2566 ftrace_replace_code(0);
2567
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002568 if (update && ftrace_trace_function != ftrace_ops_list_func) {
2569 function_trace_op = set_function_trace_op;
2570 smp_wmb();
2571 /* If irqs are disabled, we are in stop machine */
2572 if (!irqs_disabled())
2573 smp_call_function(ftrace_sync_ipi, NULL, 1);
Petr Mladekcd21067f2014-02-24 17:12:21 +01002574 err = ftrace_update_ftrace_func(ftrace_trace_function);
2575 if (FTRACE_WARN_ON(err))
2576 return;
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002577 }
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002578
2579 if (command & FTRACE_START_FUNC_RET)
Petr Mladekcd21067f2014-02-24 17:12:21 +01002580 err = ftrace_enable_ftrace_graph_caller();
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002581 else if (command & FTRACE_STOP_FUNC_RET)
Petr Mladekcd21067f2014-02-24 17:12:21 +01002582 err = ftrace_disable_ftrace_graph_caller();
2583 FTRACE_WARN_ON(err);
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002584}
2585
Ingo Molnare309b412008-05-12 21:20:51 +02002586static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02002587{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002588 int *command = data;
2589
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002590 ftrace_modify_all_code(*command);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05002591
Steven Rostedtc88fd862011-08-16 09:53:39 -04002592 return 0;
2593}
2594
2595/**
2596 * ftrace_run_stop_machine, go back to the stop machine method
2597 * @command: The command to tell ftrace what to do
2598 *
2599 * If an arch needs to fall back to the stop machine method, the
2600 * it can call this function.
2601 */
2602void ftrace_run_stop_machine(int command)
2603{
2604 stop_machine(__ftrace_modify_code, &command, NULL);
2605}
2606
2607/**
2608 * arch_ftrace_update_code, modify the code to trace or not trace
2609 * @command: The command that needs to be done
2610 *
2611 * Archs can override this function if it does not need to
2612 * run stop_machine() to modify code.
2613 */
2614void __weak arch_ftrace_update_code(int command)
2615{
2616 ftrace_run_stop_machine(command);
2617}
2618
2619static void ftrace_run_update_code(int command)
2620{
2621 int ret;
2622
2623 ret = ftrace_arch_code_modify_prepare();
2624 FTRACE_WARN_ON(ret);
2625 if (ret)
2626 return;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002627
2628 /*
2629 * By default we use stop_machine() to modify the code.
2630 * But archs can do what ever they want as long as it
2631 * is safe. The stop_machine() is the safest, but also
2632 * produces the most overhead.
2633 */
2634 arch_ftrace_update_code(command);
2635
Steven Rostedt000ab692009-02-17 13:35:06 -05002636 ret = ftrace_arch_code_modify_post_process();
2637 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02002638}
2639
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002640static void ftrace_run_modify_code(struct ftrace_ops *ops, int command,
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002641 struct ftrace_ops_hash *old_hash)
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002642{
2643 ops->flags |= FTRACE_OPS_FL_MODIFYING;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002644 ops->old_hash.filter_hash = old_hash->filter_hash;
2645 ops->old_hash.notrace_hash = old_hash->notrace_hash;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002646 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002647 ops->old_hash.filter_hash = NULL;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002648 ops->old_hash.notrace_hash = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002649 ops->flags &= ~FTRACE_OPS_FL_MODIFYING;
2650}
2651
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002652static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002653static int ftrace_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002654
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002655void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops)
2656{
2657}
2658
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002659static void per_cpu_ops_free(struct ftrace_ops *ops)
Jiri Slabydb0fbad2014-03-10 21:42:11 +01002660{
2661 free_percpu(ops->disabled);
2662}
2663
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002664static void ftrace_startup_enable(int command)
2665{
2666 if (saved_ftrace_func != ftrace_trace_function) {
2667 saved_ftrace_func = ftrace_trace_function;
2668 command |= FTRACE_UPDATE_TRACE_FUNC;
2669 }
2670
2671 if (!command || !ftrace_enabled)
2672 return;
2673
2674 ftrace_run_update_code(command);
2675}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002676
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002677static void ftrace_startup_all(int command)
2678{
2679 update_all_ops = true;
2680 ftrace_startup_enable(command);
2681 update_all_ops = false;
2682}
2683
Steven Rostedta1cd6172011-05-23 15:24:25 -04002684static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002685{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002686 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002687
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002688 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04002689 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002690
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002691 ret = __register_ftrace_function(ops);
2692 if (ret)
2693 return ret;
2694
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002695 ftrace_start_up++;
Steven Rostedt3d083392008-05-12 21:20:42 +02002696
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002697 /*
2698 * Note that ftrace probes uses this to start up
2699 * and modify functions it will probe. But we still
2700 * set the ADDING flag for modification, as probes
2701 * do not have trampolines. If they add them in the
2702 * future, then the probes will need to distinguish
2703 * between adding and updating probes.
2704 */
2705 ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING;
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002706
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002707 ret = ftrace_hash_ipmodify_enable(ops);
2708 if (ret < 0) {
2709 /* Rollback registration process */
2710 __unregister_ftrace_function(ops);
2711 ftrace_start_up--;
2712 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2713 return ret;
2714 }
2715
Jiri Olsa7f50d062016-03-16 15:34:33 +01002716 if (ftrace_hash_rec_enable(ops, 1))
2717 command |= FTRACE_UPDATE_CALLS;
Steven Rostedted926f92011-05-03 13:25:24 -04002718
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002719 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04002720
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002721 ops->flags &= ~FTRACE_OPS_FL_ADDING;
2722
Steven Rostedta1cd6172011-05-23 15:24:25 -04002723 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002724}
2725
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002726static int ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002727{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002728 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002729
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002730 if (unlikely(ftrace_disabled))
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002731 return -ENODEV;
2732
2733 ret = __unregister_ftrace_function(ops);
2734 if (ret)
2735 return ret;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002736
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002737 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02002738 /*
2739 * Just warn in case of unbalance, no need to kill ftrace, it's not
2740 * critical but the ftrace_call callers may be never nopped again after
2741 * further ftrace uses.
2742 */
2743 WARN_ON_ONCE(ftrace_start_up < 0);
2744
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002745 /* Disabling ipmodify never fails */
2746 ftrace_hash_ipmodify_disable(ops);
Jiri Olsa7f50d062016-03-16 15:34:33 +01002747
2748 if (ftrace_hash_rec_disable(ops, 1))
2749 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtb8489142011-05-04 09:27:52 -04002750
Namhyung Kima737e6d2014-06-12 23:56:12 +09002751 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04002752
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002753 if (saved_ftrace_func != ftrace_trace_function) {
2754 saved_ftrace_func = ftrace_trace_function;
2755 command |= FTRACE_UPDATE_TRACE_FUNC;
2756 }
2757
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002758 if (!command || !ftrace_enabled) {
2759 /*
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002760 * If these are per_cpu ops, they still need their
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002761 * per_cpu field freed. Since, function tracing is
2762 * not currently active, we can just free them
2763 * without synchronizing all CPUs.
2764 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002765 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2766 per_cpu_ops_free(ops);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002767 return 0;
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002768 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002769
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002770 /*
2771 * If the ops uses a trampoline, then it needs to be
2772 * tested first on update.
2773 */
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002774 ops->flags |= FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002775 removed_ops = ops;
2776
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002777 /* The trampoline logic checks the old hashes */
2778 ops->old_hash.filter_hash = ops->func_hash->filter_hash;
2779 ops->old_hash.notrace_hash = ops->func_hash->notrace_hash;
2780
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002781 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002782
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002783 /*
2784 * If there's no more ops registered with ftrace, run a
2785 * sanity check to make sure all rec flags are cleared.
2786 */
2787 if (ftrace_ops_list == &ftrace_list_end) {
2788 struct ftrace_page *pg;
2789 struct dyn_ftrace *rec;
2790
2791 do_for_each_ftrace_rec(pg, rec) {
Alexei Starovoitov977c1f92016-11-07 15:14:20 -08002792 if (FTRACE_WARN_ON_ONCE(rec->flags & ~FTRACE_FL_DISABLED))
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002793 pr_warn(" %pS flags:%lx\n",
2794 (void *)rec->ip, rec->flags);
2795 } while_for_each_ftrace_rec();
2796 }
2797
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002798 ops->old_hash.filter_hash = NULL;
2799 ops->old_hash.notrace_hash = NULL;
2800
2801 removed_ops = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002802 ops->flags &= ~FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002803
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002804 /*
2805 * Dynamic ops may be freed, we must make sure that all
2806 * callers are done before leaving this function.
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002807 * The same goes for freeing the per_cpu data of the per_cpu
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002808 * ops.
2809 *
2810 * Again, normal synchronize_sched() is not good enough.
2811 * We need to do a hard force of sched synchronization.
2812 * This is because we use preempt_disable() to do RCU, but
2813 * the function tracers can be called where RCU is not watching
2814 * (like before user_exit()). We can not rely on the RCU
2815 * infrastructure to do the synchronization, thus we must do it
2816 * ourselves.
2817 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002818 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU)) {
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002819 schedule_on_each_cpu(ftrace_sync);
2820
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002821 arch_ftrace_trampoline_free(ops);
2822
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002823 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2824 per_cpu_ops_free(ops);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002825 }
2826
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002827 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002828}
2829
Ingo Molnare309b412008-05-12 21:20:51 +02002830static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002831{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302832 int command;
2833
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002834 if (unlikely(ftrace_disabled))
2835 return;
2836
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002837 /* Force update next time */
2838 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002839 /* ftrace_start_up is true if we want ftrace running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302840 if (ftrace_start_up) {
2841 command = FTRACE_UPDATE_CALLS;
2842 if (ftrace_graph_active)
2843 command |= FTRACE_START_FUNC_RET;
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05002844 ftrace_startup_enable(command);
Pratyush Anand1619dc32015-03-06 23:58:06 +05302845 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002846}
2847
Ingo Molnare309b412008-05-12 21:20:51 +02002848static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002849{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302850 int command;
2851
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002852 if (unlikely(ftrace_disabled))
2853 return;
2854
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002855 /* ftrace_start_up is true if ftrace is running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302856 if (ftrace_start_up) {
2857 command = FTRACE_DISABLE_CALLS;
2858 if (ftrace_graph_active)
2859 command |= FTRACE_STOP_FUNC_RET;
2860 ftrace_run_update_code(command);
2861 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002862}
2863
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002864static u64 ftrace_update_time;
Steven Rostedt3d083392008-05-12 21:20:42 +02002865unsigned long ftrace_update_tot_cnt;
2866
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002867static inline int ops_traces_mod(struct ftrace_ops *ops)
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002868{
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002869 /*
2870 * Filter_hash being empty will default to trace module.
2871 * But notrace hash requires a test of individual module functions.
2872 */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002873 return ftrace_hash_empty(ops->func_hash->filter_hash) &&
2874 ftrace_hash_empty(ops->func_hash->notrace_hash);
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002875}
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002876
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002877/*
2878 * Check if the current ops references the record.
2879 *
2880 * If the ops traces all functions, then it was already accounted for.
2881 * If the ops does not trace the current record function, skip it.
2882 * If the ops ignores the function via notrace filter, skip it.
2883 */
2884static inline bool
2885ops_references_rec(struct ftrace_ops *ops, struct dyn_ftrace *rec)
2886{
2887 /* If ops isn't enabled, ignore it */
2888 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
2889 return 0;
2890
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002891 /* If ops traces all then it includes this function */
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002892 if (ops_traces_mod(ops))
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002893 return 1;
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002894
2895 /* The function must be in the filter */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002896 if (!ftrace_hash_empty(ops->func_hash->filter_hash) &&
Steven Rostedt (VMware)2b2c2792017-02-01 15:37:07 -05002897 !__ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002898 return 0;
2899
2900 /* If in notrace hash, we ignore it too */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002901 if (ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002902 return 0;
2903
2904 return 1;
2905}
2906
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002907static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs)
Steven Rostedt3d083392008-05-12 21:20:42 +02002908{
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002909 struct ftrace_page *pg;
Lai Jiangshane94142a2009-03-13 17:51:27 +08002910 struct dyn_ftrace *p;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002911 u64 start, stop;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002912 unsigned long update_cnt = 0;
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002913 unsigned long rec_flags = 0;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002914 int i;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002915
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002916 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002917
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002918 /*
2919 * When a module is loaded, this function is called to convert
2920 * the calls to mcount in its text to nops, and also to create
2921 * an entry in the ftrace data. Now, if ftrace is activated
2922 * after this call, but before the module sets its text to
2923 * read-only, the modification of enabling ftrace can fail if
2924 * the read-only is done while ftrace is converting the calls.
2925 * To prevent this, the module's records are set as disabled
2926 * and will be enabled after the call to set the module's text
2927 * to read-only.
2928 */
2929 if (mod)
2930 rec_flags |= FTRACE_FL_DISABLED;
2931
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002932 for (pg = new_pgs; pg; pg = pg->next) {
Abhishek Sagarf22f9a892008-06-21 23:50:29 +05302933
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002934 for (i = 0; i < pg->index; i++) {
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002935
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002936 /* If something went wrong, bail without enabling anything */
2937 if (unlikely(ftrace_disabled))
2938 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02002939
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002940 p = &pg->records[i];
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002941 p->flags = rec_flags;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05302942
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002943 /*
2944 * Do the initial record conversion from mcount jump
2945 * to the NOP instructions.
2946 */
2947 if (!ftrace_code_disable(mod, p))
2948 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002949
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002950 update_cnt++;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002951 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002952 }
2953
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002954 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002955 ftrace_update_time = stop - start;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002956 ftrace_update_tot_cnt += update_cnt;
Steven Rostedt3d083392008-05-12 21:20:42 +02002957
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02002958 return 0;
2959}
2960
Steven Rostedta7900872011-12-16 16:23:44 -05002961static int ftrace_allocate_records(struct ftrace_page *pg, int count)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002962{
Steven Rostedta7900872011-12-16 16:23:44 -05002963 int order;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002964 int cnt;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002965
Steven Rostedta7900872011-12-16 16:23:44 -05002966 if (WARN_ON(!count))
2967 return -EINVAL;
2968
2969 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002970
2971 /*
Steven Rostedta7900872011-12-16 16:23:44 -05002972 * We want to fill as much as possible. No more than a page
2973 * may be empty.
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002974 */
Steven Rostedta7900872011-12-16 16:23:44 -05002975 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2976 order--;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002977
Steven Rostedta7900872011-12-16 16:23:44 -05002978 again:
2979 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
2980
2981 if (!pg->records) {
2982 /* if we can't allocate this size, try something smaller */
2983 if (!order)
2984 return -ENOMEM;
2985 order >>= 1;
2986 goto again;
2987 }
2988
2989 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
2990 pg->size = cnt;
2991
2992 if (cnt > count)
2993 cnt = count;
2994
2995 return cnt;
2996}
2997
2998static struct ftrace_page *
2999ftrace_allocate_pages(unsigned long num_to_init)
3000{
3001 struct ftrace_page *start_pg;
3002 struct ftrace_page *pg;
3003 int order;
3004 int cnt;
3005
3006 if (!num_to_init)
3007 return 0;
3008
3009 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
3010 if (!pg)
3011 return NULL;
3012
3013 /*
3014 * Try to allocate as much as possible in one continues
3015 * location that fills in all of the space. We want to
3016 * waste as little space as possible.
3017 */
3018 for (;;) {
3019 cnt = ftrace_allocate_records(pg, num_to_init);
3020 if (cnt < 0)
3021 goto free_pages;
3022
3023 num_to_init -= cnt;
3024 if (!num_to_init)
3025 break;
3026
3027 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
3028 if (!pg->next)
3029 goto free_pages;
3030
3031 pg = pg->next;
3032 }
3033
3034 return start_pg;
3035
3036 free_pages:
Namhyung Kim1f61be002014-06-11 17:06:53 +09003037 pg = start_pg;
3038 while (pg) {
Steven Rostedta7900872011-12-16 16:23:44 -05003039 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3040 free_pages((unsigned long)pg->records, order);
3041 start_pg = pg->next;
3042 kfree(pg);
3043 pg = start_pg;
3044 }
3045 pr_info("ftrace: FAILED to allocate memory for functions\n");
3046 return NULL;
3047}
3048
Steven Rostedt5072c592008-05-12 21:20:43 +02003049#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
3050
3051struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003052 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003053 loff_t func_pos;
3054 struct ftrace_page *pg;
3055 struct dyn_ftrace *func;
3056 struct ftrace_func_probe *probe;
3057 struct trace_parser parser;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003058 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003059 struct ftrace_ops *ops;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003060 int hidx;
3061 int idx;
3062 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02003063};
3064
Ingo Molnare309b412008-05-12 21:20:51 +02003065static void *
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003066t_hash_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003067{
3068 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003069 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003070 struct hlist_head *hhd;
3071
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003072 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003073 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003074
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003075 if (iter->probe)
3076 hnd = &iter->probe->node;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003077 retry:
3078 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
3079 return NULL;
3080
3081 hhd = &ftrace_func_hash[iter->hidx];
3082
3083 if (hlist_empty(hhd)) {
3084 iter->hidx++;
3085 hnd = NULL;
3086 goto retry;
3087 }
3088
3089 if (!hnd)
3090 hnd = hhd->first;
3091 else {
3092 hnd = hnd->next;
3093 if (!hnd) {
3094 iter->hidx++;
3095 goto retry;
3096 }
3097 }
3098
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003099 if (WARN_ON_ONCE(!hnd))
3100 return NULL;
3101
3102 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
3103
3104 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003105}
3106
3107static void *t_hash_start(struct seq_file *m, loff_t *pos)
3108{
3109 struct ftrace_iterator *iter = m->private;
3110 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08003111 loff_t l;
3112
Steven Rostedt69a30832011-12-19 15:21:16 -05003113 if (!(iter->flags & FTRACE_ITER_DO_HASH))
3114 return NULL;
3115
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003116 if (iter->func_pos > *pos)
3117 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003118
Li Zefand82d6242009-06-24 09:54:54 +08003119 iter->hidx = 0;
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003120 for (l = 0; l <= (*pos - iter->func_pos); ) {
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003121 p = t_hash_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08003122 if (!p)
3123 break;
3124 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003125 if (!p)
3126 return NULL;
3127
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003128 /* Only set this if we have an item */
3129 iter->flags |= FTRACE_ITER_HASH;
3130
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003131 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003132}
3133
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003134static int
3135t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003136{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003137 struct ftrace_func_probe *rec;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003138
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003139 rec = iter->probe;
3140 if (WARN_ON_ONCE(!rec))
3141 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003142
Steven Rostedt809dcf22009-02-16 23:06:01 -05003143 if (rec->ops->print)
3144 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
3145
Steven Rostedtb375a112009-09-17 00:05:58 -04003146 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003147
3148 if (rec->data)
3149 seq_printf(m, ":%p", rec->data);
3150 seq_putc(m, '\n');
3151
3152 return 0;
3153}
3154
3155static void *
Steven Rostedt5072c592008-05-12 21:20:43 +02003156t_next(struct seq_file *m, void *v, loff_t *pos)
3157{
3158 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003159 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02003160 struct dyn_ftrace *rec = NULL;
3161
Steven Rostedt45a4a232011-04-21 23:16:46 -04003162 if (unlikely(ftrace_disabled))
3163 return NULL;
3164
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003165 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003166 return t_hash_next(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003167
Steven Rostedt5072c592008-05-12 21:20:43 +02003168 (*pos)++;
Jiri Olsa1106b692011-02-16 17:35:34 +01003169 iter->pos = iter->func_pos = *pos;
Steven Rostedt5072c592008-05-12 21:20:43 +02003170
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003171 if (iter->flags & FTRACE_ITER_PRINTALL)
Steven Rostedt57c072c2010-09-14 11:21:11 -04003172 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003173
Steven Rostedt5072c592008-05-12 21:20:43 +02003174 retry:
3175 if (iter->idx >= iter->pg->index) {
3176 if (iter->pg->next) {
3177 iter->pg = iter->pg->next;
3178 iter->idx = 0;
3179 goto retry;
3180 }
3181 } else {
3182 rec = &iter->pg->records[iter->idx++];
Steven Rostedt320823092011-12-16 14:42:37 -05003183 if (((iter->flags & FTRACE_ITER_FILTER) &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003184 !(ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))) ||
Steven Rostedt0183fb1c2008-11-07 22:36:02 -05003185
Steven Rostedt41c52c02008-05-22 11:46:33 -04003186 ((iter->flags & FTRACE_ITER_NOTRACE) &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003187 !ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip)) ||
Steven Rostedt647bcd02011-05-03 14:39:21 -04003188
3189 ((iter->flags & FTRACE_ITER_ENABLED) &&
Steven Rostedt (Red Hat)23ea9c42013-05-09 19:31:48 -04003190 !(rec->flags & FTRACE_FL_ENABLED))) {
Steven Rostedt647bcd02011-05-03 14:39:21 -04003191
Steven Rostedt5072c592008-05-12 21:20:43 +02003192 rec = NULL;
3193 goto retry;
3194 }
3195 }
3196
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003197 if (!rec)
Steven Rostedt57c072c2010-09-14 11:21:11 -04003198 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003199
3200 iter->func = rec;
3201
3202 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003203}
3204
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003205static void reset_iter_read(struct ftrace_iterator *iter)
3206{
3207 iter->pos = 0;
3208 iter->func_pos = 0;
Dan Carpenter70f77b3f2012-06-09 19:10:27 +03003209 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_HASH);
Steven Rostedt5072c592008-05-12 21:20:43 +02003210}
3211
3212static void *t_start(struct seq_file *m, loff_t *pos)
3213{
3214 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003215 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02003216 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08003217 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02003218
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003219 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003220
3221 if (unlikely(ftrace_disabled))
3222 return NULL;
3223
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003224 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003225 * If an lseek was done, then reset and start from beginning.
3226 */
3227 if (*pos < iter->pos)
3228 reset_iter_read(iter);
3229
3230 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003231 * For set_ftrace_filter reading, if we have the filter
3232 * off, we can short cut and just print out that all
3233 * functions are enabled.
3234 */
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003235 if ((iter->flags & FTRACE_ITER_FILTER &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003236 ftrace_hash_empty(ops->func_hash->filter_hash)) ||
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003237 (iter->flags & FTRACE_ITER_NOTRACE &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003238 ftrace_hash_empty(ops->func_hash->notrace_hash))) {
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003239 if (*pos > 0)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003240 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003241 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07003242 /* reset in case of seek/pread */
3243 iter->flags &= ~FTRACE_ITER_HASH;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003244 return iter;
3245 }
3246
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003247 if (iter->flags & FTRACE_ITER_HASH)
3248 return t_hash_start(m, pos);
3249
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003250 /*
3251 * Unfortunately, we need to restart at ftrace_pages_start
3252 * every time we let go of the ftrace_mutex. This is because
3253 * those pointers can change without the lock.
3254 */
Li Zefan694ce0a2009-06-24 09:54:19 +08003255 iter->pg = ftrace_pages_start;
3256 iter->idx = 0;
3257 for (l = 0; l <= *pos; ) {
3258 p = t_next(m, p, &l);
3259 if (!p)
3260 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08003261 }
walimis5821e1b2008-11-15 15:19:06 +08003262
Steven Rostedt69a30832011-12-19 15:21:16 -05003263 if (!p)
3264 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003265
3266 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003267}
3268
3269static void t_stop(struct seq_file *m, void *p)
3270{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003271 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003272}
3273
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003274void * __weak
3275arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec)
3276{
3277 return NULL;
3278}
3279
3280static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops,
3281 struct dyn_ftrace *rec)
3282{
3283 void *ptr;
3284
3285 ptr = arch_ftrace_trampoline_func(ops, rec);
3286 if (ptr)
3287 seq_printf(m, " ->%pS", ptr);
3288}
3289
Steven Rostedt5072c592008-05-12 21:20:43 +02003290static int t_show(struct seq_file *m, void *v)
3291{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003292 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003293 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02003294
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003295 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003296 return t_hash_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003297
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003298 if (iter->flags & FTRACE_ITER_PRINTALL) {
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003299 if (iter->flags & FTRACE_ITER_NOTRACE)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003300 seq_puts(m, "#### no functions disabled ####\n");
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003301 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003302 seq_puts(m, "#### all functions enabled ####\n");
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003303 return 0;
3304 }
3305
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003306 rec = iter->func;
3307
Steven Rostedt5072c592008-05-12 21:20:43 +02003308 if (!rec)
3309 return 0;
3310
Steven Rostedt647bcd02011-05-03 14:39:21 -04003311 seq_printf(m, "%ps", (void *)rec->ip);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003312 if (iter->flags & FTRACE_ITER_ENABLED) {
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003313 struct ftrace_ops *ops;
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003314
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003315 seq_printf(m, " (%ld)%s%s",
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04003316 ftrace_rec_count(rec),
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003317 rec->flags & FTRACE_FL_REGS ? " R" : " ",
3318 rec->flags & FTRACE_FL_IPMODIFY ? " I" : " ");
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003319 if (rec->flags & FTRACE_FL_TRAMP_EN) {
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04003320 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003321 if (ops) {
3322 do {
3323 seq_printf(m, "\ttramp: %pS (%pS)",
3324 (void *)ops->trampoline,
3325 (void *)ops->func);
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003326 add_trampoline_func(m, ops, rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003327 ops = ftrace_find_tramp_ops_next(rec, ops);
3328 } while (ops);
3329 } else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003330 seq_puts(m, "\ttramp: ERROR!");
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003331 } else {
3332 add_trampoline_func(m, NULL, rec);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003333 }
3334 }
3335
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003336 seq_putc(m, '\n');
Steven Rostedt5072c592008-05-12 21:20:43 +02003337
3338 return 0;
3339}
3340
James Morris88e9d342009-09-22 16:43:43 -07003341static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003342 .start = t_start,
3343 .next = t_next,
3344 .stop = t_stop,
3345 .show = t_show,
3346};
3347
Ingo Molnare309b412008-05-12 21:20:51 +02003348static int
Steven Rostedt5072c592008-05-12 21:20:43 +02003349ftrace_avail_open(struct inode *inode, struct file *file)
3350{
3351 struct ftrace_iterator *iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003352
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003353 if (unlikely(ftrace_disabled))
3354 return -ENODEV;
3355
Jiri Olsa50e18b92012-04-25 10:23:39 +02003356 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3357 if (iter) {
3358 iter->pg = ftrace_pages_start;
3359 iter->ops = &global_ops;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003360 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003361
Jiri Olsa50e18b92012-04-25 10:23:39 +02003362 return iter ? 0 : -ENOMEM;
Steven Rostedt5072c592008-05-12 21:20:43 +02003363}
3364
Steven Rostedt647bcd02011-05-03 14:39:21 -04003365static int
3366ftrace_enabled_open(struct inode *inode, struct file *file)
3367{
3368 struct ftrace_iterator *iter;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003369
Jiri Olsa50e18b92012-04-25 10:23:39 +02003370 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3371 if (iter) {
3372 iter->pg = ftrace_pages_start;
3373 iter->flags = FTRACE_ITER_ENABLED;
3374 iter->ops = &global_ops;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003375 }
3376
Jiri Olsa50e18b92012-04-25 10:23:39 +02003377 return iter ? 0 : -ENOMEM;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003378}
3379
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003380/**
3381 * ftrace_regex_open - initialize function tracer filter files
3382 * @ops: The ftrace_ops that hold the hash filters
3383 * @flag: The type of filter to process
3384 * @inode: The inode, usually passed in to your open routine
3385 * @file: The file, usually passed in to your open routine
3386 *
3387 * ftrace_regex_open() initializes the filter files for the
3388 * @ops. Depending on @flag it may process the filter hash or
3389 * the notrace hash of @ops. With this called from the open
3390 * routine, you can use ftrace_filter_write() for the write
3391 * routine if @flag has FTRACE_ITER_FILTER set, or
3392 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05003393 * tracing_lseek() should be used as the lseek routine, and
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003394 * release must call ftrace_regex_release().
3395 */
3396int
Steven Rostedtf45948e2011-05-02 12:29:25 -04003397ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003398 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003399{
3400 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003401 struct ftrace_hash *hash;
Steven Rostedt5072c592008-05-12 21:20:43 +02003402 int ret = 0;
3403
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003404 ftrace_ops_init(ops);
3405
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003406 if (unlikely(ftrace_disabled))
3407 return -ENODEV;
3408
Steven Rostedt5072c592008-05-12 21:20:43 +02003409 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3410 if (!iter)
3411 return -ENOMEM;
3412
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003413 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
3414 kfree(iter);
3415 return -ENOMEM;
3416 }
3417
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003418 iter->ops = ops;
3419 iter->flags = flag;
3420
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003421 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003422
Steven Rostedtf45948e2011-05-02 12:29:25 -04003423 if (flag & FTRACE_ITER_NOTRACE)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003424 hash = ops->func_hash->notrace_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003425 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003426 hash = ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003427
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003428 if (file->f_mode & FMODE_WRITE) {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003429 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
3430
3431 if (file->f_flags & O_TRUNC)
3432 iter->hash = alloc_ftrace_hash(size_bits);
3433 else
3434 iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash);
3435
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003436 if (!iter->hash) {
3437 trace_parser_put(&iter->parser);
3438 kfree(iter);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003439 ret = -ENOMEM;
3440 goto out_unlock;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003441 }
3442 }
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003443
Steven Rostedt5072c592008-05-12 21:20:43 +02003444 if (file->f_mode & FMODE_READ) {
3445 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02003446
3447 ret = seq_open(file, &show_ftrace_seq_ops);
3448 if (!ret) {
3449 struct seq_file *m = file->private_data;
3450 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08003451 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003452 /* Failed */
3453 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08003454 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003455 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08003456 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003457 } else
3458 file->private_data = iter;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003459
3460 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003461 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003462
3463 return ret;
3464}
3465
Steven Rostedt41c52c02008-05-22 11:46:33 -04003466static int
3467ftrace_filter_open(struct inode *inode, struct file *file)
3468{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003469 struct ftrace_ops *ops = inode->i_private;
3470
3471 return ftrace_regex_open(ops,
Steven Rostedt69a30832011-12-19 15:21:16 -05003472 FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH,
3473 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003474}
3475
3476static int
3477ftrace_notrace_open(struct inode *inode, struct file *file)
3478{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003479 struct ftrace_ops *ops = inode->i_private;
3480
3481 return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003482 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003483}
3484
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003485/* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */
3486struct ftrace_glob {
3487 char *search;
3488 unsigned len;
3489 int type;
3490};
3491
Thiago Jung Bauermann7132e2d2016-04-25 18:56:14 -03003492/*
3493 * If symbols in an architecture don't correspond exactly to the user-visible
3494 * name of what they represent, it is possible to define this function to
3495 * perform the necessary adjustments.
3496*/
3497char * __weak arch_ftrace_match_adjust(char *str, const char *search)
3498{
3499 return str;
3500}
3501
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003502static int ftrace_match(char *str, struct ftrace_glob *g)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003503{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003504 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08003505 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003506
Thiago Jung Bauermann7132e2d2016-04-25 18:56:14 -03003507 str = arch_ftrace_match_adjust(str, g->search);
3508
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003509 switch (g->type) {
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003510 case MATCH_FULL:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003511 if (strcmp(str, g->search) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003512 matched = 1;
3513 break;
3514 case MATCH_FRONT_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003515 if (strncmp(str, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003516 matched = 1;
3517 break;
3518 case MATCH_MIDDLE_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003519 if (strstr(str, g->search))
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003520 matched = 1;
3521 break;
3522 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08003523 slen = strlen(str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003524 if (slen >= g->len &&
3525 memcmp(str + slen - g->len, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003526 matched = 1;
3527 break;
Masami Hiramatsu60f1d5e2016-10-05 20:58:15 +09003528 case MATCH_GLOB:
3529 if (glob_match(g->search, str))
3530 matched = 1;
3531 break;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003532 }
3533
3534 return matched;
3535}
3536
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003537static int
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003538enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int clear_filter)
Steven Rostedt996e87b2011-04-26 16:11:03 -04003539{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003540 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003541 int ret = 0;
3542
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003543 entry = ftrace_lookup_ip(hash, rec->ip);
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003544 if (clear_filter) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003545 /* Do nothing if it doesn't exist */
3546 if (!entry)
3547 return 0;
3548
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003549 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003550 } else {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003551 /* Do nothing if it exists */
3552 if (entry)
3553 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003554
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003555 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003556 }
3557 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04003558}
3559
Steven Rostedt64e7c442009-02-13 17:08:48 -05003560static int
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003561ftrace_match_record(struct dyn_ftrace *rec, struct ftrace_glob *func_g,
3562 struct ftrace_glob *mod_g, int exclude_mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003563{
3564 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003565 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003566
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003567 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
3568
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003569 if (mod_g) {
3570 int mod_matches = (modname) ? ftrace_match(modname, mod_g) : 0;
3571
3572 /* blank module name to match all modules */
3573 if (!mod_g->len) {
3574 /* blank module globbing: modname xor exclude_mod */
3575 if ((!exclude_mod) != (!modname))
3576 goto func_match;
3577 return 0;
3578 }
3579
3580 /* not matching the module */
3581 if (!modname || !mod_matches) {
3582 if (exclude_mod)
3583 goto func_match;
3584 else
3585 return 0;
3586 }
3587
3588 if (mod_matches && exclude_mod)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003589 return 0;
3590
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003591func_match:
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003592 /* blank search means to match all funcs in the mod */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003593 if (!func_g->len)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003594 return 1;
3595 }
3596
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003597 return ftrace_match(str, func_g);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003598}
3599
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003600static int
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003601match_records(struct ftrace_hash *hash, char *func, int len, char *mod)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003602{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003603 struct ftrace_page *pg;
3604 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003605 struct ftrace_glob func_g = { .type = MATCH_FULL };
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003606 struct ftrace_glob mod_g = { .type = MATCH_FULL };
3607 struct ftrace_glob *mod_match = (mod) ? &mod_g : NULL;
3608 int exclude_mod = 0;
Li Zefan311d16d2009-12-08 11:15:11 +08003609 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003610 int ret;
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003611 int clear_filter;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003612
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003613 if (func) {
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003614 func_g.type = filter_parse_regex(func, len, &func_g.search,
3615 &clear_filter);
3616 func_g.len = strlen(func_g.search);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003617 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003618
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003619 if (mod) {
3620 mod_g.type = filter_parse_regex(mod, strlen(mod),
3621 &mod_g.search, &exclude_mod);
3622 mod_g.len = strlen(mod_g.search);
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003623 }
3624
Steven Rostedt52baf112009-02-14 01:15:39 -05003625 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003626
3627 if (unlikely(ftrace_disabled))
3628 goto out_unlock;
3629
Steven Rostedt265c8312009-02-13 12:43:56 -05003630 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05003631
3632 if (rec->flags & FTRACE_FL_DISABLED)
3633 continue;
3634
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003635 if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) {
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003636 ret = enter_record(hash, rec, clear_filter);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003637 if (ret < 0) {
3638 found = ret;
3639 goto out_unlock;
3640 }
Li Zefan311d16d2009-12-08 11:15:11 +08003641 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05003642 }
3643 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003644 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05003645 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08003646
3647 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02003648}
3649
Steven Rostedt64e7c442009-02-13 17:08:48 -05003650static int
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003651ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003652{
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003653 return match_records(hash, buff, len, NULL);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003654}
3655
Steven Rostedt64e7c442009-02-13 17:08:48 -05003656
Steven Rostedtf6180772009-02-14 00:40:25 -05003657/*
3658 * We register the module command as a template to show others how
3659 * to register the a command as well.
3660 */
3661
3662static int
Steven Rostedt43dd61c2011-07-07 11:09:22 -04003663ftrace_mod_callback(struct ftrace_hash *hash,
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003664 char *func, char *cmd, char *module, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05003665{
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03003666 int ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05003667
3668 /*
3669 * cmd == 'mod' because we only registered this func
3670 * for the 'mod' ftrace_func_command.
3671 * But if you register one func with multiple commands,
3672 * you can tell which command was used by the cmd
3673 * parameter.
3674 */
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003675 ret = match_records(hash, func, strlen(func), module);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003676 if (!ret)
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03003677 return -EINVAL;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003678 if (ret < 0)
3679 return ret;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003680 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05003681}
3682
3683static struct ftrace_func_command ftrace_mod_cmd = {
3684 .name = "mod",
3685 .func = ftrace_mod_callback,
3686};
3687
3688static int __init ftrace_mod_cmd_init(void)
3689{
3690 return register_ftrace_command(&ftrace_mod_cmd);
3691}
Steven Rostedt6f415672012-10-05 12:13:07 -04003692core_initcall(ftrace_mod_cmd_init);
Steven Rostedtf6180772009-02-14 00:40:25 -05003693
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04003694static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04003695 struct ftrace_ops *op, struct pt_regs *pt_regs)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003696{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003697 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003698 struct hlist_head *hhd;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003699 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003700
3701 key = hash_long(ip, FTRACE_HASH_BITS);
3702
3703 hhd = &ftrace_func_hash[key];
3704
3705 if (hlist_empty(hhd))
3706 return;
3707
3708 /*
3709 * Disable preemption for these calls to prevent a RCU grace
3710 * period. This syncs the hash iteration and freeing of items
3711 * on the hash. rcu_read_lock is too dangerous here.
3712 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04003713 preempt_disable_notrace();
Steven Rostedt1bb539c2013-05-28 14:38:43 -04003714 hlist_for_each_entry_rcu_notrace(entry, hhd, node) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003715 if (entry->ip == ip)
3716 entry->ops->func(ip, parent_ip, &entry->data);
3717 }
Steven Rostedt5168ae52010-06-03 09:36:50 -04003718 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05003719}
3720
Steven Rostedtb6887d72009-02-17 12:32:04 -05003721static struct ftrace_ops trace_probe_ops __read_mostly =
Steven Rostedt59df055f2009-02-14 15:29:06 -05003722{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04003723 .func = function_trace_probe_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003724 .flags = FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003725 INIT_OPS_HASH(trace_probe_ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003726};
3727
Steven Rostedtb6887d72009-02-17 12:32:04 -05003728static int ftrace_probe_registered;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003729
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003730static void __enable_ftrace_function_probe(struct ftrace_ops_hash *old_hash)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003731{
Steven Rostedtb8489142011-05-04 09:27:52 -04003732 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003733 int i;
3734
Steven Rostedt (Red Hat)19dd6032013-05-09 19:37:36 -04003735 if (ftrace_probe_registered) {
3736 /* still need to update the function call sites */
3737 if (ftrace_enabled)
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003738 ftrace_run_modify_code(&trace_probe_ops, FTRACE_UPDATE_CALLS,
3739 old_hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003740 return;
Steven Rostedt (Red Hat)19dd6032013-05-09 19:37:36 -04003741 }
Steven Rostedt59df055f2009-02-14 15:29:06 -05003742
3743 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3744 struct hlist_head *hhd = &ftrace_func_hash[i];
3745 if (hhd->first)
3746 break;
3747 }
3748 /* Nothing registered? */
3749 if (i == FTRACE_FUNC_HASHSIZE)
3750 return;
3751
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05003752 ret = ftrace_startup(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04003753
Steven Rostedtb6887d72009-02-17 12:32:04 -05003754 ftrace_probe_registered = 1;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003755}
3756
Steven Rostedtb6887d72009-02-17 12:32:04 -05003757static void __disable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003758{
3759 int i;
3760
Steven Rostedtb6887d72009-02-17 12:32:04 -05003761 if (!ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003762 return;
3763
3764 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3765 struct hlist_head *hhd = &ftrace_func_hash[i];
3766 if (hhd->first)
3767 return;
3768 }
3769
3770 /* no more funcs left */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05003771 ftrace_shutdown(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04003772
Steven Rostedtb6887d72009-02-17 12:32:04 -05003773 ftrace_probe_registered = 0;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003774}
3775
3776
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003777static void ftrace_free_entry(struct ftrace_func_probe *entry)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003778{
Steven Rostedt59df055f2009-02-14 15:29:06 -05003779 if (entry->ops->free)
Steven Rostedt (Red Hat)e67efb92013-03-12 15:07:59 -04003780 entry->ops->free(entry->ops, entry->ip, &entry->data);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003781 kfree(entry);
3782}
3783
Steven Rostedt59df055f2009-02-14 15:29:06 -05003784int
Steven Rostedtb6887d72009-02-17 12:32:04 -05003785register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003786 void *data)
3787{
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003788 struct ftrace_ops_hash old_hash_ops;
Steven Rostedtb6887d72009-02-17 12:32:04 -05003789 struct ftrace_func_probe *entry;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003790 struct ftrace_glob func_g;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003791 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003792 struct ftrace_hash *old_hash = *orig_hash;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003793 struct ftrace_hash *hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003794 struct ftrace_page *pg;
3795 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003796 int not;
Steven Rostedt6a24a242009-02-17 11:20:26 -05003797 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003798 int count = 0;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003799 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003800
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003801 func_g.type = filter_parse_regex(glob, strlen(glob),
3802 &func_g.search, &not);
3803 func_g.len = strlen(func_g.search);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003804
Steven Rostedtb6887d72009-02-17 12:32:04 -05003805 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003806 if (WARN_ON(not))
3807 return -EINVAL;
3808
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003809 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003810
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003811 old_hash_ops.filter_hash = old_hash;
3812 /* Probes only have filters */
3813 old_hash_ops.notrace_hash = NULL;
3814
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003815 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003816 if (!hash) {
3817 count = -ENOMEM;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003818 goto out;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003819 }
3820
3821 if (unlikely(ftrace_disabled)) {
3822 count = -ENODEV;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003823 goto out;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003824 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04003825
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003826 mutex_lock(&ftrace_lock);
3827
Steven Rostedt59df055f2009-02-14 15:29:06 -05003828 do_for_each_ftrace_rec(pg, rec) {
3829
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05003830 if (rec->flags & FTRACE_FL_DISABLED)
3831 continue;
3832
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003833 if (!ftrace_match_record(rec, &func_g, NULL, 0))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003834 continue;
3835
3836 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
3837 if (!entry) {
Steven Rostedtb6887d72009-02-17 12:32:04 -05003838 /* If we did not process any, then return error */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003839 if (!count)
3840 count = -ENOMEM;
3841 goto out_unlock;
3842 }
3843
3844 count++;
3845
3846 entry->data = data;
3847
3848 /*
3849 * The caller might want to do something special
3850 * for each function we find. We call the callback
3851 * to give the caller an opportunity to do so.
3852 */
Steven Rostedt (Red Hat)e67efb92013-03-12 15:07:59 -04003853 if (ops->init) {
3854 if (ops->init(ops, rec->ip, &entry->data) < 0) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003855 /* caller does not like this func */
3856 kfree(entry);
3857 continue;
3858 }
3859 }
3860
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003861 ret = enter_record(hash, rec, 0);
3862 if (ret < 0) {
3863 kfree(entry);
3864 count = ret;
3865 goto out_unlock;
3866 }
3867
Steven Rostedt59df055f2009-02-14 15:29:06 -05003868 entry->ops = ops;
3869 entry->ip = rec->ip;
3870
3871 key = hash_long(entry->ip, FTRACE_HASH_BITS);
3872 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
3873
3874 } while_for_each_ftrace_rec();
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003875
3876 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003877
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003878 __enable_ftrace_function_probe(&old_hash_ops);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003879
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003880 if (!ret)
3881 free_ftrace_hash_rcu(old_hash);
3882 else
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003883 count = ret;
3884
Steven Rostedt59df055f2009-02-14 15:29:06 -05003885 out_unlock:
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003886 mutex_unlock(&ftrace_lock);
3887 out:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003888 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003889 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003890
3891 return count;
3892}
3893
3894enum {
Steven Rostedtb6887d72009-02-17 12:32:04 -05003895 PROBE_TEST_FUNC = 1,
3896 PROBE_TEST_DATA = 2
Steven Rostedt59df055f2009-02-14 15:29:06 -05003897};
3898
3899static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003900__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003901 void *data, int flags)
3902{
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003903 struct ftrace_func_entry *rec_entry;
Steven Rostedtb6887d72009-02-17 12:32:04 -05003904 struct ftrace_func_probe *entry;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003905 struct ftrace_func_probe *p;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003906 struct ftrace_glob func_g;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003907 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003908 struct ftrace_hash *old_hash = *orig_hash;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003909 struct list_head free_list;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003910 struct ftrace_hash *hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003911 struct hlist_node *tmp;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003912 char str[KSYM_SYMBOL_LEN];
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003913 int i, ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003914
Atsushi Tsujib36461d2009-09-15 19:06:30 +09003915 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003916 func_g.search = NULL;
Atsushi Tsujib36461d2009-09-15 19:06:30 +09003917 else if (glob) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003918 int not;
3919
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003920 func_g.type = filter_parse_regex(glob, strlen(glob),
3921 &func_g.search, &not);
3922 func_g.len = strlen(func_g.search);
3923 func_g.search = glob;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003924
Steven Rostedtb6887d72009-02-17 12:32:04 -05003925 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003926 if (WARN_ON(not))
3927 return;
3928 }
3929
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003930 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003931
3932 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3933 if (!hash)
3934 /* Hmm, should report this somehow */
3935 goto out_unlock;
3936
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003937 INIT_LIST_HEAD(&free_list);
3938
Steven Rostedt59df055f2009-02-14 15:29:06 -05003939 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3940 struct hlist_head *hhd = &ftrace_func_hash[i];
3941
Sasha Levinb67bfe02013-02-27 17:06:00 -08003942 hlist_for_each_entry_safe(entry, tmp, hhd, node) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003943
3944 /* break up if statements for readability */
Steven Rostedtb6887d72009-02-17 12:32:04 -05003945 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003946 continue;
3947
Steven Rostedtb6887d72009-02-17 12:32:04 -05003948 if ((flags & PROBE_TEST_DATA) && entry->data != data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003949 continue;
3950
3951 /* do this last, since it is the most expensive */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003952 if (func_g.search) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003953 kallsyms_lookup(entry->ip, NULL, NULL,
3954 NULL, str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003955 if (!ftrace_match(str, &func_g))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003956 continue;
3957 }
3958
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003959 rec_entry = ftrace_lookup_ip(hash, entry->ip);
3960 /* It is possible more than one entry had this ip */
3961 if (rec_entry)
3962 free_hash_entry(hash, rec_entry);
3963
Steven Rostedt (Red Hat)740466b2013-03-13 11:15:19 -04003964 hlist_del_rcu(&entry->node);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003965 list_add(&entry->free_list, &free_list);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003966 }
3967 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003968 mutex_lock(&ftrace_lock);
Steven Rostedtb6887d72009-02-17 12:32:04 -05003969 __disable_ftrace_function_probe();
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003970 /*
3971 * Remove after the disable is called. Otherwise, if the last
3972 * probe is removed, a null hash means *all enabled*.
3973 */
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003974 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
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
Joel Fernandesd032ae82016-11-15 12:31:20 -08004279/**
4280 * ftrace_ops_set_global_filter - setup ops to use global filters
4281 * @ops - the ops which will use the global filters
4282 *
4283 * ftrace users who need global function trace filtering should call this.
4284 * It can set the global filter only if ops were not initialized before.
4285 */
4286void ftrace_ops_set_global_filter(struct ftrace_ops *ops)
4287{
4288 if (ops->flags & FTRACE_OPS_FL_INITIALIZED)
4289 return;
4290
4291 ftrace_ops_init(ops);
4292 ops->func_hash = &global_ops.local_hash;
4293}
4294EXPORT_SYMBOL_GPL(ftrace_ops_set_global_filter);
4295
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004296static int
4297ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
4298 int reset, int enable)
4299{
4300 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
4301}
4302
Steven Rostedt77a2b372008-05-12 21:20:45 +02004303/**
4304 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004305 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02004306 * @buf - the string that holds the function filter text.
4307 * @len - the length of the string.
4308 * @reset - non zero to reset all filters before applying this filter.
4309 *
4310 * Filters denote which functions should be enabled when tracing is enabled.
4311 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4312 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004313int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004314 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02004315{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004316 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004317 return ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04004318}
Steven Rostedt936e0742011-05-05 22:54:01 -04004319EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004320
Steven Rostedt41c52c02008-05-22 11:46:33 -04004321/**
4322 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004323 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04004324 * @buf - the string that holds the function notrace text.
4325 * @len - the length of the string.
4326 * @reset - non zero to reset all filters before applying this filter.
4327 *
4328 * Notrace Filters denote which functions should not be enabled when tracing
4329 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4330 * for tracing.
4331 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004332int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004333 int len, int reset)
4334{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004335 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004336 return ftrace_set_regex(ops, buf, len, reset, 0);
Steven Rostedt936e0742011-05-05 22:54:01 -04004337}
4338EXPORT_SYMBOL_GPL(ftrace_set_notrace);
4339/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004340 * ftrace_set_global_filter - set a function to filter on with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004341 * @buf - the string that holds the function filter text.
4342 * @len - the length of the string.
4343 * @reset - non zero to reset all filters before applying this filter.
4344 *
4345 * Filters denote which functions should be enabled when tracing is enabled.
4346 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4347 */
4348void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
4349{
4350 ftrace_set_regex(&global_ops, buf, len, reset, 1);
4351}
4352EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
4353
4354/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004355 * ftrace_set_global_notrace - set a function to not trace with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004356 * @buf - the string that holds the function notrace text.
4357 * @len - the length of the string.
4358 * @reset - non zero to reset all filters before applying this filter.
4359 *
4360 * Notrace Filters denote which functions should not be enabled when tracing
4361 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4362 * for tracing.
4363 */
4364void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004365{
Steven Rostedtf45948e2011-05-02 12:29:25 -04004366 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004367}
Steven Rostedt936e0742011-05-05 22:54:01 -04004368EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004369
Steven Rostedt2af15d62009-05-28 13:37:24 -04004370/*
4371 * command line interface to allow users to set filters on boot up.
4372 */
4373#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
4374static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4375static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
4376
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004377/* Used by function selftest to not test if filter is set */
4378bool ftrace_filter_param __initdata;
4379
Steven Rostedt2af15d62009-05-28 13:37:24 -04004380static int __init set_ftrace_notrace(char *str)
4381{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004382 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004383 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004384 return 1;
4385}
4386__setup("ftrace_notrace=", set_ftrace_notrace);
4387
4388static int __init set_ftrace_filter(char *str)
4389{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004390 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004391 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004392 return 1;
4393}
4394__setup("ftrace_filter=", set_ftrace_filter);
4395
Stefan Assmann369bc182009-10-12 22:17:21 +02004396#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08004397static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004398static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004399static int ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer);
Steven Rostedt801c29f2010-03-05 20:02:19 -05004400
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04004401static unsigned long save_global_trampoline;
4402static unsigned long save_global_flags;
4403
Stefan Assmann369bc182009-10-12 22:17:21 +02004404static int __init set_graph_function(char *str)
4405{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02004406 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02004407 return 1;
4408}
4409__setup("ftrace_graph_filter=", set_graph_function);
4410
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004411static int __init set_graph_notrace_function(char *str)
4412{
4413 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
4414 return 1;
4415}
4416__setup("ftrace_graph_notrace=", set_graph_notrace_function);
4417
4418static void __init set_ftrace_early_graph(char *buf, int enable)
Stefan Assmann369bc182009-10-12 22:17:21 +02004419{
4420 int ret;
4421 char *func;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004422 struct ftrace_hash *hash;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004423
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004424 if (enable)
4425 hash = ftrace_graph_hash;
4426 else
4427 hash = ftrace_graph_notrace_hash;
Stefan Assmann369bc182009-10-12 22:17:21 +02004428
4429 while (buf) {
4430 func = strsep(&buf, ",");
4431 /* we allow only one expression at a time */
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004432 ret = ftrace_graph_set_hash(hash, func);
Stefan Assmann369bc182009-10-12 22:17:21 +02004433 if (ret)
4434 printk(KERN_DEBUG "ftrace: function %s not "
4435 "traceable\n", func);
4436 }
4437}
4438#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4439
Steven Rostedt2a85a372011-12-19 21:57:44 -05004440void __init
4441ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04004442{
4443 char *func;
4444
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004445 ftrace_ops_init(ops);
4446
Steven Rostedt2af15d62009-05-28 13:37:24 -04004447 while (buf) {
4448 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04004449 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004450 }
4451}
4452
4453static void __init set_ftrace_early_filters(void)
4454{
4455 if (ftrace_filter_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004456 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004457 if (ftrace_notrace_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004458 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02004459#ifdef CONFIG_FUNCTION_GRAPH_TRACER
4460 if (ftrace_graph_buf[0])
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004461 set_ftrace_early_graph(ftrace_graph_buf, 1);
4462 if (ftrace_graph_notrace_buf[0])
4463 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02004464#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04004465}
4466
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004467int ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02004468{
4469 struct seq_file *m = (struct seq_file *)file->private_data;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004470 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02004471 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004472 struct ftrace_hash **orig_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004473 struct ftrace_hash *old_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004474 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04004475 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004476 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02004477
Steven Rostedt5072c592008-05-12 21:20:43 +02004478 if (file->f_mode & FMODE_READ) {
4479 iter = m->private;
Steven Rostedt5072c592008-05-12 21:20:43 +02004480 seq_release(inode, file);
4481 } else
4482 iter = file->private_data;
4483
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004484 parser = &iter->parser;
4485 if (trace_parser_loaded(parser)) {
4486 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004487 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02004488 }
4489
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004490 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004491
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004492 mutex_lock(&iter->ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004493
Steven Rostedt058e2972011-04-29 22:35:33 -04004494 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04004495 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
4496
4497 if (filter_hash)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004498 orig_hash = &iter->ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04004499 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004500 orig_hash = &iter->ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004501
Steven Rostedt058e2972011-04-29 22:35:33 -04004502 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004503 old_hash = *orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004504 old_hash_ops.filter_hash = iter->ops->func_hash->filter_hash;
4505 old_hash_ops.notrace_hash = iter->ops->func_hash->notrace_hash;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04004506 ret = ftrace_hash_move(iter->ops, filter_hash,
4507 orig_hash, iter->hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004508 if (!ret) {
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004509 ftrace_ops_update_code(iter->ops, &old_hash_ops);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004510 free_ftrace_hash_rcu(old_hash);
4511 }
Steven Rostedt058e2972011-04-29 22:35:33 -04004512 mutex_unlock(&ftrace_lock);
4513 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004514
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004515 mutex_unlock(&iter->ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004516 free_ftrace_hash(iter->hash);
4517 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04004518
Steven Rostedt5072c592008-05-12 21:20:43 +02004519 return 0;
4520}
4521
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004522static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02004523 .open = ftrace_avail_open,
4524 .read = seq_read,
4525 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08004526 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02004527};
4528
Steven Rostedt647bcd02011-05-03 14:39:21 -04004529static const struct file_operations ftrace_enabled_fops = {
4530 .open = ftrace_enabled_open,
4531 .read = seq_read,
4532 .llseek = seq_lseek,
4533 .release = seq_release_private,
4534};
4535
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004536static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02004537 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08004538 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02004539 .write = ftrace_filter_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004540 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004541 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02004542};
4543
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004544static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04004545 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08004546 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04004547 .write = ftrace_notrace_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004548 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004549 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04004550};
4551
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004552#ifdef CONFIG_FUNCTION_GRAPH_TRACER
4553
4554static DEFINE_MUTEX(graph_lock);
4555
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004556struct ftrace_hash *ftrace_graph_hash = EMPTY_HASH;
4557struct ftrace_hash *ftrace_graph_notrace_hash = EMPTY_HASH;
4558
4559enum graph_filter_type {
4560 GRAPH_FILTER_NOTRACE = 0,
4561 GRAPH_FILTER_FUNCTION,
4562};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004563
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05004564#define FTRACE_GRAPH_EMPTY ((void *)1)
4565
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004566struct ftrace_graph_data {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004567 struct ftrace_hash *hash;
4568 struct ftrace_func_entry *entry;
4569 int idx; /* for hash table iteration */
4570 enum graph_filter_type type;
4571 struct ftrace_hash *new_hash;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004572 const struct seq_operations *seq_ops;
4573};
4574
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004575static void *
Li Zefan85951842009-06-24 09:54:00 +08004576__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004577{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004578 struct ftrace_graph_data *fgd = m->private;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004579 struct ftrace_func_entry *entry = fgd->entry;
4580 struct hlist_head *head;
4581 int i, idx = fgd->idx;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004582
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004583 if (*pos >= fgd->hash->count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004584 return NULL;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004585
4586 if (entry) {
4587 hlist_for_each_entry_continue(entry, hlist) {
4588 fgd->entry = entry;
4589 return entry;
4590 }
4591
4592 idx++;
4593 }
4594
4595 for (i = idx; i < 1 << fgd->hash->size_bits; i++) {
4596 head = &fgd->hash->buckets[i];
4597 hlist_for_each_entry(entry, head, hlist) {
4598 fgd->entry = entry;
4599 fgd->idx = i;
4600 return entry;
4601 }
4602 }
4603 return NULL;
Li Zefan85951842009-06-24 09:54:00 +08004604}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004605
Li Zefan85951842009-06-24 09:54:00 +08004606static void *
4607g_next(struct seq_file *m, void *v, loff_t *pos)
4608{
4609 (*pos)++;
4610 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004611}
4612
4613static void *g_start(struct seq_file *m, loff_t *pos)
4614{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004615 struct ftrace_graph_data *fgd = m->private;
4616
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004617 mutex_lock(&graph_lock);
4618
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05004619 if (fgd->type == GRAPH_FILTER_FUNCTION)
4620 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
4621 lockdep_is_held(&graph_lock));
4622 else
4623 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
4624 lockdep_is_held(&graph_lock));
4625
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004626 /* Nothing, tell g_show to print all functions are enabled */
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004627 if (ftrace_hash_empty(fgd->hash) && !*pos)
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05004628 return FTRACE_GRAPH_EMPTY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004629
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004630 fgd->idx = 0;
4631 fgd->entry = NULL;
Li Zefan85951842009-06-24 09:54:00 +08004632 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004633}
4634
4635static void g_stop(struct seq_file *m, void *p)
4636{
4637 mutex_unlock(&graph_lock);
4638}
4639
4640static int g_show(struct seq_file *m, void *v)
4641{
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004642 struct ftrace_func_entry *entry = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004643
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004644 if (!entry)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004645 return 0;
4646
Steven Rostedt (VMware)555fc782017-02-02 10:15:22 -05004647 if (entry == FTRACE_GRAPH_EMPTY) {
Namhyung Kim280d1422014-06-13 01:23:51 +09004648 struct ftrace_graph_data *fgd = m->private;
4649
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004650 if (fgd->type == GRAPH_FILTER_FUNCTION)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01004651 seq_puts(m, "#### all functions enabled ####\n");
Namhyung Kim280d1422014-06-13 01:23:51 +09004652 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01004653 seq_puts(m, "#### no functions disabled ####\n");
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004654 return 0;
4655 }
4656
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004657 seq_printf(m, "%ps\n", (void *)entry->ip);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004658
4659 return 0;
4660}
4661
James Morris88e9d342009-09-22 16:43:43 -07004662static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004663 .start = g_start,
4664 .next = g_next,
4665 .stop = g_stop,
4666 .show = g_show,
4667};
4668
4669static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004670__ftrace_graph_open(struct inode *inode, struct file *file,
4671 struct ftrace_graph_data *fgd)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004672{
4673 int ret = 0;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004674 struct ftrace_hash *new_hash = NULL;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004675
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004676 if (file->f_mode & FMODE_WRITE) {
4677 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
4678
4679 if (file->f_flags & O_TRUNC)
4680 new_hash = alloc_ftrace_hash(size_bits);
4681 else
4682 new_hash = alloc_and_copy_ftrace_hash(size_bits,
4683 fgd->hash);
4684 if (!new_hash) {
4685 ret = -ENOMEM;
4686 goto out;
4687 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004688 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004689
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004690 if (file->f_mode & FMODE_READ) {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004691 ret = seq_open(file, &ftrace_graph_seq_ops);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004692 if (!ret) {
4693 struct seq_file *m = file->private_data;
4694 m->private = fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004695 } else {
4696 /* Failed */
4697 free_ftrace_hash(new_hash);
4698 new_hash = NULL;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004699 }
4700 } else
4701 file->private_data = fgd;
Li Zefana4ec5e02009-09-18 14:06:28 +08004702
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004703out:
4704 fgd->new_hash = new_hash;
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05004705
4706 /*
4707 * All uses of fgd->hash must be taken with the graph_lock
4708 * held. The graph_lock is going to be released, so force
4709 * fgd->hash to be reinitialized when it is taken again.
4710 */
4711 fgd->hash = NULL;
4712
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004713 return ret;
4714}
4715
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004716static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004717ftrace_graph_open(struct inode *inode, struct file *file)
4718{
4719 struct ftrace_graph_data *fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004720 int ret;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004721
4722 if (unlikely(ftrace_disabled))
4723 return -ENODEV;
4724
4725 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4726 if (fgd == NULL)
4727 return -ENOMEM;
4728
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004729 mutex_lock(&graph_lock);
4730
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05004731 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
4732 lockdep_is_held(&graph_lock));
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004733 fgd->type = GRAPH_FILTER_FUNCTION;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004734 fgd->seq_ops = &ftrace_graph_seq_ops;
4735
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004736 ret = __ftrace_graph_open(inode, file, fgd);
4737 if (ret < 0)
4738 kfree(fgd);
4739
4740 mutex_unlock(&graph_lock);
4741 return ret;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004742}
4743
4744static int
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004745ftrace_graph_notrace_open(struct inode *inode, struct file *file)
4746{
4747 struct ftrace_graph_data *fgd;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004748 int ret;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004749
4750 if (unlikely(ftrace_disabled))
4751 return -ENODEV;
4752
4753 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4754 if (fgd == NULL)
4755 return -ENOMEM;
4756
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004757 mutex_lock(&graph_lock);
4758
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05004759 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
4760 lockdep_is_held(&graph_lock));
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004761 fgd->type = GRAPH_FILTER_NOTRACE;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004762 fgd->seq_ops = &ftrace_graph_seq_ops;
4763
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004764 ret = __ftrace_graph_open(inode, file, fgd);
4765 if (ret < 0)
4766 kfree(fgd);
4767
4768 mutex_unlock(&graph_lock);
4769 return ret;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004770}
4771
4772static int
Li Zefan87827112009-07-23 11:29:11 +08004773ftrace_graph_release(struct inode *inode, struct file *file)
4774{
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004775 struct ftrace_graph_data *fgd;
4776
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004777 if (file->f_mode & FMODE_READ) {
4778 struct seq_file *m = file->private_data;
4779
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004780 fgd = m->private;
Li Zefan87827112009-07-23 11:29:11 +08004781 seq_release(inode, file);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004782 } else {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004783 fgd = file->private_data;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004784 }
4785
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004786 kfree(fgd->new_hash);
4787 kfree(fgd);
4788
Li Zefan87827112009-07-23 11:29:11 +08004789 return 0;
4790}
4791
4792static int
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004793ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004794{
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004795 struct ftrace_glob func_g;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004796 struct dyn_ftrace *rec;
4797 struct ftrace_page *pg;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004798 struct ftrace_func_entry *entry;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004799 int fail = 1;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004800 int not;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004801
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004802 /* decode regex */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004803 func_g.type = filter_parse_regex(buffer, strlen(buffer),
4804 &func_g.search, &not);
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004805
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004806 func_g.len = strlen(func_g.search);
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004807
Steven Rostedt52baf112009-02-14 01:15:39 -05004808 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04004809
4810 if (unlikely(ftrace_disabled)) {
4811 mutex_unlock(&ftrace_lock);
4812 return -ENODEV;
4813 }
4814
Steven Rostedt265c8312009-02-13 12:43:56 -05004815 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004816
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05004817 if (rec->flags & FTRACE_FL_DISABLED)
4818 continue;
4819
Dmitry Safonov0b507e12015-09-29 19:46:15 +03004820 if (ftrace_match_record(rec, &func_g, NULL, 0)) {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004821 entry = ftrace_lookup_ip(hash, rec->ip);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004822
4823 if (!not) {
4824 fail = 0;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004825
4826 if (entry)
4827 continue;
4828 if (add_hash_entry(hash, rec->ip) < 0)
4829 goto out;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004830 } else {
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004831 if (entry) {
4832 free_hash_entry(hash, entry);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004833 fail = 0;
4834 }
4835 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004836 }
Steven Rostedt265c8312009-02-13 12:43:56 -05004837 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004838out:
Steven Rostedt52baf112009-02-14 01:15:39 -05004839 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004840
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004841 if (fail)
4842 return -EINVAL;
4843
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004844 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004845}
4846
4847static ssize_t
4848ftrace_graph_write(struct file *file, const char __user *ubuf,
4849 size_t cnt, loff_t *ppos)
4850{
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004851 struct trace_parser parser;
Namhyung Kim6a101082013-10-14 17:24:25 +09004852 ssize_t read, ret = 0;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004853 struct ftrace_graph_data *fgd = file->private_data;
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004854 struct ftrace_hash *old_hash, *new_hash;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004855
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004856 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004857 return 0;
4858
Namhyung Kim6a101082013-10-14 17:24:25 +09004859 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX))
4860 return -ENOMEM;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004861
Steven Rostedt (VMware)ae98d272017-02-02 16:59:06 -05004862 /* Read mode uses seq functions */
4863 if (file->f_mode & FMODE_READ) {
4864 struct seq_file *m = file->private_data;
4865 fgd = m->private;
4866 }
4867
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004868 read = trace_get_user(&parser, ubuf, cnt, ppos);
4869
Li Zefan4ba79782009-09-22 13:52:20 +08004870 if (read >= 0 && trace_parser_loaded((&parser))) {
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004871 parser.buffer[parser.idx] = 0;
4872
Namhyung Kim6a101082013-10-14 17:24:25 +09004873 mutex_lock(&graph_lock);
4874
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004875 /* we allow only one expression at a time */
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004876 ret = ftrace_graph_set_hash(fgd->new_hash,
4877 parser.buffer);
4878
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004879 new_hash = __ftrace_hash_move(fgd->new_hash);
4880 if (!new_hash)
4881 ret = -ENOMEM;
4882
Steven Rostedt (VMware)d4ad9a12017-02-02 14:03:39 -05004883 if (fgd->type == GRAPH_FILTER_FUNCTION) {
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05004884 old_hash = rcu_dereference_protected(ftrace_graph_hash,
4885 lockdep_is_held(&graph_lock));
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004886 rcu_assign_pointer(ftrace_graph_hash, new_hash);
Steven Rostedt (VMware)d4ad9a12017-02-02 14:03:39 -05004887 } else {
Steven Rostedt (VMware)649b9882017-02-02 20:16:29 -05004888 old_hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
4889 lockdep_is_held(&graph_lock));
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004890 rcu_assign_pointer(ftrace_graph_notrace_hash, new_hash);
Steven Rostedt (VMware)d4ad9a12017-02-02 14:03:39 -05004891 }
Namhyung Kim6a101082013-10-14 17:24:25 +09004892
4893 mutex_unlock(&graph_lock);
Namhyung Kimb9b0c8312017-01-20 11:44:47 +09004894
4895 /* Wait till all users are no longer using the old hash */
4896 synchronize_sched();
4897
4898 free_ftrace_hash(old_hash);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004899 }
4900
Namhyung Kim6a101082013-10-14 17:24:25 +09004901 if (!ret)
4902 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08004903
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004904 trace_parser_put(&parser);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004905
4906 return ret;
4907}
4908
4909static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08004910 .open = ftrace_graph_open,
4911 .read = seq_read,
4912 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004913 .llseek = tracing_lseek,
Li Zefan87827112009-07-23 11:29:11 +08004914 .release = ftrace_graph_release,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004915};
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004916
4917static const struct file_operations ftrace_graph_notrace_fops = {
4918 .open = ftrace_graph_notrace_open,
4919 .read = seq_read,
4920 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004921 .llseek = tracing_lseek,
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004922 .release = ftrace_graph_release,
4923};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004924#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4925
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05004926void ftrace_create_filter_files(struct ftrace_ops *ops,
4927 struct dentry *parent)
4928{
4929
4930 trace_create_file("set_ftrace_filter", 0644, parent,
4931 ops, &ftrace_filter_fops);
4932
4933 trace_create_file("set_ftrace_notrace", 0644, parent,
4934 ops, &ftrace_notrace_fops);
4935}
4936
4937/*
4938 * The name "destroy_filter_files" is really a misnomer. Although
4939 * in the future, it may actualy delete the files, but this is
4940 * really intended to make sure the ops passed in are disabled
4941 * and that when this function returns, the caller is free to
4942 * free the ops.
4943 *
4944 * The "destroy" name is only to match the "create" name that this
4945 * should be paired with.
4946 */
4947void ftrace_destroy_filter_files(struct ftrace_ops *ops)
4948{
4949 mutex_lock(&ftrace_lock);
4950 if (ops->flags & FTRACE_OPS_FL_ENABLED)
4951 ftrace_shutdown(ops, 0);
4952 ops->flags |= FTRACE_OPS_FL_DELETED;
4953 mutex_unlock(&ftrace_lock);
4954}
4955
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05004956static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02004957{
Steven Rostedt5072c592008-05-12 21:20:43 +02004958
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004959 trace_create_file("available_filter_functions", 0444,
4960 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02004961
Steven Rostedt647bcd02011-05-03 14:39:21 -04004962 trace_create_file("enabled_functions", 0444,
4963 d_tracer, NULL, &ftrace_enabled_fops);
4964
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05004965 ftrace_create_filter_files(&global_ops, d_tracer);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04004966
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004967#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004968 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004969 NULL,
4970 &ftrace_graph_fops);
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004971 trace_create_file("set_graph_notrace", 0444, d_tracer,
4972 NULL,
4973 &ftrace_graph_notrace_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004974#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4975
Steven Rostedt5072c592008-05-12 21:20:43 +02004976 return 0;
4977}
4978
Steven Rostedt9fd49322012-04-24 22:32:06 -04004979static int ftrace_cmp_ips(const void *a, const void *b)
Steven Rostedt68950612011-12-16 17:06:45 -05004980{
Steven Rostedt9fd49322012-04-24 22:32:06 -04004981 const unsigned long *ipa = a;
4982 const unsigned long *ipb = b;
Steven Rostedt68950612011-12-16 17:06:45 -05004983
Steven Rostedt9fd49322012-04-24 22:32:06 -04004984 if (*ipa > *ipb)
4985 return 1;
4986 if (*ipa < *ipb)
4987 return -1;
4988 return 0;
4989}
4990
Jiri Olsa5cb084b2009-10-13 16:33:53 -04004991static int ftrace_process_locs(struct module *mod,
Steven Rostedt31e88902008-11-14 16:21:19 -08004992 unsigned long *start,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004993 unsigned long *end)
4994{
Steven Rostedt706c81f2012-04-24 23:45:26 -04004995 struct ftrace_page *start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004996 struct ftrace_page *pg;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004997 struct dyn_ftrace *rec;
Steven Rostedta7900872011-12-16 16:23:44 -05004998 unsigned long count;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004999 unsigned long *p;
5000 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04005001 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedta7900872011-12-16 16:23:44 -05005002 int ret = -ENOMEM;
5003
5004 count = end - start;
5005
5006 if (!count)
5007 return 0;
5008
Steven Rostedt9fd49322012-04-24 22:32:06 -04005009 sort(start, count, sizeof(*start),
Rasmus Villemoes6db02902015-09-09 23:27:02 +02005010 ftrace_cmp_ips, NULL);
Steven Rostedt9fd49322012-04-24 22:32:06 -04005011
Steven Rostedt706c81f2012-04-24 23:45:26 -04005012 start_pg = ftrace_allocate_pages(count);
5013 if (!start_pg)
Steven Rostedta7900872011-12-16 16:23:44 -05005014 return -ENOMEM;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005015
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005016 mutex_lock(&ftrace_lock);
Steven Rostedta7900872011-12-16 16:23:44 -05005017
Steven Rostedt320823092011-12-16 14:42:37 -05005018 /*
5019 * Core and each module needs their own pages, as
5020 * modules will free them when they are removed.
5021 * Force a new page to be allocated for modules.
5022 */
Steven Rostedta7900872011-12-16 16:23:44 -05005023 if (!mod) {
5024 WARN_ON(ftrace_pages || ftrace_pages_start);
5025 /* First initialization */
Steven Rostedt706c81f2012-04-24 23:45:26 -04005026 ftrace_pages = ftrace_pages_start = start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05005027 } else {
Steven Rostedt320823092011-12-16 14:42:37 -05005028 if (!ftrace_pages)
Steven Rostedta7900872011-12-16 16:23:44 -05005029 goto out;
Steven Rostedt320823092011-12-16 14:42:37 -05005030
Steven Rostedta7900872011-12-16 16:23:44 -05005031 if (WARN_ON(ftrace_pages->next)) {
5032 /* Hmm, we have free pages? */
5033 while (ftrace_pages->next)
5034 ftrace_pages = ftrace_pages->next;
Steven Rostedt320823092011-12-16 14:42:37 -05005035 }
Steven Rostedta7900872011-12-16 16:23:44 -05005036
Steven Rostedt706c81f2012-04-24 23:45:26 -04005037 ftrace_pages->next = start_pg;
Steven Rostedt320823092011-12-16 14:42:37 -05005038 }
5039
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005040 p = start;
Steven Rostedt706c81f2012-04-24 23:45:26 -04005041 pg = start_pg;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005042 while (p < end) {
5043 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08005044 /*
5045 * Some architecture linkers will pad between
5046 * the different mcount_loc sections of different
5047 * object files to satisfy alignments.
5048 * Skip any NULL pointers.
5049 */
5050 if (!addr)
5051 continue;
Steven Rostedt706c81f2012-04-24 23:45:26 -04005052
5053 if (pg->index == pg->size) {
5054 /* We should have allocated enough */
5055 if (WARN_ON(!pg->next))
5056 break;
5057 pg = pg->next;
5058 }
5059
5060 rec = &pg->records[pg->index++];
5061 rec->ip = addr;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005062 }
5063
Steven Rostedt706c81f2012-04-24 23:45:26 -04005064 /* We should have used all pages */
5065 WARN_ON(pg->next);
5066
5067 /* Assign the last page to ftrace_pages */
5068 ftrace_pages = pg;
5069
Steven Rostedta4f18ed2011-06-07 09:26:46 -04005070 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04005071 * We only need to disable interrupts on start up
5072 * because we are modifying code that an interrupt
5073 * may execute, and the modification is not atomic.
5074 * But for modules, nothing runs the code we modify
5075 * until we are finished with it, and there's no
5076 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04005077 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04005078 if (!mod)
5079 local_irq_save(flags);
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01005080 ftrace_update_code(mod, start_pg);
Steven Rostedt4376cac2011-06-24 23:28:13 -04005081 if (!mod)
5082 local_irq_restore(flags);
Steven Rostedta7900872011-12-16 16:23:44 -05005083 ret = 0;
5084 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005085 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005086
Steven Rostedta7900872011-12-16 16:23:44 -05005087 return ret;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005088}
5089
Steven Rostedt93eb6772009-04-15 13:24:06 -04005090#ifdef CONFIG_MODULES
Steven Rostedt320823092011-12-16 14:42:37 -05005091
5092#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
5093
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005094static int referenced_filters(struct dyn_ftrace *rec)
5095{
5096 struct ftrace_ops *ops;
5097 int cnt = 0;
5098
5099 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
5100 if (ops_references_rec(ops, rec))
5101 cnt++;
5102 }
5103
5104 return cnt;
5105}
5106
jolsa@redhat.come7247a12009-10-07 19:00:35 +02005107void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005108{
5109 struct dyn_ftrace *rec;
Steven Rostedt320823092011-12-16 14:42:37 -05005110 struct ftrace_page **last_pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04005111 struct ftrace_page *pg;
Steven Rostedta7900872011-12-16 16:23:44 -05005112 int order;
Steven Rostedt93eb6772009-04-15 13:24:06 -04005113
Steven Rostedt93eb6772009-04-15 13:24:06 -04005114 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04005115
5116 if (ftrace_disabled)
5117 goto out_unlock;
5118
Steven Rostedt320823092011-12-16 14:42:37 -05005119 /*
5120 * Each module has its own ftrace_pages, remove
5121 * them from the list.
5122 */
5123 last_pg = &ftrace_pages_start;
5124 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
5125 rec = &pg->records[0];
jolsa@redhat.come7247a12009-10-07 19:00:35 +02005126 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04005127 /*
Steven Rostedt320823092011-12-16 14:42:37 -05005128 * As core pages are first, the first
5129 * page should never be a module page.
Steven Rostedt93eb6772009-04-15 13:24:06 -04005130 */
Steven Rostedt320823092011-12-16 14:42:37 -05005131 if (WARN_ON(pg == ftrace_pages_start))
5132 goto out_unlock;
5133
5134 /* Check if we are deleting the last page */
5135 if (pg == ftrace_pages)
5136 ftrace_pages = next_to_ftrace_page(last_pg);
5137
5138 *last_pg = pg->next;
Steven Rostedta7900872011-12-16 16:23:44 -05005139 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
5140 free_pages((unsigned long)pg->records, order);
5141 kfree(pg);
Steven Rostedt320823092011-12-16 14:42:37 -05005142 } else
5143 last_pg = &pg->next;
5144 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04005145 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04005146 mutex_unlock(&ftrace_lock);
5147}
5148
Jessica Yu7dcd1822016-02-16 17:32:33 -05005149void ftrace_module_enable(struct module *mod)
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005150{
5151 struct dyn_ftrace *rec;
5152 struct ftrace_page *pg;
5153
5154 mutex_lock(&ftrace_lock);
5155
5156 if (ftrace_disabled)
5157 goto out_unlock;
5158
5159 /*
5160 * If the tracing is enabled, go ahead and enable the record.
5161 *
5162 * The reason not to enable the record immediatelly is the
5163 * inherent check of ftrace_make_nop/ftrace_make_call for
5164 * correct previous instructions. Making first the NOP
5165 * conversion puts the module to the correct state, thus
5166 * passing the ftrace_make_call check.
5167 *
5168 * We also delay this to after the module code already set the
5169 * text to read-only, as we now need to set it back to read-write
5170 * so that we can modify the text.
5171 */
5172 if (ftrace_start_up)
5173 ftrace_arch_code_modify_prepare();
5174
5175 do_for_each_ftrace_rec(pg, rec) {
5176 int cnt;
5177 /*
5178 * do_for_each_ftrace_rec() is a double loop.
5179 * module text shares the pg. If a record is
5180 * not part of this module, then skip this pg,
5181 * which the "break" will do.
5182 */
5183 if (!within_module_core(rec->ip, mod))
5184 break;
5185
5186 cnt = 0;
5187
5188 /*
5189 * When adding a module, we need to check if tracers are
5190 * currently enabled and if they are, and can trace this record,
5191 * we need to enable the module functions as well as update the
5192 * reference counts for those function records.
5193 */
5194 if (ftrace_start_up)
5195 cnt += referenced_filters(rec);
5196
5197 /* This clears FTRACE_FL_DISABLED */
5198 rec->flags = cnt;
5199
5200 if (ftrace_start_up && cnt) {
5201 int failed = __ftrace_replace_code(rec, 1);
5202 if (failed) {
5203 ftrace_bug(failed, rec);
5204 goto out_loop;
5205 }
5206 }
5207
5208 } while_for_each_ftrace_rec();
5209
5210 out_loop:
5211 if (ftrace_start_up)
5212 ftrace_arch_code_modify_post_process();
5213
5214 out_unlock:
5215 mutex_unlock(&ftrace_lock);
5216}
5217
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04005218void ftrace_module_init(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005219{
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005220 if (ftrace_disabled || !mod->num_ftrace_callsites)
Abel Vesab6b71f62015-12-02 15:39:57 +01005221 return;
5222
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005223 ftrace_process_locs(mod, mod->ftrace_callsites,
5224 mod->ftrace_callsites + mod->num_ftrace_callsites);
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05005225}
Steven Rostedt93eb6772009-04-15 13:24:06 -04005226#endif /* CONFIG_MODULES */
5227
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005228void __init ftrace_init(void)
5229{
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01005230 extern unsigned long __start_mcount_loc[];
5231 extern unsigned long __stop_mcount_loc[];
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005232 unsigned long count, flags;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005233 int ret;
5234
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005235 local_irq_save(flags);
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005236 ret = ftrace_dyn_arch_init();
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005237 local_irq_restore(flags);
Jiri Slabyaf64a7c2014-02-24 19:59:58 +01005238 if (ret)
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005239 goto failed;
5240
5241 count = __stop_mcount_loc - __start_mcount_loc;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005242 if (!count) {
5243 pr_info("ftrace: No functions to be traced?\n");
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005244 goto failed;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005245 }
5246
5247 pr_info("ftrace: allocating %ld entries in %ld pages\n",
5248 count, count / ENTRIES_PER_PAGE + 1);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005249
5250 last_ftrace_enabled = ftrace_enabled = 1;
5251
Jiri Olsa5cb084b2009-10-13 16:33:53 -04005252 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08005253 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005254 __stop_mcount_loc);
5255
Steven Rostedt2af15d62009-05-28 13:37:24 -04005256 set_ftrace_early_filters();
5257
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005258 return;
5259 failed:
5260 ftrace_disabled = 1;
5261}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005262
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005263/* Do nothing if arch does not support this */
5264void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
5265{
5266}
5267
5268static void ftrace_update_trampoline(struct ftrace_ops *ops)
5269{
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04005270
5271/*
5272 * Currently there's no safe way to free a trampoline when the kernel
5273 * is configured with PREEMPT. That is because a task could be preempted
5274 * when it jumped to the trampoline, it may be preempted for a long time
5275 * depending on the system load, and currently there's no way to know
5276 * when it will be off the trampoline. If the trampoline is freed
5277 * too early, when the task runs again, it will be executing on freed
5278 * memory and crash.
5279 */
5280#ifdef CONFIG_PREEMPT
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005281 /* Currently, only non dynamic ops can have a trampoline */
5282 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
5283 return;
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04005284#endif
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005285
5286 arch_ftrace_update_trampoline(ops);
5287}
5288
Steven Rostedt3d083392008-05-12 21:20:42 +02005289#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005290
Steven Rostedt2b499382011-05-03 22:49:52 -04005291static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04005292 .func = ftrace_stub,
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005293 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5294 FTRACE_OPS_FL_INITIALIZED |
5295 FTRACE_OPS_FL_PID,
Steven Rostedtbd69c302011-05-03 21:55:54 -04005296};
5297
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005298static int __init ftrace_nodyn_init(void)
5299{
5300 ftrace_enabled = 1;
5301 return 0;
5302}
Steven Rostedt6f415672012-10-05 12:13:07 -04005303core_initcall(ftrace_nodyn_init);
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005304
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005305static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005306static inline void ftrace_startup_enable(int command) { }
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005307static inline void ftrace_startup_all(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05005308/* Keep as macros so we do not need to define the commands */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005309# define ftrace_startup(ops, command) \
5310 ({ \
5311 int ___ret = __register_ftrace_function(ops); \
5312 if (!___ret) \
5313 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
5314 ___ret; \
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04005315 })
Steven Rostedt (Red Hat)1fcc1552014-02-19 15:12:18 -05005316# define ftrace_shutdown(ops, command) \
5317 ({ \
5318 int ___ret = __unregister_ftrace_function(ops); \
5319 if (!___ret) \
5320 (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \
5321 ___ret; \
5322 })
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005323
Ingo Molnarc7aafc52008-05-12 21:20:45 +02005324# define ftrace_startup_sysctl() do { } while (0)
5325# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04005326
5327static inline int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04005328ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005329{
5330 return 1;
5331}
5332
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005333static void ftrace_update_trampoline(struct ftrace_ops *ops)
5334{
5335}
5336
Steven Rostedt3d083392008-05-12 21:20:42 +02005337#endif /* CONFIG_DYNAMIC_FTRACE */
5338
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005339__init void ftrace_init_global_array_ops(struct trace_array *tr)
5340{
5341 tr->ops = &global_ops;
5342 tr->ops->private = tr;
5343}
5344
5345void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
5346{
5347 /* If we filter on pids, update to use the pid function */
5348 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
5349 if (WARN_ON(tr->ops->func != ftrace_stub))
5350 printk("ftrace ops had %pS for function\n",
5351 tr->ops->func);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005352 }
5353 tr->ops->func = func;
5354 tr->ops->private = tr;
5355}
5356
5357void ftrace_reset_array_ops(struct trace_array *tr)
5358{
5359 tr->ops->func = ftrace_stub;
5360}
5361
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005362static inline void
5363__ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005364 struct ftrace_ops *ignored, struct pt_regs *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005365{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005366 struct ftrace_ops *op;
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005367 int bit;
Steven Rostedtb8489142011-05-04 09:27:52 -04005368
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005369 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5370 if (bit < 0)
5371 return;
Steven Rostedtc29f1222012-11-02 17:17:59 -04005372
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005373 /*
5374 * Some of the ops may be dynamically allocated,
5375 * they must be freed after a synchronize_sched().
5376 */
5377 preempt_disable_notrace();
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05005378
Steven Rostedt0a016402012-11-02 17:03:03 -04005379 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05005380 /*
5381 * Check the following for each ops before calling their func:
5382 * if RCU flag is set, then rcu_is_watching() must be true
5383 * if PER_CPU is set, then ftrace_function_local_disable()
5384 * must be false
5385 * Otherwise test if the ip matches the ops filter
5386 *
5387 * If any of the above fails then the op->func() is not executed.
5388 */
5389 if ((!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching()) &&
5390 (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5391 !ftrace_function_local_disabled(op)) &&
5392 ftrace_ops_test(op, ip, regs)) {
5393
Steven Rostedt (Red Hat)1d48d592014-06-25 11:54:03 -04005394 if (FTRACE_WARN_ON(!op->func)) {
5395 pr_warn("op=%p %pS\n", op, op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005396 goto out;
5397 }
Steven Rostedta1e2e312011-08-09 12:50:46 -04005398 op->func(ip, parent_ip, op, regs);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005399 }
Steven Rostedt0a016402012-11-02 17:03:03 -04005400 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005401out:
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005402 preempt_enable_notrace();
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005403 trace_clear_recursion(bit);
Steven Rostedtb8489142011-05-04 09:27:52 -04005404}
5405
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005406/*
5407 * Some archs only support passing ip and parent_ip. Even though
5408 * the list function ignores the op parameter, we do not want any
5409 * C side effects, where a function is called without the caller
5410 * sending a third parameter.
Steven Rostedta1e2e312011-08-09 12:50:46 -04005411 * Archs are to support both the regs and ftrace_ops at the same time.
5412 * If they support ftrace_ops, it is assumed they support regs.
5413 * If call backs want to use regs, they must either check for regs
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +09005414 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
5415 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
Steven Rostedta1e2e312011-08-09 12:50:46 -04005416 * An architecture can pass partial regs with ftrace_ops and still
Li Binb8ec3302015-11-30 18:23:36 +08005417 * set the ARCH_SUPPORTS_FTRACE_OPS.
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005418 */
5419#if ARCH_SUPPORTS_FTRACE_OPS
5420static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005421 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005422{
Steven Rostedta1e2e312011-08-09 12:50:46 -04005423 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005424}
5425#else
5426static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip)
5427{
Steven Rostedta1e2e312011-08-09 12:50:46 -04005428 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005429}
5430#endif
5431
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005432/*
5433 * If there's only one function registered but it does not support
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005434 * recursion, needs RCU protection and/or requires per cpu handling, then
5435 * this function will be called by the mcount trampoline.
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005436 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005437static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005438 struct ftrace_ops *op, struct pt_regs *regs)
5439{
5440 int bit;
5441
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005442 if ((op->flags & FTRACE_OPS_FL_RCU) && !rcu_is_watching())
5443 return;
5444
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005445 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5446 if (bit < 0)
5447 return;
5448
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005449 preempt_disable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005450
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005451 if (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5452 !ftrace_function_local_disabled(op)) {
5453 op->func(ip, parent_ip, op, regs);
5454 }
5455
5456 preempt_enable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005457 trace_clear_recursion(bit);
5458}
5459
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005460/**
5461 * ftrace_ops_get_func - get the function a trampoline should call
5462 * @ops: the ops to get the function for
5463 *
5464 * Normally the mcount trampoline will call the ops->func, but there
5465 * are times that it should not. For example, if the ops does not
5466 * have its own recursion protection, then it should call the
5467 * ftrace_ops_recurs_func() instead.
5468 *
5469 * Returns the function that the trampoline should call for @ops.
5470 */
5471ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
5472{
5473 /*
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005474 * If the function does not handle recursion, needs to be RCU safe,
5475 * or does per cpu logic, then we need to call the assist handler.
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005476 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005477 if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE) ||
5478 ops->flags & (FTRACE_OPS_FL_RCU | FTRACE_OPS_FL_PER_CPU))
5479 return ftrace_ops_assist_func;
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005480
5481 return ops->func;
5482}
5483
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005484static void
5485ftrace_filter_pid_sched_switch_probe(void *data, bool preempt,
5486 struct task_struct *prev, struct task_struct *next)
Steven Rostedte32d8952008-12-04 00:26:41 -05005487{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005488 struct trace_array *tr = data;
5489 struct trace_pid_list *pid_list;
5490
5491 pid_list = rcu_dereference_sched(tr->function_pids);
5492
5493 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
5494 trace_ignore_this_task(pid_list, next));
5495}
5496
5497static void clear_ftrace_pids(struct trace_array *tr)
5498{
5499 struct trace_pid_list *pid_list;
Steven Rostedte32d8952008-12-04 00:26:41 -05005500 int cpu;
5501
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005502 pid_list = rcu_dereference_protected(tr->function_pids,
5503 lockdep_is_held(&ftrace_lock));
5504 if (!pid_list)
5505 return;
5506
5507 unregister_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
5508
5509 for_each_possible_cpu(cpu)
5510 per_cpu_ptr(tr->trace_buffer.data, cpu)->ftrace_ignore_pid = false;
5511
5512 rcu_assign_pointer(tr->function_pids, NULL);
5513
5514 /* Wait till all users are no longer using pid filtering */
5515 synchronize_sched();
5516
5517 trace_free_pid_list(pid_list);
Steven Rostedte32d8952008-12-04 00:26:41 -05005518}
5519
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005520static void ftrace_pid_reset(struct trace_array *tr)
Steven Rostedte32d8952008-12-04 00:26:41 -05005521{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005522 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005523 clear_ftrace_pids(tr);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005524
5525 ftrace_update_pid_func();
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005526 ftrace_startup_all(0);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005527
5528 mutex_unlock(&ftrace_lock);
5529}
5530
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005531/* Greater than any max PID */
5532#define FTRACE_NO_PIDS (void *)(PID_MAX_LIMIT + 1)
5533
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005534static void *fpid_start(struct seq_file *m, loff_t *pos)
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005535 __acquires(RCU)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005536{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005537 struct trace_pid_list *pid_list;
5538 struct trace_array *tr = m->private;
5539
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005540 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005541 rcu_read_lock_sched();
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005542
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005543 pid_list = rcu_dereference_sched(tr->function_pids);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005544
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005545 if (!pid_list)
5546 return !(*pos) ? FTRACE_NO_PIDS : NULL;
5547
5548 return trace_pid_start(pid_list, pos);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005549}
5550
5551static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
5552{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005553 struct trace_array *tr = m->private;
5554 struct trace_pid_list *pid_list = rcu_dereference_sched(tr->function_pids);
5555
5556 if (v == FTRACE_NO_PIDS)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005557 return NULL;
5558
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005559 return trace_pid_next(pid_list, v, pos);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005560}
5561
5562static void fpid_stop(struct seq_file *m, void *p)
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005563 __releases(RCU)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005564{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005565 rcu_read_unlock_sched();
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005566 mutex_unlock(&ftrace_lock);
5567}
5568
5569static int fpid_show(struct seq_file *m, void *v)
5570{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005571 if (v == FTRACE_NO_PIDS) {
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005572 seq_puts(m, "no pid\n");
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005573 return 0;
5574 }
5575
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005576 return trace_pid_show(m, v);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005577}
5578
5579static const struct seq_operations ftrace_pid_sops = {
5580 .start = fpid_start,
5581 .next = fpid_next,
5582 .stop = fpid_stop,
5583 .show = fpid_show,
5584};
5585
5586static int
5587ftrace_pid_open(struct inode *inode, struct file *file)
5588{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005589 struct trace_array *tr = inode->i_private;
5590 struct seq_file *m;
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005591 int ret = 0;
5592
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005593 if (trace_array_get(tr) < 0)
5594 return -ENODEV;
5595
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005596 if ((file->f_mode & FMODE_WRITE) &&
5597 (file->f_flags & O_TRUNC))
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005598 ftrace_pid_reset(tr);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005599
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005600 ret = seq_open(file, &ftrace_pid_sops);
5601 if (ret < 0) {
5602 trace_array_put(tr);
5603 } else {
5604 m = file->private_data;
5605 /* copy tr over to seq ops */
5606 m->private = tr;
5607 }
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005608
5609 return ret;
5610}
5611
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005612static void ignore_task_cpu(void *data)
5613{
5614 struct trace_array *tr = data;
5615 struct trace_pid_list *pid_list;
5616
5617 /*
5618 * This function is called by on_each_cpu() while the
5619 * event_mutex is held.
5620 */
5621 pid_list = rcu_dereference_protected(tr->function_pids,
5622 mutex_is_locked(&ftrace_lock));
5623
5624 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
5625 trace_ignore_this_task(pid_list, current));
5626}
5627
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005628static ssize_t
5629ftrace_pid_write(struct file *filp, const char __user *ubuf,
5630 size_t cnt, loff_t *ppos)
5631{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005632 struct seq_file *m = filp->private_data;
5633 struct trace_array *tr = m->private;
5634 struct trace_pid_list *filtered_pids = NULL;
5635 struct trace_pid_list *pid_list;
5636 ssize_t ret;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005637
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005638 if (!cnt)
5639 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005640
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005641 mutex_lock(&ftrace_lock);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005642
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005643 filtered_pids = rcu_dereference_protected(tr->function_pids,
5644 lockdep_is_held(&ftrace_lock));
5645
5646 ret = trace_pid_write(filtered_pids, &pid_list, ubuf, cnt);
5647 if (ret < 0)
5648 goto out;
5649
5650 rcu_assign_pointer(tr->function_pids, pid_list);
5651
5652 if (filtered_pids) {
5653 synchronize_sched();
5654 trace_free_pid_list(filtered_pids);
5655 } else if (pid_list) {
5656 /* Register a probe to set whether to ignore the tracing of a task */
5657 register_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
5658 }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005659
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005660 /*
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005661 * Ignoring of pids is done at task switch. But we have to
5662 * check for those tasks that are currently running.
5663 * Always do this in case a pid was appended or removed.
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005664 */
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005665 on_each_cpu(ignore_task_cpu, tr, 1);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005666
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005667 ftrace_update_pid_func();
5668 ftrace_startup_all(0);
5669 out:
5670 mutex_unlock(&ftrace_lock);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005671
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005672 if (ret > 0)
5673 *ppos += ret;
Steven Rostedt978f3a42008-12-04 00:26:40 -05005674
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005675 return ret;
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005676}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005677
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005678static int
5679ftrace_pid_release(struct inode *inode, struct file *file)
5680{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005681 struct trace_array *tr = inode->i_private;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005682
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005683 trace_array_put(tr);
5684
5685 return seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005686}
5687
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005688static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005689 .open = ftrace_pid_open,
5690 .write = ftrace_pid_write,
5691 .read = seq_read,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005692 .llseek = tracing_lseek,
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005693 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005694};
5695
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005696void ftrace_init_tracefs(struct trace_array *tr, struct dentry *d_tracer)
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005697{
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005698 trace_create_file("set_ftrace_pid", 0644, d_tracer,
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005699 tr, &ftrace_pid_fops);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005700}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005701
Steven Rostedt (Red Hat)501c2372016-07-05 10:04:34 -04005702void __init ftrace_init_tracefs_toplevel(struct trace_array *tr,
5703 struct dentry *d_tracer)
5704{
5705 /* Only the top level directory has the dyn_tracefs and profile */
5706 WARN_ON(!(tr->flags & TRACE_ARRAY_FL_GLOBAL));
5707
5708 ftrace_init_dyn_tracefs(d_tracer);
5709 ftrace_profile_tracefs(d_tracer);
5710}
5711
Steven Rostedt3d083392008-05-12 21:20:42 +02005712/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04005713 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005714 *
5715 * This function should be used by panic code. It stops ftrace
5716 * but in a not so nice way. If you need to simply kill ftrace
5717 * from a non-atomic section, use ftrace_kill.
5718 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04005719void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005720{
5721 ftrace_disabled = 1;
5722 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005723 clear_ftrace_function();
5724}
5725
5726/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04005727 * Test if ftrace is dead or not.
5728 */
5729int ftrace_is_dead(void)
5730{
5731 return ftrace_disabled;
5732}
5733
5734/**
Steven Rostedt3d083392008-05-12 21:20:42 +02005735 * register_ftrace_function - register a function for profiling
5736 * @ops - ops structure that holds the function for profiling.
5737 *
5738 * Register a function to be called by all functions in the
5739 * kernel.
5740 *
5741 * Note: @ops->func and all the functions it calls must be labeled
5742 * with "notrace", otherwise it will go into a
5743 * recursive loop.
5744 */
5745int register_ftrace_function(struct ftrace_ops *ops)
5746{
Steven Rostedt45a4a232011-04-21 23:16:46 -04005747 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02005748
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09005749 ftrace_ops_init(ops);
5750
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005751 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005752
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005753 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04005754
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005755 mutex_unlock(&ftrace_lock);
Borislav Petkov8d240dd2012-03-29 19:11:40 +02005756
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005757 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02005758}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005759EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02005760
5761/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01005762 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02005763 * @ops - ops structure that holds the function to unregister
5764 *
5765 * Unregister a function that was added to be called by ftrace profiling.
5766 */
5767int unregister_ftrace_function(struct ftrace_ops *ops)
5768{
5769 int ret;
5770
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005771 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005772 ret = ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005773 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005774
5775 return ret;
5776}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005777EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005778
Ingo Molnare309b412008-05-12 21:20:51 +02005779int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005780ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07005781 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005782 loff_t *ppos)
5783{
Steven Rostedt45a4a232011-04-21 23:16:46 -04005784 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02005785
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005786 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005787
Steven Rostedt45a4a232011-04-21 23:16:46 -04005788 if (unlikely(ftrace_disabled))
5789 goto out;
5790
5791 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005792
Li Zefana32c7762009-06-26 16:55:51 +08005793 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005794 goto out;
5795
Li Zefana32c7762009-06-26 16:55:51 +08005796 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005797
5798 if (ftrace_enabled) {
5799
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005800 /* we are starting ftrace again */
Jan Kiszka5000c412013-03-26 17:53:03 +01005801 if (ftrace_ops_list != &ftrace_list_end)
5802 update_ftrace_function();
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005803
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05005804 ftrace_startup_sysctl();
5805
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005806 } else {
5807 /* stopping ftrace calls (just send to ftrace_stub) */
5808 ftrace_trace_function = ftrace_stub;
5809
5810 ftrace_shutdown_sysctl();
5811 }
5812
5813 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005814 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02005815 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02005816}
Ingo Molnarf17845e2008-10-24 12:47:10 +02005817
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005818#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005819
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005820static struct ftrace_ops graph_ops = {
5821 .func = ftrace_stub,
5822 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5823 FTRACE_OPS_FL_INITIALIZED |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005824 FTRACE_OPS_FL_PID |
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005825 FTRACE_OPS_FL_STUB,
5826#ifdef FTRACE_GRAPH_TRAMP_ADDR
5827 .trampoline = FTRACE_GRAPH_TRAMP_ADDR,
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05005828 /* trampoline_size is only needed for dynamically allocated tramps */
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005829#endif
5830 ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash)
5831};
5832
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04005833void ftrace_graph_sleep_time_control(bool enable)
5834{
5835 fgraph_sleep_time = enable;
5836}
5837
5838void ftrace_graph_graph_time_control(bool enable)
5839{
5840 fgraph_graph_time = enable;
5841}
5842
Steven Rostedte49dc192008-12-02 23:50:05 -05005843int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
5844{
5845 return 0;
5846}
5847
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005848/* The callbacks that hook a function */
5849trace_func_graph_ret_t ftrace_graph_return =
5850 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05005851trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005852static trace_func_graph_ent_t __ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005853
5854/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
5855static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
5856{
5857 int i;
5858 int ret = 0;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005859 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
5860 struct task_struct *g, *t;
5861
5862 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
5863 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
5864 * sizeof(struct ftrace_ret_stack),
5865 GFP_KERNEL);
5866 if (!ret_stack_list[i]) {
5867 start = 0;
5868 end = i;
5869 ret = -ENOMEM;
5870 goto free;
5871 }
5872 }
5873
Soumya PN6112a302016-05-17 21:31:14 +05305874 read_lock(&tasklist_lock);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005875 do_each_thread(g, t) {
5876 if (start == end) {
5877 ret = -EAGAIN;
5878 goto unlock;
5879 }
5880
5881 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01005882 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005883 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04005884 t->curr_ret_stack = -1;
5885 /* Make sure the tasks see the -1 first: */
5886 smp_wmb();
5887 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005888 }
5889 } while_each_thread(g, t);
5890
5891unlock:
Soumya PN6112a302016-05-17 21:31:14 +05305892 read_unlock(&tasklist_lock);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005893free:
5894 for (i = start; i < end; i++)
5895 kfree(ret_stack_list[i]);
5896 return ret;
5897}
5898
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005899static void
Peter Zijlstrac73464b2015-09-28 18:06:56 +02005900ftrace_graph_probe_sched_switch(void *ignore, bool preempt,
Steven Rostedt38516ab2010-04-20 17:04:50 -04005901 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005902{
5903 unsigned long long timestamp;
5904 int index;
5905
Steven Rostedtbe6f1642009-03-24 11:06:24 -04005906 /*
5907 * Does the user want to count the time a function was asleep.
5908 * If so, do not update the time stamps.
5909 */
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04005910 if (fgraph_sleep_time)
Steven Rostedtbe6f1642009-03-24 11:06:24 -04005911 return;
5912
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005913 timestamp = trace_clock_local();
5914
5915 prev->ftrace_timestamp = timestamp;
5916
5917 /* only process tasks that we timestamped */
5918 if (!next->ftrace_timestamp)
5919 return;
5920
5921 /*
5922 * Update all the counters in next to make up for the
5923 * time next was sleeping.
5924 */
5925 timestamp -= next->ftrace_timestamp;
5926
5927 for (index = next->curr_ret_stack; index >= 0; index--)
5928 next->ret_stack[index].calltime += timestamp;
5929}
5930
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005931/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005932static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005933{
5934 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005935 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005936
5937 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
5938 sizeof(struct ftrace_ret_stack *),
5939 GFP_KERNEL);
5940
5941 if (!ret_stack_list)
5942 return -ENOMEM;
5943
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005944 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04005945 for_each_online_cpu(cpu) {
5946 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05005947 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04005948 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005949
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005950 do {
5951 ret = alloc_retstack_tasklist(ret_stack_list);
5952 } while (ret == -EAGAIN);
5953
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005954 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04005955 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005956 if (ret)
5957 pr_info("ftrace_graph: Couldn't activate tracepoint"
5958 " probe to kernel_sched_switch\n");
5959 }
5960
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005961 kfree(ret_stack_list);
5962 return ret;
5963}
5964
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005965/*
5966 * Hibernation protection.
5967 * The state of the current task is too much unstable during
5968 * suspend/restore to disk. We want to protect against that.
5969 */
5970static int
5971ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
5972 void *unused)
5973{
5974 switch (state) {
5975 case PM_HIBERNATION_PREPARE:
5976 pause_graph_tracing();
5977 break;
5978
5979 case PM_POST_HIBERNATION:
5980 unpause_graph_tracing();
5981 break;
5982 }
5983 return NOTIFY_DONE;
5984}
5985
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005986static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace)
5987{
5988 if (!ftrace_ops_test(&global_ops, trace->func, NULL))
5989 return 0;
5990 return __ftrace_graph_entry(trace);
5991}
5992
5993/*
5994 * The function graph tracer should only trace the functions defined
5995 * by set_ftrace_filter and set_ftrace_notrace. If another function
5996 * tracer ops is registered, the graph tracer requires testing the
5997 * function against the global ops, and not just trace any function
5998 * that any ftrace_ops registered.
5999 */
6000static void update_function_graph_func(void)
6001{
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006002 struct ftrace_ops *op;
6003 bool do_test = false;
6004
6005 /*
6006 * The graph and global ops share the same set of functions
6007 * to test. If any other ops is on the list, then
6008 * the graph tracing needs to test if its the function
6009 * it should call.
6010 */
6011 do_for_each_ftrace_op(op, ftrace_ops_list) {
6012 if (op != &global_ops && op != &graph_ops &&
6013 op != &ftrace_list_end) {
6014 do_test = true;
6015 /* in double loop, break out with goto */
6016 goto out;
6017 }
6018 } while_for_each_ftrace_op(op);
6019 out:
6020 if (do_test)
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006021 ftrace_graph_entry = ftrace_graph_entry_test;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006022 else
6023 ftrace_graph_entry = __ftrace_graph_entry;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006024}
6025
Mathias Krause8275f692014-03-30 15:31:50 +02006026static struct notifier_block ftrace_suspend_notifier = {
6027 .notifier_call = ftrace_suspend_notifier_call,
6028};
6029
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006030int register_ftrace_graph(trace_func_graph_ret_t retfunc,
6031 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006032{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006033 int ret = 0;
6034
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006035 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006036
Steven Rostedt05ce5812009-03-24 00:18:31 -04006037 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04006038 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04006039 ret = -EBUSY;
6040 goto out;
6041 }
6042
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08006043 register_pm_notifier(&ftrace_suspend_notifier);
6044
Steven Rostedt597af812009-04-03 15:24:12 -04006045 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006046 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006047 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04006048 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006049 goto out;
6050 }
Steven Rostedte53a6312008-11-26 00:16:25 -05006051
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006052 ftrace_graph_return = retfunc;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006053
6054 /*
6055 * Update the indirect function to the entryfunc, and the
6056 * function that gets called to the entry_test first. Then
6057 * call the update fgraph entry function to determine if
6058 * the entryfunc should be called directly or not.
6059 */
6060 __ftrace_graph_entry = entryfunc;
6061 ftrace_graph_entry = ftrace_graph_entry_test;
6062 update_function_graph_func();
Steven Rostedte53a6312008-11-26 00:16:25 -05006063
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006064 ret = ftrace_startup(&graph_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006065out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006066 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006067 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006068}
6069
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006070void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006071{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006072 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006073
Steven Rostedt597af812009-04-03 15:24:12 -04006074 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04006075 goto out;
6076
Steven Rostedt597af812009-04-03 15:24:12 -04006077 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01006078 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05006079 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05006080 __ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04006081 ftrace_shutdown(&graph_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08006082 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04006083 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01006084
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04006085#ifdef CONFIG_DYNAMIC_FTRACE
6086 /*
6087 * Function graph does not allocate the trampoline, but
6088 * other global_ops do. We need to reset the ALLOC_TRAMP flag
6089 * if one was used.
6090 */
6091 global_ops.trampoline = save_global_trampoline;
6092 if (save_global_flags & FTRACE_OPS_FL_ALLOC_TRAMP)
6093 global_ops.flags |= FTRACE_OPS_FL_ALLOC_TRAMP;
6094#endif
6095
Steven Rostedt2aad1b72009-03-30 11:11:28 -04006096 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05006097 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006098}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006099
Steven Rostedt868baf02011-02-10 21:26:13 -05006100static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
6101
6102static void
6103graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
6104{
6105 atomic_set(&t->tracing_graph_pause, 0);
6106 atomic_set(&t->trace_overrun, 0);
6107 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006108 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05006109 smp_wmb();
6110 t->ret_stack = ret_stack;
6111}
6112
6113/*
6114 * Allocate a return stack for the idle task. May be the first
6115 * time through, or it may be done by CPU hotplug online.
6116 */
6117void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
6118{
6119 t->curr_ret_stack = -1;
6120 /*
6121 * The idle task has no parent, it either has its own
6122 * stack or no stack at all.
6123 */
6124 if (t->ret_stack)
6125 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
6126
6127 if (ftrace_graph_active) {
6128 struct ftrace_ret_stack *ret_stack;
6129
6130 ret_stack = per_cpu(idle_ret_stack, cpu);
6131 if (!ret_stack) {
6132 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
6133 * sizeof(struct ftrace_ret_stack),
6134 GFP_KERNEL);
6135 if (!ret_stack)
6136 return;
6137 per_cpu(idle_ret_stack, cpu) = ret_stack;
6138 }
6139 graph_init_task(t, ret_stack);
6140 }
6141}
6142
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006143/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006144void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006145{
Steven Rostedt84047e32009-06-02 16:51:55 -04006146 /* Make sure we do not use the parent ret_stack */
6147 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05006148 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04006149
Steven Rostedt597af812009-04-03 15:24:12 -04006150 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04006151 struct ftrace_ret_stack *ret_stack;
6152
6153 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006154 * sizeof(struct ftrace_ret_stack),
6155 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04006156 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006157 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05006158 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04006159 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006160}
6161
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006162void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006163{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006164 struct ftrace_ret_stack *ret_stack = t->ret_stack;
6165
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006166 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006167 /* NULL must become visible to IRQs before we free it: */
6168 barrier();
6169
6170 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006171}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006172#endif