blob: fa0f36bb32e9a8d4cb567a54c86d24f5b4d303e8 [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 Rostedt5072c592008-05-12 21:20:43 +020021#include <linux/debugfs.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 Rostedt69128962008-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 Rostedt69128962008-10-23 09:33:03 -040047 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040048 ___r; \
49 })
Steven Rostedt69128962008-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 Rostedt69128962008-10-23 09:33:03 -040055 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040056 ___r; \
57 })
Steven Rostedt69128962008-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
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -050065#define FL_GLOBAL_CONTROL_MASK (FTRACE_OPS_FL_CONTROL)
Jiri Olsae2484912012-02-15 15:51:48 +010066
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +090067#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -040068#define INIT_OPS_HASH(opsname) \
69 .func_hash = &opsname.local_hash, \
70 .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock),
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -040071#define ASSIGN_OPS_HASH(opsname, val) \
72 .func_hash = val, \
73 .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock),
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +090074#else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -040075#define INIT_OPS_HASH(opsname)
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -040076#define ASSIGN_OPS_HASH(opsname, val)
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +090077#endif
78
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040079static struct ftrace_ops ftrace_list_end __read_mostly = {
80 .func = ftrace_stub,
Steven Rostedt (Red Hat)395b97a2013-03-27 09:31:28 -040081 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_STUB,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -040082 INIT_OPS_HASH(ftrace_list_end)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040083};
84
Steven Rostedt4eebcc82008-05-12 21:20:48 +020085/* ftrace_enabled is a method to turn ftrace on or off */
86int ftrace_enabled __read_mostly;
Steven Rostedtd61f82d2008-05-12 21:20:43 +020087static int last_ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +020088
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040089/* Current function tracing op */
90struct ftrace_ops *function_trace_op __read_mostly = &ftrace_list_end;
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -050091/* What to set function_trace_op to */
92static struct ftrace_ops *set_function_trace_op;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050093
jolsa@redhat.com756d17e2009-10-13 16:33:52 -040094/* List for set_ftrace_pid's pids. */
95LIST_HEAD(ftrace_pids);
96struct ftrace_pid {
97 struct list_head list;
98 struct pid *pid;
99};
100
Steven Rostedt4eebcc82008-05-12 21:20:48 +0200101/*
102 * ftrace_disabled is set when an anomaly is discovered.
103 * ftrace_disabled is much stronger than ftrace_enabled.
104 */
105static int ftrace_disabled __read_mostly;
106
Steven Rostedt52baf112009-02-14 01:15:39 -0500107static DEFINE_MUTEX(ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200108
Jiri Olsae2484912012-02-15 15:51:48 +0100109static struct ftrace_ops *ftrace_control_list __read_mostly = &ftrace_list_end;
Steven Rostedtb8489142011-05-04 09:27:52 -0400110static struct ftrace_ops *ftrace_ops_list __read_mostly = &ftrace_list_end;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200111ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500112ftrace_func_t ftrace_pid_function __read_mostly = ftrace_stub;
Steven Rostedt2b499382011-05-03 22:49:52 -0400113static struct ftrace_ops global_ops;
Jiri Olsae2484912012-02-15 15:51:48 +0100114static struct ftrace_ops control_ops;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200115
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -0400116static void ftrace_ops_recurs_func(unsigned long ip, unsigned long parent_ip,
117 struct ftrace_ops *op, struct pt_regs *regs);
118
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400119#if ARCH_SUPPORTS_FTRACE_OPS
120static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400121 struct ftrace_ops *op, struct pt_regs *regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400122#else
123/* See comment below, where ftrace_ops_list_func is defined */
124static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip);
125#define ftrace_ops_list_func ((ftrace_func_t)ftrace_ops_no_ops)
126#endif
Steven Rostedtb8489142011-05-04 09:27:52 -0400127
Steven Rostedt0a016402012-11-02 17:03:03 -0400128/*
129 * Traverse the ftrace_global_list, invoking all entries. The reason that we
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400130 * can use rcu_dereference_raw_notrace() is that elements removed from this list
Steven Rostedt0a016402012-11-02 17:03:03 -0400131 * are simply leaked, so there is no need to interact with a grace-period
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400132 * mechanism. The rcu_dereference_raw_notrace() calls are needed to handle
Steven Rostedt0a016402012-11-02 17:03:03 -0400133 * concurrent insertions into the ftrace_global_list.
134 *
135 * Silly Alpha and silly pointer-speculation compiler optimizations!
136 */
137#define do_for_each_ftrace_op(op, list) \
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400138 op = rcu_dereference_raw_notrace(list); \
Steven Rostedt0a016402012-11-02 17:03:03 -0400139 do
140
141/*
142 * Optimized for just a single item in the list (as that is the normal case).
143 */
144#define while_for_each_ftrace_op(op) \
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400145 while (likely(op = rcu_dereference_raw_notrace((op)->next)) && \
Steven Rostedt0a016402012-11-02 17:03:03 -0400146 unlikely((op) != &ftrace_list_end))
147
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900148static inline void ftrace_ops_init(struct ftrace_ops *ops)
149{
150#ifdef CONFIG_DYNAMIC_FTRACE
151 if (!(ops->flags & FTRACE_OPS_FL_INITIALIZED)) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400152 mutex_init(&ops->local_hash.regex_lock);
153 ops->func_hash = &ops->local_hash;
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900154 ops->flags |= FTRACE_OPS_FL_INITIALIZED;
155 }
156#endif
157}
158
Steven Rostedtea701f12012-07-20 13:08:05 -0400159/**
160 * ftrace_nr_registered_ops - return number of ops registered
161 *
162 * Returns the number of ftrace_ops registered and tracing functions
163 */
164int ftrace_nr_registered_ops(void)
165{
166 struct ftrace_ops *ops;
167 int cnt = 0;
168
169 mutex_lock(&ftrace_lock);
170
171 for (ops = ftrace_ops_list;
172 ops != &ftrace_list_end; ops = ops->next)
173 cnt++;
174
175 mutex_unlock(&ftrace_lock);
176
177 return cnt;
178}
179
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400180static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400181 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500182{
Steven Rostedt0ef8cde2008-12-03 15:36:58 -0500183 if (!test_tsk_trace_trace(current))
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500184 return;
185
Steven Rostedta1e2e312011-08-09 12:50:46 -0400186 ftrace_pid_function(ip, parent_ip, op, regs);
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500187}
188
189static void set_ftrace_pid_function(ftrace_func_t func)
190{
191 /* do not set ftrace_pid_function to itself! */
192 if (func != ftrace_pid_func)
193 ftrace_pid_function = func;
194}
195
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200196/**
Steven Rostedt3d083392008-05-12 21:20:42 +0200197 * clear_ftrace_function - reset the ftrace function
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200198 *
Steven Rostedt3d083392008-05-12 21:20:42 +0200199 * This NULLs the ftrace function and in essence stops
200 * tracing. There may be lag
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200201 */
Steven Rostedt3d083392008-05-12 21:20:42 +0200202void clear_ftrace_function(void)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200203{
Steven Rostedt3d083392008-05-12 21:20:42 +0200204 ftrace_trace_function = ftrace_stub;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500205 ftrace_pid_function = ftrace_stub;
Steven Rostedt3d083392008-05-12 21:20:42 +0200206}
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200207
Jiri Olsae2484912012-02-15 15:51:48 +0100208static void control_ops_disable_all(struct ftrace_ops *ops)
209{
210 int cpu;
211
212 for_each_possible_cpu(cpu)
213 *per_cpu_ptr(ops->disabled, cpu) = 1;
214}
215
216static int control_ops_alloc(struct ftrace_ops *ops)
217{
218 int __percpu *disabled;
219
220 disabled = alloc_percpu(int);
221 if (!disabled)
222 return -ENOMEM;
223
224 ops->disabled = disabled;
225 control_ops_disable_all(ops);
226 return 0;
227}
228
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500229static void ftrace_sync(struct work_struct *work)
230{
231 /*
232 * This function is just a stub to implement a hard force
233 * of synchronize_sched(). This requires synchronizing
234 * tasks even in userspace and idle.
235 *
236 * Yes, function tracing is rude.
237 */
238}
239
240static void ftrace_sync_ipi(void *data)
241{
242 /* Probably not needed, but do it anyway */
243 smp_rmb();
244}
245
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500246#ifdef CONFIG_FUNCTION_GRAPH_TRACER
247static void update_function_graph_func(void);
248#else
249static inline void update_function_graph_func(void) { }
250#endif
251
Steven Rostedt2b499382011-05-03 22:49:52 -0400252static void update_ftrace_function(void)
253{
254 ftrace_func_t func;
255
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400256 /*
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400257 * Prepare the ftrace_ops that the arch callback will use.
258 * If there's only one ftrace_ops registered, the ftrace_ops_list
259 * will point to the ops we want.
260 */
261 set_function_trace_op = ftrace_ops_list;
262
263 /* If there's no ftrace_ops registered, just call the stub function */
264 if (ftrace_ops_list == &ftrace_list_end) {
265 func = ftrace_stub;
266
267 /*
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400268 * If we are at the end of the list and this ops is
Steven Rostedt47409742012-07-20 11:04:44 -0400269 * recursion safe and not dynamic and the arch supports passing ops,
270 * then have the mcount trampoline call the function directly.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400271 */
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400272 } else if (ftrace_ops_list->next == &ftrace_list_end) {
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -0400273 func = ftrace_ops_get_func(ftrace_ops_list);
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400274
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400275 } else {
276 /* Just use the default ftrace_ops */
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500277 set_function_trace_op = &ftrace_list_end;
Steven Rostedtb8489142011-05-04 09:27:52 -0400278 func = ftrace_ops_list_func;
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400279 }
Steven Rostedt2b499382011-05-03 22:49:52 -0400280
Steven Rostedt (Red Hat)5f8bf2d22014-07-15 11:05:12 -0400281 update_function_graph_func();
282
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500283 /* If there's no change, then do nothing more here */
284 if (ftrace_trace_function == func)
285 return;
286
287 /*
288 * If we are using the list function, it doesn't care
289 * about the function_trace_ops.
290 */
291 if (func == ftrace_ops_list_func) {
292 ftrace_trace_function = func;
293 /*
294 * Don't even bother setting function_trace_ops,
295 * it would be racy to do so anyway.
296 */
297 return;
298 }
299
300#ifndef CONFIG_DYNAMIC_FTRACE
301 /*
302 * For static tracing, we need to be a bit more careful.
303 * The function change takes affect immediately. Thus,
304 * we need to coorditate the setting of the function_trace_ops
305 * with the setting of the ftrace_trace_function.
306 *
307 * Set the function to the list ops, which will call the
308 * function we want, albeit indirectly, but it handles the
309 * ftrace_ops and doesn't depend on function_trace_op.
310 */
311 ftrace_trace_function = ftrace_ops_list_func;
312 /*
313 * Make sure all CPUs see this. Yes this is slow, but static
314 * tracing is slow and nasty to have enabled.
315 */
316 schedule_on_each_cpu(ftrace_sync);
317 /* Now all cpus are using the list ops. */
318 function_trace_op = set_function_trace_op;
319 /* Make sure the function_trace_op is visible on all CPUs */
320 smp_wmb();
321 /* Nasty way to force a rmb on all cpus */
322 smp_call_function(ftrace_sync_ipi, NULL, 1);
323 /* OK, we are all set to update the ftrace_trace_function now! */
324#endif /* !CONFIG_DYNAMIC_FTRACE */
325
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400326 ftrace_trace_function = func;
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400327}
328
Jiaxing Wang7eea4fc2014-04-20 23:10:43 +0800329int using_ftrace_ops_list_func(void)
330{
331 return ftrace_trace_function == ftrace_ops_list_func;
332}
333
Steven Rostedt2b499382011-05-03 22:49:52 -0400334static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
Steven Rostedt3d083392008-05-12 21:20:42 +0200335{
Steven Rostedt2b499382011-05-03 22:49:52 -0400336 ops->next = *list;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200337 /*
Steven Rostedtb8489142011-05-04 09:27:52 -0400338 * We are entering ops into the list but another
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200339 * CPU might be walking that list. We need to make sure
340 * the ops->next pointer is valid before another CPU sees
Steven Rostedtb8489142011-05-04 09:27:52 -0400341 * the ops pointer included into the list.
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200342 */
Steven Rostedt2b499382011-05-03 22:49:52 -0400343 rcu_assign_pointer(*list, ops);
344}
Steven Rostedt3d083392008-05-12 21:20:42 +0200345
Steven Rostedt2b499382011-05-03 22:49:52 -0400346static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
347{
348 struct ftrace_ops **p;
349
350 /*
351 * If we are removing the last function, then simply point
352 * to the ftrace_stub.
353 */
354 if (*list == ops && ops->next == &ftrace_list_end) {
355 *list = &ftrace_list_end;
356 return 0;
357 }
358
359 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
360 if (*p == ops)
361 break;
362
363 if (*p != ops)
364 return -1;
365
366 *p = (*p)->next;
367 return 0;
368}
369
Jiri Olsae2484912012-02-15 15:51:48 +0100370static void add_ftrace_list_ops(struct ftrace_ops **list,
371 struct ftrace_ops *main_ops,
372 struct ftrace_ops *ops)
373{
374 int first = *list == &ftrace_list_end;
375 add_ftrace_ops(list, ops);
376 if (first)
377 add_ftrace_ops(&ftrace_ops_list, main_ops);
378}
379
380static int remove_ftrace_list_ops(struct ftrace_ops **list,
381 struct ftrace_ops *main_ops,
382 struct ftrace_ops *ops)
383{
384 int ret = remove_ftrace_ops(list, ops);
385 if (!ret && *list == &ftrace_list_end)
386 ret = remove_ftrace_ops(&ftrace_ops_list, main_ops);
387 return ret;
388}
389
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400390static void ftrace_update_trampoline(struct ftrace_ops *ops);
391
Steven Rostedt2b499382011-05-03 22:49:52 -0400392static int __register_ftrace_function(struct ftrace_ops *ops)
393{
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -0500394 if (ops->flags & FTRACE_OPS_FL_DELETED)
395 return -EINVAL;
396
Steven Rostedtb8489142011-05-04 09:27:52 -0400397 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
398 return -EBUSY;
399
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +0900400#ifndef CONFIG_DYNAMIC_FTRACE_WITH_REGS
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400401 /*
402 * If the ftrace_ops specifies SAVE_REGS, then it only can be used
403 * if the arch supports it, or SAVE_REGS_IF_SUPPORTED is also set.
404 * Setting SAVE_REGS_IF_SUPPORTED makes SAVE_REGS irrelevant.
405 */
406 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS &&
407 !(ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED))
408 return -EINVAL;
409
410 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED)
411 ops->flags |= FTRACE_OPS_FL_SAVE_REGS;
412#endif
413
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400414 if (!core_kernel_data((unsigned long)ops))
415 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
416
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -0500417 if (ops->flags & FTRACE_OPS_FL_CONTROL) {
Jiri Olsae2484912012-02-15 15:51:48 +0100418 if (control_ops_alloc(ops))
419 return -ENOMEM;
420 add_ftrace_list_ops(&ftrace_control_list, &control_ops, ops);
Steven Rostedt (Red Hat)fe578ba2014-11-13 19:40:56 -0500421 /* The control_ops needs the trampoline update */
422 ops = &control_ops;
Steven Rostedtb8489142011-05-04 09:27:52 -0400423 } else
424 add_ftrace_ops(&ftrace_ops_list, ops);
425
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400426 ftrace_update_trampoline(ops);
427
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400428 if (ftrace_enabled)
429 update_ftrace_function();
Steven Rostedt3d083392008-05-12 21:20:42 +0200430
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200431 return 0;
432}
433
Ingo Molnare309b412008-05-12 21:20:51 +0200434static int __unregister_ftrace_function(struct ftrace_ops *ops)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200435{
Steven Rostedt2b499382011-05-03 22:49:52 -0400436 int ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200437
Steven Rostedtb8489142011-05-04 09:27:52 -0400438 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
439 return -EBUSY;
440
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -0500441 if (ops->flags & FTRACE_OPS_FL_CONTROL) {
Jiri Olsae2484912012-02-15 15:51:48 +0100442 ret = remove_ftrace_list_ops(&ftrace_control_list,
443 &control_ops, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400444 } else
445 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
446
Steven Rostedt2b499382011-05-03 22:49:52 -0400447 if (ret < 0)
448 return ret;
Steven Rostedtb8489142011-05-04 09:27:52 -0400449
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400450 if (ftrace_enabled)
451 update_ftrace_function();
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200452
Steven Rostedte6ea44e2009-02-14 01:42:44 -0500453 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +0200454}
455
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500456static void ftrace_update_pid_func(void)
457{
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400458 /* Only do something if we are tracing something */
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500459 if (ftrace_trace_function == ftrace_stub)
KOSAKI Motohiro10dd3eb2009-03-06 15:29:04 +0900460 return;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500461
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400462 update_ftrace_function();
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500463}
464
Steven Rostedt493762f2009-03-23 17:12:36 -0400465#ifdef CONFIG_FUNCTION_PROFILER
466struct ftrace_profile {
467 struct hlist_node node;
468 unsigned long ip;
469 unsigned long counter;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400470#ifdef CONFIG_FUNCTION_GRAPH_TRACER
471 unsigned long long time;
Chase Douglase330b3b2010-04-26 14:02:05 -0400472 unsigned long long time_squared;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400473#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400474};
475
476struct ftrace_profile_page {
477 struct ftrace_profile_page *next;
478 unsigned long index;
479 struct ftrace_profile records[];
480};
481
Steven Rostedtcafb1682009-03-24 20:50:39 -0400482struct ftrace_profile_stat {
483 atomic_t disabled;
484 struct hlist_head *hash;
485 struct ftrace_profile_page *pages;
486 struct ftrace_profile_page *start;
487 struct tracer_stat stat;
488};
489
Steven Rostedt493762f2009-03-23 17:12:36 -0400490#define PROFILE_RECORDS_SIZE \
491 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
492
493#define PROFILES_PER_PAGE \
494 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
495
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400496static int ftrace_profile_enabled __read_mostly;
497
498/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
Steven Rostedt493762f2009-03-23 17:12:36 -0400499static DEFINE_MUTEX(ftrace_profile_lock);
500
Steven Rostedtcafb1682009-03-24 20:50:39 -0400501static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
Steven Rostedt493762f2009-03-23 17:12:36 -0400502
Namhyung Kim20079eb2013-04-10 08:55:50 +0900503#define FTRACE_PROFILE_HASH_BITS 10
504#define FTRACE_PROFILE_HASH_SIZE (1 << FTRACE_PROFILE_HASH_BITS)
Steven Rostedt493762f2009-03-23 17:12:36 -0400505
Steven Rostedt493762f2009-03-23 17:12:36 -0400506static void *
507function_stat_next(void *v, int idx)
508{
509 struct ftrace_profile *rec = v;
510 struct ftrace_profile_page *pg;
511
512 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
513
514 again:
Li Zefan0296e422009-06-26 11:15:37 +0800515 if (idx != 0)
516 rec++;
517
Steven Rostedt493762f2009-03-23 17:12:36 -0400518 if ((void *)rec >= (void *)&pg->records[pg->index]) {
519 pg = pg->next;
520 if (!pg)
521 return NULL;
522 rec = &pg->records[0];
523 if (!rec->counter)
524 goto again;
525 }
526
527 return rec;
528}
529
530static void *function_stat_start(struct tracer_stat *trace)
531{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400532 struct ftrace_profile_stat *stat =
533 container_of(trace, struct ftrace_profile_stat, stat);
534
535 if (!stat || !stat->start)
536 return NULL;
537
538 return function_stat_next(&stat->start->records[0], 0);
Steven Rostedt493762f2009-03-23 17:12:36 -0400539}
540
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400541#ifdef CONFIG_FUNCTION_GRAPH_TRACER
542/* function graph compares on total time */
543static int function_stat_cmp(void *p1, void *p2)
544{
545 struct ftrace_profile *a = p1;
546 struct ftrace_profile *b = p2;
547
548 if (a->time < b->time)
549 return -1;
550 if (a->time > b->time)
551 return 1;
552 else
553 return 0;
554}
555#else
556/* not function graph compares against hits */
Steven Rostedt493762f2009-03-23 17:12:36 -0400557static int function_stat_cmp(void *p1, void *p2)
558{
559 struct ftrace_profile *a = p1;
560 struct ftrace_profile *b = p2;
561
562 if (a->counter < b->counter)
563 return -1;
564 if (a->counter > b->counter)
565 return 1;
566 else
567 return 0;
568}
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400569#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400570
571static int function_stat_headers(struct seq_file *m)
572{
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400573#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100574 seq_puts(m, " Function "
575 "Hit Time Avg s^2\n"
576 " -------- "
577 "--- ---- --- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400578#else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100579 seq_puts(m, " Function Hit\n"
580 " -------- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400581#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400582 return 0;
583}
584
585static int function_stat_show(struct seq_file *m, void *v)
586{
587 struct ftrace_profile *rec = v;
588 char str[KSYM_SYMBOL_LEN];
Li Zefan3aaba202010-08-23 16:50:12 +0800589 int ret = 0;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400590#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400591 static struct trace_seq s;
592 unsigned long long avg;
Chase Douglase330b3b2010-04-26 14:02:05 -0400593 unsigned long long stddev;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400594#endif
Li Zefan3aaba202010-08-23 16:50:12 +0800595 mutex_lock(&ftrace_profile_lock);
596
597 /* we raced with function_profile_reset() */
598 if (unlikely(rec->counter == 0)) {
599 ret = -EBUSY;
600 goto out;
601 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400602
603 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400604 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
Steven Rostedt493762f2009-03-23 17:12:36 -0400605
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400606#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100607 seq_puts(m, " ");
Steven Rostedt34886c82009-03-25 21:00:47 -0400608 avg = rec->time;
609 do_div(avg, rec->counter);
610
Chase Douglase330b3b2010-04-26 14:02:05 -0400611 /* Sample standard deviation (s^2) */
612 if (rec->counter <= 1)
613 stddev = 0;
614 else {
Juri Lelli52d85d72013-06-12 12:03:18 +0200615 /*
616 * Apply Welford's method:
617 * s^2 = 1 / (n * (n-1)) * (n * \Sum (x_i)^2 - (\Sum x_i)^2)
618 */
619 stddev = rec->counter * rec->time_squared -
620 rec->time * rec->time;
621
Chase Douglase330b3b2010-04-26 14:02:05 -0400622 /*
623 * Divide only 1000 for ns^2 -> us^2 conversion.
624 * trace_print_graph_duration will divide 1000 again.
625 */
Juri Lelli52d85d72013-06-12 12:03:18 +0200626 do_div(stddev, rec->counter * (rec->counter - 1) * 1000);
Chase Douglase330b3b2010-04-26 14:02:05 -0400627 }
628
Steven Rostedt34886c82009-03-25 21:00:47 -0400629 trace_seq_init(&s);
630 trace_print_graph_duration(rec->time, &s);
631 trace_seq_puts(&s, " ");
632 trace_print_graph_duration(avg, &s);
Chase Douglase330b3b2010-04-26 14:02:05 -0400633 trace_seq_puts(&s, " ");
634 trace_print_graph_duration(stddev, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400635 trace_print_seq(m, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400636#endif
637 seq_putc(m, '\n');
Li Zefan3aaba202010-08-23 16:50:12 +0800638out:
639 mutex_unlock(&ftrace_profile_lock);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400640
Li Zefan3aaba202010-08-23 16:50:12 +0800641 return ret;
Steven Rostedt493762f2009-03-23 17:12:36 -0400642}
643
Steven Rostedtcafb1682009-03-24 20:50:39 -0400644static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400645{
646 struct ftrace_profile_page *pg;
647
Steven Rostedtcafb1682009-03-24 20:50:39 -0400648 pg = stat->pages = stat->start;
Steven Rostedt493762f2009-03-23 17:12:36 -0400649
650 while (pg) {
651 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
652 pg->index = 0;
653 pg = pg->next;
654 }
655
Steven Rostedtcafb1682009-03-24 20:50:39 -0400656 memset(stat->hash, 0,
Steven Rostedt493762f2009-03-23 17:12:36 -0400657 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
658}
659
Steven Rostedtcafb1682009-03-24 20:50:39 -0400660int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400661{
662 struct ftrace_profile_page *pg;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400663 int functions;
664 int pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400665 int i;
666
667 /* If we already allocated, do nothing */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400668 if (stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400669 return 0;
670
Steven Rostedtcafb1682009-03-24 20:50:39 -0400671 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
672 if (!stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400673 return -ENOMEM;
674
Steven Rostedt318e0a72009-03-25 20:06:34 -0400675#ifdef CONFIG_DYNAMIC_FTRACE
676 functions = ftrace_update_tot_cnt;
677#else
678 /*
679 * We do not know the number of functions that exist because
680 * dynamic tracing is what counts them. With past experience
681 * we have around 20K functions. That should be more than enough.
682 * It is highly unlikely we will execute every function in
683 * the kernel.
684 */
685 functions = 20000;
686#endif
687
Steven Rostedtcafb1682009-03-24 20:50:39 -0400688 pg = stat->start = stat->pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400689
Steven Rostedt318e0a72009-03-25 20:06:34 -0400690 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
691
Namhyung Kim39e30cd2013-04-01 21:46:24 +0900692 for (i = 1; i < pages; i++) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400693 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400694 if (!pg->next)
Steven Rostedt318e0a72009-03-25 20:06:34 -0400695 goto out_free;
Steven Rostedt493762f2009-03-23 17:12:36 -0400696 pg = pg->next;
697 }
698
699 return 0;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400700
701 out_free:
702 pg = stat->start;
703 while (pg) {
704 unsigned long tmp = (unsigned long)pg;
705
706 pg = pg->next;
707 free_page(tmp);
708 }
709
Steven Rostedt318e0a72009-03-25 20:06:34 -0400710 stat->pages = NULL;
711 stat->start = NULL;
712
713 return -ENOMEM;
Steven Rostedt493762f2009-03-23 17:12:36 -0400714}
715
Steven Rostedtcafb1682009-03-24 20:50:39 -0400716static int ftrace_profile_init_cpu(int cpu)
Steven Rostedt493762f2009-03-23 17:12:36 -0400717{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400718 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400719 int size;
720
Steven Rostedtcafb1682009-03-24 20:50:39 -0400721 stat = &per_cpu(ftrace_profile_stats, cpu);
722
723 if (stat->hash) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400724 /* If the profile is already created, simply reset it */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400725 ftrace_profile_reset(stat);
Steven Rostedt493762f2009-03-23 17:12:36 -0400726 return 0;
727 }
728
729 /*
730 * We are profiling all functions, but usually only a few thousand
731 * functions are hit. We'll make a hash of 1024 items.
732 */
733 size = FTRACE_PROFILE_HASH_SIZE;
734
Steven Rostedtcafb1682009-03-24 20:50:39 -0400735 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400736
Steven Rostedtcafb1682009-03-24 20:50:39 -0400737 if (!stat->hash)
Steven Rostedt493762f2009-03-23 17:12:36 -0400738 return -ENOMEM;
739
Steven Rostedt318e0a72009-03-25 20:06:34 -0400740 /* Preallocate the function profiling pages */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400741 if (ftrace_profile_pages_init(stat) < 0) {
742 kfree(stat->hash);
743 stat->hash = NULL;
Steven Rostedt493762f2009-03-23 17:12:36 -0400744 return -ENOMEM;
745 }
746
747 return 0;
748}
749
Steven Rostedtcafb1682009-03-24 20:50:39 -0400750static int ftrace_profile_init(void)
751{
752 int cpu;
753 int ret = 0;
754
Miao Xiec4602c12013-12-16 15:20:01 +0800755 for_each_possible_cpu(cpu) {
Steven Rostedtcafb1682009-03-24 20:50:39 -0400756 ret = ftrace_profile_init_cpu(cpu);
757 if (ret)
758 break;
759 }
760
761 return ret;
762}
763
Steven Rostedt493762f2009-03-23 17:12:36 -0400764/* interrupts must be disabled */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400765static struct ftrace_profile *
766ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400767{
768 struct ftrace_profile *rec;
769 struct hlist_head *hhd;
Steven Rostedt493762f2009-03-23 17:12:36 -0400770 unsigned long key;
771
Namhyung Kim20079eb2013-04-10 08:55:50 +0900772 key = hash_long(ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400773 hhd = &stat->hash[key];
Steven Rostedt493762f2009-03-23 17:12:36 -0400774
775 if (hlist_empty(hhd))
776 return NULL;
777
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400778 hlist_for_each_entry_rcu_notrace(rec, hhd, node) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400779 if (rec->ip == ip)
780 return rec;
781 }
782
783 return NULL;
784}
785
Steven Rostedtcafb1682009-03-24 20:50:39 -0400786static void ftrace_add_profile(struct ftrace_profile_stat *stat,
787 struct ftrace_profile *rec)
Steven Rostedt493762f2009-03-23 17:12:36 -0400788{
789 unsigned long key;
790
Namhyung Kim20079eb2013-04-10 08:55:50 +0900791 key = hash_long(rec->ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400792 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
Steven Rostedt493762f2009-03-23 17:12:36 -0400793}
794
Steven Rostedt318e0a72009-03-25 20:06:34 -0400795/*
796 * The memory is already allocated, this simply finds a new record to use.
797 */
Steven Rostedt493762f2009-03-23 17:12:36 -0400798static struct ftrace_profile *
Steven Rostedt318e0a72009-03-25 20:06:34 -0400799ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400800{
801 struct ftrace_profile *rec = NULL;
802
Steven Rostedt318e0a72009-03-25 20:06:34 -0400803 /* prevent recursion (from NMIs) */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400804 if (atomic_inc_return(&stat->disabled) != 1)
Steven Rostedt493762f2009-03-23 17:12:36 -0400805 goto out;
806
Steven Rostedt493762f2009-03-23 17:12:36 -0400807 /*
Steven Rostedt318e0a72009-03-25 20:06:34 -0400808 * Try to find the function again since an NMI
809 * could have added it
Steven Rostedt493762f2009-03-23 17:12:36 -0400810 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400811 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400812 if (rec)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400813 goto out;
Steven Rostedt493762f2009-03-23 17:12:36 -0400814
Steven Rostedtcafb1682009-03-24 20:50:39 -0400815 if (stat->pages->index == PROFILES_PER_PAGE) {
816 if (!stat->pages->next)
817 goto out;
818 stat->pages = stat->pages->next;
Steven Rostedt493762f2009-03-23 17:12:36 -0400819 }
820
Steven Rostedtcafb1682009-03-24 20:50:39 -0400821 rec = &stat->pages->records[stat->pages->index++];
Steven Rostedt493762f2009-03-23 17:12:36 -0400822 rec->ip = ip;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400823 ftrace_add_profile(stat, rec);
Steven Rostedt493762f2009-03-23 17:12:36 -0400824
Steven Rostedt493762f2009-03-23 17:12:36 -0400825 out:
Steven Rostedtcafb1682009-03-24 20:50:39 -0400826 atomic_dec(&stat->disabled);
Steven Rostedt493762f2009-03-23 17:12:36 -0400827
828 return rec;
829}
830
Steven Rostedt493762f2009-03-23 17:12:36 -0400831static void
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400832function_profile_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400833 struct ftrace_ops *ops, struct pt_regs *regs)
Steven Rostedt493762f2009-03-23 17:12:36 -0400834{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400835 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400836 struct ftrace_profile *rec;
837 unsigned long flags;
Steven Rostedt493762f2009-03-23 17:12:36 -0400838
839 if (!ftrace_profile_enabled)
840 return;
841
Steven Rostedt493762f2009-03-23 17:12:36 -0400842 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400843
Christoph Lameterbdffd892014-04-29 14:17:40 -0500844 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400845 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400846 goto out;
847
848 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400849 if (!rec) {
Steven Rostedt318e0a72009-03-25 20:06:34 -0400850 rec = ftrace_profile_alloc(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400851 if (!rec)
852 goto out;
853 }
854
855 rec->counter++;
856 out:
857 local_irq_restore(flags);
858}
859
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400860#ifdef CONFIG_FUNCTION_GRAPH_TRACER
861static int profile_graph_entry(struct ftrace_graph_ent *trace)
862{
Steven Rostedta1e2e312011-08-09 12:50:46 -0400863 function_profile_call(trace->func, 0, NULL, NULL);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400864 return 1;
865}
866
867static void profile_graph_return(struct ftrace_graph_ret *trace)
868{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400869 struct ftrace_profile_stat *stat;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400870 unsigned long long calltime;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400871 struct ftrace_profile *rec;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400872 unsigned long flags;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400873
874 local_irq_save(flags);
Christoph Lameterbdffd892014-04-29 14:17:40 -0500875 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400876 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400877 goto out;
878
Steven Rostedt37e44bc2010-04-27 21:04:24 -0400879 /* If the calltime was zero'd ignore it */
880 if (!trace->calltime)
881 goto out;
882
Steven Rostedta2a16d62009-03-24 23:17:58 -0400883 calltime = trace->rettime - trace->calltime;
884
885 if (!(trace_flags & TRACE_ITER_GRAPH_TIME)) {
886 int index;
887
888 index = trace->depth;
889
890 /* Append this call time to the parent time to subtract */
891 if (index)
892 current->ret_stack[index - 1].subtime += calltime;
893
894 if (current->ret_stack[index].subtime < calltime)
895 calltime -= current->ret_stack[index].subtime;
896 else
897 calltime = 0;
898 }
899
Steven Rostedtcafb1682009-03-24 20:50:39 -0400900 rec = ftrace_find_profiled_func(stat, trace->func);
Chase Douglase330b3b2010-04-26 14:02:05 -0400901 if (rec) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400902 rec->time += calltime;
Chase Douglase330b3b2010-04-26 14:02:05 -0400903 rec->time_squared += calltime * calltime;
904 }
Steven Rostedta2a16d62009-03-24 23:17:58 -0400905
Steven Rostedtcafb1682009-03-24 20:50:39 -0400906 out:
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400907 local_irq_restore(flags);
908}
909
910static int register_ftrace_profiler(void)
911{
912 return register_ftrace_graph(&profile_graph_return,
913 &profile_graph_entry);
914}
915
916static void unregister_ftrace_profiler(void)
917{
918 unregister_ftrace_graph();
919}
920#else
Paul McQuadebd38c0e2011-05-31 20:51:55 +0100921static struct ftrace_ops ftrace_profile_ops __read_mostly = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400922 .func = function_profile_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900923 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400924 INIT_OPS_HASH(ftrace_profile_ops)
Steven Rostedt493762f2009-03-23 17:12:36 -0400925};
926
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400927static int register_ftrace_profiler(void)
928{
929 return register_ftrace_function(&ftrace_profile_ops);
930}
931
932static void unregister_ftrace_profiler(void)
933{
934 unregister_ftrace_function(&ftrace_profile_ops);
935}
936#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
937
Steven Rostedt493762f2009-03-23 17:12:36 -0400938static ssize_t
939ftrace_profile_write(struct file *filp, const char __user *ubuf,
940 size_t cnt, loff_t *ppos)
941{
942 unsigned long val;
Steven Rostedt493762f2009-03-23 17:12:36 -0400943 int ret;
944
Peter Huewe22fe9b52011-06-07 21:58:27 +0200945 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
946 if (ret)
Steven Rostedt493762f2009-03-23 17:12:36 -0400947 return ret;
948
949 val = !!val;
950
951 mutex_lock(&ftrace_profile_lock);
952 if (ftrace_profile_enabled ^ val) {
953 if (val) {
954 ret = ftrace_profile_init();
955 if (ret < 0) {
956 cnt = ret;
957 goto out;
958 }
959
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400960 ret = register_ftrace_profiler();
961 if (ret < 0) {
962 cnt = ret;
963 goto out;
964 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400965 ftrace_profile_enabled = 1;
966 } else {
967 ftrace_profile_enabled = 0;
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400968 /*
969 * unregister_ftrace_profiler calls stop_machine
970 * so this acts like an synchronize_sched.
971 */
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400972 unregister_ftrace_profiler();
Steven Rostedt493762f2009-03-23 17:12:36 -0400973 }
974 }
975 out:
976 mutex_unlock(&ftrace_profile_lock);
977
Jiri Olsacf8517c2009-10-23 19:36:16 -0400978 *ppos += cnt;
Steven Rostedt493762f2009-03-23 17:12:36 -0400979
980 return cnt;
981}
982
983static ssize_t
984ftrace_profile_read(struct file *filp, char __user *ubuf,
985 size_t cnt, loff_t *ppos)
986{
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400987 char buf[64]; /* big enough to hold a number */
Steven Rostedt493762f2009-03-23 17:12:36 -0400988 int r;
989
990 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
991 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
992}
993
994static const struct file_operations ftrace_profile_fops = {
995 .open = tracing_open_generic,
996 .read = ftrace_profile_read,
997 .write = ftrace_profile_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200998 .llseek = default_llseek,
Steven Rostedt493762f2009-03-23 17:12:36 -0400999};
1000
Steven Rostedtcafb1682009-03-24 20:50:39 -04001001/* used to initialize the real stat files */
1002static struct tracer_stat function_stats __initdata = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001003 .name = "functions",
1004 .stat_start = function_stat_start,
1005 .stat_next = function_stat_next,
1006 .stat_cmp = function_stat_cmp,
1007 .stat_headers = function_stat_headers,
1008 .stat_show = function_stat_show
Steven Rostedtcafb1682009-03-24 20:50:39 -04001009};
1010
Steven Rostedt6ab5d662009-06-04 00:55:45 -04001011static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001012{
Steven Rostedtcafb1682009-03-24 20:50:39 -04001013 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -04001014 struct dentry *entry;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001015 char *name;
Steven Rostedt493762f2009-03-23 17:12:36 -04001016 int ret;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001017 int cpu;
Steven Rostedt493762f2009-03-23 17:12:36 -04001018
Steven Rostedtcafb1682009-03-24 20:50:39 -04001019 for_each_possible_cpu(cpu) {
1020 stat = &per_cpu(ftrace_profile_stats, cpu);
1021
1022 /* allocate enough for function name + cpu number */
1023 name = kmalloc(32, GFP_KERNEL);
1024 if (!name) {
1025 /*
1026 * The files created are permanent, if something happens
1027 * we still do not free memory.
1028 */
Steven Rostedtcafb1682009-03-24 20:50:39 -04001029 WARN(1,
1030 "Could not allocate stat file for cpu %d\n",
1031 cpu);
1032 return;
1033 }
1034 stat->stat = function_stats;
1035 snprintf(name, 32, "function%d", cpu);
1036 stat->stat.name = name;
1037 ret = register_stat_tracer(&stat->stat);
1038 if (ret) {
1039 WARN(1,
1040 "Could not register function stat for cpu %d\n",
1041 cpu);
1042 kfree(name);
1043 return;
1044 }
Steven Rostedt493762f2009-03-23 17:12:36 -04001045 }
1046
1047 entry = debugfs_create_file("function_profile_enabled", 0644,
1048 d_tracer, NULL, &ftrace_profile_fops);
1049 if (!entry)
1050 pr_warning("Could not create debugfs "
1051 "'function_profile_enabled' entry\n");
1052}
1053
1054#else /* CONFIG_FUNCTION_PROFILER */
Steven Rostedt6ab5d662009-06-04 00:55:45 -04001055static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001056{
1057}
1058#endif /* CONFIG_FUNCTION_PROFILER */
1059
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001060static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1061
Steven Rostedt3d083392008-05-12 21:20:42 +02001062#ifdef CONFIG_DYNAMIC_FTRACE
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001063
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001064static struct ftrace_ops *removed_ops;
1065
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04001066/*
1067 * Set when doing a global update, like enabling all recs or disabling them.
1068 * It is not set when just updating a single ftrace_ops.
1069 */
1070static bool update_all_ops;
1071
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001072#ifndef CONFIG_FTRACE_MCOUNT_RECORD
Steven Rostedtcb7be3b2008-10-23 09:33:05 -04001073# error Dynamic ftrace depends on MCOUNT_RECORD
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001074#endif
1075
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001076static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
1077
Steven Rostedtb6887d72009-02-17 12:32:04 -05001078struct ftrace_func_probe {
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001079 struct hlist_node node;
Steven Rostedtb6887d72009-02-17 12:32:04 -05001080 struct ftrace_probe_ops *ops;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001081 unsigned long flags;
1082 unsigned long ip;
1083 void *data;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04001084 struct list_head free_list;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001085};
1086
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001087struct ftrace_func_entry {
1088 struct hlist_node hlist;
1089 unsigned long ip;
1090};
1091
1092struct ftrace_hash {
1093 unsigned long size_bits;
1094 struct hlist_head *buckets;
1095 unsigned long count;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001096 struct rcu_head rcu;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001097};
1098
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001099/*
1100 * We make these constant because no one should touch them,
1101 * but they are used as the default "empty hash", to avoid allocating
1102 * it all the time. These are in a read only section such that if
1103 * anyone does try to modify it, it will cause an exception.
1104 */
1105static const struct hlist_head empty_buckets[1];
1106static const struct ftrace_hash empty_hash = {
1107 .buckets = (struct hlist_head *)empty_buckets,
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001108};
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001109#define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02001110
Steven Rostedt2b499382011-05-03 22:49:52 -04001111static struct ftrace_ops global_ops = {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001112 .func = ftrace_stub,
1113 .local_hash.notrace_hash = EMPTY_HASH,
1114 .local_hash.filter_hash = EMPTY_HASH,
1115 INIT_OPS_HASH(global_ops)
1116 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
1117 FTRACE_OPS_FL_INITIALIZED,
Steven Rostedtf45948e2011-05-02 12:29:25 -04001118};
1119
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001120/*
1121 * This is used by __kernel_text_address() to return true if the
1122 * the address is on a dynamically allocated trampoline that would
1123 * not return true for either core_kernel_text() or
1124 * is_module_text_address().
1125 */
1126bool is_ftrace_trampoline(unsigned long addr)
1127{
1128 struct ftrace_ops *op;
1129 bool ret = false;
1130
1131 /*
1132 * Some of the ops may be dynamically allocated,
1133 * they are freed after a synchronize_sched().
1134 */
1135 preempt_disable_notrace();
1136
1137 do_for_each_ftrace_op(op, ftrace_ops_list) {
1138 /*
1139 * This is to check for dynamically allocated trampolines.
1140 * Trampolines that are in kernel text will have
1141 * core_kernel_text() return true.
1142 */
1143 if (op->trampoline && op->trampoline_size)
1144 if (addr >= op->trampoline &&
1145 addr < op->trampoline + op->trampoline_size) {
1146 ret = true;
1147 goto out;
1148 }
1149 } while_for_each_ftrace_op(op);
1150
1151 out:
1152 preempt_enable_notrace();
1153
1154 return ret;
1155}
1156
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001157struct ftrace_page {
1158 struct ftrace_page *next;
Steven Rostedta7900872011-12-16 16:23:44 -05001159 struct dyn_ftrace *records;
Steven Rostedt431aa3f2009-01-06 12:43:01 -05001160 int index;
Steven Rostedta7900872011-12-16 16:23:44 -05001161 int size;
David Milleraa5e5ce2008-05-13 22:06:56 -07001162};
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001163
Steven Rostedta7900872011-12-16 16:23:44 -05001164#define ENTRY_SIZE sizeof(struct dyn_ftrace)
1165#define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001166
1167/* estimate from running different kernels */
1168#define NR_TO_INIT 10000
1169
1170static struct ftrace_page *ftrace_pages_start;
1171static struct ftrace_page *ftrace_pages;
1172
Steven Rostedt (Red Hat)68f40962014-05-01 12:44:50 -04001173static bool __always_inline ftrace_hash_empty(struct ftrace_hash *hash)
Steven Rostedt06a51d92011-12-19 19:07:36 -05001174{
1175 return !hash || !hash->count;
1176}
1177
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001178static struct ftrace_func_entry *
1179ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1180{
1181 unsigned long key;
1182 struct ftrace_func_entry *entry;
1183 struct hlist_head *hhd;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001184
Steven Rostedt06a51d92011-12-19 19:07:36 -05001185 if (ftrace_hash_empty(hash))
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001186 return NULL;
1187
1188 if (hash->size_bits > 0)
1189 key = hash_long(ip, hash->size_bits);
1190 else
1191 key = 0;
1192
1193 hhd = &hash->buckets[key];
1194
Steven Rostedt1bb539c2013-05-28 14:38:43 -04001195 hlist_for_each_entry_rcu_notrace(entry, hhd, hlist) {
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001196 if (entry->ip == ip)
1197 return entry;
1198 }
1199 return NULL;
1200}
1201
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001202static void __add_hash_entry(struct ftrace_hash *hash,
1203 struct ftrace_func_entry *entry)
1204{
1205 struct hlist_head *hhd;
1206 unsigned long key;
1207
1208 if (hash->size_bits)
1209 key = hash_long(entry->ip, hash->size_bits);
1210 else
1211 key = 0;
1212
1213 hhd = &hash->buckets[key];
1214 hlist_add_head(&entry->hlist, hhd);
1215 hash->count++;
1216}
1217
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001218static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1219{
1220 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001221
1222 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1223 if (!entry)
1224 return -ENOMEM;
1225
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001226 entry->ip = ip;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001227 __add_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001228
1229 return 0;
1230}
1231
1232static void
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001233free_hash_entry(struct ftrace_hash *hash,
1234 struct ftrace_func_entry *entry)
1235{
1236 hlist_del(&entry->hlist);
1237 kfree(entry);
1238 hash->count--;
1239}
1240
1241static void
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001242remove_hash_entry(struct ftrace_hash *hash,
1243 struct ftrace_func_entry *entry)
1244{
1245 hlist_del(&entry->hlist);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001246 hash->count--;
1247}
1248
1249static void ftrace_hash_clear(struct ftrace_hash *hash)
1250{
1251 struct hlist_head *hhd;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001252 struct hlist_node *tn;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001253 struct ftrace_func_entry *entry;
1254 int size = 1 << hash->size_bits;
1255 int i;
1256
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001257 if (!hash->count)
1258 return;
1259
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001260 for (i = 0; i < size; i++) {
1261 hhd = &hash->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001262 hlist_for_each_entry_safe(entry, tn, hhd, hlist)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001263 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001264 }
1265 FTRACE_WARN_ON(hash->count);
1266}
1267
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001268static void free_ftrace_hash(struct ftrace_hash *hash)
1269{
1270 if (!hash || hash == EMPTY_HASH)
1271 return;
1272 ftrace_hash_clear(hash);
1273 kfree(hash->buckets);
1274 kfree(hash);
1275}
1276
Steven Rostedt07fd5512011-05-05 18:03:47 -04001277static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1278{
1279 struct ftrace_hash *hash;
1280
1281 hash = container_of(rcu, struct ftrace_hash, rcu);
1282 free_ftrace_hash(hash);
1283}
1284
1285static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1286{
1287 if (!hash || hash == EMPTY_HASH)
1288 return;
1289 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1290}
1291
Jiri Olsa5500fa52012-02-15 15:51:54 +01001292void ftrace_free_filter(struct ftrace_ops *ops)
1293{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09001294 ftrace_ops_init(ops);
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001295 free_ftrace_hash(ops->func_hash->filter_hash);
1296 free_ftrace_hash(ops->func_hash->notrace_hash);
Jiri Olsa5500fa52012-02-15 15:51:54 +01001297}
1298
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001299static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1300{
1301 struct ftrace_hash *hash;
1302 int size;
1303
1304 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1305 if (!hash)
1306 return NULL;
1307
1308 size = 1 << size_bits;
Thomas Meyer47b0edc2011-11-29 22:08:00 +01001309 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001310
1311 if (!hash->buckets) {
1312 kfree(hash);
1313 return NULL;
1314 }
1315
1316 hash->size_bits = size_bits;
1317
1318 return hash;
1319}
1320
1321static struct ftrace_hash *
1322alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1323{
1324 struct ftrace_func_entry *entry;
1325 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001326 int size;
1327 int ret;
1328 int i;
1329
1330 new_hash = alloc_ftrace_hash(size_bits);
1331 if (!new_hash)
1332 return NULL;
1333
1334 /* Empty hash? */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001335 if (ftrace_hash_empty(hash))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001336 return new_hash;
1337
1338 size = 1 << hash->size_bits;
1339 for (i = 0; i < size; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001340 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001341 ret = add_hash_entry(new_hash, entry->ip);
1342 if (ret < 0)
1343 goto free_hash;
1344 }
1345 }
1346
1347 FTRACE_WARN_ON(new_hash->count != hash->count);
1348
1349 return new_hash;
1350
1351 free_hash:
1352 free_ftrace_hash(new_hash);
1353 return NULL;
1354}
1355
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001356static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001357ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001358static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001359ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001360
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001361static int
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001362ftrace_hash_move(struct ftrace_ops *ops, int enable,
1363 struct ftrace_hash **dst, struct ftrace_hash *src)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001364{
1365 struct ftrace_func_entry *entry;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001366 struct hlist_node *tn;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001367 struct hlist_head *hhd;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001368 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001369 int size = src->count;
1370 int bits = 0;
1371 int i;
1372
1373 /*
1374 * If the new source is empty, just free dst and assign it
1375 * the empty_hash.
1376 */
1377 if (!src->count) {
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001378 new_hash = EMPTY_HASH;
1379 goto update;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001380 }
1381
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001382 /*
1383 * Make the hash size about 1/2 the # found
1384 */
1385 for (size /= 2; size; size >>= 1)
1386 bits++;
1387
1388 /* Don't allocate too much */
1389 if (bits > FTRACE_HASH_MAX_BITS)
1390 bits = FTRACE_HASH_MAX_BITS;
1391
Steven Rostedt07fd5512011-05-05 18:03:47 -04001392 new_hash = alloc_ftrace_hash(bits);
1393 if (!new_hash)
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001394 return -ENOMEM;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001395
1396 size = 1 << src->size_bits;
1397 for (i = 0; i < size; i++) {
1398 hhd = &src->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001399 hlist_for_each_entry_safe(entry, tn, hhd, hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001400 remove_hash_entry(src, entry);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001401 __add_hash_entry(new_hash, entry);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001402 }
1403 }
1404
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001405update:
1406 /*
1407 * Remove the current set, update the hash and add
1408 * them back.
1409 */
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001410 ftrace_hash_rec_disable_modify(ops, enable);
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001411
Steven Rostedt07fd5512011-05-05 18:03:47 -04001412 rcu_assign_pointer(*dst, new_hash);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001413
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001414 ftrace_hash_rec_enable_modify(ops, enable);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001415
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001416 return 0;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001417}
1418
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001419static bool hash_contains_ip(unsigned long ip,
1420 struct ftrace_ops_hash *hash)
1421{
1422 /*
1423 * The function record is a match if it exists in the filter
1424 * hash and not in the notrace hash. Note, an emty hash is
1425 * considered a match for the filter hash, but an empty
1426 * notrace hash is considered not in the notrace hash.
1427 */
1428 return (ftrace_hash_empty(hash->filter_hash) ||
1429 ftrace_lookup_ip(hash->filter_hash, ip)) &&
1430 (ftrace_hash_empty(hash->notrace_hash) ||
1431 !ftrace_lookup_ip(hash->notrace_hash, ip));
1432}
1433
Steven Rostedt265c8312009-02-13 12:43:56 -05001434/*
Steven Rostedtb8489142011-05-04 09:27:52 -04001435 * Test the hashes for this ops to see if we want to call
1436 * the ops->func or not.
1437 *
1438 * It's a match if the ip is in the ops->filter_hash or
1439 * the filter_hash does not exist or is empty,
1440 * AND
1441 * the ip is not in the ops->notrace_hash.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04001442 *
1443 * This needs to be called with preemption disabled as
1444 * the hashes are freed with call_rcu_sched().
Steven Rostedtb8489142011-05-04 09:27:52 -04001445 */
1446static int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001447ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04001448{
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001449 struct ftrace_ops_hash hash;
Steven Rostedtb8489142011-05-04 09:27:52 -04001450 int ret;
1451
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001452#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1453 /*
1454 * There's a small race when adding ops that the ftrace handler
1455 * that wants regs, may be called without them. We can not
1456 * allow that handler to be called if regs is NULL.
1457 */
1458 if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS))
1459 return 0;
1460#endif
1461
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001462 hash.filter_hash = rcu_dereference_raw_notrace(ops->func_hash->filter_hash);
1463 hash.notrace_hash = rcu_dereference_raw_notrace(ops->func_hash->notrace_hash);
Steven Rostedtb8489142011-05-04 09:27:52 -04001464
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001465 if (hash_contains_ip(ip, &hash))
Steven Rostedtb8489142011-05-04 09:27:52 -04001466 ret = 1;
1467 else
1468 ret = 0;
Steven Rostedtb8489142011-05-04 09:27:52 -04001469
1470 return ret;
1471}
1472
1473/*
Steven Rostedt265c8312009-02-13 12:43:56 -05001474 * This is a double for. Do not use 'break' to break out of the loop,
1475 * you must use a goto.
1476 */
1477#define do_for_each_ftrace_rec(pg, rec) \
1478 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1479 int _____i; \
1480 for (_____i = 0; _____i < pg->index; _____i++) { \
1481 rec = &pg->records[_____i];
1482
1483#define while_for_each_ftrace_rec() \
1484 } \
1485 }
Abhishek Sagarecea6562008-06-21 23:47:53 +05301486
Steven Rostedt5855fea2011-12-16 19:27:42 -05001487
1488static int ftrace_cmp_recs(const void *a, const void *b)
1489{
Steven Rostedta650e022012-04-25 13:48:13 -04001490 const struct dyn_ftrace *key = a;
1491 const struct dyn_ftrace *rec = b;
Steven Rostedt5855fea2011-12-16 19:27:42 -05001492
Steven Rostedta650e022012-04-25 13:48:13 -04001493 if (key->flags < rec->ip)
Steven Rostedt5855fea2011-12-16 19:27:42 -05001494 return -1;
Steven Rostedta650e022012-04-25 13:48:13 -04001495 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1496 return 1;
1497 return 0;
1498}
1499
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001500static unsigned long ftrace_location_range(unsigned long start, unsigned long end)
Steven Rostedta650e022012-04-25 13:48:13 -04001501{
1502 struct ftrace_page *pg;
1503 struct dyn_ftrace *rec;
1504 struct dyn_ftrace key;
1505
1506 key.ip = start;
1507 key.flags = end; /* overload flags, as it is unsigned long */
1508
1509 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1510 if (end < pg->records[0].ip ||
1511 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1512 continue;
1513 rec = bsearch(&key, pg->records, pg->index,
1514 sizeof(struct dyn_ftrace),
1515 ftrace_cmp_recs);
1516 if (rec)
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001517 return rec->ip;
Steven Rostedta650e022012-04-25 13:48:13 -04001518 }
1519
Steven Rostedt5855fea2011-12-16 19:27:42 -05001520 return 0;
1521}
1522
Steven Rostedtc88fd862011-08-16 09:53:39 -04001523/**
1524 * ftrace_location - return true if the ip giving is a traced location
1525 * @ip: the instruction pointer to check
1526 *
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001527 * Returns rec->ip if @ip given is a pointer to a ftrace location.
Steven Rostedtc88fd862011-08-16 09:53:39 -04001528 * That is, the instruction that is either a NOP or call to
1529 * the function tracer. It checks the ftrace internal tables to
1530 * determine if the address belongs or not.
1531 */
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001532unsigned long ftrace_location(unsigned long ip)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001533{
Steven Rostedta650e022012-04-25 13:48:13 -04001534 return ftrace_location_range(ip, ip);
1535}
Steven Rostedtc88fd862011-08-16 09:53:39 -04001536
Steven Rostedta650e022012-04-25 13:48:13 -04001537/**
1538 * ftrace_text_reserved - return true if range contains an ftrace location
1539 * @start: start of range to search
1540 * @end: end of range to search (inclusive). @end points to the last byte to check.
1541 *
1542 * Returns 1 if @start and @end contains a ftrace location.
1543 * That is, the instruction that is either a NOP or call to
1544 * the function tracer. It checks the ftrace internal tables to
1545 * determine if the address belongs or not.
1546 */
Sasha Levind88471c2013-01-09 18:09:20 -05001547int ftrace_text_reserved(const void *start, const void *end)
Steven Rostedta650e022012-04-25 13:48:13 -04001548{
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001549 unsigned long ret;
1550
1551 ret = ftrace_location_range((unsigned long)start,
1552 (unsigned long)end);
1553
1554 return (int)!!ret;
Steven Rostedtc88fd862011-08-16 09:53:39 -04001555}
1556
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001557/* Test if ops registered to this rec needs regs */
1558static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec)
1559{
1560 struct ftrace_ops *ops;
1561 bool keep_regs = false;
1562
1563 for (ops = ftrace_ops_list;
1564 ops != &ftrace_list_end; ops = ops->next) {
1565 /* pass rec in as regs to have non-NULL val */
1566 if (ftrace_ops_test(ops, rec->ip, rec)) {
1567 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1568 keep_regs = true;
1569 break;
1570 }
1571 }
1572 }
1573
1574 return keep_regs;
1575}
1576
Steven Rostedted926f92011-05-03 13:25:24 -04001577static void __ftrace_hash_rec_update(struct ftrace_ops *ops,
1578 int filter_hash,
1579 bool inc)
1580{
1581 struct ftrace_hash *hash;
1582 struct ftrace_hash *other_hash;
1583 struct ftrace_page *pg;
1584 struct dyn_ftrace *rec;
1585 int count = 0;
1586 int all = 0;
1587
1588 /* Only update if the ops has been registered */
1589 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1590 return;
1591
1592 /*
1593 * In the filter_hash case:
1594 * If the count is zero, we update all records.
1595 * Otherwise we just update the items in the hash.
1596 *
1597 * In the notrace_hash case:
1598 * We enable the update in the hash.
1599 * As disabling notrace means enabling the tracing,
1600 * and enabling notrace means disabling, the inc variable
1601 * gets inversed.
1602 */
1603 if (filter_hash) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001604 hash = ops->func_hash->filter_hash;
1605 other_hash = ops->func_hash->notrace_hash;
Steven Rostedt06a51d92011-12-19 19:07:36 -05001606 if (ftrace_hash_empty(hash))
Steven Rostedted926f92011-05-03 13:25:24 -04001607 all = 1;
1608 } else {
1609 inc = !inc;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001610 hash = ops->func_hash->notrace_hash;
1611 other_hash = ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04001612 /*
1613 * If the notrace hash has no items,
1614 * then there's nothing to do.
1615 */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001616 if (ftrace_hash_empty(hash))
Steven Rostedted926f92011-05-03 13:25:24 -04001617 return;
1618 }
1619
1620 do_for_each_ftrace_rec(pg, rec) {
1621 int in_other_hash = 0;
1622 int in_hash = 0;
1623 int match = 0;
1624
1625 if (all) {
1626 /*
1627 * Only the filter_hash affects all records.
1628 * Update if the record is not in the notrace hash.
1629 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001630 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
Steven Rostedted926f92011-05-03 13:25:24 -04001631 match = 1;
1632 } else {
Steven Rostedt06a51d92011-12-19 19:07:36 -05001633 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1634 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
Steven Rostedted926f92011-05-03 13:25:24 -04001635
1636 /*
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001637 * If filter_hash is set, we want to match all functions
1638 * that are in the hash but not in the other hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001639 *
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001640 * If filter_hash is not set, then we are decrementing.
1641 * That means we match anything that is in the hash
1642 * and also in the other_hash. That is, we need to turn
1643 * off functions in the other hash because they are disabled
1644 * by this hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001645 */
1646 if (filter_hash && in_hash && !in_other_hash)
1647 match = 1;
1648 else if (!filter_hash && in_hash &&
Steven Rostedt06a51d92011-12-19 19:07:36 -05001649 (in_other_hash || ftrace_hash_empty(other_hash)))
Steven Rostedted926f92011-05-03 13:25:24 -04001650 match = 1;
1651 }
1652 if (!match)
1653 continue;
1654
1655 if (inc) {
1656 rec->flags++;
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001657 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX))
Steven Rostedted926f92011-05-03 13:25:24 -04001658 return;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001659
1660 /*
1661 * If there's only a single callback registered to a
1662 * function, and the ops has a trampoline registered
1663 * for it, then we can call it directly.
1664 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001665 if (ftrace_rec_count(rec) == 1 && ops->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001666 rec->flags |= FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001667 else
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001668 /*
1669 * If we are adding another function callback
1670 * to this function, and the previous had a
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04001671 * custom trampoline in use, then we need to go
1672 * back to the default trampoline.
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001673 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001674 rec->flags &= ~FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001675
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001676 /*
1677 * If any ops wants regs saved for this function
1678 * then all ops will get saved regs.
1679 */
1680 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1681 rec->flags |= FTRACE_FL_REGS;
Steven Rostedted926f92011-05-03 13:25:24 -04001682 } else {
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001683 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0))
Steven Rostedted926f92011-05-03 13:25:24 -04001684 return;
1685 rec->flags--;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001686
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001687 /*
1688 * If the rec had REGS enabled and the ops that is
1689 * being removed had REGS set, then see if there is
1690 * still any ops for this record that wants regs.
1691 * If not, we can stop recording them.
1692 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001693 if (ftrace_rec_count(rec) > 0 &&
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001694 rec->flags & FTRACE_FL_REGS &&
1695 ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1696 if (!test_rec_ops_needs_regs(rec))
1697 rec->flags &= ~FTRACE_FL_REGS;
1698 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001699
1700 /*
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001701 * If the rec had TRAMP enabled, then it needs to
1702 * be cleared. As TRAMP can only be enabled iff
1703 * there is only a single ops attached to it.
1704 * In otherwords, always disable it on decrementing.
1705 * In the future, we may set it if rec count is
1706 * decremented to one, and the ops that is left
1707 * has a trampoline.
1708 */
1709 rec->flags &= ~FTRACE_FL_TRAMP;
1710
1711 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001712 * flags will be cleared in ftrace_check_record()
1713 * if rec count is zero.
1714 */
Steven Rostedted926f92011-05-03 13:25:24 -04001715 }
1716 count++;
1717 /* Shortcut, if we handled all records, we are done. */
1718 if (!all && count == hash->count)
1719 return;
1720 } while_for_each_ftrace_rec();
1721}
1722
1723static void ftrace_hash_rec_disable(struct ftrace_ops *ops,
1724 int filter_hash)
1725{
1726 __ftrace_hash_rec_update(ops, filter_hash, 0);
1727}
1728
1729static void ftrace_hash_rec_enable(struct ftrace_ops *ops,
1730 int filter_hash)
1731{
1732 __ftrace_hash_rec_update(ops, filter_hash, 1);
1733}
1734
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001735static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops,
1736 int filter_hash, int inc)
1737{
1738 struct ftrace_ops *op;
1739
1740 __ftrace_hash_rec_update(ops, filter_hash, inc);
1741
1742 if (ops->func_hash != &global_ops.local_hash)
1743 return;
1744
1745 /*
1746 * If the ops shares the global_ops hash, then we need to update
1747 * all ops that are enabled and use this hash.
1748 */
1749 do_for_each_ftrace_op(op, ftrace_ops_list) {
1750 /* Already done */
1751 if (op == ops)
1752 continue;
1753 if (op->func_hash == &global_ops.local_hash)
1754 __ftrace_hash_rec_update(op, filter_hash, inc);
1755 } while_for_each_ftrace_op(op);
1756}
1757
1758static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops,
1759 int filter_hash)
1760{
1761 ftrace_hash_rec_update_modify(ops, filter_hash, 0);
1762}
1763
1764static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops,
1765 int filter_hash)
1766{
1767 ftrace_hash_rec_update_modify(ops, filter_hash, 1);
1768}
1769
Steven Rostedt05736a42008-09-22 14:55:47 -07001770static void print_ip_ins(const char *fmt, unsigned char *p)
1771{
1772 int i;
1773
1774 printk(KERN_CONT "%s", fmt);
1775
1776 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1777 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1778}
1779
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001780static struct ftrace_ops *
1781ftrace_find_tramp_ops_any(struct dyn_ftrace *rec);
1782
Steven Rostedtc88fd862011-08-16 09:53:39 -04001783/**
1784 * ftrace_bug - report and shutdown function tracer
1785 * @failed: The failed type (EFAULT, EINVAL, EPERM)
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001786 * @rec: The record that failed
Steven Rostedtc88fd862011-08-16 09:53:39 -04001787 *
1788 * The arch code that enables or disables the function tracing
1789 * can call ftrace_bug() when it has detected a problem in
1790 * modifying the code. @failed should be one of either:
1791 * EFAULT - if the problem happens on reading the @ip address
1792 * EINVAL - if what is read at @ip is not what was expected
1793 * EPERM - if the problem happens on writting to the @ip address
1794 */
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001795void ftrace_bug(int failed, struct dyn_ftrace *rec)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001796{
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001797 unsigned long ip = rec ? rec->ip : 0;
1798
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001799 switch (failed) {
1800 case -EFAULT:
1801 FTRACE_WARN_ON_ONCE(1);
1802 pr_info("ftrace faulted on modifying ");
1803 print_ip_sym(ip);
1804 break;
1805 case -EINVAL:
1806 FTRACE_WARN_ON_ONCE(1);
1807 pr_info("ftrace failed to modify ");
1808 print_ip_sym(ip);
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001809 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001810 pr_cont("\n");
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001811 break;
1812 case -EPERM:
1813 FTRACE_WARN_ON_ONCE(1);
1814 pr_info("ftrace faulted on writing ");
1815 print_ip_sym(ip);
1816 break;
1817 default:
1818 FTRACE_WARN_ON_ONCE(1);
1819 pr_info("ftrace faulted on unknown error ");
1820 print_ip_sym(ip);
1821 }
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001822 if (rec) {
1823 struct ftrace_ops *ops = NULL;
1824
1825 pr_info("ftrace record flags: %lx\n", rec->flags);
1826 pr_cont(" (%ld)%s", ftrace_rec_count(rec),
1827 rec->flags & FTRACE_FL_REGS ? " R" : " ");
1828 if (rec->flags & FTRACE_FL_TRAMP_EN) {
1829 ops = ftrace_find_tramp_ops_any(rec);
1830 if (ops)
1831 pr_cont("\ttramp: %pS",
1832 (void *)ops->trampoline);
1833 else
1834 pr_cont("\ttramp: ERROR!");
1835
1836 }
1837 ip = ftrace_get_addr_curr(rec);
1838 pr_cont(" expected tramp: %lx\n", ip);
1839 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001840}
1841
Steven Rostedtc88fd862011-08-16 09:53:39 -04001842static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02001843{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001844 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01001845
Steven Rostedt982c3502008-11-15 16:31:41 -05001846 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001847 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05001848 *
Steven Rostedted926f92011-05-03 13:25:24 -04001849 * If the record has a ref count, then we need to enable it
1850 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05001851 *
Steven Rostedted926f92011-05-03 13:25:24 -04001852 * Otherwise we make sure its disabled.
1853 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001854 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04001855 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05001856 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001857 if (enable && ftrace_rec_count(rec))
Steven Rostedted926f92011-05-03 13:25:24 -04001858 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02001859
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001860 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001861 * If enabling and the REGS flag does not match the REGS_EN, or
1862 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
1863 * this record. Set flags to fail the compare against ENABLED.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001864 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001865 if (flag) {
1866 if (!(rec->flags & FTRACE_FL_REGS) !=
1867 !(rec->flags & FTRACE_FL_REGS_EN))
1868 flag |= FTRACE_FL_REGS;
1869
1870 if (!(rec->flags & FTRACE_FL_TRAMP) !=
1871 !(rec->flags & FTRACE_FL_TRAMP_EN))
1872 flag |= FTRACE_FL_TRAMP;
1873 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001874
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001875 /* If the state of this record hasn't changed, then do nothing */
1876 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001877 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001878
1879 if (flag) {
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001880 /* Save off if rec is being enabled (for return value) */
1881 flag ^= rec->flags & FTRACE_FL_ENABLED;
1882
1883 if (update) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04001884 rec->flags |= FTRACE_FL_ENABLED;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001885 if (flag & FTRACE_FL_REGS) {
1886 if (rec->flags & FTRACE_FL_REGS)
1887 rec->flags |= FTRACE_FL_REGS_EN;
1888 else
1889 rec->flags &= ~FTRACE_FL_REGS_EN;
1890 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001891 if (flag & FTRACE_FL_TRAMP) {
1892 if (rec->flags & FTRACE_FL_TRAMP)
1893 rec->flags |= FTRACE_FL_TRAMP_EN;
1894 else
1895 rec->flags &= ~FTRACE_FL_TRAMP_EN;
1896 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001897 }
1898
1899 /*
1900 * If this record is being updated from a nop, then
1901 * return UPDATE_MAKE_CALL.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001902 * Otherwise,
1903 * return UPDATE_MODIFY_CALL to tell the caller to convert
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04001904 * from the save regs, to a non-save regs function or
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001905 * vice versa, or from a trampoline call.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001906 */
1907 if (flag & FTRACE_FL_ENABLED)
1908 return FTRACE_UPDATE_MAKE_CALL;
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04001909
1910 return FTRACE_UPDATE_MODIFY_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001911 }
1912
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001913 if (update) {
1914 /* If there's no more users, clear all flags */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001915 if (!ftrace_rec_count(rec))
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001916 rec->flags = 0;
1917 else
1918 /* Just disable the record (keep REGS state) */
1919 rec->flags &= ~FTRACE_FL_ENABLED;
1920 }
Steven Rostedtc88fd862011-08-16 09:53:39 -04001921
1922 return FTRACE_UPDATE_MAKE_NOP;
1923}
1924
1925/**
1926 * ftrace_update_record, set a record that now is tracing or not
1927 * @rec: the record to update
1928 * @enable: set to 1 if the record is tracing, zero to force disable
1929 *
1930 * The records that represent all functions that can be traced need
1931 * to be updated when tracing has been enabled.
1932 */
1933int ftrace_update_record(struct dyn_ftrace *rec, int enable)
1934{
1935 return ftrace_check_record(rec, enable, 1);
1936}
1937
1938/**
1939 * ftrace_test_record, check if the record has been enabled or not
1940 * @rec: the record to test
1941 * @enable: set to 1 to check if enabled, 0 if it is disabled
1942 *
1943 * The arch code may need to test if a record is already set to
1944 * tracing to determine how to modify the function code that it
1945 * represents.
1946 */
1947int ftrace_test_record(struct dyn_ftrace *rec, int enable)
1948{
1949 return ftrace_check_record(rec, enable, 0);
1950}
1951
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001952static struct ftrace_ops *
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04001953ftrace_find_tramp_ops_any(struct dyn_ftrace *rec)
1954{
1955 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001956 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04001957
1958 do_for_each_ftrace_op(op, ftrace_ops_list) {
1959
1960 if (!op->trampoline)
1961 continue;
1962
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001963 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04001964 return op;
1965 } while_for_each_ftrace_op(op);
1966
1967 return NULL;
1968}
1969
1970static struct ftrace_ops *
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001971ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec)
1972{
1973 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001974 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001975
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001976 /*
1977 * Need to check removed ops first.
1978 * If they are being removed, and this rec has a tramp,
1979 * and this rec is in the ops list, then it would be the
1980 * one with the tramp.
1981 */
1982 if (removed_ops) {
1983 if (hash_contains_ip(ip, &removed_ops->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001984 return removed_ops;
1985 }
1986
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001987 /*
1988 * Need to find the current trampoline for a rec.
1989 * Now, a trampoline is only attached to a rec if there
1990 * was a single 'ops' attached to it. But this can be called
1991 * when we are adding another op to the rec or removing the
1992 * current one. Thus, if the op is being added, we can
1993 * ignore it because it hasn't attached itself to the rec
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04001994 * yet.
1995 *
1996 * If an ops is being modified (hooking to different functions)
1997 * then we don't care about the new functions that are being
1998 * added, just the old ones (that are probably being removed).
1999 *
2000 * If we are adding an ops to a function that already is using
2001 * a trampoline, it needs to be removed (trampolines are only
2002 * for single ops connected), then an ops that is not being
2003 * modified also needs to be checked.
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002004 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002005 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002006
2007 if (!op->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002008 continue;
2009
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002010 /*
2011 * If the ops is being added, it hasn't gotten to
2012 * the point to be removed from this tree yet.
2013 */
2014 if (op->flags & FTRACE_OPS_FL_ADDING)
2015 continue;
2016
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002017
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002018 /*
2019 * If the ops is being modified and is in the old
2020 * hash, then it is probably being removed from this
2021 * function.
2022 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002023 if ((op->flags & FTRACE_OPS_FL_MODIFYING) &&
2024 hash_contains_ip(ip, &op->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002025 return op;
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002026 /*
2027 * If the ops is not being added or modified, and it's
2028 * in its normal filter hash, then this must be the one
2029 * we want!
2030 */
2031 if (!(op->flags & FTRACE_OPS_FL_MODIFYING) &&
2032 hash_contains_ip(ip, op->func_hash))
2033 return op;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002034
2035 } while_for_each_ftrace_op(op);
2036
2037 return NULL;
2038}
2039
2040static struct ftrace_ops *
2041ftrace_find_tramp_ops_new(struct dyn_ftrace *rec)
2042{
2043 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002044 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002045
2046 do_for_each_ftrace_op(op, ftrace_ops_list) {
2047 /* pass rec in as regs to have non-NULL val */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002048 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002049 return op;
2050 } while_for_each_ftrace_op(op);
2051
2052 return NULL;
2053}
2054
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002055/**
2056 * ftrace_get_addr_new - Get the call address to set to
2057 * @rec: The ftrace record descriptor
2058 *
2059 * If the record has the FTRACE_FL_REGS set, that means that it
2060 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2061 * is not not set, then it wants to convert to the normal callback.
2062 *
2063 * Returns the address of the trampoline to set to
2064 */
2065unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec)
2066{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002067 struct ftrace_ops *ops;
2068
2069 /* Trampolines take precedence over regs */
2070 if (rec->flags & FTRACE_FL_TRAMP) {
2071 ops = ftrace_find_tramp_ops_new(rec);
2072 if (FTRACE_WARN_ON(!ops || !ops->trampoline)) {
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04002073 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2074 (void *)rec->ip, (void *)rec->ip, rec->flags);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002075 /* Ftrace is shutting down, return anything */
2076 return (unsigned long)FTRACE_ADDR;
2077 }
2078 return ops->trampoline;
2079 }
2080
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002081 if (rec->flags & FTRACE_FL_REGS)
2082 return (unsigned long)FTRACE_REGS_ADDR;
2083 else
2084 return (unsigned long)FTRACE_ADDR;
2085}
2086
2087/**
2088 * ftrace_get_addr_curr - Get the call address that is already there
2089 * @rec: The ftrace record descriptor
2090 *
2091 * The FTRACE_FL_REGS_EN is set when the record already points to
2092 * a function that saves all the regs. Basically the '_EN' version
2093 * represents the current state of the function.
2094 *
2095 * Returns the address of the trampoline that is currently being called
2096 */
2097unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec)
2098{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002099 struct ftrace_ops *ops;
2100
2101 /* Trampolines take precedence over regs */
2102 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2103 ops = ftrace_find_tramp_ops_curr(rec);
2104 if (FTRACE_WARN_ON(!ops)) {
2105 pr_warning("Bad trampoline accounting at: %p (%pS)\n",
2106 (void *)rec->ip, (void *)rec->ip);
2107 /* Ftrace is shutting down, return anything */
2108 return (unsigned long)FTRACE_ADDR;
2109 }
2110 return ops->trampoline;
2111 }
2112
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002113 if (rec->flags & FTRACE_FL_REGS_EN)
2114 return (unsigned long)FTRACE_REGS_ADDR;
2115 else
2116 return (unsigned long)FTRACE_ADDR;
2117}
2118
Steven Rostedtc88fd862011-08-16 09:53:39 -04002119static int
2120__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
2121{
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002122 unsigned long ftrace_old_addr;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002123 unsigned long ftrace_addr;
2124 int ret;
2125
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002126 ftrace_addr = ftrace_get_addr_new(rec);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002127
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002128 /* This needs to be done before we call ftrace_update_record */
2129 ftrace_old_addr = ftrace_get_addr_curr(rec);
2130
2131 ret = ftrace_update_record(rec, enable);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002132
Steven Rostedtc88fd862011-08-16 09:53:39 -04002133 switch (ret) {
2134 case FTRACE_UPDATE_IGNORE:
2135 return 0;
2136
2137 case FTRACE_UPDATE_MAKE_CALL:
2138 return ftrace_make_call(rec, ftrace_addr);
2139
2140 case FTRACE_UPDATE_MAKE_NOP:
Steven Rostedt (Red Hat)39b55522014-08-17 20:59:10 -04002141 return ftrace_make_nop(NULL, rec, ftrace_old_addr);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002142
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002143 case FTRACE_UPDATE_MODIFY_CALL:
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002144 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002145 }
2146
2147 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02002148}
2149
Steven Rostedte4f5d542012-04-27 09:13:18 -04002150void __weak ftrace_replace_code(int enable)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002151{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002152 struct dyn_ftrace *rec;
2153 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002154 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002155
Steven Rostedt45a4a232011-04-21 23:16:46 -04002156 if (unlikely(ftrace_disabled))
2157 return;
2158
Steven Rostedt265c8312009-02-13 12:43:56 -05002159 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedte4f5d542012-04-27 09:13:18 -04002160 failed = __ftrace_replace_code(rec, enable);
Zhaoleifa9d13c2009-03-13 17:16:34 +08002161 if (failed) {
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002162 ftrace_bug(failed, rec);
Steven Rostedt3279ba32009-10-07 16:57:56 -04002163 /* Stop processing */
2164 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05002165 }
2166 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002167}
2168
Steven Rostedtc88fd862011-08-16 09:53:39 -04002169struct ftrace_rec_iter {
2170 struct ftrace_page *pg;
2171 int index;
2172};
2173
2174/**
2175 * ftrace_rec_iter_start, start up iterating over traced functions
2176 *
2177 * Returns an iterator handle that is used to iterate over all
2178 * the records that represent address locations where functions
2179 * are traced.
2180 *
2181 * May return NULL if no records are available.
2182 */
2183struct ftrace_rec_iter *ftrace_rec_iter_start(void)
2184{
2185 /*
2186 * We only use a single iterator.
2187 * Protected by the ftrace_lock mutex.
2188 */
2189 static struct ftrace_rec_iter ftrace_rec_iter;
2190 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
2191
2192 iter->pg = ftrace_pages_start;
2193 iter->index = 0;
2194
2195 /* Could have empty pages */
2196 while (iter->pg && !iter->pg->index)
2197 iter->pg = iter->pg->next;
2198
2199 if (!iter->pg)
2200 return NULL;
2201
2202 return iter;
2203}
2204
2205/**
2206 * ftrace_rec_iter_next, get the next record to process.
2207 * @iter: The handle to the iterator.
2208 *
2209 * Returns the next iterator after the given iterator @iter.
2210 */
2211struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
2212{
2213 iter->index++;
2214
2215 if (iter->index >= iter->pg->index) {
2216 iter->pg = iter->pg->next;
2217 iter->index = 0;
2218
2219 /* Could have empty pages */
2220 while (iter->pg && !iter->pg->index)
2221 iter->pg = iter->pg->next;
2222 }
2223
2224 if (!iter->pg)
2225 return NULL;
2226
2227 return iter;
2228}
2229
2230/**
2231 * ftrace_rec_iter_record, get the record at the iterator location
2232 * @iter: The current iterator location
2233 *
2234 * Returns the record that the current @iter is at.
2235 */
2236struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
2237{
2238 return &iter->pg->records[iter->index];
2239}
2240
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302241static int
Steven Rostedt31e88902008-11-14 16:21:19 -08002242ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002243{
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002244 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002245
Steven Rostedt45a4a232011-04-21 23:16:46 -04002246 if (unlikely(ftrace_disabled))
2247 return 0;
2248
Shaohua Li25aac9d2009-01-09 11:29:40 +08002249 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002250 if (ret) {
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002251 ftrace_bug(ret, rec);
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302252 return 0;
Steven Rostedt37ad5082008-05-12 21:20:48 +02002253 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302254 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002255}
2256
Steven Rostedt000ab692009-02-17 13:35:06 -05002257/*
2258 * archs can override this function if they must do something
2259 * before the modifying code is performed.
2260 */
2261int __weak ftrace_arch_code_modify_prepare(void)
2262{
2263 return 0;
2264}
2265
2266/*
2267 * archs can override this function if they must do something
2268 * after the modifying code is performed.
2269 */
2270int __weak ftrace_arch_code_modify_post_process(void)
2271{
2272 return 0;
2273}
2274
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002275void ftrace_modify_all_code(int command)
2276{
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002277 int update = command & FTRACE_UPDATE_TRACE_FUNC;
Petr Mladekcd210672014-02-24 17:12:21 +01002278 int err = 0;
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002279
2280 /*
2281 * If the ftrace_caller calls a ftrace_ops func directly,
2282 * we need to make sure that it only traces functions it
2283 * expects to trace. When doing the switch of functions,
2284 * we need to update to the ftrace_ops_list_func first
2285 * before the transition between old and new calls are set,
2286 * as the ftrace_ops_list_func will check the ops hashes
2287 * to make sure the ops are having the right functions
2288 * traced.
2289 */
Petr Mladekcd210672014-02-24 17:12:21 +01002290 if (update) {
2291 err = ftrace_update_ftrace_func(ftrace_ops_list_func);
2292 if (FTRACE_WARN_ON(err))
2293 return;
2294 }
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002295
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002296 if (command & FTRACE_UPDATE_CALLS)
2297 ftrace_replace_code(1);
2298 else if (command & FTRACE_DISABLE_CALLS)
2299 ftrace_replace_code(0);
2300
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002301 if (update && ftrace_trace_function != ftrace_ops_list_func) {
2302 function_trace_op = set_function_trace_op;
2303 smp_wmb();
2304 /* If irqs are disabled, we are in stop machine */
2305 if (!irqs_disabled())
2306 smp_call_function(ftrace_sync_ipi, NULL, 1);
Petr Mladekcd210672014-02-24 17:12:21 +01002307 err = ftrace_update_ftrace_func(ftrace_trace_function);
2308 if (FTRACE_WARN_ON(err))
2309 return;
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002310 }
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002311
2312 if (command & FTRACE_START_FUNC_RET)
Petr Mladekcd210672014-02-24 17:12:21 +01002313 err = ftrace_enable_ftrace_graph_caller();
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002314 else if (command & FTRACE_STOP_FUNC_RET)
Petr Mladekcd210672014-02-24 17:12:21 +01002315 err = ftrace_disable_ftrace_graph_caller();
2316 FTRACE_WARN_ON(err);
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002317}
2318
Ingo Molnare309b412008-05-12 21:20:51 +02002319static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02002320{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002321 int *command = data;
2322
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002323 ftrace_modify_all_code(*command);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05002324
Steven Rostedtc88fd862011-08-16 09:53:39 -04002325 return 0;
2326}
2327
2328/**
2329 * ftrace_run_stop_machine, go back to the stop machine method
2330 * @command: The command to tell ftrace what to do
2331 *
2332 * If an arch needs to fall back to the stop machine method, the
2333 * it can call this function.
2334 */
2335void ftrace_run_stop_machine(int command)
2336{
2337 stop_machine(__ftrace_modify_code, &command, NULL);
2338}
2339
2340/**
2341 * arch_ftrace_update_code, modify the code to trace or not trace
2342 * @command: The command that needs to be done
2343 *
2344 * Archs can override this function if it does not need to
2345 * run stop_machine() to modify code.
2346 */
2347void __weak arch_ftrace_update_code(int command)
2348{
2349 ftrace_run_stop_machine(command);
2350}
2351
2352static void ftrace_run_update_code(int command)
2353{
2354 int ret;
2355
2356 ret = ftrace_arch_code_modify_prepare();
2357 FTRACE_WARN_ON(ret);
2358 if (ret)
2359 return;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002360
2361 /*
2362 * By default we use stop_machine() to modify the code.
2363 * But archs can do what ever they want as long as it
2364 * is safe. The stop_machine() is the safest, but also
2365 * produces the most overhead.
2366 */
2367 arch_ftrace_update_code(command);
2368
Steven Rostedt000ab692009-02-17 13:35:06 -05002369 ret = ftrace_arch_code_modify_post_process();
2370 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02002371}
2372
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002373static void ftrace_run_modify_code(struct ftrace_ops *ops, int command,
2374 struct ftrace_hash *old_hash)
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002375{
2376 ops->flags |= FTRACE_OPS_FL_MODIFYING;
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002377 ops->old_hash.filter_hash = old_hash;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002378 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002379 ops->old_hash.filter_hash = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002380 ops->flags &= ~FTRACE_OPS_FL_MODIFYING;
2381}
2382
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002383static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002384static int ftrace_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002385
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002386void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops)
2387{
2388}
2389
Jiri Slabydb0fbad2014-03-10 21:42:11 +01002390static void control_ops_free(struct ftrace_ops *ops)
2391{
2392 free_percpu(ops->disabled);
2393}
2394
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002395static void ftrace_startup_enable(int command)
2396{
2397 if (saved_ftrace_func != ftrace_trace_function) {
2398 saved_ftrace_func = ftrace_trace_function;
2399 command |= FTRACE_UPDATE_TRACE_FUNC;
2400 }
2401
2402 if (!command || !ftrace_enabled)
2403 return;
2404
2405 ftrace_run_update_code(command);
2406}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002407
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002408static void ftrace_startup_all(int command)
2409{
2410 update_all_ops = true;
2411 ftrace_startup_enable(command);
2412 update_all_ops = false;
2413}
2414
Steven Rostedta1cd6172011-05-23 15:24:25 -04002415static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002416{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002417 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002418
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002419 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04002420 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002421
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002422 ret = __register_ftrace_function(ops);
2423 if (ret)
2424 return ret;
2425
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002426 ftrace_start_up++;
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002427 command |= FTRACE_UPDATE_CALLS;
Steven Rostedt3d083392008-05-12 21:20:42 +02002428
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002429 /*
2430 * Note that ftrace probes uses this to start up
2431 * and modify functions it will probe. But we still
2432 * set the ADDING flag for modification, as probes
2433 * do not have trampolines. If they add them in the
2434 * future, then the probes will need to distinguish
2435 * between adding and updating probes.
2436 */
2437 ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING;
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002438
2439 ftrace_hash_rec_enable(ops, 1);
Steven Rostedted926f92011-05-03 13:25:24 -04002440
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002441 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04002442
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002443 ops->flags &= ~FTRACE_OPS_FL_ADDING;
2444
Steven Rostedta1cd6172011-05-23 15:24:25 -04002445 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002446}
2447
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002448static int ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002449{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002450 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002451
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002452 if (unlikely(ftrace_disabled))
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002453 return -ENODEV;
2454
2455 ret = __unregister_ftrace_function(ops);
2456 if (ret)
2457 return ret;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002458
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002459 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02002460 /*
2461 * Just warn in case of unbalance, no need to kill ftrace, it's not
2462 * critical but the ftrace_call callers may be never nopped again after
2463 * further ftrace uses.
2464 */
2465 WARN_ON_ONCE(ftrace_start_up < 0);
2466
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002467 ftrace_hash_rec_disable(ops, 1);
Steven Rostedtb8489142011-05-04 09:27:52 -04002468
Namhyung Kima737e6d2014-06-12 23:56:12 +09002469 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04002470
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002471 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002472
2473 if (saved_ftrace_func != ftrace_trace_function) {
2474 saved_ftrace_func = ftrace_trace_function;
2475 command |= FTRACE_UPDATE_TRACE_FUNC;
2476 }
2477
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002478 if (!command || !ftrace_enabled) {
2479 /*
2480 * If these are control ops, they still need their
2481 * per_cpu field freed. Since, function tracing is
2482 * not currently active, we can just free them
2483 * without synchronizing all CPUs.
2484 */
2485 if (ops->flags & FTRACE_OPS_FL_CONTROL)
2486 control_ops_free(ops);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002487 return 0;
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002488 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002489
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002490 /*
2491 * If the ops uses a trampoline, then it needs to be
2492 * tested first on update.
2493 */
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002494 ops->flags |= FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002495 removed_ops = ops;
2496
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002497 /* The trampoline logic checks the old hashes */
2498 ops->old_hash.filter_hash = ops->func_hash->filter_hash;
2499 ops->old_hash.notrace_hash = ops->func_hash->notrace_hash;
2500
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002501 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002502
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002503 /*
2504 * If there's no more ops registered with ftrace, run a
2505 * sanity check to make sure all rec flags are cleared.
2506 */
2507 if (ftrace_ops_list == &ftrace_list_end) {
2508 struct ftrace_page *pg;
2509 struct dyn_ftrace *rec;
2510
2511 do_for_each_ftrace_rec(pg, rec) {
2512 if (FTRACE_WARN_ON_ONCE(rec->flags))
2513 pr_warn(" %pS flags:%lx\n",
2514 (void *)rec->ip, rec->flags);
2515 } while_for_each_ftrace_rec();
2516 }
2517
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002518 ops->old_hash.filter_hash = NULL;
2519 ops->old_hash.notrace_hash = NULL;
2520
2521 removed_ops = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002522 ops->flags &= ~FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002523
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002524 /*
2525 * Dynamic ops may be freed, we must make sure that all
2526 * callers are done before leaving this function.
2527 * The same goes for freeing the per_cpu data of the control
2528 * ops.
2529 *
2530 * Again, normal synchronize_sched() is not good enough.
2531 * We need to do a hard force of sched synchronization.
2532 * This is because we use preempt_disable() to do RCU, but
2533 * the function tracers can be called where RCU is not watching
2534 * (like before user_exit()). We can not rely on the RCU
2535 * infrastructure to do the synchronization, thus we must do it
2536 * ourselves.
2537 */
2538 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_CONTROL)) {
2539 schedule_on_each_cpu(ftrace_sync);
2540
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002541 arch_ftrace_trampoline_free(ops);
2542
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002543 if (ops->flags & FTRACE_OPS_FL_CONTROL)
2544 control_ops_free(ops);
2545 }
2546
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002547 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002548}
2549
Ingo Molnare309b412008-05-12 21:20:51 +02002550static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002551{
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002552 if (unlikely(ftrace_disabled))
2553 return;
2554
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002555 /* Force update next time */
2556 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002557 /* ftrace_start_up is true if we want ftrace running */
2558 if (ftrace_start_up)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002559 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002560}
2561
Ingo Molnare309b412008-05-12 21:20:51 +02002562static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002563{
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002564 if (unlikely(ftrace_disabled))
2565 return;
2566
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002567 /* ftrace_start_up is true if ftrace is running */
2568 if (ftrace_start_up)
Steven Rostedt79e406d2010-09-14 22:19:46 -04002569 ftrace_run_update_code(FTRACE_DISABLE_CALLS);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002570}
2571
Steven Rostedt3d083392008-05-12 21:20:42 +02002572static cycle_t ftrace_update_time;
Steven Rostedt3d083392008-05-12 21:20:42 +02002573unsigned long ftrace_update_tot_cnt;
2574
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002575static inline int ops_traces_mod(struct ftrace_ops *ops)
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002576{
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002577 /*
2578 * Filter_hash being empty will default to trace module.
2579 * But notrace hash requires a test of individual module functions.
2580 */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002581 return ftrace_hash_empty(ops->func_hash->filter_hash) &&
2582 ftrace_hash_empty(ops->func_hash->notrace_hash);
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002583}
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002584
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002585/*
2586 * Check if the current ops references the record.
2587 *
2588 * If the ops traces all functions, then it was already accounted for.
2589 * If the ops does not trace the current record function, skip it.
2590 * If the ops ignores the function via notrace filter, skip it.
2591 */
2592static inline bool
2593ops_references_rec(struct ftrace_ops *ops, struct dyn_ftrace *rec)
2594{
2595 /* If ops isn't enabled, ignore it */
2596 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
2597 return 0;
2598
2599 /* If ops traces all mods, we already accounted for it */
2600 if (ops_traces_mod(ops))
2601 return 0;
2602
2603 /* The function must be in the filter */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002604 if (!ftrace_hash_empty(ops->func_hash->filter_hash) &&
2605 !ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002606 return 0;
2607
2608 /* If in notrace hash, we ignore it too */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002609 if (ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002610 return 0;
2611
2612 return 1;
2613}
2614
2615static int referenced_filters(struct dyn_ftrace *rec)
2616{
2617 struct ftrace_ops *ops;
2618 int cnt = 0;
2619
2620 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
2621 if (ops_references_rec(ops, rec))
2622 cnt++;
2623 }
2624
2625 return cnt;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002626}
2627
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002628static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs)
Steven Rostedt3d083392008-05-12 21:20:42 +02002629{
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002630 struct ftrace_page *pg;
Lai Jiangshane94142a2009-03-13 17:51:27 +08002631 struct dyn_ftrace *p;
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05302632 cycle_t start, stop;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002633 unsigned long update_cnt = 0;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002634 unsigned long ref = 0;
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002635 bool test = false;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002636 int i;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002637
2638 /*
2639 * When adding a module, we need to check if tracers are
2640 * currently enabled and if they are set to trace all functions.
2641 * If they are, we need to enable the module functions as well
2642 * as update the reference counts for those function records.
2643 */
2644 if (mod) {
2645 struct ftrace_ops *ops;
2646
2647 for (ops = ftrace_ops_list;
2648 ops != &ftrace_list_end; ops = ops->next) {
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002649 if (ops->flags & FTRACE_OPS_FL_ENABLED) {
2650 if (ops_traces_mod(ops))
2651 ref++;
2652 else
2653 test = true;
2654 }
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002655 }
2656 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002657
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002658 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002659
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002660 for (pg = new_pgs; pg; pg = pg->next) {
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05302661
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002662 for (i = 0; i < pg->index; i++) {
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002663 int cnt = ref;
2664
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002665 /* If something went wrong, bail without enabling anything */
2666 if (unlikely(ftrace_disabled))
2667 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02002668
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002669 p = &pg->records[i];
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002670 if (test)
2671 cnt += referenced_filters(p);
2672 p->flags = cnt;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05302673
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002674 /*
2675 * Do the initial record conversion from mcount jump
2676 * to the NOP instructions.
2677 */
2678 if (!ftrace_code_disable(mod, p))
2679 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002680
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002681 update_cnt++;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002682
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002683 /*
2684 * If the tracing is enabled, go ahead and enable the record.
2685 *
2686 * The reason not to enable the record immediatelly is the
2687 * inherent check of ftrace_make_nop/ftrace_make_call for
2688 * correct previous instructions. Making first the NOP
2689 * conversion puts the module to the correct state, thus
2690 * passing the ftrace_make_call check.
2691 */
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002692 if (ftrace_start_up && cnt) {
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002693 int failed = __ftrace_replace_code(p, 1);
2694 if (failed)
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002695 ftrace_bug(failed, p);
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002696 }
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002697 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002698 }
2699
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002700 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002701 ftrace_update_time = stop - start;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002702 ftrace_update_tot_cnt += update_cnt;
Steven Rostedt3d083392008-05-12 21:20:42 +02002703
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02002704 return 0;
2705}
2706
Steven Rostedta7900872011-12-16 16:23:44 -05002707static int ftrace_allocate_records(struct ftrace_page *pg, int count)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002708{
Steven Rostedta7900872011-12-16 16:23:44 -05002709 int order;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002710 int cnt;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002711
Steven Rostedta7900872011-12-16 16:23:44 -05002712 if (WARN_ON(!count))
2713 return -EINVAL;
2714
2715 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002716
2717 /*
Steven Rostedta7900872011-12-16 16:23:44 -05002718 * We want to fill as much as possible. No more than a page
2719 * may be empty.
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002720 */
Steven Rostedta7900872011-12-16 16:23:44 -05002721 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2722 order--;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002723
Steven Rostedta7900872011-12-16 16:23:44 -05002724 again:
2725 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
2726
2727 if (!pg->records) {
2728 /* if we can't allocate this size, try something smaller */
2729 if (!order)
2730 return -ENOMEM;
2731 order >>= 1;
2732 goto again;
2733 }
2734
2735 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
2736 pg->size = cnt;
2737
2738 if (cnt > count)
2739 cnt = count;
2740
2741 return cnt;
2742}
2743
2744static struct ftrace_page *
2745ftrace_allocate_pages(unsigned long num_to_init)
2746{
2747 struct ftrace_page *start_pg;
2748 struct ftrace_page *pg;
2749 int order;
2750 int cnt;
2751
2752 if (!num_to_init)
2753 return 0;
2754
2755 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
2756 if (!pg)
2757 return NULL;
2758
2759 /*
2760 * Try to allocate as much as possible in one continues
2761 * location that fills in all of the space. We want to
2762 * waste as little space as possible.
2763 */
2764 for (;;) {
2765 cnt = ftrace_allocate_records(pg, num_to_init);
2766 if (cnt < 0)
2767 goto free_pages;
2768
2769 num_to_init -= cnt;
2770 if (!num_to_init)
2771 break;
2772
2773 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
2774 if (!pg->next)
2775 goto free_pages;
2776
2777 pg = pg->next;
2778 }
2779
2780 return start_pg;
2781
2782 free_pages:
Namhyung Kim1f61be002014-06-11 17:06:53 +09002783 pg = start_pg;
2784 while (pg) {
Steven Rostedta7900872011-12-16 16:23:44 -05002785 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
2786 free_pages((unsigned long)pg->records, order);
2787 start_pg = pg->next;
2788 kfree(pg);
2789 pg = start_pg;
2790 }
2791 pr_info("ftrace: FAILED to allocate memory for functions\n");
2792 return NULL;
2793}
2794
Steven Rostedt5072c592008-05-12 21:20:43 +02002795#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
2796
2797struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002798 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002799 loff_t func_pos;
2800 struct ftrace_page *pg;
2801 struct dyn_ftrace *func;
2802 struct ftrace_func_probe *probe;
2803 struct trace_parser parser;
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002804 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002805 struct ftrace_ops *ops;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002806 int hidx;
2807 int idx;
2808 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02002809};
2810
Ingo Molnare309b412008-05-12 21:20:51 +02002811static void *
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002812t_hash_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002813{
2814 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002815 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002816 struct hlist_head *hhd;
2817
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002818 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002819 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002820
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002821 if (iter->probe)
2822 hnd = &iter->probe->node;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002823 retry:
2824 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
2825 return NULL;
2826
2827 hhd = &ftrace_func_hash[iter->hidx];
2828
2829 if (hlist_empty(hhd)) {
2830 iter->hidx++;
2831 hnd = NULL;
2832 goto retry;
2833 }
2834
2835 if (!hnd)
2836 hnd = hhd->first;
2837 else {
2838 hnd = hnd->next;
2839 if (!hnd) {
2840 iter->hidx++;
2841 goto retry;
2842 }
2843 }
2844
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002845 if (WARN_ON_ONCE(!hnd))
2846 return NULL;
2847
2848 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
2849
2850 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002851}
2852
2853static void *t_hash_start(struct seq_file *m, loff_t *pos)
2854{
2855 struct ftrace_iterator *iter = m->private;
2856 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08002857 loff_t l;
2858
Steven Rostedt69a30832011-12-19 15:21:16 -05002859 if (!(iter->flags & FTRACE_ITER_DO_HASH))
2860 return NULL;
2861
Steven Rostedt2bccfff2010-09-09 08:43:22 -04002862 if (iter->func_pos > *pos)
2863 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002864
Li Zefand82d6242009-06-24 09:54:54 +08002865 iter->hidx = 0;
Steven Rostedt2bccfff2010-09-09 08:43:22 -04002866 for (l = 0; l <= (*pos - iter->func_pos); ) {
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002867 p = t_hash_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08002868 if (!p)
2869 break;
2870 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002871 if (!p)
2872 return NULL;
2873
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002874 /* Only set this if we have an item */
2875 iter->flags |= FTRACE_ITER_HASH;
2876
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002877 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002878}
2879
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002880static int
2881t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002882{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002883 struct ftrace_func_probe *rec;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002884
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002885 rec = iter->probe;
2886 if (WARN_ON_ONCE(!rec))
2887 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002888
Steven Rostedt809dcf22009-02-16 23:06:01 -05002889 if (rec->ops->print)
2890 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
2891
Steven Rostedtb375a112009-09-17 00:05:58 -04002892 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002893
2894 if (rec->data)
2895 seq_printf(m, ":%p", rec->data);
2896 seq_putc(m, '\n');
2897
2898 return 0;
2899}
2900
2901static void *
Steven Rostedt5072c592008-05-12 21:20:43 +02002902t_next(struct seq_file *m, void *v, loff_t *pos)
2903{
2904 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05002905 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02002906 struct dyn_ftrace *rec = NULL;
2907
Steven Rostedt45a4a232011-04-21 23:16:46 -04002908 if (unlikely(ftrace_disabled))
2909 return NULL;
2910
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002911 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002912 return t_hash_next(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002913
Steven Rostedt5072c592008-05-12 21:20:43 +02002914 (*pos)++;
Jiri Olsa1106b692011-02-16 17:35:34 +01002915 iter->pos = iter->func_pos = *pos;
Steven Rostedt5072c592008-05-12 21:20:43 +02002916
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002917 if (iter->flags & FTRACE_ITER_PRINTALL)
Steven Rostedt57c072c2010-09-14 11:21:11 -04002918 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002919
Steven Rostedt5072c592008-05-12 21:20:43 +02002920 retry:
2921 if (iter->idx >= iter->pg->index) {
2922 if (iter->pg->next) {
2923 iter->pg = iter->pg->next;
2924 iter->idx = 0;
2925 goto retry;
2926 }
2927 } else {
2928 rec = &iter->pg->records[iter->idx++];
Steven Rostedt32082302011-12-16 14:42:37 -05002929 if (((iter->flags & FTRACE_ITER_FILTER) &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002930 !(ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))) ||
Steven Rostedt0183fb12008-11-07 22:36:02 -05002931
Steven Rostedt41c52c02008-05-22 11:46:33 -04002932 ((iter->flags & FTRACE_ITER_NOTRACE) &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002933 !ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip)) ||
Steven Rostedt647bcd02011-05-03 14:39:21 -04002934
2935 ((iter->flags & FTRACE_ITER_ENABLED) &&
Steven Rostedt (Red Hat)23ea9c42013-05-09 19:31:48 -04002936 !(rec->flags & FTRACE_FL_ENABLED))) {
Steven Rostedt647bcd02011-05-03 14:39:21 -04002937
Steven Rostedt5072c592008-05-12 21:20:43 +02002938 rec = NULL;
2939 goto retry;
2940 }
2941 }
2942
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002943 if (!rec)
Steven Rostedt57c072c2010-09-14 11:21:11 -04002944 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002945
2946 iter->func = rec;
2947
2948 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02002949}
2950
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002951static void reset_iter_read(struct ftrace_iterator *iter)
2952{
2953 iter->pos = 0;
2954 iter->func_pos = 0;
Dan Carpenter70f77b32012-06-09 19:10:27 +03002955 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_HASH);
Steven Rostedt5072c592008-05-12 21:20:43 +02002956}
2957
2958static void *t_start(struct seq_file *m, loff_t *pos)
2959{
2960 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05002961 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02002962 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08002963 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02002964
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002965 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04002966
2967 if (unlikely(ftrace_disabled))
2968 return NULL;
2969
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002970 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002971 * If an lseek was done, then reset and start from beginning.
2972 */
2973 if (*pos < iter->pos)
2974 reset_iter_read(iter);
2975
2976 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002977 * For set_ftrace_filter reading, if we have the filter
2978 * off, we can short cut and just print out that all
2979 * functions are enabled.
2980 */
Namhyung Kim8c006cf2014-06-13 16:24:06 +09002981 if ((iter->flags & FTRACE_ITER_FILTER &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002982 ftrace_hash_empty(ops->func_hash->filter_hash)) ||
Namhyung Kim8c006cf2014-06-13 16:24:06 +09002983 (iter->flags & FTRACE_ITER_NOTRACE &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002984 ftrace_hash_empty(ops->func_hash->notrace_hash))) {
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002985 if (*pos > 0)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002986 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002987 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07002988 /* reset in case of seek/pread */
2989 iter->flags &= ~FTRACE_ITER_HASH;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002990 return iter;
2991 }
2992
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002993 if (iter->flags & FTRACE_ITER_HASH)
2994 return t_hash_start(m, pos);
2995
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002996 /*
2997 * Unfortunately, we need to restart at ftrace_pages_start
2998 * every time we let go of the ftrace_mutex. This is because
2999 * those pointers can change without the lock.
3000 */
Li Zefan694ce0a2009-06-24 09:54:19 +08003001 iter->pg = ftrace_pages_start;
3002 iter->idx = 0;
3003 for (l = 0; l <= *pos; ) {
3004 p = t_next(m, p, &l);
3005 if (!p)
3006 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08003007 }
walimis5821e1b2008-11-15 15:19:06 +08003008
Steven Rostedt69a30832011-12-19 15:21:16 -05003009 if (!p)
3010 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003011
3012 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003013}
3014
3015static void t_stop(struct seq_file *m, void *p)
3016{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003017 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003018}
3019
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003020void * __weak
3021arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec)
3022{
3023 return NULL;
3024}
3025
3026static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops,
3027 struct dyn_ftrace *rec)
3028{
3029 void *ptr;
3030
3031 ptr = arch_ftrace_trampoline_func(ops, rec);
3032 if (ptr)
3033 seq_printf(m, " ->%pS", ptr);
3034}
3035
Steven Rostedt5072c592008-05-12 21:20:43 +02003036static int t_show(struct seq_file *m, void *v)
3037{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003038 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003039 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02003040
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003041 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003042 return t_hash_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003043
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003044 if (iter->flags & FTRACE_ITER_PRINTALL) {
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003045 if (iter->flags & FTRACE_ITER_NOTRACE)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003046 seq_puts(m, "#### no functions disabled ####\n");
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003047 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003048 seq_puts(m, "#### all functions enabled ####\n");
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003049 return 0;
3050 }
3051
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003052 rec = iter->func;
3053
Steven Rostedt5072c592008-05-12 21:20:43 +02003054 if (!rec)
3055 return 0;
3056
Steven Rostedt647bcd02011-05-03 14:39:21 -04003057 seq_printf(m, "%ps", (void *)rec->ip);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003058 if (iter->flags & FTRACE_ITER_ENABLED) {
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003059 struct ftrace_ops *ops = NULL;
3060
Steven Rostedt08f6fba2012-04-30 16:20:23 -04003061 seq_printf(m, " (%ld)%s",
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04003062 ftrace_rec_count(rec),
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003063 rec->flags & FTRACE_FL_REGS ? " R" : " ");
3064 if (rec->flags & FTRACE_FL_TRAMP_EN) {
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04003065 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04003066 if (ops)
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003067 seq_printf(m, "\ttramp: %pS",
3068 (void *)ops->trampoline);
3069 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003070 seq_puts(m, "\ttramp: ERROR!");
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003071
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003072 }
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003073 add_trampoline_func(m, ops, rec);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003074 }
3075
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003076 seq_putc(m, '\n');
Steven Rostedt5072c592008-05-12 21:20:43 +02003077
3078 return 0;
3079}
3080
James Morris88e9d342009-09-22 16:43:43 -07003081static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003082 .start = t_start,
3083 .next = t_next,
3084 .stop = t_stop,
3085 .show = t_show,
3086};
3087
Ingo Molnare309b412008-05-12 21:20:51 +02003088static int
Steven Rostedt5072c592008-05-12 21:20:43 +02003089ftrace_avail_open(struct inode *inode, struct file *file)
3090{
3091 struct ftrace_iterator *iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003092
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003093 if (unlikely(ftrace_disabled))
3094 return -ENODEV;
3095
Jiri Olsa50e18b92012-04-25 10:23:39 +02003096 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3097 if (iter) {
3098 iter->pg = ftrace_pages_start;
3099 iter->ops = &global_ops;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003100 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003101
Jiri Olsa50e18b92012-04-25 10:23:39 +02003102 return iter ? 0 : -ENOMEM;
Steven Rostedt5072c592008-05-12 21:20:43 +02003103}
3104
Steven Rostedt647bcd02011-05-03 14:39:21 -04003105static int
3106ftrace_enabled_open(struct inode *inode, struct file *file)
3107{
3108 struct ftrace_iterator *iter;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003109
Jiri Olsa50e18b92012-04-25 10:23:39 +02003110 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3111 if (iter) {
3112 iter->pg = ftrace_pages_start;
3113 iter->flags = FTRACE_ITER_ENABLED;
3114 iter->ops = &global_ops;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003115 }
3116
Jiri Olsa50e18b92012-04-25 10:23:39 +02003117 return iter ? 0 : -ENOMEM;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003118}
3119
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003120/**
3121 * ftrace_regex_open - initialize function tracer filter files
3122 * @ops: The ftrace_ops that hold the hash filters
3123 * @flag: The type of filter to process
3124 * @inode: The inode, usually passed in to your open routine
3125 * @file: The file, usually passed in to your open routine
3126 *
3127 * ftrace_regex_open() initializes the filter files for the
3128 * @ops. Depending on @flag it may process the filter hash or
3129 * the notrace hash of @ops. With this called from the open
3130 * routine, you can use ftrace_filter_write() for the write
3131 * routine if @flag has FTRACE_ITER_FILTER set, or
3132 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05003133 * tracing_lseek() should be used as the lseek routine, and
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003134 * release must call ftrace_regex_release().
3135 */
3136int
Steven Rostedtf45948e2011-05-02 12:29:25 -04003137ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003138 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003139{
3140 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003141 struct ftrace_hash *hash;
Steven Rostedt5072c592008-05-12 21:20:43 +02003142 int ret = 0;
3143
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003144 ftrace_ops_init(ops);
3145
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003146 if (unlikely(ftrace_disabled))
3147 return -ENODEV;
3148
Steven Rostedt5072c592008-05-12 21:20:43 +02003149 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3150 if (!iter)
3151 return -ENOMEM;
3152
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003153 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
3154 kfree(iter);
3155 return -ENOMEM;
3156 }
3157
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003158 iter->ops = ops;
3159 iter->flags = flag;
3160
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003161 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003162
Steven Rostedtf45948e2011-05-02 12:29:25 -04003163 if (flag & FTRACE_ITER_NOTRACE)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003164 hash = ops->func_hash->notrace_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003165 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003166 hash = ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003167
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003168 if (file->f_mode & FMODE_WRITE) {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003169 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
3170
3171 if (file->f_flags & O_TRUNC)
3172 iter->hash = alloc_ftrace_hash(size_bits);
3173 else
3174 iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash);
3175
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003176 if (!iter->hash) {
3177 trace_parser_put(&iter->parser);
3178 kfree(iter);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003179 ret = -ENOMEM;
3180 goto out_unlock;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003181 }
3182 }
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003183
Steven Rostedt5072c592008-05-12 21:20:43 +02003184 if (file->f_mode & FMODE_READ) {
3185 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02003186
3187 ret = seq_open(file, &show_ftrace_seq_ops);
3188 if (!ret) {
3189 struct seq_file *m = file->private_data;
3190 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08003191 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003192 /* Failed */
3193 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08003194 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003195 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08003196 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003197 } else
3198 file->private_data = iter;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003199
3200 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003201 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003202
3203 return ret;
3204}
3205
Steven Rostedt41c52c02008-05-22 11:46:33 -04003206static int
3207ftrace_filter_open(struct inode *inode, struct file *file)
3208{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003209 struct ftrace_ops *ops = inode->i_private;
3210
3211 return ftrace_regex_open(ops,
Steven Rostedt69a30832011-12-19 15:21:16 -05003212 FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH,
3213 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003214}
3215
3216static int
3217ftrace_notrace_open(struct inode *inode, struct file *file)
3218{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003219 struct ftrace_ops *ops = inode->i_private;
3220
3221 return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003222 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003223}
3224
Steven Rostedt64e7c442009-02-13 17:08:48 -05003225static int ftrace_match(char *str, char *regex, int len, int type)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003226{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003227 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08003228 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003229
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003230 switch (type) {
3231 case MATCH_FULL:
3232 if (strcmp(str, regex) == 0)
3233 matched = 1;
3234 break;
3235 case MATCH_FRONT_ONLY:
3236 if (strncmp(str, regex, len) == 0)
3237 matched = 1;
3238 break;
3239 case MATCH_MIDDLE_ONLY:
3240 if (strstr(str, regex))
3241 matched = 1;
3242 break;
3243 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08003244 slen = strlen(str);
3245 if (slen >= len && memcmp(str + slen - len, regex, len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003246 matched = 1;
3247 break;
3248 }
3249
3250 return matched;
3251}
3252
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003253static int
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003254enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int not)
Steven Rostedt996e87b2011-04-26 16:11:03 -04003255{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003256 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003257 int ret = 0;
3258
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003259 entry = ftrace_lookup_ip(hash, rec->ip);
3260 if (not) {
3261 /* Do nothing if it doesn't exist */
3262 if (!entry)
3263 return 0;
3264
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003265 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003266 } else {
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003267 /* Do nothing if it exists */
3268 if (entry)
3269 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003270
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003271 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003272 }
3273 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04003274}
3275
Steven Rostedt64e7c442009-02-13 17:08:48 -05003276static int
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003277ftrace_match_record(struct dyn_ftrace *rec, char *mod,
3278 char *regex, int len, int type)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003279{
3280 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003281 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003282
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003283 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
3284
3285 if (mod) {
3286 /* module lookup requires matching the module */
3287 if (!modname || strcmp(modname, mod))
3288 return 0;
3289
3290 /* blank search means to match all funcs in the mod */
3291 if (!len)
3292 return 1;
3293 }
3294
Steven Rostedt64e7c442009-02-13 17:08:48 -05003295 return ftrace_match(str, regex, len, type);
3296}
3297
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003298static int
3299match_records(struct ftrace_hash *hash, char *buff,
3300 int len, char *mod, int not)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003301{
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003302 unsigned search_len = 0;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003303 struct ftrace_page *pg;
3304 struct dyn_ftrace *rec;
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003305 int type = MATCH_FULL;
3306 char *search = buff;
Li Zefan311d16d2009-12-08 11:15:11 +08003307 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003308 int ret;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003309
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003310 if (len) {
3311 type = filter_parse_regex(buff, len, &search, &not);
3312 search_len = strlen(search);
3313 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003314
Steven Rostedt52baf112009-02-14 01:15:39 -05003315 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003316
3317 if (unlikely(ftrace_disabled))
3318 goto out_unlock;
3319
Steven Rostedt265c8312009-02-13 12:43:56 -05003320 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003321 if (ftrace_match_record(rec, mod, search, search_len, type)) {
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003322 ret = enter_record(hash, rec, not);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003323 if (ret < 0) {
3324 found = ret;
3325 goto out_unlock;
3326 }
Li Zefan311d16d2009-12-08 11:15:11 +08003327 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05003328 }
3329 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003330 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05003331 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08003332
3333 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02003334}
3335
Steven Rostedt64e7c442009-02-13 17:08:48 -05003336static int
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003337ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003338{
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003339 return match_records(hash, buff, len, NULL, 0);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003340}
3341
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003342static int
3343ftrace_match_module_records(struct ftrace_hash *hash, char *buff, char *mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003344{
Steven Rostedt64e7c442009-02-13 17:08:48 -05003345 int not = 0;
Steven Rostedt6a24a242009-02-17 11:20:26 -05003346
Steven Rostedt64e7c442009-02-13 17:08:48 -05003347 /* blank or '*' mean the same */
3348 if (strcmp(buff, "*") == 0)
3349 buff[0] = 0;
3350
3351 /* handle the case of 'dont filter this module' */
3352 if (strcmp(buff, "!") == 0 || strcmp(buff, "!*") == 0) {
3353 buff[0] = 0;
3354 not = 1;
3355 }
3356
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003357 return match_records(hash, buff, strlen(buff), mod, not);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003358}
3359
Steven Rostedtf6180772009-02-14 00:40:25 -05003360/*
3361 * We register the module command as a template to show others how
3362 * to register the a command as well.
3363 */
3364
3365static int
Steven Rostedt43dd61c2011-07-07 11:09:22 -04003366ftrace_mod_callback(struct ftrace_hash *hash,
3367 char *func, char *cmd, char *param, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05003368{
3369 char *mod;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003370 int ret = -EINVAL;
Steven Rostedtf6180772009-02-14 00:40:25 -05003371
3372 /*
3373 * cmd == 'mod' because we only registered this func
3374 * for the 'mod' ftrace_func_command.
3375 * But if you register one func with multiple commands,
3376 * you can tell which command was used by the cmd
3377 * parameter.
3378 */
3379
3380 /* we must have a module name */
3381 if (!param)
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003382 return ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05003383
3384 mod = strsep(&param, ":");
3385 if (!strlen(mod))
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003386 return ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05003387
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003388 ret = ftrace_match_module_records(hash, func, mod);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003389 if (!ret)
3390 ret = -EINVAL;
3391 if (ret < 0)
3392 return ret;
3393
3394 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05003395}
3396
3397static struct ftrace_func_command ftrace_mod_cmd = {
3398 .name = "mod",
3399 .func = ftrace_mod_callback,
3400};
3401
3402static int __init ftrace_mod_cmd_init(void)
3403{
3404 return register_ftrace_command(&ftrace_mod_cmd);
3405}
Steven Rostedt6f415672012-10-05 12:13:07 -04003406core_initcall(ftrace_mod_cmd_init);
Steven Rostedtf6180772009-02-14 00:40:25 -05003407
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04003408static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04003409 struct ftrace_ops *op, struct pt_regs *pt_regs)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003410{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003411 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003412 struct hlist_head *hhd;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003413 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003414
3415 key = hash_long(ip, FTRACE_HASH_BITS);
3416
3417 hhd = &ftrace_func_hash[key];
3418
3419 if (hlist_empty(hhd))
3420 return;
3421
3422 /*
3423 * Disable preemption for these calls to prevent a RCU grace
3424 * period. This syncs the hash iteration and freeing of items
3425 * on the hash. rcu_read_lock is too dangerous here.
3426 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04003427 preempt_disable_notrace();
Steven Rostedt1bb539c2013-05-28 14:38:43 -04003428 hlist_for_each_entry_rcu_notrace(entry, hhd, node) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003429 if (entry->ip == ip)
3430 entry->ops->func(ip, parent_ip, &entry->data);
3431 }
Steven Rostedt5168ae52010-06-03 09:36:50 -04003432 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05003433}
3434
Steven Rostedtb6887d72009-02-17 12:32:04 -05003435static struct ftrace_ops trace_probe_ops __read_mostly =
Steven Rostedt59df055f2009-02-14 15:29:06 -05003436{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04003437 .func = function_trace_probe_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003438 .flags = FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003439 INIT_OPS_HASH(trace_probe_ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003440};
3441
Steven Rostedtb6887d72009-02-17 12:32:04 -05003442static int ftrace_probe_registered;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003443
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003444static void __enable_ftrace_function_probe(struct ftrace_hash *old_hash)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003445{
Steven Rostedtb8489142011-05-04 09:27:52 -04003446 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003447 int i;
3448
Steven Rostedt (Red Hat)19dd6032013-05-09 19:37:36 -04003449 if (ftrace_probe_registered) {
3450 /* still need to update the function call sites */
3451 if (ftrace_enabled)
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003452 ftrace_run_modify_code(&trace_probe_ops, FTRACE_UPDATE_CALLS,
3453 old_hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003454 return;
Steven Rostedt (Red Hat)19dd6032013-05-09 19:37:36 -04003455 }
Steven Rostedt59df055f2009-02-14 15:29:06 -05003456
3457 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3458 struct hlist_head *hhd = &ftrace_func_hash[i];
3459 if (hhd->first)
3460 break;
3461 }
3462 /* Nothing registered? */
3463 if (i == FTRACE_FUNC_HASHSIZE)
3464 return;
3465
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05003466 ret = ftrace_startup(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04003467
Steven Rostedtb6887d72009-02-17 12:32:04 -05003468 ftrace_probe_registered = 1;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003469}
3470
Steven Rostedtb6887d72009-02-17 12:32:04 -05003471static void __disable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003472{
3473 int i;
3474
Steven Rostedtb6887d72009-02-17 12:32:04 -05003475 if (!ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003476 return;
3477
3478 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3479 struct hlist_head *hhd = &ftrace_func_hash[i];
3480 if (hhd->first)
3481 return;
3482 }
3483
3484 /* no more funcs left */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05003485 ftrace_shutdown(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04003486
Steven Rostedtb6887d72009-02-17 12:32:04 -05003487 ftrace_probe_registered = 0;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003488}
3489
3490
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003491static void ftrace_free_entry(struct ftrace_func_probe *entry)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003492{
Steven Rostedt59df055f2009-02-14 15:29:06 -05003493 if (entry->ops->free)
Steven Rostedt (Red Hat)e67efb92013-03-12 15:07:59 -04003494 entry->ops->free(entry->ops, entry->ip, &entry->data);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003495 kfree(entry);
3496}
3497
Steven Rostedt59df055f2009-02-14 15:29:06 -05003498int
Steven Rostedtb6887d72009-02-17 12:32:04 -05003499register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003500 void *data)
3501{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003502 struct ftrace_func_probe *entry;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003503 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003504 struct ftrace_hash *old_hash = *orig_hash;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003505 struct ftrace_hash *hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003506 struct ftrace_page *pg;
3507 struct dyn_ftrace *rec;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003508 int type, len, not;
Steven Rostedt6a24a242009-02-17 11:20:26 -05003509 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003510 int count = 0;
3511 char *search;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003512 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003513
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02003514 type = filter_parse_regex(glob, strlen(glob), &search, &not);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003515 len = strlen(search);
3516
Steven Rostedtb6887d72009-02-17 12:32:04 -05003517 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003518 if (WARN_ON(not))
3519 return -EINVAL;
3520
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003521 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003522
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003523 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003524 if (!hash) {
3525 count = -ENOMEM;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003526 goto out;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003527 }
3528
3529 if (unlikely(ftrace_disabled)) {
3530 count = -ENODEV;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003531 goto out;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003532 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04003533
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003534 mutex_lock(&ftrace_lock);
3535
Steven Rostedt59df055f2009-02-14 15:29:06 -05003536 do_for_each_ftrace_rec(pg, rec) {
3537
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003538 if (!ftrace_match_record(rec, NULL, search, len, type))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003539 continue;
3540
3541 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
3542 if (!entry) {
Steven Rostedtb6887d72009-02-17 12:32:04 -05003543 /* If we did not process any, then return error */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003544 if (!count)
3545 count = -ENOMEM;
3546 goto out_unlock;
3547 }
3548
3549 count++;
3550
3551 entry->data = data;
3552
3553 /*
3554 * The caller might want to do something special
3555 * for each function we find. We call the callback
3556 * to give the caller an opportunity to do so.
3557 */
Steven Rostedt (Red Hat)e67efb92013-03-12 15:07:59 -04003558 if (ops->init) {
3559 if (ops->init(ops, rec->ip, &entry->data) < 0) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003560 /* caller does not like this func */
3561 kfree(entry);
3562 continue;
3563 }
3564 }
3565
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003566 ret = enter_record(hash, rec, 0);
3567 if (ret < 0) {
3568 kfree(entry);
3569 count = ret;
3570 goto out_unlock;
3571 }
3572
Steven Rostedt59df055f2009-02-14 15:29:06 -05003573 entry->ops = ops;
3574 entry->ip = rec->ip;
3575
3576 key = hash_long(entry->ip, FTRACE_HASH_BITS);
3577 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
3578
3579 } while_for_each_ftrace_rec();
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003580
3581 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003582
3583 __enable_ftrace_function_probe(old_hash);
3584
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003585 if (!ret)
3586 free_ftrace_hash_rcu(old_hash);
3587 else
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003588 count = ret;
3589
Steven Rostedt59df055f2009-02-14 15:29:06 -05003590 out_unlock:
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003591 mutex_unlock(&ftrace_lock);
3592 out:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003593 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003594 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003595
3596 return count;
3597}
3598
3599enum {
Steven Rostedtb6887d72009-02-17 12:32:04 -05003600 PROBE_TEST_FUNC = 1,
3601 PROBE_TEST_DATA = 2
Steven Rostedt59df055f2009-02-14 15:29:06 -05003602};
3603
3604static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003605__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003606 void *data, int flags)
3607{
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003608 struct ftrace_func_entry *rec_entry;
Steven Rostedtb6887d72009-02-17 12:32:04 -05003609 struct ftrace_func_probe *entry;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003610 struct ftrace_func_probe *p;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003611 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003612 struct ftrace_hash *old_hash = *orig_hash;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003613 struct list_head free_list;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003614 struct ftrace_hash *hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003615 struct hlist_node *tmp;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003616 char str[KSYM_SYMBOL_LEN];
3617 int type = MATCH_FULL;
3618 int i, len = 0;
3619 char *search;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003620 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003621
Atsushi Tsujib36461d2009-09-15 19:06:30 +09003622 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003623 glob = NULL;
Atsushi Tsujib36461d2009-09-15 19:06:30 +09003624 else if (glob) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003625 int not;
3626
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02003627 type = filter_parse_regex(glob, strlen(glob), &search, &not);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003628 len = strlen(search);
3629
Steven Rostedtb6887d72009-02-17 12:32:04 -05003630 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003631 if (WARN_ON(not))
3632 return;
3633 }
3634
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003635 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003636
3637 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3638 if (!hash)
3639 /* Hmm, should report this somehow */
3640 goto out_unlock;
3641
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003642 INIT_LIST_HEAD(&free_list);
3643
Steven Rostedt59df055f2009-02-14 15:29:06 -05003644 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3645 struct hlist_head *hhd = &ftrace_func_hash[i];
3646
Sasha Levinb67bfe02013-02-27 17:06:00 -08003647 hlist_for_each_entry_safe(entry, tmp, hhd, node) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003648
3649 /* break up if statements for readability */
Steven Rostedtb6887d72009-02-17 12:32:04 -05003650 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003651 continue;
3652
Steven Rostedtb6887d72009-02-17 12:32:04 -05003653 if ((flags & PROBE_TEST_DATA) && entry->data != data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003654 continue;
3655
3656 /* do this last, since it is the most expensive */
3657 if (glob) {
3658 kallsyms_lookup(entry->ip, NULL, NULL,
3659 NULL, str);
3660 if (!ftrace_match(str, glob, len, type))
3661 continue;
3662 }
3663
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003664 rec_entry = ftrace_lookup_ip(hash, entry->ip);
3665 /* It is possible more than one entry had this ip */
3666 if (rec_entry)
3667 free_hash_entry(hash, rec_entry);
3668
Steven Rostedt (Red Hat)740466b2013-03-13 11:15:19 -04003669 hlist_del_rcu(&entry->node);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003670 list_add(&entry->free_list, &free_list);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003671 }
3672 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003673 mutex_lock(&ftrace_lock);
Steven Rostedtb6887d72009-02-17 12:32:04 -05003674 __disable_ftrace_function_probe();
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003675 /*
3676 * Remove after the disable is called. Otherwise, if the last
3677 * probe is removed, a null hash means *all enabled*.
3678 */
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003679 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003680 synchronize_sched();
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003681 if (!ret)
3682 free_ftrace_hash_rcu(old_hash);
3683
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003684 list_for_each_entry_safe(entry, p, &free_list, free_list) {
3685 list_del(&entry->free_list);
3686 ftrace_free_entry(entry);
3687 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003688 mutex_unlock(&ftrace_lock);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003689
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003690 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003691 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003692 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003693}
3694
3695void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003696unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003697 void *data)
3698{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003699 __unregister_ftrace_function_probe(glob, ops, data,
3700 PROBE_TEST_FUNC | PROBE_TEST_DATA);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003701}
3702
3703void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003704unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003705{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003706 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003707}
3708
Steven Rostedtb6887d72009-02-17 12:32:04 -05003709void unregister_ftrace_function_probe_all(char *glob)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003710{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003711 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003712}
3713
Steven Rostedtf6180772009-02-14 00:40:25 -05003714static LIST_HEAD(ftrace_commands);
3715static DEFINE_MUTEX(ftrace_cmd_mutex);
3716
Tom Zanussi38de93a2013-10-24 08:34:18 -05003717/*
3718 * Currently we only register ftrace commands from __init, so mark this
3719 * __init too.
3720 */
3721__init int register_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05003722{
3723 struct ftrace_func_command *p;
3724 int ret = 0;
3725
3726 mutex_lock(&ftrace_cmd_mutex);
3727 list_for_each_entry(p, &ftrace_commands, list) {
3728 if (strcmp(cmd->name, p->name) == 0) {
3729 ret = -EBUSY;
3730 goto out_unlock;
3731 }
3732 }
3733 list_add(&cmd->list, &ftrace_commands);
3734 out_unlock:
3735 mutex_unlock(&ftrace_cmd_mutex);
3736
3737 return ret;
3738}
3739
Tom Zanussi38de93a2013-10-24 08:34:18 -05003740/*
3741 * Currently we only unregister ftrace commands from __init, so mark
3742 * this __init too.
3743 */
3744__init int unregister_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05003745{
3746 struct ftrace_func_command *p, *n;
3747 int ret = -ENODEV;
3748
3749 mutex_lock(&ftrace_cmd_mutex);
3750 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
3751 if (strcmp(cmd->name, p->name) == 0) {
3752 ret = 0;
3753 list_del_init(&p->list);
3754 goto out_unlock;
3755 }
3756 }
3757 out_unlock:
3758 mutex_unlock(&ftrace_cmd_mutex);
3759
3760 return ret;
3761}
3762
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003763static int ftrace_process_regex(struct ftrace_hash *hash,
3764 char *buff, int len, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003765{
Steven Rostedtf6180772009-02-14 00:40:25 -05003766 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05003767 struct ftrace_func_command *p;
GuoWen Li0aff1c02011-06-01 19:18:47 +08003768 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003769
3770 func = strsep(&next, ":");
3771
3772 if (!next) {
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003773 ret = ftrace_match_records(hash, func, len);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003774 if (!ret)
3775 ret = -EINVAL;
3776 if (ret < 0)
3777 return ret;
3778 return 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003779 }
3780
Steven Rostedtf6180772009-02-14 00:40:25 -05003781 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05003782
3783 command = strsep(&next, ":");
3784
Steven Rostedtf6180772009-02-14 00:40:25 -05003785 mutex_lock(&ftrace_cmd_mutex);
3786 list_for_each_entry(p, &ftrace_commands, list) {
3787 if (strcmp(p->name, command) == 0) {
Steven Rostedt43dd61c2011-07-07 11:09:22 -04003788 ret = p->func(hash, func, command, next, enable);
Steven Rostedtf6180772009-02-14 00:40:25 -05003789 goto out_unlock;
3790 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05003791 }
Steven Rostedtf6180772009-02-14 00:40:25 -05003792 out_unlock:
3793 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003794
Steven Rostedtf6180772009-02-14 00:40:25 -05003795 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003796}
3797
Ingo Molnare309b412008-05-12 21:20:51 +02003798static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04003799ftrace_regex_write(struct file *file, const char __user *ubuf,
3800 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02003801{
3802 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003803 struct trace_parser *parser;
3804 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02003805
Li Zefan4ba79782009-09-22 13:52:20 +08003806 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02003807 return 0;
3808
Steven Rostedt5072c592008-05-12 21:20:43 +02003809 if (file->f_mode & FMODE_READ) {
3810 struct seq_file *m = file->private_data;
3811 iter = m->private;
3812 } else
3813 iter = file->private_data;
3814
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003815 if (unlikely(ftrace_disabled))
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003816 return -ENODEV;
3817
3818 /* iter->hash is a local copy, so we don't need regex_lock */
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003819
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003820 parser = &iter->parser;
3821 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02003822
Li Zefan4ba79782009-09-22 13:52:20 +08003823 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003824 !trace_parser_cont(parser)) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003825 ret = ftrace_process_regex(iter->hash, parser->buffer,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003826 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08003827 trace_parser_clear(parser);
Steven Rostedt (Red Hat)7c088b52013-05-09 11:35:12 -04003828 if (ret < 0)
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003829 goto out;
Steven Rostedt5072c592008-05-12 21:20:43 +02003830 }
3831
Steven Rostedt5072c592008-05-12 21:20:43 +02003832 ret = read;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003833 out:
Steven Rostedt5072c592008-05-12 21:20:43 +02003834 return ret;
3835}
3836
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003837ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04003838ftrace_filter_write(struct file *file, const char __user *ubuf,
3839 size_t cnt, loff_t *ppos)
3840{
3841 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
3842}
3843
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003844ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04003845ftrace_notrace_write(struct file *file, const char __user *ubuf,
3846 size_t cnt, loff_t *ppos)
3847{
3848 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
3849}
3850
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003851static int
Masami Hiramatsu647664e2012-06-05 19:28:08 +09003852ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
3853{
3854 struct ftrace_func_entry *entry;
3855
3856 if (!ftrace_location(ip))
3857 return -EINVAL;
3858
3859 if (remove) {
3860 entry = ftrace_lookup_ip(hash, ip);
3861 if (!entry)
3862 return -ENOENT;
3863 free_hash_entry(hash, entry);
3864 return 0;
3865 }
3866
3867 return add_hash_entry(hash, ip);
3868}
3869
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003870static void ftrace_ops_update_code(struct ftrace_ops *ops,
3871 struct ftrace_hash *old_hash)
Steven Rostedt (Red Hat)1c80c432013-07-25 20:22:00 -04003872{
3873 if (ops->flags & FTRACE_OPS_FL_ENABLED && ftrace_enabled)
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003874 ftrace_run_modify_code(ops, FTRACE_UPDATE_CALLS, old_hash);
Steven Rostedt (Red Hat)1c80c432013-07-25 20:22:00 -04003875}
3876
Masami Hiramatsu647664e2012-06-05 19:28:08 +09003877static int
3878ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
3879 unsigned long ip, int remove, int reset, int enable)
Steven Rostedt41c52c02008-05-22 11:46:33 -04003880{
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003881 struct ftrace_hash **orig_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003882 struct ftrace_hash *old_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003883 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003884 int ret;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003885
Steven Rostedt41c52c02008-05-22 11:46:33 -04003886 if (unlikely(ftrace_disabled))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003887 return -ENODEV;
Steven Rostedt41c52c02008-05-22 11:46:33 -04003888
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003889 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003890
Steven Rostedtf45948e2011-05-02 12:29:25 -04003891 if (enable)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003892 orig_hash = &ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003893 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003894 orig_hash = &ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003895
Wang Nanb972cc52014-07-15 08:40:20 +08003896 if (reset)
3897 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
3898 else
3899 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3900
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003901 if (!hash) {
3902 ret = -ENOMEM;
3903 goto out_regex_unlock;
3904 }
Steven Rostedtf45948e2011-05-02 12:29:25 -04003905
Jiri Olsaac483c42012-01-02 10:04:14 +01003906 if (buf && !ftrace_match_records(hash, buf, len)) {
3907 ret = -EINVAL;
3908 goto out_regex_unlock;
3909 }
Masami Hiramatsu647664e2012-06-05 19:28:08 +09003910 if (ip) {
3911 ret = ftrace_match_addr(hash, ip, remove);
3912 if (ret < 0)
3913 goto out_regex_unlock;
3914 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003915
3916 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003917 old_hash = *orig_hash;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003918 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003919 if (!ret) {
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003920 ftrace_ops_update_code(ops, old_hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003921 free_ftrace_hash_rcu(old_hash);
3922 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003923 mutex_unlock(&ftrace_lock);
3924
Jiri Olsaac483c42012-01-02 10:04:14 +01003925 out_regex_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003926 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003927
3928 free_ftrace_hash(hash);
3929 return ret;
Steven Rostedt41c52c02008-05-22 11:46:33 -04003930}
3931
Masami Hiramatsu647664e2012-06-05 19:28:08 +09003932static int
3933ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove,
3934 int reset, int enable)
3935{
3936 return ftrace_set_hash(ops, 0, 0, ip, remove, reset, enable);
3937}
3938
3939/**
3940 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
3941 * @ops - the ops to set the filter with
3942 * @ip - the address to add to or remove from the filter.
3943 * @remove - non zero to remove the ip from the filter
3944 * @reset - non zero to reset all filters before applying this filter.
3945 *
3946 * Filters denote which functions should be enabled when tracing is enabled
3947 * If @ip is NULL, it failes to update filter.
3948 */
3949int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
3950 int remove, int reset)
3951{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003952 ftrace_ops_init(ops);
Masami Hiramatsu647664e2012-06-05 19:28:08 +09003953 return ftrace_set_addr(ops, ip, remove, reset, 1);
3954}
3955EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
3956
3957static int
3958ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
3959 int reset, int enable)
3960{
3961 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
3962}
3963
Steven Rostedt77a2b372008-05-12 21:20:45 +02003964/**
3965 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04003966 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02003967 * @buf - the string that holds the function filter text.
3968 * @len - the length of the string.
3969 * @reset - non zero to reset all filters before applying this filter.
3970 *
3971 * Filters denote which functions should be enabled when tracing is enabled.
3972 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3973 */
Jiri Olsaac483c42012-01-02 10:04:14 +01003974int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04003975 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02003976{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003977 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01003978 return ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003979}
Steven Rostedt936e0742011-05-05 22:54:01 -04003980EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003981
Steven Rostedt41c52c02008-05-22 11:46:33 -04003982/**
3983 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04003984 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04003985 * @buf - the string that holds the function notrace text.
3986 * @len - the length of the string.
3987 * @reset - non zero to reset all filters before applying this filter.
3988 *
3989 * Notrace Filters denote which functions should not be enabled when tracing
3990 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3991 * for tracing.
3992 */
Jiri Olsaac483c42012-01-02 10:04:14 +01003993int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04003994 int len, int reset)
3995{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003996 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01003997 return ftrace_set_regex(ops, buf, len, reset, 0);
Steven Rostedt936e0742011-05-05 22:54:01 -04003998}
3999EXPORT_SYMBOL_GPL(ftrace_set_notrace);
4000/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004001 * ftrace_set_global_filter - set a function to filter on with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004002 * @buf - the string that holds the function filter text.
4003 * @len - the length of the string.
4004 * @reset - non zero to reset all filters before applying this filter.
4005 *
4006 * Filters denote which functions should be enabled when tracing is enabled.
4007 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4008 */
4009void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
4010{
4011 ftrace_set_regex(&global_ops, buf, len, reset, 1);
4012}
4013EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
4014
4015/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004016 * ftrace_set_global_notrace - set a function to not trace with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004017 * @buf - the string that holds the function notrace text.
4018 * @len - the length of the string.
4019 * @reset - non zero to reset all filters before applying this filter.
4020 *
4021 * Notrace Filters denote which functions should not be enabled when tracing
4022 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4023 * for tracing.
4024 */
4025void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004026{
Steven Rostedtf45948e2011-05-02 12:29:25 -04004027 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004028}
Steven Rostedt936e0742011-05-05 22:54:01 -04004029EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004030
Steven Rostedt2af15d62009-05-28 13:37:24 -04004031/*
4032 * command line interface to allow users to set filters on boot up.
4033 */
4034#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
4035static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4036static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
4037
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004038/* Used by function selftest to not test if filter is set */
4039bool ftrace_filter_param __initdata;
4040
Steven Rostedt2af15d62009-05-28 13:37:24 -04004041static int __init set_ftrace_notrace(char *str)
4042{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004043 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004044 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004045 return 1;
4046}
4047__setup("ftrace_notrace=", set_ftrace_notrace);
4048
4049static int __init set_ftrace_filter(char *str)
4050{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004051 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004052 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004053 return 1;
4054}
4055__setup("ftrace_filter=", set_ftrace_filter);
4056
Stefan Assmann369bc182009-10-12 22:17:21 +02004057#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08004058static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004059static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004060static int ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer);
Steven Rostedt801c29f2010-03-05 20:02:19 -05004061
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04004062static unsigned long save_global_trampoline;
4063static unsigned long save_global_flags;
4064
Stefan Assmann369bc182009-10-12 22:17:21 +02004065static int __init set_graph_function(char *str)
4066{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02004067 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02004068 return 1;
4069}
4070__setup("ftrace_graph_filter=", set_graph_function);
4071
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004072static int __init set_graph_notrace_function(char *str)
4073{
4074 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
4075 return 1;
4076}
4077__setup("ftrace_graph_notrace=", set_graph_notrace_function);
4078
4079static void __init set_ftrace_early_graph(char *buf, int enable)
Stefan Assmann369bc182009-10-12 22:17:21 +02004080{
4081 int ret;
4082 char *func;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004083 unsigned long *table = ftrace_graph_funcs;
4084 int *count = &ftrace_graph_count;
4085
4086 if (!enable) {
4087 table = ftrace_graph_notrace_funcs;
4088 count = &ftrace_graph_notrace_count;
4089 }
Stefan Assmann369bc182009-10-12 22:17:21 +02004090
4091 while (buf) {
4092 func = strsep(&buf, ",");
4093 /* we allow only one expression at a time */
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004094 ret = ftrace_set_func(table, count, FTRACE_GRAPH_MAX_FUNCS, func);
Stefan Assmann369bc182009-10-12 22:17:21 +02004095 if (ret)
4096 printk(KERN_DEBUG "ftrace: function %s not "
4097 "traceable\n", func);
4098 }
4099}
4100#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4101
Steven Rostedt2a85a372011-12-19 21:57:44 -05004102void __init
4103ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04004104{
4105 char *func;
4106
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004107 ftrace_ops_init(ops);
4108
Steven Rostedt2af15d62009-05-28 13:37:24 -04004109 while (buf) {
4110 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04004111 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004112 }
4113}
4114
4115static void __init set_ftrace_early_filters(void)
4116{
4117 if (ftrace_filter_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004118 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004119 if (ftrace_notrace_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004120 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02004121#ifdef CONFIG_FUNCTION_GRAPH_TRACER
4122 if (ftrace_graph_buf[0])
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004123 set_ftrace_early_graph(ftrace_graph_buf, 1);
4124 if (ftrace_graph_notrace_buf[0])
4125 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02004126#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04004127}
4128
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004129int ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02004130{
4131 struct seq_file *m = (struct seq_file *)file->private_data;
4132 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004133 struct ftrace_hash **orig_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004134 struct ftrace_hash *old_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004135 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04004136 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004137 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02004138
Steven Rostedt5072c592008-05-12 21:20:43 +02004139 if (file->f_mode & FMODE_READ) {
4140 iter = m->private;
Steven Rostedt5072c592008-05-12 21:20:43 +02004141 seq_release(inode, file);
4142 } else
4143 iter = file->private_data;
4144
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004145 parser = &iter->parser;
4146 if (trace_parser_loaded(parser)) {
4147 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04004148 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02004149 }
4150
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004151 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004152
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004153 mutex_lock(&iter->ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004154
Steven Rostedt058e2972011-04-29 22:35:33 -04004155 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04004156 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
4157
4158 if (filter_hash)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004159 orig_hash = &iter->ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04004160 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004161 orig_hash = &iter->ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004162
Steven Rostedt058e2972011-04-29 22:35:33 -04004163 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004164 old_hash = *orig_hash;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04004165 ret = ftrace_hash_move(iter->ops, filter_hash,
4166 orig_hash, iter->hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004167 if (!ret) {
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04004168 ftrace_ops_update_code(iter->ops, old_hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004169 free_ftrace_hash_rcu(old_hash);
4170 }
Steven Rostedt058e2972011-04-29 22:35:33 -04004171 mutex_unlock(&ftrace_lock);
4172 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004173
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004174 mutex_unlock(&iter->ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004175 free_ftrace_hash(iter->hash);
4176 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04004177
Steven Rostedt5072c592008-05-12 21:20:43 +02004178 return 0;
4179}
4180
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004181static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02004182 .open = ftrace_avail_open,
4183 .read = seq_read,
4184 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08004185 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02004186};
4187
Steven Rostedt647bcd02011-05-03 14:39:21 -04004188static const struct file_operations ftrace_enabled_fops = {
4189 .open = ftrace_enabled_open,
4190 .read = seq_read,
4191 .llseek = seq_lseek,
4192 .release = seq_release_private,
4193};
4194
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004195static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02004196 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08004197 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02004198 .write = ftrace_filter_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004199 .llseek = tracing_lseek,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04004200 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02004201};
4202
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004203static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04004204 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08004205 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04004206 .write = ftrace_notrace_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004207 .llseek = tracing_lseek,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04004208 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04004209};
4210
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004211#ifdef CONFIG_FUNCTION_GRAPH_TRACER
4212
4213static DEFINE_MUTEX(graph_lock);
4214
4215int ftrace_graph_count;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004216int ftrace_graph_notrace_count;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004217unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004218unsigned long ftrace_graph_notrace_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004219
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004220struct ftrace_graph_data {
4221 unsigned long *table;
4222 size_t size;
4223 int *count;
4224 const struct seq_operations *seq_ops;
4225};
4226
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004227static void *
Li Zefan85951842009-06-24 09:54:00 +08004228__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004229{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004230 struct ftrace_graph_data *fgd = m->private;
4231
4232 if (*pos >= *fgd->count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004233 return NULL;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004234 return &fgd->table[*pos];
Li Zefan85951842009-06-24 09:54:00 +08004235}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004236
Li Zefan85951842009-06-24 09:54:00 +08004237static void *
4238g_next(struct seq_file *m, void *v, loff_t *pos)
4239{
4240 (*pos)++;
4241 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004242}
4243
4244static void *g_start(struct seq_file *m, loff_t *pos)
4245{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004246 struct ftrace_graph_data *fgd = m->private;
4247
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004248 mutex_lock(&graph_lock);
4249
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004250 /* Nothing, tell g_show to print all functions are enabled */
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004251 if (!*fgd->count && !*pos)
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004252 return (void *)1;
4253
Li Zefan85951842009-06-24 09:54:00 +08004254 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004255}
4256
4257static void g_stop(struct seq_file *m, void *p)
4258{
4259 mutex_unlock(&graph_lock);
4260}
4261
4262static int g_show(struct seq_file *m, void *v)
4263{
4264 unsigned long *ptr = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004265
4266 if (!ptr)
4267 return 0;
4268
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004269 if (ptr == (unsigned long *)1) {
Namhyung Kim280d1422014-06-13 01:23:51 +09004270 struct ftrace_graph_data *fgd = m->private;
4271
4272 if (fgd->table == ftrace_graph_funcs)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01004273 seq_puts(m, "#### all functions enabled ####\n");
Namhyung Kim280d1422014-06-13 01:23:51 +09004274 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01004275 seq_puts(m, "#### no functions disabled ####\n");
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004276 return 0;
4277 }
4278
Steven Rostedtb375a112009-09-17 00:05:58 -04004279 seq_printf(m, "%ps\n", (void *)*ptr);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004280
4281 return 0;
4282}
4283
James Morris88e9d342009-09-22 16:43:43 -07004284static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004285 .start = g_start,
4286 .next = g_next,
4287 .stop = g_stop,
4288 .show = g_show,
4289};
4290
4291static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004292__ftrace_graph_open(struct inode *inode, struct file *file,
4293 struct ftrace_graph_data *fgd)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004294{
4295 int ret = 0;
4296
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004297 mutex_lock(&graph_lock);
4298 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04004299 (file->f_flags & O_TRUNC)) {
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004300 *fgd->count = 0;
4301 memset(fgd->table, 0, fgd->size * sizeof(*fgd->table));
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004302 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004303 mutex_unlock(&graph_lock);
4304
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004305 if (file->f_mode & FMODE_READ) {
4306 ret = seq_open(file, fgd->seq_ops);
4307 if (!ret) {
4308 struct seq_file *m = file->private_data;
4309 m->private = fgd;
4310 }
4311 } else
4312 file->private_data = fgd;
Li Zefana4ec5e02009-09-18 14:06:28 +08004313
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004314 return ret;
4315}
4316
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004317static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004318ftrace_graph_open(struct inode *inode, struct file *file)
4319{
4320 struct ftrace_graph_data *fgd;
4321
4322 if (unlikely(ftrace_disabled))
4323 return -ENODEV;
4324
4325 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4326 if (fgd == NULL)
4327 return -ENOMEM;
4328
4329 fgd->table = ftrace_graph_funcs;
4330 fgd->size = FTRACE_GRAPH_MAX_FUNCS;
4331 fgd->count = &ftrace_graph_count;
4332 fgd->seq_ops = &ftrace_graph_seq_ops;
4333
4334 return __ftrace_graph_open(inode, file, fgd);
4335}
4336
4337static int
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004338ftrace_graph_notrace_open(struct inode *inode, struct file *file)
4339{
4340 struct ftrace_graph_data *fgd;
4341
4342 if (unlikely(ftrace_disabled))
4343 return -ENODEV;
4344
4345 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4346 if (fgd == NULL)
4347 return -ENOMEM;
4348
4349 fgd->table = ftrace_graph_notrace_funcs;
4350 fgd->size = FTRACE_GRAPH_MAX_FUNCS;
4351 fgd->count = &ftrace_graph_notrace_count;
4352 fgd->seq_ops = &ftrace_graph_seq_ops;
4353
4354 return __ftrace_graph_open(inode, file, fgd);
4355}
4356
4357static int
Li Zefan87827112009-07-23 11:29:11 +08004358ftrace_graph_release(struct inode *inode, struct file *file)
4359{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004360 if (file->f_mode & FMODE_READ) {
4361 struct seq_file *m = file->private_data;
4362
4363 kfree(m->private);
Li Zefan87827112009-07-23 11:29:11 +08004364 seq_release(inode, file);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004365 } else {
4366 kfree(file->private_data);
4367 }
4368
Li Zefan87827112009-07-23 11:29:11 +08004369 return 0;
4370}
4371
4372static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004373ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004374{
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004375 struct dyn_ftrace *rec;
4376 struct ftrace_page *pg;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004377 int search_len;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004378 int fail = 1;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004379 int type, not;
4380 char *search;
4381 bool exists;
4382 int i;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004383
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004384 /* decode regex */
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02004385 type = filter_parse_regex(buffer, strlen(buffer), &search, &not);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004386 if (!not && *idx >= size)
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004387 return -EBUSY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004388
4389 search_len = strlen(search);
4390
Steven Rostedt52baf112009-02-14 01:15:39 -05004391 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04004392
4393 if (unlikely(ftrace_disabled)) {
4394 mutex_unlock(&ftrace_lock);
4395 return -ENODEV;
4396 }
4397
Steven Rostedt265c8312009-02-13 12:43:56 -05004398 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004399
Steven Rostedtb9df92d2011-04-28 20:32:08 -04004400 if (ftrace_match_record(rec, NULL, search, search_len, type)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004401 /* if it is in the array */
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004402 exists = false;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004403 for (i = 0; i < *idx; i++) {
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004404 if (array[i] == rec->ip) {
4405 exists = true;
Steven Rostedt265c8312009-02-13 12:43:56 -05004406 break;
4407 }
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004408 }
4409
4410 if (!not) {
4411 fail = 0;
4412 if (!exists) {
4413 array[(*idx)++] = rec->ip;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004414 if (*idx >= size)
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004415 goto out;
4416 }
4417 } else {
4418 if (exists) {
4419 array[i] = array[--(*idx)];
4420 array[*idx] = 0;
4421 fail = 0;
4422 }
4423 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004424 }
Steven Rostedt265c8312009-02-13 12:43:56 -05004425 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004426out:
Steven Rostedt52baf112009-02-14 01:15:39 -05004427 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004428
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004429 if (fail)
4430 return -EINVAL;
4431
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004432 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004433}
4434
4435static ssize_t
4436ftrace_graph_write(struct file *file, const char __user *ubuf,
4437 size_t cnt, loff_t *ppos)
4438{
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004439 struct trace_parser parser;
Namhyung Kim6a101082013-10-14 17:24:25 +09004440 ssize_t read, ret = 0;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004441 struct ftrace_graph_data *fgd = file->private_data;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004442
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004443 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004444 return 0;
4445
Namhyung Kim6a101082013-10-14 17:24:25 +09004446 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX))
4447 return -ENOMEM;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004448
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004449 read = trace_get_user(&parser, ubuf, cnt, ppos);
4450
Li Zefan4ba79782009-09-22 13:52:20 +08004451 if (read >= 0 && trace_parser_loaded((&parser))) {
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004452 parser.buffer[parser.idx] = 0;
4453
Namhyung Kim6a101082013-10-14 17:24:25 +09004454 mutex_lock(&graph_lock);
4455
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004456 /* we allow only one expression at a time */
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004457 ret = ftrace_set_func(fgd->table, fgd->count, fgd->size,
4458 parser.buffer);
Namhyung Kim6a101082013-10-14 17:24:25 +09004459
4460 mutex_unlock(&graph_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004461 }
4462
Namhyung Kim6a101082013-10-14 17:24:25 +09004463 if (!ret)
4464 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08004465
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004466 trace_parser_put(&parser);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004467
4468 return ret;
4469}
4470
4471static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08004472 .open = ftrace_graph_open,
4473 .read = seq_read,
4474 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004475 .llseek = tracing_lseek,
Li Zefan87827112009-07-23 11:29:11 +08004476 .release = ftrace_graph_release,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004477};
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004478
4479static const struct file_operations ftrace_graph_notrace_fops = {
4480 .open = ftrace_graph_notrace_open,
4481 .read = seq_read,
4482 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004483 .llseek = tracing_lseek,
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004484 .release = ftrace_graph_release,
4485};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004486#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4487
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05004488void ftrace_create_filter_files(struct ftrace_ops *ops,
4489 struct dentry *parent)
4490{
4491
4492 trace_create_file("set_ftrace_filter", 0644, parent,
4493 ops, &ftrace_filter_fops);
4494
4495 trace_create_file("set_ftrace_notrace", 0644, parent,
4496 ops, &ftrace_notrace_fops);
4497}
4498
4499/*
4500 * The name "destroy_filter_files" is really a misnomer. Although
4501 * in the future, it may actualy delete the files, but this is
4502 * really intended to make sure the ops passed in are disabled
4503 * and that when this function returns, the caller is free to
4504 * free the ops.
4505 *
4506 * The "destroy" name is only to match the "create" name that this
4507 * should be paired with.
4508 */
4509void ftrace_destroy_filter_files(struct ftrace_ops *ops)
4510{
4511 mutex_lock(&ftrace_lock);
4512 if (ops->flags & FTRACE_OPS_FL_ENABLED)
4513 ftrace_shutdown(ops, 0);
4514 ops->flags |= FTRACE_OPS_FL_DELETED;
4515 mutex_unlock(&ftrace_lock);
4516}
4517
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004518static __init int ftrace_init_dyn_debugfs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02004519{
Steven Rostedt5072c592008-05-12 21:20:43 +02004520
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004521 trace_create_file("available_filter_functions", 0444,
4522 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02004523
Steven Rostedt647bcd02011-05-03 14:39:21 -04004524 trace_create_file("enabled_functions", 0444,
4525 d_tracer, NULL, &ftrace_enabled_fops);
4526
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05004527 ftrace_create_filter_files(&global_ops, d_tracer);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04004528
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004529#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004530 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004531 NULL,
4532 &ftrace_graph_fops);
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004533 trace_create_file("set_graph_notrace", 0444, d_tracer,
4534 NULL,
4535 &ftrace_graph_notrace_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004536#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4537
Steven Rostedt5072c592008-05-12 21:20:43 +02004538 return 0;
4539}
4540
Steven Rostedt9fd49322012-04-24 22:32:06 -04004541static int ftrace_cmp_ips(const void *a, const void *b)
Steven Rostedt68950612011-12-16 17:06:45 -05004542{
Steven Rostedt9fd49322012-04-24 22:32:06 -04004543 const unsigned long *ipa = a;
4544 const unsigned long *ipb = b;
Steven Rostedt68950612011-12-16 17:06:45 -05004545
Steven Rostedt9fd49322012-04-24 22:32:06 -04004546 if (*ipa > *ipb)
4547 return 1;
4548 if (*ipa < *ipb)
4549 return -1;
4550 return 0;
4551}
4552
4553static void ftrace_swap_ips(void *a, void *b, int size)
4554{
4555 unsigned long *ipa = a;
4556 unsigned long *ipb = b;
4557 unsigned long t;
4558
4559 t = *ipa;
4560 *ipa = *ipb;
4561 *ipb = t;
Steven Rostedt68950612011-12-16 17:06:45 -05004562}
4563
Jiri Olsa5cb084b2009-10-13 16:33:53 -04004564static int ftrace_process_locs(struct module *mod,
Steven Rostedt31e88902008-11-14 16:21:19 -08004565 unsigned long *start,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004566 unsigned long *end)
4567{
Steven Rostedt706c81f2012-04-24 23:45:26 -04004568 struct ftrace_page *start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004569 struct ftrace_page *pg;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004570 struct dyn_ftrace *rec;
Steven Rostedta7900872011-12-16 16:23:44 -05004571 unsigned long count;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004572 unsigned long *p;
4573 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04004574 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedta7900872011-12-16 16:23:44 -05004575 int ret = -ENOMEM;
4576
4577 count = end - start;
4578
4579 if (!count)
4580 return 0;
4581
Steven Rostedt9fd49322012-04-24 22:32:06 -04004582 sort(start, count, sizeof(*start),
4583 ftrace_cmp_ips, ftrace_swap_ips);
4584
Steven Rostedt706c81f2012-04-24 23:45:26 -04004585 start_pg = ftrace_allocate_pages(count);
4586 if (!start_pg)
Steven Rostedta7900872011-12-16 16:23:44 -05004587 return -ENOMEM;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004588
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004589 mutex_lock(&ftrace_lock);
Steven Rostedta7900872011-12-16 16:23:44 -05004590
Steven Rostedt32082302011-12-16 14:42:37 -05004591 /*
4592 * Core and each module needs their own pages, as
4593 * modules will free them when they are removed.
4594 * Force a new page to be allocated for modules.
4595 */
Steven Rostedta7900872011-12-16 16:23:44 -05004596 if (!mod) {
4597 WARN_ON(ftrace_pages || ftrace_pages_start);
4598 /* First initialization */
Steven Rostedt706c81f2012-04-24 23:45:26 -04004599 ftrace_pages = ftrace_pages_start = start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004600 } else {
Steven Rostedt32082302011-12-16 14:42:37 -05004601 if (!ftrace_pages)
Steven Rostedta7900872011-12-16 16:23:44 -05004602 goto out;
Steven Rostedt32082302011-12-16 14:42:37 -05004603
Steven Rostedta7900872011-12-16 16:23:44 -05004604 if (WARN_ON(ftrace_pages->next)) {
4605 /* Hmm, we have free pages? */
4606 while (ftrace_pages->next)
4607 ftrace_pages = ftrace_pages->next;
Steven Rostedt32082302011-12-16 14:42:37 -05004608 }
Steven Rostedta7900872011-12-16 16:23:44 -05004609
Steven Rostedt706c81f2012-04-24 23:45:26 -04004610 ftrace_pages->next = start_pg;
Steven Rostedt32082302011-12-16 14:42:37 -05004611 }
4612
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004613 p = start;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004614 pg = start_pg;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004615 while (p < end) {
4616 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08004617 /*
4618 * Some architecture linkers will pad between
4619 * the different mcount_loc sections of different
4620 * object files to satisfy alignments.
4621 * Skip any NULL pointers.
4622 */
4623 if (!addr)
4624 continue;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004625
4626 if (pg->index == pg->size) {
4627 /* We should have allocated enough */
4628 if (WARN_ON(!pg->next))
4629 break;
4630 pg = pg->next;
4631 }
4632
4633 rec = &pg->records[pg->index++];
4634 rec->ip = addr;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004635 }
4636
Steven Rostedt706c81f2012-04-24 23:45:26 -04004637 /* We should have used all pages */
4638 WARN_ON(pg->next);
4639
4640 /* Assign the last page to ftrace_pages */
4641 ftrace_pages = pg;
4642
Steven Rostedta4f18ed2011-06-07 09:26:46 -04004643 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04004644 * We only need to disable interrupts on start up
4645 * because we are modifying code that an interrupt
4646 * may execute, and the modification is not atomic.
4647 * But for modules, nothing runs the code we modify
4648 * until we are finished with it, and there's no
4649 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04004650 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04004651 if (!mod)
4652 local_irq_save(flags);
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01004653 ftrace_update_code(mod, start_pg);
Steven Rostedt4376cac2011-06-24 23:28:13 -04004654 if (!mod)
4655 local_irq_restore(flags);
Steven Rostedta7900872011-12-16 16:23:44 -05004656 ret = 0;
4657 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004658 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004659
Steven Rostedta7900872011-12-16 16:23:44 -05004660 return ret;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004661}
4662
Steven Rostedt93eb6772009-04-15 13:24:06 -04004663#ifdef CONFIG_MODULES
Steven Rostedt32082302011-12-16 14:42:37 -05004664
4665#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
4666
jolsa@redhat.come7247a12009-10-07 19:00:35 +02004667void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04004668{
4669 struct dyn_ftrace *rec;
Steven Rostedt32082302011-12-16 14:42:37 -05004670 struct ftrace_page **last_pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04004671 struct ftrace_page *pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004672 int order;
Steven Rostedt93eb6772009-04-15 13:24:06 -04004673
Steven Rostedt93eb6772009-04-15 13:24:06 -04004674 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04004675
4676 if (ftrace_disabled)
4677 goto out_unlock;
4678
Steven Rostedt32082302011-12-16 14:42:37 -05004679 /*
4680 * Each module has its own ftrace_pages, remove
4681 * them from the list.
4682 */
4683 last_pg = &ftrace_pages_start;
4684 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
4685 rec = &pg->records[0];
jolsa@redhat.come7247a12009-10-07 19:00:35 +02004686 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04004687 /*
Steven Rostedt32082302011-12-16 14:42:37 -05004688 * As core pages are first, the first
4689 * page should never be a module page.
Steven Rostedt93eb6772009-04-15 13:24:06 -04004690 */
Steven Rostedt32082302011-12-16 14:42:37 -05004691 if (WARN_ON(pg == ftrace_pages_start))
4692 goto out_unlock;
4693
4694 /* Check if we are deleting the last page */
4695 if (pg == ftrace_pages)
4696 ftrace_pages = next_to_ftrace_page(last_pg);
4697
4698 *last_pg = pg->next;
Steven Rostedta7900872011-12-16 16:23:44 -05004699 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
4700 free_pages((unsigned long)pg->records, order);
4701 kfree(pg);
Steven Rostedt32082302011-12-16 14:42:37 -05004702 } else
4703 last_pg = &pg->next;
4704 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04004705 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04004706 mutex_unlock(&ftrace_lock);
4707}
4708
4709static void ftrace_init_module(struct module *mod,
4710 unsigned long *start, unsigned long *end)
Steven Rostedt90d595f2008-08-14 15:45:09 -04004711{
Steven Rostedt00fd61a2008-08-15 21:40:04 -04004712 if (ftrace_disabled || start == end)
Steven Rostedtfed19392008-08-14 22:47:19 -04004713 return;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04004714 ftrace_process_locs(mod, start, end);
Steven Rostedt90d595f2008-08-14 15:45:09 -04004715}
4716
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04004717void ftrace_module_init(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04004718{
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04004719 ftrace_init_module(mod, mod->ftrace_callsites,
4720 mod->ftrace_callsites +
4721 mod->num_ftrace_callsites);
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05004722}
4723
4724static int ftrace_module_notify_exit(struct notifier_block *self,
4725 unsigned long val, void *data)
4726{
4727 struct module *mod = data;
4728
4729 if (val == MODULE_STATE_GOING)
jolsa@redhat.come7247a12009-10-07 19:00:35 +02004730 ftrace_release_mod(mod);
Steven Rostedt93eb6772009-04-15 13:24:06 -04004731
4732 return 0;
4733}
4734#else
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05004735static int ftrace_module_notify_exit(struct notifier_block *self,
4736 unsigned long val, void *data)
Steven Rostedt93eb6772009-04-15 13:24:06 -04004737{
4738 return 0;
4739}
4740#endif /* CONFIG_MODULES */
4741
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05004742struct notifier_block ftrace_module_exit_nb = {
4743 .notifier_call = ftrace_module_notify_exit,
4744 .priority = INT_MIN, /* Run after anything that can remove kprobes */
4745};
4746
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004747void __init ftrace_init(void)
4748{
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01004749 extern unsigned long __start_mcount_loc[];
4750 extern unsigned long __stop_mcount_loc[];
Jiri Slaby3a36cb12014-02-24 19:59:59 +01004751 unsigned long count, flags;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004752 int ret;
4753
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004754 local_irq_save(flags);
Jiri Slaby3a36cb12014-02-24 19:59:59 +01004755 ret = ftrace_dyn_arch_init();
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004756 local_irq_restore(flags);
Jiri Slabyaf64a7c2014-02-24 19:59:58 +01004757 if (ret)
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004758 goto failed;
4759
4760 count = __stop_mcount_loc - __start_mcount_loc;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01004761 if (!count) {
4762 pr_info("ftrace: No functions to be traced?\n");
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004763 goto failed;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01004764 }
4765
4766 pr_info("ftrace: allocating %ld entries in %ld pages\n",
4767 count, count / ENTRIES_PER_PAGE + 1);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004768
4769 last_ftrace_enabled = ftrace_enabled = 1;
4770
Jiri Olsa5cb084b2009-10-13 16:33:53 -04004771 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08004772 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004773 __stop_mcount_loc);
4774
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05004775 ret = register_module_notifier(&ftrace_module_exit_nb);
4776 if (ret)
4777 pr_warning("Failed to register trace ftrace module exit notifier\n");
Steven Rostedt93eb6772009-04-15 13:24:06 -04004778
Steven Rostedt2af15d62009-05-28 13:37:24 -04004779 set_ftrace_early_filters();
4780
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004781 return;
4782 failed:
4783 ftrace_disabled = 1;
4784}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004785
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04004786/* Do nothing if arch does not support this */
4787void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
4788{
4789}
4790
4791static void ftrace_update_trampoline(struct ftrace_ops *ops)
4792{
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04004793
4794/*
4795 * Currently there's no safe way to free a trampoline when the kernel
4796 * is configured with PREEMPT. That is because a task could be preempted
4797 * when it jumped to the trampoline, it may be preempted for a long time
4798 * depending on the system load, and currently there's no way to know
4799 * when it will be off the trampoline. If the trampoline is freed
4800 * too early, when the task runs again, it will be executing on freed
4801 * memory and crash.
4802 */
4803#ifdef CONFIG_PREEMPT
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04004804 /* Currently, only non dynamic ops can have a trampoline */
4805 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
4806 return;
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04004807#endif
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04004808
4809 arch_ftrace_update_trampoline(ops);
4810}
4811
Steven Rostedt3d083392008-05-12 21:20:42 +02004812#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01004813
Steven Rostedt2b499382011-05-03 22:49:52 -04004814static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04004815 .func = ftrace_stub,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004816 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED,
Steven Rostedtbd69c302011-05-03 21:55:54 -04004817};
4818
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01004819static int __init ftrace_nodyn_init(void)
4820{
4821 ftrace_enabled = 1;
4822 return 0;
4823}
Steven Rostedt6f415672012-10-05 12:13:07 -04004824core_initcall(ftrace_nodyn_init);
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01004825
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004826static inline int ftrace_init_dyn_debugfs(struct dentry *d_tracer) { return 0; }
4827static inline void ftrace_startup_enable(int command) { }
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04004828static inline void ftrace_startup_all(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05004829/* Keep as macros so we do not need to define the commands */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05004830# define ftrace_startup(ops, command) \
4831 ({ \
4832 int ___ret = __register_ftrace_function(ops); \
4833 if (!___ret) \
4834 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
4835 ___ret; \
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04004836 })
Steven Rostedt (Red Hat)1fcc1552014-02-19 15:12:18 -05004837# define ftrace_shutdown(ops, command) \
4838 ({ \
4839 int ___ret = __unregister_ftrace_function(ops); \
4840 if (!___ret) \
4841 (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \
4842 ___ret; \
4843 })
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05004844
Ingo Molnarc7aafc52008-05-12 21:20:45 +02004845# define ftrace_startup_sysctl() do { } while (0)
4846# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04004847
4848static inline int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04004849ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04004850{
4851 return 1;
4852}
4853
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04004854static void ftrace_update_trampoline(struct ftrace_ops *ops)
4855{
4856}
4857
Steven Rostedt3d083392008-05-12 21:20:42 +02004858#endif /* CONFIG_DYNAMIC_FTRACE */
4859
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05004860__init void ftrace_init_global_array_ops(struct trace_array *tr)
4861{
4862 tr->ops = &global_ops;
4863 tr->ops->private = tr;
4864}
4865
4866void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
4867{
4868 /* If we filter on pids, update to use the pid function */
4869 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
4870 if (WARN_ON(tr->ops->func != ftrace_stub))
4871 printk("ftrace ops had %pS for function\n",
4872 tr->ops->func);
4873 /* Only the top level instance does pid tracing */
4874 if (!list_empty(&ftrace_pids)) {
4875 set_ftrace_pid_function(func);
4876 func = ftrace_pid_func;
4877 }
4878 }
4879 tr->ops->func = func;
4880 tr->ops->private = tr;
4881}
4882
4883void ftrace_reset_array_ops(struct trace_array *tr)
4884{
4885 tr->ops->func = ftrace_stub;
4886}
4887
Steven Rostedtb8489142011-05-04 09:27:52 -04004888static void
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004889ftrace_ops_control_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04004890 struct ftrace_ops *op, struct pt_regs *regs)
Jiri Olsae2484912012-02-15 15:51:48 +01004891{
Jiri Olsae2484912012-02-15 15:51:48 +01004892 if (unlikely(trace_recursion_test(TRACE_CONTROL_BIT)))
4893 return;
4894
4895 /*
4896 * Some of the ops may be dynamically allocated,
4897 * they must be freed after a synchronize_sched().
4898 */
4899 preempt_disable_notrace();
4900 trace_recursion_set(TRACE_CONTROL_BIT);
Steven Rostedt (Red Hat)b5aa3a42013-11-04 18:34:44 -05004901
4902 /*
4903 * Control funcs (perf) uses RCU. Only trace if
4904 * RCU is currently active.
4905 */
4906 if (!rcu_is_watching())
4907 goto out;
4908
Steven Rostedt0a016402012-11-02 17:03:03 -04004909 do_for_each_ftrace_op(op, ftrace_control_list) {
Steven Rostedt (Red Hat)395b97a2013-03-27 09:31:28 -04004910 if (!(op->flags & FTRACE_OPS_FL_STUB) &&
4911 !ftrace_function_local_disabled(op) &&
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04004912 ftrace_ops_test(op, ip, regs))
Steven Rostedta1e2e312011-08-09 12:50:46 -04004913 op->func(ip, parent_ip, op, regs);
Steven Rostedt0a016402012-11-02 17:03:03 -04004914 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)b5aa3a42013-11-04 18:34:44 -05004915 out:
Jiri Olsae2484912012-02-15 15:51:48 +01004916 trace_recursion_clear(TRACE_CONTROL_BIT);
4917 preempt_enable_notrace();
4918}
4919
4920static struct ftrace_ops control_ops = {
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004921 .func = ftrace_ops_control_func,
4922 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004923 INIT_OPS_HASH(control_ops)
Jiri Olsae2484912012-02-15 15:51:48 +01004924};
4925
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004926static inline void
4927__ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04004928 struct ftrace_ops *ignored, struct pt_regs *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04004929{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004930 struct ftrace_ops *op;
Steven Rostedtedc15ca2012-11-02 17:47:21 -04004931 int bit;
Steven Rostedtb8489142011-05-04 09:27:52 -04004932
Steven Rostedtedc15ca2012-11-02 17:47:21 -04004933 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
4934 if (bit < 0)
4935 return;
Steven Rostedtc29f1222012-11-02 17:17:59 -04004936
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004937 /*
4938 * Some of the ops may be dynamically allocated,
4939 * they must be freed after a synchronize_sched().
4940 */
4941 preempt_disable_notrace();
Steven Rostedt0a016402012-11-02 17:03:03 -04004942 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05004943 if (ftrace_ops_test(op, ip, regs)) {
Steven Rostedt (Red Hat)1d48d592014-06-25 11:54:03 -04004944 if (FTRACE_WARN_ON(!op->func)) {
4945 pr_warn("op=%p %pS\n", op, op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05004946 goto out;
4947 }
Steven Rostedta1e2e312011-08-09 12:50:46 -04004948 op->func(ip, parent_ip, op, regs);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05004949 }
Steven Rostedt0a016402012-11-02 17:03:03 -04004950 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05004951out:
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004952 preempt_enable_notrace();
Steven Rostedtedc15ca2012-11-02 17:47:21 -04004953 trace_clear_recursion(bit);
Steven Rostedtb8489142011-05-04 09:27:52 -04004954}
4955
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004956/*
4957 * Some archs only support passing ip and parent_ip. Even though
4958 * the list function ignores the op parameter, we do not want any
4959 * C side effects, where a function is called without the caller
4960 * sending a third parameter.
Steven Rostedta1e2e312011-08-09 12:50:46 -04004961 * Archs are to support both the regs and ftrace_ops at the same time.
4962 * If they support ftrace_ops, it is assumed they support regs.
4963 * If call backs want to use regs, they must either check for regs
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +09004964 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
4965 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
Steven Rostedta1e2e312011-08-09 12:50:46 -04004966 * An architecture can pass partial regs with ftrace_ops and still
4967 * set the ARCH_SUPPORT_FTARCE_OPS.
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004968 */
4969#if ARCH_SUPPORTS_FTRACE_OPS
4970static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04004971 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004972{
Steven Rostedta1e2e312011-08-09 12:50:46 -04004973 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004974}
4975#else
4976static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip)
4977{
Steven Rostedta1e2e312011-08-09 12:50:46 -04004978 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004979}
4980#endif
4981
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04004982/*
4983 * If there's only one function registered but it does not support
4984 * recursion, this function will be called by the mcount trampoline.
4985 * This function will handle recursion protection.
4986 */
4987static void ftrace_ops_recurs_func(unsigned long ip, unsigned long parent_ip,
4988 struct ftrace_ops *op, struct pt_regs *regs)
4989{
4990 int bit;
4991
4992 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
4993 if (bit < 0)
4994 return;
4995
4996 op->func(ip, parent_ip, op, regs);
4997
4998 trace_clear_recursion(bit);
4999}
5000
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005001/**
5002 * ftrace_ops_get_func - get the function a trampoline should call
5003 * @ops: the ops to get the function for
5004 *
5005 * Normally the mcount trampoline will call the ops->func, but there
5006 * are times that it should not. For example, if the ops does not
5007 * have its own recursion protection, then it should call the
5008 * ftrace_ops_recurs_func() instead.
5009 *
5010 * Returns the function that the trampoline should call for @ops.
5011 */
5012ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
5013{
5014 /*
5015 * If this is a dynamic ops or we force list func,
5016 * then it needs to call the list anyway.
5017 */
5018 if (ops->flags & FTRACE_OPS_FL_DYNAMIC || FTRACE_FORCE_LIST_FUNC)
5019 return ftrace_ops_list_func;
5020
5021 /*
5022 * If the func handles its own recursion, call it directly.
5023 * Otherwise call the recursion protected function that
5024 * will call the ftrace ops function.
5025 */
5026 if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE))
5027 return ftrace_ops_recurs_func;
5028
5029 return ops->func;
5030}
5031
Steven Rostedte32d8952008-12-04 00:26:41 -05005032static void clear_ftrace_swapper(void)
5033{
5034 struct task_struct *p;
5035 int cpu;
5036
5037 get_online_cpus();
5038 for_each_online_cpu(cpu) {
5039 p = idle_task(cpu);
5040 clear_tsk_trace_trace(p);
5041 }
5042 put_online_cpus();
5043}
5044
5045static void set_ftrace_swapper(void)
5046{
5047 struct task_struct *p;
5048 int cpu;
5049
5050 get_online_cpus();
5051 for_each_online_cpu(cpu) {
5052 p = idle_task(cpu);
5053 set_tsk_trace_trace(p);
5054 }
5055 put_online_cpus();
5056}
5057
5058static void clear_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05005059{
5060 struct task_struct *p;
5061
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01005062 rcu_read_lock();
Steven Rostedte32d8952008-12-04 00:26:41 -05005063 do_each_pid_task(pid, PIDTYPE_PID, p) {
Steven Rostedt978f3a42008-12-04 00:26:40 -05005064 clear_tsk_trace_trace(p);
Steven Rostedte32d8952008-12-04 00:26:41 -05005065 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01005066 rcu_read_unlock();
5067
Steven Rostedte32d8952008-12-04 00:26:41 -05005068 put_pid(pid);
Steven Rostedt978f3a42008-12-04 00:26:40 -05005069}
5070
Steven Rostedte32d8952008-12-04 00:26:41 -05005071static void set_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05005072{
5073 struct task_struct *p;
5074
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01005075 rcu_read_lock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05005076 do_each_pid_task(pid, PIDTYPE_PID, p) {
5077 set_tsk_trace_trace(p);
5078 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01005079 rcu_read_unlock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05005080}
5081
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005082static void clear_ftrace_pid_task(struct pid *pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05005083{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005084 if (pid == ftrace_swapper_pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05005085 clear_ftrace_swapper();
5086 else
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005087 clear_ftrace_pid(pid);
Steven Rostedte32d8952008-12-04 00:26:41 -05005088}
5089
5090static void set_ftrace_pid_task(struct pid *pid)
5091{
5092 if (pid == ftrace_swapper_pid)
5093 set_ftrace_swapper();
5094 else
5095 set_ftrace_pid(pid);
5096}
5097
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005098static int ftrace_pid_add(int p)
5099{
5100 struct pid *pid;
5101 struct ftrace_pid *fpid;
5102 int ret = -EINVAL;
5103
5104 mutex_lock(&ftrace_lock);
5105
5106 if (!p)
5107 pid = ftrace_swapper_pid;
5108 else
5109 pid = find_get_pid(p);
5110
5111 if (!pid)
5112 goto out;
5113
5114 ret = 0;
5115
5116 list_for_each_entry(fpid, &ftrace_pids, list)
5117 if (fpid->pid == pid)
5118 goto out_put;
5119
5120 ret = -ENOMEM;
5121
5122 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
5123 if (!fpid)
5124 goto out_put;
5125
5126 list_add(&fpid->list, &ftrace_pids);
5127 fpid->pid = pid;
5128
5129 set_ftrace_pid_task(pid);
5130
5131 ftrace_update_pid_func();
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005132
5133 ftrace_startup_all(0);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005134
5135 mutex_unlock(&ftrace_lock);
5136 return 0;
5137
5138out_put:
5139 if (pid != ftrace_swapper_pid)
5140 put_pid(pid);
5141
5142out:
5143 mutex_unlock(&ftrace_lock);
5144 return ret;
5145}
5146
5147static void ftrace_pid_reset(void)
5148{
5149 struct ftrace_pid *fpid, *safe;
5150
5151 mutex_lock(&ftrace_lock);
5152 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
5153 struct pid *pid = fpid->pid;
5154
5155 clear_ftrace_pid_task(pid);
5156
5157 list_del(&fpid->list);
5158 kfree(fpid);
5159 }
5160
5161 ftrace_update_pid_func();
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005162 ftrace_startup_all(0);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005163
5164 mutex_unlock(&ftrace_lock);
5165}
5166
5167static void *fpid_start(struct seq_file *m, loff_t *pos)
5168{
5169 mutex_lock(&ftrace_lock);
5170
5171 if (list_empty(&ftrace_pids) && (!*pos))
5172 return (void *) 1;
5173
5174 return seq_list_start(&ftrace_pids, *pos);
5175}
5176
5177static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
5178{
5179 if (v == (void *)1)
5180 return NULL;
5181
5182 return seq_list_next(v, &ftrace_pids, pos);
5183}
5184
5185static void fpid_stop(struct seq_file *m, void *p)
5186{
5187 mutex_unlock(&ftrace_lock);
5188}
5189
5190static int fpid_show(struct seq_file *m, void *v)
5191{
5192 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
5193
5194 if (v == (void *)1) {
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005195 seq_puts(m, "no pid\n");
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005196 return 0;
5197 }
5198
5199 if (fpid->pid == ftrace_swapper_pid)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005200 seq_puts(m, "swapper tasks\n");
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005201 else
5202 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
5203
5204 return 0;
5205}
5206
5207static const struct seq_operations ftrace_pid_sops = {
5208 .start = fpid_start,
5209 .next = fpid_next,
5210 .stop = fpid_stop,
5211 .show = fpid_show,
5212};
5213
5214static int
5215ftrace_pid_open(struct inode *inode, struct file *file)
5216{
5217 int ret = 0;
5218
5219 if ((file->f_mode & FMODE_WRITE) &&
5220 (file->f_flags & O_TRUNC))
5221 ftrace_pid_reset();
5222
5223 if (file->f_mode & FMODE_READ)
5224 ret = seq_open(file, &ftrace_pid_sops);
5225
5226 return ret;
5227}
5228
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005229static ssize_t
5230ftrace_pid_write(struct file *filp, const char __user *ubuf,
5231 size_t cnt, loff_t *ppos)
5232{
Ingo Molnar457dc922009-11-23 11:03:28 +01005233 char buf[64], *tmp;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005234 long val;
5235 int ret;
5236
5237 if (cnt >= sizeof(buf))
5238 return -EINVAL;
5239
5240 if (copy_from_user(&buf, ubuf, cnt))
5241 return -EFAULT;
5242
5243 buf[cnt] = 0;
5244
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005245 /*
5246 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
5247 * to clean the filter quietly.
5248 */
Ingo Molnar457dc922009-11-23 11:03:28 +01005249 tmp = strstrip(buf);
5250 if (strlen(tmp) == 0)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005251 return 1;
5252
Daniel Walterbcd83ea2012-09-26 22:08:38 +02005253 ret = kstrtol(tmp, 10, &val);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005254 if (ret < 0)
5255 return ret;
5256
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005257 ret = ftrace_pid_add(val);
Steven Rostedt978f3a42008-12-04 00:26:40 -05005258
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005259 return ret ? ret : cnt;
5260}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005261
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005262static int
5263ftrace_pid_release(struct inode *inode, struct file *file)
5264{
5265 if (file->f_mode & FMODE_READ)
5266 seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005267
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005268 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005269}
5270
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005271static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005272 .open = ftrace_pid_open,
5273 .write = ftrace_pid_write,
5274 .read = seq_read,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005275 .llseek = tracing_lseek,
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005276 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005277};
5278
5279static __init int ftrace_init_debugfs(void)
5280{
5281 struct dentry *d_tracer;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005282
5283 d_tracer = tracing_init_dentry();
5284 if (!d_tracer)
5285 return 0;
5286
5287 ftrace_init_dyn_debugfs(d_tracer);
5288
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005289 trace_create_file("set_ftrace_pid", 0644, d_tracer,
5290 NULL, &ftrace_pid_fops);
Steven Rostedt493762f2009-03-23 17:12:36 -04005291
5292 ftrace_profile_debugfs(d_tracer);
5293
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005294 return 0;
5295}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005296fs_initcall(ftrace_init_debugfs);
5297
Steven Rostedt3d083392008-05-12 21:20:42 +02005298/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04005299 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005300 *
5301 * This function should be used by panic code. It stops ftrace
5302 * but in a not so nice way. If you need to simply kill ftrace
5303 * from a non-atomic section, use ftrace_kill.
5304 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04005305void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005306{
5307 ftrace_disabled = 1;
5308 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005309 clear_ftrace_function();
5310}
5311
5312/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04005313 * Test if ftrace is dead or not.
5314 */
5315int ftrace_is_dead(void)
5316{
5317 return ftrace_disabled;
5318}
5319
5320/**
Steven Rostedt3d083392008-05-12 21:20:42 +02005321 * register_ftrace_function - register a function for profiling
5322 * @ops - ops structure that holds the function for profiling.
5323 *
5324 * Register a function to be called by all functions in the
5325 * kernel.
5326 *
5327 * Note: @ops->func and all the functions it calls must be labeled
5328 * with "notrace", otherwise it will go into a
5329 * recursive loop.
5330 */
5331int register_ftrace_function(struct ftrace_ops *ops)
5332{
Steven Rostedt45a4a232011-04-21 23:16:46 -04005333 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02005334
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09005335 ftrace_ops_init(ops);
5336
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005337 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005338
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005339 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04005340
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005341 mutex_unlock(&ftrace_lock);
Borislav Petkov8d240dd2012-03-29 19:11:40 +02005342
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005343 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02005344}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005345EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02005346
5347/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01005348 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02005349 * @ops - ops structure that holds the function to unregister
5350 *
5351 * Unregister a function that was added to be called by ftrace profiling.
5352 */
5353int unregister_ftrace_function(struct ftrace_ops *ops)
5354{
5355 int ret;
5356
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005357 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005358 ret = ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005359 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005360
5361 return ret;
5362}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005363EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005364
Ingo Molnare309b412008-05-12 21:20:51 +02005365int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005366ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07005367 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005368 loff_t *ppos)
5369{
Steven Rostedt45a4a232011-04-21 23:16:46 -04005370 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02005371
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005372 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005373
Steven Rostedt45a4a232011-04-21 23:16:46 -04005374 if (unlikely(ftrace_disabled))
5375 goto out;
5376
5377 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005378
Li Zefana32c7762009-06-26 16:55:51 +08005379 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005380 goto out;
5381
Li Zefana32c7762009-06-26 16:55:51 +08005382 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005383
5384 if (ftrace_enabled) {
5385
5386 ftrace_startup_sysctl();
5387
5388 /* we are starting ftrace again */
Jan Kiszka5000c412013-03-26 17:53:03 +01005389 if (ftrace_ops_list != &ftrace_list_end)
5390 update_ftrace_function();
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005391
5392 } else {
5393 /* stopping ftrace calls (just send to ftrace_stub) */
5394 ftrace_trace_function = ftrace_stub;
5395
5396 ftrace_shutdown_sysctl();
5397 }
5398
5399 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005400 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02005401 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02005402}
Ingo Molnarf17845e2008-10-24 12:47:10 +02005403
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005404#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005405
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005406static struct ftrace_ops graph_ops = {
5407 .func = ftrace_stub,
5408 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5409 FTRACE_OPS_FL_INITIALIZED |
5410 FTRACE_OPS_FL_STUB,
5411#ifdef FTRACE_GRAPH_TRAMP_ADDR
5412 .trampoline = FTRACE_GRAPH_TRAMP_ADDR,
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05005413 /* trampoline_size is only needed for dynamically allocated tramps */
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005414#endif
5415 ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash)
5416};
5417
Steven Rostedt597af812009-04-03 15:24:12 -04005418static int ftrace_graph_active;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005419
Steven Rostedte49dc192008-12-02 23:50:05 -05005420int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
5421{
5422 return 0;
5423}
5424
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005425/* The callbacks that hook a function */
5426trace_func_graph_ret_t ftrace_graph_return =
5427 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05005428trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005429static trace_func_graph_ent_t __ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005430
5431/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
5432static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
5433{
5434 int i;
5435 int ret = 0;
5436 unsigned long flags;
5437 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
5438 struct task_struct *g, *t;
5439
5440 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
5441 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
5442 * sizeof(struct ftrace_ret_stack),
5443 GFP_KERNEL);
5444 if (!ret_stack_list[i]) {
5445 start = 0;
5446 end = i;
5447 ret = -ENOMEM;
5448 goto free;
5449 }
5450 }
5451
5452 read_lock_irqsave(&tasklist_lock, flags);
5453 do_each_thread(g, t) {
5454 if (start == end) {
5455 ret = -EAGAIN;
5456 goto unlock;
5457 }
5458
5459 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01005460 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005461 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04005462 t->curr_ret_stack = -1;
5463 /* Make sure the tasks see the -1 first: */
5464 smp_wmb();
5465 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005466 }
5467 } while_each_thread(g, t);
5468
5469unlock:
5470 read_unlock_irqrestore(&tasklist_lock, flags);
5471free:
5472 for (i = start; i < end; i++)
5473 kfree(ret_stack_list[i]);
5474 return ret;
5475}
5476
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005477static void
Steven Rostedt38516ab2010-04-20 17:04:50 -04005478ftrace_graph_probe_sched_switch(void *ignore,
5479 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005480{
5481 unsigned long long timestamp;
5482 int index;
5483
Steven Rostedtbe6f1642009-03-24 11:06:24 -04005484 /*
5485 * Does the user want to count the time a function was asleep.
5486 * If so, do not update the time stamps.
5487 */
5488 if (trace_flags & TRACE_ITER_SLEEP_TIME)
5489 return;
5490
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005491 timestamp = trace_clock_local();
5492
5493 prev->ftrace_timestamp = timestamp;
5494
5495 /* only process tasks that we timestamped */
5496 if (!next->ftrace_timestamp)
5497 return;
5498
5499 /*
5500 * Update all the counters in next to make up for the
5501 * time next was sleeping.
5502 */
5503 timestamp -= next->ftrace_timestamp;
5504
5505 for (index = next->curr_ret_stack; index >= 0; index--)
5506 next->ret_stack[index].calltime += timestamp;
5507}
5508
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005509/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005510static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005511{
5512 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005513 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005514
5515 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
5516 sizeof(struct ftrace_ret_stack *),
5517 GFP_KERNEL);
5518
5519 if (!ret_stack_list)
5520 return -ENOMEM;
5521
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005522 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04005523 for_each_online_cpu(cpu) {
5524 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05005525 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04005526 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005527
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005528 do {
5529 ret = alloc_retstack_tasklist(ret_stack_list);
5530 } while (ret == -EAGAIN);
5531
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005532 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04005533 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005534 if (ret)
5535 pr_info("ftrace_graph: Couldn't activate tracepoint"
5536 " probe to kernel_sched_switch\n");
5537 }
5538
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005539 kfree(ret_stack_list);
5540 return ret;
5541}
5542
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005543/*
5544 * Hibernation protection.
5545 * The state of the current task is too much unstable during
5546 * suspend/restore to disk. We want to protect against that.
5547 */
5548static int
5549ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
5550 void *unused)
5551{
5552 switch (state) {
5553 case PM_HIBERNATION_PREPARE:
5554 pause_graph_tracing();
5555 break;
5556
5557 case PM_POST_HIBERNATION:
5558 unpause_graph_tracing();
5559 break;
5560 }
5561 return NOTIFY_DONE;
5562}
5563
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005564static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace)
5565{
5566 if (!ftrace_ops_test(&global_ops, trace->func, NULL))
5567 return 0;
5568 return __ftrace_graph_entry(trace);
5569}
5570
5571/*
5572 * The function graph tracer should only trace the functions defined
5573 * by set_ftrace_filter and set_ftrace_notrace. If another function
5574 * tracer ops is registered, the graph tracer requires testing the
5575 * function against the global ops, and not just trace any function
5576 * that any ftrace_ops registered.
5577 */
5578static void update_function_graph_func(void)
5579{
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005580 struct ftrace_ops *op;
5581 bool do_test = false;
5582
5583 /*
5584 * The graph and global ops share the same set of functions
5585 * to test. If any other ops is on the list, then
5586 * the graph tracing needs to test if its the function
5587 * it should call.
5588 */
5589 do_for_each_ftrace_op(op, ftrace_ops_list) {
5590 if (op != &global_ops && op != &graph_ops &&
5591 op != &ftrace_list_end) {
5592 do_test = true;
5593 /* in double loop, break out with goto */
5594 goto out;
5595 }
5596 } while_for_each_ftrace_op(op);
5597 out:
5598 if (do_test)
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005599 ftrace_graph_entry = ftrace_graph_entry_test;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005600 else
5601 ftrace_graph_entry = __ftrace_graph_entry;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005602}
5603
Mathias Krause8275f692014-03-30 15:31:50 +02005604static struct notifier_block ftrace_suspend_notifier = {
5605 .notifier_call = ftrace_suspend_notifier_call,
5606};
5607
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005608int register_ftrace_graph(trace_func_graph_ret_t retfunc,
5609 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005610{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005611 int ret = 0;
5612
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005613 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005614
Steven Rostedt05ce5812009-03-24 00:18:31 -04005615 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04005616 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04005617 ret = -EBUSY;
5618 goto out;
5619 }
5620
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005621 register_pm_notifier(&ftrace_suspend_notifier);
5622
Steven Rostedt597af812009-04-03 15:24:12 -04005623 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005624 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005625 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04005626 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005627 goto out;
5628 }
Steven Rostedte53a6312008-11-26 00:16:25 -05005629
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005630 ftrace_graph_return = retfunc;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005631
5632 /*
5633 * Update the indirect function to the entryfunc, and the
5634 * function that gets called to the entry_test first. Then
5635 * call the update fgraph entry function to determine if
5636 * the entryfunc should be called directly or not.
5637 */
5638 __ftrace_graph_entry = entryfunc;
5639 ftrace_graph_entry = ftrace_graph_entry_test;
5640 update_function_graph_func();
Steven Rostedte53a6312008-11-26 00:16:25 -05005641
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005642 ret = ftrace_startup(&graph_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005643out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005644 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005645 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005646}
5647
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005648void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005649{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005650 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005651
Steven Rostedt597af812009-04-03 15:24:12 -04005652 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04005653 goto out;
5654
Steven Rostedt597af812009-04-03 15:24:12 -04005655 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005656 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05005657 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005658 __ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005659 ftrace_shutdown(&graph_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005660 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04005661 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005662
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005663#ifdef CONFIG_DYNAMIC_FTRACE
5664 /*
5665 * Function graph does not allocate the trampoline, but
5666 * other global_ops do. We need to reset the ALLOC_TRAMP flag
5667 * if one was used.
5668 */
5669 global_ops.trampoline = save_global_trampoline;
5670 if (save_global_flags & FTRACE_OPS_FL_ALLOC_TRAMP)
5671 global_ops.flags |= FTRACE_OPS_FL_ALLOC_TRAMP;
5672#endif
5673
Steven Rostedt2aad1b72009-03-30 11:11:28 -04005674 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005675 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005676}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005677
Steven Rostedt868baf02011-02-10 21:26:13 -05005678static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
5679
5680static void
5681graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
5682{
5683 atomic_set(&t->tracing_graph_pause, 0);
5684 atomic_set(&t->trace_overrun, 0);
5685 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005686 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05005687 smp_wmb();
5688 t->ret_stack = ret_stack;
5689}
5690
5691/*
5692 * Allocate a return stack for the idle task. May be the first
5693 * time through, or it may be done by CPU hotplug online.
5694 */
5695void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
5696{
5697 t->curr_ret_stack = -1;
5698 /*
5699 * The idle task has no parent, it either has its own
5700 * stack or no stack at all.
5701 */
5702 if (t->ret_stack)
5703 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
5704
5705 if (ftrace_graph_active) {
5706 struct ftrace_ret_stack *ret_stack;
5707
5708 ret_stack = per_cpu(idle_ret_stack, cpu);
5709 if (!ret_stack) {
5710 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
5711 * sizeof(struct ftrace_ret_stack),
5712 GFP_KERNEL);
5713 if (!ret_stack)
5714 return;
5715 per_cpu(idle_ret_stack, cpu) = ret_stack;
5716 }
5717 graph_init_task(t, ret_stack);
5718 }
5719}
5720
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005721/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005722void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005723{
Steven Rostedt84047e32009-06-02 16:51:55 -04005724 /* Make sure we do not use the parent ret_stack */
5725 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05005726 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04005727
Steven Rostedt597af812009-04-03 15:24:12 -04005728 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04005729 struct ftrace_ret_stack *ret_stack;
5730
5731 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005732 * sizeof(struct ftrace_ret_stack),
5733 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04005734 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005735 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05005736 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04005737 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005738}
5739
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005740void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005741{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01005742 struct ftrace_ret_stack *ret_stack = t->ret_stack;
5743
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005744 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01005745 /* NULL must become visible to IRQs before we free it: */
5746 barrier();
5747
5748 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005749}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005750#endif