blob: 063dd229bd36c77c2797349d63aed923227b2fda [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
Steven Rostedt (VMware)741397d2017-08-17 16:37:25 -0400879 /* If function graph is shutting down, ret_stack can be NULL */
880 if (!current->ret_stack)
881 return 0;
882
Namhyung Kim8861dd32016-08-31 11:55:29 +0900883 if (index >= 0 && index < FTRACE_RETFUNC_DEPTH)
884 current->ret_stack[index].subtime = 0;
885
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400886 return 1;
887}
888
889static void profile_graph_return(struct ftrace_graph_ret *trace)
890{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400891 struct ftrace_profile_stat *stat;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400892 unsigned long long calltime;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400893 struct ftrace_profile *rec;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400894 unsigned long flags;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400895
896 local_irq_save(flags);
Christoph Lameterbdffd892014-04-29 14:17:40 -0500897 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400898 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400899 goto out;
900
Steven Rostedt37e44bc2010-04-27 21:04:24 -0400901 /* If the calltime was zero'd ignore it */
902 if (!trace->calltime)
903 goto out;
904
Steven Rostedta2a16d62009-03-24 23:17:58 -0400905 calltime = trace->rettime - trace->calltime;
906
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400907 if (!fgraph_graph_time) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400908 int index;
909
910 index = trace->depth;
911
912 /* Append this call time to the parent time to subtract */
913 if (index)
914 current->ret_stack[index - 1].subtime += calltime;
915
916 if (current->ret_stack[index].subtime < calltime)
917 calltime -= current->ret_stack[index].subtime;
918 else
919 calltime = 0;
920 }
921
Steven Rostedtcafb1682009-03-24 20:50:39 -0400922 rec = ftrace_find_profiled_func(stat, trace->func);
Chase Douglase330b3b2010-04-26 14:02:05 -0400923 if (rec) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400924 rec->time += calltime;
Chase Douglase330b3b2010-04-26 14:02:05 -0400925 rec->time_squared += calltime * calltime;
926 }
Steven Rostedta2a16d62009-03-24 23:17:58 -0400927
Steven Rostedtcafb1682009-03-24 20:50:39 -0400928 out:
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400929 local_irq_restore(flags);
930}
931
932static int register_ftrace_profiler(void)
933{
934 return register_ftrace_graph(&profile_graph_return,
935 &profile_graph_entry);
936}
937
938static void unregister_ftrace_profiler(void)
939{
940 unregister_ftrace_graph();
941}
942#else
Paul McQuadebd38c0e2011-05-31 20:51:55 +0100943static struct ftrace_ops ftrace_profile_ops __read_mostly = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400944 .func = function_profile_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900945 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400946 INIT_OPS_HASH(ftrace_profile_ops)
Steven Rostedt493762f2009-03-23 17:12:36 -0400947};
948
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400949static int register_ftrace_profiler(void)
950{
951 return register_ftrace_function(&ftrace_profile_ops);
952}
953
954static void unregister_ftrace_profiler(void)
955{
956 unregister_ftrace_function(&ftrace_profile_ops);
957}
958#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
959
Steven Rostedt493762f2009-03-23 17:12:36 -0400960static ssize_t
961ftrace_profile_write(struct file *filp, const char __user *ubuf,
962 size_t cnt, loff_t *ppos)
963{
964 unsigned long val;
Steven Rostedt493762f2009-03-23 17:12:36 -0400965 int ret;
966
Peter Huewe22fe9b52011-06-07 21:58:27 +0200967 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
968 if (ret)
Steven Rostedt493762f2009-03-23 17:12:36 -0400969 return ret;
970
971 val = !!val;
972
973 mutex_lock(&ftrace_profile_lock);
974 if (ftrace_profile_enabled ^ val) {
975 if (val) {
976 ret = ftrace_profile_init();
977 if (ret < 0) {
978 cnt = ret;
979 goto out;
980 }
981
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400982 ret = register_ftrace_profiler();
983 if (ret < 0) {
984 cnt = ret;
985 goto out;
986 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400987 ftrace_profile_enabled = 1;
988 } else {
989 ftrace_profile_enabled = 0;
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400990 /*
991 * unregister_ftrace_profiler calls stop_machine
992 * so this acts like an synchronize_sched.
993 */
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400994 unregister_ftrace_profiler();
Steven Rostedt493762f2009-03-23 17:12:36 -0400995 }
996 }
997 out:
998 mutex_unlock(&ftrace_profile_lock);
999
Jiri Olsacf8517c2009-10-23 19:36:16 -04001000 *ppos += cnt;
Steven Rostedt493762f2009-03-23 17:12:36 -04001001
1002 return cnt;
1003}
1004
1005static ssize_t
1006ftrace_profile_read(struct file *filp, char __user *ubuf,
1007 size_t cnt, loff_t *ppos)
1008{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001009 char buf[64]; /* big enough to hold a number */
Steven Rostedt493762f2009-03-23 17:12:36 -04001010 int r;
1011
1012 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
1013 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
1014}
1015
1016static const struct file_operations ftrace_profile_fops = {
1017 .open = tracing_open_generic,
1018 .read = ftrace_profile_read,
1019 .write = ftrace_profile_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001020 .llseek = default_llseek,
Steven Rostedt493762f2009-03-23 17:12:36 -04001021};
1022
Steven Rostedtcafb1682009-03-24 20:50:39 -04001023/* used to initialize the real stat files */
1024static struct tracer_stat function_stats __initdata = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001025 .name = "functions",
1026 .stat_start = function_stat_start,
1027 .stat_next = function_stat_next,
1028 .stat_cmp = function_stat_cmp,
1029 .stat_headers = function_stat_headers,
1030 .stat_show = function_stat_show
Steven Rostedtcafb1682009-03-24 20:50:39 -04001031};
1032
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001033static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001034{
Steven Rostedtcafb1682009-03-24 20:50:39 -04001035 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -04001036 struct dentry *entry;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001037 char *name;
Steven Rostedt493762f2009-03-23 17:12:36 -04001038 int ret;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001039 int cpu;
Steven Rostedt493762f2009-03-23 17:12:36 -04001040
Steven Rostedtcafb1682009-03-24 20:50:39 -04001041 for_each_possible_cpu(cpu) {
1042 stat = &per_cpu(ftrace_profile_stats, cpu);
1043
Geliang Tang6363c6b2016-03-15 22:12:34 +08001044 name = kasprintf(GFP_KERNEL, "function%d", cpu);
Steven Rostedtcafb1682009-03-24 20:50:39 -04001045 if (!name) {
1046 /*
1047 * The files created are permanent, if something happens
1048 * we still do not free memory.
1049 */
Steven Rostedtcafb1682009-03-24 20:50:39 -04001050 WARN(1,
1051 "Could not allocate stat file for cpu %d\n",
1052 cpu);
1053 return;
1054 }
1055 stat->stat = function_stats;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001056 stat->stat.name = name;
1057 ret = register_stat_tracer(&stat->stat);
1058 if (ret) {
1059 WARN(1,
1060 "Could not register function stat for cpu %d\n",
1061 cpu);
1062 kfree(name);
1063 return;
1064 }
Steven Rostedt493762f2009-03-23 17:12:36 -04001065 }
1066
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001067 entry = tracefs_create_file("function_profile_enabled", 0644,
Steven Rostedt493762f2009-03-23 17:12:36 -04001068 d_tracer, NULL, &ftrace_profile_fops);
1069 if (!entry)
Joe Perchesa395d6a2016-03-22 14:28:09 -07001070 pr_warn("Could not create tracefs 'function_profile_enabled' entry\n");
Steven Rostedt493762f2009-03-23 17:12:36 -04001071}
1072
1073#else /* CONFIG_FUNCTION_PROFILER */
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001074static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001075{
1076}
1077#endif /* CONFIG_FUNCTION_PROFILER */
1078
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001079static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1080
Pratyush Anand1619dc32015-03-06 23:58:06 +05301081#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1082static int ftrace_graph_active;
1083#else
1084# define ftrace_graph_active 0
1085#endif
1086
Steven Rostedt3d083392008-05-12 21:20:42 +02001087#ifdef CONFIG_DYNAMIC_FTRACE
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001088
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001089static struct ftrace_ops *removed_ops;
1090
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04001091/*
1092 * Set when doing a global update, like enabling all recs or disabling them.
1093 * It is not set when just updating a single ftrace_ops.
1094 */
1095static bool update_all_ops;
1096
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001097#ifndef CONFIG_FTRACE_MCOUNT_RECORD
Steven Rostedtcb7be3b2008-10-23 09:33:05 -04001098# error Dynamic ftrace depends on MCOUNT_RECORD
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001099#endif
1100
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001101static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
1102
Steven Rostedtb6887d72009-02-17 12:32:04 -05001103struct ftrace_func_probe {
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001104 struct hlist_node node;
Steven Rostedtb6887d72009-02-17 12:32:04 -05001105 struct ftrace_probe_ops *ops;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001106 unsigned long flags;
1107 unsigned long ip;
1108 void *data;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04001109 struct list_head free_list;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001110};
1111
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001112struct ftrace_func_entry {
1113 struct hlist_node hlist;
1114 unsigned long ip;
1115};
1116
1117struct ftrace_hash {
1118 unsigned long size_bits;
1119 struct hlist_head *buckets;
1120 unsigned long count;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001121 struct rcu_head rcu;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001122};
1123
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001124/*
1125 * We make these constant because no one should touch them,
1126 * but they are used as the default "empty hash", to avoid allocating
1127 * it all the time. These are in a read only section such that if
1128 * anyone does try to modify it, it will cause an exception.
1129 */
1130static const struct hlist_head empty_buckets[1];
1131static const struct ftrace_hash empty_hash = {
1132 .buckets = (struct hlist_head *)empty_buckets,
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001133};
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001134#define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02001135
Steven Rostedt2b499382011-05-03 22:49:52 -04001136static struct ftrace_ops global_ops = {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001137 .func = ftrace_stub,
1138 .local_hash.notrace_hash = EMPTY_HASH,
1139 .local_hash.filter_hash = EMPTY_HASH,
1140 INIT_OPS_HASH(global_ops)
1141 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04001142 FTRACE_OPS_FL_INITIALIZED |
1143 FTRACE_OPS_FL_PID,
Steven Rostedtf45948e2011-05-02 12:29:25 -04001144};
1145
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001146/*
1147 * This is used by __kernel_text_address() to return true if the
Steven Rostedt (Red Hat)0af26492014-11-20 10:05:36 -05001148 * address is on a dynamically allocated trampoline that would
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001149 * not return true for either core_kernel_text() or
1150 * is_module_text_address().
1151 */
1152bool is_ftrace_trampoline(unsigned long addr)
1153{
1154 struct ftrace_ops *op;
1155 bool ret = false;
1156
1157 /*
1158 * Some of the ops may be dynamically allocated,
1159 * they are freed after a synchronize_sched().
1160 */
1161 preempt_disable_notrace();
1162
1163 do_for_each_ftrace_op(op, ftrace_ops_list) {
1164 /*
1165 * This is to check for dynamically allocated trampolines.
1166 * Trampolines that are in kernel text will have
1167 * core_kernel_text() return true.
1168 */
1169 if (op->trampoline && op->trampoline_size)
1170 if (addr >= op->trampoline &&
1171 addr < op->trampoline + op->trampoline_size) {
1172 ret = true;
1173 goto out;
1174 }
1175 } while_for_each_ftrace_op(op);
1176
1177 out:
1178 preempt_enable_notrace();
1179
1180 return ret;
1181}
1182
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001183struct ftrace_page {
1184 struct ftrace_page *next;
Steven Rostedta7900872011-12-16 16:23:44 -05001185 struct dyn_ftrace *records;
Steven Rostedt431aa3f2009-01-06 12:43:01 -05001186 int index;
Steven Rostedta7900872011-12-16 16:23:44 -05001187 int size;
David Milleraa5e5ce2008-05-13 22:06:56 -07001188};
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001189
Steven Rostedta7900872011-12-16 16:23:44 -05001190#define ENTRY_SIZE sizeof(struct dyn_ftrace)
1191#define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001192
1193/* estimate from running different kernels */
1194#define NR_TO_INIT 10000
1195
1196static struct ftrace_page *ftrace_pages_start;
1197static struct ftrace_page *ftrace_pages;
1198
Steven Rostedt (Red Hat)68f40962014-05-01 12:44:50 -04001199static bool __always_inline ftrace_hash_empty(struct ftrace_hash *hash)
Steven Rostedt06a51d92011-12-19 19:07:36 -05001200{
1201 return !hash || !hash->count;
1202}
1203
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001204static struct ftrace_func_entry *
1205ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1206{
1207 unsigned long key;
1208 struct ftrace_func_entry *entry;
1209 struct hlist_head *hhd;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001210
Steven Rostedt06a51d92011-12-19 19:07:36 -05001211 if (ftrace_hash_empty(hash))
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001212 return NULL;
1213
1214 if (hash->size_bits > 0)
1215 key = hash_long(ip, hash->size_bits);
1216 else
1217 key = 0;
1218
1219 hhd = &hash->buckets[key];
1220
Steven Rostedt1bb539c2013-05-28 14:38:43 -04001221 hlist_for_each_entry_rcu_notrace(entry, hhd, hlist) {
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001222 if (entry->ip == ip)
1223 return entry;
1224 }
1225 return NULL;
1226}
1227
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001228static void __add_hash_entry(struct ftrace_hash *hash,
1229 struct ftrace_func_entry *entry)
1230{
1231 struct hlist_head *hhd;
1232 unsigned long key;
1233
1234 if (hash->size_bits)
1235 key = hash_long(entry->ip, hash->size_bits);
1236 else
1237 key = 0;
1238
1239 hhd = &hash->buckets[key];
1240 hlist_add_head(&entry->hlist, hhd);
1241 hash->count++;
1242}
1243
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001244static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1245{
1246 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001247
1248 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1249 if (!entry)
1250 return -ENOMEM;
1251
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001252 entry->ip = ip;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001253 __add_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001254
1255 return 0;
1256}
1257
1258static void
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001259free_hash_entry(struct ftrace_hash *hash,
1260 struct ftrace_func_entry *entry)
1261{
1262 hlist_del(&entry->hlist);
1263 kfree(entry);
1264 hash->count--;
1265}
1266
1267static void
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001268remove_hash_entry(struct ftrace_hash *hash,
1269 struct ftrace_func_entry *entry)
1270{
1271 hlist_del(&entry->hlist);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001272 hash->count--;
1273}
1274
1275static void ftrace_hash_clear(struct ftrace_hash *hash)
1276{
1277 struct hlist_head *hhd;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001278 struct hlist_node *tn;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001279 struct ftrace_func_entry *entry;
1280 int size = 1 << hash->size_bits;
1281 int i;
1282
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001283 if (!hash->count)
1284 return;
1285
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001286 for (i = 0; i < size; i++) {
1287 hhd = &hash->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001288 hlist_for_each_entry_safe(entry, tn, hhd, hlist)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001289 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001290 }
1291 FTRACE_WARN_ON(hash->count);
1292}
1293
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001294static void free_ftrace_hash(struct ftrace_hash *hash)
1295{
1296 if (!hash || hash == EMPTY_HASH)
1297 return;
1298 ftrace_hash_clear(hash);
1299 kfree(hash->buckets);
1300 kfree(hash);
1301}
1302
Steven Rostedt07fd5512011-05-05 18:03:47 -04001303static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1304{
1305 struct ftrace_hash *hash;
1306
1307 hash = container_of(rcu, struct ftrace_hash, rcu);
1308 free_ftrace_hash(hash);
1309}
1310
1311static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1312{
1313 if (!hash || hash == EMPTY_HASH)
1314 return;
1315 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1316}
1317
Jiri Olsa5500fa52012-02-15 15:51:54 +01001318void ftrace_free_filter(struct ftrace_ops *ops)
1319{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09001320 ftrace_ops_init(ops);
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001321 free_ftrace_hash(ops->func_hash->filter_hash);
1322 free_ftrace_hash(ops->func_hash->notrace_hash);
Jiri Olsa5500fa52012-02-15 15:51:54 +01001323}
1324
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001325static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1326{
1327 struct ftrace_hash *hash;
1328 int size;
1329
1330 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1331 if (!hash)
1332 return NULL;
1333
1334 size = 1 << size_bits;
Thomas Meyer47b0edc2011-11-29 22:08:00 +01001335 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001336
1337 if (!hash->buckets) {
1338 kfree(hash);
1339 return NULL;
1340 }
1341
1342 hash->size_bits = size_bits;
1343
1344 return hash;
1345}
1346
1347static struct ftrace_hash *
1348alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1349{
1350 struct ftrace_func_entry *entry;
1351 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001352 int size;
1353 int ret;
1354 int i;
1355
1356 new_hash = alloc_ftrace_hash(size_bits);
1357 if (!new_hash)
1358 return NULL;
1359
1360 /* Empty hash? */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001361 if (ftrace_hash_empty(hash))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001362 return new_hash;
1363
1364 size = 1 << hash->size_bits;
1365 for (i = 0; i < size; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001366 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001367 ret = add_hash_entry(new_hash, entry->ip);
1368 if (ret < 0)
1369 goto free_hash;
1370 }
1371 }
1372
1373 FTRACE_WARN_ON(new_hash->count != hash->count);
1374
1375 return new_hash;
1376
1377 free_hash:
1378 free_ftrace_hash(new_hash);
1379 return NULL;
1380}
1381
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001382static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001383ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001384static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001385ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001386
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001387static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1388 struct ftrace_hash *new_hash);
1389
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001390static int
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001391ftrace_hash_move(struct ftrace_ops *ops, int enable,
1392 struct ftrace_hash **dst, struct ftrace_hash *src)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001393{
1394 struct ftrace_func_entry *entry;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001395 struct hlist_node *tn;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001396 struct hlist_head *hhd;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001397 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001398 int size = src->count;
1399 int bits = 0;
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001400 int ret;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001401 int i;
1402
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001403 /* Reject setting notrace hash on IPMODIFY ftrace_ops */
1404 if (ops->flags & FTRACE_OPS_FL_IPMODIFY && !enable)
1405 return -EINVAL;
1406
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001407 /*
1408 * If the new source is empty, just free dst and assign it
1409 * the empty_hash.
1410 */
1411 if (!src->count) {
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001412 new_hash = EMPTY_HASH;
1413 goto update;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001414 }
1415
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001416 /*
1417 * Make the hash size about 1/2 the # found
1418 */
1419 for (size /= 2; size; size >>= 1)
1420 bits++;
1421
1422 /* Don't allocate too much */
1423 if (bits > FTRACE_HASH_MAX_BITS)
1424 bits = FTRACE_HASH_MAX_BITS;
1425
Steven Rostedt07fd5512011-05-05 18:03:47 -04001426 new_hash = alloc_ftrace_hash(bits);
1427 if (!new_hash)
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001428 return -ENOMEM;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001429
1430 size = 1 << src->size_bits;
1431 for (i = 0; i < size; i++) {
1432 hhd = &src->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001433 hlist_for_each_entry_safe(entry, tn, hhd, hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001434 remove_hash_entry(src, entry);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001435 __add_hash_entry(new_hash, entry);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001436 }
1437 }
1438
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001439update:
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001440 /* Make sure this can be applied if it is IPMODIFY ftrace_ops */
1441 if (enable) {
1442 /* IPMODIFY should be updated only when filter_hash updating */
1443 ret = ftrace_hash_ipmodify_update(ops, new_hash);
1444 if (ret < 0) {
1445 free_ftrace_hash(new_hash);
1446 return ret;
1447 }
1448 }
1449
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001450 /*
1451 * Remove the current set, update the hash and add
1452 * them back.
1453 */
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001454 ftrace_hash_rec_disable_modify(ops, enable);
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001455
Steven Rostedt07fd5512011-05-05 18:03:47 -04001456 rcu_assign_pointer(*dst, new_hash);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001457
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001458 ftrace_hash_rec_enable_modify(ops, enable);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001459
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001460 return 0;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001461}
1462
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001463static bool hash_contains_ip(unsigned long ip,
1464 struct ftrace_ops_hash *hash)
1465{
1466 /*
1467 * The function record is a match if it exists in the filter
1468 * hash and not in the notrace hash. Note, an emty hash is
1469 * considered a match for the filter hash, but an empty
1470 * notrace hash is considered not in the notrace hash.
1471 */
1472 return (ftrace_hash_empty(hash->filter_hash) ||
1473 ftrace_lookup_ip(hash->filter_hash, ip)) &&
1474 (ftrace_hash_empty(hash->notrace_hash) ||
1475 !ftrace_lookup_ip(hash->notrace_hash, ip));
1476}
1477
Steven Rostedt265c8312009-02-13 12:43:56 -05001478/*
Steven Rostedtb8489142011-05-04 09:27:52 -04001479 * Test the hashes for this ops to see if we want to call
1480 * the ops->func or not.
1481 *
1482 * It's a match if the ip is in the ops->filter_hash or
1483 * the filter_hash does not exist or is empty,
1484 * AND
1485 * the ip is not in the ops->notrace_hash.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04001486 *
1487 * This needs to be called with preemption disabled as
1488 * the hashes are freed with call_rcu_sched().
Steven Rostedtb8489142011-05-04 09:27:52 -04001489 */
1490static int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001491ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04001492{
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001493 struct ftrace_ops_hash hash;
Steven Rostedtb8489142011-05-04 09:27:52 -04001494 int ret;
1495
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001496#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1497 /*
1498 * There's a small race when adding ops that the ftrace handler
1499 * that wants regs, may be called without them. We can not
1500 * allow that handler to be called if regs is NULL.
1501 */
1502 if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS))
1503 return 0;
1504#endif
1505
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001506 hash.filter_hash = rcu_dereference_raw_notrace(ops->func_hash->filter_hash);
1507 hash.notrace_hash = rcu_dereference_raw_notrace(ops->func_hash->notrace_hash);
Steven Rostedtb8489142011-05-04 09:27:52 -04001508
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001509 if (hash_contains_ip(ip, &hash))
Steven Rostedtb8489142011-05-04 09:27:52 -04001510 ret = 1;
1511 else
1512 ret = 0;
Steven Rostedtb8489142011-05-04 09:27:52 -04001513
1514 return ret;
1515}
1516
1517/*
Steven Rostedt265c8312009-02-13 12:43:56 -05001518 * This is a double for. Do not use 'break' to break out of the loop,
1519 * you must use a goto.
1520 */
1521#define do_for_each_ftrace_rec(pg, rec) \
1522 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1523 int _____i; \
1524 for (_____i = 0; _____i < pg->index; _____i++) { \
1525 rec = &pg->records[_____i];
1526
1527#define while_for_each_ftrace_rec() \
1528 } \
1529 }
Abhishek Sagarecea6562008-06-21 23:47:53 +05301530
Steven Rostedt5855fea2011-12-16 19:27:42 -05001531
1532static int ftrace_cmp_recs(const void *a, const void *b)
1533{
Steven Rostedta650e022012-04-25 13:48:13 -04001534 const struct dyn_ftrace *key = a;
1535 const struct dyn_ftrace *rec = b;
Steven Rostedt5855fea2011-12-16 19:27:42 -05001536
Steven Rostedta650e022012-04-25 13:48:13 -04001537 if (key->flags < rec->ip)
Steven Rostedt5855fea2011-12-16 19:27:42 -05001538 return -1;
Steven Rostedta650e022012-04-25 13:48:13 -04001539 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1540 return 1;
1541 return 0;
1542}
1543
Michael Ellerman04cf31a2016-03-24 22:04:01 +11001544/**
1545 * ftrace_location_range - return the first address of a traced location
1546 * if it touches the given ip range
1547 * @start: start of range to search.
1548 * @end: end of range to search (inclusive). @end points to the last byte
1549 * to check.
1550 *
1551 * Returns rec->ip if the related ftrace location is a least partly within
1552 * the given address range. That is, the first address of the instruction
1553 * that is either a NOP or call to the function tracer. It checks the ftrace
1554 * internal tables to determine if the address belongs or not.
1555 */
1556unsigned long ftrace_location_range(unsigned long start, unsigned long end)
Steven Rostedta650e022012-04-25 13:48:13 -04001557{
1558 struct ftrace_page *pg;
1559 struct dyn_ftrace *rec;
1560 struct dyn_ftrace key;
1561
1562 key.ip = start;
1563 key.flags = end; /* overload flags, as it is unsigned long */
1564
1565 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1566 if (end < pg->records[0].ip ||
1567 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1568 continue;
1569 rec = bsearch(&key, pg->records, pg->index,
1570 sizeof(struct dyn_ftrace),
1571 ftrace_cmp_recs);
1572 if (rec)
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001573 return rec->ip;
Steven Rostedta650e022012-04-25 13:48:13 -04001574 }
1575
Steven Rostedt5855fea2011-12-16 19:27:42 -05001576 return 0;
1577}
1578
Steven Rostedtc88fd862011-08-16 09:53:39 -04001579/**
1580 * ftrace_location - return true if the ip giving is a traced location
1581 * @ip: the instruction pointer to check
1582 *
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001583 * Returns rec->ip if @ip given is a pointer to a ftrace location.
Steven Rostedtc88fd862011-08-16 09:53:39 -04001584 * That is, the instruction that is either a NOP or call to
1585 * the function tracer. It checks the ftrace internal tables to
1586 * determine if the address belongs or not.
1587 */
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001588unsigned long ftrace_location(unsigned long ip)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001589{
Steven Rostedta650e022012-04-25 13:48:13 -04001590 return ftrace_location_range(ip, ip);
1591}
Steven Rostedtc88fd862011-08-16 09:53:39 -04001592
Steven Rostedta650e022012-04-25 13:48:13 -04001593/**
1594 * ftrace_text_reserved - return true if range contains an ftrace location
1595 * @start: start of range to search
1596 * @end: end of range to search (inclusive). @end points to the last byte to check.
1597 *
1598 * Returns 1 if @start and @end contains a ftrace location.
1599 * That is, the instruction that is either a NOP or call to
1600 * the function tracer. It checks the ftrace internal tables to
1601 * determine if the address belongs or not.
1602 */
Sasha Levind88471c2013-01-09 18:09:20 -05001603int ftrace_text_reserved(const void *start, const void *end)
Steven Rostedta650e022012-04-25 13:48:13 -04001604{
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001605 unsigned long ret;
1606
1607 ret = ftrace_location_range((unsigned long)start,
1608 (unsigned long)end);
1609
1610 return (int)!!ret;
Steven Rostedtc88fd862011-08-16 09:53:39 -04001611}
1612
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001613/* Test if ops registered to this rec needs regs */
1614static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec)
1615{
1616 struct ftrace_ops *ops;
1617 bool keep_regs = false;
1618
1619 for (ops = ftrace_ops_list;
1620 ops != &ftrace_list_end; ops = ops->next) {
1621 /* pass rec in as regs to have non-NULL val */
1622 if (ftrace_ops_test(ops, rec->ip, rec)) {
1623 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1624 keep_regs = true;
1625 break;
1626 }
1627 }
1628 }
1629
1630 return keep_regs;
1631}
1632
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001633static bool __ftrace_hash_rec_update(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001634 int filter_hash,
1635 bool inc)
1636{
1637 struct ftrace_hash *hash;
1638 struct ftrace_hash *other_hash;
1639 struct ftrace_page *pg;
1640 struct dyn_ftrace *rec;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001641 bool update = false;
Steven Rostedted926f92011-05-03 13:25:24 -04001642 int count = 0;
1643 int all = 0;
1644
1645 /* Only update if the ops has been registered */
1646 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001647 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001648
1649 /*
1650 * In the filter_hash case:
1651 * If the count is zero, we update all records.
1652 * Otherwise we just update the items in the hash.
1653 *
1654 * In the notrace_hash case:
1655 * We enable the update in the hash.
1656 * As disabling notrace means enabling the tracing,
1657 * and enabling notrace means disabling, the inc variable
1658 * gets inversed.
1659 */
1660 if (filter_hash) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001661 hash = ops->func_hash->filter_hash;
1662 other_hash = ops->func_hash->notrace_hash;
Steven Rostedt06a51d92011-12-19 19:07:36 -05001663 if (ftrace_hash_empty(hash))
Steven Rostedted926f92011-05-03 13:25:24 -04001664 all = 1;
1665 } else {
1666 inc = !inc;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001667 hash = ops->func_hash->notrace_hash;
1668 other_hash = ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04001669 /*
1670 * If the notrace hash has no items,
1671 * then there's nothing to do.
1672 */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001673 if (ftrace_hash_empty(hash))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001674 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001675 }
1676
1677 do_for_each_ftrace_rec(pg, rec) {
1678 int in_other_hash = 0;
1679 int in_hash = 0;
1680 int match = 0;
1681
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05001682 if (rec->flags & FTRACE_FL_DISABLED)
1683 continue;
1684
Steven Rostedted926f92011-05-03 13:25:24 -04001685 if (all) {
1686 /*
1687 * Only the filter_hash affects all records.
1688 * Update if the record is not in the notrace hash.
1689 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001690 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
Steven Rostedted926f92011-05-03 13:25:24 -04001691 match = 1;
1692 } else {
Steven Rostedt06a51d92011-12-19 19:07:36 -05001693 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1694 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
Steven Rostedted926f92011-05-03 13:25:24 -04001695
1696 /*
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001697 * If filter_hash is set, we want to match all functions
1698 * that are in the hash but not in the other hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001699 *
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001700 * If filter_hash is not set, then we are decrementing.
1701 * That means we match anything that is in the hash
1702 * and also in the other_hash. That is, we need to turn
1703 * off functions in the other hash because they are disabled
1704 * by this hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001705 */
1706 if (filter_hash && in_hash && !in_other_hash)
1707 match = 1;
1708 else if (!filter_hash && in_hash &&
Steven Rostedt06a51d92011-12-19 19:07:36 -05001709 (in_other_hash || ftrace_hash_empty(other_hash)))
Steven Rostedted926f92011-05-03 13:25:24 -04001710 match = 1;
1711 }
1712 if (!match)
1713 continue;
1714
1715 if (inc) {
1716 rec->flags++;
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001717 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001718 return false;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001719
1720 /*
1721 * If there's only a single callback registered to a
1722 * function, and the ops has a trampoline registered
1723 * for it, then we can call it directly.
1724 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001725 if (ftrace_rec_count(rec) == 1 && ops->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001726 rec->flags |= FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001727 else
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001728 /*
1729 * If we are adding another function callback
1730 * to this function, and the previous had a
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04001731 * custom trampoline in use, then we need to go
1732 * back to the default trampoline.
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001733 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001734 rec->flags &= ~FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001735
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001736 /*
1737 * If any ops wants regs saved for this function
1738 * then all ops will get saved regs.
1739 */
1740 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1741 rec->flags |= FTRACE_FL_REGS;
Steven Rostedted926f92011-05-03 13:25:24 -04001742 } else {
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001743 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001744 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001745 rec->flags--;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001746
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001747 /*
1748 * If the rec had REGS enabled and the ops that is
1749 * being removed had REGS set, then see if there is
1750 * still any ops for this record that wants regs.
1751 * If not, we can stop recording them.
1752 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001753 if (ftrace_rec_count(rec) > 0 &&
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001754 rec->flags & FTRACE_FL_REGS &&
1755 ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1756 if (!test_rec_ops_needs_regs(rec))
1757 rec->flags &= ~FTRACE_FL_REGS;
1758 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001759
1760 /*
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001761 * If the rec had TRAMP enabled, then it needs to
1762 * be cleared. As TRAMP can only be enabled iff
1763 * there is only a single ops attached to it.
1764 * In otherwords, always disable it on decrementing.
1765 * In the future, we may set it if rec count is
1766 * decremented to one, and the ops that is left
1767 * has a trampoline.
1768 */
1769 rec->flags &= ~FTRACE_FL_TRAMP;
1770
1771 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001772 * flags will be cleared in ftrace_check_record()
1773 * if rec count is zero.
1774 */
Steven Rostedted926f92011-05-03 13:25:24 -04001775 }
1776 count++;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001777
1778 /* Must match FTRACE_UPDATE_CALLS in ftrace_modify_all_code() */
1779 update |= ftrace_test_record(rec, 1) != FTRACE_UPDATE_IGNORE;
1780
Steven Rostedted926f92011-05-03 13:25:24 -04001781 /* Shortcut, if we handled all records, we are done. */
1782 if (!all && count == hash->count)
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001783 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001784 } while_for_each_ftrace_rec();
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001785
1786 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001787}
1788
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001789static bool ftrace_hash_rec_disable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001790 int filter_hash)
1791{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001792 return __ftrace_hash_rec_update(ops, filter_hash, 0);
Steven Rostedted926f92011-05-03 13:25:24 -04001793}
1794
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001795static bool ftrace_hash_rec_enable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001796 int filter_hash)
1797{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001798 return __ftrace_hash_rec_update(ops, filter_hash, 1);
Steven Rostedted926f92011-05-03 13:25:24 -04001799}
1800
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001801static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops,
1802 int filter_hash, int inc)
1803{
1804 struct ftrace_ops *op;
1805
1806 __ftrace_hash_rec_update(ops, filter_hash, inc);
1807
1808 if (ops->func_hash != &global_ops.local_hash)
1809 return;
1810
1811 /*
1812 * If the ops shares the global_ops hash, then we need to update
1813 * all ops that are enabled and use this hash.
1814 */
1815 do_for_each_ftrace_op(op, ftrace_ops_list) {
1816 /* Already done */
1817 if (op == ops)
1818 continue;
1819 if (op->func_hash == &global_ops.local_hash)
1820 __ftrace_hash_rec_update(op, filter_hash, inc);
1821 } while_for_each_ftrace_op(op);
1822}
1823
1824static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops,
1825 int filter_hash)
1826{
1827 ftrace_hash_rec_update_modify(ops, filter_hash, 0);
1828}
1829
1830static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops,
1831 int filter_hash)
1832{
1833 ftrace_hash_rec_update_modify(ops, filter_hash, 1);
1834}
1835
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001836/*
1837 * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK
1838 * or no-needed to update, -EBUSY if it detects a conflict of the flag
1839 * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs.
1840 * Note that old_hash and new_hash has below meanings
1841 * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected)
1842 * - If the hash is EMPTY_HASH, it hits nothing
1843 * - Anything else hits the recs which match the hash entries.
1844 */
1845static int __ftrace_hash_update_ipmodify(struct ftrace_ops *ops,
1846 struct ftrace_hash *old_hash,
1847 struct ftrace_hash *new_hash)
1848{
1849 struct ftrace_page *pg;
1850 struct dyn_ftrace *rec, *end = NULL;
1851 int in_old, in_new;
1852
1853 /* Only update if the ops has been registered */
1854 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1855 return 0;
1856
1857 if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY))
1858 return 0;
1859
1860 /*
1861 * Since the IPMODIFY is a very address sensitive action, we do not
1862 * allow ftrace_ops to set all functions to new hash.
1863 */
1864 if (!new_hash || !old_hash)
1865 return -EINVAL;
1866
1867 /* Update rec->flags */
1868 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05001869
1870 if (rec->flags & FTRACE_FL_DISABLED)
1871 continue;
1872
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001873 /* We need to update only differences of filter_hash */
1874 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1875 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1876 if (in_old == in_new)
1877 continue;
1878
1879 if (in_new) {
1880 /* New entries must ensure no others are using it */
1881 if (rec->flags & FTRACE_FL_IPMODIFY)
1882 goto rollback;
1883 rec->flags |= FTRACE_FL_IPMODIFY;
1884 } else /* Removed entry */
1885 rec->flags &= ~FTRACE_FL_IPMODIFY;
1886 } while_for_each_ftrace_rec();
1887
1888 return 0;
1889
1890rollback:
1891 end = rec;
1892
1893 /* Roll back what we did above */
1894 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05001895
1896 if (rec->flags & FTRACE_FL_DISABLED)
1897 continue;
1898
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001899 if (rec == end)
1900 goto err_out;
1901
1902 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1903 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1904 if (in_old == in_new)
1905 continue;
1906
1907 if (in_new)
1908 rec->flags &= ~FTRACE_FL_IPMODIFY;
1909 else
1910 rec->flags |= FTRACE_FL_IPMODIFY;
1911 } while_for_each_ftrace_rec();
1912
1913err_out:
1914 return -EBUSY;
1915}
1916
1917static int ftrace_hash_ipmodify_enable(struct ftrace_ops *ops)
1918{
1919 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1920
1921 if (ftrace_hash_empty(hash))
1922 hash = NULL;
1923
1924 return __ftrace_hash_update_ipmodify(ops, EMPTY_HASH, hash);
1925}
1926
1927/* Disabling always succeeds */
1928static void ftrace_hash_ipmodify_disable(struct ftrace_ops *ops)
1929{
1930 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1931
1932 if (ftrace_hash_empty(hash))
1933 hash = NULL;
1934
1935 __ftrace_hash_update_ipmodify(ops, hash, EMPTY_HASH);
1936}
1937
1938static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1939 struct ftrace_hash *new_hash)
1940{
1941 struct ftrace_hash *old_hash = ops->func_hash->filter_hash;
1942
1943 if (ftrace_hash_empty(old_hash))
1944 old_hash = NULL;
1945
1946 if (ftrace_hash_empty(new_hash))
1947 new_hash = NULL;
1948
1949 return __ftrace_hash_update_ipmodify(ops, old_hash, new_hash);
1950}
1951
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05001952static void print_ip_ins(const char *fmt, const unsigned char *p)
Steven Rostedt05736a42008-09-22 14:55:47 -07001953{
1954 int i;
1955
1956 printk(KERN_CONT "%s", fmt);
1957
1958 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1959 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1960}
1961
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001962static struct ftrace_ops *
1963ftrace_find_tramp_ops_any(struct dyn_ftrace *rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05001964static struct ftrace_ops *
1965ftrace_find_tramp_ops_next(struct dyn_ftrace *rec, struct ftrace_ops *ops);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001966
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05001967enum ftrace_bug_type ftrace_bug_type;
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05001968const void *ftrace_expected;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05001969
1970static void print_bug_type(void)
1971{
1972 switch (ftrace_bug_type) {
1973 case FTRACE_BUG_UNKNOWN:
1974 break;
1975 case FTRACE_BUG_INIT:
1976 pr_info("Initializing ftrace call sites\n");
1977 break;
1978 case FTRACE_BUG_NOP:
1979 pr_info("Setting ftrace call site to NOP\n");
1980 break;
1981 case FTRACE_BUG_CALL:
1982 pr_info("Setting ftrace call site to call ftrace function\n");
1983 break;
1984 case FTRACE_BUG_UPDATE:
1985 pr_info("Updating ftrace call site to call a different ftrace function\n");
1986 break;
1987 }
1988}
1989
Steven Rostedtc88fd862011-08-16 09:53:39 -04001990/**
1991 * ftrace_bug - report and shutdown function tracer
1992 * @failed: The failed type (EFAULT, EINVAL, EPERM)
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001993 * @rec: The record that failed
Steven Rostedtc88fd862011-08-16 09:53:39 -04001994 *
1995 * The arch code that enables or disables the function tracing
1996 * can call ftrace_bug() when it has detected a problem in
1997 * modifying the code. @failed should be one of either:
1998 * EFAULT - if the problem happens on reading the @ip address
1999 * EINVAL - if what is read at @ip is not what was expected
2000 * EPERM - if the problem happens on writting to the @ip address
2001 */
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002002void ftrace_bug(int failed, struct dyn_ftrace *rec)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002003{
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002004 unsigned long ip = rec ? rec->ip : 0;
2005
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002006 switch (failed) {
2007 case -EFAULT:
2008 FTRACE_WARN_ON_ONCE(1);
2009 pr_info("ftrace faulted on modifying ");
2010 print_ip_sym(ip);
2011 break;
2012 case -EINVAL:
2013 FTRACE_WARN_ON_ONCE(1);
2014 pr_info("ftrace failed to modify ");
2015 print_ip_sym(ip);
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002016 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002017 pr_cont("\n");
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002018 if (ftrace_expected) {
2019 print_ip_ins(" expected: ", ftrace_expected);
2020 pr_cont("\n");
2021 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002022 break;
2023 case -EPERM:
2024 FTRACE_WARN_ON_ONCE(1);
2025 pr_info("ftrace faulted on writing ");
2026 print_ip_sym(ip);
2027 break;
2028 default:
2029 FTRACE_WARN_ON_ONCE(1);
2030 pr_info("ftrace faulted on unknown error ");
2031 print_ip_sym(ip);
2032 }
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002033 print_bug_type();
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002034 if (rec) {
2035 struct ftrace_ops *ops = NULL;
2036
2037 pr_info("ftrace record flags: %lx\n", rec->flags);
2038 pr_cont(" (%ld)%s", ftrace_rec_count(rec),
2039 rec->flags & FTRACE_FL_REGS ? " R" : " ");
2040 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2041 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002042 if (ops) {
2043 do {
2044 pr_cont("\ttramp: %pS (%pS)",
2045 (void *)ops->trampoline,
2046 (void *)ops->func);
2047 ops = ftrace_find_tramp_ops_next(rec, ops);
2048 } while (ops);
2049 } else
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002050 pr_cont("\ttramp: ERROR!");
2051
2052 }
2053 ip = ftrace_get_addr_curr(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002054 pr_cont("\n expected tramp: %lx\n", ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002055 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002056}
2057
Steven Rostedtc88fd862011-08-16 09:53:39 -04002058static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02002059{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002060 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01002061
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002062 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2063
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002064 if (rec->flags & FTRACE_FL_DISABLED)
2065 return FTRACE_UPDATE_IGNORE;
2066
Steven Rostedt982c3502008-11-15 16:31:41 -05002067 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002068 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05002069 *
Steven Rostedted926f92011-05-03 13:25:24 -04002070 * If the record has a ref count, then we need to enable it
2071 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05002072 *
Steven Rostedted926f92011-05-03 13:25:24 -04002073 * Otherwise we make sure its disabled.
2074 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002075 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04002076 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05002077 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002078 if (enable && ftrace_rec_count(rec))
Steven Rostedted926f92011-05-03 13:25:24 -04002079 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02002080
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002081 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002082 * If enabling and the REGS flag does not match the REGS_EN, or
2083 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
2084 * this record. Set flags to fail the compare against ENABLED.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002085 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002086 if (flag) {
2087 if (!(rec->flags & FTRACE_FL_REGS) !=
2088 !(rec->flags & FTRACE_FL_REGS_EN))
2089 flag |= FTRACE_FL_REGS;
2090
2091 if (!(rec->flags & FTRACE_FL_TRAMP) !=
2092 !(rec->flags & FTRACE_FL_TRAMP_EN))
2093 flag |= FTRACE_FL_TRAMP;
2094 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002095
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002096 /* If the state of this record hasn't changed, then do nothing */
2097 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04002098 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002099
2100 if (flag) {
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002101 /* Save off if rec is being enabled (for return value) */
2102 flag ^= rec->flags & FTRACE_FL_ENABLED;
2103
2104 if (update) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04002105 rec->flags |= FTRACE_FL_ENABLED;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002106 if (flag & FTRACE_FL_REGS) {
2107 if (rec->flags & FTRACE_FL_REGS)
2108 rec->flags |= FTRACE_FL_REGS_EN;
2109 else
2110 rec->flags &= ~FTRACE_FL_REGS_EN;
2111 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002112 if (flag & FTRACE_FL_TRAMP) {
2113 if (rec->flags & FTRACE_FL_TRAMP)
2114 rec->flags |= FTRACE_FL_TRAMP_EN;
2115 else
2116 rec->flags &= ~FTRACE_FL_TRAMP_EN;
2117 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002118 }
2119
2120 /*
2121 * If this record is being updated from a nop, then
2122 * return UPDATE_MAKE_CALL.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002123 * Otherwise,
2124 * return UPDATE_MODIFY_CALL to tell the caller to convert
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002125 * from the save regs, to a non-save regs function or
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002126 * vice versa, or from a trampoline call.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002127 */
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002128 if (flag & FTRACE_FL_ENABLED) {
2129 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002130 return FTRACE_UPDATE_MAKE_CALL;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002131 }
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002132
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002133 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002134 return FTRACE_UPDATE_MODIFY_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002135 }
2136
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002137 if (update) {
2138 /* If there's no more users, clear all flags */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002139 if (!ftrace_rec_count(rec))
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002140 rec->flags = 0;
2141 else
Steven Rostedt (Red Hat)b24d4432015-03-04 23:10:28 -05002142 /*
2143 * Just disable the record, but keep the ops TRAMP
2144 * and REGS states. The _EN flags must be disabled though.
2145 */
2146 rec->flags &= ~(FTRACE_FL_ENABLED | FTRACE_FL_TRAMP_EN |
2147 FTRACE_FL_REGS_EN);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002148 }
Steven Rostedtc88fd862011-08-16 09:53:39 -04002149
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002150 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002151 return FTRACE_UPDATE_MAKE_NOP;
2152}
2153
2154/**
2155 * ftrace_update_record, set a record that now is tracing or not
2156 * @rec: the record to update
2157 * @enable: set to 1 if the record is tracing, zero to force disable
2158 *
2159 * The records that represent all functions that can be traced need
2160 * to be updated when tracing has been enabled.
2161 */
2162int ftrace_update_record(struct dyn_ftrace *rec, int enable)
2163{
2164 return ftrace_check_record(rec, enable, 1);
2165}
2166
2167/**
2168 * ftrace_test_record, check if the record has been enabled or not
2169 * @rec: the record to test
2170 * @enable: set to 1 to check if enabled, 0 if it is disabled
2171 *
2172 * The arch code may need to test if a record is already set to
2173 * tracing to determine how to modify the function code that it
2174 * represents.
2175 */
2176int ftrace_test_record(struct dyn_ftrace *rec, int enable)
2177{
2178 return ftrace_check_record(rec, enable, 0);
2179}
2180
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002181static struct ftrace_ops *
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002182ftrace_find_tramp_ops_any(struct dyn_ftrace *rec)
2183{
2184 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002185 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002186
2187 do_for_each_ftrace_op(op, ftrace_ops_list) {
2188
2189 if (!op->trampoline)
2190 continue;
2191
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002192 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002193 return op;
2194 } while_for_each_ftrace_op(op);
2195
2196 return NULL;
2197}
2198
2199static struct ftrace_ops *
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002200ftrace_find_tramp_ops_next(struct dyn_ftrace *rec,
2201 struct ftrace_ops *op)
2202{
2203 unsigned long ip = rec->ip;
2204
2205 while_for_each_ftrace_op(op) {
2206
2207 if (!op->trampoline)
2208 continue;
2209
2210 if (hash_contains_ip(ip, op->func_hash))
2211 return op;
2212 }
2213
2214 return NULL;
2215}
2216
2217static struct ftrace_ops *
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002218ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec)
2219{
2220 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002221 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002222
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002223 /*
2224 * Need to check removed ops first.
2225 * If they are being removed, and this rec has a tramp,
2226 * and this rec is in the ops list, then it would be the
2227 * one with the tramp.
2228 */
2229 if (removed_ops) {
2230 if (hash_contains_ip(ip, &removed_ops->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002231 return removed_ops;
2232 }
2233
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002234 /*
2235 * Need to find the current trampoline for a rec.
2236 * Now, a trampoline is only attached to a rec if there
2237 * was a single 'ops' attached to it. But this can be called
2238 * when we are adding another op to the rec or removing the
2239 * current one. Thus, if the op is being added, we can
2240 * ignore it because it hasn't attached itself to the rec
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002241 * yet.
2242 *
2243 * If an ops is being modified (hooking to different functions)
2244 * then we don't care about the new functions that are being
2245 * added, just the old ones (that are probably being removed).
2246 *
2247 * If we are adding an ops to a function that already is using
2248 * a trampoline, it needs to be removed (trampolines are only
2249 * for single ops connected), then an ops that is not being
2250 * modified also needs to be checked.
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002251 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002252 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002253
2254 if (!op->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002255 continue;
2256
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002257 /*
2258 * If the ops is being added, it hasn't gotten to
2259 * the point to be removed from this tree yet.
2260 */
2261 if (op->flags & FTRACE_OPS_FL_ADDING)
2262 continue;
2263
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002264
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002265 /*
2266 * If the ops is being modified and is in the old
2267 * hash, then it is probably being removed from this
2268 * function.
2269 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002270 if ((op->flags & FTRACE_OPS_FL_MODIFYING) &&
2271 hash_contains_ip(ip, &op->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002272 return op;
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002273 /*
2274 * If the ops is not being added or modified, and it's
2275 * in its normal filter hash, then this must be the one
2276 * we want!
2277 */
2278 if (!(op->flags & FTRACE_OPS_FL_MODIFYING) &&
2279 hash_contains_ip(ip, op->func_hash))
2280 return op;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002281
2282 } while_for_each_ftrace_op(op);
2283
2284 return NULL;
2285}
2286
2287static struct ftrace_ops *
2288ftrace_find_tramp_ops_new(struct dyn_ftrace *rec)
2289{
2290 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002291 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002292
2293 do_for_each_ftrace_op(op, ftrace_ops_list) {
2294 /* pass rec in as regs to have non-NULL val */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002295 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002296 return op;
2297 } while_for_each_ftrace_op(op);
2298
2299 return NULL;
2300}
2301
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002302/**
2303 * ftrace_get_addr_new - Get the call address to set to
2304 * @rec: The ftrace record descriptor
2305 *
2306 * If the record has the FTRACE_FL_REGS set, that means that it
2307 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2308 * is not not set, then it wants to convert to the normal callback.
2309 *
2310 * Returns the address of the trampoline to set to
2311 */
2312unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec)
2313{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002314 struct ftrace_ops *ops;
2315
2316 /* Trampolines take precedence over regs */
2317 if (rec->flags & FTRACE_FL_TRAMP) {
2318 ops = ftrace_find_tramp_ops_new(rec);
2319 if (FTRACE_WARN_ON(!ops || !ops->trampoline)) {
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04002320 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2321 (void *)rec->ip, (void *)rec->ip, rec->flags);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002322 /* Ftrace is shutting down, return anything */
2323 return (unsigned long)FTRACE_ADDR;
2324 }
2325 return ops->trampoline;
2326 }
2327
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002328 if (rec->flags & FTRACE_FL_REGS)
2329 return (unsigned long)FTRACE_REGS_ADDR;
2330 else
2331 return (unsigned long)FTRACE_ADDR;
2332}
2333
2334/**
2335 * ftrace_get_addr_curr - Get the call address that is already there
2336 * @rec: The ftrace record descriptor
2337 *
2338 * The FTRACE_FL_REGS_EN is set when the record already points to
2339 * a function that saves all the regs. Basically the '_EN' version
2340 * represents the current state of the function.
2341 *
2342 * Returns the address of the trampoline that is currently being called
2343 */
2344unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec)
2345{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002346 struct ftrace_ops *ops;
2347
2348 /* Trampolines take precedence over regs */
2349 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2350 ops = ftrace_find_tramp_ops_curr(rec);
2351 if (FTRACE_WARN_ON(!ops)) {
Joe Perchesa395d6a2016-03-22 14:28:09 -07002352 pr_warn("Bad trampoline accounting at: %p (%pS)\n",
2353 (void *)rec->ip, (void *)rec->ip);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002354 /* Ftrace is shutting down, return anything */
2355 return (unsigned long)FTRACE_ADDR;
2356 }
2357 return ops->trampoline;
2358 }
2359
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002360 if (rec->flags & FTRACE_FL_REGS_EN)
2361 return (unsigned long)FTRACE_REGS_ADDR;
2362 else
2363 return (unsigned long)FTRACE_ADDR;
2364}
2365
Steven Rostedtc88fd862011-08-16 09:53:39 -04002366static int
2367__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
2368{
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002369 unsigned long ftrace_old_addr;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002370 unsigned long ftrace_addr;
2371 int ret;
2372
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002373 ftrace_addr = ftrace_get_addr_new(rec);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002374
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002375 /* This needs to be done before we call ftrace_update_record */
2376 ftrace_old_addr = ftrace_get_addr_curr(rec);
2377
2378 ret = ftrace_update_record(rec, enable);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002379
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002380 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2381
Steven Rostedtc88fd862011-08-16 09:53:39 -04002382 switch (ret) {
2383 case FTRACE_UPDATE_IGNORE:
2384 return 0;
2385
2386 case FTRACE_UPDATE_MAKE_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002387 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002388 return ftrace_make_call(rec, ftrace_addr);
2389
2390 case FTRACE_UPDATE_MAKE_NOP:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002391 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedt (Red Hat)39b55522014-08-17 20:59:10 -04002392 return ftrace_make_nop(NULL, rec, ftrace_old_addr);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002393
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002394 case FTRACE_UPDATE_MODIFY_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002395 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002396 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002397 }
2398
2399 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02002400}
2401
Steven Rostedte4f5d542012-04-27 09:13:18 -04002402void __weak ftrace_replace_code(int enable)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002403{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002404 struct dyn_ftrace *rec;
2405 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002406 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002407
Steven Rostedt45a4a232011-04-21 23:16:46 -04002408 if (unlikely(ftrace_disabled))
2409 return;
2410
Steven Rostedt265c8312009-02-13 12:43:56 -05002411 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05002412
2413 if (rec->flags & FTRACE_FL_DISABLED)
2414 continue;
2415
Steven Rostedte4f5d542012-04-27 09:13:18 -04002416 failed = __ftrace_replace_code(rec, enable);
Zhaoleifa9d13c2009-03-13 17:16:34 +08002417 if (failed) {
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002418 ftrace_bug(failed, rec);
Steven Rostedt3279ba32009-10-07 16:57:56 -04002419 /* Stop processing */
2420 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05002421 }
2422 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002423}
2424
Steven Rostedtc88fd862011-08-16 09:53:39 -04002425struct ftrace_rec_iter {
2426 struct ftrace_page *pg;
2427 int index;
2428};
2429
2430/**
2431 * ftrace_rec_iter_start, start up iterating over traced functions
2432 *
2433 * Returns an iterator handle that is used to iterate over all
2434 * the records that represent address locations where functions
2435 * are traced.
2436 *
2437 * May return NULL if no records are available.
2438 */
2439struct ftrace_rec_iter *ftrace_rec_iter_start(void)
2440{
2441 /*
2442 * We only use a single iterator.
2443 * Protected by the ftrace_lock mutex.
2444 */
2445 static struct ftrace_rec_iter ftrace_rec_iter;
2446 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
2447
2448 iter->pg = ftrace_pages_start;
2449 iter->index = 0;
2450
2451 /* Could have empty pages */
2452 while (iter->pg && !iter->pg->index)
2453 iter->pg = iter->pg->next;
2454
2455 if (!iter->pg)
2456 return NULL;
2457
2458 return iter;
2459}
2460
2461/**
2462 * ftrace_rec_iter_next, get the next record to process.
2463 * @iter: The handle to the iterator.
2464 *
2465 * Returns the next iterator after the given iterator @iter.
2466 */
2467struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
2468{
2469 iter->index++;
2470
2471 if (iter->index >= iter->pg->index) {
2472 iter->pg = iter->pg->next;
2473 iter->index = 0;
2474
2475 /* Could have empty pages */
2476 while (iter->pg && !iter->pg->index)
2477 iter->pg = iter->pg->next;
2478 }
2479
2480 if (!iter->pg)
2481 return NULL;
2482
2483 return iter;
2484}
2485
2486/**
2487 * ftrace_rec_iter_record, get the record at the iterator location
2488 * @iter: The current iterator location
2489 *
2490 * Returns the record that the current @iter is at.
2491 */
2492struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
2493{
2494 return &iter->pg->records[iter->index];
2495}
2496
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302497static int
Steven Rostedt31e88902008-11-14 16:21:19 -08002498ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002499{
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002500 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002501
Steven Rostedt45a4a232011-04-21 23:16:46 -04002502 if (unlikely(ftrace_disabled))
2503 return 0;
2504
Shaohua Li25aac9d2009-01-09 11:29:40 +08002505 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002506 if (ret) {
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002507 ftrace_bug_type = FTRACE_BUG_INIT;
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002508 ftrace_bug(ret, rec);
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302509 return 0;
Steven Rostedt37ad5082008-05-12 21:20:48 +02002510 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302511 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002512}
2513
Steven Rostedt000ab692009-02-17 13:35:06 -05002514/*
2515 * archs can override this function if they must do something
2516 * before the modifying code is performed.
2517 */
2518int __weak ftrace_arch_code_modify_prepare(void)
2519{
2520 return 0;
2521}
2522
2523/*
2524 * archs can override this function if they must do something
2525 * after the modifying code is performed.
2526 */
2527int __weak ftrace_arch_code_modify_post_process(void)
2528{
2529 return 0;
2530}
2531
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002532void ftrace_modify_all_code(int command)
2533{
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002534 int update = command & FTRACE_UPDATE_TRACE_FUNC;
Petr Mladekcd210672014-02-24 17:12:21 +01002535 int err = 0;
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002536
2537 /*
2538 * If the ftrace_caller calls a ftrace_ops func directly,
2539 * we need to make sure that it only traces functions it
2540 * expects to trace. When doing the switch of functions,
2541 * we need to update to the ftrace_ops_list_func first
2542 * before the transition between old and new calls are set,
2543 * as the ftrace_ops_list_func will check the ops hashes
2544 * to make sure the ops are having the right functions
2545 * traced.
2546 */
Petr Mladekcd210672014-02-24 17:12:21 +01002547 if (update) {
2548 err = ftrace_update_ftrace_func(ftrace_ops_list_func);
2549 if (FTRACE_WARN_ON(err))
2550 return;
2551 }
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002552
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002553 if (command & FTRACE_UPDATE_CALLS)
2554 ftrace_replace_code(1);
2555 else if (command & FTRACE_DISABLE_CALLS)
2556 ftrace_replace_code(0);
2557
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002558 if (update && ftrace_trace_function != ftrace_ops_list_func) {
2559 function_trace_op = set_function_trace_op;
2560 smp_wmb();
2561 /* If irqs are disabled, we are in stop machine */
2562 if (!irqs_disabled())
2563 smp_call_function(ftrace_sync_ipi, NULL, 1);
Petr Mladekcd210672014-02-24 17:12:21 +01002564 err = ftrace_update_ftrace_func(ftrace_trace_function);
2565 if (FTRACE_WARN_ON(err))
2566 return;
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002567 }
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002568
2569 if (command & FTRACE_START_FUNC_RET)
Petr Mladekcd210672014-02-24 17:12:21 +01002570 err = ftrace_enable_ftrace_graph_caller();
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002571 else if (command & FTRACE_STOP_FUNC_RET)
Petr Mladekcd210672014-02-24 17:12:21 +01002572 err = ftrace_disable_ftrace_graph_caller();
2573 FTRACE_WARN_ON(err);
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002574}
2575
Ingo Molnare309b412008-05-12 21:20:51 +02002576static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02002577{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002578 int *command = data;
2579
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002580 ftrace_modify_all_code(*command);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05002581
Steven Rostedtc88fd862011-08-16 09:53:39 -04002582 return 0;
2583}
2584
2585/**
2586 * ftrace_run_stop_machine, go back to the stop machine method
2587 * @command: The command to tell ftrace what to do
2588 *
2589 * If an arch needs to fall back to the stop machine method, the
2590 * it can call this function.
2591 */
2592void ftrace_run_stop_machine(int command)
2593{
2594 stop_machine(__ftrace_modify_code, &command, NULL);
2595}
2596
2597/**
2598 * arch_ftrace_update_code, modify the code to trace or not trace
2599 * @command: The command that needs to be done
2600 *
2601 * Archs can override this function if it does not need to
2602 * run stop_machine() to modify code.
2603 */
2604void __weak arch_ftrace_update_code(int command)
2605{
2606 ftrace_run_stop_machine(command);
2607}
2608
2609static void ftrace_run_update_code(int command)
2610{
2611 int ret;
2612
2613 ret = ftrace_arch_code_modify_prepare();
2614 FTRACE_WARN_ON(ret);
2615 if (ret)
2616 return;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002617
2618 /*
2619 * By default we use stop_machine() to modify the code.
2620 * But archs can do what ever they want as long as it
2621 * is safe. The stop_machine() is the safest, but also
2622 * produces the most overhead.
2623 */
2624 arch_ftrace_update_code(command);
2625
Steven Rostedt000ab692009-02-17 13:35:06 -05002626 ret = ftrace_arch_code_modify_post_process();
2627 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02002628}
2629
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002630static void ftrace_run_modify_code(struct ftrace_ops *ops, int command,
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002631 struct ftrace_ops_hash *old_hash)
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002632{
2633 ops->flags |= FTRACE_OPS_FL_MODIFYING;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002634 ops->old_hash.filter_hash = old_hash->filter_hash;
2635 ops->old_hash.notrace_hash = old_hash->notrace_hash;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002636 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002637 ops->old_hash.filter_hash = NULL;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002638 ops->old_hash.notrace_hash = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002639 ops->flags &= ~FTRACE_OPS_FL_MODIFYING;
2640}
2641
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002642static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002643static int ftrace_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002644
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002645void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops)
2646{
2647}
2648
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002649static void per_cpu_ops_free(struct ftrace_ops *ops)
Jiri Slabydb0fbad2014-03-10 21:42:11 +01002650{
2651 free_percpu(ops->disabled);
2652}
2653
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002654static void ftrace_startup_enable(int command)
2655{
2656 if (saved_ftrace_func != ftrace_trace_function) {
2657 saved_ftrace_func = ftrace_trace_function;
2658 command |= FTRACE_UPDATE_TRACE_FUNC;
2659 }
2660
2661 if (!command || !ftrace_enabled)
2662 return;
2663
2664 ftrace_run_update_code(command);
2665}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002666
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002667static void ftrace_startup_all(int command)
2668{
2669 update_all_ops = true;
2670 ftrace_startup_enable(command);
2671 update_all_ops = false;
2672}
2673
Steven Rostedta1cd6172011-05-23 15:24:25 -04002674static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002675{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002676 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002677
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002678 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04002679 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002680
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002681 ret = __register_ftrace_function(ops);
2682 if (ret)
2683 return ret;
2684
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002685 ftrace_start_up++;
Steven Rostedt3d083392008-05-12 21:20:42 +02002686
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002687 /*
2688 * Note that ftrace probes uses this to start up
2689 * and modify functions it will probe. But we still
2690 * set the ADDING flag for modification, as probes
2691 * do not have trampolines. If they add them in the
2692 * future, then the probes will need to distinguish
2693 * between adding and updating probes.
2694 */
2695 ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING;
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002696
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002697 ret = ftrace_hash_ipmodify_enable(ops);
2698 if (ret < 0) {
2699 /* Rollback registration process */
2700 __unregister_ftrace_function(ops);
2701 ftrace_start_up--;
2702 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2703 return ret;
2704 }
2705
Jiri Olsa7f50d062016-03-16 15:34:33 +01002706 if (ftrace_hash_rec_enable(ops, 1))
2707 command |= FTRACE_UPDATE_CALLS;
Steven Rostedted926f92011-05-03 13:25:24 -04002708
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002709 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04002710
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002711 ops->flags &= ~FTRACE_OPS_FL_ADDING;
2712
Steven Rostedta1cd6172011-05-23 15:24:25 -04002713 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002714}
2715
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002716static int ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002717{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002718 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002719
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002720 if (unlikely(ftrace_disabled))
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002721 return -ENODEV;
2722
2723 ret = __unregister_ftrace_function(ops);
2724 if (ret)
2725 return ret;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002726
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002727 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02002728 /*
2729 * Just warn in case of unbalance, no need to kill ftrace, it's not
2730 * critical but the ftrace_call callers may be never nopped again after
2731 * further ftrace uses.
2732 */
2733 WARN_ON_ONCE(ftrace_start_up < 0);
2734
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002735 /* Disabling ipmodify never fails */
2736 ftrace_hash_ipmodify_disable(ops);
Jiri Olsa7f50d062016-03-16 15:34:33 +01002737
2738 if (ftrace_hash_rec_disable(ops, 1))
2739 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtb8489142011-05-04 09:27:52 -04002740
Namhyung Kima737e6d2014-06-12 23:56:12 +09002741 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04002742
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002743 if (saved_ftrace_func != ftrace_trace_function) {
2744 saved_ftrace_func = ftrace_trace_function;
2745 command |= FTRACE_UPDATE_TRACE_FUNC;
2746 }
2747
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002748 if (!command || !ftrace_enabled) {
2749 /*
Steven Rostedt (VMware)100553e2017-09-01 12:18:28 -04002750 * If these are dynamic or per_cpu ops, they still
2751 * need their data freed. Since, function tracing is
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002752 * not currently active, we can just free them
2753 * without synchronizing all CPUs.
2754 */
Steven Rostedt (VMware)100553e2017-09-01 12:18:28 -04002755 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU))
2756 goto free_ops;
2757
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002758 return 0;
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002759 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002760
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002761 /*
2762 * If the ops uses a trampoline, then it needs to be
2763 * tested first on update.
2764 */
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002765 ops->flags |= FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002766 removed_ops = ops;
2767
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002768 /* The trampoline logic checks the old hashes */
2769 ops->old_hash.filter_hash = ops->func_hash->filter_hash;
2770 ops->old_hash.notrace_hash = ops->func_hash->notrace_hash;
2771
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002772 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002773
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002774 /*
2775 * If there's no more ops registered with ftrace, run a
2776 * sanity check to make sure all rec flags are cleared.
2777 */
2778 if (ftrace_ops_list == &ftrace_list_end) {
2779 struct ftrace_page *pg;
2780 struct dyn_ftrace *rec;
2781
2782 do_for_each_ftrace_rec(pg, rec) {
Alexei Starovoitov977c1f92016-11-07 15:14:20 -08002783 if (FTRACE_WARN_ON_ONCE(rec->flags & ~FTRACE_FL_DISABLED))
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002784 pr_warn(" %pS flags:%lx\n",
2785 (void *)rec->ip, rec->flags);
2786 } while_for_each_ftrace_rec();
2787 }
2788
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002789 ops->old_hash.filter_hash = NULL;
2790 ops->old_hash.notrace_hash = NULL;
2791
2792 removed_ops = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002793 ops->flags &= ~FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002794
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002795 /*
2796 * Dynamic ops may be freed, we must make sure that all
2797 * callers are done before leaving this function.
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002798 * The same goes for freeing the per_cpu data of the per_cpu
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002799 * ops.
2800 *
2801 * Again, normal synchronize_sched() is not good enough.
2802 * We need to do a hard force of sched synchronization.
2803 * This is because we use preempt_disable() to do RCU, but
2804 * the function tracers can be called where RCU is not watching
2805 * (like before user_exit()). We can not rely on the RCU
2806 * infrastructure to do the synchronization, thus we must do it
2807 * ourselves.
2808 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002809 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU)) {
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002810 schedule_on_each_cpu(ftrace_sync);
2811
Steven Rostedt (VMware)100553e2017-09-01 12:18:28 -04002812 free_ops:
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002813 arch_ftrace_trampoline_free(ops);
2814
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002815 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2816 per_cpu_ops_free(ops);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002817 }
2818
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002819 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002820}
2821
Ingo Molnare309b412008-05-12 21:20:51 +02002822static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002823{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302824 int command;
2825
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002826 if (unlikely(ftrace_disabled))
2827 return;
2828
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002829 /* Force update next time */
2830 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002831 /* ftrace_start_up is true if we want ftrace running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302832 if (ftrace_start_up) {
2833 command = FTRACE_UPDATE_CALLS;
2834 if (ftrace_graph_active)
2835 command |= FTRACE_START_FUNC_RET;
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05002836 ftrace_startup_enable(command);
Pratyush Anand1619dc32015-03-06 23:58:06 +05302837 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002838}
2839
Ingo Molnare309b412008-05-12 21:20:51 +02002840static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002841{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302842 int command;
2843
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002844 if (unlikely(ftrace_disabled))
2845 return;
2846
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002847 /* ftrace_start_up is true if ftrace is running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302848 if (ftrace_start_up) {
2849 command = FTRACE_DISABLE_CALLS;
2850 if (ftrace_graph_active)
2851 command |= FTRACE_STOP_FUNC_RET;
2852 ftrace_run_update_code(command);
2853 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002854}
2855
Steven Rostedt3d083392008-05-12 21:20:42 +02002856static cycle_t ftrace_update_time;
Steven Rostedt3d083392008-05-12 21:20:42 +02002857unsigned long ftrace_update_tot_cnt;
2858
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002859static inline int ops_traces_mod(struct ftrace_ops *ops)
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002860{
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002861 /*
2862 * Filter_hash being empty will default to trace module.
2863 * But notrace hash requires a test of individual module functions.
2864 */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002865 return ftrace_hash_empty(ops->func_hash->filter_hash) &&
2866 ftrace_hash_empty(ops->func_hash->notrace_hash);
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002867}
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002868
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002869/*
2870 * Check if the current ops references the record.
2871 *
2872 * If the ops traces all functions, then it was already accounted for.
2873 * If the ops does not trace the current record function, skip it.
2874 * If the ops ignores the function via notrace filter, skip it.
2875 */
2876static inline bool
2877ops_references_rec(struct ftrace_ops *ops, struct dyn_ftrace *rec)
2878{
2879 /* If ops isn't enabled, ignore it */
2880 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
2881 return 0;
2882
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002883 /* If ops traces all then it includes this function */
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002884 if (ops_traces_mod(ops))
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002885 return 1;
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002886
2887 /* The function must be in the filter */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002888 if (!ftrace_hash_empty(ops->func_hash->filter_hash) &&
2889 !ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002890 return 0;
2891
2892 /* If in notrace hash, we ignore it too */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002893 if (ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002894 return 0;
2895
2896 return 1;
2897}
2898
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002899static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs)
Steven Rostedt3d083392008-05-12 21:20:42 +02002900{
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002901 struct ftrace_page *pg;
Lai Jiangshane94142a2009-03-13 17:51:27 +08002902 struct dyn_ftrace *p;
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05302903 cycle_t start, stop;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002904 unsigned long update_cnt = 0;
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002905 unsigned long rec_flags = 0;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002906 int i;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002907
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002908 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002909
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002910 /*
2911 * When a module is loaded, this function is called to convert
2912 * the calls to mcount in its text to nops, and also to create
2913 * an entry in the ftrace data. Now, if ftrace is activated
2914 * after this call, but before the module sets its text to
2915 * read-only, the modification of enabling ftrace can fail if
2916 * the read-only is done while ftrace is converting the calls.
2917 * To prevent this, the module's records are set as disabled
2918 * and will be enabled after the call to set the module's text
2919 * to read-only.
2920 */
2921 if (mod)
2922 rec_flags |= FTRACE_FL_DISABLED;
2923
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002924 for (pg = new_pgs; pg; pg = pg->next) {
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05302925
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002926 for (i = 0; i < pg->index; i++) {
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002927
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002928 /* If something went wrong, bail without enabling anything */
2929 if (unlikely(ftrace_disabled))
2930 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02002931
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002932 p = &pg->records[i];
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002933 p->flags = rec_flags;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05302934
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002935 /*
2936 * Do the initial record conversion from mcount jump
2937 * to the NOP instructions.
2938 */
2939 if (!ftrace_code_disable(mod, p))
2940 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002941
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002942 update_cnt++;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002943 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002944 }
2945
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002946 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002947 ftrace_update_time = stop - start;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002948 ftrace_update_tot_cnt += update_cnt;
Steven Rostedt3d083392008-05-12 21:20:42 +02002949
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02002950 return 0;
2951}
2952
Steven Rostedta7900872011-12-16 16:23:44 -05002953static int ftrace_allocate_records(struct ftrace_page *pg, int count)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002954{
Steven Rostedta7900872011-12-16 16:23:44 -05002955 int order;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002956 int cnt;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002957
Steven Rostedta7900872011-12-16 16:23:44 -05002958 if (WARN_ON(!count))
2959 return -EINVAL;
2960
2961 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002962
2963 /*
Steven Rostedta7900872011-12-16 16:23:44 -05002964 * We want to fill as much as possible. No more than a page
2965 * may be empty.
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002966 */
Steven Rostedta7900872011-12-16 16:23:44 -05002967 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2968 order--;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002969
Steven Rostedta7900872011-12-16 16:23:44 -05002970 again:
2971 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
2972
2973 if (!pg->records) {
2974 /* if we can't allocate this size, try something smaller */
2975 if (!order)
2976 return -ENOMEM;
2977 order >>= 1;
2978 goto again;
2979 }
2980
2981 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
2982 pg->size = cnt;
2983
2984 if (cnt > count)
2985 cnt = count;
2986
2987 return cnt;
2988}
2989
2990static struct ftrace_page *
2991ftrace_allocate_pages(unsigned long num_to_init)
2992{
2993 struct ftrace_page *start_pg;
2994 struct ftrace_page *pg;
2995 int order;
2996 int cnt;
2997
2998 if (!num_to_init)
2999 return 0;
3000
3001 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
3002 if (!pg)
3003 return NULL;
3004
3005 /*
3006 * Try to allocate as much as possible in one continues
3007 * location that fills in all of the space. We want to
3008 * waste as little space as possible.
3009 */
3010 for (;;) {
3011 cnt = ftrace_allocate_records(pg, num_to_init);
3012 if (cnt < 0)
3013 goto free_pages;
3014
3015 num_to_init -= cnt;
3016 if (!num_to_init)
3017 break;
3018
3019 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
3020 if (!pg->next)
3021 goto free_pages;
3022
3023 pg = pg->next;
3024 }
3025
3026 return start_pg;
3027
3028 free_pages:
Namhyung Kim1f61be002014-06-11 17:06:53 +09003029 pg = start_pg;
3030 while (pg) {
Steven Rostedta7900872011-12-16 16:23:44 -05003031 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3032 free_pages((unsigned long)pg->records, order);
3033 start_pg = pg->next;
3034 kfree(pg);
3035 pg = start_pg;
3036 }
3037 pr_info("ftrace: FAILED to allocate memory for functions\n");
3038 return NULL;
3039}
3040
Steven Rostedt5072c592008-05-12 21:20:43 +02003041#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
3042
3043struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003044 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003045 loff_t func_pos;
3046 struct ftrace_page *pg;
3047 struct dyn_ftrace *func;
3048 struct ftrace_func_probe *probe;
3049 struct trace_parser parser;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003050 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003051 struct ftrace_ops *ops;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003052 int hidx;
3053 int idx;
3054 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02003055};
3056
Ingo Molnare309b412008-05-12 21:20:51 +02003057static void *
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003058t_hash_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003059{
3060 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003061 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003062 struct hlist_head *hhd;
3063
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003064 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003065 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003066
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003067 if (iter->probe)
3068 hnd = &iter->probe->node;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003069 retry:
3070 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
3071 return NULL;
3072
3073 hhd = &ftrace_func_hash[iter->hidx];
3074
3075 if (hlist_empty(hhd)) {
3076 iter->hidx++;
3077 hnd = NULL;
3078 goto retry;
3079 }
3080
3081 if (!hnd)
3082 hnd = hhd->first;
3083 else {
3084 hnd = hnd->next;
3085 if (!hnd) {
3086 iter->hidx++;
3087 goto retry;
3088 }
3089 }
3090
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003091 if (WARN_ON_ONCE(!hnd))
3092 return NULL;
3093
3094 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
3095
3096 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003097}
3098
3099static void *t_hash_start(struct seq_file *m, loff_t *pos)
3100{
3101 struct ftrace_iterator *iter = m->private;
3102 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08003103 loff_t l;
3104
Steven Rostedt69a30832011-12-19 15:21:16 -05003105 if (!(iter->flags & FTRACE_ITER_DO_HASH))
3106 return NULL;
3107
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003108 if (iter->func_pos > *pos)
3109 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003110
Li Zefand82d6242009-06-24 09:54:54 +08003111 iter->hidx = 0;
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003112 for (l = 0; l <= (*pos - iter->func_pos); ) {
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003113 p = t_hash_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08003114 if (!p)
3115 break;
3116 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003117 if (!p)
3118 return NULL;
3119
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003120 /* Only set this if we have an item */
3121 iter->flags |= FTRACE_ITER_HASH;
3122
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003123 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003124}
3125
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003126static int
3127t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003128{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003129 struct ftrace_func_probe *rec;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003130
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003131 rec = iter->probe;
3132 if (WARN_ON_ONCE(!rec))
3133 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003134
Steven Rostedt809dcf22009-02-16 23:06:01 -05003135 if (rec->ops->print)
3136 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
3137
Steven Rostedtb375a112009-09-17 00:05:58 -04003138 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003139
3140 if (rec->data)
3141 seq_printf(m, ":%p", rec->data);
3142 seq_putc(m, '\n');
3143
3144 return 0;
3145}
3146
3147static void *
Steven Rostedt5072c592008-05-12 21:20:43 +02003148t_next(struct seq_file *m, void *v, loff_t *pos)
3149{
3150 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003151 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02003152 struct dyn_ftrace *rec = NULL;
3153
Steven Rostedt45a4a232011-04-21 23:16:46 -04003154 if (unlikely(ftrace_disabled))
3155 return NULL;
3156
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003157 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003158 return t_hash_next(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003159
Steven Rostedt5072c592008-05-12 21:20:43 +02003160 (*pos)++;
Jiri Olsa1106b692011-02-16 17:35:34 +01003161 iter->pos = iter->func_pos = *pos;
Steven Rostedt5072c592008-05-12 21:20:43 +02003162
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003163 if (iter->flags & FTRACE_ITER_PRINTALL)
Steven Rostedt57c072c2010-09-14 11:21:11 -04003164 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003165
Steven Rostedt5072c592008-05-12 21:20:43 +02003166 retry:
3167 if (iter->idx >= iter->pg->index) {
3168 if (iter->pg->next) {
3169 iter->pg = iter->pg->next;
3170 iter->idx = 0;
3171 goto retry;
3172 }
3173 } else {
3174 rec = &iter->pg->records[iter->idx++];
Steven Rostedt32082302011-12-16 14:42:37 -05003175 if (((iter->flags & FTRACE_ITER_FILTER) &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003176 !(ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))) ||
Steven Rostedt0183fb12008-11-07 22:36:02 -05003177
Steven Rostedt41c52c02008-05-22 11:46:33 -04003178 ((iter->flags & FTRACE_ITER_NOTRACE) &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003179 !ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip)) ||
Steven Rostedt647bcd02011-05-03 14:39:21 -04003180
3181 ((iter->flags & FTRACE_ITER_ENABLED) &&
Steven Rostedt (Red Hat)23ea9c42013-05-09 19:31:48 -04003182 !(rec->flags & FTRACE_FL_ENABLED))) {
Steven Rostedt647bcd02011-05-03 14:39:21 -04003183
Steven Rostedt5072c592008-05-12 21:20:43 +02003184 rec = NULL;
3185 goto retry;
3186 }
3187 }
3188
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003189 if (!rec)
Steven Rostedt57c072c2010-09-14 11:21:11 -04003190 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003191
3192 iter->func = rec;
3193
3194 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003195}
3196
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003197static void reset_iter_read(struct ftrace_iterator *iter)
3198{
3199 iter->pos = 0;
3200 iter->func_pos = 0;
Dan Carpenter70f77b32012-06-09 19:10:27 +03003201 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_HASH);
Steven Rostedt5072c592008-05-12 21:20:43 +02003202}
3203
3204static void *t_start(struct seq_file *m, loff_t *pos)
3205{
3206 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003207 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02003208 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08003209 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02003210
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003211 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003212
3213 if (unlikely(ftrace_disabled))
3214 return NULL;
3215
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003216 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003217 * If an lseek was done, then reset and start from beginning.
3218 */
3219 if (*pos < iter->pos)
3220 reset_iter_read(iter);
3221
3222 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003223 * For set_ftrace_filter reading, if we have the filter
3224 * off, we can short cut and just print out that all
3225 * functions are enabled.
3226 */
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003227 if ((iter->flags & FTRACE_ITER_FILTER &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003228 ftrace_hash_empty(ops->func_hash->filter_hash)) ||
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003229 (iter->flags & FTRACE_ITER_NOTRACE &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003230 ftrace_hash_empty(ops->func_hash->notrace_hash))) {
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003231 if (*pos > 0)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003232 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003233 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07003234 /* reset in case of seek/pread */
3235 iter->flags &= ~FTRACE_ITER_HASH;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003236 return iter;
3237 }
3238
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003239 if (iter->flags & FTRACE_ITER_HASH)
3240 return t_hash_start(m, pos);
3241
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003242 /*
3243 * Unfortunately, we need to restart at ftrace_pages_start
3244 * every time we let go of the ftrace_mutex. This is because
3245 * those pointers can change without the lock.
3246 */
Li Zefan694ce0a2009-06-24 09:54:19 +08003247 iter->pg = ftrace_pages_start;
3248 iter->idx = 0;
3249 for (l = 0; l <= *pos; ) {
3250 p = t_next(m, p, &l);
3251 if (!p)
3252 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08003253 }
walimis5821e1b2008-11-15 15:19:06 +08003254
Steven Rostedt69a30832011-12-19 15:21:16 -05003255 if (!p)
3256 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003257
3258 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003259}
3260
3261static void t_stop(struct seq_file *m, void *p)
3262{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003263 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003264}
3265
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003266void * __weak
3267arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec)
3268{
3269 return NULL;
3270}
3271
3272static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops,
3273 struct dyn_ftrace *rec)
3274{
3275 void *ptr;
3276
3277 ptr = arch_ftrace_trampoline_func(ops, rec);
3278 if (ptr)
3279 seq_printf(m, " ->%pS", ptr);
3280}
3281
Steven Rostedt5072c592008-05-12 21:20:43 +02003282static int t_show(struct seq_file *m, void *v)
3283{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003284 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003285 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02003286
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003287 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003288 return t_hash_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003289
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003290 if (iter->flags & FTRACE_ITER_PRINTALL) {
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003291 if (iter->flags & FTRACE_ITER_NOTRACE)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003292 seq_puts(m, "#### no functions disabled ####\n");
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003293 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003294 seq_puts(m, "#### all functions enabled ####\n");
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003295 return 0;
3296 }
3297
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003298 rec = iter->func;
3299
Steven Rostedt5072c592008-05-12 21:20:43 +02003300 if (!rec)
3301 return 0;
3302
Steven Rostedt647bcd02011-05-03 14:39:21 -04003303 seq_printf(m, "%ps", (void *)rec->ip);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003304 if (iter->flags & FTRACE_ITER_ENABLED) {
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003305 struct ftrace_ops *ops;
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003306
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003307 seq_printf(m, " (%ld)%s%s",
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04003308 ftrace_rec_count(rec),
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003309 rec->flags & FTRACE_FL_REGS ? " R" : " ",
3310 rec->flags & FTRACE_FL_IPMODIFY ? " I" : " ");
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003311 if (rec->flags & FTRACE_FL_TRAMP_EN) {
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04003312 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003313 if (ops) {
3314 do {
3315 seq_printf(m, "\ttramp: %pS (%pS)",
3316 (void *)ops->trampoline,
3317 (void *)ops->func);
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003318 add_trampoline_func(m, ops, rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003319 ops = ftrace_find_tramp_ops_next(rec, ops);
3320 } while (ops);
3321 } else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003322 seq_puts(m, "\ttramp: ERROR!");
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003323 } else {
3324 add_trampoline_func(m, NULL, rec);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003325 }
3326 }
3327
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003328 seq_putc(m, '\n');
Steven Rostedt5072c592008-05-12 21:20:43 +02003329
3330 return 0;
3331}
3332
James Morris88e9d342009-09-22 16:43:43 -07003333static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003334 .start = t_start,
3335 .next = t_next,
3336 .stop = t_stop,
3337 .show = t_show,
3338};
3339
Ingo Molnare309b412008-05-12 21:20:51 +02003340static int
Steven Rostedt5072c592008-05-12 21:20:43 +02003341ftrace_avail_open(struct inode *inode, struct file *file)
3342{
3343 struct ftrace_iterator *iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003344
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003345 if (unlikely(ftrace_disabled))
3346 return -ENODEV;
3347
Jiri Olsa50e18b92012-04-25 10:23:39 +02003348 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3349 if (iter) {
3350 iter->pg = ftrace_pages_start;
3351 iter->ops = &global_ops;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003352 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003353
Jiri Olsa50e18b92012-04-25 10:23:39 +02003354 return iter ? 0 : -ENOMEM;
Steven Rostedt5072c592008-05-12 21:20:43 +02003355}
3356
Steven Rostedt647bcd02011-05-03 14:39:21 -04003357static int
3358ftrace_enabled_open(struct inode *inode, struct file *file)
3359{
3360 struct ftrace_iterator *iter;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003361
Jiri Olsa50e18b92012-04-25 10:23:39 +02003362 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3363 if (iter) {
3364 iter->pg = ftrace_pages_start;
3365 iter->flags = FTRACE_ITER_ENABLED;
3366 iter->ops = &global_ops;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003367 }
3368
Jiri Olsa50e18b92012-04-25 10:23:39 +02003369 return iter ? 0 : -ENOMEM;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003370}
3371
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003372/**
3373 * ftrace_regex_open - initialize function tracer filter files
3374 * @ops: The ftrace_ops that hold the hash filters
3375 * @flag: The type of filter to process
3376 * @inode: The inode, usually passed in to your open routine
3377 * @file: The file, usually passed in to your open routine
3378 *
3379 * ftrace_regex_open() initializes the filter files for the
3380 * @ops. Depending on @flag it may process the filter hash or
3381 * the notrace hash of @ops. With this called from the open
3382 * routine, you can use ftrace_filter_write() for the write
3383 * routine if @flag has FTRACE_ITER_FILTER set, or
3384 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05003385 * tracing_lseek() should be used as the lseek routine, and
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003386 * release must call ftrace_regex_release().
3387 */
3388int
Steven Rostedtf45948e2011-05-02 12:29:25 -04003389ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003390 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003391{
3392 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003393 struct ftrace_hash *hash;
Steven Rostedt5072c592008-05-12 21:20:43 +02003394 int ret = 0;
3395
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003396 ftrace_ops_init(ops);
3397
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003398 if (unlikely(ftrace_disabled))
3399 return -ENODEV;
3400
Steven Rostedt5072c592008-05-12 21:20:43 +02003401 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3402 if (!iter)
3403 return -ENOMEM;
3404
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003405 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
3406 kfree(iter);
3407 return -ENOMEM;
3408 }
3409
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003410 iter->ops = ops;
3411 iter->flags = flag;
3412
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003413 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003414
Steven Rostedtf45948e2011-05-02 12:29:25 -04003415 if (flag & FTRACE_ITER_NOTRACE)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003416 hash = ops->func_hash->notrace_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003417 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003418 hash = ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003419
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003420 if (file->f_mode & FMODE_WRITE) {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003421 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
3422
3423 if (file->f_flags & O_TRUNC)
3424 iter->hash = alloc_ftrace_hash(size_bits);
3425 else
3426 iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash);
3427
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003428 if (!iter->hash) {
3429 trace_parser_put(&iter->parser);
3430 kfree(iter);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003431 ret = -ENOMEM;
3432 goto out_unlock;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003433 }
3434 }
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003435
Steven Rostedt5072c592008-05-12 21:20:43 +02003436 if (file->f_mode & FMODE_READ) {
3437 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02003438
3439 ret = seq_open(file, &show_ftrace_seq_ops);
3440 if (!ret) {
3441 struct seq_file *m = file->private_data;
3442 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08003443 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003444 /* Failed */
3445 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08003446 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003447 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08003448 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003449 } else
3450 file->private_data = iter;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003451
3452 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003453 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003454
3455 return ret;
3456}
3457
Steven Rostedt41c52c02008-05-22 11:46:33 -04003458static int
3459ftrace_filter_open(struct inode *inode, struct file *file)
3460{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003461 struct ftrace_ops *ops = inode->i_private;
3462
3463 return ftrace_regex_open(ops,
Steven Rostedt69a30832011-12-19 15:21:16 -05003464 FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH,
3465 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003466}
3467
3468static int
3469ftrace_notrace_open(struct inode *inode, struct file *file)
3470{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003471 struct ftrace_ops *ops = inode->i_private;
3472
3473 return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003474 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003475}
3476
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003477/* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */
3478struct ftrace_glob {
3479 char *search;
3480 unsigned len;
3481 int type;
3482};
3483
Thiago Jung Bauermann7132e2d2016-04-25 18:56:14 -03003484/*
3485 * If symbols in an architecture don't correspond exactly to the user-visible
3486 * name of what they represent, it is possible to define this function to
3487 * perform the necessary adjustments.
3488*/
3489char * __weak arch_ftrace_match_adjust(char *str, const char *search)
3490{
3491 return str;
3492}
3493
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003494static int ftrace_match(char *str, struct ftrace_glob *g)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003495{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003496 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08003497 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003498
Thiago Jung Bauermann7132e2d2016-04-25 18:56:14 -03003499 str = arch_ftrace_match_adjust(str, g->search);
3500
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003501 switch (g->type) {
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003502 case MATCH_FULL:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003503 if (strcmp(str, g->search) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003504 matched = 1;
3505 break;
3506 case MATCH_FRONT_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003507 if (strncmp(str, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003508 matched = 1;
3509 break;
3510 case MATCH_MIDDLE_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003511 if (strstr(str, g->search))
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003512 matched = 1;
3513 break;
3514 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08003515 slen = strlen(str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003516 if (slen >= g->len &&
3517 memcmp(str + slen - g->len, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003518 matched = 1;
3519 break;
3520 }
3521
3522 return matched;
3523}
3524
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003525static int
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003526enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int clear_filter)
Steven Rostedt996e87b2011-04-26 16:11:03 -04003527{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003528 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003529 int ret = 0;
3530
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003531 entry = ftrace_lookup_ip(hash, rec->ip);
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003532 if (clear_filter) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003533 /* Do nothing if it doesn't exist */
3534 if (!entry)
3535 return 0;
3536
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003537 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003538 } else {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003539 /* Do nothing if it exists */
3540 if (entry)
3541 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003542
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003543 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003544 }
3545 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04003546}
3547
Steven Rostedt64e7c442009-02-13 17:08:48 -05003548static int
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003549ftrace_match_record(struct dyn_ftrace *rec, struct ftrace_glob *func_g,
3550 struct ftrace_glob *mod_g, int exclude_mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003551{
3552 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003553 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003554
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003555 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
3556
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003557 if (mod_g) {
3558 int mod_matches = (modname) ? ftrace_match(modname, mod_g) : 0;
3559
3560 /* blank module name to match all modules */
3561 if (!mod_g->len) {
3562 /* blank module globbing: modname xor exclude_mod */
3563 if ((!exclude_mod) != (!modname))
3564 goto func_match;
3565 return 0;
3566 }
3567
3568 /* not matching the module */
3569 if (!modname || !mod_matches) {
3570 if (exclude_mod)
3571 goto func_match;
3572 else
3573 return 0;
3574 }
3575
3576 if (mod_matches && exclude_mod)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003577 return 0;
3578
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003579func_match:
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003580 /* blank search means to match all funcs in the mod */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003581 if (!func_g->len)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003582 return 1;
3583 }
3584
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003585 return ftrace_match(str, func_g);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003586}
3587
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003588static int
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003589match_records(struct ftrace_hash *hash, char *func, int len, char *mod)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003590{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003591 struct ftrace_page *pg;
3592 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003593 struct ftrace_glob func_g = { .type = MATCH_FULL };
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003594 struct ftrace_glob mod_g = { .type = MATCH_FULL };
3595 struct ftrace_glob *mod_match = (mod) ? &mod_g : NULL;
3596 int exclude_mod = 0;
Li Zefan311d16d2009-12-08 11:15:11 +08003597 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003598 int ret;
Dan Carpenter198bd492017-07-12 10:35:57 +03003599 int clear_filter = 0;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003600
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003601 if (func) {
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003602 func_g.type = filter_parse_regex(func, len, &func_g.search,
3603 &clear_filter);
3604 func_g.len = strlen(func_g.search);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003605 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003606
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003607 if (mod) {
3608 mod_g.type = filter_parse_regex(mod, strlen(mod),
3609 &mod_g.search, &exclude_mod);
3610 mod_g.len = strlen(mod_g.search);
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003611 }
3612
Steven Rostedt52baf112009-02-14 01:15:39 -05003613 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003614
3615 if (unlikely(ftrace_disabled))
3616 goto out_unlock;
3617
Steven Rostedt265c8312009-02-13 12:43:56 -05003618 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05003619
3620 if (rec->flags & FTRACE_FL_DISABLED)
3621 continue;
3622
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003623 if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) {
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003624 ret = enter_record(hash, rec, clear_filter);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003625 if (ret < 0) {
3626 found = ret;
3627 goto out_unlock;
3628 }
Li Zefan311d16d2009-12-08 11:15:11 +08003629 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05003630 }
3631 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003632 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05003633 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08003634
3635 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02003636}
3637
Steven Rostedt64e7c442009-02-13 17:08:48 -05003638static int
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003639ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003640{
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003641 return match_records(hash, buff, len, NULL);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003642}
3643
Steven Rostedt64e7c442009-02-13 17:08:48 -05003644
Steven Rostedtf6180772009-02-14 00:40:25 -05003645/*
3646 * We register the module command as a template to show others how
3647 * to register the a command as well.
3648 */
3649
3650static int
Steven Rostedt43dd61c2011-07-07 11:09:22 -04003651ftrace_mod_callback(struct ftrace_hash *hash,
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003652 char *func, char *cmd, char *module, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05003653{
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03003654 int ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05003655
3656 /*
3657 * cmd == 'mod' because we only registered this func
3658 * for the 'mod' ftrace_func_command.
3659 * But if you register one func with multiple commands,
3660 * you can tell which command was used by the cmd
3661 * parameter.
3662 */
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003663 ret = match_records(hash, func, strlen(func), module);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003664 if (!ret)
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03003665 return -EINVAL;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003666 if (ret < 0)
3667 return ret;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003668 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05003669}
3670
3671static struct ftrace_func_command ftrace_mod_cmd = {
3672 .name = "mod",
3673 .func = ftrace_mod_callback,
3674};
3675
3676static int __init ftrace_mod_cmd_init(void)
3677{
3678 return register_ftrace_command(&ftrace_mod_cmd);
3679}
Steven Rostedt6f415672012-10-05 12:13:07 -04003680core_initcall(ftrace_mod_cmd_init);
Steven Rostedtf6180772009-02-14 00:40:25 -05003681
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04003682static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04003683 struct ftrace_ops *op, struct pt_regs *pt_regs)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003684{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003685 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003686 struct hlist_head *hhd;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003687 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003688
3689 key = hash_long(ip, FTRACE_HASH_BITS);
3690
3691 hhd = &ftrace_func_hash[key];
3692
3693 if (hlist_empty(hhd))
3694 return;
3695
3696 /*
3697 * Disable preemption for these calls to prevent a RCU grace
3698 * period. This syncs the hash iteration and freeing of items
3699 * on the hash. rcu_read_lock is too dangerous here.
3700 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04003701 preempt_disable_notrace();
Steven Rostedt1bb539c2013-05-28 14:38:43 -04003702 hlist_for_each_entry_rcu_notrace(entry, hhd, node) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003703 if (entry->ip == ip)
3704 entry->ops->func(ip, parent_ip, &entry->data);
3705 }
Steven Rostedt5168ae52010-06-03 09:36:50 -04003706 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05003707}
3708
Steven Rostedtb6887d72009-02-17 12:32:04 -05003709static struct ftrace_ops trace_probe_ops __read_mostly =
Steven Rostedt59df055f2009-02-14 15:29:06 -05003710{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04003711 .func = function_trace_probe_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003712 .flags = FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003713 INIT_OPS_HASH(trace_probe_ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003714};
3715
Steven Rostedtb6887d72009-02-17 12:32:04 -05003716static int ftrace_probe_registered;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003717
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003718static void __enable_ftrace_function_probe(struct ftrace_ops_hash *old_hash)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003719{
Steven Rostedtb8489142011-05-04 09:27:52 -04003720 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003721 int i;
3722
Steven Rostedt (Red Hat)19dd6032013-05-09 19:37:36 -04003723 if (ftrace_probe_registered) {
3724 /* still need to update the function call sites */
3725 if (ftrace_enabled)
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003726 ftrace_run_modify_code(&trace_probe_ops, FTRACE_UPDATE_CALLS,
3727 old_hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003728 return;
Steven Rostedt (Red Hat)19dd6032013-05-09 19:37:36 -04003729 }
Steven Rostedt59df055f2009-02-14 15:29:06 -05003730
3731 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3732 struct hlist_head *hhd = &ftrace_func_hash[i];
3733 if (hhd->first)
3734 break;
3735 }
3736 /* Nothing registered? */
3737 if (i == FTRACE_FUNC_HASHSIZE)
3738 return;
3739
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05003740 ret = ftrace_startup(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04003741
Steven Rostedtb6887d72009-02-17 12:32:04 -05003742 ftrace_probe_registered = 1;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003743}
3744
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003745static bool __disable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003746{
3747 int i;
3748
Steven Rostedtb6887d72009-02-17 12:32:04 -05003749 if (!ftrace_probe_registered)
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003750 return false;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003751
3752 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3753 struct hlist_head *hhd = &ftrace_func_hash[i];
3754 if (hhd->first)
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003755 return false;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003756 }
3757
3758 /* no more funcs left */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05003759 ftrace_shutdown(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04003760
Steven Rostedtb6887d72009-02-17 12:32:04 -05003761 ftrace_probe_registered = 0;
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003762 return true;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003763}
3764
3765
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003766static void ftrace_free_entry(struct ftrace_func_probe *entry)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003767{
Steven Rostedt59df055f2009-02-14 15:29:06 -05003768 if (entry->ops->free)
Steven Rostedt (Red Hat)e67efb92013-03-12 15:07:59 -04003769 entry->ops->free(entry->ops, entry->ip, &entry->data);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003770 kfree(entry);
3771}
3772
Steven Rostedt59df055f2009-02-14 15:29:06 -05003773int
Steven Rostedtb6887d72009-02-17 12:32:04 -05003774register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003775 void *data)
3776{
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003777 struct ftrace_ops_hash old_hash_ops;
Steven Rostedtb6887d72009-02-17 12:32:04 -05003778 struct ftrace_func_probe *entry;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003779 struct ftrace_glob func_g;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003780 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003781 struct ftrace_hash *old_hash = *orig_hash;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003782 struct ftrace_hash *hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003783 struct ftrace_page *pg;
3784 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003785 int not;
Steven Rostedt6a24a242009-02-17 11:20:26 -05003786 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003787 int count = 0;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003788 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003789
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003790 func_g.type = filter_parse_regex(glob, strlen(glob),
3791 &func_g.search, &not);
3792 func_g.len = strlen(func_g.search);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003793
Steven Rostedtb6887d72009-02-17 12:32:04 -05003794 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003795 if (WARN_ON(not))
3796 return -EINVAL;
3797
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003798 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003799
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003800 old_hash_ops.filter_hash = old_hash;
3801 /* Probes only have filters */
3802 old_hash_ops.notrace_hash = NULL;
3803
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003804 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003805 if (!hash) {
3806 count = -ENOMEM;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003807 goto out;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003808 }
3809
3810 if (unlikely(ftrace_disabled)) {
3811 count = -ENODEV;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003812 goto out;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003813 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04003814
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003815 mutex_lock(&ftrace_lock);
3816
Steven Rostedt59df055f2009-02-14 15:29:06 -05003817 do_for_each_ftrace_rec(pg, rec) {
3818
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05003819 if (rec->flags & FTRACE_FL_DISABLED)
3820 continue;
3821
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003822 if (!ftrace_match_record(rec, &func_g, NULL, 0))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003823 continue;
3824
3825 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
3826 if (!entry) {
Steven Rostedtb6887d72009-02-17 12:32:04 -05003827 /* If we did not process any, then return error */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003828 if (!count)
3829 count = -ENOMEM;
3830 goto out_unlock;
3831 }
3832
3833 count++;
3834
3835 entry->data = data;
3836
3837 /*
3838 * The caller might want to do something special
3839 * for each function we find. We call the callback
3840 * to give the caller an opportunity to do so.
3841 */
Steven Rostedt (Red Hat)e67efb92013-03-12 15:07:59 -04003842 if (ops->init) {
3843 if (ops->init(ops, rec->ip, &entry->data) < 0) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003844 /* caller does not like this func */
3845 kfree(entry);
3846 continue;
3847 }
3848 }
3849
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003850 ret = enter_record(hash, rec, 0);
3851 if (ret < 0) {
3852 kfree(entry);
3853 count = ret;
3854 goto out_unlock;
3855 }
3856
Steven Rostedt59df055f2009-02-14 15:29:06 -05003857 entry->ops = ops;
3858 entry->ip = rec->ip;
3859
3860 key = hash_long(entry->ip, FTRACE_HASH_BITS);
3861 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
3862
3863 } while_for_each_ftrace_rec();
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003864
3865 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003866
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003867 __enable_ftrace_function_probe(&old_hash_ops);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003868
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003869 if (!ret)
3870 free_ftrace_hash_rcu(old_hash);
3871 else
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003872 count = ret;
3873
Steven Rostedt59df055f2009-02-14 15:29:06 -05003874 out_unlock:
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003875 mutex_unlock(&ftrace_lock);
3876 out:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003877 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003878 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003879
3880 return count;
3881}
3882
3883enum {
Steven Rostedtb6887d72009-02-17 12:32:04 -05003884 PROBE_TEST_FUNC = 1,
3885 PROBE_TEST_DATA = 2
Steven Rostedt59df055f2009-02-14 15:29:06 -05003886};
3887
3888static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003889__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003890 void *data, int flags)
3891{
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003892 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003893 struct ftrace_func_entry *rec_entry;
Steven Rostedtb6887d72009-02-17 12:32:04 -05003894 struct ftrace_func_probe *entry;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003895 struct ftrace_func_probe *p;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003896 struct ftrace_glob func_g;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003897 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003898 struct ftrace_hash *old_hash = *orig_hash;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003899 struct list_head free_list;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003900 struct ftrace_hash *hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003901 struct hlist_node *tmp;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003902 char str[KSYM_SYMBOL_LEN];
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003903 int i, ret;
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003904 bool disabled;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003905
Atsushi Tsujib36461d2009-09-15 19:06:30 +09003906 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003907 func_g.search = NULL;
Atsushi Tsujib36461d2009-09-15 19:06:30 +09003908 else if (glob) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003909 int not;
3910
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003911 func_g.type = filter_parse_regex(glob, strlen(glob),
3912 &func_g.search, &not);
3913 func_g.len = strlen(func_g.search);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003914
Steven Rostedtb6887d72009-02-17 12:32:04 -05003915 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003916 if (WARN_ON(not))
3917 return;
3918 }
3919
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003920 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003921
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003922 old_hash_ops.filter_hash = old_hash;
3923 /* Probes only have filters */
3924 old_hash_ops.notrace_hash = NULL;
3925
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003926 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3927 if (!hash)
3928 /* Hmm, should report this somehow */
3929 goto out_unlock;
3930
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003931 INIT_LIST_HEAD(&free_list);
3932
Steven Rostedt59df055f2009-02-14 15:29:06 -05003933 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3934 struct hlist_head *hhd = &ftrace_func_hash[i];
3935
Sasha Levinb67bfe02013-02-27 17:06:00 -08003936 hlist_for_each_entry_safe(entry, tmp, hhd, node) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003937
3938 /* break up if statements for readability */
Steven Rostedtb6887d72009-02-17 12:32:04 -05003939 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003940 continue;
3941
Steven Rostedtb6887d72009-02-17 12:32:04 -05003942 if ((flags & PROBE_TEST_DATA) && entry->data != data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003943 continue;
3944
3945 /* do this last, since it is the most expensive */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003946 if (func_g.search) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003947 kallsyms_lookup(entry->ip, NULL, NULL,
3948 NULL, str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003949 if (!ftrace_match(str, &func_g))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003950 continue;
3951 }
3952
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003953 rec_entry = ftrace_lookup_ip(hash, entry->ip);
3954 /* It is possible more than one entry had this ip */
3955 if (rec_entry)
3956 free_hash_entry(hash, rec_entry);
3957
Steven Rostedt (Red Hat)740466b2013-03-13 11:15:19 -04003958 hlist_del_rcu(&entry->node);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003959 list_add(&entry->free_list, &free_list);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003960 }
3961 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003962 mutex_lock(&ftrace_lock);
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003963 disabled = __disable_ftrace_function_probe();
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003964 /*
3965 * Remove after the disable is called. Otherwise, if the last
3966 * probe is removed, a null hash means *all enabled*.
3967 */
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003968 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
Steven Rostedt (VMware)666452f2017-04-14 17:45:45 -04003969
3970 /* still need to update the function call sites */
3971 if (ftrace_enabled && !disabled)
3972 ftrace_run_modify_code(&trace_probe_ops, FTRACE_UPDATE_CALLS,
3973 &old_hash_ops);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003974 synchronize_sched();
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003975 if (!ret)
3976 free_ftrace_hash_rcu(old_hash);
3977
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003978 list_for_each_entry_safe(entry, p, &free_list, free_list) {
3979 list_del(&entry->free_list);
3980 ftrace_free_entry(entry);
3981 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003982 mutex_unlock(&ftrace_lock);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003983
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003984 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003985 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003986 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003987}
3988
3989void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003990unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003991 void *data)
3992{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003993 __unregister_ftrace_function_probe(glob, ops, data,
3994 PROBE_TEST_FUNC | PROBE_TEST_DATA);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003995}
3996
3997void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003998unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003999{
Steven Rostedtb6887d72009-02-17 12:32:04 -05004000 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004001}
4002
Steven Rostedtb6887d72009-02-17 12:32:04 -05004003void unregister_ftrace_function_probe_all(char *glob)
Steven Rostedt59df055f2009-02-14 15:29:06 -05004004{
Steven Rostedtb6887d72009-02-17 12:32:04 -05004005 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
Steven Rostedt59df055f2009-02-14 15:29:06 -05004006}
4007
Steven Rostedtf6180772009-02-14 00:40:25 -05004008static LIST_HEAD(ftrace_commands);
4009static DEFINE_MUTEX(ftrace_cmd_mutex);
4010
Tom Zanussi38de93a2013-10-24 08:34:18 -05004011/*
4012 * Currently we only register ftrace commands from __init, so mark this
4013 * __init too.
4014 */
4015__init int register_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05004016{
4017 struct ftrace_func_command *p;
4018 int ret = 0;
4019
4020 mutex_lock(&ftrace_cmd_mutex);
4021 list_for_each_entry(p, &ftrace_commands, list) {
4022 if (strcmp(cmd->name, p->name) == 0) {
4023 ret = -EBUSY;
4024 goto out_unlock;
4025 }
4026 }
4027 list_add(&cmd->list, &ftrace_commands);
4028 out_unlock:
4029 mutex_unlock(&ftrace_cmd_mutex);
4030
4031 return ret;
4032}
4033
Tom Zanussi38de93a2013-10-24 08:34:18 -05004034/*
4035 * Currently we only unregister ftrace commands from __init, so mark
4036 * this __init too.
4037 */
4038__init int unregister_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05004039{
4040 struct ftrace_func_command *p, *n;
4041 int ret = -ENODEV;
4042
4043 mutex_lock(&ftrace_cmd_mutex);
4044 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
4045 if (strcmp(cmd->name, p->name) == 0) {
4046 ret = 0;
4047 list_del_init(&p->list);
4048 goto out_unlock;
4049 }
4050 }
4051 out_unlock:
4052 mutex_unlock(&ftrace_cmd_mutex);
4053
4054 return ret;
4055}
4056
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004057static int ftrace_process_regex(struct ftrace_hash *hash,
4058 char *buff, int len, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05004059{
Steven Rostedtf6180772009-02-14 00:40:25 -05004060 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05004061 struct ftrace_func_command *p;
GuoWen Li0aff1c02011-06-01 19:18:47 +08004062 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004063
4064 func = strsep(&next, ":");
4065
4066 if (!next) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004067 ret = ftrace_match_records(hash, func, len);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004068 if (!ret)
4069 ret = -EINVAL;
4070 if (ret < 0)
4071 return ret;
4072 return 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004073 }
4074
Steven Rostedtf6180772009-02-14 00:40:25 -05004075 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05004076
4077 command = strsep(&next, ":");
4078
Steven Rostedtf6180772009-02-14 00:40:25 -05004079 mutex_lock(&ftrace_cmd_mutex);
4080 list_for_each_entry(p, &ftrace_commands, list) {
4081 if (strcmp(p->name, command) == 0) {
Steven Rostedt43dd61c2011-07-07 11:09:22 -04004082 ret = p->func(hash, func, command, next, enable);
Steven Rostedtf6180772009-02-14 00:40:25 -05004083 goto out_unlock;
4084 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05004085 }
Steven Rostedtf6180772009-02-14 00:40:25 -05004086 out_unlock:
4087 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05004088
Steven Rostedtf6180772009-02-14 00:40:25 -05004089 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004090}
4091
Ingo Molnare309b412008-05-12 21:20:51 +02004092static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004093ftrace_regex_write(struct file *file, const char __user *ubuf,
4094 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02004095{
4096 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004097 struct trace_parser *parser;
4098 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02004099
Li Zefan4ba79782009-09-22 13:52:20 +08004100 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02004101 return 0;
4102
Steven Rostedt5072c592008-05-12 21:20:43 +02004103 if (file->f_mode & FMODE_READ) {
4104 struct seq_file *m = file->private_data;
4105 iter = m->private;
4106 } else
4107 iter = file->private_data;
4108
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004109 if (unlikely(ftrace_disabled))
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004110 return -ENODEV;
4111
4112 /* iter->hash is a local copy, so we don't need regex_lock */
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004113
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004114 parser = &iter->parser;
4115 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02004116
Li Zefan4ba79782009-09-22 13:52:20 +08004117 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004118 !trace_parser_cont(parser)) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004119 ret = ftrace_process_regex(iter->hash, parser->buffer,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004120 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08004121 trace_parser_clear(parser);
Steven Rostedt (Red Hat)7c088b52013-05-09 11:35:12 -04004122 if (ret < 0)
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004123 goto out;
Steven Rostedt5072c592008-05-12 21:20:43 +02004124 }
4125
Steven Rostedt5072c592008-05-12 21:20:43 +02004126 ret = read;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004127 out:
Steven Rostedt5072c592008-05-12 21:20:43 +02004128 return ret;
4129}
4130
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004131ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004132ftrace_filter_write(struct file *file, const char __user *ubuf,
4133 size_t cnt, loff_t *ppos)
4134{
4135 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
4136}
4137
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004138ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004139ftrace_notrace_write(struct file *file, const char __user *ubuf,
4140 size_t cnt, loff_t *ppos)
4141{
4142 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
4143}
4144
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004145static int
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004146ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
4147{
4148 struct ftrace_func_entry *entry;
4149
4150 if (!ftrace_location(ip))
4151 return -EINVAL;
4152
4153 if (remove) {
4154 entry = ftrace_lookup_ip(hash, ip);
4155 if (!entry)
4156 return -ENOENT;
4157 free_hash_entry(hash, entry);
4158 return 0;
4159 }
4160
4161 return add_hash_entry(hash, ip);
4162}
4163
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04004164static void ftrace_ops_update_code(struct ftrace_ops *ops,
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004165 struct ftrace_ops_hash *old_hash)
Steven Rostedt (Red Hat)1c80c432013-07-25 20:22:00 -04004166{
Steven Rostedt (Red Hat)8f86f832015-01-13 11:20:43 -05004167 struct ftrace_ops *op;
4168
4169 if (!ftrace_enabled)
4170 return;
4171
4172 if (ops->flags & FTRACE_OPS_FL_ENABLED) {
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04004173 ftrace_run_modify_code(ops, FTRACE_UPDATE_CALLS, old_hash);
Steven Rostedt (Red Hat)8f86f832015-01-13 11:20:43 -05004174 return;
4175 }
4176
4177 /*
4178 * If this is the shared global_ops filter, then we need to
4179 * check if there is another ops that shares it, is enabled.
4180 * If so, we still need to run the modify code.
4181 */
4182 if (ops->func_hash != &global_ops.local_hash)
4183 return;
4184
4185 do_for_each_ftrace_op(op, ftrace_ops_list) {
4186 if (op->func_hash == &global_ops.local_hash &&
4187 op->flags & FTRACE_OPS_FL_ENABLED) {
4188 ftrace_run_modify_code(op, FTRACE_UPDATE_CALLS, old_hash);
4189 /* Only need to do this once */
4190 return;
4191 }
4192 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)1c80c432013-07-25 20:22:00 -04004193}
4194
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004195static int
4196ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
4197 unsigned long ip, int remove, int reset, int enable)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004198{
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004199 struct ftrace_hash **orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004200 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004201 struct ftrace_hash *old_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004202 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004203 int ret;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004204
Steven Rostedt41c52c02008-05-22 11:46:33 -04004205 if (unlikely(ftrace_disabled))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004206 return -ENODEV;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004207
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004208 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004209
Steven Rostedtf45948e2011-05-02 12:29:25 -04004210 if (enable)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004211 orig_hash = &ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004212 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004213 orig_hash = &ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004214
Wang Nanb972cc52014-07-15 08:40:20 +08004215 if (reset)
4216 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4217 else
4218 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
4219
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004220 if (!hash) {
4221 ret = -ENOMEM;
4222 goto out_regex_unlock;
4223 }
Steven Rostedtf45948e2011-05-02 12:29:25 -04004224
Jiri Olsaac483c42012-01-02 10:04:14 +01004225 if (buf && !ftrace_match_records(hash, buf, len)) {
4226 ret = -EINVAL;
4227 goto out_regex_unlock;
4228 }
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004229 if (ip) {
4230 ret = ftrace_match_addr(hash, ip, remove);
4231 if (ret < 0)
4232 goto out_regex_unlock;
4233 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004234
4235 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004236 old_hash = *orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004237 old_hash_ops.filter_hash = ops->func_hash->filter_hash;
4238 old_hash_ops.notrace_hash = ops->func_hash->notrace_hash;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04004239 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004240 if (!ret) {
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004241 ftrace_ops_update_code(ops, &old_hash_ops);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004242 free_ftrace_hash_rcu(old_hash);
4243 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004244 mutex_unlock(&ftrace_lock);
4245
Jiri Olsaac483c42012-01-02 10:04:14 +01004246 out_regex_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004247 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004248
4249 free_ftrace_hash(hash);
4250 return ret;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004251}
4252
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004253static int
4254ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove,
4255 int reset, int enable)
4256{
4257 return ftrace_set_hash(ops, 0, 0, ip, remove, reset, enable);
4258}
4259
4260/**
4261 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
4262 * @ops - the ops to set the filter with
4263 * @ip - the address to add to or remove from the filter.
4264 * @remove - non zero to remove the ip from the filter
4265 * @reset - non zero to reset all filters before applying this filter.
4266 *
4267 * Filters denote which functions should be enabled when tracing is enabled
4268 * If @ip is NULL, it failes to update filter.
4269 */
4270int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
4271 int remove, int reset)
4272{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004273 ftrace_ops_init(ops);
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004274 return ftrace_set_addr(ops, ip, remove, reset, 1);
4275}
4276EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
4277
4278static int
4279ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
4280 int reset, int enable)
4281{
4282 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
4283}
4284
Steven Rostedt77a2b372008-05-12 21:20:45 +02004285/**
4286 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004287 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02004288 * @buf - the string that holds the function filter text.
4289 * @len - the length of the string.
4290 * @reset - non zero to reset all filters before applying this filter.
4291 *
4292 * Filters denote which functions should be enabled when tracing is enabled.
4293 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4294 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004295int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004296 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02004297{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004298 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004299 return ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04004300}
Steven Rostedt936e0742011-05-05 22:54:01 -04004301EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004302
Steven Rostedt41c52c02008-05-22 11:46:33 -04004303/**
4304 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004305 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04004306 * @buf - the string that holds the function notrace text.
4307 * @len - the length of the string.
4308 * @reset - non zero to reset all filters before applying this filter.
4309 *
4310 * Notrace Filters denote which functions should not be enabled when tracing
4311 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4312 * for tracing.
4313 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004314int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004315 int len, int reset)
4316{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004317 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004318 return ftrace_set_regex(ops, buf, len, reset, 0);
Steven Rostedt936e0742011-05-05 22:54:01 -04004319}
4320EXPORT_SYMBOL_GPL(ftrace_set_notrace);
4321/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004322 * ftrace_set_global_filter - set a function to filter on with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004323 * @buf - the string that holds the function filter text.
4324 * @len - the length of the string.
4325 * @reset - non zero to reset all filters before applying this filter.
4326 *
4327 * Filters denote which functions should be enabled when tracing is enabled.
4328 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4329 */
4330void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
4331{
4332 ftrace_set_regex(&global_ops, buf, len, reset, 1);
4333}
4334EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
4335
4336/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004337 * ftrace_set_global_notrace - set a function to not trace with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004338 * @buf - the string that holds the function notrace text.
4339 * @len - the length of the string.
4340 * @reset - non zero to reset all filters before applying this filter.
4341 *
4342 * Notrace Filters denote which functions should not be enabled when tracing
4343 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4344 * for tracing.
4345 */
4346void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004347{
Steven Rostedtf45948e2011-05-02 12:29:25 -04004348 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004349}
Steven Rostedt936e0742011-05-05 22:54:01 -04004350EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004351
Steven Rostedt2af15d62009-05-28 13:37:24 -04004352/*
4353 * command line interface to allow users to set filters on boot up.
4354 */
4355#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
4356static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4357static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
4358
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004359/* Used by function selftest to not test if filter is set */
4360bool ftrace_filter_param __initdata;
4361
Steven Rostedt2af15d62009-05-28 13:37:24 -04004362static int __init set_ftrace_notrace(char *str)
4363{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004364 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004365 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004366 return 1;
4367}
4368__setup("ftrace_notrace=", set_ftrace_notrace);
4369
4370static int __init set_ftrace_filter(char *str)
4371{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004372 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004373 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004374 return 1;
4375}
4376__setup("ftrace_filter=", set_ftrace_filter);
4377
Stefan Assmann369bc182009-10-12 22:17:21 +02004378#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08004379static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004380static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004381static int ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer);
Steven Rostedt801c29f2010-03-05 20:02:19 -05004382
Stefan Assmann369bc182009-10-12 22:17:21 +02004383static int __init set_graph_function(char *str)
4384{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02004385 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02004386 return 1;
4387}
4388__setup("ftrace_graph_filter=", set_graph_function);
4389
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004390static int __init set_graph_notrace_function(char *str)
4391{
4392 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
4393 return 1;
4394}
4395__setup("ftrace_graph_notrace=", set_graph_notrace_function);
4396
4397static void __init set_ftrace_early_graph(char *buf, int enable)
Stefan Assmann369bc182009-10-12 22:17:21 +02004398{
4399 int ret;
4400 char *func;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004401 unsigned long *table = ftrace_graph_funcs;
4402 int *count = &ftrace_graph_count;
4403
4404 if (!enable) {
4405 table = ftrace_graph_notrace_funcs;
4406 count = &ftrace_graph_notrace_count;
4407 }
Stefan Assmann369bc182009-10-12 22:17:21 +02004408
4409 while (buf) {
4410 func = strsep(&buf, ",");
4411 /* we allow only one expression at a time */
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004412 ret = ftrace_set_func(table, count, FTRACE_GRAPH_MAX_FUNCS, func);
Stefan Assmann369bc182009-10-12 22:17:21 +02004413 if (ret)
4414 printk(KERN_DEBUG "ftrace: function %s not "
4415 "traceable\n", func);
4416 }
4417}
4418#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4419
Steven Rostedt2a85a372011-12-19 21:57:44 -05004420void __init
4421ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04004422{
4423 char *func;
4424
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004425 ftrace_ops_init(ops);
4426
Steven Rostedt2af15d62009-05-28 13:37:24 -04004427 while (buf) {
4428 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04004429 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004430 }
4431}
4432
4433static void __init set_ftrace_early_filters(void)
4434{
4435 if (ftrace_filter_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004436 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004437 if (ftrace_notrace_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004438 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02004439#ifdef CONFIG_FUNCTION_GRAPH_TRACER
4440 if (ftrace_graph_buf[0])
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004441 set_ftrace_early_graph(ftrace_graph_buf, 1);
4442 if (ftrace_graph_notrace_buf[0])
4443 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02004444#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04004445}
4446
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004447int ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02004448{
4449 struct seq_file *m = (struct seq_file *)file->private_data;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004450 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02004451 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004452 struct ftrace_hash **orig_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004453 struct ftrace_hash *old_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004454 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04004455 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004456 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02004457
Steven Rostedt5072c592008-05-12 21:20:43 +02004458 if (file->f_mode & FMODE_READ) {
4459 iter = m->private;
Steven Rostedt5072c592008-05-12 21:20:43 +02004460 seq_release(inode, file);
4461 } else
4462 iter = file->private_data;
4463
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004464 parser = &iter->parser;
4465 if (trace_parser_loaded(parser)) {
4466 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004467 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02004468 }
4469
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004470 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004471
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004472 mutex_lock(&iter->ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004473
Steven Rostedt058e2972011-04-29 22:35:33 -04004474 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04004475 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
4476
4477 if (filter_hash)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004478 orig_hash = &iter->ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04004479 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004480 orig_hash = &iter->ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004481
Steven Rostedt058e2972011-04-29 22:35:33 -04004482 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004483 old_hash = *orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004484 old_hash_ops.filter_hash = iter->ops->func_hash->filter_hash;
4485 old_hash_ops.notrace_hash = iter->ops->func_hash->notrace_hash;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04004486 ret = ftrace_hash_move(iter->ops, filter_hash,
4487 orig_hash, iter->hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004488 if (!ret) {
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004489 ftrace_ops_update_code(iter->ops, &old_hash_ops);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004490 free_ftrace_hash_rcu(old_hash);
4491 }
Steven Rostedt058e2972011-04-29 22:35:33 -04004492 mutex_unlock(&ftrace_lock);
4493 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004494
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004495 mutex_unlock(&iter->ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004496 free_ftrace_hash(iter->hash);
4497 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04004498
Steven Rostedt5072c592008-05-12 21:20:43 +02004499 return 0;
4500}
4501
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004502static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02004503 .open = ftrace_avail_open,
4504 .read = seq_read,
4505 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08004506 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02004507};
4508
Steven Rostedt647bcd02011-05-03 14:39:21 -04004509static const struct file_operations ftrace_enabled_fops = {
4510 .open = ftrace_enabled_open,
4511 .read = seq_read,
4512 .llseek = seq_lseek,
4513 .release = seq_release_private,
4514};
4515
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004516static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02004517 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08004518 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02004519 .write = ftrace_filter_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004520 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004521 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02004522};
4523
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004524static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04004525 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08004526 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04004527 .write = ftrace_notrace_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004528 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004529 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04004530};
4531
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004532#ifdef CONFIG_FUNCTION_GRAPH_TRACER
4533
4534static DEFINE_MUTEX(graph_lock);
4535
4536int ftrace_graph_count;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004537int ftrace_graph_notrace_count;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004538unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004539unsigned long ftrace_graph_notrace_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004540
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004541struct ftrace_graph_data {
4542 unsigned long *table;
4543 size_t size;
4544 int *count;
4545 const struct seq_operations *seq_ops;
4546};
4547
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004548static void *
Li Zefan85951842009-06-24 09:54:00 +08004549__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004550{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004551 struct ftrace_graph_data *fgd = m->private;
4552
4553 if (*pos >= *fgd->count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004554 return NULL;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004555 return &fgd->table[*pos];
Li Zefan85951842009-06-24 09:54:00 +08004556}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004557
Li Zefan85951842009-06-24 09:54:00 +08004558static void *
4559g_next(struct seq_file *m, void *v, loff_t *pos)
4560{
4561 (*pos)++;
4562 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004563}
4564
4565static void *g_start(struct seq_file *m, loff_t *pos)
4566{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004567 struct ftrace_graph_data *fgd = m->private;
4568
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004569 mutex_lock(&graph_lock);
4570
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004571 /* Nothing, tell g_show to print all functions are enabled */
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004572 if (!*fgd->count && !*pos)
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004573 return (void *)1;
4574
Li Zefan85951842009-06-24 09:54:00 +08004575 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004576}
4577
4578static void g_stop(struct seq_file *m, void *p)
4579{
4580 mutex_unlock(&graph_lock);
4581}
4582
4583static int g_show(struct seq_file *m, void *v)
4584{
4585 unsigned long *ptr = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004586
4587 if (!ptr)
4588 return 0;
4589
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004590 if (ptr == (unsigned long *)1) {
Namhyung Kim280d1422014-06-13 01:23:51 +09004591 struct ftrace_graph_data *fgd = m->private;
4592
4593 if (fgd->table == ftrace_graph_funcs)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01004594 seq_puts(m, "#### all functions enabled ####\n");
Namhyung Kim280d1422014-06-13 01:23:51 +09004595 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01004596 seq_puts(m, "#### no functions disabled ####\n");
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004597 return 0;
4598 }
4599
Steven Rostedtb375a112009-09-17 00:05:58 -04004600 seq_printf(m, "%ps\n", (void *)*ptr);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004601
4602 return 0;
4603}
4604
James Morris88e9d342009-09-22 16:43:43 -07004605static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004606 .start = g_start,
4607 .next = g_next,
4608 .stop = g_stop,
4609 .show = g_show,
4610};
4611
4612static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004613__ftrace_graph_open(struct inode *inode, struct file *file,
4614 struct ftrace_graph_data *fgd)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004615{
4616 int ret = 0;
4617
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004618 mutex_lock(&graph_lock);
4619 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04004620 (file->f_flags & O_TRUNC)) {
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004621 *fgd->count = 0;
4622 memset(fgd->table, 0, fgd->size * sizeof(*fgd->table));
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004623 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004624 mutex_unlock(&graph_lock);
4625
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004626 if (file->f_mode & FMODE_READ) {
4627 ret = seq_open(file, fgd->seq_ops);
4628 if (!ret) {
4629 struct seq_file *m = file->private_data;
4630 m->private = fgd;
4631 }
4632 } else
4633 file->private_data = fgd;
Li Zefana4ec5e02009-09-18 14:06:28 +08004634
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004635 return ret;
4636}
4637
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004638static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004639ftrace_graph_open(struct inode *inode, struct file *file)
4640{
4641 struct ftrace_graph_data *fgd;
4642
4643 if (unlikely(ftrace_disabled))
4644 return -ENODEV;
4645
4646 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4647 if (fgd == NULL)
4648 return -ENOMEM;
4649
4650 fgd->table = ftrace_graph_funcs;
4651 fgd->size = FTRACE_GRAPH_MAX_FUNCS;
4652 fgd->count = &ftrace_graph_count;
4653 fgd->seq_ops = &ftrace_graph_seq_ops;
4654
4655 return __ftrace_graph_open(inode, file, fgd);
4656}
4657
4658static int
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004659ftrace_graph_notrace_open(struct inode *inode, struct file *file)
4660{
4661 struct ftrace_graph_data *fgd;
4662
4663 if (unlikely(ftrace_disabled))
4664 return -ENODEV;
4665
4666 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4667 if (fgd == NULL)
4668 return -ENOMEM;
4669
4670 fgd->table = ftrace_graph_notrace_funcs;
4671 fgd->size = FTRACE_GRAPH_MAX_FUNCS;
4672 fgd->count = &ftrace_graph_notrace_count;
4673 fgd->seq_ops = &ftrace_graph_seq_ops;
4674
4675 return __ftrace_graph_open(inode, file, fgd);
4676}
4677
4678static int
Li Zefan87827112009-07-23 11:29:11 +08004679ftrace_graph_release(struct inode *inode, struct file *file)
4680{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004681 if (file->f_mode & FMODE_READ) {
4682 struct seq_file *m = file->private_data;
4683
4684 kfree(m->private);
Li Zefan87827112009-07-23 11:29:11 +08004685 seq_release(inode, file);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004686 } else {
4687 kfree(file->private_data);
4688 }
4689
Li Zefan87827112009-07-23 11:29:11 +08004690 return 0;
4691}
4692
4693static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004694ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004695{
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004696 struct ftrace_glob func_g;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004697 struct dyn_ftrace *rec;
4698 struct ftrace_page *pg;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004699 int fail = 1;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004700 int not;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004701 bool exists;
4702 int i;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004703
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004704 /* decode regex */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004705 func_g.type = filter_parse_regex(buffer, strlen(buffer),
4706 &func_g.search, &not);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004707 if (!not && *idx >= size)
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004708 return -EBUSY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004709
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004710 func_g.len = strlen(func_g.search);
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004711
Steven Rostedt52baf112009-02-14 01:15:39 -05004712 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04004713
4714 if (unlikely(ftrace_disabled)) {
4715 mutex_unlock(&ftrace_lock);
4716 return -ENODEV;
4717 }
4718
Steven Rostedt265c8312009-02-13 12:43:56 -05004719 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004720
Steven Rostedt (Red Hat)546fece2016-11-14 16:31:49 -05004721 if (rec->flags & FTRACE_FL_DISABLED)
4722 continue;
4723
Dmitry Safonov0b507e12015-09-29 19:46:15 +03004724 if (ftrace_match_record(rec, &func_g, NULL, 0)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004725 /* if it is in the array */
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004726 exists = false;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004727 for (i = 0; i < *idx; i++) {
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004728 if (array[i] == rec->ip) {
4729 exists = true;
Steven Rostedt265c8312009-02-13 12:43:56 -05004730 break;
4731 }
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004732 }
4733
4734 if (!not) {
4735 fail = 0;
4736 if (!exists) {
4737 array[(*idx)++] = rec->ip;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004738 if (*idx >= size)
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004739 goto out;
4740 }
4741 } else {
4742 if (exists) {
4743 array[i] = array[--(*idx)];
4744 array[*idx] = 0;
4745 fail = 0;
4746 }
4747 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004748 }
Steven Rostedt265c8312009-02-13 12:43:56 -05004749 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004750out:
Steven Rostedt52baf112009-02-14 01:15:39 -05004751 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004752
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004753 if (fail)
4754 return -EINVAL;
4755
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004756 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004757}
4758
4759static ssize_t
4760ftrace_graph_write(struct file *file, const char __user *ubuf,
4761 size_t cnt, loff_t *ppos)
4762{
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004763 struct trace_parser parser;
Namhyung Kim6a101082013-10-14 17:24:25 +09004764 ssize_t read, ret = 0;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004765 struct ftrace_graph_data *fgd = file->private_data;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004766
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004767 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004768 return 0;
4769
Namhyung Kim6a101082013-10-14 17:24:25 +09004770 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX))
4771 return -ENOMEM;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004772
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004773 read = trace_get_user(&parser, ubuf, cnt, ppos);
4774
Li Zefan4ba79782009-09-22 13:52:20 +08004775 if (read >= 0 && trace_parser_loaded((&parser))) {
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004776 parser.buffer[parser.idx] = 0;
4777
Namhyung Kim6a101082013-10-14 17:24:25 +09004778 mutex_lock(&graph_lock);
4779
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004780 /* we allow only one expression at a time */
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004781 ret = ftrace_set_func(fgd->table, fgd->count, fgd->size,
4782 parser.buffer);
Namhyung Kim6a101082013-10-14 17:24:25 +09004783
4784 mutex_unlock(&graph_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004785 }
4786
Namhyung Kim6a101082013-10-14 17:24:25 +09004787 if (!ret)
4788 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08004789
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004790 trace_parser_put(&parser);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004791
4792 return ret;
4793}
4794
4795static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08004796 .open = ftrace_graph_open,
4797 .read = seq_read,
4798 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004799 .llseek = tracing_lseek,
Li Zefan87827112009-07-23 11:29:11 +08004800 .release = ftrace_graph_release,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004801};
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004802
4803static const struct file_operations ftrace_graph_notrace_fops = {
4804 .open = ftrace_graph_notrace_open,
4805 .read = seq_read,
4806 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004807 .llseek = tracing_lseek,
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004808 .release = ftrace_graph_release,
4809};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004810#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4811
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05004812void ftrace_create_filter_files(struct ftrace_ops *ops,
4813 struct dentry *parent)
4814{
4815
4816 trace_create_file("set_ftrace_filter", 0644, parent,
4817 ops, &ftrace_filter_fops);
4818
4819 trace_create_file("set_ftrace_notrace", 0644, parent,
4820 ops, &ftrace_notrace_fops);
4821}
4822
4823/*
4824 * The name "destroy_filter_files" is really a misnomer. Although
4825 * in the future, it may actualy delete the files, but this is
4826 * really intended to make sure the ops passed in are disabled
4827 * and that when this function returns, the caller is free to
4828 * free the ops.
4829 *
4830 * The "destroy" name is only to match the "create" name that this
4831 * should be paired with.
4832 */
4833void ftrace_destroy_filter_files(struct ftrace_ops *ops)
4834{
4835 mutex_lock(&ftrace_lock);
4836 if (ops->flags & FTRACE_OPS_FL_ENABLED)
4837 ftrace_shutdown(ops, 0);
4838 ops->flags |= FTRACE_OPS_FL_DELETED;
4839 mutex_unlock(&ftrace_lock);
4840}
4841
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05004842static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02004843{
Steven Rostedt5072c592008-05-12 21:20:43 +02004844
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004845 trace_create_file("available_filter_functions", 0444,
4846 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02004847
Steven Rostedt647bcd02011-05-03 14:39:21 -04004848 trace_create_file("enabled_functions", 0444,
4849 d_tracer, NULL, &ftrace_enabled_fops);
4850
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05004851 ftrace_create_filter_files(&global_ops, d_tracer);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04004852
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004853#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004854 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004855 NULL,
4856 &ftrace_graph_fops);
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004857 trace_create_file("set_graph_notrace", 0444, d_tracer,
4858 NULL,
4859 &ftrace_graph_notrace_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004860#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4861
Steven Rostedt5072c592008-05-12 21:20:43 +02004862 return 0;
4863}
4864
Steven Rostedt9fd49322012-04-24 22:32:06 -04004865static int ftrace_cmp_ips(const void *a, const void *b)
Steven Rostedt68950612011-12-16 17:06:45 -05004866{
Steven Rostedt9fd49322012-04-24 22:32:06 -04004867 const unsigned long *ipa = a;
4868 const unsigned long *ipb = b;
Steven Rostedt68950612011-12-16 17:06:45 -05004869
Steven Rostedt9fd49322012-04-24 22:32:06 -04004870 if (*ipa > *ipb)
4871 return 1;
4872 if (*ipa < *ipb)
4873 return -1;
4874 return 0;
4875}
4876
Sami Tolvanen7bd125e2017-06-16 12:52:57 -07004877static int __norecordmcount ftrace_process_locs(struct module *mod,
4878 unsigned long *start,
4879 unsigned long *end)
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004880{
Steven Rostedt706c81f2012-04-24 23:45:26 -04004881 struct ftrace_page *start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004882 struct ftrace_page *pg;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004883 struct dyn_ftrace *rec;
Steven Rostedta7900872011-12-16 16:23:44 -05004884 unsigned long count;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004885 unsigned long *p;
4886 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04004887 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedta7900872011-12-16 16:23:44 -05004888 int ret = -ENOMEM;
4889
4890 count = end - start;
4891
4892 if (!count)
4893 return 0;
4894
Steven Rostedt9fd49322012-04-24 22:32:06 -04004895 sort(start, count, sizeof(*start),
Rasmus Villemoes6db02902015-09-09 23:27:02 +02004896 ftrace_cmp_ips, NULL);
Steven Rostedt9fd49322012-04-24 22:32:06 -04004897
Steven Rostedt706c81f2012-04-24 23:45:26 -04004898 start_pg = ftrace_allocate_pages(count);
4899 if (!start_pg)
Steven Rostedta7900872011-12-16 16:23:44 -05004900 return -ENOMEM;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004901
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004902 mutex_lock(&ftrace_lock);
Steven Rostedta7900872011-12-16 16:23:44 -05004903
Steven Rostedt32082302011-12-16 14:42:37 -05004904 /*
4905 * Core and each module needs their own pages, as
4906 * modules will free them when they are removed.
4907 * Force a new page to be allocated for modules.
4908 */
Steven Rostedta7900872011-12-16 16:23:44 -05004909 if (!mod) {
4910 WARN_ON(ftrace_pages || ftrace_pages_start);
4911 /* First initialization */
Steven Rostedt706c81f2012-04-24 23:45:26 -04004912 ftrace_pages = ftrace_pages_start = start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004913 } else {
Steven Rostedt32082302011-12-16 14:42:37 -05004914 if (!ftrace_pages)
Steven Rostedta7900872011-12-16 16:23:44 -05004915 goto out;
Steven Rostedt32082302011-12-16 14:42:37 -05004916
Steven Rostedta7900872011-12-16 16:23:44 -05004917 if (WARN_ON(ftrace_pages->next)) {
4918 /* Hmm, we have free pages? */
4919 while (ftrace_pages->next)
4920 ftrace_pages = ftrace_pages->next;
Steven Rostedt32082302011-12-16 14:42:37 -05004921 }
Steven Rostedta7900872011-12-16 16:23:44 -05004922
Steven Rostedt706c81f2012-04-24 23:45:26 -04004923 ftrace_pages->next = start_pg;
Steven Rostedt32082302011-12-16 14:42:37 -05004924 }
4925
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004926 p = start;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004927 pg = start_pg;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004928 while (p < end) {
4929 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08004930 /*
4931 * Some architecture linkers will pad between
4932 * the different mcount_loc sections of different
4933 * object files to satisfy alignments.
4934 * Skip any NULL pointers.
4935 */
4936 if (!addr)
4937 continue;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004938
4939 if (pg->index == pg->size) {
4940 /* We should have allocated enough */
4941 if (WARN_ON(!pg->next))
4942 break;
4943 pg = pg->next;
4944 }
4945
4946 rec = &pg->records[pg->index++];
4947 rec->ip = addr;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004948 }
4949
Steven Rostedt706c81f2012-04-24 23:45:26 -04004950 /* We should have used all pages */
4951 WARN_ON(pg->next);
4952
4953 /* Assign the last page to ftrace_pages */
4954 ftrace_pages = pg;
4955
Steven Rostedta4f18ed2011-06-07 09:26:46 -04004956 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04004957 * We only need to disable interrupts on start up
4958 * because we are modifying code that an interrupt
4959 * may execute, and the modification is not atomic.
4960 * But for modules, nothing runs the code we modify
4961 * until we are finished with it, and there's no
4962 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04004963 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04004964 if (!mod)
4965 local_irq_save(flags);
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01004966 ftrace_update_code(mod, start_pg);
Steven Rostedt4376cac2011-06-24 23:28:13 -04004967 if (!mod)
4968 local_irq_restore(flags);
Steven Rostedta7900872011-12-16 16:23:44 -05004969 ret = 0;
4970 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004971 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004972
Steven Rostedta7900872011-12-16 16:23:44 -05004973 return ret;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004974}
4975
Steven Rostedt93eb6772009-04-15 13:24:06 -04004976#ifdef CONFIG_MODULES
Steven Rostedt32082302011-12-16 14:42:37 -05004977
4978#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
4979
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05004980static int referenced_filters(struct dyn_ftrace *rec)
4981{
4982 struct ftrace_ops *ops;
4983 int cnt = 0;
4984
4985 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
4986 if (ops_references_rec(ops, rec))
4987 cnt++;
4988 }
4989
4990 return cnt;
4991}
4992
jolsa@redhat.come7247a12009-10-07 19:00:35 +02004993void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04004994{
4995 struct dyn_ftrace *rec;
Steven Rostedt32082302011-12-16 14:42:37 -05004996 struct ftrace_page **last_pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04004997 struct ftrace_page *pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004998 int order;
Steven Rostedt93eb6772009-04-15 13:24:06 -04004999
Steven Rostedt93eb6772009-04-15 13:24:06 -04005000 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04005001
5002 if (ftrace_disabled)
5003 goto out_unlock;
5004
Steven Rostedt32082302011-12-16 14:42:37 -05005005 /*
5006 * Each module has its own ftrace_pages, remove
5007 * them from the list.
5008 */
5009 last_pg = &ftrace_pages_start;
5010 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
5011 rec = &pg->records[0];
jolsa@redhat.come7247a12009-10-07 19:00:35 +02005012 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04005013 /*
Steven Rostedt32082302011-12-16 14:42:37 -05005014 * As core pages are first, the first
5015 * page should never be a module page.
Steven Rostedt93eb6772009-04-15 13:24:06 -04005016 */
Steven Rostedt32082302011-12-16 14:42:37 -05005017 if (WARN_ON(pg == ftrace_pages_start))
5018 goto out_unlock;
5019
5020 /* Check if we are deleting the last page */
5021 if (pg == ftrace_pages)
5022 ftrace_pages = next_to_ftrace_page(last_pg);
5023
5024 *last_pg = pg->next;
Steven Rostedta7900872011-12-16 16:23:44 -05005025 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
5026 free_pages((unsigned long)pg->records, order);
5027 kfree(pg);
Steven Rostedt32082302011-12-16 14:42:37 -05005028 } else
5029 last_pg = &pg->next;
5030 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04005031 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04005032 mutex_unlock(&ftrace_lock);
5033}
5034
Jessica Yu7dcd1822016-02-16 17:32:33 -05005035void ftrace_module_enable(struct module *mod)
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05005036{
5037 struct dyn_ftrace *rec;
5038 struct ftrace_page *pg;
5039
5040 mutex_lock(&ftrace_lock);
5041
5042 if (ftrace_disabled)
5043 goto out_unlock;
5044
5045 /*
5046 * If the tracing is enabled, go ahead and enable the record.
5047 *
5048 * The reason not to enable the record immediatelly is the
5049 * inherent check of ftrace_make_nop/ftrace_make_call for
5050 * correct previous instructions. Making first the NOP
5051 * conversion puts the module to the correct state, thus
5052 * passing the ftrace_make_call check.
5053 *
5054 * We also delay this to after the module code already set the
5055 * text to read-only, as we now need to set it back to read-write
5056 * so that we can modify the text.
5057 */
5058 if (ftrace_start_up)
5059 ftrace_arch_code_modify_prepare();
5060
5061 do_for_each_ftrace_rec(pg, rec) {
5062 int cnt;
5063 /*
5064 * do_for_each_ftrace_rec() is a double loop.
5065 * module text shares the pg. If a record is
5066 * not part of this module, then skip this pg,
5067 * which the "break" will do.
5068 */
5069 if (!within_module_core(rec->ip, mod))
5070 break;
5071
5072 cnt = 0;
5073
5074 /*
5075 * When adding a module, we need to check if tracers are
5076 * currently enabled and if they are, and can trace this record,
5077 * we need to enable the module functions as well as update the
5078 * reference counts for those function records.
5079 */
5080 if (ftrace_start_up)
5081 cnt += referenced_filters(rec);
5082
5083 /* This clears FTRACE_FL_DISABLED */
5084 rec->flags = cnt;
5085
5086 if (ftrace_start_up && cnt) {
5087 int failed = __ftrace_replace_code(rec, 1);
5088 if (failed) {
5089 ftrace_bug(failed, rec);
5090 goto out_loop;
5091 }
5092 }
5093
5094 } while_for_each_ftrace_rec();
5095
5096 out_loop:
5097 if (ftrace_start_up)
5098 ftrace_arch_code_modify_post_process();
5099
5100 out_unlock:
5101 mutex_unlock(&ftrace_lock);
5102}
5103
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04005104void ftrace_module_init(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005105{
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005106 if (ftrace_disabled || !mod->num_ftrace_callsites)
Abel Vesab6b71f62015-12-02 15:39:57 +01005107 return;
5108
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005109 ftrace_process_locs(mod, mod->ftrace_callsites,
5110 mod->ftrace_callsites + mod->num_ftrace_callsites);
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05005111}
Steven Rostedt93eb6772009-04-15 13:24:06 -04005112#endif /* CONFIG_MODULES */
5113
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005114void __init ftrace_init(void)
5115{
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01005116 extern unsigned long __start_mcount_loc[];
5117 extern unsigned long __stop_mcount_loc[];
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005118 unsigned long count, flags;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005119 int ret;
5120
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005121 local_irq_save(flags);
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005122 ret = ftrace_dyn_arch_init();
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005123 local_irq_restore(flags);
Jiri Slabyaf64a7c2014-02-24 19:59:58 +01005124 if (ret)
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005125 goto failed;
5126
5127 count = __stop_mcount_loc - __start_mcount_loc;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005128 if (!count) {
5129 pr_info("ftrace: No functions to be traced?\n");
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005130 goto failed;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005131 }
5132
5133 pr_info("ftrace: allocating %ld entries in %ld pages\n",
5134 count, count / ENTRIES_PER_PAGE + 1);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005135
5136 last_ftrace_enabled = ftrace_enabled = 1;
5137
Jiri Olsa5cb084b2009-10-13 16:33:53 -04005138 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08005139 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005140 __stop_mcount_loc);
5141
Steven Rostedt2af15d62009-05-28 13:37:24 -04005142 set_ftrace_early_filters();
5143
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005144 return;
5145 failed:
5146 ftrace_disabled = 1;
5147}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005148
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005149/* Do nothing if arch does not support this */
5150void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
5151{
5152}
5153
5154static void ftrace_update_trampoline(struct ftrace_ops *ops)
5155{
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04005156
5157/*
5158 * Currently there's no safe way to free a trampoline when the kernel
5159 * is configured with PREEMPT. That is because a task could be preempted
5160 * when it jumped to the trampoline, it may be preempted for a long time
5161 * depending on the system load, and currently there's no way to know
5162 * when it will be off the trampoline. If the trampoline is freed
5163 * too early, when the task runs again, it will be executing on freed
5164 * memory and crash.
5165 */
5166#ifdef CONFIG_PREEMPT
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005167 /* Currently, only non dynamic ops can have a trampoline */
5168 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
5169 return;
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04005170#endif
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005171
5172 arch_ftrace_update_trampoline(ops);
5173}
5174
Steven Rostedt3d083392008-05-12 21:20:42 +02005175#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005176
Steven Rostedt2b499382011-05-03 22:49:52 -04005177static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04005178 .func = ftrace_stub,
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005179 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5180 FTRACE_OPS_FL_INITIALIZED |
5181 FTRACE_OPS_FL_PID,
Steven Rostedtbd69c302011-05-03 21:55:54 -04005182};
5183
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005184static int __init ftrace_nodyn_init(void)
5185{
5186 ftrace_enabled = 1;
5187 return 0;
5188}
Steven Rostedt6f415672012-10-05 12:13:07 -04005189core_initcall(ftrace_nodyn_init);
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005190
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005191static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005192static inline void ftrace_startup_enable(int command) { }
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005193static inline void ftrace_startup_all(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05005194/* Keep as macros so we do not need to define the commands */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005195# define ftrace_startup(ops, command) \
5196 ({ \
5197 int ___ret = __register_ftrace_function(ops); \
5198 if (!___ret) \
5199 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
5200 ___ret; \
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04005201 })
Steven Rostedt (Red Hat)1fcc1552014-02-19 15:12:18 -05005202# define ftrace_shutdown(ops, command) \
5203 ({ \
5204 int ___ret = __unregister_ftrace_function(ops); \
5205 if (!___ret) \
5206 (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \
5207 ___ret; \
5208 })
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005209
Ingo Molnarc7aafc52008-05-12 21:20:45 +02005210# define ftrace_startup_sysctl() do { } while (0)
5211# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04005212
5213static inline int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04005214ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005215{
5216 return 1;
5217}
5218
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005219static void ftrace_update_trampoline(struct ftrace_ops *ops)
5220{
5221}
5222
Steven Rostedt3d083392008-05-12 21:20:42 +02005223#endif /* CONFIG_DYNAMIC_FTRACE */
5224
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005225__init void ftrace_init_global_array_ops(struct trace_array *tr)
5226{
5227 tr->ops = &global_ops;
5228 tr->ops->private = tr;
5229}
5230
5231void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
5232{
5233 /* If we filter on pids, update to use the pid function */
5234 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
5235 if (WARN_ON(tr->ops->func != ftrace_stub))
5236 printk("ftrace ops had %pS for function\n",
5237 tr->ops->func);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005238 }
5239 tr->ops->func = func;
5240 tr->ops->private = tr;
5241}
5242
5243void ftrace_reset_array_ops(struct trace_array *tr)
5244{
5245 tr->ops->func = ftrace_stub;
5246}
5247
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005248static inline void
5249__ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005250 struct ftrace_ops *ignored, struct pt_regs *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005251{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005252 struct ftrace_ops *op;
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005253 int bit;
Steven Rostedtb8489142011-05-04 09:27:52 -04005254
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005255 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5256 if (bit < 0)
5257 return;
Steven Rostedtc29f1222012-11-02 17:17:59 -04005258
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005259 /*
5260 * Some of the ops may be dynamically allocated,
5261 * they must be freed after a synchronize_sched().
5262 */
5263 preempt_disable_notrace();
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05005264
Steven Rostedt0a016402012-11-02 17:03:03 -04005265 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05005266 /*
5267 * Check the following for each ops before calling their func:
5268 * if RCU flag is set, then rcu_is_watching() must be true
5269 * if PER_CPU is set, then ftrace_function_local_disable()
5270 * must be false
5271 * Otherwise test if the ip matches the ops filter
5272 *
5273 * If any of the above fails then the op->func() is not executed.
5274 */
5275 if ((!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching()) &&
5276 (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5277 !ftrace_function_local_disabled(op)) &&
5278 ftrace_ops_test(op, ip, regs)) {
5279
Steven Rostedt (Red Hat)1d48d592014-06-25 11:54:03 -04005280 if (FTRACE_WARN_ON(!op->func)) {
5281 pr_warn("op=%p %pS\n", op, op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005282 goto out;
5283 }
Steven Rostedta1e2e312011-08-09 12:50:46 -04005284 op->func(ip, parent_ip, op, regs);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005285 }
Steven Rostedt0a016402012-11-02 17:03:03 -04005286 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005287out:
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005288 preempt_enable_notrace();
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005289 trace_clear_recursion(bit);
Steven Rostedtb8489142011-05-04 09:27:52 -04005290}
5291
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005292/*
5293 * Some archs only support passing ip and parent_ip. Even though
5294 * the list function ignores the op parameter, we do not want any
5295 * C side effects, where a function is called without the caller
5296 * sending a third parameter.
Steven Rostedta1e2e312011-08-09 12:50:46 -04005297 * Archs are to support both the regs and ftrace_ops at the same time.
5298 * If they support ftrace_ops, it is assumed they support regs.
5299 * If call backs want to use regs, they must either check for regs
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +09005300 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
5301 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
Steven Rostedta1e2e312011-08-09 12:50:46 -04005302 * An architecture can pass partial regs with ftrace_ops and still
Li Binb8ec3302015-11-30 18:23:36 +08005303 * set the ARCH_SUPPORTS_FTRACE_OPS.
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005304 */
5305#if ARCH_SUPPORTS_FTRACE_OPS
5306static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005307 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005308{
Steven Rostedta1e2e312011-08-09 12:50:46 -04005309 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005310}
5311#else
5312static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip)
5313{
Steven Rostedta1e2e312011-08-09 12:50:46 -04005314 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005315}
5316#endif
5317
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005318/*
5319 * If there's only one function registered but it does not support
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005320 * recursion, needs RCU protection and/or requires per cpu handling, then
5321 * this function will be called by the mcount trampoline.
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005322 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005323static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005324 struct ftrace_ops *op, struct pt_regs *regs)
5325{
5326 int bit;
5327
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005328 if ((op->flags & FTRACE_OPS_FL_RCU) && !rcu_is_watching())
5329 return;
5330
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005331 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5332 if (bit < 0)
5333 return;
5334
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005335 preempt_disable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005336
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005337 if (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5338 !ftrace_function_local_disabled(op)) {
5339 op->func(ip, parent_ip, op, regs);
5340 }
5341
5342 preempt_enable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005343 trace_clear_recursion(bit);
5344}
5345
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005346/**
5347 * ftrace_ops_get_func - get the function a trampoline should call
5348 * @ops: the ops to get the function for
5349 *
5350 * Normally the mcount trampoline will call the ops->func, but there
5351 * are times that it should not. For example, if the ops does not
5352 * have its own recursion protection, then it should call the
5353 * ftrace_ops_recurs_func() instead.
5354 *
5355 * Returns the function that the trampoline should call for @ops.
5356 */
5357ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
5358{
5359 /*
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005360 * If the function does not handle recursion, needs to be RCU safe,
5361 * or does per cpu logic, then we need to call the assist handler.
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005362 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005363 if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE) ||
5364 ops->flags & (FTRACE_OPS_FL_RCU | FTRACE_OPS_FL_PER_CPU))
5365 return ftrace_ops_assist_func;
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005366
5367 return ops->func;
5368}
5369
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005370static void
5371ftrace_filter_pid_sched_switch_probe(void *data, bool preempt,
5372 struct task_struct *prev, struct task_struct *next)
Steven Rostedte32d8952008-12-04 00:26:41 -05005373{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005374 struct trace_array *tr = data;
5375 struct trace_pid_list *pid_list;
5376
5377 pid_list = rcu_dereference_sched(tr->function_pids);
5378
5379 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
5380 trace_ignore_this_task(pid_list, next));
5381}
5382
5383static void clear_ftrace_pids(struct trace_array *tr)
5384{
5385 struct trace_pid_list *pid_list;
Steven Rostedte32d8952008-12-04 00:26:41 -05005386 int cpu;
5387
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005388 pid_list = rcu_dereference_protected(tr->function_pids,
5389 lockdep_is_held(&ftrace_lock));
5390 if (!pid_list)
5391 return;
5392
5393 unregister_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
5394
5395 for_each_possible_cpu(cpu)
5396 per_cpu_ptr(tr->trace_buffer.data, cpu)->ftrace_ignore_pid = false;
5397
5398 rcu_assign_pointer(tr->function_pids, NULL);
5399
5400 /* Wait till all users are no longer using pid filtering */
5401 synchronize_sched();
5402
5403 trace_free_pid_list(pid_list);
Steven Rostedte32d8952008-12-04 00:26:41 -05005404}
5405
Namhyung Kim7da0f8e2017-04-17 11:44:27 +09005406void ftrace_clear_pids(struct trace_array *tr)
5407{
5408 mutex_lock(&ftrace_lock);
5409
5410 clear_ftrace_pids(tr);
5411
5412 mutex_unlock(&ftrace_lock);
5413}
5414
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005415static void ftrace_pid_reset(struct trace_array *tr)
Steven Rostedte32d8952008-12-04 00:26:41 -05005416{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005417 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005418 clear_ftrace_pids(tr);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005419
5420 ftrace_update_pid_func();
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005421 ftrace_startup_all(0);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005422
5423 mutex_unlock(&ftrace_lock);
5424}
5425
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005426/* Greater than any max PID */
5427#define FTRACE_NO_PIDS (void *)(PID_MAX_LIMIT + 1)
5428
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005429static void *fpid_start(struct seq_file *m, loff_t *pos)
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005430 __acquires(RCU)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005431{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005432 struct trace_pid_list *pid_list;
5433 struct trace_array *tr = m->private;
5434
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005435 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005436 rcu_read_lock_sched();
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005437
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005438 pid_list = rcu_dereference_sched(tr->function_pids);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005439
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005440 if (!pid_list)
5441 return !(*pos) ? FTRACE_NO_PIDS : NULL;
5442
5443 return trace_pid_start(pid_list, pos);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005444}
5445
5446static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
5447{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005448 struct trace_array *tr = m->private;
5449 struct trace_pid_list *pid_list = rcu_dereference_sched(tr->function_pids);
5450
5451 if (v == FTRACE_NO_PIDS)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005452 return NULL;
5453
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005454 return trace_pid_next(pid_list, v, pos);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005455}
5456
5457static void fpid_stop(struct seq_file *m, void *p)
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005458 __releases(RCU)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005459{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005460 rcu_read_unlock_sched();
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005461 mutex_unlock(&ftrace_lock);
5462}
5463
5464static int fpid_show(struct seq_file *m, void *v)
5465{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005466 if (v == FTRACE_NO_PIDS) {
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005467 seq_puts(m, "no pid\n");
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005468 return 0;
5469 }
5470
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005471 return trace_pid_show(m, v);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005472}
5473
5474static const struct seq_operations ftrace_pid_sops = {
5475 .start = fpid_start,
5476 .next = fpid_next,
5477 .stop = fpid_stop,
5478 .show = fpid_show,
5479};
5480
5481static int
5482ftrace_pid_open(struct inode *inode, struct file *file)
5483{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005484 struct trace_array *tr = inode->i_private;
5485 struct seq_file *m;
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005486 int ret = 0;
5487
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005488 if (trace_array_get(tr) < 0)
5489 return -ENODEV;
5490
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005491 if ((file->f_mode & FMODE_WRITE) &&
5492 (file->f_flags & O_TRUNC))
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005493 ftrace_pid_reset(tr);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005494
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005495 ret = seq_open(file, &ftrace_pid_sops);
5496 if (ret < 0) {
5497 trace_array_put(tr);
5498 } else {
5499 m = file->private_data;
5500 /* copy tr over to seq ops */
5501 m->private = tr;
5502 }
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005503
5504 return ret;
5505}
5506
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005507static void ignore_task_cpu(void *data)
5508{
5509 struct trace_array *tr = data;
5510 struct trace_pid_list *pid_list;
5511
5512 /*
5513 * This function is called by on_each_cpu() while the
5514 * event_mutex is held.
5515 */
5516 pid_list = rcu_dereference_protected(tr->function_pids,
5517 mutex_is_locked(&ftrace_lock));
5518
5519 this_cpu_write(tr->trace_buffer.data->ftrace_ignore_pid,
5520 trace_ignore_this_task(pid_list, current));
5521}
5522
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005523static ssize_t
5524ftrace_pid_write(struct file *filp, const char __user *ubuf,
5525 size_t cnt, loff_t *ppos)
5526{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005527 struct seq_file *m = filp->private_data;
5528 struct trace_array *tr = m->private;
5529 struct trace_pid_list *filtered_pids = NULL;
5530 struct trace_pid_list *pid_list;
5531 ssize_t ret;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005532
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005533 if (!cnt)
5534 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005535
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005536 mutex_lock(&ftrace_lock);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005537
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005538 filtered_pids = rcu_dereference_protected(tr->function_pids,
5539 lockdep_is_held(&ftrace_lock));
5540
5541 ret = trace_pid_write(filtered_pids, &pid_list, ubuf, cnt);
5542 if (ret < 0)
5543 goto out;
5544
5545 rcu_assign_pointer(tr->function_pids, pid_list);
5546
5547 if (filtered_pids) {
5548 synchronize_sched();
5549 trace_free_pid_list(filtered_pids);
5550 } else if (pid_list) {
5551 /* Register a probe to set whether to ignore the tracing of a task */
5552 register_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
5553 }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005554
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005555 /*
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005556 * Ignoring of pids is done at task switch. But we have to
5557 * check for those tasks that are currently running.
5558 * Always do this in case a pid was appended or removed.
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005559 */
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005560 on_each_cpu(ignore_task_cpu, tr, 1);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005561
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005562 ftrace_update_pid_func();
5563 ftrace_startup_all(0);
5564 out:
5565 mutex_unlock(&ftrace_lock);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005566
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005567 if (ret > 0)
5568 *ppos += ret;
Steven Rostedt978f3a42008-12-04 00:26:40 -05005569
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005570 return ret;
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005571}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005572
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005573static int
5574ftrace_pid_release(struct inode *inode, struct file *file)
5575{
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005576 struct trace_array *tr = inode->i_private;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005577
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005578 trace_array_put(tr);
5579
5580 return seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005581}
5582
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005583static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005584 .open = ftrace_pid_open,
5585 .write = ftrace_pid_write,
5586 .read = seq_read,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005587 .llseek = tracing_lseek,
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005588 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005589};
5590
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005591void ftrace_init_tracefs(struct trace_array *tr, struct dentry *d_tracer)
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005592{
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005593 trace_create_file("set_ftrace_pid", 0644, d_tracer,
Steven Rostedt (Red Hat)345ddcc2016-04-22 18:11:33 -04005594 tr, &ftrace_pid_fops);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005595}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005596
Steven Rostedt (Red Hat)501c2372016-07-05 10:04:34 -04005597void __init ftrace_init_tracefs_toplevel(struct trace_array *tr,
5598 struct dentry *d_tracer)
5599{
5600 /* Only the top level directory has the dyn_tracefs and profile */
5601 WARN_ON(!(tr->flags & TRACE_ARRAY_FL_GLOBAL));
5602
5603 ftrace_init_dyn_tracefs(d_tracer);
5604 ftrace_profile_tracefs(d_tracer);
5605}
5606
Steven Rostedt3d083392008-05-12 21:20:42 +02005607/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04005608 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005609 *
5610 * This function should be used by panic code. It stops ftrace
5611 * but in a not so nice way. If you need to simply kill ftrace
5612 * from a non-atomic section, use ftrace_kill.
5613 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04005614void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005615{
5616 ftrace_disabled = 1;
5617 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005618 clear_ftrace_function();
5619}
5620
5621/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04005622 * Test if ftrace is dead or not.
5623 */
5624int ftrace_is_dead(void)
5625{
5626 return ftrace_disabled;
5627}
5628
5629/**
Steven Rostedt3d083392008-05-12 21:20:42 +02005630 * register_ftrace_function - register a function for profiling
5631 * @ops - ops structure that holds the function for profiling.
5632 *
5633 * Register a function to be called by all functions in the
5634 * kernel.
5635 *
5636 * Note: @ops->func and all the functions it calls must be labeled
5637 * with "notrace", otherwise it will go into a
5638 * recursive loop.
5639 */
5640int register_ftrace_function(struct ftrace_ops *ops)
5641{
Steven Rostedt45a4a232011-04-21 23:16:46 -04005642 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02005643
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09005644 ftrace_ops_init(ops);
5645
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005646 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005647
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005648 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04005649
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005650 mutex_unlock(&ftrace_lock);
Borislav Petkov8d240dd2012-03-29 19:11:40 +02005651
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005652 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02005653}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005654EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02005655
5656/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01005657 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02005658 * @ops - ops structure that holds the function to unregister
5659 *
5660 * Unregister a function that was added to be called by ftrace profiling.
5661 */
5662int unregister_ftrace_function(struct ftrace_ops *ops)
5663{
5664 int ret;
5665
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005666 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005667 ret = ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005668 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005669
5670 return ret;
5671}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005672EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005673
Ingo Molnare309b412008-05-12 21:20:51 +02005674int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005675ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07005676 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005677 loff_t *ppos)
5678{
Steven Rostedt45a4a232011-04-21 23:16:46 -04005679 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02005680
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005681 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005682
Steven Rostedt45a4a232011-04-21 23:16:46 -04005683 if (unlikely(ftrace_disabled))
5684 goto out;
5685
5686 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005687
Li Zefana32c7762009-06-26 16:55:51 +08005688 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005689 goto out;
5690
Li Zefana32c7762009-06-26 16:55:51 +08005691 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005692
5693 if (ftrace_enabled) {
5694
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005695 /* we are starting ftrace again */
Jan Kiszka5000c412013-03-26 17:53:03 +01005696 if (ftrace_ops_list != &ftrace_list_end)
5697 update_ftrace_function();
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005698
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05005699 ftrace_startup_sysctl();
5700
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005701 } else {
5702 /* stopping ftrace calls (just send to ftrace_stub) */
5703 ftrace_trace_function = ftrace_stub;
5704
5705 ftrace_shutdown_sysctl();
5706 }
5707
5708 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005709 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02005710 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02005711}
Ingo Molnarf17845e2008-10-24 12:47:10 +02005712
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005713#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005714
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005715static struct ftrace_ops graph_ops = {
5716 .func = ftrace_stub,
5717 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5718 FTRACE_OPS_FL_INITIALIZED |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005719 FTRACE_OPS_FL_PID |
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005720 FTRACE_OPS_FL_STUB,
5721#ifdef FTRACE_GRAPH_TRAMP_ADDR
5722 .trampoline = FTRACE_GRAPH_TRAMP_ADDR,
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05005723 /* trampoline_size is only needed for dynamically allocated tramps */
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005724#endif
5725 ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash)
5726};
5727
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04005728void ftrace_graph_sleep_time_control(bool enable)
5729{
5730 fgraph_sleep_time = enable;
5731}
5732
5733void ftrace_graph_graph_time_control(bool enable)
5734{
5735 fgraph_graph_time = enable;
5736}
5737
Steven Rostedte49dc192008-12-02 23:50:05 -05005738int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
5739{
5740 return 0;
5741}
5742
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005743/* The callbacks that hook a function */
5744trace_func_graph_ret_t ftrace_graph_return =
5745 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05005746trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005747static trace_func_graph_ent_t __ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005748
5749/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
5750static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
5751{
5752 int i;
5753 int ret = 0;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005754 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
5755 struct task_struct *g, *t;
5756
5757 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
5758 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
5759 * sizeof(struct ftrace_ret_stack),
5760 GFP_KERNEL);
5761 if (!ret_stack_list[i]) {
5762 start = 0;
5763 end = i;
5764 ret = -ENOMEM;
5765 goto free;
5766 }
5767 }
5768
Soumya PN6112a302016-05-17 21:31:14 +05305769 read_lock(&tasklist_lock);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005770 do_each_thread(g, t) {
5771 if (start == end) {
5772 ret = -EAGAIN;
5773 goto unlock;
5774 }
5775
5776 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01005777 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005778 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04005779 t->curr_ret_stack = -1;
5780 /* Make sure the tasks see the -1 first: */
5781 smp_wmb();
5782 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005783 }
5784 } while_each_thread(g, t);
5785
5786unlock:
Soumya PN6112a302016-05-17 21:31:14 +05305787 read_unlock(&tasklist_lock);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005788free:
5789 for (i = start; i < end; i++)
5790 kfree(ret_stack_list[i]);
5791 return ret;
5792}
5793
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005794static void
Peter Zijlstrac73464b2015-09-28 18:06:56 +02005795ftrace_graph_probe_sched_switch(void *ignore, bool preempt,
Steven Rostedt38516ab2010-04-20 17:04:50 -04005796 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005797{
5798 unsigned long long timestamp;
5799 int index;
5800
Steven Rostedtbe6f1642009-03-24 11:06:24 -04005801 /*
5802 * Does the user want to count the time a function was asleep.
5803 * If so, do not update the time stamps.
5804 */
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04005805 if (fgraph_sleep_time)
Steven Rostedtbe6f1642009-03-24 11:06:24 -04005806 return;
5807
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005808 timestamp = trace_clock_local();
5809
5810 prev->ftrace_timestamp = timestamp;
5811
5812 /* only process tasks that we timestamped */
5813 if (!next->ftrace_timestamp)
5814 return;
5815
5816 /*
5817 * Update all the counters in next to make up for the
5818 * time next was sleeping.
5819 */
5820 timestamp -= next->ftrace_timestamp;
5821
5822 for (index = next->curr_ret_stack; index >= 0; index--)
5823 next->ret_stack[index].calltime += timestamp;
5824}
5825
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005826/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005827static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005828{
5829 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005830 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005831
5832 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
5833 sizeof(struct ftrace_ret_stack *),
5834 GFP_KERNEL);
5835
5836 if (!ret_stack_list)
5837 return -ENOMEM;
5838
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005839 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04005840 for_each_online_cpu(cpu) {
5841 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05005842 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04005843 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005844
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005845 do {
5846 ret = alloc_retstack_tasklist(ret_stack_list);
5847 } while (ret == -EAGAIN);
5848
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005849 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04005850 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005851 if (ret)
5852 pr_info("ftrace_graph: Couldn't activate tracepoint"
5853 " probe to kernel_sched_switch\n");
5854 }
5855
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005856 kfree(ret_stack_list);
5857 return ret;
5858}
5859
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005860/*
5861 * Hibernation protection.
5862 * The state of the current task is too much unstable during
5863 * suspend/restore to disk. We want to protect against that.
5864 */
5865static int
5866ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
5867 void *unused)
5868{
5869 switch (state) {
5870 case PM_HIBERNATION_PREPARE:
5871 pause_graph_tracing();
5872 break;
5873
5874 case PM_POST_HIBERNATION:
5875 unpause_graph_tracing();
5876 break;
5877 }
5878 return NOTIFY_DONE;
5879}
5880
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005881static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace)
5882{
5883 if (!ftrace_ops_test(&global_ops, trace->func, NULL))
5884 return 0;
5885 return __ftrace_graph_entry(trace);
5886}
5887
5888/*
5889 * The function graph tracer should only trace the functions defined
5890 * by set_ftrace_filter and set_ftrace_notrace. If another function
5891 * tracer ops is registered, the graph tracer requires testing the
5892 * function against the global ops, and not just trace any function
5893 * that any ftrace_ops registered.
5894 */
5895static void update_function_graph_func(void)
5896{
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005897 struct ftrace_ops *op;
5898 bool do_test = false;
5899
5900 /*
5901 * The graph and global ops share the same set of functions
5902 * to test. If any other ops is on the list, then
5903 * the graph tracing needs to test if its the function
5904 * it should call.
5905 */
5906 do_for_each_ftrace_op(op, ftrace_ops_list) {
5907 if (op != &global_ops && op != &graph_ops &&
5908 op != &ftrace_list_end) {
5909 do_test = true;
5910 /* in double loop, break out with goto */
5911 goto out;
5912 }
5913 } while_for_each_ftrace_op(op);
5914 out:
5915 if (do_test)
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005916 ftrace_graph_entry = ftrace_graph_entry_test;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005917 else
5918 ftrace_graph_entry = __ftrace_graph_entry;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005919}
5920
Mathias Krause8275f692014-03-30 15:31:50 +02005921static struct notifier_block ftrace_suspend_notifier = {
5922 .notifier_call = ftrace_suspend_notifier_call,
5923};
5924
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005925int register_ftrace_graph(trace_func_graph_ret_t retfunc,
5926 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005927{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005928 int ret = 0;
5929
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005930 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005931
Steven Rostedt05ce5812009-03-24 00:18:31 -04005932 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04005933 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04005934 ret = -EBUSY;
5935 goto out;
5936 }
5937
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005938 register_pm_notifier(&ftrace_suspend_notifier);
5939
Steven Rostedt597af812009-04-03 15:24:12 -04005940 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005941 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005942 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04005943 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005944 goto out;
5945 }
Steven Rostedte53a6312008-11-26 00:16:25 -05005946
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005947 ftrace_graph_return = retfunc;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005948
5949 /*
5950 * Update the indirect function to the entryfunc, and the
5951 * function that gets called to the entry_test first. Then
5952 * call the update fgraph entry function to determine if
5953 * the entryfunc should be called directly or not.
5954 */
5955 __ftrace_graph_entry = entryfunc;
5956 ftrace_graph_entry = ftrace_graph_entry_test;
5957 update_function_graph_func();
Steven Rostedte53a6312008-11-26 00:16:25 -05005958
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005959 ret = ftrace_startup(&graph_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005960out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005961 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005962 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005963}
5964
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005965void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005966{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005967 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005968
Steven Rostedt597af812009-04-03 15:24:12 -04005969 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04005970 goto out;
5971
Steven Rostedt597af812009-04-03 15:24:12 -04005972 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005973 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05005974 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005975 __ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005976 ftrace_shutdown(&graph_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005977 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04005978 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005979
Steven Rostedt2aad1b72009-03-30 11:11:28 -04005980 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005981 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005982}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005983
Steven Rostedt868baf02011-02-10 21:26:13 -05005984static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
5985
5986static void
5987graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
5988{
5989 atomic_set(&t->tracing_graph_pause, 0);
5990 atomic_set(&t->trace_overrun, 0);
5991 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005992 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05005993 smp_wmb();
5994 t->ret_stack = ret_stack;
5995}
5996
5997/*
5998 * Allocate a return stack for the idle task. May be the first
5999 * time through, or it may be done by CPU hotplug online.
6000 */
6001void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
6002{
6003 t->curr_ret_stack = -1;
6004 /*
6005 * The idle task has no parent, it either has its own
6006 * stack or no stack at all.
6007 */
6008 if (t->ret_stack)
6009 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
6010
6011 if (ftrace_graph_active) {
6012 struct ftrace_ret_stack *ret_stack;
6013
6014 ret_stack = per_cpu(idle_ret_stack, cpu);
6015 if (!ret_stack) {
6016 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
6017 * sizeof(struct ftrace_ret_stack),
6018 GFP_KERNEL);
6019 if (!ret_stack)
6020 return;
6021 per_cpu(idle_ret_stack, cpu) = ret_stack;
6022 }
6023 graph_init_task(t, ret_stack);
6024 }
6025}
6026
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006027/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006028void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006029{
Steven Rostedt84047e32009-06-02 16:51:55 -04006030 /* Make sure we do not use the parent ret_stack */
6031 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05006032 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04006033
Steven Rostedt597af812009-04-03 15:24:12 -04006034 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04006035 struct ftrace_ret_stack *ret_stack;
6036
6037 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006038 * sizeof(struct ftrace_ret_stack),
6039 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04006040 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006041 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05006042 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04006043 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006044}
6045
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006046void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006047{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006048 struct ftrace_ret_stack *ret_stack = t->ret_stack;
6049
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006050 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006051 /* NULL must become visible to IRQs before we free it: */
6052 barrier();
6053
6054 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006055}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006056#endif