blob: 11ffcfd3804ed858e700194fa93218ed85b4b154 [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
jolsa@redhat.com756d17e2009-10-13 16:33:52 -040092/* List for set_ftrace_pid's pids. */
93LIST_HEAD(ftrace_pids);
94struct ftrace_pid {
95 struct list_head list;
96 struct pid *pid;
97};
98
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -040099static bool ftrace_pids_enabled(void)
100{
101 return !list_empty(&ftrace_pids);
102}
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 Rostedt0ef8cde2008-12-03 15:36:58 -0500182 if (!test_tsk_trace_trace(current))
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500183 return;
184
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400185 op->saved_func(ip, parent_ip, op, regs);
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500186}
187
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200188/**
Steven Rostedt3d083392008-05-12 21:20:42 +0200189 * clear_ftrace_function - reset the ftrace function
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200190 *
Steven Rostedt3d083392008-05-12 21:20:42 +0200191 * This NULLs the ftrace function and in essence stops
192 * tracing. There may be lag
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200193 */
Steven Rostedt3d083392008-05-12 21:20:42 +0200194void clear_ftrace_function(void)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200195{
Steven Rostedt3d083392008-05-12 21:20:42 +0200196 ftrace_trace_function = ftrace_stub;
197}
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200198
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500199static void per_cpu_ops_disable_all(struct ftrace_ops *ops)
Jiri Olsae2484912012-02-15 15:51:48 +0100200{
201 int cpu;
202
203 for_each_possible_cpu(cpu)
204 *per_cpu_ptr(ops->disabled, cpu) = 1;
205}
206
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500207static int per_cpu_ops_alloc(struct ftrace_ops *ops)
Jiri Olsae2484912012-02-15 15:51:48 +0100208{
209 int __percpu *disabled;
210
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500211 if (WARN_ON_ONCE(!(ops->flags & FTRACE_OPS_FL_PER_CPU)))
212 return -EINVAL;
213
Jiri Olsae2484912012-02-15 15:51:48 +0100214 disabled = alloc_percpu(int);
215 if (!disabled)
216 return -ENOMEM;
217
218 ops->disabled = disabled;
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500219 per_cpu_ops_disable_all(ops);
Jiri Olsae2484912012-02-15 15:51:48 +0100220 return 0;
221}
222
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500223static void ftrace_sync(struct work_struct *work)
224{
225 /*
226 * This function is just a stub to implement a hard force
227 * of synchronize_sched(). This requires synchronizing
228 * tasks even in userspace and idle.
229 *
230 * Yes, function tracing is rude.
231 */
232}
233
234static void ftrace_sync_ipi(void *data)
235{
236 /* Probably not needed, but do it anyway */
237 smp_rmb();
238}
239
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500240#ifdef CONFIG_FUNCTION_GRAPH_TRACER
241static void update_function_graph_func(void);
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400242
243/* Both enabled by default (can be cleared by function_graph tracer flags */
244static bool fgraph_sleep_time = true;
245static bool fgraph_graph_time = true;
246
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500247#else
248static inline void update_function_graph_func(void) { }
249#endif
250
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100251
252static ftrace_func_t ftrace_ops_get_list_func(struct ftrace_ops *ops)
253{
254 /*
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500255 * 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 +0100256 * then it needs to call the list anyway.
257 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500258 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU |
259 FTRACE_OPS_FL_RCU) || FTRACE_FORCE_LIST_FUNC)
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100260 return ftrace_ops_list_func;
261
262 return ftrace_ops_get_func(ops);
263}
264
Steven Rostedt2b499382011-05-03 22:49:52 -0400265static void update_ftrace_function(void)
266{
267 ftrace_func_t func;
268
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400269 /*
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400270 * Prepare the ftrace_ops that the arch callback will use.
271 * If there's only one ftrace_ops registered, the ftrace_ops_list
272 * will point to the ops we want.
273 */
274 set_function_trace_op = ftrace_ops_list;
275
276 /* If there's no ftrace_ops registered, just call the stub function */
277 if (ftrace_ops_list == &ftrace_list_end) {
278 func = ftrace_stub;
279
280 /*
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400281 * If we are at the end of the list and this ops is
Steven Rostedt47409742012-07-20 11:04:44 -0400282 * recursion safe and not dynamic and the arch supports passing ops,
283 * then have the mcount trampoline call the function directly.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400284 */
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400285 } else if (ftrace_ops_list->next == &ftrace_list_end) {
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100286 func = ftrace_ops_get_list_func(ftrace_ops_list);
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400287
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400288 } else {
289 /* Just use the default ftrace_ops */
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500290 set_function_trace_op = &ftrace_list_end;
Steven Rostedtb8489142011-05-04 09:27:52 -0400291 func = ftrace_ops_list_func;
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400292 }
Steven Rostedt2b499382011-05-03 22:49:52 -0400293
Steven Rostedt (Red Hat)5f8bf2d22014-07-15 11:05:12 -0400294 update_function_graph_func();
295
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500296 /* If there's no change, then do nothing more here */
297 if (ftrace_trace_function == func)
298 return;
299
300 /*
301 * If we are using the list function, it doesn't care
302 * about the function_trace_ops.
303 */
304 if (func == ftrace_ops_list_func) {
305 ftrace_trace_function = func;
306 /*
307 * Don't even bother setting function_trace_ops,
308 * it would be racy to do so anyway.
309 */
310 return;
311 }
312
313#ifndef CONFIG_DYNAMIC_FTRACE
314 /*
315 * For static tracing, we need to be a bit more careful.
316 * The function change takes affect immediately. Thus,
317 * we need to coorditate the setting of the function_trace_ops
318 * with the setting of the ftrace_trace_function.
319 *
320 * Set the function to the list ops, which will call the
321 * function we want, albeit indirectly, but it handles the
322 * ftrace_ops and doesn't depend on function_trace_op.
323 */
324 ftrace_trace_function = ftrace_ops_list_func;
325 /*
326 * Make sure all CPUs see this. Yes this is slow, but static
327 * tracing is slow and nasty to have enabled.
328 */
329 schedule_on_each_cpu(ftrace_sync);
330 /* Now all cpus are using the list ops. */
331 function_trace_op = set_function_trace_op;
332 /* Make sure the function_trace_op is visible on all CPUs */
333 smp_wmb();
334 /* Nasty way to force a rmb on all cpus */
335 smp_call_function(ftrace_sync_ipi, NULL, 1);
336 /* OK, we are all set to update the ftrace_trace_function now! */
337#endif /* !CONFIG_DYNAMIC_FTRACE */
338
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400339 ftrace_trace_function = func;
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400340}
341
Jiaxing Wang7eea4fc2014-04-20 23:10:43 +0800342int using_ftrace_ops_list_func(void)
343{
344 return ftrace_trace_function == ftrace_ops_list_func;
345}
346
Steven Rostedt2b499382011-05-03 22:49:52 -0400347static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
Steven Rostedt3d083392008-05-12 21:20:42 +0200348{
Steven Rostedt2b499382011-05-03 22:49:52 -0400349 ops->next = *list;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200350 /*
Steven Rostedtb8489142011-05-04 09:27:52 -0400351 * We are entering ops into the list but another
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200352 * CPU might be walking that list. We need to make sure
353 * the ops->next pointer is valid before another CPU sees
Steven Rostedtb8489142011-05-04 09:27:52 -0400354 * the ops pointer included into the list.
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200355 */
Steven Rostedt2b499382011-05-03 22:49:52 -0400356 rcu_assign_pointer(*list, ops);
357}
Steven Rostedt3d083392008-05-12 21:20:42 +0200358
Steven Rostedt2b499382011-05-03 22:49:52 -0400359static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
360{
361 struct ftrace_ops **p;
362
363 /*
364 * If we are removing the last function, then simply point
365 * to the ftrace_stub.
366 */
367 if (*list == ops && ops->next == &ftrace_list_end) {
368 *list = &ftrace_list_end;
369 return 0;
370 }
371
372 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
373 if (*p == ops)
374 break;
375
376 if (*p != ops)
377 return -1;
378
379 *p = (*p)->next;
380 return 0;
381}
382
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400383static void ftrace_update_trampoline(struct ftrace_ops *ops);
384
Steven Rostedt2b499382011-05-03 22:49:52 -0400385static int __register_ftrace_function(struct ftrace_ops *ops)
386{
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -0500387 if (ops->flags & FTRACE_OPS_FL_DELETED)
388 return -EINVAL;
389
Steven Rostedtb8489142011-05-04 09:27:52 -0400390 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
391 return -EBUSY;
392
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +0900393#ifndef CONFIG_DYNAMIC_FTRACE_WITH_REGS
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400394 /*
395 * If the ftrace_ops specifies SAVE_REGS, then it only can be used
396 * if the arch supports it, or SAVE_REGS_IF_SUPPORTED is also set.
397 * Setting SAVE_REGS_IF_SUPPORTED makes SAVE_REGS irrelevant.
398 */
399 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS &&
400 !(ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED))
401 return -EINVAL;
402
403 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED)
404 ops->flags |= FTRACE_OPS_FL_SAVE_REGS;
405#endif
406
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400407 if (!core_kernel_data((unsigned long)ops))
408 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
409
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500410 if (ops->flags & FTRACE_OPS_FL_PER_CPU) {
411 if (per_cpu_ops_alloc(ops))
Jiri Olsae2484912012-02-15 15:51:48 +0100412 return -ENOMEM;
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500413 }
414
415 add_ftrace_ops(&ftrace_ops_list, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400416
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400417 /* Always save the function, and reset at unregistering */
418 ops->saved_func = ops->func;
419
420 if (ops->flags & FTRACE_OPS_FL_PID && ftrace_pids_enabled())
421 ops->func = ftrace_pid_func;
422
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400423 ftrace_update_trampoline(ops);
424
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400425 if (ftrace_enabled)
426 update_ftrace_function();
Steven Rostedt3d083392008-05-12 21:20:42 +0200427
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200428 return 0;
429}
430
Ingo Molnare309b412008-05-12 21:20:51 +0200431static int __unregister_ftrace_function(struct ftrace_ops *ops)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200432{
Steven Rostedt2b499382011-05-03 22:49:52 -0400433 int ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200434
Steven Rostedtb8489142011-05-04 09:27:52 -0400435 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
436 return -EBUSY;
437
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -0500438 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400439
Steven Rostedt2b499382011-05-03 22:49:52 -0400440 if (ret < 0)
441 return ret;
Steven Rostedtb8489142011-05-04 09:27:52 -0400442
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400443 if (ftrace_enabled)
444 update_ftrace_function();
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200445
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400446 ops->func = ops->saved_func;
447
Steven Rostedte6ea44e2009-02-14 01:42:44 -0500448 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +0200449}
450
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500451static void ftrace_update_pid_func(void)
452{
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400453 bool enabled = ftrace_pids_enabled();
454 struct ftrace_ops *op;
455
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400456 /* Only do something if we are tracing something */
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500457 if (ftrace_trace_function == ftrace_stub)
KOSAKI Motohiro10dd3eb2009-03-06 15:29:04 +0900458 return;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500459
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400460 do_for_each_ftrace_op(op, ftrace_ops_list) {
461 if (op->flags & FTRACE_OPS_FL_PID) {
462 op->func = enabled ? ftrace_pid_func :
463 op->saved_func;
464 ftrace_update_trampoline(op);
465 }
466 } while_for_each_ftrace_op(op);
467
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400468 update_ftrace_function();
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500469}
470
Steven Rostedt493762f2009-03-23 17:12:36 -0400471#ifdef CONFIG_FUNCTION_PROFILER
472struct ftrace_profile {
473 struct hlist_node node;
474 unsigned long ip;
475 unsigned long counter;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400476#ifdef CONFIG_FUNCTION_GRAPH_TRACER
477 unsigned long long time;
Chase Douglase330b3b2010-04-26 14:02:05 -0400478 unsigned long long time_squared;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400479#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400480};
481
482struct ftrace_profile_page {
483 struct ftrace_profile_page *next;
484 unsigned long index;
485 struct ftrace_profile records[];
486};
487
Steven Rostedtcafb1682009-03-24 20:50:39 -0400488struct ftrace_profile_stat {
489 atomic_t disabled;
490 struct hlist_head *hash;
491 struct ftrace_profile_page *pages;
492 struct ftrace_profile_page *start;
493 struct tracer_stat stat;
494};
495
Steven Rostedt493762f2009-03-23 17:12:36 -0400496#define PROFILE_RECORDS_SIZE \
497 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
498
499#define PROFILES_PER_PAGE \
500 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
501
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400502static int ftrace_profile_enabled __read_mostly;
503
504/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
Steven Rostedt493762f2009-03-23 17:12:36 -0400505static DEFINE_MUTEX(ftrace_profile_lock);
506
Steven Rostedtcafb1682009-03-24 20:50:39 -0400507static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
Steven Rostedt493762f2009-03-23 17:12:36 -0400508
Namhyung Kim20079eb2013-04-10 08:55:50 +0900509#define FTRACE_PROFILE_HASH_BITS 10
510#define FTRACE_PROFILE_HASH_SIZE (1 << FTRACE_PROFILE_HASH_BITS)
Steven Rostedt493762f2009-03-23 17:12:36 -0400511
Steven Rostedt493762f2009-03-23 17:12:36 -0400512static void *
513function_stat_next(void *v, int idx)
514{
515 struct ftrace_profile *rec = v;
516 struct ftrace_profile_page *pg;
517
518 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
519
520 again:
Li Zefan0296e422009-06-26 11:15:37 +0800521 if (idx != 0)
522 rec++;
523
Steven Rostedt493762f2009-03-23 17:12:36 -0400524 if ((void *)rec >= (void *)&pg->records[pg->index]) {
525 pg = pg->next;
526 if (!pg)
527 return NULL;
528 rec = &pg->records[0];
529 if (!rec->counter)
530 goto again;
531 }
532
533 return rec;
534}
535
536static void *function_stat_start(struct tracer_stat *trace)
537{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400538 struct ftrace_profile_stat *stat =
539 container_of(trace, struct ftrace_profile_stat, stat);
540
541 if (!stat || !stat->start)
542 return NULL;
543
544 return function_stat_next(&stat->start->records[0], 0);
Steven Rostedt493762f2009-03-23 17:12:36 -0400545}
546
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400547#ifdef CONFIG_FUNCTION_GRAPH_TRACER
548/* function graph compares on total time */
549static int function_stat_cmp(void *p1, void *p2)
550{
551 struct ftrace_profile *a = p1;
552 struct ftrace_profile *b = p2;
553
554 if (a->time < b->time)
555 return -1;
556 if (a->time > b->time)
557 return 1;
558 else
559 return 0;
560}
561#else
562/* not function graph compares against hits */
Steven Rostedt493762f2009-03-23 17:12:36 -0400563static int function_stat_cmp(void *p1, void *p2)
564{
565 struct ftrace_profile *a = p1;
566 struct ftrace_profile *b = p2;
567
568 if (a->counter < b->counter)
569 return -1;
570 if (a->counter > b->counter)
571 return 1;
572 else
573 return 0;
574}
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400575#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400576
577static int function_stat_headers(struct seq_file *m)
578{
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400579#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100580 seq_puts(m, " Function "
581 "Hit Time Avg s^2\n"
582 " -------- "
583 "--- ---- --- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400584#else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100585 seq_puts(m, " Function Hit\n"
586 " -------- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400587#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400588 return 0;
589}
590
591static int function_stat_show(struct seq_file *m, void *v)
592{
593 struct ftrace_profile *rec = v;
594 char str[KSYM_SYMBOL_LEN];
Li Zefan3aaba202010-08-23 16:50:12 +0800595 int ret = 0;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400596#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400597 static struct trace_seq s;
598 unsigned long long avg;
Chase Douglase330b3b2010-04-26 14:02:05 -0400599 unsigned long long stddev;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400600#endif
Li Zefan3aaba202010-08-23 16:50:12 +0800601 mutex_lock(&ftrace_profile_lock);
602
603 /* we raced with function_profile_reset() */
604 if (unlikely(rec->counter == 0)) {
605 ret = -EBUSY;
606 goto out;
607 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400608
Umesh Tiwari8e436ca2015-06-22 16:58:08 +0530609#ifdef CONFIG_FUNCTION_GRAPH_TRACER
610 avg = rec->time;
611 do_div(avg, rec->counter);
612 if (tracing_thresh && (avg < tracing_thresh))
613 goto out;
614#endif
615
Steven Rostedt493762f2009-03-23 17:12:36 -0400616 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400617 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
Steven Rostedt493762f2009-03-23 17:12:36 -0400618
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400619#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100620 seq_puts(m, " ");
Steven Rostedt34886c82009-03-25 21:00:47 -0400621
Chase Douglase330b3b2010-04-26 14:02:05 -0400622 /* Sample standard deviation (s^2) */
623 if (rec->counter <= 1)
624 stddev = 0;
625 else {
Juri Lelli52d85d72013-06-12 12:03:18 +0200626 /*
627 * Apply Welford's method:
628 * s^2 = 1 / (n * (n-1)) * (n * \Sum (x_i)^2 - (\Sum x_i)^2)
629 */
630 stddev = rec->counter * rec->time_squared -
631 rec->time * rec->time;
632
Chase Douglase330b3b2010-04-26 14:02:05 -0400633 /*
634 * Divide only 1000 for ns^2 -> us^2 conversion.
635 * trace_print_graph_duration will divide 1000 again.
636 */
Juri Lelli52d85d72013-06-12 12:03:18 +0200637 do_div(stddev, rec->counter * (rec->counter - 1) * 1000);
Chase Douglase330b3b2010-04-26 14:02:05 -0400638 }
639
Steven Rostedt34886c82009-03-25 21:00:47 -0400640 trace_seq_init(&s);
641 trace_print_graph_duration(rec->time, &s);
642 trace_seq_puts(&s, " ");
643 trace_print_graph_duration(avg, &s);
Chase Douglase330b3b2010-04-26 14:02:05 -0400644 trace_seq_puts(&s, " ");
645 trace_print_graph_duration(stddev, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400646 trace_print_seq(m, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400647#endif
648 seq_putc(m, '\n');
Li Zefan3aaba202010-08-23 16:50:12 +0800649out:
650 mutex_unlock(&ftrace_profile_lock);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400651
Li Zefan3aaba202010-08-23 16:50:12 +0800652 return ret;
Steven Rostedt493762f2009-03-23 17:12:36 -0400653}
654
Steven Rostedtcafb1682009-03-24 20:50:39 -0400655static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400656{
657 struct ftrace_profile_page *pg;
658
Steven Rostedtcafb1682009-03-24 20:50:39 -0400659 pg = stat->pages = stat->start;
Steven Rostedt493762f2009-03-23 17:12:36 -0400660
661 while (pg) {
662 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
663 pg->index = 0;
664 pg = pg->next;
665 }
666
Steven Rostedtcafb1682009-03-24 20:50:39 -0400667 memset(stat->hash, 0,
Steven Rostedt493762f2009-03-23 17:12:36 -0400668 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
669}
670
Steven Rostedtcafb1682009-03-24 20:50:39 -0400671int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400672{
673 struct ftrace_profile_page *pg;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400674 int functions;
675 int pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400676 int i;
677
678 /* If we already allocated, do nothing */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400679 if (stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400680 return 0;
681
Steven Rostedtcafb1682009-03-24 20:50:39 -0400682 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
683 if (!stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400684 return -ENOMEM;
685
Steven Rostedt318e0a72009-03-25 20:06:34 -0400686#ifdef CONFIG_DYNAMIC_FTRACE
687 functions = ftrace_update_tot_cnt;
688#else
689 /*
690 * We do not know the number of functions that exist because
691 * dynamic tracing is what counts them. With past experience
692 * we have around 20K functions. That should be more than enough.
693 * It is highly unlikely we will execute every function in
694 * the kernel.
695 */
696 functions = 20000;
697#endif
698
Steven Rostedtcafb1682009-03-24 20:50:39 -0400699 pg = stat->start = stat->pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400700
Steven Rostedt318e0a72009-03-25 20:06:34 -0400701 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
702
Namhyung Kim39e30cd2013-04-01 21:46:24 +0900703 for (i = 1; i < pages; i++) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400704 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400705 if (!pg->next)
Steven Rostedt318e0a72009-03-25 20:06:34 -0400706 goto out_free;
Steven Rostedt493762f2009-03-23 17:12:36 -0400707 pg = pg->next;
708 }
709
710 return 0;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400711
712 out_free:
713 pg = stat->start;
714 while (pg) {
715 unsigned long tmp = (unsigned long)pg;
716
717 pg = pg->next;
718 free_page(tmp);
719 }
720
Steven Rostedt318e0a72009-03-25 20:06:34 -0400721 stat->pages = NULL;
722 stat->start = NULL;
723
724 return -ENOMEM;
Steven Rostedt493762f2009-03-23 17:12:36 -0400725}
726
Steven Rostedtcafb1682009-03-24 20:50:39 -0400727static int ftrace_profile_init_cpu(int cpu)
Steven Rostedt493762f2009-03-23 17:12:36 -0400728{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400729 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400730 int size;
731
Steven Rostedtcafb1682009-03-24 20:50:39 -0400732 stat = &per_cpu(ftrace_profile_stats, cpu);
733
734 if (stat->hash) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400735 /* If the profile is already created, simply reset it */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400736 ftrace_profile_reset(stat);
Steven Rostedt493762f2009-03-23 17:12:36 -0400737 return 0;
738 }
739
740 /*
741 * We are profiling all functions, but usually only a few thousand
742 * functions are hit. We'll make a hash of 1024 items.
743 */
744 size = FTRACE_PROFILE_HASH_SIZE;
745
Steven Rostedtcafb1682009-03-24 20:50:39 -0400746 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400747
Steven Rostedtcafb1682009-03-24 20:50:39 -0400748 if (!stat->hash)
Steven Rostedt493762f2009-03-23 17:12:36 -0400749 return -ENOMEM;
750
Steven Rostedt318e0a72009-03-25 20:06:34 -0400751 /* Preallocate the function profiling pages */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400752 if (ftrace_profile_pages_init(stat) < 0) {
753 kfree(stat->hash);
754 stat->hash = NULL;
Steven Rostedt493762f2009-03-23 17:12:36 -0400755 return -ENOMEM;
756 }
757
758 return 0;
759}
760
Steven Rostedtcafb1682009-03-24 20:50:39 -0400761static int ftrace_profile_init(void)
762{
763 int cpu;
764 int ret = 0;
765
Miao Xiec4602c12013-12-16 15:20:01 +0800766 for_each_possible_cpu(cpu) {
Steven Rostedtcafb1682009-03-24 20:50:39 -0400767 ret = ftrace_profile_init_cpu(cpu);
768 if (ret)
769 break;
770 }
771
772 return ret;
773}
774
Steven Rostedt493762f2009-03-23 17:12:36 -0400775/* interrupts must be disabled */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400776static struct ftrace_profile *
777ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400778{
779 struct ftrace_profile *rec;
780 struct hlist_head *hhd;
Steven Rostedt493762f2009-03-23 17:12:36 -0400781 unsigned long key;
782
Namhyung Kim20079eb2013-04-10 08:55:50 +0900783 key = hash_long(ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400784 hhd = &stat->hash[key];
Steven Rostedt493762f2009-03-23 17:12:36 -0400785
786 if (hlist_empty(hhd))
787 return NULL;
788
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400789 hlist_for_each_entry_rcu_notrace(rec, hhd, node) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400790 if (rec->ip == ip)
791 return rec;
792 }
793
794 return NULL;
795}
796
Steven Rostedtcafb1682009-03-24 20:50:39 -0400797static void ftrace_add_profile(struct ftrace_profile_stat *stat,
798 struct ftrace_profile *rec)
Steven Rostedt493762f2009-03-23 17:12:36 -0400799{
800 unsigned long key;
801
Namhyung Kim20079eb2013-04-10 08:55:50 +0900802 key = hash_long(rec->ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400803 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
Steven Rostedt493762f2009-03-23 17:12:36 -0400804}
805
Steven Rostedt318e0a72009-03-25 20:06:34 -0400806/*
807 * The memory is already allocated, this simply finds a new record to use.
808 */
Steven Rostedt493762f2009-03-23 17:12:36 -0400809static struct ftrace_profile *
Steven Rostedt318e0a72009-03-25 20:06:34 -0400810ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400811{
812 struct ftrace_profile *rec = NULL;
813
Steven Rostedt318e0a72009-03-25 20:06:34 -0400814 /* prevent recursion (from NMIs) */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400815 if (atomic_inc_return(&stat->disabled) != 1)
Steven Rostedt493762f2009-03-23 17:12:36 -0400816 goto out;
817
Steven Rostedt493762f2009-03-23 17:12:36 -0400818 /*
Steven Rostedt318e0a72009-03-25 20:06:34 -0400819 * Try to find the function again since an NMI
820 * could have added it
Steven Rostedt493762f2009-03-23 17:12:36 -0400821 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400822 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400823 if (rec)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400824 goto out;
Steven Rostedt493762f2009-03-23 17:12:36 -0400825
Steven Rostedtcafb1682009-03-24 20:50:39 -0400826 if (stat->pages->index == PROFILES_PER_PAGE) {
827 if (!stat->pages->next)
828 goto out;
829 stat->pages = stat->pages->next;
Steven Rostedt493762f2009-03-23 17:12:36 -0400830 }
831
Steven Rostedtcafb1682009-03-24 20:50:39 -0400832 rec = &stat->pages->records[stat->pages->index++];
Steven Rostedt493762f2009-03-23 17:12:36 -0400833 rec->ip = ip;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400834 ftrace_add_profile(stat, rec);
Steven Rostedt493762f2009-03-23 17:12:36 -0400835
Steven Rostedt493762f2009-03-23 17:12:36 -0400836 out:
Steven Rostedtcafb1682009-03-24 20:50:39 -0400837 atomic_dec(&stat->disabled);
Steven Rostedt493762f2009-03-23 17:12:36 -0400838
839 return rec;
840}
841
Steven Rostedt493762f2009-03-23 17:12:36 -0400842static void
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400843function_profile_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400844 struct ftrace_ops *ops, struct pt_regs *regs)
Steven Rostedt493762f2009-03-23 17:12:36 -0400845{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400846 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400847 struct ftrace_profile *rec;
848 unsigned long flags;
Steven Rostedt493762f2009-03-23 17:12:36 -0400849
850 if (!ftrace_profile_enabled)
851 return;
852
Steven Rostedt493762f2009-03-23 17:12:36 -0400853 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400854
Christoph Lameterbdffd892014-04-29 14:17:40 -0500855 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400856 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400857 goto out;
858
859 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400860 if (!rec) {
Steven Rostedt318e0a72009-03-25 20:06:34 -0400861 rec = ftrace_profile_alloc(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400862 if (!rec)
863 goto out;
864 }
865
866 rec->counter++;
867 out:
868 local_irq_restore(flags);
869}
870
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400871#ifdef CONFIG_FUNCTION_GRAPH_TRACER
872static int profile_graph_entry(struct ftrace_graph_ent *trace)
873{
Steven Rostedta1e2e312011-08-09 12:50:46 -0400874 function_profile_call(trace->func, 0, NULL, NULL);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400875 return 1;
876}
877
878static void profile_graph_return(struct ftrace_graph_ret *trace)
879{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400880 struct ftrace_profile_stat *stat;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400881 unsigned long long calltime;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400882 struct ftrace_profile *rec;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400883 unsigned long flags;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400884
885 local_irq_save(flags);
Christoph Lameterbdffd892014-04-29 14:17:40 -0500886 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400887 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400888 goto out;
889
Steven Rostedt37e44bc2010-04-27 21:04:24 -0400890 /* If the calltime was zero'd ignore it */
891 if (!trace->calltime)
892 goto out;
893
Steven Rostedta2a16d62009-03-24 23:17:58 -0400894 calltime = trace->rettime - trace->calltime;
895
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400896 if (!fgraph_graph_time) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400897 int index;
898
899 index = trace->depth;
900
901 /* Append this call time to the parent time to subtract */
902 if (index)
903 current->ret_stack[index - 1].subtime += calltime;
904
905 if (current->ret_stack[index].subtime < calltime)
906 calltime -= current->ret_stack[index].subtime;
907 else
908 calltime = 0;
909 }
910
Steven Rostedtcafb1682009-03-24 20:50:39 -0400911 rec = ftrace_find_profiled_func(stat, trace->func);
Chase Douglase330b3b2010-04-26 14:02:05 -0400912 if (rec) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400913 rec->time += calltime;
Chase Douglase330b3b2010-04-26 14:02:05 -0400914 rec->time_squared += calltime * calltime;
915 }
Steven Rostedta2a16d62009-03-24 23:17:58 -0400916
Steven Rostedtcafb1682009-03-24 20:50:39 -0400917 out:
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400918 local_irq_restore(flags);
919}
920
921static int register_ftrace_profiler(void)
922{
923 return register_ftrace_graph(&profile_graph_return,
924 &profile_graph_entry);
925}
926
927static void unregister_ftrace_profiler(void)
928{
929 unregister_ftrace_graph();
930}
931#else
Paul McQuadebd38c0e2011-05-31 20:51:55 +0100932static struct ftrace_ops ftrace_profile_ops __read_mostly = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400933 .func = function_profile_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900934 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400935 INIT_OPS_HASH(ftrace_profile_ops)
Steven Rostedt493762f2009-03-23 17:12:36 -0400936};
937
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400938static int register_ftrace_profiler(void)
939{
940 return register_ftrace_function(&ftrace_profile_ops);
941}
942
943static void unregister_ftrace_profiler(void)
944{
945 unregister_ftrace_function(&ftrace_profile_ops);
946}
947#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
948
Steven Rostedt493762f2009-03-23 17:12:36 -0400949static ssize_t
950ftrace_profile_write(struct file *filp, const char __user *ubuf,
951 size_t cnt, loff_t *ppos)
952{
953 unsigned long val;
Steven Rostedt493762f2009-03-23 17:12:36 -0400954 int ret;
955
Peter Huewe22fe9b52011-06-07 21:58:27 +0200956 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
957 if (ret)
Steven Rostedt493762f2009-03-23 17:12:36 -0400958 return ret;
959
960 val = !!val;
961
962 mutex_lock(&ftrace_profile_lock);
963 if (ftrace_profile_enabled ^ val) {
964 if (val) {
965 ret = ftrace_profile_init();
966 if (ret < 0) {
967 cnt = ret;
968 goto out;
969 }
970
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400971 ret = register_ftrace_profiler();
972 if (ret < 0) {
973 cnt = ret;
974 goto out;
975 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400976 ftrace_profile_enabled = 1;
977 } else {
978 ftrace_profile_enabled = 0;
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400979 /*
980 * unregister_ftrace_profiler calls stop_machine
981 * so this acts like an synchronize_sched.
982 */
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400983 unregister_ftrace_profiler();
Steven Rostedt493762f2009-03-23 17:12:36 -0400984 }
985 }
986 out:
987 mutex_unlock(&ftrace_profile_lock);
988
Jiri Olsacf8517c2009-10-23 19:36:16 -0400989 *ppos += cnt;
Steven Rostedt493762f2009-03-23 17:12:36 -0400990
991 return cnt;
992}
993
994static ssize_t
995ftrace_profile_read(struct file *filp, char __user *ubuf,
996 size_t cnt, loff_t *ppos)
997{
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400998 char buf[64]; /* big enough to hold a number */
Steven Rostedt493762f2009-03-23 17:12:36 -0400999 int r;
1000
1001 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
1002 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
1003}
1004
1005static const struct file_operations ftrace_profile_fops = {
1006 .open = tracing_open_generic,
1007 .read = ftrace_profile_read,
1008 .write = ftrace_profile_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001009 .llseek = default_llseek,
Steven Rostedt493762f2009-03-23 17:12:36 -04001010};
1011
Steven Rostedtcafb1682009-03-24 20:50:39 -04001012/* used to initialize the real stat files */
1013static struct tracer_stat function_stats __initdata = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001014 .name = "functions",
1015 .stat_start = function_stat_start,
1016 .stat_next = function_stat_next,
1017 .stat_cmp = function_stat_cmp,
1018 .stat_headers = function_stat_headers,
1019 .stat_show = function_stat_show
Steven Rostedtcafb1682009-03-24 20:50:39 -04001020};
1021
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001022static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001023{
Steven Rostedtcafb1682009-03-24 20:50:39 -04001024 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -04001025 struct dentry *entry;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001026 char *name;
Steven Rostedt493762f2009-03-23 17:12:36 -04001027 int ret;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001028 int cpu;
Steven Rostedt493762f2009-03-23 17:12:36 -04001029
Steven Rostedtcafb1682009-03-24 20:50:39 -04001030 for_each_possible_cpu(cpu) {
1031 stat = &per_cpu(ftrace_profile_stats, cpu);
1032
1033 /* allocate enough for function name + cpu number */
1034 name = kmalloc(32, GFP_KERNEL);
1035 if (!name) {
1036 /*
1037 * The files created are permanent, if something happens
1038 * we still do not free memory.
1039 */
Steven Rostedtcafb1682009-03-24 20:50:39 -04001040 WARN(1,
1041 "Could not allocate stat file for cpu %d\n",
1042 cpu);
1043 return;
1044 }
1045 stat->stat = function_stats;
1046 snprintf(name, 32, "function%d", cpu);
1047 stat->stat.name = name;
1048 ret = register_stat_tracer(&stat->stat);
1049 if (ret) {
1050 WARN(1,
1051 "Could not register function stat for cpu %d\n",
1052 cpu);
1053 kfree(name);
1054 return;
1055 }
Steven Rostedt493762f2009-03-23 17:12:36 -04001056 }
1057
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001058 entry = tracefs_create_file("function_profile_enabled", 0644,
Steven Rostedt493762f2009-03-23 17:12:36 -04001059 d_tracer, NULL, &ftrace_profile_fops);
1060 if (!entry)
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001061 pr_warning("Could not create tracefs "
Steven Rostedt493762f2009-03-23 17:12:36 -04001062 "'function_profile_enabled' entry\n");
1063}
1064
1065#else /* CONFIG_FUNCTION_PROFILER */
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001066static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001067{
1068}
1069#endif /* CONFIG_FUNCTION_PROFILER */
1070
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001071static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1072
Pratyush Anand1619dc32015-03-06 23:58:06 +05301073#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1074static int ftrace_graph_active;
1075#else
1076# define ftrace_graph_active 0
1077#endif
1078
Steven Rostedt3d083392008-05-12 21:20:42 +02001079#ifdef CONFIG_DYNAMIC_FTRACE
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001080
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001081static struct ftrace_ops *removed_ops;
1082
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04001083/*
1084 * Set when doing a global update, like enabling all recs or disabling them.
1085 * It is not set when just updating a single ftrace_ops.
1086 */
1087static bool update_all_ops;
1088
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001089#ifndef CONFIG_FTRACE_MCOUNT_RECORD
Steven Rostedtcb7be3b2008-10-23 09:33:05 -04001090# error Dynamic ftrace depends on MCOUNT_RECORD
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001091#endif
1092
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001093static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
1094
Steven Rostedtb6887d72009-02-17 12:32:04 -05001095struct ftrace_func_probe {
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001096 struct hlist_node node;
Steven Rostedtb6887d72009-02-17 12:32:04 -05001097 struct ftrace_probe_ops *ops;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001098 unsigned long flags;
1099 unsigned long ip;
1100 void *data;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04001101 struct list_head free_list;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001102};
1103
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001104struct ftrace_func_entry {
1105 struct hlist_node hlist;
1106 unsigned long ip;
1107};
1108
1109struct ftrace_hash {
1110 unsigned long size_bits;
1111 struct hlist_head *buckets;
1112 unsigned long count;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001113 struct rcu_head rcu;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001114};
1115
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001116/*
1117 * We make these constant because no one should touch them,
1118 * but they are used as the default "empty hash", to avoid allocating
1119 * it all the time. These are in a read only section such that if
1120 * anyone does try to modify it, it will cause an exception.
1121 */
1122static const struct hlist_head empty_buckets[1];
1123static const struct ftrace_hash empty_hash = {
1124 .buckets = (struct hlist_head *)empty_buckets,
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001125};
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001126#define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02001127
Steven Rostedt2b499382011-05-03 22:49:52 -04001128static struct ftrace_ops global_ops = {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001129 .func = ftrace_stub,
1130 .local_hash.notrace_hash = EMPTY_HASH,
1131 .local_hash.filter_hash = EMPTY_HASH,
1132 INIT_OPS_HASH(global_ops)
1133 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04001134 FTRACE_OPS_FL_INITIALIZED |
1135 FTRACE_OPS_FL_PID,
Steven Rostedtf45948e2011-05-02 12:29:25 -04001136};
1137
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001138/*
1139 * This is used by __kernel_text_address() to return true if the
Steven Rostedt (Red Hat)0af26492014-11-20 10:05:36 -05001140 * address is on a dynamically allocated trampoline that would
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001141 * not return true for either core_kernel_text() or
1142 * is_module_text_address().
1143 */
1144bool is_ftrace_trampoline(unsigned long addr)
1145{
1146 struct ftrace_ops *op;
1147 bool ret = false;
1148
1149 /*
1150 * Some of the ops may be dynamically allocated,
1151 * they are freed after a synchronize_sched().
1152 */
1153 preempt_disable_notrace();
1154
1155 do_for_each_ftrace_op(op, ftrace_ops_list) {
1156 /*
1157 * This is to check for dynamically allocated trampolines.
1158 * Trampolines that are in kernel text will have
1159 * core_kernel_text() return true.
1160 */
1161 if (op->trampoline && op->trampoline_size)
1162 if (addr >= op->trampoline &&
1163 addr < op->trampoline + op->trampoline_size) {
1164 ret = true;
1165 goto out;
1166 }
1167 } while_for_each_ftrace_op(op);
1168
1169 out:
1170 preempt_enable_notrace();
1171
1172 return ret;
1173}
1174
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001175struct ftrace_page {
1176 struct ftrace_page *next;
Steven Rostedta7900872011-12-16 16:23:44 -05001177 struct dyn_ftrace *records;
Steven Rostedt431aa3f2009-01-06 12:43:01 -05001178 int index;
Steven Rostedta7900872011-12-16 16:23:44 -05001179 int size;
David Milleraa5e5ce2008-05-13 22:06:56 -07001180};
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001181
Steven Rostedta7900872011-12-16 16:23:44 -05001182#define ENTRY_SIZE sizeof(struct dyn_ftrace)
1183#define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001184
1185/* estimate from running different kernels */
1186#define NR_TO_INIT 10000
1187
1188static struct ftrace_page *ftrace_pages_start;
1189static struct ftrace_page *ftrace_pages;
1190
Steven Rostedt (Red Hat)68f40962014-05-01 12:44:50 -04001191static bool __always_inline ftrace_hash_empty(struct ftrace_hash *hash)
Steven Rostedt06a51d92011-12-19 19:07:36 -05001192{
1193 return !hash || !hash->count;
1194}
1195
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001196static struct ftrace_func_entry *
1197ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1198{
1199 unsigned long key;
1200 struct ftrace_func_entry *entry;
1201 struct hlist_head *hhd;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001202
Steven Rostedt06a51d92011-12-19 19:07:36 -05001203 if (ftrace_hash_empty(hash))
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001204 return NULL;
1205
1206 if (hash->size_bits > 0)
1207 key = hash_long(ip, hash->size_bits);
1208 else
1209 key = 0;
1210
1211 hhd = &hash->buckets[key];
1212
Steven Rostedt1bb539c2013-05-28 14:38:43 -04001213 hlist_for_each_entry_rcu_notrace(entry, hhd, hlist) {
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001214 if (entry->ip == ip)
1215 return entry;
1216 }
1217 return NULL;
1218}
1219
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001220static void __add_hash_entry(struct ftrace_hash *hash,
1221 struct ftrace_func_entry *entry)
1222{
1223 struct hlist_head *hhd;
1224 unsigned long key;
1225
1226 if (hash->size_bits)
1227 key = hash_long(entry->ip, hash->size_bits);
1228 else
1229 key = 0;
1230
1231 hhd = &hash->buckets[key];
1232 hlist_add_head(&entry->hlist, hhd);
1233 hash->count++;
1234}
1235
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001236static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1237{
1238 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001239
1240 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1241 if (!entry)
1242 return -ENOMEM;
1243
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001244 entry->ip = ip;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001245 __add_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001246
1247 return 0;
1248}
1249
1250static void
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001251free_hash_entry(struct ftrace_hash *hash,
1252 struct ftrace_func_entry *entry)
1253{
1254 hlist_del(&entry->hlist);
1255 kfree(entry);
1256 hash->count--;
1257}
1258
1259static void
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001260remove_hash_entry(struct ftrace_hash *hash,
1261 struct ftrace_func_entry *entry)
1262{
1263 hlist_del(&entry->hlist);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001264 hash->count--;
1265}
1266
1267static void ftrace_hash_clear(struct ftrace_hash *hash)
1268{
1269 struct hlist_head *hhd;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001270 struct hlist_node *tn;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001271 struct ftrace_func_entry *entry;
1272 int size = 1 << hash->size_bits;
1273 int i;
1274
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001275 if (!hash->count)
1276 return;
1277
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001278 for (i = 0; i < size; i++) {
1279 hhd = &hash->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001280 hlist_for_each_entry_safe(entry, tn, hhd, hlist)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001281 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001282 }
1283 FTRACE_WARN_ON(hash->count);
1284}
1285
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001286static void free_ftrace_hash(struct ftrace_hash *hash)
1287{
1288 if (!hash || hash == EMPTY_HASH)
1289 return;
1290 ftrace_hash_clear(hash);
1291 kfree(hash->buckets);
1292 kfree(hash);
1293}
1294
Steven Rostedt07fd5512011-05-05 18:03:47 -04001295static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1296{
1297 struct ftrace_hash *hash;
1298
1299 hash = container_of(rcu, struct ftrace_hash, rcu);
1300 free_ftrace_hash(hash);
1301}
1302
1303static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1304{
1305 if (!hash || hash == EMPTY_HASH)
1306 return;
1307 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1308}
1309
Jiri Olsa5500fa52012-02-15 15:51:54 +01001310void ftrace_free_filter(struct ftrace_ops *ops)
1311{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09001312 ftrace_ops_init(ops);
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001313 free_ftrace_hash(ops->func_hash->filter_hash);
1314 free_ftrace_hash(ops->func_hash->notrace_hash);
Jiri Olsa5500fa52012-02-15 15:51:54 +01001315}
1316
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001317static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1318{
1319 struct ftrace_hash *hash;
1320 int size;
1321
1322 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1323 if (!hash)
1324 return NULL;
1325
1326 size = 1 << size_bits;
Thomas Meyer47b0edc2011-11-29 22:08:00 +01001327 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001328
1329 if (!hash->buckets) {
1330 kfree(hash);
1331 return NULL;
1332 }
1333
1334 hash->size_bits = size_bits;
1335
1336 return hash;
1337}
1338
1339static struct ftrace_hash *
1340alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1341{
1342 struct ftrace_func_entry *entry;
1343 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001344 int size;
1345 int ret;
1346 int i;
1347
1348 new_hash = alloc_ftrace_hash(size_bits);
1349 if (!new_hash)
1350 return NULL;
1351
1352 /* Empty hash? */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001353 if (ftrace_hash_empty(hash))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001354 return new_hash;
1355
1356 size = 1 << hash->size_bits;
1357 for (i = 0; i < size; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001358 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001359 ret = add_hash_entry(new_hash, entry->ip);
1360 if (ret < 0)
1361 goto free_hash;
1362 }
1363 }
1364
1365 FTRACE_WARN_ON(new_hash->count != hash->count);
1366
1367 return new_hash;
1368
1369 free_hash:
1370 free_ftrace_hash(new_hash);
1371 return NULL;
1372}
1373
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001374static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001375ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001376static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001377ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001378
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001379static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1380 struct ftrace_hash *new_hash);
1381
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001382static int
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001383ftrace_hash_move(struct ftrace_ops *ops, int enable,
1384 struct ftrace_hash **dst, struct ftrace_hash *src)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001385{
1386 struct ftrace_func_entry *entry;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001387 struct hlist_node *tn;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001388 struct hlist_head *hhd;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001389 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001390 int size = src->count;
1391 int bits = 0;
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001392 int ret;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001393 int i;
1394
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001395 /* Reject setting notrace hash on IPMODIFY ftrace_ops */
1396 if (ops->flags & FTRACE_OPS_FL_IPMODIFY && !enable)
1397 return -EINVAL;
1398
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001399 /*
1400 * If the new source is empty, just free dst and assign it
1401 * the empty_hash.
1402 */
1403 if (!src->count) {
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001404 new_hash = EMPTY_HASH;
1405 goto update;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001406 }
1407
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001408 /*
1409 * Make the hash size about 1/2 the # found
1410 */
1411 for (size /= 2; size; size >>= 1)
1412 bits++;
1413
1414 /* Don't allocate too much */
1415 if (bits > FTRACE_HASH_MAX_BITS)
1416 bits = FTRACE_HASH_MAX_BITS;
1417
Steven Rostedt07fd5512011-05-05 18:03:47 -04001418 new_hash = alloc_ftrace_hash(bits);
1419 if (!new_hash)
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001420 return -ENOMEM;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001421
1422 size = 1 << src->size_bits;
1423 for (i = 0; i < size; i++) {
1424 hhd = &src->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001425 hlist_for_each_entry_safe(entry, tn, hhd, hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001426 remove_hash_entry(src, entry);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001427 __add_hash_entry(new_hash, entry);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001428 }
1429 }
1430
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001431update:
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001432 /* Make sure this can be applied if it is IPMODIFY ftrace_ops */
1433 if (enable) {
1434 /* IPMODIFY should be updated only when filter_hash updating */
1435 ret = ftrace_hash_ipmodify_update(ops, new_hash);
1436 if (ret < 0) {
1437 free_ftrace_hash(new_hash);
1438 return ret;
1439 }
1440 }
1441
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001442 /*
1443 * Remove the current set, update the hash and add
1444 * them back.
1445 */
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001446 ftrace_hash_rec_disable_modify(ops, enable);
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001447
Steven Rostedt07fd5512011-05-05 18:03:47 -04001448 rcu_assign_pointer(*dst, new_hash);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001449
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001450 ftrace_hash_rec_enable_modify(ops, enable);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001451
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001452 return 0;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001453}
1454
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001455static bool hash_contains_ip(unsigned long ip,
1456 struct ftrace_ops_hash *hash)
1457{
1458 /*
1459 * The function record is a match if it exists in the filter
1460 * hash and not in the notrace hash. Note, an emty hash is
1461 * considered a match for the filter hash, but an empty
1462 * notrace hash is considered not in the notrace hash.
1463 */
1464 return (ftrace_hash_empty(hash->filter_hash) ||
1465 ftrace_lookup_ip(hash->filter_hash, ip)) &&
1466 (ftrace_hash_empty(hash->notrace_hash) ||
1467 !ftrace_lookup_ip(hash->notrace_hash, ip));
1468}
1469
Steven Rostedt265c8312009-02-13 12:43:56 -05001470/*
Steven Rostedtb8489142011-05-04 09:27:52 -04001471 * Test the hashes for this ops to see if we want to call
1472 * the ops->func or not.
1473 *
1474 * It's a match if the ip is in the ops->filter_hash or
1475 * the filter_hash does not exist or is empty,
1476 * AND
1477 * the ip is not in the ops->notrace_hash.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04001478 *
1479 * This needs to be called with preemption disabled as
1480 * the hashes are freed with call_rcu_sched().
Steven Rostedtb8489142011-05-04 09:27:52 -04001481 */
1482static int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001483ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04001484{
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001485 struct ftrace_ops_hash hash;
Steven Rostedtb8489142011-05-04 09:27:52 -04001486 int ret;
1487
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001488#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1489 /*
1490 * There's a small race when adding ops that the ftrace handler
1491 * that wants regs, may be called without them. We can not
1492 * allow that handler to be called if regs is NULL.
1493 */
1494 if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS))
1495 return 0;
1496#endif
1497
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001498 hash.filter_hash = rcu_dereference_raw_notrace(ops->func_hash->filter_hash);
1499 hash.notrace_hash = rcu_dereference_raw_notrace(ops->func_hash->notrace_hash);
Steven Rostedtb8489142011-05-04 09:27:52 -04001500
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001501 if (hash_contains_ip(ip, &hash))
Steven Rostedtb8489142011-05-04 09:27:52 -04001502 ret = 1;
1503 else
1504 ret = 0;
Steven Rostedtb8489142011-05-04 09:27:52 -04001505
1506 return ret;
1507}
1508
1509/*
Steven Rostedt265c8312009-02-13 12:43:56 -05001510 * This is a double for. Do not use 'break' to break out of the loop,
1511 * you must use a goto.
1512 */
1513#define do_for_each_ftrace_rec(pg, rec) \
1514 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1515 int _____i; \
1516 for (_____i = 0; _____i < pg->index; _____i++) { \
1517 rec = &pg->records[_____i];
1518
1519#define while_for_each_ftrace_rec() \
1520 } \
1521 }
Abhishek Sagarecea6562008-06-21 23:47:53 +05301522
Steven Rostedt5855fea2011-12-16 19:27:42 -05001523
1524static int ftrace_cmp_recs(const void *a, const void *b)
1525{
Steven Rostedta650e022012-04-25 13:48:13 -04001526 const struct dyn_ftrace *key = a;
1527 const struct dyn_ftrace *rec = b;
Steven Rostedt5855fea2011-12-16 19:27:42 -05001528
Steven Rostedta650e022012-04-25 13:48:13 -04001529 if (key->flags < rec->ip)
Steven Rostedt5855fea2011-12-16 19:27:42 -05001530 return -1;
Steven Rostedta650e022012-04-25 13:48:13 -04001531 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1532 return 1;
1533 return 0;
1534}
1535
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001536static unsigned long ftrace_location_range(unsigned long start, unsigned long end)
Steven Rostedta650e022012-04-25 13:48:13 -04001537{
1538 struct ftrace_page *pg;
1539 struct dyn_ftrace *rec;
1540 struct dyn_ftrace key;
1541
1542 key.ip = start;
1543 key.flags = end; /* overload flags, as it is unsigned long */
1544
1545 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1546 if (end < pg->records[0].ip ||
1547 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1548 continue;
1549 rec = bsearch(&key, pg->records, pg->index,
1550 sizeof(struct dyn_ftrace),
1551 ftrace_cmp_recs);
1552 if (rec)
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001553 return rec->ip;
Steven Rostedta650e022012-04-25 13:48:13 -04001554 }
1555
Steven Rostedt5855fea2011-12-16 19:27:42 -05001556 return 0;
1557}
1558
Steven Rostedtc88fd862011-08-16 09:53:39 -04001559/**
1560 * ftrace_location - return true if the ip giving is a traced location
1561 * @ip: the instruction pointer to check
1562 *
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001563 * Returns rec->ip if @ip given is a pointer to a ftrace location.
Steven Rostedtc88fd862011-08-16 09:53:39 -04001564 * That is, the instruction that is either a NOP or call to
1565 * the function tracer. It checks the ftrace internal tables to
1566 * determine if the address belongs or not.
1567 */
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001568unsigned long ftrace_location(unsigned long ip)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001569{
Steven Rostedta650e022012-04-25 13:48:13 -04001570 return ftrace_location_range(ip, ip);
1571}
Steven Rostedtc88fd862011-08-16 09:53:39 -04001572
Steven Rostedta650e022012-04-25 13:48:13 -04001573/**
1574 * ftrace_text_reserved - return true if range contains an ftrace location
1575 * @start: start of range to search
1576 * @end: end of range to search (inclusive). @end points to the last byte to check.
1577 *
1578 * Returns 1 if @start and @end contains a ftrace location.
1579 * That is, the instruction that is either a NOP or call to
1580 * the function tracer. It checks the ftrace internal tables to
1581 * determine if the address belongs or not.
1582 */
Sasha Levind88471c2013-01-09 18:09:20 -05001583int ftrace_text_reserved(const void *start, const void *end)
Steven Rostedta650e022012-04-25 13:48:13 -04001584{
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001585 unsigned long ret;
1586
1587 ret = ftrace_location_range((unsigned long)start,
1588 (unsigned long)end);
1589
1590 return (int)!!ret;
Steven Rostedtc88fd862011-08-16 09:53:39 -04001591}
1592
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001593/* Test if ops registered to this rec needs regs */
1594static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec)
1595{
1596 struct ftrace_ops *ops;
1597 bool keep_regs = false;
1598
1599 for (ops = ftrace_ops_list;
1600 ops != &ftrace_list_end; ops = ops->next) {
1601 /* pass rec in as regs to have non-NULL val */
1602 if (ftrace_ops_test(ops, rec->ip, rec)) {
1603 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1604 keep_regs = true;
1605 break;
1606 }
1607 }
1608 }
1609
1610 return keep_regs;
1611}
1612
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001613static bool __ftrace_hash_rec_update(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001614 int filter_hash,
1615 bool inc)
1616{
1617 struct ftrace_hash *hash;
1618 struct ftrace_hash *other_hash;
1619 struct ftrace_page *pg;
1620 struct dyn_ftrace *rec;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001621 bool update = false;
Steven Rostedted926f92011-05-03 13:25:24 -04001622 int count = 0;
1623 int all = 0;
1624
1625 /* Only update if the ops has been registered */
1626 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001627 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001628
1629 /*
1630 * In the filter_hash case:
1631 * If the count is zero, we update all records.
1632 * Otherwise we just update the items in the hash.
1633 *
1634 * In the notrace_hash case:
1635 * We enable the update in the hash.
1636 * As disabling notrace means enabling the tracing,
1637 * and enabling notrace means disabling, the inc variable
1638 * gets inversed.
1639 */
1640 if (filter_hash) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001641 hash = ops->func_hash->filter_hash;
1642 other_hash = ops->func_hash->notrace_hash;
Steven Rostedt06a51d92011-12-19 19:07:36 -05001643 if (ftrace_hash_empty(hash))
Steven Rostedted926f92011-05-03 13:25:24 -04001644 all = 1;
1645 } else {
1646 inc = !inc;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001647 hash = ops->func_hash->notrace_hash;
1648 other_hash = ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04001649 /*
1650 * If the notrace hash has no items,
1651 * then there's nothing to do.
1652 */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001653 if (ftrace_hash_empty(hash))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001654 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001655 }
1656
1657 do_for_each_ftrace_rec(pg, rec) {
1658 int in_other_hash = 0;
1659 int in_hash = 0;
1660 int match = 0;
1661
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05001662 if (rec->flags & FTRACE_FL_DISABLED)
1663 continue;
1664
Steven Rostedted926f92011-05-03 13:25:24 -04001665 if (all) {
1666 /*
1667 * Only the filter_hash affects all records.
1668 * Update if the record is not in the notrace hash.
1669 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001670 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
Steven Rostedted926f92011-05-03 13:25:24 -04001671 match = 1;
1672 } else {
Steven Rostedt06a51d92011-12-19 19:07:36 -05001673 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1674 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
Steven Rostedted926f92011-05-03 13:25:24 -04001675
1676 /*
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001677 * If filter_hash is set, we want to match all functions
1678 * that are in the hash but not in the other hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001679 *
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001680 * If filter_hash is not set, then we are decrementing.
1681 * That means we match anything that is in the hash
1682 * and also in the other_hash. That is, we need to turn
1683 * off functions in the other hash because they are disabled
1684 * by this hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001685 */
1686 if (filter_hash && in_hash && !in_other_hash)
1687 match = 1;
1688 else if (!filter_hash && in_hash &&
Steven Rostedt06a51d92011-12-19 19:07:36 -05001689 (in_other_hash || ftrace_hash_empty(other_hash)))
Steven Rostedted926f92011-05-03 13:25:24 -04001690 match = 1;
1691 }
1692 if (!match)
1693 continue;
1694
1695 if (inc) {
1696 rec->flags++;
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001697 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001698 return false;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001699
1700 /*
1701 * If there's only a single callback registered to a
1702 * function, and the ops has a trampoline registered
1703 * for it, then we can call it directly.
1704 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001705 if (ftrace_rec_count(rec) == 1 && ops->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001706 rec->flags |= FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001707 else
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001708 /*
1709 * If we are adding another function callback
1710 * to this function, and the previous had a
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04001711 * custom trampoline in use, then we need to go
1712 * back to the default trampoline.
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001713 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001714 rec->flags &= ~FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001715
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001716 /*
1717 * If any ops wants regs saved for this function
1718 * then all ops will get saved regs.
1719 */
1720 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1721 rec->flags |= FTRACE_FL_REGS;
Steven Rostedted926f92011-05-03 13:25:24 -04001722 } else {
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001723 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0))
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001724 return false;
Steven Rostedted926f92011-05-03 13:25:24 -04001725 rec->flags--;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001726
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001727 /*
1728 * If the rec had REGS enabled and the ops that is
1729 * being removed had REGS set, then see if there is
1730 * still any ops for this record that wants regs.
1731 * If not, we can stop recording them.
1732 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001733 if (ftrace_rec_count(rec) > 0 &&
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001734 rec->flags & FTRACE_FL_REGS &&
1735 ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1736 if (!test_rec_ops_needs_regs(rec))
1737 rec->flags &= ~FTRACE_FL_REGS;
1738 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001739
1740 /*
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001741 * If the rec had TRAMP enabled, then it needs to
1742 * be cleared. As TRAMP can only be enabled iff
1743 * there is only a single ops attached to it.
1744 * In otherwords, always disable it on decrementing.
1745 * In the future, we may set it if rec count is
1746 * decremented to one, and the ops that is left
1747 * has a trampoline.
1748 */
1749 rec->flags &= ~FTRACE_FL_TRAMP;
1750
1751 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001752 * flags will be cleared in ftrace_check_record()
1753 * if rec count is zero.
1754 */
Steven Rostedted926f92011-05-03 13:25:24 -04001755 }
1756 count++;
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001757
1758 /* Must match FTRACE_UPDATE_CALLS in ftrace_modify_all_code() */
1759 update |= ftrace_test_record(rec, 1) != FTRACE_UPDATE_IGNORE;
1760
Steven Rostedted926f92011-05-03 13:25:24 -04001761 /* Shortcut, if we handled all records, we are done. */
1762 if (!all && count == hash->count)
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001763 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001764 } while_for_each_ftrace_rec();
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001765
1766 return update;
Steven Rostedted926f92011-05-03 13:25:24 -04001767}
1768
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001769static bool ftrace_hash_rec_disable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001770 int filter_hash)
1771{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001772 return __ftrace_hash_rec_update(ops, filter_hash, 0);
Steven Rostedted926f92011-05-03 13:25:24 -04001773}
1774
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001775static bool ftrace_hash_rec_enable(struct ftrace_ops *ops,
Steven Rostedted926f92011-05-03 13:25:24 -04001776 int filter_hash)
1777{
Jiri Olsa84b6d3e2016-03-16 15:34:32 +01001778 return __ftrace_hash_rec_update(ops, filter_hash, 1);
Steven Rostedted926f92011-05-03 13:25:24 -04001779}
1780
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001781static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops,
1782 int filter_hash, int inc)
1783{
1784 struct ftrace_ops *op;
1785
1786 __ftrace_hash_rec_update(ops, filter_hash, inc);
1787
1788 if (ops->func_hash != &global_ops.local_hash)
1789 return;
1790
1791 /*
1792 * If the ops shares the global_ops hash, then we need to update
1793 * all ops that are enabled and use this hash.
1794 */
1795 do_for_each_ftrace_op(op, ftrace_ops_list) {
1796 /* Already done */
1797 if (op == ops)
1798 continue;
1799 if (op->func_hash == &global_ops.local_hash)
1800 __ftrace_hash_rec_update(op, filter_hash, inc);
1801 } while_for_each_ftrace_op(op);
1802}
1803
1804static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops,
1805 int filter_hash)
1806{
1807 ftrace_hash_rec_update_modify(ops, filter_hash, 0);
1808}
1809
1810static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops,
1811 int filter_hash)
1812{
1813 ftrace_hash_rec_update_modify(ops, filter_hash, 1);
1814}
1815
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001816/*
1817 * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK
1818 * or no-needed to update, -EBUSY if it detects a conflict of the flag
1819 * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs.
1820 * Note that old_hash and new_hash has below meanings
1821 * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected)
1822 * - If the hash is EMPTY_HASH, it hits nothing
1823 * - Anything else hits the recs which match the hash entries.
1824 */
1825static int __ftrace_hash_update_ipmodify(struct ftrace_ops *ops,
1826 struct ftrace_hash *old_hash,
1827 struct ftrace_hash *new_hash)
1828{
1829 struct ftrace_page *pg;
1830 struct dyn_ftrace *rec, *end = NULL;
1831 int in_old, in_new;
1832
1833 /* Only update if the ops has been registered */
1834 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1835 return 0;
1836
1837 if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY))
1838 return 0;
1839
1840 /*
1841 * Since the IPMODIFY is a very address sensitive action, we do not
1842 * allow ftrace_ops to set all functions to new hash.
1843 */
1844 if (!new_hash || !old_hash)
1845 return -EINVAL;
1846
1847 /* Update rec->flags */
1848 do_for_each_ftrace_rec(pg, rec) {
1849 /* We need to update only differences of filter_hash */
1850 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1851 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1852 if (in_old == in_new)
1853 continue;
1854
1855 if (in_new) {
1856 /* New entries must ensure no others are using it */
1857 if (rec->flags & FTRACE_FL_IPMODIFY)
1858 goto rollback;
1859 rec->flags |= FTRACE_FL_IPMODIFY;
1860 } else /* Removed entry */
1861 rec->flags &= ~FTRACE_FL_IPMODIFY;
1862 } while_for_each_ftrace_rec();
1863
1864 return 0;
1865
1866rollback:
1867 end = rec;
1868
1869 /* Roll back what we did above */
1870 do_for_each_ftrace_rec(pg, rec) {
1871 if (rec == end)
1872 goto err_out;
1873
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 rec->flags &= ~FTRACE_FL_IPMODIFY;
1881 else
1882 rec->flags |= FTRACE_FL_IPMODIFY;
1883 } while_for_each_ftrace_rec();
1884
1885err_out:
1886 return -EBUSY;
1887}
1888
1889static int ftrace_hash_ipmodify_enable(struct ftrace_ops *ops)
1890{
1891 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1892
1893 if (ftrace_hash_empty(hash))
1894 hash = NULL;
1895
1896 return __ftrace_hash_update_ipmodify(ops, EMPTY_HASH, hash);
1897}
1898
1899/* Disabling always succeeds */
1900static void ftrace_hash_ipmodify_disable(struct ftrace_ops *ops)
1901{
1902 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1903
1904 if (ftrace_hash_empty(hash))
1905 hash = NULL;
1906
1907 __ftrace_hash_update_ipmodify(ops, hash, EMPTY_HASH);
1908}
1909
1910static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1911 struct ftrace_hash *new_hash)
1912{
1913 struct ftrace_hash *old_hash = ops->func_hash->filter_hash;
1914
1915 if (ftrace_hash_empty(old_hash))
1916 old_hash = NULL;
1917
1918 if (ftrace_hash_empty(new_hash))
1919 new_hash = NULL;
1920
1921 return __ftrace_hash_update_ipmodify(ops, old_hash, new_hash);
1922}
1923
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05001924static void print_ip_ins(const char *fmt, const unsigned char *p)
Steven Rostedt05736a42008-09-22 14:55:47 -07001925{
1926 int i;
1927
1928 printk(KERN_CONT "%s", fmt);
1929
1930 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1931 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1932}
1933
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001934static struct ftrace_ops *
1935ftrace_find_tramp_ops_any(struct dyn_ftrace *rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05001936static struct ftrace_ops *
1937ftrace_find_tramp_ops_next(struct dyn_ftrace *rec, struct ftrace_ops *ops);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001938
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05001939enum ftrace_bug_type ftrace_bug_type;
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05001940const void *ftrace_expected;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05001941
1942static void print_bug_type(void)
1943{
1944 switch (ftrace_bug_type) {
1945 case FTRACE_BUG_UNKNOWN:
1946 break;
1947 case FTRACE_BUG_INIT:
1948 pr_info("Initializing ftrace call sites\n");
1949 break;
1950 case FTRACE_BUG_NOP:
1951 pr_info("Setting ftrace call site to NOP\n");
1952 break;
1953 case FTRACE_BUG_CALL:
1954 pr_info("Setting ftrace call site to call ftrace function\n");
1955 break;
1956 case FTRACE_BUG_UPDATE:
1957 pr_info("Updating ftrace call site to call a different ftrace function\n");
1958 break;
1959 }
1960}
1961
Steven Rostedtc88fd862011-08-16 09:53:39 -04001962/**
1963 * ftrace_bug - report and shutdown function tracer
1964 * @failed: The failed type (EFAULT, EINVAL, EPERM)
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001965 * @rec: The record that failed
Steven Rostedtc88fd862011-08-16 09:53:39 -04001966 *
1967 * The arch code that enables or disables the function tracing
1968 * can call ftrace_bug() when it has detected a problem in
1969 * modifying the code. @failed should be one of either:
1970 * EFAULT - if the problem happens on reading the @ip address
1971 * EINVAL - if what is read at @ip is not what was expected
1972 * EPERM - if the problem happens on writting to the @ip address
1973 */
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001974void ftrace_bug(int failed, struct dyn_ftrace *rec)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001975{
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001976 unsigned long ip = rec ? rec->ip : 0;
1977
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001978 switch (failed) {
1979 case -EFAULT:
1980 FTRACE_WARN_ON_ONCE(1);
1981 pr_info("ftrace faulted on modifying ");
1982 print_ip_sym(ip);
1983 break;
1984 case -EINVAL:
1985 FTRACE_WARN_ON_ONCE(1);
1986 pr_info("ftrace failed to modify ");
1987 print_ip_sym(ip);
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05001988 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001989 pr_cont("\n");
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05001990 if (ftrace_expected) {
1991 print_ip_ins(" expected: ", ftrace_expected);
1992 pr_cont("\n");
1993 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001994 break;
1995 case -EPERM:
1996 FTRACE_WARN_ON_ONCE(1);
1997 pr_info("ftrace faulted on writing ");
1998 print_ip_sym(ip);
1999 break;
2000 default:
2001 FTRACE_WARN_ON_ONCE(1);
2002 pr_info("ftrace faulted on unknown error ");
2003 print_ip_sym(ip);
2004 }
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002005 print_bug_type();
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002006 if (rec) {
2007 struct ftrace_ops *ops = NULL;
2008
2009 pr_info("ftrace record flags: %lx\n", rec->flags);
2010 pr_cont(" (%ld)%s", ftrace_rec_count(rec),
2011 rec->flags & FTRACE_FL_REGS ? " R" : " ");
2012 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2013 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002014 if (ops) {
2015 do {
2016 pr_cont("\ttramp: %pS (%pS)",
2017 (void *)ops->trampoline,
2018 (void *)ops->func);
2019 ops = ftrace_find_tramp_ops_next(rec, ops);
2020 } while (ops);
2021 } else
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002022 pr_cont("\ttramp: ERROR!");
2023
2024 }
2025 ip = ftrace_get_addr_curr(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002026 pr_cont("\n expected tramp: %lx\n", ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002027 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002028}
2029
Steven Rostedtc88fd862011-08-16 09:53:39 -04002030static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02002031{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002032 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01002033
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002034 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2035
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002036 if (rec->flags & FTRACE_FL_DISABLED)
2037 return FTRACE_UPDATE_IGNORE;
2038
Steven Rostedt982c3502008-11-15 16:31:41 -05002039 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002040 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05002041 *
Steven Rostedted926f92011-05-03 13:25:24 -04002042 * If the record has a ref count, then we need to enable it
2043 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05002044 *
Steven Rostedted926f92011-05-03 13:25:24 -04002045 * Otherwise we make sure its disabled.
2046 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002047 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04002048 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05002049 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002050 if (enable && ftrace_rec_count(rec))
Steven Rostedted926f92011-05-03 13:25:24 -04002051 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02002052
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002053 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002054 * If enabling and the REGS flag does not match the REGS_EN, or
2055 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
2056 * this record. Set flags to fail the compare against ENABLED.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002057 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002058 if (flag) {
2059 if (!(rec->flags & FTRACE_FL_REGS) !=
2060 !(rec->flags & FTRACE_FL_REGS_EN))
2061 flag |= FTRACE_FL_REGS;
2062
2063 if (!(rec->flags & FTRACE_FL_TRAMP) !=
2064 !(rec->flags & FTRACE_FL_TRAMP_EN))
2065 flag |= FTRACE_FL_TRAMP;
2066 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002067
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002068 /* If the state of this record hasn't changed, then do nothing */
2069 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04002070 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002071
2072 if (flag) {
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002073 /* Save off if rec is being enabled (for return value) */
2074 flag ^= rec->flags & FTRACE_FL_ENABLED;
2075
2076 if (update) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04002077 rec->flags |= FTRACE_FL_ENABLED;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002078 if (flag & FTRACE_FL_REGS) {
2079 if (rec->flags & FTRACE_FL_REGS)
2080 rec->flags |= FTRACE_FL_REGS_EN;
2081 else
2082 rec->flags &= ~FTRACE_FL_REGS_EN;
2083 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002084 if (flag & FTRACE_FL_TRAMP) {
2085 if (rec->flags & FTRACE_FL_TRAMP)
2086 rec->flags |= FTRACE_FL_TRAMP_EN;
2087 else
2088 rec->flags &= ~FTRACE_FL_TRAMP_EN;
2089 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002090 }
2091
2092 /*
2093 * If this record is being updated from a nop, then
2094 * return UPDATE_MAKE_CALL.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002095 * Otherwise,
2096 * return UPDATE_MODIFY_CALL to tell the caller to convert
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002097 * from the save regs, to a non-save regs function or
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002098 * vice versa, or from a trampoline call.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002099 */
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002100 if (flag & FTRACE_FL_ENABLED) {
2101 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002102 return FTRACE_UPDATE_MAKE_CALL;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002103 }
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002104
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002105 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002106 return FTRACE_UPDATE_MODIFY_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002107 }
2108
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002109 if (update) {
2110 /* If there's no more users, clear all flags */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002111 if (!ftrace_rec_count(rec))
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002112 rec->flags = 0;
2113 else
Steven Rostedt (Red Hat)b24d4432015-03-04 23:10:28 -05002114 /*
2115 * Just disable the record, but keep the ops TRAMP
2116 * and REGS states. The _EN flags must be disabled though.
2117 */
2118 rec->flags &= ~(FTRACE_FL_ENABLED | FTRACE_FL_TRAMP_EN |
2119 FTRACE_FL_REGS_EN);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002120 }
Steven Rostedtc88fd862011-08-16 09:53:39 -04002121
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002122 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002123 return FTRACE_UPDATE_MAKE_NOP;
2124}
2125
2126/**
2127 * ftrace_update_record, set a record that now is tracing or not
2128 * @rec: the record to update
2129 * @enable: set to 1 if the record is tracing, zero to force disable
2130 *
2131 * The records that represent all functions that can be traced need
2132 * to be updated when tracing has been enabled.
2133 */
2134int ftrace_update_record(struct dyn_ftrace *rec, int enable)
2135{
2136 return ftrace_check_record(rec, enable, 1);
2137}
2138
2139/**
2140 * ftrace_test_record, check if the record has been enabled or not
2141 * @rec: the record to test
2142 * @enable: set to 1 to check if enabled, 0 if it is disabled
2143 *
2144 * The arch code may need to test if a record is already set to
2145 * tracing to determine how to modify the function code that it
2146 * represents.
2147 */
2148int ftrace_test_record(struct dyn_ftrace *rec, int enable)
2149{
2150 return ftrace_check_record(rec, enable, 0);
2151}
2152
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002153static struct ftrace_ops *
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002154ftrace_find_tramp_ops_any(struct dyn_ftrace *rec)
2155{
2156 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002157 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002158
2159 do_for_each_ftrace_op(op, ftrace_ops_list) {
2160
2161 if (!op->trampoline)
2162 continue;
2163
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002164 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002165 return op;
2166 } while_for_each_ftrace_op(op);
2167
2168 return NULL;
2169}
2170
2171static struct ftrace_ops *
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002172ftrace_find_tramp_ops_next(struct dyn_ftrace *rec,
2173 struct ftrace_ops *op)
2174{
2175 unsigned long ip = rec->ip;
2176
2177 while_for_each_ftrace_op(op) {
2178
2179 if (!op->trampoline)
2180 continue;
2181
2182 if (hash_contains_ip(ip, op->func_hash))
2183 return op;
2184 }
2185
2186 return NULL;
2187}
2188
2189static struct ftrace_ops *
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002190ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec)
2191{
2192 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002193 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002194
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002195 /*
2196 * Need to check removed ops first.
2197 * If they are being removed, and this rec has a tramp,
2198 * and this rec is in the ops list, then it would be the
2199 * one with the tramp.
2200 */
2201 if (removed_ops) {
2202 if (hash_contains_ip(ip, &removed_ops->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002203 return removed_ops;
2204 }
2205
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002206 /*
2207 * Need to find the current trampoline for a rec.
2208 * Now, a trampoline is only attached to a rec if there
2209 * was a single 'ops' attached to it. But this can be called
2210 * when we are adding another op to the rec or removing the
2211 * current one. Thus, if the op is being added, we can
2212 * ignore it because it hasn't attached itself to the rec
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002213 * yet.
2214 *
2215 * If an ops is being modified (hooking to different functions)
2216 * then we don't care about the new functions that are being
2217 * added, just the old ones (that are probably being removed).
2218 *
2219 * If we are adding an ops to a function that already is using
2220 * a trampoline, it needs to be removed (trampolines are only
2221 * for single ops connected), then an ops that is not being
2222 * modified also needs to be checked.
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002223 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002224 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002225
2226 if (!op->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002227 continue;
2228
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002229 /*
2230 * If the ops is being added, it hasn't gotten to
2231 * the point to be removed from this tree yet.
2232 */
2233 if (op->flags & FTRACE_OPS_FL_ADDING)
2234 continue;
2235
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002236
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002237 /*
2238 * If the ops is being modified and is in the old
2239 * hash, then it is probably being removed from this
2240 * function.
2241 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002242 if ((op->flags & FTRACE_OPS_FL_MODIFYING) &&
2243 hash_contains_ip(ip, &op->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002244 return op;
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002245 /*
2246 * If the ops is not being added or modified, and it's
2247 * in its normal filter hash, then this must be the one
2248 * we want!
2249 */
2250 if (!(op->flags & FTRACE_OPS_FL_MODIFYING) &&
2251 hash_contains_ip(ip, op->func_hash))
2252 return op;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002253
2254 } while_for_each_ftrace_op(op);
2255
2256 return NULL;
2257}
2258
2259static struct ftrace_ops *
2260ftrace_find_tramp_ops_new(struct dyn_ftrace *rec)
2261{
2262 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002263 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002264
2265 do_for_each_ftrace_op(op, ftrace_ops_list) {
2266 /* pass rec in as regs to have non-NULL val */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002267 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002268 return op;
2269 } while_for_each_ftrace_op(op);
2270
2271 return NULL;
2272}
2273
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002274/**
2275 * ftrace_get_addr_new - Get the call address to set to
2276 * @rec: The ftrace record descriptor
2277 *
2278 * If the record has the FTRACE_FL_REGS set, that means that it
2279 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2280 * is not not set, then it wants to convert to the normal callback.
2281 *
2282 * Returns the address of the trampoline to set to
2283 */
2284unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec)
2285{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002286 struct ftrace_ops *ops;
2287
2288 /* Trampolines take precedence over regs */
2289 if (rec->flags & FTRACE_FL_TRAMP) {
2290 ops = ftrace_find_tramp_ops_new(rec);
2291 if (FTRACE_WARN_ON(!ops || !ops->trampoline)) {
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04002292 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2293 (void *)rec->ip, (void *)rec->ip, rec->flags);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002294 /* Ftrace is shutting down, return anything */
2295 return (unsigned long)FTRACE_ADDR;
2296 }
2297 return ops->trampoline;
2298 }
2299
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002300 if (rec->flags & FTRACE_FL_REGS)
2301 return (unsigned long)FTRACE_REGS_ADDR;
2302 else
2303 return (unsigned long)FTRACE_ADDR;
2304}
2305
2306/**
2307 * ftrace_get_addr_curr - Get the call address that is already there
2308 * @rec: The ftrace record descriptor
2309 *
2310 * The FTRACE_FL_REGS_EN is set when the record already points to
2311 * a function that saves all the regs. Basically the '_EN' version
2312 * represents the current state of the function.
2313 *
2314 * Returns the address of the trampoline that is currently being called
2315 */
2316unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec)
2317{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002318 struct ftrace_ops *ops;
2319
2320 /* Trampolines take precedence over regs */
2321 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2322 ops = ftrace_find_tramp_ops_curr(rec);
2323 if (FTRACE_WARN_ON(!ops)) {
2324 pr_warning("Bad trampoline accounting at: %p (%pS)\n",
2325 (void *)rec->ip, (void *)rec->ip);
2326 /* Ftrace is shutting down, return anything */
2327 return (unsigned long)FTRACE_ADDR;
2328 }
2329 return ops->trampoline;
2330 }
2331
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002332 if (rec->flags & FTRACE_FL_REGS_EN)
2333 return (unsigned long)FTRACE_REGS_ADDR;
2334 else
2335 return (unsigned long)FTRACE_ADDR;
2336}
2337
Steven Rostedtc88fd862011-08-16 09:53:39 -04002338static int
2339__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
2340{
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002341 unsigned long ftrace_old_addr;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002342 unsigned long ftrace_addr;
2343 int ret;
2344
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002345 ftrace_addr = ftrace_get_addr_new(rec);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002346
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002347 /* This needs to be done before we call ftrace_update_record */
2348 ftrace_old_addr = ftrace_get_addr_curr(rec);
2349
2350 ret = ftrace_update_record(rec, enable);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002351
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002352 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2353
Steven Rostedtc88fd862011-08-16 09:53:39 -04002354 switch (ret) {
2355 case FTRACE_UPDATE_IGNORE:
2356 return 0;
2357
2358 case FTRACE_UPDATE_MAKE_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002359 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002360 return ftrace_make_call(rec, ftrace_addr);
2361
2362 case FTRACE_UPDATE_MAKE_NOP:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002363 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedt (Red Hat)39b55522014-08-17 20:59:10 -04002364 return ftrace_make_nop(NULL, rec, ftrace_old_addr);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002365
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002366 case FTRACE_UPDATE_MODIFY_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002367 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002368 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002369 }
2370
2371 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02002372}
2373
Steven Rostedte4f5d542012-04-27 09:13:18 -04002374void __weak ftrace_replace_code(int enable)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002375{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002376 struct dyn_ftrace *rec;
2377 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002378 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002379
Steven Rostedt45a4a232011-04-21 23:16:46 -04002380 if (unlikely(ftrace_disabled))
2381 return;
2382
Steven Rostedt265c8312009-02-13 12:43:56 -05002383 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedte4f5d542012-04-27 09:13:18 -04002384 failed = __ftrace_replace_code(rec, enable);
Zhaoleifa9d13c2009-03-13 17:16:34 +08002385 if (failed) {
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002386 ftrace_bug(failed, rec);
Steven Rostedt3279ba32009-10-07 16:57:56 -04002387 /* Stop processing */
2388 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05002389 }
2390 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002391}
2392
Steven Rostedtc88fd862011-08-16 09:53:39 -04002393struct ftrace_rec_iter {
2394 struct ftrace_page *pg;
2395 int index;
2396};
2397
2398/**
2399 * ftrace_rec_iter_start, start up iterating over traced functions
2400 *
2401 * Returns an iterator handle that is used to iterate over all
2402 * the records that represent address locations where functions
2403 * are traced.
2404 *
2405 * May return NULL if no records are available.
2406 */
2407struct ftrace_rec_iter *ftrace_rec_iter_start(void)
2408{
2409 /*
2410 * We only use a single iterator.
2411 * Protected by the ftrace_lock mutex.
2412 */
2413 static struct ftrace_rec_iter ftrace_rec_iter;
2414 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
2415
2416 iter->pg = ftrace_pages_start;
2417 iter->index = 0;
2418
2419 /* Could have empty pages */
2420 while (iter->pg && !iter->pg->index)
2421 iter->pg = iter->pg->next;
2422
2423 if (!iter->pg)
2424 return NULL;
2425
2426 return iter;
2427}
2428
2429/**
2430 * ftrace_rec_iter_next, get the next record to process.
2431 * @iter: The handle to the iterator.
2432 *
2433 * Returns the next iterator after the given iterator @iter.
2434 */
2435struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
2436{
2437 iter->index++;
2438
2439 if (iter->index >= iter->pg->index) {
2440 iter->pg = iter->pg->next;
2441 iter->index = 0;
2442
2443 /* Could have empty pages */
2444 while (iter->pg && !iter->pg->index)
2445 iter->pg = iter->pg->next;
2446 }
2447
2448 if (!iter->pg)
2449 return NULL;
2450
2451 return iter;
2452}
2453
2454/**
2455 * ftrace_rec_iter_record, get the record at the iterator location
2456 * @iter: The current iterator location
2457 *
2458 * Returns the record that the current @iter is at.
2459 */
2460struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
2461{
2462 return &iter->pg->records[iter->index];
2463}
2464
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302465static int
Steven Rostedt31e88902008-11-14 16:21:19 -08002466ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002467{
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002468 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002469
Steven Rostedt45a4a232011-04-21 23:16:46 -04002470 if (unlikely(ftrace_disabled))
2471 return 0;
2472
Shaohua Li25aac9d2009-01-09 11:29:40 +08002473 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002474 if (ret) {
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002475 ftrace_bug_type = FTRACE_BUG_INIT;
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002476 ftrace_bug(ret, rec);
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302477 return 0;
Steven Rostedt37ad50842008-05-12 21:20:48 +02002478 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302479 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002480}
2481
Steven Rostedt000ab692009-02-17 13:35:06 -05002482/*
2483 * archs can override this function if they must do something
2484 * before the modifying code is performed.
2485 */
2486int __weak ftrace_arch_code_modify_prepare(void)
2487{
2488 return 0;
2489}
2490
2491/*
2492 * archs can override this function if they must do something
2493 * after the modifying code is performed.
2494 */
2495int __weak ftrace_arch_code_modify_post_process(void)
2496{
2497 return 0;
2498}
2499
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002500void ftrace_modify_all_code(int command)
2501{
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002502 int update = command & FTRACE_UPDATE_TRACE_FUNC;
Petr Mladekcd21067f2014-02-24 17:12:21 +01002503 int err = 0;
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002504
2505 /*
2506 * If the ftrace_caller calls a ftrace_ops func directly,
2507 * we need to make sure that it only traces functions it
2508 * expects to trace. When doing the switch of functions,
2509 * we need to update to the ftrace_ops_list_func first
2510 * before the transition between old and new calls are set,
2511 * as the ftrace_ops_list_func will check the ops hashes
2512 * to make sure the ops are having the right functions
2513 * traced.
2514 */
Petr Mladekcd21067f2014-02-24 17:12:21 +01002515 if (update) {
2516 err = ftrace_update_ftrace_func(ftrace_ops_list_func);
2517 if (FTRACE_WARN_ON(err))
2518 return;
2519 }
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002520
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002521 if (command & FTRACE_UPDATE_CALLS)
2522 ftrace_replace_code(1);
2523 else if (command & FTRACE_DISABLE_CALLS)
2524 ftrace_replace_code(0);
2525
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002526 if (update && ftrace_trace_function != ftrace_ops_list_func) {
2527 function_trace_op = set_function_trace_op;
2528 smp_wmb();
2529 /* If irqs are disabled, we are in stop machine */
2530 if (!irqs_disabled())
2531 smp_call_function(ftrace_sync_ipi, NULL, 1);
Petr Mladekcd21067f2014-02-24 17:12:21 +01002532 err = ftrace_update_ftrace_func(ftrace_trace_function);
2533 if (FTRACE_WARN_ON(err))
2534 return;
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002535 }
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002536
2537 if (command & FTRACE_START_FUNC_RET)
Petr Mladekcd21067f2014-02-24 17:12:21 +01002538 err = ftrace_enable_ftrace_graph_caller();
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002539 else if (command & FTRACE_STOP_FUNC_RET)
Petr Mladekcd21067f2014-02-24 17:12:21 +01002540 err = ftrace_disable_ftrace_graph_caller();
2541 FTRACE_WARN_ON(err);
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002542}
2543
Ingo Molnare309b412008-05-12 21:20:51 +02002544static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02002545{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002546 int *command = data;
2547
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002548 ftrace_modify_all_code(*command);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05002549
Steven Rostedtc88fd862011-08-16 09:53:39 -04002550 return 0;
2551}
2552
2553/**
2554 * ftrace_run_stop_machine, go back to the stop machine method
2555 * @command: The command to tell ftrace what to do
2556 *
2557 * If an arch needs to fall back to the stop machine method, the
2558 * it can call this function.
2559 */
2560void ftrace_run_stop_machine(int command)
2561{
2562 stop_machine(__ftrace_modify_code, &command, NULL);
2563}
2564
2565/**
2566 * arch_ftrace_update_code, modify the code to trace or not trace
2567 * @command: The command that needs to be done
2568 *
2569 * Archs can override this function if it does not need to
2570 * run stop_machine() to modify code.
2571 */
2572void __weak arch_ftrace_update_code(int command)
2573{
2574 ftrace_run_stop_machine(command);
2575}
2576
2577static void ftrace_run_update_code(int command)
2578{
2579 int ret;
2580
2581 ret = ftrace_arch_code_modify_prepare();
2582 FTRACE_WARN_ON(ret);
2583 if (ret)
2584 return;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002585
2586 /*
2587 * By default we use stop_machine() to modify the code.
2588 * But archs can do what ever they want as long as it
2589 * is safe. The stop_machine() is the safest, but also
2590 * produces the most overhead.
2591 */
2592 arch_ftrace_update_code(command);
2593
Steven Rostedt000ab692009-02-17 13:35:06 -05002594 ret = ftrace_arch_code_modify_post_process();
2595 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02002596}
2597
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002598static void ftrace_run_modify_code(struct ftrace_ops *ops, int command,
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002599 struct ftrace_ops_hash *old_hash)
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002600{
2601 ops->flags |= FTRACE_OPS_FL_MODIFYING;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002602 ops->old_hash.filter_hash = old_hash->filter_hash;
2603 ops->old_hash.notrace_hash = old_hash->notrace_hash;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002604 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002605 ops->old_hash.filter_hash = NULL;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002606 ops->old_hash.notrace_hash = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002607 ops->flags &= ~FTRACE_OPS_FL_MODIFYING;
2608}
2609
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002610static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002611static int ftrace_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002612
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002613void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops)
2614{
2615}
2616
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002617static void per_cpu_ops_free(struct ftrace_ops *ops)
Jiri Slabydb0fbad2014-03-10 21:42:11 +01002618{
2619 free_percpu(ops->disabled);
2620}
2621
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002622static void ftrace_startup_enable(int command)
2623{
2624 if (saved_ftrace_func != ftrace_trace_function) {
2625 saved_ftrace_func = ftrace_trace_function;
2626 command |= FTRACE_UPDATE_TRACE_FUNC;
2627 }
2628
2629 if (!command || !ftrace_enabled)
2630 return;
2631
2632 ftrace_run_update_code(command);
2633}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002634
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002635static void ftrace_startup_all(int command)
2636{
2637 update_all_ops = true;
2638 ftrace_startup_enable(command);
2639 update_all_ops = false;
2640}
2641
Steven Rostedta1cd6172011-05-23 15:24:25 -04002642static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002643{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002644 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002645
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002646 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04002647 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002648
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002649 ret = __register_ftrace_function(ops);
2650 if (ret)
2651 return ret;
2652
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002653 ftrace_start_up++;
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002654 command |= FTRACE_UPDATE_CALLS;
Steven Rostedt3d083392008-05-12 21:20:42 +02002655
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002656 /*
2657 * Note that ftrace probes uses this to start up
2658 * and modify functions it will probe. But we still
2659 * set the ADDING flag for modification, as probes
2660 * do not have trampolines. If they add them in the
2661 * future, then the probes will need to distinguish
2662 * between adding and updating probes.
2663 */
2664 ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING;
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002665
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002666 ret = ftrace_hash_ipmodify_enable(ops);
2667 if (ret < 0) {
2668 /* Rollback registration process */
2669 __unregister_ftrace_function(ops);
2670 ftrace_start_up--;
2671 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2672 return ret;
2673 }
2674
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002675 ftrace_hash_rec_enable(ops, 1);
Steven Rostedted926f92011-05-03 13:25:24 -04002676
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002677 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04002678
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002679 ops->flags &= ~FTRACE_OPS_FL_ADDING;
2680
Steven Rostedta1cd6172011-05-23 15:24:25 -04002681 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002682}
2683
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002684static int ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002685{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002686 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002687
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002688 if (unlikely(ftrace_disabled))
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002689 return -ENODEV;
2690
2691 ret = __unregister_ftrace_function(ops);
2692 if (ret)
2693 return ret;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002694
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002695 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02002696 /*
2697 * Just warn in case of unbalance, no need to kill ftrace, it's not
2698 * critical but the ftrace_call callers may be never nopped again after
2699 * further ftrace uses.
2700 */
2701 WARN_ON_ONCE(ftrace_start_up < 0);
2702
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002703 /* Disabling ipmodify never fails */
2704 ftrace_hash_ipmodify_disable(ops);
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002705 ftrace_hash_rec_disable(ops, 1);
Steven Rostedtb8489142011-05-04 09:27:52 -04002706
Namhyung Kima737e6d2014-06-12 23:56:12 +09002707 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04002708
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002709 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002710
2711 if (saved_ftrace_func != ftrace_trace_function) {
2712 saved_ftrace_func = ftrace_trace_function;
2713 command |= FTRACE_UPDATE_TRACE_FUNC;
2714 }
2715
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002716 if (!command || !ftrace_enabled) {
2717 /*
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002718 * If these are per_cpu ops, they still need their
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002719 * per_cpu field freed. Since, function tracing is
2720 * not currently active, we can just free them
2721 * without synchronizing all CPUs.
2722 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002723 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2724 per_cpu_ops_free(ops);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002725 return 0;
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002726 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002727
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002728 /*
2729 * If the ops uses a trampoline, then it needs to be
2730 * tested first on update.
2731 */
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002732 ops->flags |= FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002733 removed_ops = ops;
2734
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002735 /* The trampoline logic checks the old hashes */
2736 ops->old_hash.filter_hash = ops->func_hash->filter_hash;
2737 ops->old_hash.notrace_hash = ops->func_hash->notrace_hash;
2738
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002739 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002740
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002741 /*
2742 * If there's no more ops registered with ftrace, run a
2743 * sanity check to make sure all rec flags are cleared.
2744 */
2745 if (ftrace_ops_list == &ftrace_list_end) {
2746 struct ftrace_page *pg;
2747 struct dyn_ftrace *rec;
2748
2749 do_for_each_ftrace_rec(pg, rec) {
2750 if (FTRACE_WARN_ON_ONCE(rec->flags))
2751 pr_warn(" %pS flags:%lx\n",
2752 (void *)rec->ip, rec->flags);
2753 } while_for_each_ftrace_rec();
2754 }
2755
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002756 ops->old_hash.filter_hash = NULL;
2757 ops->old_hash.notrace_hash = NULL;
2758
2759 removed_ops = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002760 ops->flags &= ~FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002761
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002762 /*
2763 * Dynamic ops may be freed, we must make sure that all
2764 * callers are done before leaving this function.
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002765 * The same goes for freeing the per_cpu data of the per_cpu
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002766 * ops.
2767 *
2768 * Again, normal synchronize_sched() is not good enough.
2769 * We need to do a hard force of sched synchronization.
2770 * This is because we use preempt_disable() to do RCU, but
2771 * the function tracers can be called where RCU is not watching
2772 * (like before user_exit()). We can not rely on the RCU
2773 * infrastructure to do the synchronization, thus we must do it
2774 * ourselves.
2775 */
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002776 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU)) {
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002777 schedule_on_each_cpu(ftrace_sync);
2778
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002779 arch_ftrace_trampoline_free(ops);
2780
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05002781 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2782 per_cpu_ops_free(ops);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002783 }
2784
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002785 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002786}
2787
Ingo Molnare309b412008-05-12 21:20:51 +02002788static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002789{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302790 int command;
2791
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002792 if (unlikely(ftrace_disabled))
2793 return;
2794
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002795 /* Force update next time */
2796 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002797 /* ftrace_start_up is true if we want ftrace running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302798 if (ftrace_start_up) {
2799 command = FTRACE_UPDATE_CALLS;
2800 if (ftrace_graph_active)
2801 command |= FTRACE_START_FUNC_RET;
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05002802 ftrace_startup_enable(command);
Pratyush Anand1619dc32015-03-06 23:58:06 +05302803 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002804}
2805
Ingo Molnare309b412008-05-12 21:20:51 +02002806static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002807{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302808 int command;
2809
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002810 if (unlikely(ftrace_disabled))
2811 return;
2812
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002813 /* ftrace_start_up is true if ftrace is running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302814 if (ftrace_start_up) {
2815 command = FTRACE_DISABLE_CALLS;
2816 if (ftrace_graph_active)
2817 command |= FTRACE_STOP_FUNC_RET;
2818 ftrace_run_update_code(command);
2819 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002820}
2821
Steven Rostedt3d083392008-05-12 21:20:42 +02002822static cycle_t ftrace_update_time;
Steven Rostedt3d083392008-05-12 21:20:42 +02002823unsigned long ftrace_update_tot_cnt;
2824
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002825static inline int ops_traces_mod(struct ftrace_ops *ops)
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002826{
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002827 /*
2828 * Filter_hash being empty will default to trace module.
2829 * But notrace hash requires a test of individual module functions.
2830 */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002831 return ftrace_hash_empty(ops->func_hash->filter_hash) &&
2832 ftrace_hash_empty(ops->func_hash->notrace_hash);
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002833}
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002834
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002835/*
2836 * Check if the current ops references the record.
2837 *
2838 * If the ops traces all functions, then it was already accounted for.
2839 * If the ops does not trace the current record function, skip it.
2840 * If the ops ignores the function via notrace filter, skip it.
2841 */
2842static inline bool
2843ops_references_rec(struct ftrace_ops *ops, struct dyn_ftrace *rec)
2844{
2845 /* If ops isn't enabled, ignore it */
2846 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
2847 return 0;
2848
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002849 /* If ops traces all then it includes this function */
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002850 if (ops_traces_mod(ops))
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002851 return 1;
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002852
2853 /* The function must be in the filter */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002854 if (!ftrace_hash_empty(ops->func_hash->filter_hash) &&
2855 !ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002856 return 0;
2857
2858 /* If in notrace hash, we ignore it too */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002859 if (ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002860 return 0;
2861
2862 return 1;
2863}
2864
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002865static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs)
Steven Rostedt3d083392008-05-12 21:20:42 +02002866{
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002867 struct ftrace_page *pg;
Lai Jiangshane94142a2009-03-13 17:51:27 +08002868 struct dyn_ftrace *p;
Abhishek Sagarf22f9a892008-06-21 23:50:29 +05302869 cycle_t start, stop;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002870 unsigned long update_cnt = 0;
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002871 unsigned long rec_flags = 0;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002872 int i;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002873
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002874 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002875
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002876 /*
2877 * When a module is loaded, this function is called to convert
2878 * the calls to mcount in its text to nops, and also to create
2879 * an entry in the ftrace data. Now, if ftrace is activated
2880 * after this call, but before the module sets its text to
2881 * read-only, the modification of enabling ftrace can fail if
2882 * the read-only is done while ftrace is converting the calls.
2883 * To prevent this, the module's records are set as disabled
2884 * and will be enabled after the call to set the module's text
2885 * to read-only.
2886 */
2887 if (mod)
2888 rec_flags |= FTRACE_FL_DISABLED;
2889
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002890 for (pg = new_pgs; pg; pg = pg->next) {
Abhishek Sagarf22f9a892008-06-21 23:50:29 +05302891
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002892 for (i = 0; i < pg->index; i++) {
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002893
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002894 /* If something went wrong, bail without enabling anything */
2895 if (unlikely(ftrace_disabled))
2896 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02002897
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002898 p = &pg->records[i];
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05002899 p->flags = rec_flags;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05302900
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002901 /*
2902 * Do the initial record conversion from mcount jump
2903 * to the NOP instructions.
2904 */
2905 if (!ftrace_code_disable(mod, p))
2906 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002907
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002908 update_cnt++;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002909 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002910 }
2911
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002912 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002913 ftrace_update_time = stop - start;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002914 ftrace_update_tot_cnt += update_cnt;
Steven Rostedt3d083392008-05-12 21:20:42 +02002915
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02002916 return 0;
2917}
2918
Steven Rostedta7900872011-12-16 16:23:44 -05002919static int ftrace_allocate_records(struct ftrace_page *pg, int count)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002920{
Steven Rostedta7900872011-12-16 16:23:44 -05002921 int order;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002922 int cnt;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002923
Steven Rostedta7900872011-12-16 16:23:44 -05002924 if (WARN_ON(!count))
2925 return -EINVAL;
2926
2927 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002928
2929 /*
Steven Rostedta7900872011-12-16 16:23:44 -05002930 * We want to fill as much as possible. No more than a page
2931 * may be empty.
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002932 */
Steven Rostedta7900872011-12-16 16:23:44 -05002933 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2934 order--;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002935
Steven Rostedta7900872011-12-16 16:23:44 -05002936 again:
2937 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
2938
2939 if (!pg->records) {
2940 /* if we can't allocate this size, try something smaller */
2941 if (!order)
2942 return -ENOMEM;
2943 order >>= 1;
2944 goto again;
2945 }
2946
2947 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
2948 pg->size = cnt;
2949
2950 if (cnt > count)
2951 cnt = count;
2952
2953 return cnt;
2954}
2955
2956static struct ftrace_page *
2957ftrace_allocate_pages(unsigned long num_to_init)
2958{
2959 struct ftrace_page *start_pg;
2960 struct ftrace_page *pg;
2961 int order;
2962 int cnt;
2963
2964 if (!num_to_init)
2965 return 0;
2966
2967 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
2968 if (!pg)
2969 return NULL;
2970
2971 /*
2972 * Try to allocate as much as possible in one continues
2973 * location that fills in all of the space. We want to
2974 * waste as little space as possible.
2975 */
2976 for (;;) {
2977 cnt = ftrace_allocate_records(pg, num_to_init);
2978 if (cnt < 0)
2979 goto free_pages;
2980
2981 num_to_init -= cnt;
2982 if (!num_to_init)
2983 break;
2984
2985 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
2986 if (!pg->next)
2987 goto free_pages;
2988
2989 pg = pg->next;
2990 }
2991
2992 return start_pg;
2993
2994 free_pages:
Namhyung Kim1f61be002014-06-11 17:06:53 +09002995 pg = start_pg;
2996 while (pg) {
Steven Rostedta7900872011-12-16 16:23:44 -05002997 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
2998 free_pages((unsigned long)pg->records, order);
2999 start_pg = pg->next;
3000 kfree(pg);
3001 pg = start_pg;
3002 }
3003 pr_info("ftrace: FAILED to allocate memory for functions\n");
3004 return NULL;
3005}
3006
Steven Rostedt5072c592008-05-12 21:20:43 +02003007#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
3008
3009struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003010 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003011 loff_t func_pos;
3012 struct ftrace_page *pg;
3013 struct dyn_ftrace *func;
3014 struct ftrace_func_probe *probe;
3015 struct trace_parser parser;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003016 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003017 struct ftrace_ops *ops;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003018 int hidx;
3019 int idx;
3020 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02003021};
3022
Ingo Molnare309b412008-05-12 21:20:51 +02003023static void *
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003024t_hash_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003025{
3026 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003027 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003028 struct hlist_head *hhd;
3029
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003030 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003031 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003032
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003033 if (iter->probe)
3034 hnd = &iter->probe->node;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003035 retry:
3036 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
3037 return NULL;
3038
3039 hhd = &ftrace_func_hash[iter->hidx];
3040
3041 if (hlist_empty(hhd)) {
3042 iter->hidx++;
3043 hnd = NULL;
3044 goto retry;
3045 }
3046
3047 if (!hnd)
3048 hnd = hhd->first;
3049 else {
3050 hnd = hnd->next;
3051 if (!hnd) {
3052 iter->hidx++;
3053 goto retry;
3054 }
3055 }
3056
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003057 if (WARN_ON_ONCE(!hnd))
3058 return NULL;
3059
3060 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
3061
3062 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003063}
3064
3065static void *t_hash_start(struct seq_file *m, loff_t *pos)
3066{
3067 struct ftrace_iterator *iter = m->private;
3068 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08003069 loff_t l;
3070
Steven Rostedt69a30832011-12-19 15:21:16 -05003071 if (!(iter->flags & FTRACE_ITER_DO_HASH))
3072 return NULL;
3073
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003074 if (iter->func_pos > *pos)
3075 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003076
Li Zefand82d6242009-06-24 09:54:54 +08003077 iter->hidx = 0;
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003078 for (l = 0; l <= (*pos - iter->func_pos); ) {
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003079 p = t_hash_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08003080 if (!p)
3081 break;
3082 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003083 if (!p)
3084 return NULL;
3085
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003086 /* Only set this if we have an item */
3087 iter->flags |= FTRACE_ITER_HASH;
3088
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003089 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003090}
3091
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003092static int
3093t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003094{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003095 struct ftrace_func_probe *rec;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003096
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003097 rec = iter->probe;
3098 if (WARN_ON_ONCE(!rec))
3099 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003100
Steven Rostedt809dcf22009-02-16 23:06:01 -05003101 if (rec->ops->print)
3102 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
3103
Steven Rostedtb375a112009-09-17 00:05:58 -04003104 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003105
3106 if (rec->data)
3107 seq_printf(m, ":%p", rec->data);
3108 seq_putc(m, '\n');
3109
3110 return 0;
3111}
3112
3113static void *
Steven Rostedt5072c592008-05-12 21:20:43 +02003114t_next(struct seq_file *m, void *v, loff_t *pos)
3115{
3116 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003117 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02003118 struct dyn_ftrace *rec = NULL;
3119
Steven Rostedt45a4a232011-04-21 23:16:46 -04003120 if (unlikely(ftrace_disabled))
3121 return NULL;
3122
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003123 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003124 return t_hash_next(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003125
Steven Rostedt5072c592008-05-12 21:20:43 +02003126 (*pos)++;
Jiri Olsa1106b692011-02-16 17:35:34 +01003127 iter->pos = iter->func_pos = *pos;
Steven Rostedt5072c592008-05-12 21:20:43 +02003128
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003129 if (iter->flags & FTRACE_ITER_PRINTALL)
Steven Rostedt57c072c2010-09-14 11:21:11 -04003130 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003131
Steven Rostedt5072c592008-05-12 21:20:43 +02003132 retry:
3133 if (iter->idx >= iter->pg->index) {
3134 if (iter->pg->next) {
3135 iter->pg = iter->pg->next;
3136 iter->idx = 0;
3137 goto retry;
3138 }
3139 } else {
3140 rec = &iter->pg->records[iter->idx++];
Steven Rostedt320823092011-12-16 14:42:37 -05003141 if (((iter->flags & FTRACE_ITER_FILTER) &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003142 !(ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))) ||
Steven Rostedt0183fb1c2008-11-07 22:36:02 -05003143
Steven Rostedt41c52c02008-05-22 11:46:33 -04003144 ((iter->flags & FTRACE_ITER_NOTRACE) &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003145 !ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip)) ||
Steven Rostedt647bcd02011-05-03 14:39:21 -04003146
3147 ((iter->flags & FTRACE_ITER_ENABLED) &&
Steven Rostedt (Red Hat)23ea9c42013-05-09 19:31:48 -04003148 !(rec->flags & FTRACE_FL_ENABLED))) {
Steven Rostedt647bcd02011-05-03 14:39:21 -04003149
Steven Rostedt5072c592008-05-12 21:20:43 +02003150 rec = NULL;
3151 goto retry;
3152 }
3153 }
3154
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003155 if (!rec)
Steven Rostedt57c072c2010-09-14 11:21:11 -04003156 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003157
3158 iter->func = rec;
3159
3160 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003161}
3162
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003163static void reset_iter_read(struct ftrace_iterator *iter)
3164{
3165 iter->pos = 0;
3166 iter->func_pos = 0;
Dan Carpenter70f77b3f2012-06-09 19:10:27 +03003167 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_HASH);
Steven Rostedt5072c592008-05-12 21:20:43 +02003168}
3169
3170static void *t_start(struct seq_file *m, loff_t *pos)
3171{
3172 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003173 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02003174 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08003175 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02003176
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003177 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003178
3179 if (unlikely(ftrace_disabled))
3180 return NULL;
3181
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003182 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003183 * If an lseek was done, then reset and start from beginning.
3184 */
3185 if (*pos < iter->pos)
3186 reset_iter_read(iter);
3187
3188 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003189 * For set_ftrace_filter reading, if we have the filter
3190 * off, we can short cut and just print out that all
3191 * functions are enabled.
3192 */
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003193 if ((iter->flags & FTRACE_ITER_FILTER &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003194 ftrace_hash_empty(ops->func_hash->filter_hash)) ||
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003195 (iter->flags & FTRACE_ITER_NOTRACE &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003196 ftrace_hash_empty(ops->func_hash->notrace_hash))) {
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003197 if (*pos > 0)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003198 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003199 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07003200 /* reset in case of seek/pread */
3201 iter->flags &= ~FTRACE_ITER_HASH;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003202 return iter;
3203 }
3204
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003205 if (iter->flags & FTRACE_ITER_HASH)
3206 return t_hash_start(m, pos);
3207
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003208 /*
3209 * Unfortunately, we need to restart at ftrace_pages_start
3210 * every time we let go of the ftrace_mutex. This is because
3211 * those pointers can change without the lock.
3212 */
Li Zefan694ce0a2009-06-24 09:54:19 +08003213 iter->pg = ftrace_pages_start;
3214 iter->idx = 0;
3215 for (l = 0; l <= *pos; ) {
3216 p = t_next(m, p, &l);
3217 if (!p)
3218 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08003219 }
walimis5821e1b2008-11-15 15:19:06 +08003220
Steven Rostedt69a30832011-12-19 15:21:16 -05003221 if (!p)
3222 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003223
3224 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003225}
3226
3227static void t_stop(struct seq_file *m, void *p)
3228{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003229 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003230}
3231
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003232void * __weak
3233arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec)
3234{
3235 return NULL;
3236}
3237
3238static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops,
3239 struct dyn_ftrace *rec)
3240{
3241 void *ptr;
3242
3243 ptr = arch_ftrace_trampoline_func(ops, rec);
3244 if (ptr)
3245 seq_printf(m, " ->%pS", ptr);
3246}
3247
Steven Rostedt5072c592008-05-12 21:20:43 +02003248static int t_show(struct seq_file *m, void *v)
3249{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003250 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003251 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02003252
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003253 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003254 return t_hash_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003255
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003256 if (iter->flags & FTRACE_ITER_PRINTALL) {
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003257 if (iter->flags & FTRACE_ITER_NOTRACE)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003258 seq_puts(m, "#### no functions disabled ####\n");
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003259 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003260 seq_puts(m, "#### all functions enabled ####\n");
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003261 return 0;
3262 }
3263
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003264 rec = iter->func;
3265
Steven Rostedt5072c592008-05-12 21:20:43 +02003266 if (!rec)
3267 return 0;
3268
Steven Rostedt647bcd02011-05-03 14:39:21 -04003269 seq_printf(m, "%ps", (void *)rec->ip);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003270 if (iter->flags & FTRACE_ITER_ENABLED) {
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003271 struct ftrace_ops *ops;
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003272
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003273 seq_printf(m, " (%ld)%s%s",
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04003274 ftrace_rec_count(rec),
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003275 rec->flags & FTRACE_FL_REGS ? " R" : " ",
3276 rec->flags & FTRACE_FL_IPMODIFY ? " I" : " ");
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003277 if (rec->flags & FTRACE_FL_TRAMP_EN) {
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04003278 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003279 if (ops) {
3280 do {
3281 seq_printf(m, "\ttramp: %pS (%pS)",
3282 (void *)ops->trampoline,
3283 (void *)ops->func);
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003284 add_trampoline_func(m, ops, rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003285 ops = ftrace_find_tramp_ops_next(rec, ops);
3286 } while (ops);
3287 } else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003288 seq_puts(m, "\ttramp: ERROR!");
Steven Rostedt (Red Hat)030f4e12015-12-01 12:24:45 -05003289 } else {
3290 add_trampoline_func(m, NULL, rec);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003291 }
3292 }
3293
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003294 seq_putc(m, '\n');
Steven Rostedt5072c592008-05-12 21:20:43 +02003295
3296 return 0;
3297}
3298
James Morris88e9d342009-09-22 16:43:43 -07003299static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003300 .start = t_start,
3301 .next = t_next,
3302 .stop = t_stop,
3303 .show = t_show,
3304};
3305
Ingo Molnare309b412008-05-12 21:20:51 +02003306static int
Steven Rostedt5072c592008-05-12 21:20:43 +02003307ftrace_avail_open(struct inode *inode, struct file *file)
3308{
3309 struct ftrace_iterator *iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003310
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003311 if (unlikely(ftrace_disabled))
3312 return -ENODEV;
3313
Jiri Olsa50e18b92012-04-25 10:23:39 +02003314 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3315 if (iter) {
3316 iter->pg = ftrace_pages_start;
3317 iter->ops = &global_ops;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003318 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003319
Jiri Olsa50e18b92012-04-25 10:23:39 +02003320 return iter ? 0 : -ENOMEM;
Steven Rostedt5072c592008-05-12 21:20:43 +02003321}
3322
Steven Rostedt647bcd02011-05-03 14:39:21 -04003323static int
3324ftrace_enabled_open(struct inode *inode, struct file *file)
3325{
3326 struct ftrace_iterator *iter;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003327
Jiri Olsa50e18b92012-04-25 10:23:39 +02003328 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3329 if (iter) {
3330 iter->pg = ftrace_pages_start;
3331 iter->flags = FTRACE_ITER_ENABLED;
3332 iter->ops = &global_ops;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003333 }
3334
Jiri Olsa50e18b92012-04-25 10:23:39 +02003335 return iter ? 0 : -ENOMEM;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003336}
3337
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003338/**
3339 * ftrace_regex_open - initialize function tracer filter files
3340 * @ops: The ftrace_ops that hold the hash filters
3341 * @flag: The type of filter to process
3342 * @inode: The inode, usually passed in to your open routine
3343 * @file: The file, usually passed in to your open routine
3344 *
3345 * ftrace_regex_open() initializes the filter files for the
3346 * @ops. Depending on @flag it may process the filter hash or
3347 * the notrace hash of @ops. With this called from the open
3348 * routine, you can use ftrace_filter_write() for the write
3349 * routine if @flag has FTRACE_ITER_FILTER set, or
3350 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05003351 * tracing_lseek() should be used as the lseek routine, and
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003352 * release must call ftrace_regex_release().
3353 */
3354int
Steven Rostedtf45948e2011-05-02 12:29:25 -04003355ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003356 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003357{
3358 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003359 struct ftrace_hash *hash;
Steven Rostedt5072c592008-05-12 21:20:43 +02003360 int ret = 0;
3361
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003362 ftrace_ops_init(ops);
3363
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003364 if (unlikely(ftrace_disabled))
3365 return -ENODEV;
3366
Steven Rostedt5072c592008-05-12 21:20:43 +02003367 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3368 if (!iter)
3369 return -ENOMEM;
3370
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003371 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
3372 kfree(iter);
3373 return -ENOMEM;
3374 }
3375
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003376 iter->ops = ops;
3377 iter->flags = flag;
3378
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003379 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003380
Steven Rostedtf45948e2011-05-02 12:29:25 -04003381 if (flag & FTRACE_ITER_NOTRACE)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003382 hash = ops->func_hash->notrace_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003383 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003384 hash = ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003385
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003386 if (file->f_mode & FMODE_WRITE) {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003387 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
3388
3389 if (file->f_flags & O_TRUNC)
3390 iter->hash = alloc_ftrace_hash(size_bits);
3391 else
3392 iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash);
3393
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003394 if (!iter->hash) {
3395 trace_parser_put(&iter->parser);
3396 kfree(iter);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003397 ret = -ENOMEM;
3398 goto out_unlock;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003399 }
3400 }
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003401
Steven Rostedt5072c592008-05-12 21:20:43 +02003402 if (file->f_mode & FMODE_READ) {
3403 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02003404
3405 ret = seq_open(file, &show_ftrace_seq_ops);
3406 if (!ret) {
3407 struct seq_file *m = file->private_data;
3408 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08003409 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003410 /* Failed */
3411 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08003412 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003413 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08003414 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003415 } else
3416 file->private_data = iter;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003417
3418 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003419 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003420
3421 return ret;
3422}
3423
Steven Rostedt41c52c02008-05-22 11:46:33 -04003424static int
3425ftrace_filter_open(struct inode *inode, struct file *file)
3426{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003427 struct ftrace_ops *ops = inode->i_private;
3428
3429 return ftrace_regex_open(ops,
Steven Rostedt69a30832011-12-19 15:21:16 -05003430 FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH,
3431 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003432}
3433
3434static int
3435ftrace_notrace_open(struct inode *inode, struct file *file)
3436{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003437 struct ftrace_ops *ops = inode->i_private;
3438
3439 return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003440 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003441}
3442
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003443/* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */
3444struct ftrace_glob {
3445 char *search;
3446 unsigned len;
3447 int type;
3448};
3449
3450static int ftrace_match(char *str, struct ftrace_glob *g)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003451{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003452 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08003453 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003454
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003455 switch (g->type) {
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003456 case MATCH_FULL:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003457 if (strcmp(str, g->search) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003458 matched = 1;
3459 break;
3460 case MATCH_FRONT_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003461 if (strncmp(str, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003462 matched = 1;
3463 break;
3464 case MATCH_MIDDLE_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003465 if (strstr(str, g->search))
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003466 matched = 1;
3467 break;
3468 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08003469 slen = strlen(str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003470 if (slen >= g->len &&
3471 memcmp(str + slen - g->len, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003472 matched = 1;
3473 break;
3474 }
3475
3476 return matched;
3477}
3478
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003479static int
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003480enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int clear_filter)
Steven Rostedt996e87b2011-04-26 16:11:03 -04003481{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003482 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003483 int ret = 0;
3484
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003485 entry = ftrace_lookup_ip(hash, rec->ip);
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003486 if (clear_filter) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003487 /* Do nothing if it doesn't exist */
3488 if (!entry)
3489 return 0;
3490
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003491 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003492 } else {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003493 /* Do nothing if it exists */
3494 if (entry)
3495 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003496
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003497 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003498 }
3499 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04003500}
3501
Steven Rostedt64e7c442009-02-13 17:08:48 -05003502static int
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003503ftrace_match_record(struct dyn_ftrace *rec, struct ftrace_glob *func_g,
3504 struct ftrace_glob *mod_g, int exclude_mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003505{
3506 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003507 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003508
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003509 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
3510
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003511 if (mod_g) {
3512 int mod_matches = (modname) ? ftrace_match(modname, mod_g) : 0;
3513
3514 /* blank module name to match all modules */
3515 if (!mod_g->len) {
3516 /* blank module globbing: modname xor exclude_mod */
3517 if ((!exclude_mod) != (!modname))
3518 goto func_match;
3519 return 0;
3520 }
3521
3522 /* not matching the module */
3523 if (!modname || !mod_matches) {
3524 if (exclude_mod)
3525 goto func_match;
3526 else
3527 return 0;
3528 }
3529
3530 if (mod_matches && exclude_mod)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003531 return 0;
3532
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003533func_match:
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003534 /* blank search means to match all funcs in the mod */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003535 if (!func_g->len)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003536 return 1;
3537 }
3538
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003539 return ftrace_match(str, func_g);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003540}
3541
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003542static int
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003543match_records(struct ftrace_hash *hash, char *func, int len, char *mod)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003544{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003545 struct ftrace_page *pg;
3546 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003547 struct ftrace_glob func_g = { .type = MATCH_FULL };
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003548 struct ftrace_glob mod_g = { .type = MATCH_FULL };
3549 struct ftrace_glob *mod_match = (mod) ? &mod_g : NULL;
3550 int exclude_mod = 0;
Li Zefan311d16d2009-12-08 11:15:11 +08003551 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003552 int ret;
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003553 int clear_filter;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003554
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003555 if (func) {
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003556 func_g.type = filter_parse_regex(func, len, &func_g.search,
3557 &clear_filter);
3558 func_g.len = strlen(func_g.search);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003559 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003560
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003561 if (mod) {
3562 mod_g.type = filter_parse_regex(mod, strlen(mod),
3563 &mod_g.search, &exclude_mod);
3564 mod_g.len = strlen(mod_g.search);
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003565 }
3566
Steven Rostedt52baf112009-02-14 01:15:39 -05003567 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003568
3569 if (unlikely(ftrace_disabled))
3570 goto out_unlock;
3571
Steven Rostedt265c8312009-02-13 12:43:56 -05003572 do_for_each_ftrace_rec(pg, rec) {
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003573 if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) {
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003574 ret = enter_record(hash, rec, clear_filter);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003575 if (ret < 0) {
3576 found = ret;
3577 goto out_unlock;
3578 }
Li Zefan311d16d2009-12-08 11:15:11 +08003579 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05003580 }
3581 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003582 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05003583 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08003584
3585 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02003586}
3587
Steven Rostedt64e7c442009-02-13 17:08:48 -05003588static int
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003589ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003590{
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003591 return match_records(hash, buff, len, NULL);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003592}
3593
Steven Rostedt64e7c442009-02-13 17:08:48 -05003594
Steven Rostedtf6180772009-02-14 00:40:25 -05003595/*
3596 * We register the module command as a template to show others how
3597 * to register the a command as well.
3598 */
3599
3600static int
Steven Rostedt43dd61c2011-07-07 11:09:22 -04003601ftrace_mod_callback(struct ftrace_hash *hash,
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003602 char *func, char *cmd, char *module, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05003603{
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03003604 int ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05003605
3606 /*
3607 * cmd == 'mod' because we only registered this func
3608 * for the 'mod' ftrace_func_command.
3609 * But if you register one func with multiple commands,
3610 * you can tell which command was used by the cmd
3611 * parameter.
3612 */
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003613 ret = match_records(hash, func, strlen(func), module);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003614 if (!ret)
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03003615 return -EINVAL;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003616 if (ret < 0)
3617 return ret;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003618 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05003619}
3620
3621static struct ftrace_func_command ftrace_mod_cmd = {
3622 .name = "mod",
3623 .func = ftrace_mod_callback,
3624};
3625
3626static int __init ftrace_mod_cmd_init(void)
3627{
3628 return register_ftrace_command(&ftrace_mod_cmd);
3629}
Steven Rostedt6f415672012-10-05 12:13:07 -04003630core_initcall(ftrace_mod_cmd_init);
Steven Rostedtf6180772009-02-14 00:40:25 -05003631
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04003632static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04003633 struct ftrace_ops *op, struct pt_regs *pt_regs)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003634{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003635 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003636 struct hlist_head *hhd;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003637 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003638
3639 key = hash_long(ip, FTRACE_HASH_BITS);
3640
3641 hhd = &ftrace_func_hash[key];
3642
3643 if (hlist_empty(hhd))
3644 return;
3645
3646 /*
3647 * Disable preemption for these calls to prevent a RCU grace
3648 * period. This syncs the hash iteration and freeing of items
3649 * on the hash. rcu_read_lock is too dangerous here.
3650 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04003651 preempt_disable_notrace();
Steven Rostedt1bb539c2013-05-28 14:38:43 -04003652 hlist_for_each_entry_rcu_notrace(entry, hhd, node) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003653 if (entry->ip == ip)
3654 entry->ops->func(ip, parent_ip, &entry->data);
3655 }
Steven Rostedt5168ae52010-06-03 09:36:50 -04003656 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05003657}
3658
Steven Rostedtb6887d72009-02-17 12:32:04 -05003659static struct ftrace_ops trace_probe_ops __read_mostly =
Steven Rostedt59df055f2009-02-14 15:29:06 -05003660{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04003661 .func = function_trace_probe_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003662 .flags = FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003663 INIT_OPS_HASH(trace_probe_ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003664};
3665
Steven Rostedtb6887d72009-02-17 12:32:04 -05003666static int ftrace_probe_registered;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003667
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003668static void __enable_ftrace_function_probe(struct ftrace_ops_hash *old_hash)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003669{
Steven Rostedtb8489142011-05-04 09:27:52 -04003670 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003671 int i;
3672
Steven Rostedt (Red Hat)19dd6032013-05-09 19:37:36 -04003673 if (ftrace_probe_registered) {
3674 /* still need to update the function call sites */
3675 if (ftrace_enabled)
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003676 ftrace_run_modify_code(&trace_probe_ops, FTRACE_UPDATE_CALLS,
3677 old_hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003678 return;
Steven Rostedt (Red Hat)19dd6032013-05-09 19:37:36 -04003679 }
Steven Rostedt59df055f2009-02-14 15:29:06 -05003680
3681 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3682 struct hlist_head *hhd = &ftrace_func_hash[i];
3683 if (hhd->first)
3684 break;
3685 }
3686 /* Nothing registered? */
3687 if (i == FTRACE_FUNC_HASHSIZE)
3688 return;
3689
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05003690 ret = ftrace_startup(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04003691
Steven Rostedtb6887d72009-02-17 12:32:04 -05003692 ftrace_probe_registered = 1;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003693}
3694
Steven Rostedtb6887d72009-02-17 12:32:04 -05003695static void __disable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003696{
3697 int i;
3698
Steven Rostedtb6887d72009-02-17 12:32:04 -05003699 if (!ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003700 return;
3701
3702 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3703 struct hlist_head *hhd = &ftrace_func_hash[i];
3704 if (hhd->first)
3705 return;
3706 }
3707
3708 /* no more funcs left */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05003709 ftrace_shutdown(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04003710
Steven Rostedtb6887d72009-02-17 12:32:04 -05003711 ftrace_probe_registered = 0;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003712}
3713
3714
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003715static void ftrace_free_entry(struct ftrace_func_probe *entry)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003716{
Steven Rostedt59df055f2009-02-14 15:29:06 -05003717 if (entry->ops->free)
Steven Rostedt (Red Hat)e67efb92013-03-12 15:07:59 -04003718 entry->ops->free(entry->ops, entry->ip, &entry->data);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003719 kfree(entry);
3720}
3721
Steven Rostedt59df055f2009-02-14 15:29:06 -05003722int
Steven Rostedtb6887d72009-02-17 12:32:04 -05003723register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003724 void *data)
3725{
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003726 struct ftrace_ops_hash old_hash_ops;
Steven Rostedtb6887d72009-02-17 12:32:04 -05003727 struct ftrace_func_probe *entry;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003728 struct ftrace_glob func_g;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003729 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003730 struct ftrace_hash *old_hash = *orig_hash;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003731 struct ftrace_hash *hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003732 struct ftrace_page *pg;
3733 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003734 int not;
Steven Rostedt6a24a242009-02-17 11:20:26 -05003735 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003736 int count = 0;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003737 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003738
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003739 func_g.type = filter_parse_regex(glob, strlen(glob),
3740 &func_g.search, &not);
3741 func_g.len = strlen(func_g.search);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003742
Steven Rostedtb6887d72009-02-17 12:32:04 -05003743 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003744 if (WARN_ON(not))
3745 return -EINVAL;
3746
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003747 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003748
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003749 old_hash_ops.filter_hash = old_hash;
3750 /* Probes only have filters */
3751 old_hash_ops.notrace_hash = NULL;
3752
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003753 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003754 if (!hash) {
3755 count = -ENOMEM;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003756 goto out;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003757 }
3758
3759 if (unlikely(ftrace_disabled)) {
3760 count = -ENODEV;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003761 goto out;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003762 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04003763
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003764 mutex_lock(&ftrace_lock);
3765
Steven Rostedt59df055f2009-02-14 15:29:06 -05003766 do_for_each_ftrace_rec(pg, rec) {
3767
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003768 if (!ftrace_match_record(rec, &func_g, NULL, 0))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003769 continue;
3770
3771 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
3772 if (!entry) {
Steven Rostedtb6887d72009-02-17 12:32:04 -05003773 /* If we did not process any, then return error */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003774 if (!count)
3775 count = -ENOMEM;
3776 goto out_unlock;
3777 }
3778
3779 count++;
3780
3781 entry->data = data;
3782
3783 /*
3784 * The caller might want to do something special
3785 * for each function we find. We call the callback
3786 * to give the caller an opportunity to do so.
3787 */
Steven Rostedt (Red Hat)e67efb92013-03-12 15:07:59 -04003788 if (ops->init) {
3789 if (ops->init(ops, rec->ip, &entry->data) < 0) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003790 /* caller does not like this func */
3791 kfree(entry);
3792 continue;
3793 }
3794 }
3795
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003796 ret = enter_record(hash, rec, 0);
3797 if (ret < 0) {
3798 kfree(entry);
3799 count = ret;
3800 goto out_unlock;
3801 }
3802
Steven Rostedt59df055f2009-02-14 15:29:06 -05003803 entry->ops = ops;
3804 entry->ip = rec->ip;
3805
3806 key = hash_long(entry->ip, FTRACE_HASH_BITS);
3807 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
3808
3809 } while_for_each_ftrace_rec();
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003810
3811 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003812
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003813 __enable_ftrace_function_probe(&old_hash_ops);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003814
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003815 if (!ret)
3816 free_ftrace_hash_rcu(old_hash);
3817 else
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003818 count = ret;
3819
Steven Rostedt59df055f2009-02-14 15:29:06 -05003820 out_unlock:
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003821 mutex_unlock(&ftrace_lock);
3822 out:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003823 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003824 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003825
3826 return count;
3827}
3828
3829enum {
Steven Rostedtb6887d72009-02-17 12:32:04 -05003830 PROBE_TEST_FUNC = 1,
3831 PROBE_TEST_DATA = 2
Steven Rostedt59df055f2009-02-14 15:29:06 -05003832};
3833
3834static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003835__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003836 void *data, int flags)
3837{
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003838 struct ftrace_func_entry *rec_entry;
Steven Rostedtb6887d72009-02-17 12:32:04 -05003839 struct ftrace_func_probe *entry;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003840 struct ftrace_func_probe *p;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003841 struct ftrace_glob func_g;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003842 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003843 struct ftrace_hash *old_hash = *orig_hash;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003844 struct list_head free_list;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003845 struct ftrace_hash *hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003846 struct hlist_node *tmp;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003847 char str[KSYM_SYMBOL_LEN];
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003848 int i, ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003849
Atsushi Tsujib36461d2009-09-15 19:06:30 +09003850 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003851 func_g.search = NULL;
Atsushi Tsujib36461d2009-09-15 19:06:30 +09003852 else if (glob) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003853 int not;
3854
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003855 func_g.type = filter_parse_regex(glob, strlen(glob),
3856 &func_g.search, &not);
3857 func_g.len = strlen(func_g.search);
3858 func_g.search = glob;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003859
Steven Rostedtb6887d72009-02-17 12:32:04 -05003860 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003861 if (WARN_ON(not))
3862 return;
3863 }
3864
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003865 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003866
3867 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3868 if (!hash)
3869 /* Hmm, should report this somehow */
3870 goto out_unlock;
3871
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003872 INIT_LIST_HEAD(&free_list);
3873
Steven Rostedt59df055f2009-02-14 15:29:06 -05003874 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3875 struct hlist_head *hhd = &ftrace_func_hash[i];
3876
Sasha Levinb67bfe02013-02-27 17:06:00 -08003877 hlist_for_each_entry_safe(entry, tmp, hhd, node) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003878
3879 /* break up if statements for readability */
Steven Rostedtb6887d72009-02-17 12:32:04 -05003880 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003881 continue;
3882
Steven Rostedtb6887d72009-02-17 12:32:04 -05003883 if ((flags & PROBE_TEST_DATA) && entry->data != data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003884 continue;
3885
3886 /* do this last, since it is the most expensive */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003887 if (func_g.search) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003888 kallsyms_lookup(entry->ip, NULL, NULL,
3889 NULL, str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003890 if (!ftrace_match(str, &func_g))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003891 continue;
3892 }
3893
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003894 rec_entry = ftrace_lookup_ip(hash, entry->ip);
3895 /* It is possible more than one entry had this ip */
3896 if (rec_entry)
3897 free_hash_entry(hash, rec_entry);
3898
Steven Rostedt (Red Hat)740466b2013-03-13 11:15:19 -04003899 hlist_del_rcu(&entry->node);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003900 list_add(&entry->free_list, &free_list);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003901 }
3902 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003903 mutex_lock(&ftrace_lock);
Steven Rostedtb6887d72009-02-17 12:32:04 -05003904 __disable_ftrace_function_probe();
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003905 /*
3906 * Remove after the disable is called. Otherwise, if the last
3907 * probe is removed, a null hash means *all enabled*.
3908 */
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003909 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003910 synchronize_sched();
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003911 if (!ret)
3912 free_ftrace_hash_rcu(old_hash);
3913
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003914 list_for_each_entry_safe(entry, p, &free_list, free_list) {
3915 list_del(&entry->free_list);
3916 ftrace_free_entry(entry);
3917 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003918 mutex_unlock(&ftrace_lock);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003919
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003920 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003921 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003922 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003923}
3924
3925void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003926unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003927 void *data)
3928{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003929 __unregister_ftrace_function_probe(glob, ops, data,
3930 PROBE_TEST_FUNC | PROBE_TEST_DATA);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003931}
3932
3933void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003934unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003935{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003936 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003937}
3938
Steven Rostedtb6887d72009-02-17 12:32:04 -05003939void unregister_ftrace_function_probe_all(char *glob)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003940{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003941 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003942}
3943
Steven Rostedtf6180772009-02-14 00:40:25 -05003944static LIST_HEAD(ftrace_commands);
3945static DEFINE_MUTEX(ftrace_cmd_mutex);
3946
Tom Zanussi38de93a2013-10-24 08:34:18 -05003947/*
3948 * Currently we only register ftrace commands from __init, so mark this
3949 * __init too.
3950 */
3951__init int register_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05003952{
3953 struct ftrace_func_command *p;
3954 int ret = 0;
3955
3956 mutex_lock(&ftrace_cmd_mutex);
3957 list_for_each_entry(p, &ftrace_commands, list) {
3958 if (strcmp(cmd->name, p->name) == 0) {
3959 ret = -EBUSY;
3960 goto out_unlock;
3961 }
3962 }
3963 list_add(&cmd->list, &ftrace_commands);
3964 out_unlock:
3965 mutex_unlock(&ftrace_cmd_mutex);
3966
3967 return ret;
3968}
3969
Tom Zanussi38de93a2013-10-24 08:34:18 -05003970/*
3971 * Currently we only unregister ftrace commands from __init, so mark
3972 * this __init too.
3973 */
3974__init int unregister_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05003975{
3976 struct ftrace_func_command *p, *n;
3977 int ret = -ENODEV;
3978
3979 mutex_lock(&ftrace_cmd_mutex);
3980 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
3981 if (strcmp(cmd->name, p->name) == 0) {
3982 ret = 0;
3983 list_del_init(&p->list);
3984 goto out_unlock;
3985 }
3986 }
3987 out_unlock:
3988 mutex_unlock(&ftrace_cmd_mutex);
3989
3990 return ret;
3991}
3992
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003993static int ftrace_process_regex(struct ftrace_hash *hash,
3994 char *buff, int len, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003995{
Steven Rostedtf6180772009-02-14 00:40:25 -05003996 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05003997 struct ftrace_func_command *p;
GuoWen Li0aff1c02011-06-01 19:18:47 +08003998 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003999
4000 func = strsep(&next, ":");
4001
4002 if (!next) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004003 ret = ftrace_match_records(hash, func, len);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004004 if (!ret)
4005 ret = -EINVAL;
4006 if (ret < 0)
4007 return ret;
4008 return 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004009 }
4010
Steven Rostedtf6180772009-02-14 00:40:25 -05004011 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05004012
4013 command = strsep(&next, ":");
4014
Steven Rostedtf6180772009-02-14 00:40:25 -05004015 mutex_lock(&ftrace_cmd_mutex);
4016 list_for_each_entry(p, &ftrace_commands, list) {
4017 if (strcmp(p->name, command) == 0) {
Steven Rostedt43dd61c2011-07-07 11:09:22 -04004018 ret = p->func(hash, func, command, next, enable);
Steven Rostedtf6180772009-02-14 00:40:25 -05004019 goto out_unlock;
4020 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05004021 }
Steven Rostedtf6180772009-02-14 00:40:25 -05004022 out_unlock:
4023 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05004024
Steven Rostedtf6180772009-02-14 00:40:25 -05004025 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004026}
4027
Ingo Molnare309b412008-05-12 21:20:51 +02004028static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004029ftrace_regex_write(struct file *file, const char __user *ubuf,
4030 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02004031{
4032 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004033 struct trace_parser *parser;
4034 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02004035
Li Zefan4ba79782009-09-22 13:52:20 +08004036 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02004037 return 0;
4038
Steven Rostedt5072c592008-05-12 21:20:43 +02004039 if (file->f_mode & FMODE_READ) {
4040 struct seq_file *m = file->private_data;
4041 iter = m->private;
4042 } else
4043 iter = file->private_data;
4044
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004045 if (unlikely(ftrace_disabled))
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004046 return -ENODEV;
4047
4048 /* iter->hash is a local copy, so we don't need regex_lock */
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004049
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004050 parser = &iter->parser;
4051 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02004052
Li Zefan4ba79782009-09-22 13:52:20 +08004053 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004054 !trace_parser_cont(parser)) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004055 ret = ftrace_process_regex(iter->hash, parser->buffer,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004056 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08004057 trace_parser_clear(parser);
Steven Rostedt (Red Hat)7c088b52013-05-09 11:35:12 -04004058 if (ret < 0)
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004059 goto out;
Steven Rostedt5072c592008-05-12 21:20:43 +02004060 }
4061
Steven Rostedt5072c592008-05-12 21:20:43 +02004062 ret = read;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004063 out:
Steven Rostedt5072c592008-05-12 21:20:43 +02004064 return ret;
4065}
4066
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004067ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004068ftrace_filter_write(struct file *file, const char __user *ubuf,
4069 size_t cnt, loff_t *ppos)
4070{
4071 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
4072}
4073
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004074ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004075ftrace_notrace_write(struct file *file, const char __user *ubuf,
4076 size_t cnt, loff_t *ppos)
4077{
4078 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
4079}
4080
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004081static int
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004082ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
4083{
4084 struct ftrace_func_entry *entry;
4085
4086 if (!ftrace_location(ip))
4087 return -EINVAL;
4088
4089 if (remove) {
4090 entry = ftrace_lookup_ip(hash, ip);
4091 if (!entry)
4092 return -ENOENT;
4093 free_hash_entry(hash, entry);
4094 return 0;
4095 }
4096
4097 return add_hash_entry(hash, ip);
4098}
4099
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04004100static void ftrace_ops_update_code(struct ftrace_ops *ops,
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004101 struct ftrace_ops_hash *old_hash)
Steven Rostedt (Red Hat)1c80c432013-07-25 20:22:00 -04004102{
Steven Rostedt (Red Hat)8f86f832015-01-13 11:20:43 -05004103 struct ftrace_ops *op;
4104
4105 if (!ftrace_enabled)
4106 return;
4107
4108 if (ops->flags & FTRACE_OPS_FL_ENABLED) {
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04004109 ftrace_run_modify_code(ops, FTRACE_UPDATE_CALLS, old_hash);
Steven Rostedt (Red Hat)8f86f832015-01-13 11:20:43 -05004110 return;
4111 }
4112
4113 /*
4114 * If this is the shared global_ops filter, then we need to
4115 * check if there is another ops that shares it, is enabled.
4116 * If so, we still need to run the modify code.
4117 */
4118 if (ops->func_hash != &global_ops.local_hash)
4119 return;
4120
4121 do_for_each_ftrace_op(op, ftrace_ops_list) {
4122 if (op->func_hash == &global_ops.local_hash &&
4123 op->flags & FTRACE_OPS_FL_ENABLED) {
4124 ftrace_run_modify_code(op, FTRACE_UPDATE_CALLS, old_hash);
4125 /* Only need to do this once */
4126 return;
4127 }
4128 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)1c80c432013-07-25 20:22:00 -04004129}
4130
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004131static int
4132ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
4133 unsigned long ip, int remove, int reset, int enable)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004134{
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004135 struct ftrace_hash **orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004136 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004137 struct ftrace_hash *old_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004138 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004139 int ret;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004140
Steven Rostedt41c52c02008-05-22 11:46:33 -04004141 if (unlikely(ftrace_disabled))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004142 return -ENODEV;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004143
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004144 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004145
Steven Rostedtf45948e2011-05-02 12:29:25 -04004146 if (enable)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004147 orig_hash = &ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004148 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004149 orig_hash = &ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004150
Wang Nanb972cc52014-07-15 08:40:20 +08004151 if (reset)
4152 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4153 else
4154 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
4155
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004156 if (!hash) {
4157 ret = -ENOMEM;
4158 goto out_regex_unlock;
4159 }
Steven Rostedtf45948e2011-05-02 12:29:25 -04004160
Jiri Olsaac483c42012-01-02 10:04:14 +01004161 if (buf && !ftrace_match_records(hash, buf, len)) {
4162 ret = -EINVAL;
4163 goto out_regex_unlock;
4164 }
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004165 if (ip) {
4166 ret = ftrace_match_addr(hash, ip, remove);
4167 if (ret < 0)
4168 goto out_regex_unlock;
4169 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004170
4171 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004172 old_hash = *orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004173 old_hash_ops.filter_hash = ops->func_hash->filter_hash;
4174 old_hash_ops.notrace_hash = ops->func_hash->notrace_hash;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04004175 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004176 if (!ret) {
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004177 ftrace_ops_update_code(ops, &old_hash_ops);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004178 free_ftrace_hash_rcu(old_hash);
4179 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004180 mutex_unlock(&ftrace_lock);
4181
Jiri Olsaac483c42012-01-02 10:04:14 +01004182 out_regex_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004183 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004184
4185 free_ftrace_hash(hash);
4186 return ret;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004187}
4188
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004189static int
4190ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove,
4191 int reset, int enable)
4192{
4193 return ftrace_set_hash(ops, 0, 0, ip, remove, reset, enable);
4194}
4195
4196/**
4197 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
4198 * @ops - the ops to set the filter with
4199 * @ip - the address to add to or remove from the filter.
4200 * @remove - non zero to remove the ip from the filter
4201 * @reset - non zero to reset all filters before applying this filter.
4202 *
4203 * Filters denote which functions should be enabled when tracing is enabled
4204 * If @ip is NULL, it failes to update filter.
4205 */
4206int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
4207 int remove, int reset)
4208{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004209 ftrace_ops_init(ops);
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004210 return ftrace_set_addr(ops, ip, remove, reset, 1);
4211}
4212EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
4213
4214static int
4215ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
4216 int reset, int enable)
4217{
4218 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
4219}
4220
Steven Rostedt77a2b372008-05-12 21:20:45 +02004221/**
4222 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004223 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02004224 * @buf - the string that holds the function filter text.
4225 * @len - the length of the string.
4226 * @reset - non zero to reset all filters before applying this filter.
4227 *
4228 * Filters denote which functions should be enabled when tracing is enabled.
4229 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4230 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004231int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004232 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02004233{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004234 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004235 return ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04004236}
Steven Rostedt936e0742011-05-05 22:54:01 -04004237EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004238
Steven Rostedt41c52c02008-05-22 11:46:33 -04004239/**
4240 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004241 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04004242 * @buf - the string that holds the function notrace text.
4243 * @len - the length of the string.
4244 * @reset - non zero to reset all filters before applying this filter.
4245 *
4246 * Notrace Filters denote which functions should not be enabled when tracing
4247 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4248 * for tracing.
4249 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004250int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004251 int len, int reset)
4252{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004253 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004254 return ftrace_set_regex(ops, buf, len, reset, 0);
Steven Rostedt936e0742011-05-05 22:54:01 -04004255}
4256EXPORT_SYMBOL_GPL(ftrace_set_notrace);
4257/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004258 * ftrace_set_global_filter - set a function to filter on with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004259 * @buf - the string that holds the function filter text.
4260 * @len - the length of the string.
4261 * @reset - non zero to reset all filters before applying this filter.
4262 *
4263 * Filters denote which functions should be enabled when tracing is enabled.
4264 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4265 */
4266void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
4267{
4268 ftrace_set_regex(&global_ops, buf, len, reset, 1);
4269}
4270EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
4271
4272/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004273 * ftrace_set_global_notrace - set a function to not trace with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004274 * @buf - the string that holds the function notrace text.
4275 * @len - the length of the string.
4276 * @reset - non zero to reset all filters before applying this filter.
4277 *
4278 * Notrace Filters denote which functions should not be enabled when tracing
4279 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4280 * for tracing.
4281 */
4282void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004283{
Steven Rostedtf45948e2011-05-02 12:29:25 -04004284 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004285}
Steven Rostedt936e0742011-05-05 22:54:01 -04004286EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004287
Steven Rostedt2af15d62009-05-28 13:37:24 -04004288/*
4289 * command line interface to allow users to set filters on boot up.
4290 */
4291#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
4292static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4293static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
4294
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004295/* Used by function selftest to not test if filter is set */
4296bool ftrace_filter_param __initdata;
4297
Steven Rostedt2af15d62009-05-28 13:37:24 -04004298static int __init set_ftrace_notrace(char *str)
4299{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004300 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004301 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004302 return 1;
4303}
4304__setup("ftrace_notrace=", set_ftrace_notrace);
4305
4306static int __init set_ftrace_filter(char *str)
4307{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004308 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004309 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004310 return 1;
4311}
4312__setup("ftrace_filter=", set_ftrace_filter);
4313
Stefan Assmann369bc182009-10-12 22:17:21 +02004314#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08004315static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004316static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004317static int ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer);
Steven Rostedt801c29f2010-03-05 20:02:19 -05004318
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04004319static unsigned long save_global_trampoline;
4320static unsigned long save_global_flags;
4321
Stefan Assmann369bc182009-10-12 22:17:21 +02004322static int __init set_graph_function(char *str)
4323{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02004324 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02004325 return 1;
4326}
4327__setup("ftrace_graph_filter=", set_graph_function);
4328
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004329static int __init set_graph_notrace_function(char *str)
4330{
4331 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
4332 return 1;
4333}
4334__setup("ftrace_graph_notrace=", set_graph_notrace_function);
4335
4336static void __init set_ftrace_early_graph(char *buf, int enable)
Stefan Assmann369bc182009-10-12 22:17:21 +02004337{
4338 int ret;
4339 char *func;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004340 unsigned long *table = ftrace_graph_funcs;
4341 int *count = &ftrace_graph_count;
4342
4343 if (!enable) {
4344 table = ftrace_graph_notrace_funcs;
4345 count = &ftrace_graph_notrace_count;
4346 }
Stefan Assmann369bc182009-10-12 22:17:21 +02004347
4348 while (buf) {
4349 func = strsep(&buf, ",");
4350 /* we allow only one expression at a time */
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004351 ret = ftrace_set_func(table, count, FTRACE_GRAPH_MAX_FUNCS, func);
Stefan Assmann369bc182009-10-12 22:17:21 +02004352 if (ret)
4353 printk(KERN_DEBUG "ftrace: function %s not "
4354 "traceable\n", func);
4355 }
4356}
4357#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4358
Steven Rostedt2a85a372011-12-19 21:57:44 -05004359void __init
4360ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04004361{
4362 char *func;
4363
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004364 ftrace_ops_init(ops);
4365
Steven Rostedt2af15d62009-05-28 13:37:24 -04004366 while (buf) {
4367 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04004368 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004369 }
4370}
4371
4372static void __init set_ftrace_early_filters(void)
4373{
4374 if (ftrace_filter_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004375 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004376 if (ftrace_notrace_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004377 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02004378#ifdef CONFIG_FUNCTION_GRAPH_TRACER
4379 if (ftrace_graph_buf[0])
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004380 set_ftrace_early_graph(ftrace_graph_buf, 1);
4381 if (ftrace_graph_notrace_buf[0])
4382 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02004383#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04004384}
4385
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004386int ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02004387{
4388 struct seq_file *m = (struct seq_file *)file->private_data;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004389 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02004390 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004391 struct ftrace_hash **orig_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004392 struct ftrace_hash *old_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004393 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04004394 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004395 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02004396
Steven Rostedt5072c592008-05-12 21:20:43 +02004397 if (file->f_mode & FMODE_READ) {
4398 iter = m->private;
Steven Rostedt5072c592008-05-12 21:20:43 +02004399 seq_release(inode, file);
4400 } else
4401 iter = file->private_data;
4402
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004403 parser = &iter->parser;
4404 if (trace_parser_loaded(parser)) {
4405 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004406 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02004407 }
4408
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004409 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004410
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004411 mutex_lock(&iter->ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004412
Steven Rostedt058e2972011-04-29 22:35:33 -04004413 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04004414 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
4415
4416 if (filter_hash)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004417 orig_hash = &iter->ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04004418 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004419 orig_hash = &iter->ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004420
Steven Rostedt058e2972011-04-29 22:35:33 -04004421 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004422 old_hash = *orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004423 old_hash_ops.filter_hash = iter->ops->func_hash->filter_hash;
4424 old_hash_ops.notrace_hash = iter->ops->func_hash->notrace_hash;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04004425 ret = ftrace_hash_move(iter->ops, filter_hash,
4426 orig_hash, iter->hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004427 if (!ret) {
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004428 ftrace_ops_update_code(iter->ops, &old_hash_ops);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004429 free_ftrace_hash_rcu(old_hash);
4430 }
Steven Rostedt058e2972011-04-29 22:35:33 -04004431 mutex_unlock(&ftrace_lock);
4432 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004433
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004434 mutex_unlock(&iter->ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004435 free_ftrace_hash(iter->hash);
4436 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04004437
Steven Rostedt5072c592008-05-12 21:20:43 +02004438 return 0;
4439}
4440
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004441static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02004442 .open = ftrace_avail_open,
4443 .read = seq_read,
4444 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08004445 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02004446};
4447
Steven Rostedt647bcd02011-05-03 14:39:21 -04004448static const struct file_operations ftrace_enabled_fops = {
4449 .open = ftrace_enabled_open,
4450 .read = seq_read,
4451 .llseek = seq_lseek,
4452 .release = seq_release_private,
4453};
4454
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004455static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02004456 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08004457 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02004458 .write = ftrace_filter_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004459 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004460 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02004461};
4462
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004463static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04004464 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08004465 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04004466 .write = ftrace_notrace_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004467 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004468 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04004469};
4470
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004471#ifdef CONFIG_FUNCTION_GRAPH_TRACER
4472
4473static DEFINE_MUTEX(graph_lock);
4474
4475int ftrace_graph_count;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004476int ftrace_graph_notrace_count;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004477unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004478unsigned long ftrace_graph_notrace_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004479
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004480struct ftrace_graph_data {
4481 unsigned long *table;
4482 size_t size;
4483 int *count;
4484 const struct seq_operations *seq_ops;
4485};
4486
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004487static void *
Li Zefan85951842009-06-24 09:54:00 +08004488__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004489{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004490 struct ftrace_graph_data *fgd = m->private;
4491
4492 if (*pos >= *fgd->count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004493 return NULL;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004494 return &fgd->table[*pos];
Li Zefan85951842009-06-24 09:54:00 +08004495}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004496
Li Zefan85951842009-06-24 09:54:00 +08004497static void *
4498g_next(struct seq_file *m, void *v, loff_t *pos)
4499{
4500 (*pos)++;
4501 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004502}
4503
4504static void *g_start(struct seq_file *m, loff_t *pos)
4505{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004506 struct ftrace_graph_data *fgd = m->private;
4507
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004508 mutex_lock(&graph_lock);
4509
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004510 /* Nothing, tell g_show to print all functions are enabled */
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004511 if (!*fgd->count && !*pos)
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004512 return (void *)1;
4513
Li Zefan85951842009-06-24 09:54:00 +08004514 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004515}
4516
4517static void g_stop(struct seq_file *m, void *p)
4518{
4519 mutex_unlock(&graph_lock);
4520}
4521
4522static int g_show(struct seq_file *m, void *v)
4523{
4524 unsigned long *ptr = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004525
4526 if (!ptr)
4527 return 0;
4528
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004529 if (ptr == (unsigned long *)1) {
Namhyung Kim280d1422014-06-13 01:23:51 +09004530 struct ftrace_graph_data *fgd = m->private;
4531
4532 if (fgd->table == ftrace_graph_funcs)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01004533 seq_puts(m, "#### all functions enabled ####\n");
Namhyung Kim280d1422014-06-13 01:23:51 +09004534 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01004535 seq_puts(m, "#### no functions disabled ####\n");
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004536 return 0;
4537 }
4538
Steven Rostedtb375a112009-09-17 00:05:58 -04004539 seq_printf(m, "%ps\n", (void *)*ptr);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004540
4541 return 0;
4542}
4543
James Morris88e9d342009-09-22 16:43:43 -07004544static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004545 .start = g_start,
4546 .next = g_next,
4547 .stop = g_stop,
4548 .show = g_show,
4549};
4550
4551static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004552__ftrace_graph_open(struct inode *inode, struct file *file,
4553 struct ftrace_graph_data *fgd)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004554{
4555 int ret = 0;
4556
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004557 mutex_lock(&graph_lock);
4558 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04004559 (file->f_flags & O_TRUNC)) {
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004560 *fgd->count = 0;
4561 memset(fgd->table, 0, fgd->size * sizeof(*fgd->table));
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004562 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004563 mutex_unlock(&graph_lock);
4564
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004565 if (file->f_mode & FMODE_READ) {
4566 ret = seq_open(file, fgd->seq_ops);
4567 if (!ret) {
4568 struct seq_file *m = file->private_data;
4569 m->private = fgd;
4570 }
4571 } else
4572 file->private_data = fgd;
Li Zefana4ec5e02009-09-18 14:06:28 +08004573
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004574 return ret;
4575}
4576
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004577static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004578ftrace_graph_open(struct inode *inode, struct file *file)
4579{
4580 struct ftrace_graph_data *fgd;
4581
4582 if (unlikely(ftrace_disabled))
4583 return -ENODEV;
4584
4585 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4586 if (fgd == NULL)
4587 return -ENOMEM;
4588
4589 fgd->table = ftrace_graph_funcs;
4590 fgd->size = FTRACE_GRAPH_MAX_FUNCS;
4591 fgd->count = &ftrace_graph_count;
4592 fgd->seq_ops = &ftrace_graph_seq_ops;
4593
4594 return __ftrace_graph_open(inode, file, fgd);
4595}
4596
4597static int
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004598ftrace_graph_notrace_open(struct inode *inode, struct file *file)
4599{
4600 struct ftrace_graph_data *fgd;
4601
4602 if (unlikely(ftrace_disabled))
4603 return -ENODEV;
4604
4605 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4606 if (fgd == NULL)
4607 return -ENOMEM;
4608
4609 fgd->table = ftrace_graph_notrace_funcs;
4610 fgd->size = FTRACE_GRAPH_MAX_FUNCS;
4611 fgd->count = &ftrace_graph_notrace_count;
4612 fgd->seq_ops = &ftrace_graph_seq_ops;
4613
4614 return __ftrace_graph_open(inode, file, fgd);
4615}
4616
4617static int
Li Zefan87827112009-07-23 11:29:11 +08004618ftrace_graph_release(struct inode *inode, struct file *file)
4619{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004620 if (file->f_mode & FMODE_READ) {
4621 struct seq_file *m = file->private_data;
4622
4623 kfree(m->private);
Li Zefan87827112009-07-23 11:29:11 +08004624 seq_release(inode, file);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004625 } else {
4626 kfree(file->private_data);
4627 }
4628
Li Zefan87827112009-07-23 11:29:11 +08004629 return 0;
4630}
4631
4632static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004633ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004634{
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004635 struct ftrace_glob func_g;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004636 struct dyn_ftrace *rec;
4637 struct ftrace_page *pg;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004638 int fail = 1;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004639 int not;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004640 bool exists;
4641 int i;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004642
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004643 /* decode regex */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004644 func_g.type = filter_parse_regex(buffer, strlen(buffer),
4645 &func_g.search, &not);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004646 if (!not && *idx >= size)
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004647 return -EBUSY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004648
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004649 func_g.len = strlen(func_g.search);
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004650
Steven Rostedt52baf112009-02-14 01:15:39 -05004651 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04004652
4653 if (unlikely(ftrace_disabled)) {
4654 mutex_unlock(&ftrace_lock);
4655 return -ENODEV;
4656 }
4657
Steven Rostedt265c8312009-02-13 12:43:56 -05004658 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004659
Dmitry Safonov0b507e12015-09-29 19:46:15 +03004660 if (ftrace_match_record(rec, &func_g, NULL, 0)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004661 /* if it is in the array */
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004662 exists = false;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004663 for (i = 0; i < *idx; i++) {
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004664 if (array[i] == rec->ip) {
4665 exists = true;
Steven Rostedt265c8312009-02-13 12:43:56 -05004666 break;
4667 }
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004668 }
4669
4670 if (!not) {
4671 fail = 0;
4672 if (!exists) {
4673 array[(*idx)++] = rec->ip;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004674 if (*idx >= size)
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004675 goto out;
4676 }
4677 } else {
4678 if (exists) {
4679 array[i] = array[--(*idx)];
4680 array[*idx] = 0;
4681 fail = 0;
4682 }
4683 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004684 }
Steven Rostedt265c8312009-02-13 12:43:56 -05004685 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004686out:
Steven Rostedt52baf112009-02-14 01:15:39 -05004687 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004688
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004689 if (fail)
4690 return -EINVAL;
4691
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004692 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004693}
4694
4695static ssize_t
4696ftrace_graph_write(struct file *file, const char __user *ubuf,
4697 size_t cnt, loff_t *ppos)
4698{
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004699 struct trace_parser parser;
Namhyung Kim6a101082013-10-14 17:24:25 +09004700 ssize_t read, ret = 0;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004701 struct ftrace_graph_data *fgd = file->private_data;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004702
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004703 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004704 return 0;
4705
Namhyung Kim6a101082013-10-14 17:24:25 +09004706 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX))
4707 return -ENOMEM;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004708
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004709 read = trace_get_user(&parser, ubuf, cnt, ppos);
4710
Li Zefan4ba79782009-09-22 13:52:20 +08004711 if (read >= 0 && trace_parser_loaded((&parser))) {
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004712 parser.buffer[parser.idx] = 0;
4713
Namhyung Kim6a101082013-10-14 17:24:25 +09004714 mutex_lock(&graph_lock);
4715
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004716 /* we allow only one expression at a time */
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004717 ret = ftrace_set_func(fgd->table, fgd->count, fgd->size,
4718 parser.buffer);
Namhyung Kim6a101082013-10-14 17:24:25 +09004719
4720 mutex_unlock(&graph_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004721 }
4722
Namhyung Kim6a101082013-10-14 17:24:25 +09004723 if (!ret)
4724 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08004725
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004726 trace_parser_put(&parser);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004727
4728 return ret;
4729}
4730
4731static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08004732 .open = ftrace_graph_open,
4733 .read = seq_read,
4734 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004735 .llseek = tracing_lseek,
Li Zefan87827112009-07-23 11:29:11 +08004736 .release = ftrace_graph_release,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004737};
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004738
4739static const struct file_operations ftrace_graph_notrace_fops = {
4740 .open = ftrace_graph_notrace_open,
4741 .read = seq_read,
4742 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004743 .llseek = tracing_lseek,
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004744 .release = ftrace_graph_release,
4745};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004746#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4747
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05004748void ftrace_create_filter_files(struct ftrace_ops *ops,
4749 struct dentry *parent)
4750{
4751
4752 trace_create_file("set_ftrace_filter", 0644, parent,
4753 ops, &ftrace_filter_fops);
4754
4755 trace_create_file("set_ftrace_notrace", 0644, parent,
4756 ops, &ftrace_notrace_fops);
4757}
4758
4759/*
4760 * The name "destroy_filter_files" is really a misnomer. Although
4761 * in the future, it may actualy delete the files, but this is
4762 * really intended to make sure the ops passed in are disabled
4763 * and that when this function returns, the caller is free to
4764 * free the ops.
4765 *
4766 * The "destroy" name is only to match the "create" name that this
4767 * should be paired with.
4768 */
4769void ftrace_destroy_filter_files(struct ftrace_ops *ops)
4770{
4771 mutex_lock(&ftrace_lock);
4772 if (ops->flags & FTRACE_OPS_FL_ENABLED)
4773 ftrace_shutdown(ops, 0);
4774 ops->flags |= FTRACE_OPS_FL_DELETED;
4775 mutex_unlock(&ftrace_lock);
4776}
4777
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05004778static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02004779{
Steven Rostedt5072c592008-05-12 21:20:43 +02004780
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004781 trace_create_file("available_filter_functions", 0444,
4782 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02004783
Steven Rostedt647bcd02011-05-03 14:39:21 -04004784 trace_create_file("enabled_functions", 0444,
4785 d_tracer, NULL, &ftrace_enabled_fops);
4786
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05004787 ftrace_create_filter_files(&global_ops, d_tracer);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04004788
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004789#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004790 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004791 NULL,
4792 &ftrace_graph_fops);
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004793 trace_create_file("set_graph_notrace", 0444, d_tracer,
4794 NULL,
4795 &ftrace_graph_notrace_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004796#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4797
Steven Rostedt5072c592008-05-12 21:20:43 +02004798 return 0;
4799}
4800
Steven Rostedt9fd49322012-04-24 22:32:06 -04004801static int ftrace_cmp_ips(const void *a, const void *b)
Steven Rostedt68950612011-12-16 17:06:45 -05004802{
Steven Rostedt9fd49322012-04-24 22:32:06 -04004803 const unsigned long *ipa = a;
4804 const unsigned long *ipb = b;
Steven Rostedt68950612011-12-16 17:06:45 -05004805
Steven Rostedt9fd49322012-04-24 22:32:06 -04004806 if (*ipa > *ipb)
4807 return 1;
4808 if (*ipa < *ipb)
4809 return -1;
4810 return 0;
4811}
4812
Jiri Olsa5cb084b2009-10-13 16:33:53 -04004813static int ftrace_process_locs(struct module *mod,
Steven Rostedt31e88902008-11-14 16:21:19 -08004814 unsigned long *start,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004815 unsigned long *end)
4816{
Steven Rostedt706c81f2012-04-24 23:45:26 -04004817 struct ftrace_page *start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004818 struct ftrace_page *pg;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004819 struct dyn_ftrace *rec;
Steven Rostedta7900872011-12-16 16:23:44 -05004820 unsigned long count;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004821 unsigned long *p;
4822 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04004823 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedta7900872011-12-16 16:23:44 -05004824 int ret = -ENOMEM;
4825
4826 count = end - start;
4827
4828 if (!count)
4829 return 0;
4830
Steven Rostedt9fd49322012-04-24 22:32:06 -04004831 sort(start, count, sizeof(*start),
Rasmus Villemoes6db02902015-09-09 23:27:02 +02004832 ftrace_cmp_ips, NULL);
Steven Rostedt9fd49322012-04-24 22:32:06 -04004833
Steven Rostedt706c81f2012-04-24 23:45:26 -04004834 start_pg = ftrace_allocate_pages(count);
4835 if (!start_pg)
Steven Rostedta7900872011-12-16 16:23:44 -05004836 return -ENOMEM;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004837
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004838 mutex_lock(&ftrace_lock);
Steven Rostedta7900872011-12-16 16:23:44 -05004839
Steven Rostedt320823092011-12-16 14:42:37 -05004840 /*
4841 * Core and each module needs their own pages, as
4842 * modules will free them when they are removed.
4843 * Force a new page to be allocated for modules.
4844 */
Steven Rostedta7900872011-12-16 16:23:44 -05004845 if (!mod) {
4846 WARN_ON(ftrace_pages || ftrace_pages_start);
4847 /* First initialization */
Steven Rostedt706c81f2012-04-24 23:45:26 -04004848 ftrace_pages = ftrace_pages_start = start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004849 } else {
Steven Rostedt320823092011-12-16 14:42:37 -05004850 if (!ftrace_pages)
Steven Rostedta7900872011-12-16 16:23:44 -05004851 goto out;
Steven Rostedt320823092011-12-16 14:42:37 -05004852
Steven Rostedta7900872011-12-16 16:23:44 -05004853 if (WARN_ON(ftrace_pages->next)) {
4854 /* Hmm, we have free pages? */
4855 while (ftrace_pages->next)
4856 ftrace_pages = ftrace_pages->next;
Steven Rostedt320823092011-12-16 14:42:37 -05004857 }
Steven Rostedta7900872011-12-16 16:23:44 -05004858
Steven Rostedt706c81f2012-04-24 23:45:26 -04004859 ftrace_pages->next = start_pg;
Steven Rostedt320823092011-12-16 14:42:37 -05004860 }
4861
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004862 p = start;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004863 pg = start_pg;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004864 while (p < end) {
4865 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08004866 /*
4867 * Some architecture linkers will pad between
4868 * the different mcount_loc sections of different
4869 * object files to satisfy alignments.
4870 * Skip any NULL pointers.
4871 */
4872 if (!addr)
4873 continue;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004874
4875 if (pg->index == pg->size) {
4876 /* We should have allocated enough */
4877 if (WARN_ON(!pg->next))
4878 break;
4879 pg = pg->next;
4880 }
4881
4882 rec = &pg->records[pg->index++];
4883 rec->ip = addr;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004884 }
4885
Steven Rostedt706c81f2012-04-24 23:45:26 -04004886 /* We should have used all pages */
4887 WARN_ON(pg->next);
4888
4889 /* Assign the last page to ftrace_pages */
4890 ftrace_pages = pg;
4891
Steven Rostedta4f18ed2011-06-07 09:26:46 -04004892 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04004893 * We only need to disable interrupts on start up
4894 * because we are modifying code that an interrupt
4895 * may execute, and the modification is not atomic.
4896 * But for modules, nothing runs the code we modify
4897 * until we are finished with it, and there's no
4898 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04004899 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04004900 if (!mod)
4901 local_irq_save(flags);
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01004902 ftrace_update_code(mod, start_pg);
Steven Rostedt4376cac2011-06-24 23:28:13 -04004903 if (!mod)
4904 local_irq_restore(flags);
Steven Rostedta7900872011-12-16 16:23:44 -05004905 ret = 0;
4906 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004907 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004908
Steven Rostedta7900872011-12-16 16:23:44 -05004909 return ret;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004910}
4911
Steven Rostedt93eb6772009-04-15 13:24:06 -04004912#ifdef CONFIG_MODULES
Steven Rostedt320823092011-12-16 14:42:37 -05004913
4914#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
4915
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05004916static int referenced_filters(struct dyn_ftrace *rec)
4917{
4918 struct ftrace_ops *ops;
4919 int cnt = 0;
4920
4921 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
4922 if (ops_references_rec(ops, rec))
4923 cnt++;
4924 }
4925
4926 return cnt;
4927}
4928
jolsa@redhat.come7247a12009-10-07 19:00:35 +02004929void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04004930{
4931 struct dyn_ftrace *rec;
Steven Rostedt320823092011-12-16 14:42:37 -05004932 struct ftrace_page **last_pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04004933 struct ftrace_page *pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004934 int order;
Steven Rostedt93eb6772009-04-15 13:24:06 -04004935
Steven Rostedt93eb6772009-04-15 13:24:06 -04004936 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04004937
4938 if (ftrace_disabled)
4939 goto out_unlock;
4940
Steven Rostedt320823092011-12-16 14:42:37 -05004941 /*
4942 * Each module has its own ftrace_pages, remove
4943 * them from the list.
4944 */
4945 last_pg = &ftrace_pages_start;
4946 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
4947 rec = &pg->records[0];
jolsa@redhat.come7247a12009-10-07 19:00:35 +02004948 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04004949 /*
Steven Rostedt320823092011-12-16 14:42:37 -05004950 * As core pages are first, the first
4951 * page should never be a module page.
Steven Rostedt93eb6772009-04-15 13:24:06 -04004952 */
Steven Rostedt320823092011-12-16 14:42:37 -05004953 if (WARN_ON(pg == ftrace_pages_start))
4954 goto out_unlock;
4955
4956 /* Check if we are deleting the last page */
4957 if (pg == ftrace_pages)
4958 ftrace_pages = next_to_ftrace_page(last_pg);
4959
4960 *last_pg = pg->next;
Steven Rostedta7900872011-12-16 16:23:44 -05004961 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
4962 free_pages((unsigned long)pg->records, order);
4963 kfree(pg);
Steven Rostedt320823092011-12-16 14:42:37 -05004964 } else
4965 last_pg = &pg->next;
4966 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04004967 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04004968 mutex_unlock(&ftrace_lock);
4969}
4970
Jessica Yu7dcd1822016-02-16 17:32:33 -05004971void ftrace_module_enable(struct module *mod)
Steven Rostedt (Red Hat)b7ffffb2016-01-07 15:40:01 -05004972{
4973 struct dyn_ftrace *rec;
4974 struct ftrace_page *pg;
4975
4976 mutex_lock(&ftrace_lock);
4977
4978 if (ftrace_disabled)
4979 goto out_unlock;
4980
4981 /*
4982 * If the tracing is enabled, go ahead and enable the record.
4983 *
4984 * The reason not to enable the record immediatelly is the
4985 * inherent check of ftrace_make_nop/ftrace_make_call for
4986 * correct previous instructions. Making first the NOP
4987 * conversion puts the module to the correct state, thus
4988 * passing the ftrace_make_call check.
4989 *
4990 * We also delay this to after the module code already set the
4991 * text to read-only, as we now need to set it back to read-write
4992 * so that we can modify the text.
4993 */
4994 if (ftrace_start_up)
4995 ftrace_arch_code_modify_prepare();
4996
4997 do_for_each_ftrace_rec(pg, rec) {
4998 int cnt;
4999 /*
5000 * do_for_each_ftrace_rec() is a double loop.
5001 * module text shares the pg. If a record is
5002 * not part of this module, then skip this pg,
5003 * which the "break" will do.
5004 */
5005 if (!within_module_core(rec->ip, mod))
5006 break;
5007
5008 cnt = 0;
5009
5010 /*
5011 * When adding a module, we need to check if tracers are
5012 * currently enabled and if they are, and can trace this record,
5013 * we need to enable the module functions as well as update the
5014 * reference counts for those function records.
5015 */
5016 if (ftrace_start_up)
5017 cnt += referenced_filters(rec);
5018
5019 /* This clears FTRACE_FL_DISABLED */
5020 rec->flags = cnt;
5021
5022 if (ftrace_start_up && cnt) {
5023 int failed = __ftrace_replace_code(rec, 1);
5024 if (failed) {
5025 ftrace_bug(failed, rec);
5026 goto out_loop;
5027 }
5028 }
5029
5030 } while_for_each_ftrace_rec();
5031
5032 out_loop:
5033 if (ftrace_start_up)
5034 ftrace_arch_code_modify_post_process();
5035
5036 out_unlock:
5037 mutex_unlock(&ftrace_lock);
5038}
5039
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04005040void ftrace_module_init(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005041{
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005042 if (ftrace_disabled || !mod->num_ftrace_callsites)
Abel Vesab6b71f62015-12-02 15:39:57 +01005043 return;
5044
Steven Rostedt (Red Hat)97e9b4f2015-12-23 12:12:22 -05005045 ftrace_process_locs(mod, mod->ftrace_callsites,
5046 mod->ftrace_callsites + mod->num_ftrace_callsites);
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05005047}
Steven Rostedt93eb6772009-04-15 13:24:06 -04005048#endif /* CONFIG_MODULES */
5049
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005050void __init ftrace_init(void)
5051{
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01005052 extern unsigned long __start_mcount_loc[];
5053 extern unsigned long __stop_mcount_loc[];
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005054 unsigned long count, flags;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005055 int ret;
5056
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005057 local_irq_save(flags);
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005058 ret = ftrace_dyn_arch_init();
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005059 local_irq_restore(flags);
Jiri Slabyaf64a7c2014-02-24 19:59:58 +01005060 if (ret)
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005061 goto failed;
5062
5063 count = __stop_mcount_loc - __start_mcount_loc;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005064 if (!count) {
5065 pr_info("ftrace: No functions to be traced?\n");
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005066 goto failed;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005067 }
5068
5069 pr_info("ftrace: allocating %ld entries in %ld pages\n",
5070 count, count / ENTRIES_PER_PAGE + 1);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005071
5072 last_ftrace_enabled = ftrace_enabled = 1;
5073
Jiri Olsa5cb084b2009-10-13 16:33:53 -04005074 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08005075 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005076 __stop_mcount_loc);
5077
Steven Rostedt2af15d62009-05-28 13:37:24 -04005078 set_ftrace_early_filters();
5079
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005080 return;
5081 failed:
5082 ftrace_disabled = 1;
5083}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005084
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005085/* Do nothing if arch does not support this */
5086void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
5087{
5088}
5089
5090static void ftrace_update_trampoline(struct ftrace_ops *ops)
5091{
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04005092
5093/*
5094 * Currently there's no safe way to free a trampoline when the kernel
5095 * is configured with PREEMPT. That is because a task could be preempted
5096 * when it jumped to the trampoline, it may be preempted for a long time
5097 * depending on the system load, and currently there's no way to know
5098 * when it will be off the trampoline. If the trampoline is freed
5099 * too early, when the task runs again, it will be executing on freed
5100 * memory and crash.
5101 */
5102#ifdef CONFIG_PREEMPT
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005103 /* Currently, only non dynamic ops can have a trampoline */
5104 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
5105 return;
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04005106#endif
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005107
5108 arch_ftrace_update_trampoline(ops);
5109}
5110
Steven Rostedt3d083392008-05-12 21:20:42 +02005111#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005112
Steven Rostedt2b499382011-05-03 22:49:52 -04005113static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04005114 .func = ftrace_stub,
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005115 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5116 FTRACE_OPS_FL_INITIALIZED |
5117 FTRACE_OPS_FL_PID,
Steven Rostedtbd69c302011-05-03 21:55:54 -04005118};
5119
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005120static int __init ftrace_nodyn_init(void)
5121{
5122 ftrace_enabled = 1;
5123 return 0;
5124}
Steven Rostedt6f415672012-10-05 12:13:07 -04005125core_initcall(ftrace_nodyn_init);
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005126
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005127static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005128static inline void ftrace_startup_enable(int command) { }
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005129static inline void ftrace_startup_all(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05005130/* Keep as macros so we do not need to define the commands */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005131# define ftrace_startup(ops, command) \
5132 ({ \
5133 int ___ret = __register_ftrace_function(ops); \
5134 if (!___ret) \
5135 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
5136 ___ret; \
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04005137 })
Steven Rostedt (Red Hat)1fcc1552014-02-19 15:12:18 -05005138# define ftrace_shutdown(ops, command) \
5139 ({ \
5140 int ___ret = __unregister_ftrace_function(ops); \
5141 if (!___ret) \
5142 (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \
5143 ___ret; \
5144 })
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005145
Ingo Molnarc7aafc52008-05-12 21:20:45 +02005146# define ftrace_startup_sysctl() do { } while (0)
5147# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04005148
5149static inline int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04005150ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005151{
5152 return 1;
5153}
5154
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005155static void ftrace_update_trampoline(struct ftrace_ops *ops)
5156{
5157}
5158
Steven Rostedt3d083392008-05-12 21:20:42 +02005159#endif /* CONFIG_DYNAMIC_FTRACE */
5160
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005161__init void ftrace_init_global_array_ops(struct trace_array *tr)
5162{
5163 tr->ops = &global_ops;
5164 tr->ops->private = tr;
5165}
5166
5167void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
5168{
5169 /* If we filter on pids, update to use the pid function */
5170 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
5171 if (WARN_ON(tr->ops->func != ftrace_stub))
5172 printk("ftrace ops had %pS for function\n",
5173 tr->ops->func);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005174 }
5175 tr->ops->func = func;
5176 tr->ops->private = tr;
5177}
5178
5179void ftrace_reset_array_ops(struct trace_array *tr)
5180{
5181 tr->ops->func = ftrace_stub;
5182}
5183
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005184static inline void
5185__ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005186 struct ftrace_ops *ignored, struct pt_regs *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005187{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005188 struct ftrace_ops *op;
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005189 int bit;
Steven Rostedtb8489142011-05-04 09:27:52 -04005190
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005191 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5192 if (bit < 0)
5193 return;
Steven Rostedtc29f1222012-11-02 17:17:59 -04005194
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005195 /*
5196 * Some of the ops may be dynamically allocated,
5197 * they must be freed after a synchronize_sched().
5198 */
5199 preempt_disable_notrace();
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05005200
Steven Rostedt0a016402012-11-02 17:03:03 -04005201 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)ba27f2b2015-11-30 17:23:39 -05005202 /*
5203 * Check the following for each ops before calling their func:
5204 * if RCU flag is set, then rcu_is_watching() must be true
5205 * if PER_CPU is set, then ftrace_function_local_disable()
5206 * must be false
5207 * Otherwise test if the ip matches the ops filter
5208 *
5209 * If any of the above fails then the op->func() is not executed.
5210 */
5211 if ((!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching()) &&
5212 (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5213 !ftrace_function_local_disabled(op)) &&
5214 ftrace_ops_test(op, ip, regs)) {
5215
Steven Rostedt (Red Hat)1d48d592014-06-25 11:54:03 -04005216 if (FTRACE_WARN_ON(!op->func)) {
5217 pr_warn("op=%p %pS\n", op, op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005218 goto out;
5219 }
Steven Rostedta1e2e312011-08-09 12:50:46 -04005220 op->func(ip, parent_ip, op, regs);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005221 }
Steven Rostedt0a016402012-11-02 17:03:03 -04005222 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005223out:
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005224 preempt_enable_notrace();
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005225 trace_clear_recursion(bit);
Steven Rostedtb8489142011-05-04 09:27:52 -04005226}
5227
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005228/*
5229 * Some archs only support passing ip and parent_ip. Even though
5230 * the list function ignores the op parameter, we do not want any
5231 * C side effects, where a function is called without the caller
5232 * sending a third parameter.
Steven Rostedta1e2e312011-08-09 12:50:46 -04005233 * Archs are to support both the regs and ftrace_ops at the same time.
5234 * If they support ftrace_ops, it is assumed they support regs.
5235 * If call backs want to use regs, they must either check for regs
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +09005236 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
5237 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
Steven Rostedta1e2e312011-08-09 12:50:46 -04005238 * An architecture can pass partial regs with ftrace_ops and still
Li Binb8ec3302015-11-30 18:23:36 +08005239 * set the ARCH_SUPPORTS_FTRACE_OPS.
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005240 */
5241#if ARCH_SUPPORTS_FTRACE_OPS
5242static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005243 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005244{
Steven Rostedta1e2e312011-08-09 12:50:46 -04005245 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005246}
5247#else
5248static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip)
5249{
Steven Rostedta1e2e312011-08-09 12:50:46 -04005250 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005251}
5252#endif
5253
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005254/*
5255 * If there's only one function registered but it does not support
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005256 * recursion, needs RCU protection and/or requires per cpu handling, then
5257 * this function will be called by the mcount trampoline.
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005258 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005259static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005260 struct ftrace_ops *op, struct pt_regs *regs)
5261{
5262 int bit;
5263
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005264 if ((op->flags & FTRACE_OPS_FL_RCU) && !rcu_is_watching())
5265 return;
5266
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005267 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5268 if (bit < 0)
5269 return;
5270
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005271 preempt_disable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005272
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005273 if (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5274 !ftrace_function_local_disabled(op)) {
5275 op->func(ip, parent_ip, op, regs);
5276 }
5277
5278 preempt_enable_notrace();
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005279 trace_clear_recursion(bit);
5280}
5281
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005282/**
5283 * ftrace_ops_get_func - get the function a trampoline should call
5284 * @ops: the ops to get the function for
5285 *
5286 * Normally the mcount trampoline will call the ops->func, but there
5287 * are times that it should not. For example, if the ops does not
5288 * have its own recursion protection, then it should call the
5289 * ftrace_ops_recurs_func() instead.
5290 *
5291 * Returns the function that the trampoline should call for @ops.
5292 */
5293ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
5294{
5295 /*
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005296 * If the function does not handle recursion, needs to be RCU safe,
5297 * or does per cpu logic, then we need to call the assist handler.
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005298 */
Steven Rostedt (Red Hat)c68c0fa2015-12-01 13:28:16 -05005299 if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE) ||
5300 ops->flags & (FTRACE_OPS_FL_RCU | FTRACE_OPS_FL_PER_CPU))
5301 return ftrace_ops_assist_func;
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005302
5303 return ops->func;
5304}
5305
Steven Rostedte32d8952008-12-04 00:26:41 -05005306static void clear_ftrace_swapper(void)
5307{
5308 struct task_struct *p;
5309 int cpu;
5310
5311 get_online_cpus();
5312 for_each_online_cpu(cpu) {
5313 p = idle_task(cpu);
5314 clear_tsk_trace_trace(p);
5315 }
5316 put_online_cpus();
5317}
5318
5319static void set_ftrace_swapper(void)
5320{
5321 struct task_struct *p;
5322 int cpu;
5323
5324 get_online_cpus();
5325 for_each_online_cpu(cpu) {
5326 p = idle_task(cpu);
5327 set_tsk_trace_trace(p);
5328 }
5329 put_online_cpus();
5330}
5331
5332static void clear_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05005333{
5334 struct task_struct *p;
5335
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01005336 rcu_read_lock();
Steven Rostedte32d8952008-12-04 00:26:41 -05005337 do_each_pid_task(pid, PIDTYPE_PID, p) {
Steven Rostedt978f3a42008-12-04 00:26:40 -05005338 clear_tsk_trace_trace(p);
Steven Rostedte32d8952008-12-04 00:26:41 -05005339 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01005340 rcu_read_unlock();
5341
Steven Rostedte32d8952008-12-04 00:26:41 -05005342 put_pid(pid);
Steven Rostedt978f3a42008-12-04 00:26:40 -05005343}
5344
Steven Rostedte32d8952008-12-04 00:26:41 -05005345static void set_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05005346{
5347 struct task_struct *p;
5348
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01005349 rcu_read_lock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05005350 do_each_pid_task(pid, PIDTYPE_PID, p) {
5351 set_tsk_trace_trace(p);
5352 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01005353 rcu_read_unlock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05005354}
5355
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005356static void clear_ftrace_pid_task(struct pid *pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05005357{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005358 if (pid == ftrace_swapper_pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05005359 clear_ftrace_swapper();
5360 else
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005361 clear_ftrace_pid(pid);
Steven Rostedte32d8952008-12-04 00:26:41 -05005362}
5363
5364static void set_ftrace_pid_task(struct pid *pid)
5365{
5366 if (pid == ftrace_swapper_pid)
5367 set_ftrace_swapper();
5368 else
5369 set_ftrace_pid(pid);
5370}
5371
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005372static int ftrace_pid_add(int p)
5373{
5374 struct pid *pid;
5375 struct ftrace_pid *fpid;
5376 int ret = -EINVAL;
5377
5378 mutex_lock(&ftrace_lock);
5379
5380 if (!p)
5381 pid = ftrace_swapper_pid;
5382 else
5383 pid = find_get_pid(p);
5384
5385 if (!pid)
5386 goto out;
5387
5388 ret = 0;
5389
5390 list_for_each_entry(fpid, &ftrace_pids, list)
5391 if (fpid->pid == pid)
5392 goto out_put;
5393
5394 ret = -ENOMEM;
5395
5396 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
5397 if (!fpid)
5398 goto out_put;
5399
5400 list_add(&fpid->list, &ftrace_pids);
5401 fpid->pid = pid;
5402
5403 set_ftrace_pid_task(pid);
5404
5405 ftrace_update_pid_func();
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005406
5407 ftrace_startup_all(0);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005408
5409 mutex_unlock(&ftrace_lock);
5410 return 0;
5411
5412out_put:
5413 if (pid != ftrace_swapper_pid)
5414 put_pid(pid);
5415
5416out:
5417 mutex_unlock(&ftrace_lock);
5418 return ret;
5419}
5420
5421static void ftrace_pid_reset(void)
5422{
5423 struct ftrace_pid *fpid, *safe;
5424
5425 mutex_lock(&ftrace_lock);
5426 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
5427 struct pid *pid = fpid->pid;
5428
5429 clear_ftrace_pid_task(pid);
5430
5431 list_del(&fpid->list);
5432 kfree(fpid);
5433 }
5434
5435 ftrace_update_pid_func();
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005436 ftrace_startup_all(0);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005437
5438 mutex_unlock(&ftrace_lock);
5439}
5440
5441static void *fpid_start(struct seq_file *m, loff_t *pos)
5442{
5443 mutex_lock(&ftrace_lock);
5444
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005445 if (!ftrace_pids_enabled() && (!*pos))
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005446 return (void *) 1;
5447
5448 return seq_list_start(&ftrace_pids, *pos);
5449}
5450
5451static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
5452{
5453 if (v == (void *)1)
5454 return NULL;
5455
5456 return seq_list_next(v, &ftrace_pids, pos);
5457}
5458
5459static void fpid_stop(struct seq_file *m, void *p)
5460{
5461 mutex_unlock(&ftrace_lock);
5462}
5463
5464static int fpid_show(struct seq_file *m, void *v)
5465{
5466 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
5467
5468 if (v == (void *)1) {
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005469 seq_puts(m, "no pid\n");
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005470 return 0;
5471 }
5472
5473 if (fpid->pid == ftrace_swapper_pid)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005474 seq_puts(m, "swapper tasks\n");
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005475 else
5476 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
5477
5478 return 0;
5479}
5480
5481static const struct seq_operations ftrace_pid_sops = {
5482 .start = fpid_start,
5483 .next = fpid_next,
5484 .stop = fpid_stop,
5485 .show = fpid_show,
5486};
5487
5488static int
5489ftrace_pid_open(struct inode *inode, struct file *file)
5490{
5491 int ret = 0;
5492
5493 if ((file->f_mode & FMODE_WRITE) &&
5494 (file->f_flags & O_TRUNC))
5495 ftrace_pid_reset();
5496
5497 if (file->f_mode & FMODE_READ)
5498 ret = seq_open(file, &ftrace_pid_sops);
5499
5500 return ret;
5501}
5502
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005503static ssize_t
5504ftrace_pid_write(struct file *filp, const char __user *ubuf,
5505 size_t cnt, loff_t *ppos)
5506{
Ingo Molnar457dc922009-11-23 11:03:28 +01005507 char buf[64], *tmp;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005508 long val;
5509 int ret;
5510
5511 if (cnt >= sizeof(buf))
5512 return -EINVAL;
5513
5514 if (copy_from_user(&buf, ubuf, cnt))
5515 return -EFAULT;
5516
5517 buf[cnt] = 0;
5518
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005519 /*
5520 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
5521 * to clean the filter quietly.
5522 */
Ingo Molnar457dc922009-11-23 11:03:28 +01005523 tmp = strstrip(buf);
5524 if (strlen(tmp) == 0)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005525 return 1;
5526
Daniel Walterbcd83ea2012-09-26 22:08:38 +02005527 ret = kstrtol(tmp, 10, &val);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005528 if (ret < 0)
5529 return ret;
5530
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005531 ret = ftrace_pid_add(val);
Steven Rostedt978f3a42008-12-04 00:26:40 -05005532
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005533 return ret ? ret : cnt;
5534}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005535
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005536static int
5537ftrace_pid_release(struct inode *inode, struct file *file)
5538{
5539 if (file->f_mode & FMODE_READ)
5540 seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005541
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005542 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005543}
5544
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005545static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005546 .open = ftrace_pid_open,
5547 .write = ftrace_pid_write,
5548 .read = seq_read,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005549 .llseek = tracing_lseek,
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005550 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005551};
5552
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005553static __init int ftrace_init_tracefs(void)
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005554{
5555 struct dentry *d_tracer;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005556
5557 d_tracer = tracing_init_dentry();
Steven Rostedt (Red Hat)14a5ae42015-01-20 11:14:16 -05005558 if (IS_ERR(d_tracer))
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005559 return 0;
5560
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005561 ftrace_init_dyn_tracefs(d_tracer);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005562
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005563 trace_create_file("set_ftrace_pid", 0644, d_tracer,
5564 NULL, &ftrace_pid_fops);
Steven Rostedt493762f2009-03-23 17:12:36 -04005565
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005566 ftrace_profile_tracefs(d_tracer);
Steven Rostedt493762f2009-03-23 17:12:36 -04005567
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005568 return 0;
5569}
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005570fs_initcall(ftrace_init_tracefs);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005571
Steven Rostedt3d083392008-05-12 21:20:42 +02005572/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04005573 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005574 *
5575 * This function should be used by panic code. It stops ftrace
5576 * but in a not so nice way. If you need to simply kill ftrace
5577 * from a non-atomic section, use ftrace_kill.
5578 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04005579void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005580{
5581 ftrace_disabled = 1;
5582 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005583 clear_ftrace_function();
5584}
5585
5586/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04005587 * Test if ftrace is dead or not.
5588 */
5589int ftrace_is_dead(void)
5590{
5591 return ftrace_disabled;
5592}
5593
5594/**
Steven Rostedt3d083392008-05-12 21:20:42 +02005595 * register_ftrace_function - register a function for profiling
5596 * @ops - ops structure that holds the function for profiling.
5597 *
5598 * Register a function to be called by all functions in the
5599 * kernel.
5600 *
5601 * Note: @ops->func and all the functions it calls must be labeled
5602 * with "notrace", otherwise it will go into a
5603 * recursive loop.
5604 */
5605int register_ftrace_function(struct ftrace_ops *ops)
5606{
Steven Rostedt45a4a232011-04-21 23:16:46 -04005607 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02005608
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09005609 ftrace_ops_init(ops);
5610
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005611 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005612
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005613 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04005614
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005615 mutex_unlock(&ftrace_lock);
Borislav Petkov8d240dd2012-03-29 19:11:40 +02005616
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005617 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02005618}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005619EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02005620
5621/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01005622 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02005623 * @ops - ops structure that holds the function to unregister
5624 *
5625 * Unregister a function that was added to be called by ftrace profiling.
5626 */
5627int unregister_ftrace_function(struct ftrace_ops *ops)
5628{
5629 int ret;
5630
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005631 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005632 ret = ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005633 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005634
5635 return ret;
5636}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005637EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005638
Ingo Molnare309b412008-05-12 21:20:51 +02005639int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005640ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07005641 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005642 loff_t *ppos)
5643{
Steven Rostedt45a4a232011-04-21 23:16:46 -04005644 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02005645
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005646 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005647
Steven Rostedt45a4a232011-04-21 23:16:46 -04005648 if (unlikely(ftrace_disabled))
5649 goto out;
5650
5651 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005652
Li Zefana32c7762009-06-26 16:55:51 +08005653 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005654 goto out;
5655
Li Zefana32c7762009-06-26 16:55:51 +08005656 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005657
5658 if (ftrace_enabled) {
5659
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005660 /* we are starting ftrace again */
Jan Kiszka5000c412013-03-26 17:53:03 +01005661 if (ftrace_ops_list != &ftrace_list_end)
5662 update_ftrace_function();
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005663
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05005664 ftrace_startup_sysctl();
5665
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005666 } else {
5667 /* stopping ftrace calls (just send to ftrace_stub) */
5668 ftrace_trace_function = ftrace_stub;
5669
5670 ftrace_shutdown_sysctl();
5671 }
5672
5673 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005674 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02005675 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02005676}
Ingo Molnarf17845e2008-10-24 12:47:10 +02005677
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005678#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005679
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005680static struct ftrace_ops graph_ops = {
5681 .func = ftrace_stub,
5682 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5683 FTRACE_OPS_FL_INITIALIZED |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005684 FTRACE_OPS_FL_PID |
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005685 FTRACE_OPS_FL_STUB,
5686#ifdef FTRACE_GRAPH_TRAMP_ADDR
5687 .trampoline = FTRACE_GRAPH_TRAMP_ADDR,
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05005688 /* trampoline_size is only needed for dynamically allocated tramps */
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005689#endif
5690 ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash)
5691};
5692
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04005693void ftrace_graph_sleep_time_control(bool enable)
5694{
5695 fgraph_sleep_time = enable;
5696}
5697
5698void ftrace_graph_graph_time_control(bool enable)
5699{
5700 fgraph_graph_time = enable;
5701}
5702
Steven Rostedte49dc192008-12-02 23:50:05 -05005703int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
5704{
5705 return 0;
5706}
5707
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005708/* The callbacks that hook a function */
5709trace_func_graph_ret_t ftrace_graph_return =
5710 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05005711trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005712static trace_func_graph_ent_t __ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005713
5714/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
5715static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
5716{
5717 int i;
5718 int ret = 0;
5719 unsigned long flags;
5720 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
5721 struct task_struct *g, *t;
5722
5723 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
5724 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
5725 * sizeof(struct ftrace_ret_stack),
5726 GFP_KERNEL);
5727 if (!ret_stack_list[i]) {
5728 start = 0;
5729 end = i;
5730 ret = -ENOMEM;
5731 goto free;
5732 }
5733 }
5734
5735 read_lock_irqsave(&tasklist_lock, flags);
5736 do_each_thread(g, t) {
5737 if (start == end) {
5738 ret = -EAGAIN;
5739 goto unlock;
5740 }
5741
5742 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01005743 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005744 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04005745 t->curr_ret_stack = -1;
5746 /* Make sure the tasks see the -1 first: */
5747 smp_wmb();
5748 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005749 }
5750 } while_each_thread(g, t);
5751
5752unlock:
5753 read_unlock_irqrestore(&tasklist_lock, flags);
5754free:
5755 for (i = start; i < end; i++)
5756 kfree(ret_stack_list[i]);
5757 return ret;
5758}
5759
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005760static void
Peter Zijlstrac73464b2015-09-28 18:06:56 +02005761ftrace_graph_probe_sched_switch(void *ignore, bool preempt,
Steven Rostedt38516ab2010-04-20 17:04:50 -04005762 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005763{
5764 unsigned long long timestamp;
5765 int index;
5766
Steven Rostedtbe6f1642009-03-24 11:06:24 -04005767 /*
5768 * Does the user want to count the time a function was asleep.
5769 * If so, do not update the time stamps.
5770 */
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04005771 if (fgraph_sleep_time)
Steven Rostedtbe6f1642009-03-24 11:06:24 -04005772 return;
5773
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005774 timestamp = trace_clock_local();
5775
5776 prev->ftrace_timestamp = timestamp;
5777
5778 /* only process tasks that we timestamped */
5779 if (!next->ftrace_timestamp)
5780 return;
5781
5782 /*
5783 * Update all the counters in next to make up for the
5784 * time next was sleeping.
5785 */
5786 timestamp -= next->ftrace_timestamp;
5787
5788 for (index = next->curr_ret_stack; index >= 0; index--)
5789 next->ret_stack[index].calltime += timestamp;
5790}
5791
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005792/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005793static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005794{
5795 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005796 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005797
5798 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
5799 sizeof(struct ftrace_ret_stack *),
5800 GFP_KERNEL);
5801
5802 if (!ret_stack_list)
5803 return -ENOMEM;
5804
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005805 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04005806 for_each_online_cpu(cpu) {
5807 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05005808 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04005809 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005810
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005811 do {
5812 ret = alloc_retstack_tasklist(ret_stack_list);
5813 } while (ret == -EAGAIN);
5814
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005815 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04005816 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005817 if (ret)
5818 pr_info("ftrace_graph: Couldn't activate tracepoint"
5819 " probe to kernel_sched_switch\n");
5820 }
5821
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005822 kfree(ret_stack_list);
5823 return ret;
5824}
5825
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005826/*
5827 * Hibernation protection.
5828 * The state of the current task is too much unstable during
5829 * suspend/restore to disk. We want to protect against that.
5830 */
5831static int
5832ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
5833 void *unused)
5834{
5835 switch (state) {
5836 case PM_HIBERNATION_PREPARE:
5837 pause_graph_tracing();
5838 break;
5839
5840 case PM_POST_HIBERNATION:
5841 unpause_graph_tracing();
5842 break;
5843 }
5844 return NOTIFY_DONE;
5845}
5846
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005847static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace)
5848{
5849 if (!ftrace_ops_test(&global_ops, trace->func, NULL))
5850 return 0;
5851 return __ftrace_graph_entry(trace);
5852}
5853
5854/*
5855 * The function graph tracer should only trace the functions defined
5856 * by set_ftrace_filter and set_ftrace_notrace. If another function
5857 * tracer ops is registered, the graph tracer requires testing the
5858 * function against the global ops, and not just trace any function
5859 * that any ftrace_ops registered.
5860 */
5861static void update_function_graph_func(void)
5862{
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005863 struct ftrace_ops *op;
5864 bool do_test = false;
5865
5866 /*
5867 * The graph and global ops share the same set of functions
5868 * to test. If any other ops is on the list, then
5869 * the graph tracing needs to test if its the function
5870 * it should call.
5871 */
5872 do_for_each_ftrace_op(op, ftrace_ops_list) {
5873 if (op != &global_ops && op != &graph_ops &&
5874 op != &ftrace_list_end) {
5875 do_test = true;
5876 /* in double loop, break out with goto */
5877 goto out;
5878 }
5879 } while_for_each_ftrace_op(op);
5880 out:
5881 if (do_test)
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005882 ftrace_graph_entry = ftrace_graph_entry_test;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005883 else
5884 ftrace_graph_entry = __ftrace_graph_entry;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005885}
5886
Mathias Krause8275f692014-03-30 15:31:50 +02005887static struct notifier_block ftrace_suspend_notifier = {
5888 .notifier_call = ftrace_suspend_notifier_call,
5889};
5890
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005891int register_ftrace_graph(trace_func_graph_ret_t retfunc,
5892 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005893{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005894 int ret = 0;
5895
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005896 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005897
Steven Rostedt05ce5812009-03-24 00:18:31 -04005898 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04005899 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04005900 ret = -EBUSY;
5901 goto out;
5902 }
5903
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005904 register_pm_notifier(&ftrace_suspend_notifier);
5905
Steven Rostedt597af812009-04-03 15:24:12 -04005906 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005907 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005908 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04005909 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005910 goto out;
5911 }
Steven Rostedte53a6312008-11-26 00:16:25 -05005912
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005913 ftrace_graph_return = retfunc;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005914
5915 /*
5916 * Update the indirect function to the entryfunc, and the
5917 * function that gets called to the entry_test first. Then
5918 * call the update fgraph entry function to determine if
5919 * the entryfunc should be called directly or not.
5920 */
5921 __ftrace_graph_entry = entryfunc;
5922 ftrace_graph_entry = ftrace_graph_entry_test;
5923 update_function_graph_func();
Steven Rostedte53a6312008-11-26 00:16:25 -05005924
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005925 ret = ftrace_startup(&graph_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005926out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005927 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005928 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005929}
5930
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005931void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005932{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005933 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005934
Steven Rostedt597af812009-04-03 15:24:12 -04005935 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04005936 goto out;
5937
Steven Rostedt597af812009-04-03 15:24:12 -04005938 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005939 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05005940 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005941 __ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005942 ftrace_shutdown(&graph_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005943 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04005944 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005945
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005946#ifdef CONFIG_DYNAMIC_FTRACE
5947 /*
5948 * Function graph does not allocate the trampoline, but
5949 * other global_ops do. We need to reset the ALLOC_TRAMP flag
5950 * if one was used.
5951 */
5952 global_ops.trampoline = save_global_trampoline;
5953 if (save_global_flags & FTRACE_OPS_FL_ALLOC_TRAMP)
5954 global_ops.flags |= FTRACE_OPS_FL_ALLOC_TRAMP;
5955#endif
5956
Steven Rostedt2aad1b72009-03-30 11:11:28 -04005957 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005958 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005959}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005960
Steven Rostedt868baf02011-02-10 21:26:13 -05005961static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
5962
5963static void
5964graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
5965{
5966 atomic_set(&t->tracing_graph_pause, 0);
5967 atomic_set(&t->trace_overrun, 0);
5968 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005969 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05005970 smp_wmb();
5971 t->ret_stack = ret_stack;
5972}
5973
5974/*
5975 * Allocate a return stack for the idle task. May be the first
5976 * time through, or it may be done by CPU hotplug online.
5977 */
5978void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
5979{
5980 t->curr_ret_stack = -1;
5981 /*
5982 * The idle task has no parent, it either has its own
5983 * stack or no stack at all.
5984 */
5985 if (t->ret_stack)
5986 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
5987
5988 if (ftrace_graph_active) {
5989 struct ftrace_ret_stack *ret_stack;
5990
5991 ret_stack = per_cpu(idle_ret_stack, cpu);
5992 if (!ret_stack) {
5993 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
5994 * sizeof(struct ftrace_ret_stack),
5995 GFP_KERNEL);
5996 if (!ret_stack)
5997 return;
5998 per_cpu(idle_ret_stack, cpu) = ret_stack;
5999 }
6000 graph_init_task(t, ret_stack);
6001 }
6002}
6003
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006004/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006005void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006006{
Steven Rostedt84047e32009-06-02 16:51:55 -04006007 /* Make sure we do not use the parent ret_stack */
6008 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05006009 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04006010
Steven Rostedt597af812009-04-03 15:24:12 -04006011 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04006012 struct ftrace_ret_stack *ret_stack;
6013
6014 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006015 * sizeof(struct ftrace_ret_stack),
6016 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04006017 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006018 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05006019 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04006020 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006021}
6022
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006023void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006024{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006025 struct ftrace_ret_stack *ret_stack = t->ret_stack;
6026
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006027 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006028 /* NULL must become visible to IRQs before we free it: */
6029 barrier();
6030
6031 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006032}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006033#endif