blob: 366d7881f188078ffb9b4ccb12ad34cbc1f9d381 [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
13 * Copyright (C) 2004 William Lee Irwin III
14 */
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>
Paul Gortmaker56d82e02011-05-26 17:53:52 -040025#include <linux/module.h>
Ingo Molnar2d8b8202008-02-23 16:55:50 +010026#include <linux/ftrace.h>
Steven Rostedtb0fc4942008-05-12 21:20:43 +020027#include <linux/sysctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020029#include <linux/ctype.h>
Steven Rostedt3d083392008-05-12 21:20:42 +020030#include <linux/list.h>
Steven Rostedt59df055f2009-02-14 15:29:06 -050031#include <linux/hash.h>
Paul E. McKenney3f379b02010-03-05 15:03:25 -080032#include <linux/rcupdate.h>
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020033
Steven Rostedtad8d75f2009-04-14 19:39:12 -040034#include <trace/events/sched.h>
Steven Rostedt8aef2d22009-03-24 01:10:15 -040035
Steven Rostedt2af15d62009-05-28 13:37:24 -040036#include <asm/setup.h>
Abhishek Sagar395a59d2008-06-21 23:47:27 +053037
Steven Rostedt0706f1c2009-03-23 23:12:58 -040038#include "trace_output.h"
Steven Rostedtbac429f2009-03-20 12:50:56 -040039#include "trace_stat.h"
Steven Rostedt3d083392008-05-12 21:20:42 +020040
Steven Rostedt6912896e2008-10-23 09:33:03 -040041#define FTRACE_WARN_ON(cond) \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040042 ({ \
43 int ___r = cond; \
44 if (WARN_ON(___r)) \
Steven Rostedt6912896e2008-10-23 09:33:03 -040045 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040046 ___r; \
47 })
Steven Rostedt6912896e2008-10-23 09:33:03 -040048
49#define FTRACE_WARN_ON_ONCE(cond) \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040050 ({ \
51 int ___r = cond; \
52 if (WARN_ON_ONCE(___r)) \
Steven Rostedt6912896e2008-10-23 09:33:03 -040053 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040054 ___r; \
55 })
Steven Rostedt6912896e2008-10-23 09:33:03 -040056
Steven Rostedt8fc0c702009-02-16 15:28:00 -050057/* hash bits for specific function selection */
58#define FTRACE_HASH_BITS 7
59#define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
Steven Rostedt33dc9b12011-05-02 17:34:47 -040060#define FTRACE_HASH_DEFAULT_BITS 10
61#define FTRACE_HASH_MAX_BITS 12
Steven Rostedt8fc0c702009-02-16 15:28:00 -050062
Steven Rostedt4eebcc82008-05-12 21:20:48 +020063/* ftrace_enabled is a method to turn ftrace on or off */
64int ftrace_enabled __read_mostly;
Steven Rostedtd61f82d2008-05-12 21:20:43 +020065static int last_ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +020066
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050067/* Quick disabling of function tracer. */
68int function_trace_stop;
69
jolsa@redhat.com756d17e2009-10-13 16:33:52 -040070/* List for set_ftrace_pid's pids. */
71LIST_HEAD(ftrace_pids);
72struct ftrace_pid {
73 struct list_head list;
74 struct pid *pid;
75};
76
Steven Rostedt4eebcc82008-05-12 21:20:48 +020077/*
78 * ftrace_disabled is set when an anomaly is discovered.
79 * ftrace_disabled is much stronger than ftrace_enabled.
80 */
81static int ftrace_disabled __read_mostly;
82
Steven Rostedt52baf112009-02-14 01:15:39 -050083static DEFINE_MUTEX(ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +020084
Paul McQuadebd38c0e2011-05-31 20:51:55 +010085static struct ftrace_ops ftrace_list_end __read_mostly = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -040086 .func = ftrace_stub,
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020087};
88
Steven Rostedtb8489142011-05-04 09:27:52 -040089static struct ftrace_ops *ftrace_global_list __read_mostly = &ftrace_list_end;
90static struct ftrace_ops *ftrace_ops_list __read_mostly = &ftrace_list_end;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020091ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
Steven Rostedt6331c282011-07-13 15:11:02 -040092static ftrace_func_t __ftrace_trace_function_delay __read_mostly = ftrace_stub;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050093ftrace_func_t __ftrace_trace_function __read_mostly = ftrace_stub;
Steven Rostedtdf4fc312008-11-26 00:16:23 -050094ftrace_func_t ftrace_pid_function __read_mostly = ftrace_stub;
Steven Rostedt2b499382011-05-03 22:49:52 -040095static struct ftrace_ops global_ops;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020096
Steven Rostedtb8489142011-05-04 09:27:52 -040097static void
98ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip);
99
Paul E. McKenney3f379b02010-03-05 15:03:25 -0800100/*
Steven Rostedtb8489142011-05-04 09:27:52 -0400101 * Traverse the ftrace_global_list, invoking all entries. The reason that we
Paul E. McKenney3f379b02010-03-05 15:03:25 -0800102 * can use rcu_dereference_raw() is that elements removed from this list
103 * are simply leaked, so there is no need to interact with a grace-period
104 * mechanism. The rcu_dereference_raw() calls are needed to handle
Steven Rostedtb8489142011-05-04 09:27:52 -0400105 * concurrent insertions into the ftrace_global_list.
Paul E. McKenney3f379b02010-03-05 15:03:25 -0800106 *
107 * Silly Alpha and silly pointer-speculation compiler optimizations!
108 */
Steven Rostedtb8489142011-05-04 09:27:52 -0400109static void ftrace_global_list_func(unsigned long ip,
110 unsigned long parent_ip)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200111{
Steven Rostedtb1cff0a2011-05-25 14:27:43 -0400112 struct ftrace_ops *op;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200113
Steven Rostedtb1cff0a2011-05-25 14:27:43 -0400114 if (unlikely(trace_recursion_test(TRACE_GLOBAL_BIT)))
115 return;
116
117 trace_recursion_set(TRACE_GLOBAL_BIT);
118 op = rcu_dereference_raw(ftrace_global_list); /*see above*/
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200119 while (op != &ftrace_list_end) {
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200120 op->func(ip, parent_ip);
Paul E. McKenney3f379b02010-03-05 15:03:25 -0800121 op = rcu_dereference_raw(op->next); /*see above*/
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200122 };
Steven Rostedtb1cff0a2011-05-25 14:27:43 -0400123 trace_recursion_clear(TRACE_GLOBAL_BIT);
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200124}
125
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500126static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip)
127{
Steven Rostedt0ef8cde2008-12-03 15:36:58 -0500128 if (!test_tsk_trace_trace(current))
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500129 return;
130
131 ftrace_pid_function(ip, parent_ip);
132}
133
134static void set_ftrace_pid_function(ftrace_func_t func)
135{
136 /* do not set ftrace_pid_function to itself! */
137 if (func != ftrace_pid_func)
138 ftrace_pid_function = func;
139}
140
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200141/**
Steven Rostedt3d083392008-05-12 21:20:42 +0200142 * clear_ftrace_function - reset the ftrace function
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200143 *
Steven Rostedt3d083392008-05-12 21:20:42 +0200144 * This NULLs the ftrace function and in essence stops
145 * tracing. There may be lag
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200146 */
Steven Rostedt3d083392008-05-12 21:20:42 +0200147void clear_ftrace_function(void)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200148{
Steven Rostedt3d083392008-05-12 21:20:42 +0200149 ftrace_trace_function = ftrace_stub;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500150 __ftrace_trace_function = ftrace_stub;
Steven Rostedt6331c282011-07-13 15:11:02 -0400151 __ftrace_trace_function_delay = ftrace_stub;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500152 ftrace_pid_function = ftrace_stub;
Steven Rostedt3d083392008-05-12 21:20:42 +0200153}
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200154
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500155#ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
156/*
157 * For those archs that do not test ftrace_trace_stop in their
158 * mcount call site, we need to do it from C.
159 */
160static void ftrace_test_stop_func(unsigned long ip, unsigned long parent_ip)
161{
162 if (function_trace_stop)
163 return;
164
165 __ftrace_trace_function(ip, parent_ip);
166}
167#endif
168
Steven Rostedt2b499382011-05-03 22:49:52 -0400169static void update_global_ops(void)
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400170{
171 ftrace_func_t func;
172
173 /*
174 * If there's only one function registered, then call that
175 * function directly. Otherwise, we need to iterate over the
176 * registered callers.
177 */
Steven Rostedtb8489142011-05-04 09:27:52 -0400178 if (ftrace_global_list == &ftrace_list_end ||
179 ftrace_global_list->next == &ftrace_list_end)
180 func = ftrace_global_list->func;
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400181 else
Steven Rostedtb8489142011-05-04 09:27:52 -0400182 func = ftrace_global_list_func;
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400183
184 /* If we filter on pids, update to use the pid function */
185 if (!list_empty(&ftrace_pids)) {
186 set_ftrace_pid_function(func);
187 func = ftrace_pid_func;
188 }
Steven Rostedt2b499382011-05-03 22:49:52 -0400189
190 global_ops.func = func;
191}
192
193static void update_ftrace_function(void)
194{
195 ftrace_func_t func;
196
197 update_global_ops();
198
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400199 /*
200 * If we are at the end of the list and this ops is
201 * not dynamic, then have the mcount trampoline call
202 * the function directly
203 */
Steven Rostedtb8489142011-05-04 09:27:52 -0400204 if (ftrace_ops_list == &ftrace_list_end ||
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400205 (ftrace_ops_list->next == &ftrace_list_end &&
206 !(ftrace_ops_list->flags & FTRACE_OPS_FL_DYNAMIC)))
Steven Rostedtb8489142011-05-04 09:27:52 -0400207 func = ftrace_ops_list->func;
208 else
209 func = ftrace_ops_list_func;
Steven Rostedt2b499382011-05-03 22:49:52 -0400210
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400211#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
212 ftrace_trace_function = func;
213#else
Steven Rostedt6331c282011-07-13 15:11:02 -0400214#ifdef CONFIG_DYNAMIC_FTRACE
215 /* do not update till all functions have been modified */
216 __ftrace_trace_function_delay = func;
217#else
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400218 __ftrace_trace_function = func;
Steven Rostedt6331c282011-07-13 15:11:02 -0400219#endif
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400220 ftrace_trace_function = ftrace_test_stop_func;
221#endif
222}
223
Steven Rostedt2b499382011-05-03 22:49:52 -0400224static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
Steven Rostedt3d083392008-05-12 21:20:42 +0200225{
Steven Rostedt2b499382011-05-03 22:49:52 -0400226 ops->next = *list;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200227 /*
Steven Rostedtb8489142011-05-04 09:27:52 -0400228 * We are entering ops into the list but another
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200229 * CPU might be walking that list. We need to make sure
230 * the ops->next pointer is valid before another CPU sees
Steven Rostedtb8489142011-05-04 09:27:52 -0400231 * the ops pointer included into the list.
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200232 */
Steven Rostedt2b499382011-05-03 22:49:52 -0400233 rcu_assign_pointer(*list, ops);
234}
Steven Rostedt3d083392008-05-12 21:20:42 +0200235
Steven Rostedt2b499382011-05-03 22:49:52 -0400236static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
237{
238 struct ftrace_ops **p;
239
240 /*
241 * If we are removing the last function, then simply point
242 * to the ftrace_stub.
243 */
244 if (*list == ops && ops->next == &ftrace_list_end) {
245 *list = &ftrace_list_end;
246 return 0;
247 }
248
249 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
250 if (*p == ops)
251 break;
252
253 if (*p != ops)
254 return -1;
255
256 *p = (*p)->next;
257 return 0;
258}
259
260static int __register_ftrace_function(struct ftrace_ops *ops)
261{
262 if (ftrace_disabled)
263 return -ENODEV;
264
265 if (FTRACE_WARN_ON(ops == &global_ops))
266 return -EINVAL;
267
Steven Rostedtb8489142011-05-04 09:27:52 -0400268 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
269 return -EBUSY;
270
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400271 if (!core_kernel_data((unsigned long)ops))
272 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
273
Steven Rostedtb8489142011-05-04 09:27:52 -0400274 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
275 int first = ftrace_global_list == &ftrace_list_end;
276 add_ftrace_ops(&ftrace_global_list, ops);
277 ops->flags |= FTRACE_OPS_FL_ENABLED;
278 if (first)
279 add_ftrace_ops(&ftrace_ops_list, &global_ops);
280 } else
281 add_ftrace_ops(&ftrace_ops_list, ops);
282
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400283 if (ftrace_enabled)
284 update_ftrace_function();
Steven Rostedt3d083392008-05-12 21:20:42 +0200285
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200286 return 0;
287}
288
Ingo Molnare309b412008-05-12 21:20:51 +0200289static int __unregister_ftrace_function(struct ftrace_ops *ops)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200290{
Steven Rostedt2b499382011-05-03 22:49:52 -0400291 int ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200292
Steven Rostedt2b499382011-05-03 22:49:52 -0400293 if (ftrace_disabled)
294 return -ENODEV;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200295
Steven Rostedtb8489142011-05-04 09:27:52 -0400296 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
297 return -EBUSY;
298
Steven Rostedt2b499382011-05-03 22:49:52 -0400299 if (FTRACE_WARN_ON(ops == &global_ops))
300 return -EINVAL;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200301
Steven Rostedtb8489142011-05-04 09:27:52 -0400302 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
303 ret = remove_ftrace_ops(&ftrace_global_list, ops);
304 if (!ret && ftrace_global_list == &ftrace_list_end)
305 ret = remove_ftrace_ops(&ftrace_ops_list, &global_ops);
306 if (!ret)
307 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
308 } else
309 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
310
Steven Rostedt2b499382011-05-03 22:49:52 -0400311 if (ret < 0)
312 return ret;
Steven Rostedtb8489142011-05-04 09:27:52 -0400313
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400314 if (ftrace_enabled)
315 update_ftrace_function();
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200316
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400317 /*
318 * Dynamic ops may be freed, we must make sure that all
319 * callers are done before leaving this function.
320 */
321 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
322 synchronize_sched();
323
Steven Rostedte6ea44e2009-02-14 01:42:44 -0500324 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +0200325}
326
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500327static void ftrace_update_pid_func(void)
328{
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400329 /* Only do something if we are tracing something */
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500330 if (ftrace_trace_function == ftrace_stub)
KOSAKI Motohiro10dd3eb2009-03-06 15:29:04 +0900331 return;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500332
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400333 update_ftrace_function();
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500334}
335
Steven Rostedt493762f2009-03-23 17:12:36 -0400336#ifdef CONFIG_FUNCTION_PROFILER
337struct ftrace_profile {
338 struct hlist_node node;
339 unsigned long ip;
340 unsigned long counter;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400341#ifdef CONFIG_FUNCTION_GRAPH_TRACER
342 unsigned long long time;
Chase Douglase330b3b2010-04-26 14:02:05 -0400343 unsigned long long time_squared;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400344#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400345};
346
347struct ftrace_profile_page {
348 struct ftrace_profile_page *next;
349 unsigned long index;
350 struct ftrace_profile records[];
351};
352
Steven Rostedtcafb1682009-03-24 20:50:39 -0400353struct ftrace_profile_stat {
354 atomic_t disabled;
355 struct hlist_head *hash;
356 struct ftrace_profile_page *pages;
357 struct ftrace_profile_page *start;
358 struct tracer_stat stat;
359};
360
Steven Rostedt493762f2009-03-23 17:12:36 -0400361#define PROFILE_RECORDS_SIZE \
362 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
363
364#define PROFILES_PER_PAGE \
365 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
366
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400367static int ftrace_profile_bits __read_mostly;
368static int ftrace_profile_enabled __read_mostly;
369
370/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
Steven Rostedt493762f2009-03-23 17:12:36 -0400371static DEFINE_MUTEX(ftrace_profile_lock);
372
Steven Rostedtcafb1682009-03-24 20:50:39 -0400373static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
Steven Rostedt493762f2009-03-23 17:12:36 -0400374
375#define FTRACE_PROFILE_HASH_SIZE 1024 /* must be power of 2 */
376
Steven Rostedt493762f2009-03-23 17:12:36 -0400377static void *
378function_stat_next(void *v, int idx)
379{
380 struct ftrace_profile *rec = v;
381 struct ftrace_profile_page *pg;
382
383 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
384
385 again:
Li Zefan0296e422009-06-26 11:15:37 +0800386 if (idx != 0)
387 rec++;
388
Steven Rostedt493762f2009-03-23 17:12:36 -0400389 if ((void *)rec >= (void *)&pg->records[pg->index]) {
390 pg = pg->next;
391 if (!pg)
392 return NULL;
393 rec = &pg->records[0];
394 if (!rec->counter)
395 goto again;
396 }
397
398 return rec;
399}
400
401static void *function_stat_start(struct tracer_stat *trace)
402{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400403 struct ftrace_profile_stat *stat =
404 container_of(trace, struct ftrace_profile_stat, stat);
405
406 if (!stat || !stat->start)
407 return NULL;
408
409 return function_stat_next(&stat->start->records[0], 0);
Steven Rostedt493762f2009-03-23 17:12:36 -0400410}
411
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400412#ifdef CONFIG_FUNCTION_GRAPH_TRACER
413/* function graph compares on total time */
414static int function_stat_cmp(void *p1, void *p2)
415{
416 struct ftrace_profile *a = p1;
417 struct ftrace_profile *b = p2;
418
419 if (a->time < b->time)
420 return -1;
421 if (a->time > b->time)
422 return 1;
423 else
424 return 0;
425}
426#else
427/* not function graph compares against hits */
Steven Rostedt493762f2009-03-23 17:12:36 -0400428static int function_stat_cmp(void *p1, void *p2)
429{
430 struct ftrace_profile *a = p1;
431 struct ftrace_profile *b = p2;
432
433 if (a->counter < b->counter)
434 return -1;
435 if (a->counter > b->counter)
436 return 1;
437 else
438 return 0;
439}
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400440#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400441
442static int function_stat_headers(struct seq_file *m)
443{
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400444#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400445 seq_printf(m, " Function "
Chase Douglase330b3b2010-04-26 14:02:05 -0400446 "Hit Time Avg s^2\n"
Steven Rostedt34886c82009-03-25 21:00:47 -0400447 " -------- "
Chase Douglase330b3b2010-04-26 14:02:05 -0400448 "--- ---- --- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400449#else
Steven Rostedt493762f2009-03-23 17:12:36 -0400450 seq_printf(m, " Function Hit\n"
451 " -------- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400452#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400453 return 0;
454}
455
456static int function_stat_show(struct seq_file *m, void *v)
457{
458 struct ftrace_profile *rec = v;
459 char str[KSYM_SYMBOL_LEN];
Li Zefan3aaba202010-08-23 16:50:12 +0800460 int ret = 0;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400461#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400462 static struct trace_seq s;
463 unsigned long long avg;
Chase Douglase330b3b2010-04-26 14:02:05 -0400464 unsigned long long stddev;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400465#endif
Li Zefan3aaba202010-08-23 16:50:12 +0800466 mutex_lock(&ftrace_profile_lock);
467
468 /* we raced with function_profile_reset() */
469 if (unlikely(rec->counter == 0)) {
470 ret = -EBUSY;
471 goto out;
472 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400473
474 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400475 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
Steven Rostedt493762f2009-03-23 17:12:36 -0400476
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400477#ifdef CONFIG_FUNCTION_GRAPH_TRACER
478 seq_printf(m, " ");
Steven Rostedt34886c82009-03-25 21:00:47 -0400479 avg = rec->time;
480 do_div(avg, rec->counter);
481
Chase Douglase330b3b2010-04-26 14:02:05 -0400482 /* Sample standard deviation (s^2) */
483 if (rec->counter <= 1)
484 stddev = 0;
485 else {
486 stddev = rec->time_squared - rec->counter * avg * avg;
487 /*
488 * Divide only 1000 for ns^2 -> us^2 conversion.
489 * trace_print_graph_duration will divide 1000 again.
490 */
491 do_div(stddev, (rec->counter - 1) * 1000);
492 }
493
Steven Rostedt34886c82009-03-25 21:00:47 -0400494 trace_seq_init(&s);
495 trace_print_graph_duration(rec->time, &s);
496 trace_seq_puts(&s, " ");
497 trace_print_graph_duration(avg, &s);
Chase Douglase330b3b2010-04-26 14:02:05 -0400498 trace_seq_puts(&s, " ");
499 trace_print_graph_duration(stddev, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400500 trace_print_seq(m, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400501#endif
502 seq_putc(m, '\n');
Li Zefan3aaba202010-08-23 16:50:12 +0800503out:
504 mutex_unlock(&ftrace_profile_lock);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400505
Li Zefan3aaba202010-08-23 16:50:12 +0800506 return ret;
Steven Rostedt493762f2009-03-23 17:12:36 -0400507}
508
Steven Rostedtcafb1682009-03-24 20:50:39 -0400509static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400510{
511 struct ftrace_profile_page *pg;
512
Steven Rostedtcafb1682009-03-24 20:50:39 -0400513 pg = stat->pages = stat->start;
Steven Rostedt493762f2009-03-23 17:12:36 -0400514
515 while (pg) {
516 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
517 pg->index = 0;
518 pg = pg->next;
519 }
520
Steven Rostedtcafb1682009-03-24 20:50:39 -0400521 memset(stat->hash, 0,
Steven Rostedt493762f2009-03-23 17:12:36 -0400522 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
523}
524
Steven Rostedtcafb1682009-03-24 20:50:39 -0400525int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400526{
527 struct ftrace_profile_page *pg;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400528 int functions;
529 int pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400530 int i;
531
532 /* If we already allocated, do nothing */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400533 if (stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400534 return 0;
535
Steven Rostedtcafb1682009-03-24 20:50:39 -0400536 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
537 if (!stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400538 return -ENOMEM;
539
Steven Rostedt318e0a72009-03-25 20:06:34 -0400540#ifdef CONFIG_DYNAMIC_FTRACE
541 functions = ftrace_update_tot_cnt;
542#else
543 /*
544 * We do not know the number of functions that exist because
545 * dynamic tracing is what counts them. With past experience
546 * we have around 20K functions. That should be more than enough.
547 * It is highly unlikely we will execute every function in
548 * the kernel.
549 */
550 functions = 20000;
551#endif
552
Steven Rostedtcafb1682009-03-24 20:50:39 -0400553 pg = stat->start = stat->pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400554
Steven Rostedt318e0a72009-03-25 20:06:34 -0400555 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
556
557 for (i = 0; i < pages; i++) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400558 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400559 if (!pg->next)
Steven Rostedt318e0a72009-03-25 20:06:34 -0400560 goto out_free;
Steven Rostedt493762f2009-03-23 17:12:36 -0400561 pg = pg->next;
562 }
563
564 return 0;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400565
566 out_free:
567 pg = stat->start;
568 while (pg) {
569 unsigned long tmp = (unsigned long)pg;
570
571 pg = pg->next;
572 free_page(tmp);
573 }
574
575 free_page((unsigned long)stat->pages);
576 stat->pages = NULL;
577 stat->start = NULL;
578
579 return -ENOMEM;
Steven Rostedt493762f2009-03-23 17:12:36 -0400580}
581
Steven Rostedtcafb1682009-03-24 20:50:39 -0400582static int ftrace_profile_init_cpu(int cpu)
Steven Rostedt493762f2009-03-23 17:12:36 -0400583{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400584 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400585 int size;
586
Steven Rostedtcafb1682009-03-24 20:50:39 -0400587 stat = &per_cpu(ftrace_profile_stats, cpu);
588
589 if (stat->hash) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400590 /* If the profile is already created, simply reset it */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400591 ftrace_profile_reset(stat);
Steven Rostedt493762f2009-03-23 17:12:36 -0400592 return 0;
593 }
594
595 /*
596 * We are profiling all functions, but usually only a few thousand
597 * functions are hit. We'll make a hash of 1024 items.
598 */
599 size = FTRACE_PROFILE_HASH_SIZE;
600
Steven Rostedtcafb1682009-03-24 20:50:39 -0400601 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400602
Steven Rostedtcafb1682009-03-24 20:50:39 -0400603 if (!stat->hash)
Steven Rostedt493762f2009-03-23 17:12:36 -0400604 return -ENOMEM;
605
Steven Rostedtcafb1682009-03-24 20:50:39 -0400606 if (!ftrace_profile_bits) {
607 size--;
Steven Rostedt493762f2009-03-23 17:12:36 -0400608
Steven Rostedtcafb1682009-03-24 20:50:39 -0400609 for (; size; size >>= 1)
610 ftrace_profile_bits++;
611 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400612
Steven Rostedt318e0a72009-03-25 20:06:34 -0400613 /* Preallocate the function profiling pages */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400614 if (ftrace_profile_pages_init(stat) < 0) {
615 kfree(stat->hash);
616 stat->hash = NULL;
Steven Rostedt493762f2009-03-23 17:12:36 -0400617 return -ENOMEM;
618 }
619
620 return 0;
621}
622
Steven Rostedtcafb1682009-03-24 20:50:39 -0400623static int ftrace_profile_init(void)
624{
625 int cpu;
626 int ret = 0;
627
628 for_each_online_cpu(cpu) {
629 ret = ftrace_profile_init_cpu(cpu);
630 if (ret)
631 break;
632 }
633
634 return ret;
635}
636
Steven Rostedt493762f2009-03-23 17:12:36 -0400637/* interrupts must be disabled */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400638static struct ftrace_profile *
639ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400640{
641 struct ftrace_profile *rec;
642 struct hlist_head *hhd;
643 struct hlist_node *n;
644 unsigned long key;
645
646 key = hash_long(ip, ftrace_profile_bits);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400647 hhd = &stat->hash[key];
Steven Rostedt493762f2009-03-23 17:12:36 -0400648
649 if (hlist_empty(hhd))
650 return NULL;
651
652 hlist_for_each_entry_rcu(rec, n, hhd, node) {
653 if (rec->ip == ip)
654 return rec;
655 }
656
657 return NULL;
658}
659
Steven Rostedtcafb1682009-03-24 20:50:39 -0400660static void ftrace_add_profile(struct ftrace_profile_stat *stat,
661 struct ftrace_profile *rec)
Steven Rostedt493762f2009-03-23 17:12:36 -0400662{
663 unsigned long key;
664
665 key = hash_long(rec->ip, ftrace_profile_bits);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400666 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
Steven Rostedt493762f2009-03-23 17:12:36 -0400667}
668
Steven Rostedt318e0a72009-03-25 20:06:34 -0400669/*
670 * The memory is already allocated, this simply finds a new record to use.
671 */
Steven Rostedt493762f2009-03-23 17:12:36 -0400672static struct ftrace_profile *
Steven Rostedt318e0a72009-03-25 20:06:34 -0400673ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400674{
675 struct ftrace_profile *rec = NULL;
676
Steven Rostedt318e0a72009-03-25 20:06:34 -0400677 /* prevent recursion (from NMIs) */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400678 if (atomic_inc_return(&stat->disabled) != 1)
Steven Rostedt493762f2009-03-23 17:12:36 -0400679 goto out;
680
Steven Rostedt493762f2009-03-23 17:12:36 -0400681 /*
Steven Rostedt318e0a72009-03-25 20:06:34 -0400682 * Try to find the function again since an NMI
683 * could have added it
Steven Rostedt493762f2009-03-23 17:12:36 -0400684 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400685 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400686 if (rec)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400687 goto out;
Steven Rostedt493762f2009-03-23 17:12:36 -0400688
Steven Rostedtcafb1682009-03-24 20:50:39 -0400689 if (stat->pages->index == PROFILES_PER_PAGE) {
690 if (!stat->pages->next)
691 goto out;
692 stat->pages = stat->pages->next;
Steven Rostedt493762f2009-03-23 17:12:36 -0400693 }
694
Steven Rostedtcafb1682009-03-24 20:50:39 -0400695 rec = &stat->pages->records[stat->pages->index++];
Steven Rostedt493762f2009-03-23 17:12:36 -0400696 rec->ip = ip;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400697 ftrace_add_profile(stat, rec);
Steven Rostedt493762f2009-03-23 17:12:36 -0400698
Steven Rostedt493762f2009-03-23 17:12:36 -0400699 out:
Steven Rostedtcafb1682009-03-24 20:50:39 -0400700 atomic_dec(&stat->disabled);
Steven Rostedt493762f2009-03-23 17:12:36 -0400701
702 return rec;
703}
704
Steven Rostedt493762f2009-03-23 17:12:36 -0400705static void
706function_profile_call(unsigned long ip, unsigned long parent_ip)
707{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400708 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400709 struct ftrace_profile *rec;
710 unsigned long flags;
Steven Rostedt493762f2009-03-23 17:12:36 -0400711
712 if (!ftrace_profile_enabled)
713 return;
714
Steven Rostedt493762f2009-03-23 17:12:36 -0400715 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400716
717 stat = &__get_cpu_var(ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400718 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400719 goto out;
720
721 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400722 if (!rec) {
Steven Rostedt318e0a72009-03-25 20:06:34 -0400723 rec = ftrace_profile_alloc(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400724 if (!rec)
725 goto out;
726 }
727
728 rec->counter++;
729 out:
730 local_irq_restore(flags);
731}
732
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400733#ifdef CONFIG_FUNCTION_GRAPH_TRACER
734static int profile_graph_entry(struct ftrace_graph_ent *trace)
735{
736 function_profile_call(trace->func, 0);
737 return 1;
738}
739
740static void profile_graph_return(struct ftrace_graph_ret *trace)
741{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400742 struct ftrace_profile_stat *stat;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400743 unsigned long long calltime;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400744 struct ftrace_profile *rec;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400745 unsigned long flags;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400746
747 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400748 stat = &__get_cpu_var(ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400749 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400750 goto out;
751
Steven Rostedt37e44bc2010-04-27 21:04:24 -0400752 /* If the calltime was zero'd ignore it */
753 if (!trace->calltime)
754 goto out;
755
Steven Rostedta2a16d62009-03-24 23:17:58 -0400756 calltime = trace->rettime - trace->calltime;
757
758 if (!(trace_flags & TRACE_ITER_GRAPH_TIME)) {
759 int index;
760
761 index = trace->depth;
762
763 /* Append this call time to the parent time to subtract */
764 if (index)
765 current->ret_stack[index - 1].subtime += calltime;
766
767 if (current->ret_stack[index].subtime < calltime)
768 calltime -= current->ret_stack[index].subtime;
769 else
770 calltime = 0;
771 }
772
Steven Rostedtcafb1682009-03-24 20:50:39 -0400773 rec = ftrace_find_profiled_func(stat, trace->func);
Chase Douglase330b3b2010-04-26 14:02:05 -0400774 if (rec) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400775 rec->time += calltime;
Chase Douglase330b3b2010-04-26 14:02:05 -0400776 rec->time_squared += calltime * calltime;
777 }
Steven Rostedta2a16d62009-03-24 23:17:58 -0400778
Steven Rostedtcafb1682009-03-24 20:50:39 -0400779 out:
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400780 local_irq_restore(flags);
781}
782
783static int register_ftrace_profiler(void)
784{
785 return register_ftrace_graph(&profile_graph_return,
786 &profile_graph_entry);
787}
788
789static void unregister_ftrace_profiler(void)
790{
791 unregister_ftrace_graph();
792}
793#else
Paul McQuadebd38c0e2011-05-31 20:51:55 +0100794static struct ftrace_ops ftrace_profile_ops __read_mostly = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400795 .func = function_profile_call,
Steven Rostedt493762f2009-03-23 17:12:36 -0400796};
797
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400798static int register_ftrace_profiler(void)
799{
800 return register_ftrace_function(&ftrace_profile_ops);
801}
802
803static void unregister_ftrace_profiler(void)
804{
805 unregister_ftrace_function(&ftrace_profile_ops);
806}
807#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
808
Steven Rostedt493762f2009-03-23 17:12:36 -0400809static ssize_t
810ftrace_profile_write(struct file *filp, const char __user *ubuf,
811 size_t cnt, loff_t *ppos)
812{
813 unsigned long val;
Steven Rostedt493762f2009-03-23 17:12:36 -0400814 int ret;
815
Peter Huewe22fe9b52011-06-07 21:58:27 +0200816 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
817 if (ret)
Steven Rostedt493762f2009-03-23 17:12:36 -0400818 return ret;
819
820 val = !!val;
821
822 mutex_lock(&ftrace_profile_lock);
823 if (ftrace_profile_enabled ^ val) {
824 if (val) {
825 ret = ftrace_profile_init();
826 if (ret < 0) {
827 cnt = ret;
828 goto out;
829 }
830
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400831 ret = register_ftrace_profiler();
832 if (ret < 0) {
833 cnt = ret;
834 goto out;
835 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400836 ftrace_profile_enabled = 1;
837 } else {
838 ftrace_profile_enabled = 0;
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400839 /*
840 * unregister_ftrace_profiler calls stop_machine
841 * so this acts like an synchronize_sched.
842 */
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400843 unregister_ftrace_profiler();
Steven Rostedt493762f2009-03-23 17:12:36 -0400844 }
845 }
846 out:
847 mutex_unlock(&ftrace_profile_lock);
848
Jiri Olsacf8517c2009-10-23 19:36:16 -0400849 *ppos += cnt;
Steven Rostedt493762f2009-03-23 17:12:36 -0400850
851 return cnt;
852}
853
854static ssize_t
855ftrace_profile_read(struct file *filp, char __user *ubuf,
856 size_t cnt, loff_t *ppos)
857{
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400858 char buf[64]; /* big enough to hold a number */
Steven Rostedt493762f2009-03-23 17:12:36 -0400859 int r;
860
861 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
862 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
863}
864
865static const struct file_operations ftrace_profile_fops = {
866 .open = tracing_open_generic,
867 .read = ftrace_profile_read,
868 .write = ftrace_profile_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200869 .llseek = default_llseek,
Steven Rostedt493762f2009-03-23 17:12:36 -0400870};
871
Steven Rostedtcafb1682009-03-24 20:50:39 -0400872/* used to initialize the real stat files */
873static struct tracer_stat function_stats __initdata = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400874 .name = "functions",
875 .stat_start = function_stat_start,
876 .stat_next = function_stat_next,
877 .stat_cmp = function_stat_cmp,
878 .stat_headers = function_stat_headers,
879 .stat_show = function_stat_show
Steven Rostedtcafb1682009-03-24 20:50:39 -0400880};
881
Steven Rostedt6ab5d662009-06-04 00:55:45 -0400882static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -0400883{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400884 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400885 struct dentry *entry;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400886 char *name;
Steven Rostedt493762f2009-03-23 17:12:36 -0400887 int ret;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400888 int cpu;
Steven Rostedt493762f2009-03-23 17:12:36 -0400889
Steven Rostedtcafb1682009-03-24 20:50:39 -0400890 for_each_possible_cpu(cpu) {
891 stat = &per_cpu(ftrace_profile_stats, cpu);
892
893 /* allocate enough for function name + cpu number */
894 name = kmalloc(32, GFP_KERNEL);
895 if (!name) {
896 /*
897 * The files created are permanent, if something happens
898 * we still do not free memory.
899 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400900 WARN(1,
901 "Could not allocate stat file for cpu %d\n",
902 cpu);
903 return;
904 }
905 stat->stat = function_stats;
906 snprintf(name, 32, "function%d", cpu);
907 stat->stat.name = name;
908 ret = register_stat_tracer(&stat->stat);
909 if (ret) {
910 WARN(1,
911 "Could not register function stat for cpu %d\n",
912 cpu);
913 kfree(name);
914 return;
915 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400916 }
917
918 entry = debugfs_create_file("function_profile_enabled", 0644,
919 d_tracer, NULL, &ftrace_profile_fops);
920 if (!entry)
921 pr_warning("Could not create debugfs "
922 "'function_profile_enabled' entry\n");
923}
924
925#else /* CONFIG_FUNCTION_PROFILER */
Steven Rostedt6ab5d662009-06-04 00:55:45 -0400926static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -0400927{
928}
929#endif /* CONFIG_FUNCTION_PROFILER */
930
Ingo Molnar73d3fd92009-02-17 11:48:18 +0100931static struct pid * const ftrace_swapper_pid = &init_struct_pid;
932
Steven Rostedt3d083392008-05-12 21:20:42 +0200933#ifdef CONFIG_DYNAMIC_FTRACE
Ingo Molnar73d3fd92009-02-17 11:48:18 +0100934
Steven Rostedt99ecdc42008-08-15 21:40:05 -0400935#ifndef CONFIG_FTRACE_MCOUNT_RECORD
Steven Rostedtcb7be3b2008-10-23 09:33:05 -0400936# error Dynamic ftrace depends on MCOUNT_RECORD
Steven Rostedt99ecdc42008-08-15 21:40:05 -0400937#endif
938
Steven Rostedt8fc0c702009-02-16 15:28:00 -0500939static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
940
Steven Rostedtb6887d72009-02-17 12:32:04 -0500941struct ftrace_func_probe {
Steven Rostedt8fc0c702009-02-16 15:28:00 -0500942 struct hlist_node node;
Steven Rostedtb6887d72009-02-17 12:32:04 -0500943 struct ftrace_probe_ops *ops;
Steven Rostedt8fc0c702009-02-16 15:28:00 -0500944 unsigned long flags;
945 unsigned long ip;
946 void *data;
947 struct rcu_head rcu;
948};
949
Steven Rostedtb448c4e2011-04-29 15:12:32 -0400950struct ftrace_func_entry {
951 struct hlist_node hlist;
952 unsigned long ip;
953};
954
955struct ftrace_hash {
956 unsigned long size_bits;
957 struct hlist_head *buckets;
958 unsigned long count;
Steven Rostedt07fd5512011-05-05 18:03:47 -0400959 struct rcu_head rcu;
Steven Rostedtb448c4e2011-04-29 15:12:32 -0400960};
961
Steven Rostedt33dc9b12011-05-02 17:34:47 -0400962/*
963 * We make these constant because no one should touch them,
964 * but they are used as the default "empty hash", to avoid allocating
965 * it all the time. These are in a read only section such that if
966 * anyone does try to modify it, it will cause an exception.
967 */
968static const struct hlist_head empty_buckets[1];
969static const struct ftrace_hash empty_hash = {
970 .buckets = (struct hlist_head *)empty_buckets,
Steven Rostedtb448c4e2011-04-29 15:12:32 -0400971};
Steven Rostedt33dc9b12011-05-02 17:34:47 -0400972#define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
Steven Rostedt5072c592008-05-12 21:20:43 +0200973
Steven Rostedt2b499382011-05-03 22:49:52 -0400974static struct ftrace_ops global_ops = {
Steven Rostedtf45948e2011-05-02 12:29:25 -0400975 .func = ftrace_stub,
Steven Rostedt33dc9b12011-05-02 17:34:47 -0400976 .notrace_hash = EMPTY_HASH,
977 .filter_hash = EMPTY_HASH,
Steven Rostedtf45948e2011-05-02 12:29:25 -0400978};
979
Steven Rostedt41c52c02008-05-22 11:46:33 -0400980static DEFINE_MUTEX(ftrace_regex_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +0200981
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200982struct ftrace_page {
983 struct ftrace_page *next;
Steven Rostedta7900872011-12-16 16:23:44 -0500984 struct dyn_ftrace *records;
Steven Rostedt431aa3f2009-01-06 12:43:01 -0500985 int index;
Steven Rostedta7900872011-12-16 16:23:44 -0500986 int size;
David Milleraa5e5ce2008-05-13 22:06:56 -0700987};
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200988
Steven Rostedt85ae32a2011-12-16 16:30:31 -0500989static struct ftrace_page *ftrace_new_pgs;
990
Steven Rostedta7900872011-12-16 16:23:44 -0500991#define ENTRY_SIZE sizeof(struct dyn_ftrace)
992#define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200993
994/* estimate from running different kernels */
995#define NR_TO_INIT 10000
996
997static struct ftrace_page *ftrace_pages_start;
998static struct ftrace_page *ftrace_pages;
999
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001000static struct ftrace_func_entry *
1001ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1002{
1003 unsigned long key;
1004 struct ftrace_func_entry *entry;
1005 struct hlist_head *hhd;
1006 struct hlist_node *n;
1007
1008 if (!hash->count)
1009 return NULL;
1010
1011 if (hash->size_bits > 0)
1012 key = hash_long(ip, hash->size_bits);
1013 else
1014 key = 0;
1015
1016 hhd = &hash->buckets[key];
1017
1018 hlist_for_each_entry_rcu(entry, n, hhd, hlist) {
1019 if (entry->ip == ip)
1020 return entry;
1021 }
1022 return NULL;
1023}
1024
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001025static void __add_hash_entry(struct ftrace_hash *hash,
1026 struct ftrace_func_entry *entry)
1027{
1028 struct hlist_head *hhd;
1029 unsigned long key;
1030
1031 if (hash->size_bits)
1032 key = hash_long(entry->ip, hash->size_bits);
1033 else
1034 key = 0;
1035
1036 hhd = &hash->buckets[key];
1037 hlist_add_head(&entry->hlist, hhd);
1038 hash->count++;
1039}
1040
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001041static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1042{
1043 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001044
1045 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1046 if (!entry)
1047 return -ENOMEM;
1048
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001049 entry->ip = ip;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001050 __add_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001051
1052 return 0;
1053}
1054
1055static void
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001056free_hash_entry(struct ftrace_hash *hash,
1057 struct ftrace_func_entry *entry)
1058{
1059 hlist_del(&entry->hlist);
1060 kfree(entry);
1061 hash->count--;
1062}
1063
1064static void
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001065remove_hash_entry(struct ftrace_hash *hash,
1066 struct ftrace_func_entry *entry)
1067{
1068 hlist_del(&entry->hlist);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001069 hash->count--;
1070}
1071
1072static void ftrace_hash_clear(struct ftrace_hash *hash)
1073{
1074 struct hlist_head *hhd;
1075 struct hlist_node *tp, *tn;
1076 struct ftrace_func_entry *entry;
1077 int size = 1 << hash->size_bits;
1078 int i;
1079
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001080 if (!hash->count)
1081 return;
1082
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001083 for (i = 0; i < size; i++) {
1084 hhd = &hash->buckets[i];
1085 hlist_for_each_entry_safe(entry, tp, tn, hhd, hlist)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001086 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001087 }
1088 FTRACE_WARN_ON(hash->count);
1089}
1090
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001091static void free_ftrace_hash(struct ftrace_hash *hash)
1092{
1093 if (!hash || hash == EMPTY_HASH)
1094 return;
1095 ftrace_hash_clear(hash);
1096 kfree(hash->buckets);
1097 kfree(hash);
1098}
1099
Steven Rostedt07fd5512011-05-05 18:03:47 -04001100static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1101{
1102 struct ftrace_hash *hash;
1103
1104 hash = container_of(rcu, struct ftrace_hash, rcu);
1105 free_ftrace_hash(hash);
1106}
1107
1108static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1109{
1110 if (!hash || hash == EMPTY_HASH)
1111 return;
1112 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1113}
1114
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001115static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1116{
1117 struct ftrace_hash *hash;
1118 int size;
1119
1120 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1121 if (!hash)
1122 return NULL;
1123
1124 size = 1 << size_bits;
1125 hash->buckets = kzalloc(sizeof(*hash->buckets) * size, GFP_KERNEL);
1126
1127 if (!hash->buckets) {
1128 kfree(hash);
1129 return NULL;
1130 }
1131
1132 hash->size_bits = size_bits;
1133
1134 return hash;
1135}
1136
1137static struct ftrace_hash *
1138alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1139{
1140 struct ftrace_func_entry *entry;
1141 struct ftrace_hash *new_hash;
1142 struct hlist_node *tp;
1143 int size;
1144 int ret;
1145 int i;
1146
1147 new_hash = alloc_ftrace_hash(size_bits);
1148 if (!new_hash)
1149 return NULL;
1150
1151 /* Empty hash? */
1152 if (!hash || !hash->count)
1153 return new_hash;
1154
1155 size = 1 << hash->size_bits;
1156 for (i = 0; i < size; i++) {
1157 hlist_for_each_entry(entry, tp, &hash->buckets[i], hlist) {
1158 ret = add_hash_entry(new_hash, entry->ip);
1159 if (ret < 0)
1160 goto free_hash;
1161 }
1162 }
1163
1164 FTRACE_WARN_ON(new_hash->count != hash->count);
1165
1166 return new_hash;
1167
1168 free_hash:
1169 free_ftrace_hash(new_hash);
1170 return NULL;
1171}
1172
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001173static void
1174ftrace_hash_rec_disable(struct ftrace_ops *ops, int filter_hash);
1175static void
1176ftrace_hash_rec_enable(struct ftrace_ops *ops, int filter_hash);
1177
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001178static int
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001179ftrace_hash_move(struct ftrace_ops *ops, int enable,
1180 struct ftrace_hash **dst, struct ftrace_hash *src)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001181{
1182 struct ftrace_func_entry *entry;
1183 struct hlist_node *tp, *tn;
1184 struct hlist_head *hhd;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001185 struct ftrace_hash *old_hash;
1186 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001187 unsigned long key;
1188 int size = src->count;
1189 int bits = 0;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001190 int ret;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001191 int i;
1192
1193 /*
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001194 * Remove the current set, update the hash and add
1195 * them back.
1196 */
1197 ftrace_hash_rec_disable(ops, enable);
1198
1199 /*
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001200 * If the new source is empty, just free dst and assign it
1201 * the empty_hash.
1202 */
1203 if (!src->count) {
Steven Rostedt07fd5512011-05-05 18:03:47 -04001204 free_ftrace_hash_rcu(*dst);
1205 rcu_assign_pointer(*dst, EMPTY_HASH);
Steven Rostedtd4d34b92011-11-04 20:32:39 -04001206 /* still need to update the function records */
1207 ret = 0;
1208 goto out;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001209 }
1210
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001211 /*
1212 * Make the hash size about 1/2 the # found
1213 */
1214 for (size /= 2; size; size >>= 1)
1215 bits++;
1216
1217 /* Don't allocate too much */
1218 if (bits > FTRACE_HASH_MAX_BITS)
1219 bits = FTRACE_HASH_MAX_BITS;
1220
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001221 ret = -ENOMEM;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001222 new_hash = alloc_ftrace_hash(bits);
1223 if (!new_hash)
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001224 goto out;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001225
1226 size = 1 << src->size_bits;
1227 for (i = 0; i < size; i++) {
1228 hhd = &src->buckets[i];
1229 hlist_for_each_entry_safe(entry, tp, tn, hhd, hlist) {
1230 if (bits > 0)
1231 key = hash_long(entry->ip, bits);
1232 else
1233 key = 0;
1234 remove_hash_entry(src, entry);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001235 __add_hash_entry(new_hash, entry);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001236 }
1237 }
1238
Steven Rostedt07fd5512011-05-05 18:03:47 -04001239 old_hash = *dst;
1240 rcu_assign_pointer(*dst, new_hash);
1241 free_ftrace_hash_rcu(old_hash);
1242
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001243 ret = 0;
1244 out:
1245 /*
1246 * Enable regardless of ret:
1247 * On success, we enable the new hash.
1248 * On failure, we re-enable the original hash.
1249 */
1250 ftrace_hash_rec_enable(ops, enable);
1251
1252 return ret;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001253}
1254
Steven Rostedt265c8312009-02-13 12:43:56 -05001255/*
Steven Rostedtb8489142011-05-04 09:27:52 -04001256 * Test the hashes for this ops to see if we want to call
1257 * the ops->func or not.
1258 *
1259 * It's a match if the ip is in the ops->filter_hash or
1260 * the filter_hash does not exist or is empty,
1261 * AND
1262 * the ip is not in the ops->notrace_hash.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04001263 *
1264 * This needs to be called with preemption disabled as
1265 * the hashes are freed with call_rcu_sched().
Steven Rostedtb8489142011-05-04 09:27:52 -04001266 */
1267static int
1268ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip)
1269{
1270 struct ftrace_hash *filter_hash;
1271 struct ftrace_hash *notrace_hash;
1272 int ret;
1273
Steven Rostedtb8489142011-05-04 09:27:52 -04001274 filter_hash = rcu_dereference_raw(ops->filter_hash);
1275 notrace_hash = rcu_dereference_raw(ops->notrace_hash);
1276
1277 if ((!filter_hash || !filter_hash->count ||
1278 ftrace_lookup_ip(filter_hash, ip)) &&
1279 (!notrace_hash || !notrace_hash->count ||
1280 !ftrace_lookup_ip(notrace_hash, ip)))
1281 ret = 1;
1282 else
1283 ret = 0;
Steven Rostedtb8489142011-05-04 09:27:52 -04001284
1285 return ret;
1286}
1287
1288/*
Steven Rostedt265c8312009-02-13 12:43:56 -05001289 * This is a double for. Do not use 'break' to break out of the loop,
1290 * you must use a goto.
1291 */
1292#define do_for_each_ftrace_rec(pg, rec) \
1293 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1294 int _____i; \
1295 for (_____i = 0; _____i < pg->index; _____i++) { \
1296 rec = &pg->records[_____i];
1297
1298#define while_for_each_ftrace_rec() \
1299 } \
1300 }
Abhishek Sagarecea6562008-06-21 23:47:53 +05301301
Steven Rostedtc88fd862011-08-16 09:53:39 -04001302/**
1303 * ftrace_location - return true if the ip giving is a traced location
1304 * @ip: the instruction pointer to check
1305 *
1306 * Returns 1 if @ip given is a pointer to a ftrace location.
1307 * That is, the instruction that is either a NOP or call to
1308 * the function tracer. It checks the ftrace internal tables to
1309 * determine if the address belongs or not.
1310 */
1311int ftrace_location(unsigned long ip)
1312{
1313 struct ftrace_page *pg;
1314 struct dyn_ftrace *rec;
1315
1316 do_for_each_ftrace_rec(pg, rec) {
1317 if (rec->ip == ip)
1318 return 1;
1319 } while_for_each_ftrace_rec();
1320
1321 return 0;
1322}
1323
Steven Rostedted926f92011-05-03 13:25:24 -04001324static void __ftrace_hash_rec_update(struct ftrace_ops *ops,
1325 int filter_hash,
1326 bool inc)
1327{
1328 struct ftrace_hash *hash;
1329 struct ftrace_hash *other_hash;
1330 struct ftrace_page *pg;
1331 struct dyn_ftrace *rec;
1332 int count = 0;
1333 int all = 0;
1334
1335 /* Only update if the ops has been registered */
1336 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1337 return;
1338
1339 /*
1340 * In the filter_hash case:
1341 * If the count is zero, we update all records.
1342 * Otherwise we just update the items in the hash.
1343 *
1344 * In the notrace_hash case:
1345 * We enable the update in the hash.
1346 * As disabling notrace means enabling the tracing,
1347 * and enabling notrace means disabling, the inc variable
1348 * gets inversed.
1349 */
1350 if (filter_hash) {
1351 hash = ops->filter_hash;
1352 other_hash = ops->notrace_hash;
Steven Rostedtb8489142011-05-04 09:27:52 -04001353 if (!hash || !hash->count)
Steven Rostedted926f92011-05-03 13:25:24 -04001354 all = 1;
1355 } else {
1356 inc = !inc;
1357 hash = ops->notrace_hash;
1358 other_hash = ops->filter_hash;
1359 /*
1360 * If the notrace hash has no items,
1361 * then there's nothing to do.
1362 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001363 if (hash && !hash->count)
Steven Rostedted926f92011-05-03 13:25:24 -04001364 return;
1365 }
1366
1367 do_for_each_ftrace_rec(pg, rec) {
1368 int in_other_hash = 0;
1369 int in_hash = 0;
1370 int match = 0;
1371
1372 if (all) {
1373 /*
1374 * Only the filter_hash affects all records.
1375 * Update if the record is not in the notrace hash.
1376 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001377 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
Steven Rostedted926f92011-05-03 13:25:24 -04001378 match = 1;
1379 } else {
Steven Rostedtb8489142011-05-04 09:27:52 -04001380 in_hash = hash && !!ftrace_lookup_ip(hash, rec->ip);
1381 in_other_hash = other_hash && !!ftrace_lookup_ip(other_hash, rec->ip);
Steven Rostedted926f92011-05-03 13:25:24 -04001382
1383 /*
1384 *
1385 */
1386 if (filter_hash && in_hash && !in_other_hash)
1387 match = 1;
1388 else if (!filter_hash && in_hash &&
1389 (in_other_hash || !other_hash->count))
1390 match = 1;
1391 }
1392 if (!match)
1393 continue;
1394
1395 if (inc) {
1396 rec->flags++;
1397 if (FTRACE_WARN_ON((rec->flags & ~FTRACE_FL_MASK) == FTRACE_REF_MAX))
1398 return;
1399 } else {
1400 if (FTRACE_WARN_ON((rec->flags & ~FTRACE_FL_MASK) == 0))
1401 return;
1402 rec->flags--;
1403 }
1404 count++;
1405 /* Shortcut, if we handled all records, we are done. */
1406 if (!all && count == hash->count)
1407 return;
1408 } while_for_each_ftrace_rec();
1409}
1410
1411static void ftrace_hash_rec_disable(struct ftrace_ops *ops,
1412 int filter_hash)
1413{
1414 __ftrace_hash_rec_update(ops, filter_hash, 0);
1415}
1416
1417static void ftrace_hash_rec_enable(struct ftrace_ops *ops,
1418 int filter_hash)
1419{
1420 __ftrace_hash_rec_update(ops, filter_hash, 1);
1421}
1422
Ingo Molnare309b412008-05-12 21:20:51 +02001423static struct dyn_ftrace *ftrace_alloc_dyn_node(unsigned long ip)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001424{
Steven Rostedta7900872011-12-16 16:23:44 -05001425 if (ftrace_pages->index == ftrace_pages->size) {
1426 /* We should have allocated enough */
1427 if (WARN_ON(!ftrace_pages->next))
1428 return NULL;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001429 ftrace_pages = ftrace_pages->next;
1430 }
1431
1432 return &ftrace_pages->records[ftrace_pages->index++];
1433}
1434
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001435static struct dyn_ftrace *
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001436ftrace_record_ip(unsigned long ip)
Steven Rostedt3d083392008-05-12 21:20:42 +02001437{
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001438 struct dyn_ftrace *rec;
Steven Rostedt3d083392008-05-12 21:20:42 +02001439
Steven Rostedtf3c7ac42008-11-14 16:21:19 -08001440 if (ftrace_disabled)
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001441 return NULL;
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001442
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001443 rec = ftrace_alloc_dyn_node(ip);
1444 if (!rec)
1445 return NULL;
Steven Rostedt3d083392008-05-12 21:20:42 +02001446
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001447 rec->ip = ip;
Steven Rostedt3d083392008-05-12 21:20:42 +02001448
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001449 return rec;
Steven Rostedt3d083392008-05-12 21:20:42 +02001450}
1451
Steven Rostedt05736a42008-09-22 14:55:47 -07001452static void print_ip_ins(const char *fmt, unsigned char *p)
1453{
1454 int i;
1455
1456 printk(KERN_CONT "%s", fmt);
1457
1458 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1459 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1460}
1461
Steven Rostedtc88fd862011-08-16 09:53:39 -04001462/**
1463 * ftrace_bug - report and shutdown function tracer
1464 * @failed: The failed type (EFAULT, EINVAL, EPERM)
1465 * @ip: The address that failed
1466 *
1467 * The arch code that enables or disables the function tracing
1468 * can call ftrace_bug() when it has detected a problem in
1469 * modifying the code. @failed should be one of either:
1470 * EFAULT - if the problem happens on reading the @ip address
1471 * EINVAL - if what is read at @ip is not what was expected
1472 * EPERM - if the problem happens on writting to the @ip address
1473 */
1474void ftrace_bug(int failed, unsigned long ip)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001475{
1476 switch (failed) {
1477 case -EFAULT:
1478 FTRACE_WARN_ON_ONCE(1);
1479 pr_info("ftrace faulted on modifying ");
1480 print_ip_sym(ip);
1481 break;
1482 case -EINVAL:
1483 FTRACE_WARN_ON_ONCE(1);
1484 pr_info("ftrace failed to modify ");
1485 print_ip_sym(ip);
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001486 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001487 printk(KERN_CONT "\n");
1488 break;
1489 case -EPERM:
1490 FTRACE_WARN_ON_ONCE(1);
1491 pr_info("ftrace faulted on writing ");
1492 print_ip_sym(ip);
1493 break;
1494 default:
1495 FTRACE_WARN_ON_ONCE(1);
1496 pr_info("ftrace faulted on unknown error ");
1497 print_ip_sym(ip);
1498 }
1499}
1500
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001501
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -05001502/* Return 1 if the address range is reserved for ftrace */
1503int ftrace_text_reserved(void *start, void *end)
1504{
1505 struct dyn_ftrace *rec;
1506 struct ftrace_page *pg;
1507
1508 do_for_each_ftrace_rec(pg, rec) {
1509 if (rec->ip <= (unsigned long)end &&
1510 rec->ip + MCOUNT_INSN_SIZE > (unsigned long)start)
1511 return 1;
1512 } while_for_each_ftrace_rec();
1513 return 0;
1514}
1515
Steven Rostedtc88fd862011-08-16 09:53:39 -04001516static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02001517{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001518 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01001519
Steven Rostedt982c3502008-11-15 16:31:41 -05001520 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001521 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05001522 *
Steven Rostedted926f92011-05-03 13:25:24 -04001523 * If the record has a ref count, then we need to enable it
1524 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05001525 *
Steven Rostedted926f92011-05-03 13:25:24 -04001526 * Otherwise we make sure its disabled.
1527 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001528 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04001529 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05001530 */
Steven Rostedtc88fd862011-08-16 09:53:39 -04001531 if (enable && (rec->flags & ~FTRACE_FL_MASK))
Steven Rostedted926f92011-05-03 13:25:24 -04001532 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02001533
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001534 /* If the state of this record hasn't changed, then do nothing */
1535 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001536 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001537
1538 if (flag) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04001539 if (update)
1540 rec->flags |= FTRACE_FL_ENABLED;
1541 return FTRACE_UPDATE_MAKE_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001542 }
1543
Steven Rostedtc88fd862011-08-16 09:53:39 -04001544 if (update)
1545 rec->flags &= ~FTRACE_FL_ENABLED;
1546
1547 return FTRACE_UPDATE_MAKE_NOP;
1548}
1549
1550/**
1551 * ftrace_update_record, set a record that now is tracing or not
1552 * @rec: the record to update
1553 * @enable: set to 1 if the record is tracing, zero to force disable
1554 *
1555 * The records that represent all functions that can be traced need
1556 * to be updated when tracing has been enabled.
1557 */
1558int ftrace_update_record(struct dyn_ftrace *rec, int enable)
1559{
1560 return ftrace_check_record(rec, enable, 1);
1561}
1562
1563/**
1564 * ftrace_test_record, check if the record has been enabled or not
1565 * @rec: the record to test
1566 * @enable: set to 1 to check if enabled, 0 if it is disabled
1567 *
1568 * The arch code may need to test if a record is already set to
1569 * tracing to determine how to modify the function code that it
1570 * represents.
1571 */
1572int ftrace_test_record(struct dyn_ftrace *rec, int enable)
1573{
1574 return ftrace_check_record(rec, enable, 0);
1575}
1576
1577static int
1578__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
1579{
1580 unsigned long ftrace_addr;
1581 int ret;
1582
1583 ftrace_addr = (unsigned long)FTRACE_ADDR;
1584
1585 ret = ftrace_update_record(rec, enable);
1586
1587 switch (ret) {
1588 case FTRACE_UPDATE_IGNORE:
1589 return 0;
1590
1591 case FTRACE_UPDATE_MAKE_CALL:
1592 return ftrace_make_call(rec, ftrace_addr);
1593
1594 case FTRACE_UPDATE_MAKE_NOP:
1595 return ftrace_make_nop(NULL, rec, ftrace_addr);
1596 }
1597
1598 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02001599}
1600
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001601static void ftrace_replace_code(int update)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001602{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001603 struct dyn_ftrace *rec;
1604 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05001605 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001606
Steven Rostedt45a4a232011-04-21 23:16:46 -04001607 if (unlikely(ftrace_disabled))
1608 return;
1609
Steven Rostedt265c8312009-02-13 12:43:56 -05001610 do_for_each_ftrace_rec(pg, rec) {
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001611 failed = __ftrace_replace_code(rec, update);
Zhaoleifa9d13c2009-03-13 17:16:34 +08001612 if (failed) {
Steven Rostedt3279ba32009-10-07 16:57:56 -04001613 ftrace_bug(failed, rec->ip);
1614 /* Stop processing */
1615 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05001616 }
1617 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001618}
1619
Steven Rostedtc88fd862011-08-16 09:53:39 -04001620struct ftrace_rec_iter {
1621 struct ftrace_page *pg;
1622 int index;
1623};
1624
1625/**
1626 * ftrace_rec_iter_start, start up iterating over traced functions
1627 *
1628 * Returns an iterator handle that is used to iterate over all
1629 * the records that represent address locations where functions
1630 * are traced.
1631 *
1632 * May return NULL if no records are available.
1633 */
1634struct ftrace_rec_iter *ftrace_rec_iter_start(void)
1635{
1636 /*
1637 * We only use a single iterator.
1638 * Protected by the ftrace_lock mutex.
1639 */
1640 static struct ftrace_rec_iter ftrace_rec_iter;
1641 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
1642
1643 iter->pg = ftrace_pages_start;
1644 iter->index = 0;
1645
1646 /* Could have empty pages */
1647 while (iter->pg && !iter->pg->index)
1648 iter->pg = iter->pg->next;
1649
1650 if (!iter->pg)
1651 return NULL;
1652
1653 return iter;
1654}
1655
1656/**
1657 * ftrace_rec_iter_next, get the next record to process.
1658 * @iter: The handle to the iterator.
1659 *
1660 * Returns the next iterator after the given iterator @iter.
1661 */
1662struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
1663{
1664 iter->index++;
1665
1666 if (iter->index >= iter->pg->index) {
1667 iter->pg = iter->pg->next;
1668 iter->index = 0;
1669
1670 /* Could have empty pages */
1671 while (iter->pg && !iter->pg->index)
1672 iter->pg = iter->pg->next;
1673 }
1674
1675 if (!iter->pg)
1676 return NULL;
1677
1678 return iter;
1679}
1680
1681/**
1682 * ftrace_rec_iter_record, get the record at the iterator location
1683 * @iter: The current iterator location
1684 *
1685 * Returns the record that the current @iter is at.
1686 */
1687struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
1688{
1689 return &iter->pg->records[iter->index];
1690}
1691
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301692static int
Steven Rostedt31e88902008-11-14 16:21:19 -08001693ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001694{
1695 unsigned long ip;
Steven Rostedt593eb8a2008-10-23 09:32:59 -04001696 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001697
1698 ip = rec->ip;
1699
Steven Rostedt45a4a232011-04-21 23:16:46 -04001700 if (unlikely(ftrace_disabled))
1701 return 0;
1702
Shaohua Li25aac9d2009-01-09 11:29:40 +08001703 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04001704 if (ret) {
Steven Rostedt31e88902008-11-14 16:21:19 -08001705 ftrace_bug(ret, ip);
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301706 return 0;
Steven Rostedt37ad50842008-05-12 21:20:48 +02001707 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301708 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001709}
1710
Steven Rostedt000ab692009-02-17 13:35:06 -05001711/*
1712 * archs can override this function if they must do something
1713 * before the modifying code is performed.
1714 */
1715int __weak ftrace_arch_code_modify_prepare(void)
1716{
1717 return 0;
1718}
1719
1720/*
1721 * archs can override this function if they must do something
1722 * after the modifying code is performed.
1723 */
1724int __weak ftrace_arch_code_modify_post_process(void)
1725{
1726 return 0;
1727}
1728
Ingo Molnare309b412008-05-12 21:20:51 +02001729static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02001730{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001731 int *command = data;
1732
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001733 if (*command & FTRACE_UPDATE_CALLS)
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001734 ftrace_replace_code(1);
Steven Rostedta3583242008-11-11 15:01:42 -05001735 else if (*command & FTRACE_DISABLE_CALLS)
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001736 ftrace_replace_code(0);
1737
1738 if (*command & FTRACE_UPDATE_TRACE_FUNC)
1739 ftrace_update_ftrace_func(ftrace_trace_function);
1740
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05001741 if (*command & FTRACE_START_FUNC_RET)
1742 ftrace_enable_ftrace_graph_caller();
1743 else if (*command & FTRACE_STOP_FUNC_RET)
1744 ftrace_disable_ftrace_graph_caller();
1745
Steven Rostedtc88fd862011-08-16 09:53:39 -04001746 return 0;
1747}
1748
1749/**
1750 * ftrace_run_stop_machine, go back to the stop machine method
1751 * @command: The command to tell ftrace what to do
1752 *
1753 * If an arch needs to fall back to the stop machine method, the
1754 * it can call this function.
1755 */
1756void ftrace_run_stop_machine(int command)
1757{
1758 stop_machine(__ftrace_modify_code, &command, NULL);
1759}
1760
1761/**
1762 * arch_ftrace_update_code, modify the code to trace or not trace
1763 * @command: The command that needs to be done
1764 *
1765 * Archs can override this function if it does not need to
1766 * run stop_machine() to modify code.
1767 */
1768void __weak arch_ftrace_update_code(int command)
1769{
1770 ftrace_run_stop_machine(command);
1771}
1772
1773static void ftrace_run_update_code(int command)
1774{
1775 int ret;
1776
1777 ret = ftrace_arch_code_modify_prepare();
1778 FTRACE_WARN_ON(ret);
1779 if (ret)
1780 return;
1781 /*
1782 * Do not call function tracer while we update the code.
1783 * We are in stop machine.
1784 */
1785 function_trace_stop++;
1786
1787 /*
1788 * By default we use stop_machine() to modify the code.
1789 * But archs can do what ever they want as long as it
1790 * is safe. The stop_machine() is the safest, but also
1791 * produces the most overhead.
1792 */
1793 arch_ftrace_update_code(command);
1794
Steven Rostedt6331c282011-07-13 15:11:02 -04001795#ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
1796 /*
1797 * For archs that call ftrace_test_stop_func(), we must
1798 * wait till after we update all the function callers
1799 * before we update the callback. This keeps different
1800 * ops that record different functions from corrupting
1801 * each other.
1802 */
1803 __ftrace_trace_function = __ftrace_trace_function_delay;
1804#endif
1805 function_trace_stop--;
1806
Steven Rostedt000ab692009-02-17 13:35:06 -05001807 ret = ftrace_arch_code_modify_post_process();
1808 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02001809}
1810
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001811static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001812static int ftrace_start_up;
Steven Rostedtb8489142011-05-04 09:27:52 -04001813static int global_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05001814
1815static void ftrace_startup_enable(int command)
1816{
1817 if (saved_ftrace_func != ftrace_trace_function) {
1818 saved_ftrace_func = ftrace_trace_function;
1819 command |= FTRACE_UPDATE_TRACE_FUNC;
1820 }
1821
1822 if (!command || !ftrace_enabled)
1823 return;
1824
1825 ftrace_run_update_code(command);
1826}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001827
Steven Rostedta1cd6172011-05-23 15:24:25 -04001828static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02001829{
Steven Rostedtb8489142011-05-04 09:27:52 -04001830 bool hash_enable = true;
1831
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001832 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04001833 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001834
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001835 ftrace_start_up++;
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001836 command |= FTRACE_UPDATE_CALLS;
Steven Rostedt3d083392008-05-12 21:20:42 +02001837
Steven Rostedtb8489142011-05-04 09:27:52 -04001838 /* ops marked global share the filter hashes */
1839 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
1840 ops = &global_ops;
1841 /* Don't update hash if global is already set */
1842 if (global_start_up)
1843 hash_enable = false;
1844 global_start_up++;
1845 }
1846
Steven Rostedted926f92011-05-03 13:25:24 -04001847 ops->flags |= FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04001848 if (hash_enable)
Steven Rostedted926f92011-05-03 13:25:24 -04001849 ftrace_hash_rec_enable(ops, 1);
1850
Steven Rostedtdf4fc312008-11-26 00:16:23 -05001851 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04001852
1853 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02001854}
1855
Steven Rostedtbd69c302011-05-03 21:55:54 -04001856static void ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02001857{
Steven Rostedtb8489142011-05-04 09:27:52 -04001858 bool hash_disable = true;
1859
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001860 if (unlikely(ftrace_disabled))
1861 return;
1862
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001863 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02001864 /*
1865 * Just warn in case of unbalance, no need to kill ftrace, it's not
1866 * critical but the ftrace_call callers may be never nopped again after
1867 * further ftrace uses.
1868 */
1869 WARN_ON_ONCE(ftrace_start_up < 0);
1870
Steven Rostedtb8489142011-05-04 09:27:52 -04001871 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
1872 ops = &global_ops;
1873 global_start_up--;
1874 WARN_ON_ONCE(global_start_up < 0);
1875 /* Don't update hash if global still has users */
1876 if (global_start_up) {
1877 WARN_ON_ONCE(!ftrace_start_up);
1878 hash_disable = false;
1879 }
1880 }
1881
1882 if (hash_disable)
Steven Rostedted926f92011-05-03 13:25:24 -04001883 ftrace_hash_rec_disable(ops, 1);
1884
Steven Rostedtb8489142011-05-04 09:27:52 -04001885 if (ops != &global_ops || !global_start_up)
Steven Rostedted926f92011-05-03 13:25:24 -04001886 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04001887
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001888 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001889
1890 if (saved_ftrace_func != ftrace_trace_function) {
1891 saved_ftrace_func = ftrace_trace_function;
1892 command |= FTRACE_UPDATE_TRACE_FUNC;
1893 }
1894
1895 if (!command || !ftrace_enabled)
Steven Rostedte6ea44e2009-02-14 01:42:44 -05001896 return;
Steven Rostedt3d083392008-05-12 21:20:42 +02001897
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001898 ftrace_run_update_code(command);
Steven Rostedt3d083392008-05-12 21:20:42 +02001899}
1900
Ingo Molnare309b412008-05-12 21:20:51 +02001901static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001902{
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001903 if (unlikely(ftrace_disabled))
1904 return;
1905
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001906 /* Force update next time */
1907 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001908 /* ftrace_start_up is true if we want ftrace running */
1909 if (ftrace_start_up)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001910 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001911}
1912
Ingo Molnare309b412008-05-12 21:20:51 +02001913static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001914{
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001915 if (unlikely(ftrace_disabled))
1916 return;
1917
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001918 /* ftrace_start_up is true if ftrace is running */
1919 if (ftrace_start_up)
Steven Rostedt79e406d2010-09-14 22:19:46 -04001920 ftrace_run_update_code(FTRACE_DISABLE_CALLS);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001921}
1922
Steven Rostedt3d083392008-05-12 21:20:42 +02001923static cycle_t ftrace_update_time;
1924static unsigned long ftrace_update_cnt;
1925unsigned long ftrace_update_tot_cnt;
1926
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04001927static int ops_traces_mod(struct ftrace_ops *ops)
1928{
1929 struct ftrace_hash *hash;
1930
1931 hash = ops->filter_hash;
1932 return !!(!hash || !hash->count);
1933}
1934
Steven Rostedt31e88902008-11-14 16:21:19 -08001935static int ftrace_update_code(struct module *mod)
Steven Rostedt3d083392008-05-12 21:20:42 +02001936{
Steven Rostedt85ae32a2011-12-16 16:30:31 -05001937 struct ftrace_page *pg;
Lai Jiangshane94142a2009-03-13 17:51:27 +08001938 struct dyn_ftrace *p;
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05301939 cycle_t start, stop;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04001940 unsigned long ref = 0;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05001941 int i;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04001942
1943 /*
1944 * When adding a module, we need to check if tracers are
1945 * currently enabled and if they are set to trace all functions.
1946 * If they are, we need to enable the module functions as well
1947 * as update the reference counts for those function records.
1948 */
1949 if (mod) {
1950 struct ftrace_ops *ops;
1951
1952 for (ops = ftrace_ops_list;
1953 ops != &ftrace_list_end; ops = ops->next) {
1954 if (ops->flags & FTRACE_OPS_FL_ENABLED &&
1955 ops_traces_mod(ops))
1956 ref++;
1957 }
1958 }
Steven Rostedt3d083392008-05-12 21:20:42 +02001959
Ingo Molnar750ed1a2008-05-12 21:20:46 +02001960 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02001961 ftrace_update_cnt = 0;
1962
Steven Rostedt85ae32a2011-12-16 16:30:31 -05001963 for (pg = ftrace_new_pgs; pg; pg = pg->next) {
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05301964
Steven Rostedt85ae32a2011-12-16 16:30:31 -05001965 for (i = 0; i < pg->index; i++) {
1966 /* If something went wrong, bail without enabling anything */
1967 if (unlikely(ftrace_disabled))
1968 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02001969
Steven Rostedt85ae32a2011-12-16 16:30:31 -05001970 p = &pg->records[i];
1971 p->flags = ref;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05301972
Steven Rostedt85ae32a2011-12-16 16:30:31 -05001973 /*
1974 * Do the initial record conversion from mcount jump
1975 * to the NOP instructions.
1976 */
1977 if (!ftrace_code_disable(mod, p))
1978 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04001979
Steven Rostedt85ae32a2011-12-16 16:30:31 -05001980 ftrace_update_cnt++;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04001981
Steven Rostedt85ae32a2011-12-16 16:30:31 -05001982 /*
1983 * If the tracing is enabled, go ahead and enable the record.
1984 *
1985 * The reason not to enable the record immediatelly is the
1986 * inherent check of ftrace_make_nop/ftrace_make_call for
1987 * correct previous instructions. Making first the NOP
1988 * conversion puts the module to the correct state, thus
1989 * passing the ftrace_make_call check.
1990 */
1991 if (ftrace_start_up && ref) {
1992 int failed = __ftrace_replace_code(p, 1);
1993 if (failed)
1994 ftrace_bug(failed, p->ip);
1995 }
Jiri Olsa5cb084b2009-10-13 16:33:53 -04001996 }
Steven Rostedt3d083392008-05-12 21:20:42 +02001997 }
1998
Steven Rostedt85ae32a2011-12-16 16:30:31 -05001999 ftrace_new_pgs = NULL;
2000
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002001 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002002 ftrace_update_time = stop - start;
2003 ftrace_update_tot_cnt += ftrace_update_cnt;
2004
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02002005 return 0;
2006}
2007
Steven Rostedta7900872011-12-16 16:23:44 -05002008static int ftrace_allocate_records(struct ftrace_page *pg, int count)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002009{
Steven Rostedta7900872011-12-16 16:23:44 -05002010 int order;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002011 int cnt;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002012
Steven Rostedta7900872011-12-16 16:23:44 -05002013 if (WARN_ON(!count))
2014 return -EINVAL;
2015
2016 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002017
2018 /*
Steven Rostedta7900872011-12-16 16:23:44 -05002019 * We want to fill as much as possible. No more than a page
2020 * may be empty.
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002021 */
Steven Rostedta7900872011-12-16 16:23:44 -05002022 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2023 order--;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002024
Steven Rostedta7900872011-12-16 16:23:44 -05002025 again:
2026 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
2027
2028 if (!pg->records) {
2029 /* if we can't allocate this size, try something smaller */
2030 if (!order)
2031 return -ENOMEM;
2032 order >>= 1;
2033 goto again;
2034 }
2035
2036 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
2037 pg->size = cnt;
2038
2039 if (cnt > count)
2040 cnt = count;
2041
2042 return cnt;
2043}
2044
2045static struct ftrace_page *
2046ftrace_allocate_pages(unsigned long num_to_init)
2047{
2048 struct ftrace_page *start_pg;
2049 struct ftrace_page *pg;
2050 int order;
2051 int cnt;
2052
2053 if (!num_to_init)
2054 return 0;
2055
2056 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
2057 if (!pg)
2058 return NULL;
2059
2060 /*
2061 * Try to allocate as much as possible in one continues
2062 * location that fills in all of the space. We want to
2063 * waste as little space as possible.
2064 */
2065 for (;;) {
2066 cnt = ftrace_allocate_records(pg, num_to_init);
2067 if (cnt < 0)
2068 goto free_pages;
2069
2070 num_to_init -= cnt;
2071 if (!num_to_init)
2072 break;
2073
2074 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
2075 if (!pg->next)
2076 goto free_pages;
2077
2078 pg = pg->next;
2079 }
2080
2081 return start_pg;
2082
2083 free_pages:
2084 while (start_pg) {
2085 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
2086 free_pages((unsigned long)pg->records, order);
2087 start_pg = pg->next;
2088 kfree(pg);
2089 pg = start_pg;
2090 }
2091 pr_info("ftrace: FAILED to allocate memory for functions\n");
2092 return NULL;
2093}
2094
2095static int __init ftrace_dyn_table_alloc(unsigned long num_to_init)
2096{
2097 int cnt;
2098
2099 if (!num_to_init) {
2100 pr_info("ftrace: No functions to be traced?\n");
2101 return -1;
2102 }
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002103
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002104 cnt = num_to_init / ENTRIES_PER_PAGE;
Steven Rostedt08f5ac902008-10-23 09:33:07 -04002105 pr_info("ftrace: allocating %ld entries in %d pages\n",
walimis5821e1b2008-11-15 15:19:06 +08002106 num_to_init, cnt + 1);
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002107
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002108 return 0;
2109}
2110
Steven Rostedt5072c592008-05-12 21:20:43 +02002111enum {
2112 FTRACE_ITER_FILTER = (1 << 0),
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002113 FTRACE_ITER_NOTRACE = (1 << 1),
Steven Rostedt3499e462011-04-21 22:59:12 -04002114 FTRACE_ITER_PRINTALL = (1 << 2),
2115 FTRACE_ITER_HASH = (1 << 3),
Steven Rostedt647bcd02011-05-03 14:39:21 -04002116 FTRACE_ITER_ENABLED = (1 << 4),
Steven Rostedt5072c592008-05-12 21:20:43 +02002117};
2118
2119#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
2120
2121struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002122 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002123 loff_t func_pos;
2124 struct ftrace_page *pg;
2125 struct dyn_ftrace *func;
2126 struct ftrace_func_probe *probe;
2127 struct trace_parser parser;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002128 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002129 struct ftrace_ops *ops;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002130 int hidx;
2131 int idx;
2132 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02002133};
2134
Ingo Molnare309b412008-05-12 21:20:51 +02002135static void *
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002136t_hash_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002137{
2138 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002139 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002140 struct hlist_head *hhd;
2141
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002142 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002143 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002144
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002145 if (iter->probe)
2146 hnd = &iter->probe->node;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002147 retry:
2148 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
2149 return NULL;
2150
2151 hhd = &ftrace_func_hash[iter->hidx];
2152
2153 if (hlist_empty(hhd)) {
2154 iter->hidx++;
2155 hnd = NULL;
2156 goto retry;
2157 }
2158
2159 if (!hnd)
2160 hnd = hhd->first;
2161 else {
2162 hnd = hnd->next;
2163 if (!hnd) {
2164 iter->hidx++;
2165 goto retry;
2166 }
2167 }
2168
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002169 if (WARN_ON_ONCE(!hnd))
2170 return NULL;
2171
2172 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
2173
2174 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002175}
2176
2177static void *t_hash_start(struct seq_file *m, loff_t *pos)
2178{
2179 struct ftrace_iterator *iter = m->private;
2180 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08002181 loff_t l;
2182
Steven Rostedt2bccfff2010-09-09 08:43:22 -04002183 if (iter->func_pos > *pos)
2184 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002185
Li Zefand82d6242009-06-24 09:54:54 +08002186 iter->hidx = 0;
Steven Rostedt2bccfff2010-09-09 08:43:22 -04002187 for (l = 0; l <= (*pos - iter->func_pos); ) {
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002188 p = t_hash_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08002189 if (!p)
2190 break;
2191 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002192 if (!p)
2193 return NULL;
2194
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002195 /* Only set this if we have an item */
2196 iter->flags |= FTRACE_ITER_HASH;
2197
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002198 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002199}
2200
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002201static int
2202t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002203{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002204 struct ftrace_func_probe *rec;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002205
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002206 rec = iter->probe;
2207 if (WARN_ON_ONCE(!rec))
2208 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002209
Steven Rostedt809dcf22009-02-16 23:06:01 -05002210 if (rec->ops->print)
2211 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
2212
Steven Rostedtb375a112009-09-17 00:05:58 -04002213 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002214
2215 if (rec->data)
2216 seq_printf(m, ":%p", rec->data);
2217 seq_putc(m, '\n');
2218
2219 return 0;
2220}
2221
2222static void *
Steven Rostedt5072c592008-05-12 21:20:43 +02002223t_next(struct seq_file *m, void *v, loff_t *pos)
2224{
2225 struct ftrace_iterator *iter = m->private;
Steven Rostedtf45948e2011-05-02 12:29:25 -04002226 struct ftrace_ops *ops = &global_ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02002227 struct dyn_ftrace *rec = NULL;
2228
Steven Rostedt45a4a232011-04-21 23:16:46 -04002229 if (unlikely(ftrace_disabled))
2230 return NULL;
2231
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002232 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002233 return t_hash_next(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002234
Steven Rostedt5072c592008-05-12 21:20:43 +02002235 (*pos)++;
Jiri Olsa1106b692011-02-16 17:35:34 +01002236 iter->pos = iter->func_pos = *pos;
Steven Rostedt5072c592008-05-12 21:20:43 +02002237
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002238 if (iter->flags & FTRACE_ITER_PRINTALL)
Steven Rostedt57c072c2010-09-14 11:21:11 -04002239 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002240
Steven Rostedt5072c592008-05-12 21:20:43 +02002241 retry:
2242 if (iter->idx >= iter->pg->index) {
2243 if (iter->pg->next) {
2244 iter->pg = iter->pg->next;
2245 iter->idx = 0;
2246 goto retry;
2247 }
2248 } else {
2249 rec = &iter->pg->records[iter->idx++];
Steven Rostedt320823092011-12-16 14:42:37 -05002250 if (((iter->flags & FTRACE_ITER_FILTER) &&
Steven Rostedtf45948e2011-05-02 12:29:25 -04002251 !(ftrace_lookup_ip(ops->filter_hash, rec->ip))) ||
Steven Rostedt0183fb1c2008-11-07 22:36:02 -05002252
Steven Rostedt41c52c02008-05-22 11:46:33 -04002253 ((iter->flags & FTRACE_ITER_NOTRACE) &&
Steven Rostedt647bcd02011-05-03 14:39:21 -04002254 !ftrace_lookup_ip(ops->notrace_hash, rec->ip)) ||
2255
2256 ((iter->flags & FTRACE_ITER_ENABLED) &&
2257 !(rec->flags & ~FTRACE_FL_MASK))) {
2258
Steven Rostedt5072c592008-05-12 21:20:43 +02002259 rec = NULL;
2260 goto retry;
2261 }
2262 }
2263
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002264 if (!rec)
Steven Rostedt57c072c2010-09-14 11:21:11 -04002265 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002266
2267 iter->func = rec;
2268
2269 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02002270}
2271
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002272static void reset_iter_read(struct ftrace_iterator *iter)
2273{
2274 iter->pos = 0;
2275 iter->func_pos = 0;
2276 iter->flags &= ~(FTRACE_ITER_PRINTALL & FTRACE_ITER_HASH);
Steven Rostedt5072c592008-05-12 21:20:43 +02002277}
2278
2279static void *t_start(struct seq_file *m, loff_t *pos)
2280{
2281 struct ftrace_iterator *iter = m->private;
Steven Rostedtf45948e2011-05-02 12:29:25 -04002282 struct ftrace_ops *ops = &global_ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02002283 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08002284 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02002285
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002286 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04002287
2288 if (unlikely(ftrace_disabled))
2289 return NULL;
2290
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002291 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002292 * If an lseek was done, then reset and start from beginning.
2293 */
2294 if (*pos < iter->pos)
2295 reset_iter_read(iter);
2296
2297 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002298 * For set_ftrace_filter reading, if we have the filter
2299 * off, we can short cut and just print out that all
2300 * functions are enabled.
2301 */
Steven Rostedtf45948e2011-05-02 12:29:25 -04002302 if (iter->flags & FTRACE_ITER_FILTER && !ops->filter_hash->count) {
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002303 if (*pos > 0)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002304 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002305 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07002306 /* reset in case of seek/pread */
2307 iter->flags &= ~FTRACE_ITER_HASH;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002308 return iter;
2309 }
2310
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002311 if (iter->flags & FTRACE_ITER_HASH)
2312 return t_hash_start(m, pos);
2313
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002314 /*
2315 * Unfortunately, we need to restart at ftrace_pages_start
2316 * every time we let go of the ftrace_mutex. This is because
2317 * those pointers can change without the lock.
2318 */
Li Zefan694ce0a2009-06-24 09:54:19 +08002319 iter->pg = ftrace_pages_start;
2320 iter->idx = 0;
2321 for (l = 0; l <= *pos; ) {
2322 p = t_next(m, p, &l);
2323 if (!p)
2324 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08002325 }
walimis5821e1b2008-11-15 15:19:06 +08002326
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002327 if (!p) {
2328 if (iter->flags & FTRACE_ITER_FILTER)
2329 return t_hash_start(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002330
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002331 return NULL;
2332 }
2333
2334 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02002335}
2336
2337static void t_stop(struct seq_file *m, void *p)
2338{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002339 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002340}
2341
2342static int t_show(struct seq_file *m, void *v)
2343{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002344 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002345 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02002346
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002347 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002348 return t_hash_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002349
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002350 if (iter->flags & FTRACE_ITER_PRINTALL) {
2351 seq_printf(m, "#### all functions enabled ####\n");
2352 return 0;
2353 }
2354
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002355 rec = iter->func;
2356
Steven Rostedt5072c592008-05-12 21:20:43 +02002357 if (!rec)
2358 return 0;
2359
Steven Rostedt647bcd02011-05-03 14:39:21 -04002360 seq_printf(m, "%ps", (void *)rec->ip);
2361 if (iter->flags & FTRACE_ITER_ENABLED)
2362 seq_printf(m, " (%ld)",
2363 rec->flags & ~FTRACE_FL_MASK);
2364 seq_printf(m, "\n");
Steven Rostedt5072c592008-05-12 21:20:43 +02002365
2366 return 0;
2367}
2368
James Morris88e9d342009-09-22 16:43:43 -07002369static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02002370 .start = t_start,
2371 .next = t_next,
2372 .stop = t_stop,
2373 .show = t_show,
2374};
2375
Ingo Molnare309b412008-05-12 21:20:51 +02002376static int
Steven Rostedt5072c592008-05-12 21:20:43 +02002377ftrace_avail_open(struct inode *inode, struct file *file)
2378{
2379 struct ftrace_iterator *iter;
2380 int ret;
2381
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002382 if (unlikely(ftrace_disabled))
2383 return -ENODEV;
2384
Steven Rostedt5072c592008-05-12 21:20:43 +02002385 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2386 if (!iter)
2387 return -ENOMEM;
2388
2389 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02002390
2391 ret = seq_open(file, &show_ftrace_seq_ops);
2392 if (!ret) {
2393 struct seq_file *m = file->private_data;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002394
Steven Rostedt5072c592008-05-12 21:20:43 +02002395 m->private = iter;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002396 } else {
Steven Rostedt5072c592008-05-12 21:20:43 +02002397 kfree(iter);
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002398 }
Steven Rostedt5072c592008-05-12 21:20:43 +02002399
2400 return ret;
2401}
2402
Steven Rostedt647bcd02011-05-03 14:39:21 -04002403static int
2404ftrace_enabled_open(struct inode *inode, struct file *file)
2405{
2406 struct ftrace_iterator *iter;
2407 int ret;
2408
2409 if (unlikely(ftrace_disabled))
2410 return -ENODEV;
2411
2412 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2413 if (!iter)
2414 return -ENOMEM;
2415
2416 iter->pg = ftrace_pages_start;
2417 iter->flags = FTRACE_ITER_ENABLED;
2418
2419 ret = seq_open(file, &show_ftrace_seq_ops);
2420 if (!ret) {
2421 struct seq_file *m = file->private_data;
2422
2423 m->private = iter;
2424 } else {
2425 kfree(iter);
2426 }
2427
2428 return ret;
2429}
2430
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002431static void ftrace_filter_reset(struct ftrace_hash *hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02002432{
Steven Rostedt52baf112009-02-14 01:15:39 -05002433 mutex_lock(&ftrace_lock);
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002434 ftrace_hash_clear(hash);
Steven Rostedt52baf112009-02-14 01:15:39 -05002435 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002436}
2437
Ingo Molnare309b412008-05-12 21:20:51 +02002438static int
Steven Rostedtf45948e2011-05-02 12:29:25 -04002439ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002440 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02002441{
2442 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04002443 struct ftrace_hash *hash;
Steven Rostedt5072c592008-05-12 21:20:43 +02002444 int ret = 0;
2445
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002446 if (unlikely(ftrace_disabled))
2447 return -ENODEV;
2448
Steven Rostedt5072c592008-05-12 21:20:43 +02002449 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2450 if (!iter)
2451 return -ENOMEM;
2452
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002453 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
2454 kfree(iter);
2455 return -ENOMEM;
2456 }
2457
Steven Rostedtf45948e2011-05-02 12:29:25 -04002458 if (flag & FTRACE_ITER_NOTRACE)
2459 hash = ops->notrace_hash;
2460 else
2461 hash = ops->filter_hash;
2462
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002463 iter->ops = ops;
2464 iter->flags = flag;
2465
2466 if (file->f_mode & FMODE_WRITE) {
2467 mutex_lock(&ftrace_lock);
2468 iter->hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, hash);
2469 mutex_unlock(&ftrace_lock);
2470
2471 if (!iter->hash) {
2472 trace_parser_put(&iter->parser);
2473 kfree(iter);
2474 return -ENOMEM;
2475 }
2476 }
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002477
Steven Rostedt41c52c02008-05-22 11:46:33 -04002478 mutex_lock(&ftrace_regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002479
Steven Rostedt5072c592008-05-12 21:20:43 +02002480 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04002481 (file->f_flags & O_TRUNC))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002482 ftrace_filter_reset(iter->hash);
Steven Rostedt5072c592008-05-12 21:20:43 +02002483
2484 if (file->f_mode & FMODE_READ) {
2485 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02002486
2487 ret = seq_open(file, &show_ftrace_seq_ops);
2488 if (!ret) {
2489 struct seq_file *m = file->private_data;
2490 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08002491 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002492 /* Failed */
2493 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08002494 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02002495 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08002496 }
Steven Rostedt5072c592008-05-12 21:20:43 +02002497 } else
2498 file->private_data = iter;
Steven Rostedt41c52c02008-05-22 11:46:33 -04002499 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002500
2501 return ret;
2502}
2503
Steven Rostedt41c52c02008-05-22 11:46:33 -04002504static int
2505ftrace_filter_open(struct inode *inode, struct file *file)
2506{
Steven Rostedtf45948e2011-05-02 12:29:25 -04002507 return ftrace_regex_open(&global_ops, FTRACE_ITER_FILTER,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002508 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04002509}
2510
2511static int
2512ftrace_notrace_open(struct inode *inode, struct file *file)
2513{
Steven Rostedtf45948e2011-05-02 12:29:25 -04002514 return ftrace_regex_open(&global_ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002515 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04002516}
2517
Ingo Molnare309b412008-05-12 21:20:51 +02002518static loff_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04002519ftrace_regex_lseek(struct file *file, loff_t offset, int origin)
Steven Rostedt5072c592008-05-12 21:20:43 +02002520{
2521 loff_t ret;
2522
2523 if (file->f_mode & FMODE_READ)
2524 ret = seq_lseek(file, offset, origin);
2525 else
2526 file->f_pos = ret = 1;
2527
2528 return ret;
2529}
2530
Steven Rostedt64e7c442009-02-13 17:08:48 -05002531static int ftrace_match(char *str, char *regex, int len, int type)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002532{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002533 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08002534 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002535
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002536 switch (type) {
2537 case MATCH_FULL:
2538 if (strcmp(str, regex) == 0)
2539 matched = 1;
2540 break;
2541 case MATCH_FRONT_ONLY:
2542 if (strncmp(str, regex, len) == 0)
2543 matched = 1;
2544 break;
2545 case MATCH_MIDDLE_ONLY:
2546 if (strstr(str, regex))
2547 matched = 1;
2548 break;
2549 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08002550 slen = strlen(str);
2551 if (slen >= len && memcmp(str + slen - len, regex, len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002552 matched = 1;
2553 break;
2554 }
2555
2556 return matched;
2557}
2558
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002559static int
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002560enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int not)
Steven Rostedt996e87b2011-04-26 16:11:03 -04002561{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002562 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002563 int ret = 0;
2564
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002565 entry = ftrace_lookup_ip(hash, rec->ip);
2566 if (not) {
2567 /* Do nothing if it doesn't exist */
2568 if (!entry)
2569 return 0;
2570
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002571 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002572 } else {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002573 /* Do nothing if it exists */
2574 if (entry)
2575 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002576
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002577 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002578 }
2579 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04002580}
2581
Steven Rostedt64e7c442009-02-13 17:08:48 -05002582static int
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002583ftrace_match_record(struct dyn_ftrace *rec, char *mod,
2584 char *regex, int len, int type)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002585{
2586 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002587 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05002588
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002589 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
2590
2591 if (mod) {
2592 /* module lookup requires matching the module */
2593 if (!modname || strcmp(modname, mod))
2594 return 0;
2595
2596 /* blank search means to match all funcs in the mod */
2597 if (!len)
2598 return 1;
2599 }
2600
Steven Rostedt64e7c442009-02-13 17:08:48 -05002601 return ftrace_match(str, regex, len, type);
2602}
2603
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002604static int
2605match_records(struct ftrace_hash *hash, char *buff,
2606 int len, char *mod, int not)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002607{
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002608 unsigned search_len = 0;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002609 struct ftrace_page *pg;
2610 struct dyn_ftrace *rec;
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002611 int type = MATCH_FULL;
2612 char *search = buff;
Li Zefan311d16d2009-12-08 11:15:11 +08002613 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002614 int ret;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002615
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002616 if (len) {
2617 type = filter_parse_regex(buff, len, &search, &not);
2618 search_len = strlen(search);
2619 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002620
Steven Rostedt52baf112009-02-14 01:15:39 -05002621 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002622
2623 if (unlikely(ftrace_disabled))
2624 goto out_unlock;
2625
Steven Rostedt265c8312009-02-13 12:43:56 -05002626 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002627 if (ftrace_match_record(rec, mod, search, search_len, type)) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002628 ret = enter_record(hash, rec, not);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002629 if (ret < 0) {
2630 found = ret;
2631 goto out_unlock;
2632 }
Li Zefan311d16d2009-12-08 11:15:11 +08002633 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05002634 }
2635 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002636 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05002637 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08002638
2639 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02002640}
2641
Steven Rostedt64e7c442009-02-13 17:08:48 -05002642static int
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002643ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002644{
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002645 return match_records(hash, buff, len, NULL, 0);
Steven Rostedt64e7c442009-02-13 17:08:48 -05002646}
2647
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002648static int
2649ftrace_match_module_records(struct ftrace_hash *hash, char *buff, char *mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002650{
Steven Rostedt64e7c442009-02-13 17:08:48 -05002651 int not = 0;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002652
Steven Rostedt64e7c442009-02-13 17:08:48 -05002653 /* blank or '*' mean the same */
2654 if (strcmp(buff, "*") == 0)
2655 buff[0] = 0;
2656
2657 /* handle the case of 'dont filter this module' */
2658 if (strcmp(buff, "!") == 0 || strcmp(buff, "!*") == 0) {
2659 buff[0] = 0;
2660 not = 1;
2661 }
2662
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002663 return match_records(hash, buff, strlen(buff), mod, not);
Steven Rostedt64e7c442009-02-13 17:08:48 -05002664}
2665
Steven Rostedtf6180772009-02-14 00:40:25 -05002666/*
2667 * We register the module command as a template to show others how
2668 * to register the a command as well.
2669 */
2670
2671static int
Steven Rostedt43dd61c2011-07-07 11:09:22 -04002672ftrace_mod_callback(struct ftrace_hash *hash,
2673 char *func, char *cmd, char *param, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05002674{
2675 char *mod;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002676 int ret = -EINVAL;
Steven Rostedtf6180772009-02-14 00:40:25 -05002677
2678 /*
2679 * cmd == 'mod' because we only registered this func
2680 * for the 'mod' ftrace_func_command.
2681 * But if you register one func with multiple commands,
2682 * you can tell which command was used by the cmd
2683 * parameter.
2684 */
2685
2686 /* we must have a module name */
2687 if (!param)
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002688 return ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05002689
2690 mod = strsep(&param, ":");
2691 if (!strlen(mod))
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002692 return ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05002693
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002694 ret = ftrace_match_module_records(hash, func, mod);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002695 if (!ret)
2696 ret = -EINVAL;
2697 if (ret < 0)
2698 return ret;
2699
2700 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05002701}
2702
2703static struct ftrace_func_command ftrace_mod_cmd = {
2704 .name = "mod",
2705 .func = ftrace_mod_callback,
2706};
2707
2708static int __init ftrace_mod_cmd_init(void)
2709{
2710 return register_ftrace_command(&ftrace_mod_cmd);
2711}
2712device_initcall(ftrace_mod_cmd_init);
2713
Steven Rostedt59df055f2009-02-14 15:29:06 -05002714static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002715function_trace_probe_call(unsigned long ip, unsigned long parent_ip)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002716{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002717 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002718 struct hlist_head *hhd;
2719 struct hlist_node *n;
2720 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002721
2722 key = hash_long(ip, FTRACE_HASH_BITS);
2723
2724 hhd = &ftrace_func_hash[key];
2725
2726 if (hlist_empty(hhd))
2727 return;
2728
2729 /*
2730 * Disable preemption for these calls to prevent a RCU grace
2731 * period. This syncs the hash iteration and freeing of items
2732 * on the hash. rcu_read_lock is too dangerous here.
2733 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04002734 preempt_disable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002735 hlist_for_each_entry_rcu(entry, n, hhd, node) {
2736 if (entry->ip == ip)
2737 entry->ops->func(ip, parent_ip, &entry->data);
2738 }
Steven Rostedt5168ae52010-06-03 09:36:50 -04002739 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002740}
2741
Steven Rostedtb6887d72009-02-17 12:32:04 -05002742static struct ftrace_ops trace_probe_ops __read_mostly =
Steven Rostedt59df055f2009-02-14 15:29:06 -05002743{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04002744 .func = function_trace_probe_call,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002745};
2746
Steven Rostedtb6887d72009-02-17 12:32:04 -05002747static int ftrace_probe_registered;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002748
Steven Rostedtb6887d72009-02-17 12:32:04 -05002749static void __enable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002750{
Steven Rostedtb8489142011-05-04 09:27:52 -04002751 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002752 int i;
2753
Steven Rostedtb6887d72009-02-17 12:32:04 -05002754 if (ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002755 return;
2756
2757 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2758 struct hlist_head *hhd = &ftrace_func_hash[i];
2759 if (hhd->first)
2760 break;
2761 }
2762 /* Nothing registered? */
2763 if (i == FTRACE_FUNC_HASHSIZE)
2764 return;
2765
Steven Rostedtb8489142011-05-04 09:27:52 -04002766 ret = __register_ftrace_function(&trace_probe_ops);
2767 if (!ret)
Steven Rostedta1cd6172011-05-23 15:24:25 -04002768 ret = ftrace_startup(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04002769
Steven Rostedtb6887d72009-02-17 12:32:04 -05002770 ftrace_probe_registered = 1;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002771}
2772
Steven Rostedtb6887d72009-02-17 12:32:04 -05002773static void __disable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002774{
Steven Rostedtb8489142011-05-04 09:27:52 -04002775 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002776 int i;
2777
Steven Rostedtb6887d72009-02-17 12:32:04 -05002778 if (!ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002779 return;
2780
2781 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2782 struct hlist_head *hhd = &ftrace_func_hash[i];
2783 if (hhd->first)
2784 return;
2785 }
2786
2787 /* no more funcs left */
Steven Rostedtb8489142011-05-04 09:27:52 -04002788 ret = __unregister_ftrace_function(&trace_probe_ops);
2789 if (!ret)
2790 ftrace_shutdown(&trace_probe_ops, 0);
2791
Steven Rostedtb6887d72009-02-17 12:32:04 -05002792 ftrace_probe_registered = 0;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002793}
2794
2795
2796static void ftrace_free_entry_rcu(struct rcu_head *rhp)
2797{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002798 struct ftrace_func_probe *entry =
2799 container_of(rhp, struct ftrace_func_probe, rcu);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002800
2801 if (entry->ops->free)
2802 entry->ops->free(&entry->data);
2803 kfree(entry);
2804}
2805
2806
2807int
Steven Rostedtb6887d72009-02-17 12:32:04 -05002808register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002809 void *data)
2810{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002811 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002812 struct ftrace_page *pg;
2813 struct dyn_ftrace *rec;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002814 int type, len, not;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002815 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002816 int count = 0;
2817 char *search;
2818
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02002819 type = filter_parse_regex(glob, strlen(glob), &search, &not);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002820 len = strlen(search);
2821
Steven Rostedtb6887d72009-02-17 12:32:04 -05002822 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05002823 if (WARN_ON(not))
2824 return -EINVAL;
2825
2826 mutex_lock(&ftrace_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002827
Steven Rostedt45a4a232011-04-21 23:16:46 -04002828 if (unlikely(ftrace_disabled))
2829 goto out_unlock;
2830
Steven Rostedt59df055f2009-02-14 15:29:06 -05002831 do_for_each_ftrace_rec(pg, rec) {
2832
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002833 if (!ftrace_match_record(rec, NULL, search, len, type))
Steven Rostedt59df055f2009-02-14 15:29:06 -05002834 continue;
2835
2836 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
2837 if (!entry) {
Steven Rostedtb6887d72009-02-17 12:32:04 -05002838 /* If we did not process any, then return error */
Steven Rostedt59df055f2009-02-14 15:29:06 -05002839 if (!count)
2840 count = -ENOMEM;
2841 goto out_unlock;
2842 }
2843
2844 count++;
2845
2846 entry->data = data;
2847
2848 /*
2849 * The caller might want to do something special
2850 * for each function we find. We call the callback
2851 * to give the caller an opportunity to do so.
2852 */
2853 if (ops->callback) {
2854 if (ops->callback(rec->ip, &entry->data) < 0) {
2855 /* caller does not like this func */
2856 kfree(entry);
2857 continue;
2858 }
2859 }
2860
2861 entry->ops = ops;
2862 entry->ip = rec->ip;
2863
2864 key = hash_long(entry->ip, FTRACE_HASH_BITS);
2865 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
2866
2867 } while_for_each_ftrace_rec();
Steven Rostedtb6887d72009-02-17 12:32:04 -05002868 __enable_ftrace_function_probe();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002869
2870 out_unlock:
2871 mutex_unlock(&ftrace_lock);
2872
2873 return count;
2874}
2875
2876enum {
Steven Rostedtb6887d72009-02-17 12:32:04 -05002877 PROBE_TEST_FUNC = 1,
2878 PROBE_TEST_DATA = 2
Steven Rostedt59df055f2009-02-14 15:29:06 -05002879};
2880
2881static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002882__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002883 void *data, int flags)
2884{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002885 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002886 struct hlist_node *n, *tmp;
2887 char str[KSYM_SYMBOL_LEN];
2888 int type = MATCH_FULL;
2889 int i, len = 0;
2890 char *search;
2891
Atsushi Tsujib36461d2009-09-15 19:06:30 +09002892 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
Steven Rostedt59df055f2009-02-14 15:29:06 -05002893 glob = NULL;
Atsushi Tsujib36461d2009-09-15 19:06:30 +09002894 else if (glob) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05002895 int not;
2896
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02002897 type = filter_parse_regex(glob, strlen(glob), &search, &not);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002898 len = strlen(search);
2899
Steven Rostedtb6887d72009-02-17 12:32:04 -05002900 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05002901 if (WARN_ON(not))
2902 return;
2903 }
2904
2905 mutex_lock(&ftrace_lock);
2906 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2907 struct hlist_head *hhd = &ftrace_func_hash[i];
2908
2909 hlist_for_each_entry_safe(entry, n, tmp, hhd, node) {
2910
2911 /* break up if statements for readability */
Steven Rostedtb6887d72009-02-17 12:32:04 -05002912 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002913 continue;
2914
Steven Rostedtb6887d72009-02-17 12:32:04 -05002915 if ((flags & PROBE_TEST_DATA) && entry->data != data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002916 continue;
2917
2918 /* do this last, since it is the most expensive */
2919 if (glob) {
2920 kallsyms_lookup(entry->ip, NULL, NULL,
2921 NULL, str);
2922 if (!ftrace_match(str, glob, len, type))
2923 continue;
2924 }
2925
2926 hlist_del(&entry->node);
2927 call_rcu(&entry->rcu, ftrace_free_entry_rcu);
2928 }
2929 }
Steven Rostedtb6887d72009-02-17 12:32:04 -05002930 __disable_ftrace_function_probe();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002931 mutex_unlock(&ftrace_lock);
2932}
2933
2934void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002935unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002936 void *data)
2937{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002938 __unregister_ftrace_function_probe(glob, ops, data,
2939 PROBE_TEST_FUNC | PROBE_TEST_DATA);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002940}
2941
2942void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002943unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002944{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002945 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002946}
2947
Steven Rostedtb6887d72009-02-17 12:32:04 -05002948void unregister_ftrace_function_probe_all(char *glob)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002949{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002950 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002951}
2952
Steven Rostedtf6180772009-02-14 00:40:25 -05002953static LIST_HEAD(ftrace_commands);
2954static DEFINE_MUTEX(ftrace_cmd_mutex);
2955
2956int register_ftrace_command(struct ftrace_func_command *cmd)
2957{
2958 struct ftrace_func_command *p;
2959 int ret = 0;
2960
2961 mutex_lock(&ftrace_cmd_mutex);
2962 list_for_each_entry(p, &ftrace_commands, list) {
2963 if (strcmp(cmd->name, p->name) == 0) {
2964 ret = -EBUSY;
2965 goto out_unlock;
2966 }
2967 }
2968 list_add(&cmd->list, &ftrace_commands);
2969 out_unlock:
2970 mutex_unlock(&ftrace_cmd_mutex);
2971
2972 return ret;
2973}
2974
2975int unregister_ftrace_command(struct ftrace_func_command *cmd)
2976{
2977 struct ftrace_func_command *p, *n;
2978 int ret = -ENODEV;
2979
2980 mutex_lock(&ftrace_cmd_mutex);
2981 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
2982 if (strcmp(cmd->name, p->name) == 0) {
2983 ret = 0;
2984 list_del_init(&p->list);
2985 goto out_unlock;
2986 }
2987 }
2988 out_unlock:
2989 mutex_unlock(&ftrace_cmd_mutex);
2990
2991 return ret;
2992}
2993
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002994static int ftrace_process_regex(struct ftrace_hash *hash,
2995 char *buff, int len, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002996{
Steven Rostedtf6180772009-02-14 00:40:25 -05002997 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002998 struct ftrace_func_command *p;
GuoWen Li0aff1c02011-06-01 19:18:47 +08002999 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003000
3001 func = strsep(&next, ":");
3002
3003 if (!next) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003004 ret = ftrace_match_records(hash, func, len);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003005 if (!ret)
3006 ret = -EINVAL;
3007 if (ret < 0)
3008 return ret;
3009 return 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003010 }
3011
Steven Rostedtf6180772009-02-14 00:40:25 -05003012 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05003013
3014 command = strsep(&next, ":");
3015
Steven Rostedtf6180772009-02-14 00:40:25 -05003016 mutex_lock(&ftrace_cmd_mutex);
3017 list_for_each_entry(p, &ftrace_commands, list) {
3018 if (strcmp(p->name, command) == 0) {
Steven Rostedt43dd61c2011-07-07 11:09:22 -04003019 ret = p->func(hash, func, command, next, enable);
Steven Rostedtf6180772009-02-14 00:40:25 -05003020 goto out_unlock;
3021 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05003022 }
Steven Rostedtf6180772009-02-14 00:40:25 -05003023 out_unlock:
3024 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003025
Steven Rostedtf6180772009-02-14 00:40:25 -05003026 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003027}
3028
Ingo Molnare309b412008-05-12 21:20:51 +02003029static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04003030ftrace_regex_write(struct file *file, const char __user *ubuf,
3031 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02003032{
3033 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003034 struct trace_parser *parser;
3035 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02003036
Li Zefan4ba79782009-09-22 13:52:20 +08003037 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02003038 return 0;
3039
Steven Rostedt41c52c02008-05-22 11:46:33 -04003040 mutex_lock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003041
Steven Rostedt45a4a232011-04-21 23:16:46 -04003042 ret = -ENODEV;
3043 if (unlikely(ftrace_disabled))
3044 goto out_unlock;
3045
Steven Rostedt5072c592008-05-12 21:20:43 +02003046 if (file->f_mode & FMODE_READ) {
3047 struct seq_file *m = file->private_data;
3048 iter = m->private;
3049 } else
3050 iter = file->private_data;
3051
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003052 parser = &iter->parser;
3053 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02003054
Li Zefan4ba79782009-09-22 13:52:20 +08003055 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003056 !trace_parser_cont(parser)) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003057 ret = ftrace_process_regex(iter->hash, parser->buffer,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003058 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08003059 trace_parser_clear(parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003060 if (ret)
Li Zefaned146b252009-11-03 08:55:38 +08003061 goto out_unlock;
Steven Rostedt5072c592008-05-12 21:20:43 +02003062 }
3063
Steven Rostedt5072c592008-05-12 21:20:43 +02003064 ret = read;
Li Zefaned146b252009-11-03 08:55:38 +08003065out_unlock:
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003066 mutex_unlock(&ftrace_regex_lock);
Li Zefaned146b252009-11-03 08:55:38 +08003067
Steven Rostedt5072c592008-05-12 21:20:43 +02003068 return ret;
3069}
3070
Steven Rostedt41c52c02008-05-22 11:46:33 -04003071static ssize_t
3072ftrace_filter_write(struct file *file, const char __user *ubuf,
3073 size_t cnt, loff_t *ppos)
3074{
3075 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
3076}
3077
3078static ssize_t
3079ftrace_notrace_write(struct file *file, const char __user *ubuf,
3080 size_t cnt, loff_t *ppos)
3081{
3082 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
3083}
3084
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003085static int
Steven Rostedtf45948e2011-05-02 12:29:25 -04003086ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
3087 int reset, int enable)
Steven Rostedt41c52c02008-05-22 11:46:33 -04003088{
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003089 struct ftrace_hash **orig_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003090 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003091 int ret;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003092
Steven Rostedt936e0742011-05-05 22:54:01 -04003093 /* All global ops uses the global ops filters */
3094 if (ops->flags & FTRACE_OPS_FL_GLOBAL)
3095 ops = &global_ops;
3096
Steven Rostedt41c52c02008-05-22 11:46:33 -04003097 if (unlikely(ftrace_disabled))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003098 return -ENODEV;
Steven Rostedt41c52c02008-05-22 11:46:33 -04003099
Steven Rostedtf45948e2011-05-02 12:29:25 -04003100 if (enable)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003101 orig_hash = &ops->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003102 else
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003103 orig_hash = &ops->notrace_hash;
3104
3105 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3106 if (!hash)
3107 return -ENOMEM;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003108
Steven Rostedt41c52c02008-05-22 11:46:33 -04003109 mutex_lock(&ftrace_regex_lock);
3110 if (reset)
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003111 ftrace_filter_reset(hash);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003112 if (buf)
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003113 ftrace_match_records(hash, buf, len);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003114
3115 mutex_lock(&ftrace_lock);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003116 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
Steven Rostedt072126f2011-07-13 15:08:31 -04003117 if (!ret && ops->flags & FTRACE_OPS_FL_ENABLED
3118 && ftrace_enabled)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01003119 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedt072126f2011-07-13 15:08:31 -04003120
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003121 mutex_unlock(&ftrace_lock);
3122
Steven Rostedt41c52c02008-05-22 11:46:33 -04003123 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003124
3125 free_ftrace_hash(hash);
3126 return ret;
Steven Rostedt41c52c02008-05-22 11:46:33 -04003127}
3128
Steven Rostedt77a2b372008-05-12 21:20:45 +02003129/**
3130 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04003131 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02003132 * @buf - the string that holds the function filter text.
3133 * @len - the length of the string.
3134 * @reset - non zero to reset all filters before applying this filter.
3135 *
3136 * Filters denote which functions should be enabled when tracing is enabled.
3137 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3138 */
Steven Rostedt936e0742011-05-05 22:54:01 -04003139void ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
3140 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02003141{
Steven Rostedt936e0742011-05-05 22:54:01 -04003142 ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003143}
Steven Rostedt936e0742011-05-05 22:54:01 -04003144EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003145
Steven Rostedt41c52c02008-05-22 11:46:33 -04003146/**
3147 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04003148 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04003149 * @buf - the string that holds the function notrace text.
3150 * @len - the length of the string.
3151 * @reset - non zero to reset all filters before applying this filter.
3152 *
3153 * Notrace Filters denote which functions should not be enabled when tracing
3154 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3155 * for tracing.
3156 */
Steven Rostedt936e0742011-05-05 22:54:01 -04003157void ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
3158 int len, int reset)
3159{
3160 ftrace_set_regex(ops, buf, len, reset, 0);
3161}
3162EXPORT_SYMBOL_GPL(ftrace_set_notrace);
3163/**
3164 * ftrace_set_filter - set a function to filter on in ftrace
3165 * @ops - the ops to set the filter with
3166 * @buf - the string that holds the function filter text.
3167 * @len - the length of the string.
3168 * @reset - non zero to reset all filters before applying this filter.
3169 *
3170 * Filters denote which functions should be enabled when tracing is enabled.
3171 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3172 */
3173void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
3174{
3175 ftrace_set_regex(&global_ops, buf, len, reset, 1);
3176}
3177EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
3178
3179/**
3180 * ftrace_set_notrace - set a function to not trace in ftrace
3181 * @ops - the ops to set the notrace filter with
3182 * @buf - the string that holds the function notrace text.
3183 * @len - the length of the string.
3184 * @reset - non zero to reset all filters before applying this filter.
3185 *
3186 * Notrace Filters denote which functions should not be enabled when tracing
3187 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3188 * for tracing.
3189 */
3190void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04003191{
Steven Rostedtf45948e2011-05-02 12:29:25 -04003192 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02003193}
Steven Rostedt936e0742011-05-05 22:54:01 -04003194EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02003195
Steven Rostedt2af15d62009-05-28 13:37:24 -04003196/*
3197 * command line interface to allow users to set filters on boot up.
3198 */
3199#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
3200static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
3201static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
3202
3203static int __init set_ftrace_notrace(char *str)
3204{
3205 strncpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
3206 return 1;
3207}
3208__setup("ftrace_notrace=", set_ftrace_notrace);
3209
3210static int __init set_ftrace_filter(char *str)
3211{
3212 strncpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
3213 return 1;
3214}
3215__setup("ftrace_filter=", set_ftrace_filter);
3216
Stefan Assmann369bc182009-10-12 22:17:21 +02003217#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08003218static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Steven Rostedt801c29f2010-03-05 20:02:19 -05003219static int ftrace_set_func(unsigned long *array, int *idx, char *buffer);
3220
Stefan Assmann369bc182009-10-12 22:17:21 +02003221static int __init set_graph_function(char *str)
3222{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02003223 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02003224 return 1;
3225}
3226__setup("ftrace_graph_filter=", set_graph_function);
3227
3228static void __init set_ftrace_early_graph(char *buf)
3229{
3230 int ret;
3231 char *func;
3232
3233 while (buf) {
3234 func = strsep(&buf, ",");
3235 /* we allow only one expression at a time */
3236 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
3237 func);
3238 if (ret)
3239 printk(KERN_DEBUG "ftrace: function %s not "
3240 "traceable\n", func);
3241 }
3242}
3243#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3244
Steven Rostedtf45948e2011-05-02 12:29:25 -04003245static void __init
3246set_ftrace_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04003247{
3248 char *func;
3249
3250 while (buf) {
3251 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04003252 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04003253 }
3254}
3255
3256static void __init set_ftrace_early_filters(void)
3257{
3258 if (ftrace_filter_buf[0])
Steven Rostedtf45948e2011-05-02 12:29:25 -04003259 set_ftrace_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04003260 if (ftrace_notrace_buf[0])
Steven Rostedtf45948e2011-05-02 12:29:25 -04003261 set_ftrace_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02003262#ifdef CONFIG_FUNCTION_GRAPH_TRACER
3263 if (ftrace_graph_buf[0])
3264 set_ftrace_early_graph(ftrace_graph_buf);
3265#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04003266}
3267
Ingo Molnare309b412008-05-12 21:20:51 +02003268static int
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003269ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003270{
3271 struct seq_file *m = (struct seq_file *)file->private_data;
3272 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003273 struct ftrace_hash **orig_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003274 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04003275 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003276 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02003277
Steven Rostedt41c52c02008-05-22 11:46:33 -04003278 mutex_lock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003279 if (file->f_mode & FMODE_READ) {
3280 iter = m->private;
3281
3282 seq_release(inode, file);
3283 } else
3284 iter = file->private_data;
3285
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003286 parser = &iter->parser;
3287 if (trace_parser_loaded(parser)) {
3288 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003289 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02003290 }
3291
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003292 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003293
Steven Rostedt058e2972011-04-29 22:35:33 -04003294 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04003295 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
3296
3297 if (filter_hash)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003298 orig_hash = &iter->ops->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04003299 else
3300 orig_hash = &iter->ops->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003301
Steven Rostedt058e2972011-04-29 22:35:33 -04003302 mutex_lock(&ftrace_lock);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003303 ret = ftrace_hash_move(iter->ops, filter_hash,
3304 orig_hash, iter->hash);
3305 if (!ret && (iter->ops->flags & FTRACE_OPS_FL_ENABLED)
3306 && ftrace_enabled)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01003307 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003308
Steven Rostedt058e2972011-04-29 22:35:33 -04003309 mutex_unlock(&ftrace_lock);
3310 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003311 free_ftrace_hash(iter->hash);
3312 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04003313
Steven Rostedt41c52c02008-05-22 11:46:33 -04003314 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003315 return 0;
3316}
3317
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003318static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003319 .open = ftrace_avail_open,
3320 .read = seq_read,
3321 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08003322 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02003323};
3324
Steven Rostedt647bcd02011-05-03 14:39:21 -04003325static const struct file_operations ftrace_enabled_fops = {
3326 .open = ftrace_enabled_open,
3327 .read = seq_read,
3328 .llseek = seq_lseek,
3329 .release = seq_release_private,
3330};
3331
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003332static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003333 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08003334 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02003335 .write = ftrace_filter_write,
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003336 .llseek = ftrace_regex_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003337 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02003338};
3339
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003340static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04003341 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08003342 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003343 .write = ftrace_notrace_write,
3344 .llseek = ftrace_regex_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003345 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003346};
3347
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003348#ifdef CONFIG_FUNCTION_GRAPH_TRACER
3349
3350static DEFINE_MUTEX(graph_lock);
3351
3352int ftrace_graph_count;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003353int ftrace_graph_filter_enabled;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003354unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
3355
3356static void *
Li Zefan85951842009-06-24 09:54:00 +08003357__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003358{
Li Zefan85951842009-06-24 09:54:00 +08003359 if (*pos >= ftrace_graph_count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003360 return NULL;
Li Zefana4ec5e02009-09-18 14:06:28 +08003361 return &ftrace_graph_funcs[*pos];
Li Zefan85951842009-06-24 09:54:00 +08003362}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003363
Li Zefan85951842009-06-24 09:54:00 +08003364static void *
3365g_next(struct seq_file *m, void *v, loff_t *pos)
3366{
3367 (*pos)++;
3368 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003369}
3370
3371static void *g_start(struct seq_file *m, loff_t *pos)
3372{
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003373 mutex_lock(&graph_lock);
3374
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003375 /* Nothing, tell g_show to print all functions are enabled */
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003376 if (!ftrace_graph_filter_enabled && !*pos)
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003377 return (void *)1;
3378
Li Zefan85951842009-06-24 09:54:00 +08003379 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003380}
3381
3382static void g_stop(struct seq_file *m, void *p)
3383{
3384 mutex_unlock(&graph_lock);
3385}
3386
3387static int g_show(struct seq_file *m, void *v)
3388{
3389 unsigned long *ptr = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003390
3391 if (!ptr)
3392 return 0;
3393
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003394 if (ptr == (unsigned long *)1) {
3395 seq_printf(m, "#### all functions enabled ####\n");
3396 return 0;
3397 }
3398
Steven Rostedtb375a112009-09-17 00:05:58 -04003399 seq_printf(m, "%ps\n", (void *)*ptr);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003400
3401 return 0;
3402}
3403
James Morris88e9d342009-09-22 16:43:43 -07003404static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003405 .start = g_start,
3406 .next = g_next,
3407 .stop = g_stop,
3408 .show = g_show,
3409};
3410
3411static int
3412ftrace_graph_open(struct inode *inode, struct file *file)
3413{
3414 int ret = 0;
3415
3416 if (unlikely(ftrace_disabled))
3417 return -ENODEV;
3418
3419 mutex_lock(&graph_lock);
3420 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04003421 (file->f_flags & O_TRUNC)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003422 ftrace_graph_filter_enabled = 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003423 ftrace_graph_count = 0;
3424 memset(ftrace_graph_funcs, 0, sizeof(ftrace_graph_funcs));
3425 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003426 mutex_unlock(&graph_lock);
3427
Li Zefana4ec5e02009-09-18 14:06:28 +08003428 if (file->f_mode & FMODE_READ)
3429 ret = seq_open(file, &ftrace_graph_seq_ops);
3430
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003431 return ret;
3432}
3433
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003434static int
Li Zefan87827112009-07-23 11:29:11 +08003435ftrace_graph_release(struct inode *inode, struct file *file)
3436{
3437 if (file->f_mode & FMODE_READ)
3438 seq_release(inode, file);
3439 return 0;
3440}
3441
3442static int
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003443ftrace_set_func(unsigned long *array, int *idx, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003444{
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003445 struct dyn_ftrace *rec;
3446 struct ftrace_page *pg;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003447 int search_len;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003448 int fail = 1;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003449 int type, not;
3450 char *search;
3451 bool exists;
3452 int i;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003453
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003454 /* decode regex */
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02003455 type = filter_parse_regex(buffer, strlen(buffer), &search, &not);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003456 if (!not && *idx >= FTRACE_GRAPH_MAX_FUNCS)
3457 return -EBUSY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003458
3459 search_len = strlen(search);
3460
Steven Rostedt52baf112009-02-14 01:15:39 -05003461 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003462
3463 if (unlikely(ftrace_disabled)) {
3464 mutex_unlock(&ftrace_lock);
3465 return -ENODEV;
3466 }
3467
Steven Rostedt265c8312009-02-13 12:43:56 -05003468 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003469
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003470 if (ftrace_match_record(rec, NULL, search, search_len, type)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003471 /* if it is in the array */
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003472 exists = false;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003473 for (i = 0; i < *idx; i++) {
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003474 if (array[i] == rec->ip) {
3475 exists = true;
Steven Rostedt265c8312009-02-13 12:43:56 -05003476 break;
3477 }
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003478 }
3479
3480 if (!not) {
3481 fail = 0;
3482 if (!exists) {
3483 array[(*idx)++] = rec->ip;
3484 if (*idx >= FTRACE_GRAPH_MAX_FUNCS)
3485 goto out;
3486 }
3487 } else {
3488 if (exists) {
3489 array[i] = array[--(*idx)];
3490 array[*idx] = 0;
3491 fail = 0;
3492 }
3493 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003494 }
Steven Rostedt265c8312009-02-13 12:43:56 -05003495 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003496out:
Steven Rostedt52baf112009-02-14 01:15:39 -05003497 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003498
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003499 if (fail)
3500 return -EINVAL;
3501
3502 ftrace_graph_filter_enabled = 1;
3503 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003504}
3505
3506static ssize_t
3507ftrace_graph_write(struct file *file, const char __user *ubuf,
3508 size_t cnt, loff_t *ppos)
3509{
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003510 struct trace_parser parser;
Li Zefan4ba79782009-09-22 13:52:20 +08003511 ssize_t read, ret;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003512
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003513 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003514 return 0;
3515
3516 mutex_lock(&graph_lock);
3517
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003518 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX)) {
3519 ret = -ENOMEM;
Li Zefan1eb90f12009-09-22 13:52:57 +08003520 goto out_unlock;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003521 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003522
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003523 read = trace_get_user(&parser, ubuf, cnt, ppos);
3524
Li Zefan4ba79782009-09-22 13:52:20 +08003525 if (read >= 0 && trace_parser_loaded((&parser))) {
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003526 parser.buffer[parser.idx] = 0;
3527
3528 /* we allow only one expression at a time */
Li Zefana4ec5e02009-09-18 14:06:28 +08003529 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003530 parser.buffer);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003531 if (ret)
Li Zefan1eb90f12009-09-22 13:52:57 +08003532 goto out_free;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003533 }
3534
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003535 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08003536
3537out_free:
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003538 trace_parser_put(&parser);
Li Zefan1eb90f12009-09-22 13:52:57 +08003539out_unlock:
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003540 mutex_unlock(&graph_lock);
3541
3542 return ret;
3543}
3544
3545static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08003546 .open = ftrace_graph_open,
3547 .read = seq_read,
3548 .write = ftrace_graph_write,
3549 .release = ftrace_graph_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003550 .llseek = seq_lseek,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003551};
3552#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3553
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003554static __init int ftrace_init_dyn_debugfs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02003555{
Steven Rostedt5072c592008-05-12 21:20:43 +02003556
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003557 trace_create_file("available_filter_functions", 0444,
3558 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02003559
Steven Rostedt647bcd02011-05-03 14:39:21 -04003560 trace_create_file("enabled_functions", 0444,
3561 d_tracer, NULL, &ftrace_enabled_fops);
3562
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003563 trace_create_file("set_ftrace_filter", 0644, d_tracer,
3564 NULL, &ftrace_filter_fops);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003565
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003566 trace_create_file("set_ftrace_notrace", 0644, d_tracer,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003567 NULL, &ftrace_notrace_fops);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04003568
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003569#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003570 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003571 NULL,
3572 &ftrace_graph_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003573#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3574
Steven Rostedt5072c592008-05-12 21:20:43 +02003575 return 0;
3576}
3577
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003578static int ftrace_process_locs(struct module *mod,
Steven Rostedt31e88902008-11-14 16:21:19 -08003579 unsigned long *start,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003580 unsigned long *end)
3581{
Steven Rostedta7900872011-12-16 16:23:44 -05003582 struct ftrace_page *pg;
3583 unsigned long count;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003584 unsigned long *p;
3585 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04003586 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedta7900872011-12-16 16:23:44 -05003587 int ret = -ENOMEM;
3588
3589 count = end - start;
3590
3591 if (!count)
3592 return 0;
3593
3594 pg = ftrace_allocate_pages(count);
3595 if (!pg)
3596 return -ENOMEM;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003597
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003598 mutex_lock(&ftrace_lock);
Steven Rostedta7900872011-12-16 16:23:44 -05003599
Steven Rostedt320823092011-12-16 14:42:37 -05003600 /*
3601 * Core and each module needs their own pages, as
3602 * modules will free them when they are removed.
3603 * Force a new page to be allocated for modules.
3604 */
Steven Rostedta7900872011-12-16 16:23:44 -05003605 if (!mod) {
3606 WARN_ON(ftrace_pages || ftrace_pages_start);
3607 /* First initialization */
3608 ftrace_pages = ftrace_pages_start = pg;
3609 } else {
Steven Rostedt320823092011-12-16 14:42:37 -05003610 if (!ftrace_pages)
Steven Rostedta7900872011-12-16 16:23:44 -05003611 goto out;
Steven Rostedt320823092011-12-16 14:42:37 -05003612
Steven Rostedta7900872011-12-16 16:23:44 -05003613 if (WARN_ON(ftrace_pages->next)) {
3614 /* Hmm, we have free pages? */
3615 while (ftrace_pages->next)
3616 ftrace_pages = ftrace_pages->next;
Steven Rostedt320823092011-12-16 14:42:37 -05003617 }
Steven Rostedta7900872011-12-16 16:23:44 -05003618
3619 ftrace_pages->next = pg;
3620 ftrace_pages = pg;
Steven Rostedt320823092011-12-16 14:42:37 -05003621 }
3622
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003623 p = start;
3624 while (p < end) {
3625 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08003626 /*
3627 * Some architecture linkers will pad between
3628 * the different mcount_loc sections of different
3629 * object files to satisfy alignments.
3630 * Skip any NULL pointers.
3631 */
3632 if (!addr)
3633 continue;
Steven Rostedta7900872011-12-16 16:23:44 -05003634 if (!ftrace_record_ip(addr))
3635 break;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003636 }
3637
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003638 /* These new locations need to be initialized */
3639 ftrace_new_pgs = pg;
3640
Steven Rostedta4f18ed2011-06-07 09:26:46 -04003641 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04003642 * We only need to disable interrupts on start up
3643 * because we are modifying code that an interrupt
3644 * may execute, and the modification is not atomic.
3645 * But for modules, nothing runs the code we modify
3646 * until we are finished with it, and there's no
3647 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04003648 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04003649 if (!mod)
3650 local_irq_save(flags);
Steven Rostedt31e88902008-11-14 16:21:19 -08003651 ftrace_update_code(mod);
Steven Rostedt4376cac2011-06-24 23:28:13 -04003652 if (!mod)
3653 local_irq_restore(flags);
Steven Rostedta7900872011-12-16 16:23:44 -05003654 ret = 0;
3655 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003656 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003657
Steven Rostedta7900872011-12-16 16:23:44 -05003658 return ret;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003659}
3660
Steven Rostedt93eb6772009-04-15 13:24:06 -04003661#ifdef CONFIG_MODULES
Steven Rostedt320823092011-12-16 14:42:37 -05003662
3663#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
3664
jolsa@redhat.come7247a12009-10-07 19:00:35 +02003665void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04003666{
3667 struct dyn_ftrace *rec;
Steven Rostedt320823092011-12-16 14:42:37 -05003668 struct ftrace_page **last_pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04003669 struct ftrace_page *pg;
Steven Rostedta7900872011-12-16 16:23:44 -05003670 int order;
Steven Rostedt93eb6772009-04-15 13:24:06 -04003671
Steven Rostedt93eb6772009-04-15 13:24:06 -04003672 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003673
3674 if (ftrace_disabled)
3675 goto out_unlock;
3676
Steven Rostedt320823092011-12-16 14:42:37 -05003677 /*
3678 * Each module has its own ftrace_pages, remove
3679 * them from the list.
3680 */
3681 last_pg = &ftrace_pages_start;
3682 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
3683 rec = &pg->records[0];
jolsa@redhat.come7247a12009-10-07 19:00:35 +02003684 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04003685 /*
Steven Rostedt320823092011-12-16 14:42:37 -05003686 * As core pages are first, the first
3687 * page should never be a module page.
Steven Rostedt93eb6772009-04-15 13:24:06 -04003688 */
Steven Rostedt320823092011-12-16 14:42:37 -05003689 if (WARN_ON(pg == ftrace_pages_start))
3690 goto out_unlock;
3691
3692 /* Check if we are deleting the last page */
3693 if (pg == ftrace_pages)
3694 ftrace_pages = next_to_ftrace_page(last_pg);
3695
3696 *last_pg = pg->next;
Steven Rostedta7900872011-12-16 16:23:44 -05003697 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3698 free_pages((unsigned long)pg->records, order);
3699 kfree(pg);
Steven Rostedt320823092011-12-16 14:42:37 -05003700 } else
3701 last_pg = &pg->next;
3702 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04003703 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04003704 mutex_unlock(&ftrace_lock);
3705}
3706
3707static void ftrace_init_module(struct module *mod,
3708 unsigned long *start, unsigned long *end)
Steven Rostedt90d595f2008-08-14 15:45:09 -04003709{
Steven Rostedt00fd61a2008-08-15 21:40:04 -04003710 if (ftrace_disabled || start == end)
Steven Rostedtfed19392008-08-14 22:47:19 -04003711 return;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003712 ftrace_process_locs(mod, start, end);
Steven Rostedt90d595f2008-08-14 15:45:09 -04003713}
3714
Steven Rostedt93eb6772009-04-15 13:24:06 -04003715static int ftrace_module_notify(struct notifier_block *self,
3716 unsigned long val, void *data)
3717{
3718 struct module *mod = data;
3719
3720 switch (val) {
3721 case MODULE_STATE_COMING:
3722 ftrace_init_module(mod, mod->ftrace_callsites,
3723 mod->ftrace_callsites +
3724 mod->num_ftrace_callsites);
3725 break;
3726 case MODULE_STATE_GOING:
jolsa@redhat.come7247a12009-10-07 19:00:35 +02003727 ftrace_release_mod(mod);
Steven Rostedt93eb6772009-04-15 13:24:06 -04003728 break;
3729 }
3730
3731 return 0;
3732}
3733#else
3734static int ftrace_module_notify(struct notifier_block *self,
3735 unsigned long val, void *data)
3736{
3737 return 0;
3738}
3739#endif /* CONFIG_MODULES */
3740
3741struct notifier_block ftrace_module_nb = {
3742 .notifier_call = ftrace_module_notify,
3743 .priority = 0,
3744};
3745
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003746extern unsigned long __start_mcount_loc[];
3747extern unsigned long __stop_mcount_loc[];
3748
3749void __init ftrace_init(void)
3750{
3751 unsigned long count, addr, flags;
3752 int ret;
3753
3754 /* Keep the ftrace pointer to the stub */
3755 addr = (unsigned long)ftrace_stub;
3756
3757 local_irq_save(flags);
3758 ftrace_dyn_arch_init(&addr);
3759 local_irq_restore(flags);
3760
3761 /* ftrace_dyn_arch_init places the return code in addr */
3762 if (addr)
3763 goto failed;
3764
3765 count = __stop_mcount_loc - __start_mcount_loc;
3766
3767 ret = ftrace_dyn_table_alloc(count);
3768 if (ret)
3769 goto failed;
3770
3771 last_ftrace_enabled = ftrace_enabled = 1;
3772
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003773 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08003774 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003775 __stop_mcount_loc);
3776
Steven Rostedt93eb6772009-04-15 13:24:06 -04003777 ret = register_module_notifier(&ftrace_module_nb);
Ming Lei24ed0c42009-05-17 15:31:38 +08003778 if (ret)
Steven Rostedt93eb6772009-04-15 13:24:06 -04003779 pr_warning("Failed to register trace ftrace module notifier\n");
3780
Steven Rostedt2af15d62009-05-28 13:37:24 -04003781 set_ftrace_early_filters();
3782
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003783 return;
3784 failed:
3785 ftrace_disabled = 1;
3786}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003787
Steven Rostedt3d083392008-05-12 21:20:42 +02003788#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01003789
Steven Rostedt2b499382011-05-03 22:49:52 -04003790static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04003791 .func = ftrace_stub,
3792};
3793
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01003794static int __init ftrace_nodyn_init(void)
3795{
3796 ftrace_enabled = 1;
3797 return 0;
3798}
3799device_initcall(ftrace_nodyn_init);
3800
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003801static inline int ftrace_init_dyn_debugfs(struct dentry *d_tracer) { return 0; }
3802static inline void ftrace_startup_enable(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05003803/* Keep as macros so we do not need to define the commands */
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04003804# define ftrace_startup(ops, command) \
3805 ({ \
3806 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
3807 0; \
3808 })
Steven Rostedtbd69c302011-05-03 21:55:54 -04003809# define ftrace_shutdown(ops, command) do { } while (0)
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003810# define ftrace_startup_sysctl() do { } while (0)
3811# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04003812
3813static inline int
3814ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip)
3815{
3816 return 1;
3817}
3818
Steven Rostedt3d083392008-05-12 21:20:42 +02003819#endif /* CONFIG_DYNAMIC_FTRACE */
3820
Steven Rostedtb8489142011-05-04 09:27:52 -04003821static void
3822ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip)
3823{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04003824 struct ftrace_ops *op;
Steven Rostedtb8489142011-05-04 09:27:52 -04003825
Steven Rostedtb1cff0a2011-05-25 14:27:43 -04003826 if (unlikely(trace_recursion_test(TRACE_INTERNAL_BIT)))
3827 return;
3828
3829 trace_recursion_set(TRACE_INTERNAL_BIT);
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04003830 /*
3831 * Some of the ops may be dynamically allocated,
3832 * they must be freed after a synchronize_sched().
3833 */
3834 preempt_disable_notrace();
3835 op = rcu_dereference_raw(ftrace_ops_list);
Steven Rostedtb8489142011-05-04 09:27:52 -04003836 while (op != &ftrace_list_end) {
3837 if (ftrace_ops_test(op, ip))
3838 op->func(ip, parent_ip);
3839 op = rcu_dereference_raw(op->next);
3840 };
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04003841 preempt_enable_notrace();
Steven Rostedtb1cff0a2011-05-25 14:27:43 -04003842 trace_recursion_clear(TRACE_INTERNAL_BIT);
Steven Rostedtb8489142011-05-04 09:27:52 -04003843}
3844
Steven Rostedte32d8952008-12-04 00:26:41 -05003845static void clear_ftrace_swapper(void)
3846{
3847 struct task_struct *p;
3848 int cpu;
3849
3850 get_online_cpus();
3851 for_each_online_cpu(cpu) {
3852 p = idle_task(cpu);
3853 clear_tsk_trace_trace(p);
3854 }
3855 put_online_cpus();
3856}
3857
3858static void set_ftrace_swapper(void)
3859{
3860 struct task_struct *p;
3861 int cpu;
3862
3863 get_online_cpus();
3864 for_each_online_cpu(cpu) {
3865 p = idle_task(cpu);
3866 set_tsk_trace_trace(p);
3867 }
3868 put_online_cpus();
3869}
3870
3871static void clear_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05003872{
3873 struct task_struct *p;
3874
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01003875 rcu_read_lock();
Steven Rostedte32d8952008-12-04 00:26:41 -05003876 do_each_pid_task(pid, PIDTYPE_PID, p) {
Steven Rostedt978f3a42008-12-04 00:26:40 -05003877 clear_tsk_trace_trace(p);
Steven Rostedte32d8952008-12-04 00:26:41 -05003878 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01003879 rcu_read_unlock();
3880
Steven Rostedte32d8952008-12-04 00:26:41 -05003881 put_pid(pid);
Steven Rostedt978f3a42008-12-04 00:26:40 -05003882}
3883
Steven Rostedte32d8952008-12-04 00:26:41 -05003884static void set_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05003885{
3886 struct task_struct *p;
3887
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01003888 rcu_read_lock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05003889 do_each_pid_task(pid, PIDTYPE_PID, p) {
3890 set_tsk_trace_trace(p);
3891 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01003892 rcu_read_unlock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05003893}
3894
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003895static void clear_ftrace_pid_task(struct pid *pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05003896{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003897 if (pid == ftrace_swapper_pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05003898 clear_ftrace_swapper();
3899 else
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003900 clear_ftrace_pid(pid);
Steven Rostedte32d8952008-12-04 00:26:41 -05003901}
3902
3903static void set_ftrace_pid_task(struct pid *pid)
3904{
3905 if (pid == ftrace_swapper_pid)
3906 set_ftrace_swapper();
3907 else
3908 set_ftrace_pid(pid);
3909}
3910
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003911static int ftrace_pid_add(int p)
3912{
3913 struct pid *pid;
3914 struct ftrace_pid *fpid;
3915 int ret = -EINVAL;
3916
3917 mutex_lock(&ftrace_lock);
3918
3919 if (!p)
3920 pid = ftrace_swapper_pid;
3921 else
3922 pid = find_get_pid(p);
3923
3924 if (!pid)
3925 goto out;
3926
3927 ret = 0;
3928
3929 list_for_each_entry(fpid, &ftrace_pids, list)
3930 if (fpid->pid == pid)
3931 goto out_put;
3932
3933 ret = -ENOMEM;
3934
3935 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
3936 if (!fpid)
3937 goto out_put;
3938
3939 list_add(&fpid->list, &ftrace_pids);
3940 fpid->pid = pid;
3941
3942 set_ftrace_pid_task(pid);
3943
3944 ftrace_update_pid_func();
3945 ftrace_startup_enable(0);
3946
3947 mutex_unlock(&ftrace_lock);
3948 return 0;
3949
3950out_put:
3951 if (pid != ftrace_swapper_pid)
3952 put_pid(pid);
3953
3954out:
3955 mutex_unlock(&ftrace_lock);
3956 return ret;
3957}
3958
3959static void ftrace_pid_reset(void)
3960{
3961 struct ftrace_pid *fpid, *safe;
3962
3963 mutex_lock(&ftrace_lock);
3964 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
3965 struct pid *pid = fpid->pid;
3966
3967 clear_ftrace_pid_task(pid);
3968
3969 list_del(&fpid->list);
3970 kfree(fpid);
3971 }
3972
3973 ftrace_update_pid_func();
3974 ftrace_startup_enable(0);
3975
3976 mutex_unlock(&ftrace_lock);
3977}
3978
3979static void *fpid_start(struct seq_file *m, loff_t *pos)
3980{
3981 mutex_lock(&ftrace_lock);
3982
3983 if (list_empty(&ftrace_pids) && (!*pos))
3984 return (void *) 1;
3985
3986 return seq_list_start(&ftrace_pids, *pos);
3987}
3988
3989static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
3990{
3991 if (v == (void *)1)
3992 return NULL;
3993
3994 return seq_list_next(v, &ftrace_pids, pos);
3995}
3996
3997static void fpid_stop(struct seq_file *m, void *p)
3998{
3999 mutex_unlock(&ftrace_lock);
4000}
4001
4002static int fpid_show(struct seq_file *m, void *v)
4003{
4004 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
4005
4006 if (v == (void *)1) {
4007 seq_printf(m, "no pid\n");
4008 return 0;
4009 }
4010
4011 if (fpid->pid == ftrace_swapper_pid)
4012 seq_printf(m, "swapper tasks\n");
4013 else
4014 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
4015
4016 return 0;
4017}
4018
4019static const struct seq_operations ftrace_pid_sops = {
4020 .start = fpid_start,
4021 .next = fpid_next,
4022 .stop = fpid_stop,
4023 .show = fpid_show,
4024};
4025
4026static int
4027ftrace_pid_open(struct inode *inode, struct file *file)
4028{
4029 int ret = 0;
4030
4031 if ((file->f_mode & FMODE_WRITE) &&
4032 (file->f_flags & O_TRUNC))
4033 ftrace_pid_reset();
4034
4035 if (file->f_mode & FMODE_READ)
4036 ret = seq_open(file, &ftrace_pid_sops);
4037
4038 return ret;
4039}
4040
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004041static ssize_t
4042ftrace_pid_write(struct file *filp, const char __user *ubuf,
4043 size_t cnt, loff_t *ppos)
4044{
Ingo Molnar457dc922009-11-23 11:03:28 +01004045 char buf[64], *tmp;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004046 long val;
4047 int ret;
4048
4049 if (cnt >= sizeof(buf))
4050 return -EINVAL;
4051
4052 if (copy_from_user(&buf, ubuf, cnt))
4053 return -EFAULT;
4054
4055 buf[cnt] = 0;
4056
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004057 /*
4058 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
4059 * to clean the filter quietly.
4060 */
Ingo Molnar457dc922009-11-23 11:03:28 +01004061 tmp = strstrip(buf);
4062 if (strlen(tmp) == 0)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004063 return 1;
4064
Ingo Molnar457dc922009-11-23 11:03:28 +01004065 ret = strict_strtol(tmp, 10, &val);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004066 if (ret < 0)
4067 return ret;
4068
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004069 ret = ftrace_pid_add(val);
Steven Rostedt978f3a42008-12-04 00:26:40 -05004070
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004071 return ret ? ret : cnt;
4072}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004073
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004074static int
4075ftrace_pid_release(struct inode *inode, struct file *file)
4076{
4077 if (file->f_mode & FMODE_READ)
4078 seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004079
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004080 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004081}
4082
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004083static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004084 .open = ftrace_pid_open,
4085 .write = ftrace_pid_write,
4086 .read = seq_read,
4087 .llseek = seq_lseek,
4088 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004089};
4090
4091static __init int ftrace_init_debugfs(void)
4092{
4093 struct dentry *d_tracer;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004094
4095 d_tracer = tracing_init_dentry();
4096 if (!d_tracer)
4097 return 0;
4098
4099 ftrace_init_dyn_debugfs(d_tracer);
4100
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004101 trace_create_file("set_ftrace_pid", 0644, d_tracer,
4102 NULL, &ftrace_pid_fops);
Steven Rostedt493762f2009-03-23 17:12:36 -04004103
4104 ftrace_profile_debugfs(d_tracer);
4105
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004106 return 0;
4107}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004108fs_initcall(ftrace_init_debugfs);
4109
Steven Rostedt3d083392008-05-12 21:20:42 +02004110/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04004111 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004112 *
4113 * This function should be used by panic code. It stops ftrace
4114 * but in a not so nice way. If you need to simply kill ftrace
4115 * from a non-atomic section, use ftrace_kill.
4116 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04004117void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004118{
4119 ftrace_disabled = 1;
4120 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004121 clear_ftrace_function();
4122}
4123
4124/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04004125 * Test if ftrace is dead or not.
4126 */
4127int ftrace_is_dead(void)
4128{
4129 return ftrace_disabled;
4130}
4131
4132/**
Steven Rostedt3d083392008-05-12 21:20:42 +02004133 * register_ftrace_function - register a function for profiling
4134 * @ops - ops structure that holds the function for profiling.
4135 *
4136 * Register a function to be called by all functions in the
4137 * kernel.
4138 *
4139 * Note: @ops->func and all the functions it calls must be labeled
4140 * with "notrace", otherwise it will go into a
4141 * recursive loop.
4142 */
4143int register_ftrace_function(struct ftrace_ops *ops)
4144{
Steven Rostedt45a4a232011-04-21 23:16:46 -04004145 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004146
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004147 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004148
Steven Rostedt45a4a232011-04-21 23:16:46 -04004149 if (unlikely(ftrace_disabled))
4150 goto out_unlock;
4151
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004152 ret = __register_ftrace_function(ops);
Steven Rostedtb8489142011-05-04 09:27:52 -04004153 if (!ret)
Steven Rostedta1cd6172011-05-23 15:24:25 -04004154 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04004155
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004156
Steven Rostedt45a4a232011-04-21 23:16:46 -04004157 out_unlock:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004158 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004159 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02004160}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004161EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02004162
4163/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01004164 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02004165 * @ops - ops structure that holds the function to unregister
4166 *
4167 * Unregister a function that was added to be called by ftrace profiling.
4168 */
4169int unregister_ftrace_function(struct ftrace_ops *ops)
4170{
4171 int ret;
4172
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004173 mutex_lock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02004174 ret = __unregister_ftrace_function(ops);
Steven Rostedtb8489142011-05-04 09:27:52 -04004175 if (!ret)
4176 ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004177 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004178
4179 return ret;
4180}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004181EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004182
Ingo Molnare309b412008-05-12 21:20:51 +02004183int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004184ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004185 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004186 loff_t *ppos)
4187{
Steven Rostedt45a4a232011-04-21 23:16:46 -04004188 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004189
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004190 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004191
Steven Rostedt45a4a232011-04-21 23:16:46 -04004192 if (unlikely(ftrace_disabled))
4193 goto out;
4194
4195 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004196
Li Zefana32c7762009-06-26 16:55:51 +08004197 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004198 goto out;
4199
Li Zefana32c7762009-06-26 16:55:51 +08004200 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004201
4202 if (ftrace_enabled) {
4203
4204 ftrace_startup_sysctl();
4205
4206 /* we are starting ftrace again */
Steven Rostedtb8489142011-05-04 09:27:52 -04004207 if (ftrace_ops_list != &ftrace_list_end) {
4208 if (ftrace_ops_list->next == &ftrace_list_end)
4209 ftrace_trace_function = ftrace_ops_list->func;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004210 else
Steven Rostedtb8489142011-05-04 09:27:52 -04004211 ftrace_trace_function = ftrace_ops_list_func;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004212 }
4213
4214 } else {
4215 /* stopping ftrace calls (just send to ftrace_stub) */
4216 ftrace_trace_function = ftrace_stub;
4217
4218 ftrace_shutdown_sysctl();
4219 }
4220
4221 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004222 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02004223 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02004224}
Ingo Molnarf17845e2008-10-24 12:47:10 +02004225
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004226#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004227
Steven Rostedt597af812009-04-03 15:24:12 -04004228static int ftrace_graph_active;
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004229static struct notifier_block ftrace_suspend_notifier;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004230
Steven Rostedte49dc192008-12-02 23:50:05 -05004231int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
4232{
4233 return 0;
4234}
4235
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004236/* The callbacks that hook a function */
4237trace_func_graph_ret_t ftrace_graph_return =
4238 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05004239trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004240
4241/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
4242static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
4243{
4244 int i;
4245 int ret = 0;
4246 unsigned long flags;
4247 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
4248 struct task_struct *g, *t;
4249
4250 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
4251 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
4252 * sizeof(struct ftrace_ret_stack),
4253 GFP_KERNEL);
4254 if (!ret_stack_list[i]) {
4255 start = 0;
4256 end = i;
4257 ret = -ENOMEM;
4258 goto free;
4259 }
4260 }
4261
4262 read_lock_irqsave(&tasklist_lock, flags);
4263 do_each_thread(g, t) {
4264 if (start == end) {
4265 ret = -EAGAIN;
4266 goto unlock;
4267 }
4268
4269 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01004270 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004271 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04004272 t->curr_ret_stack = -1;
4273 /* Make sure the tasks see the -1 first: */
4274 smp_wmb();
4275 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004276 }
4277 } while_each_thread(g, t);
4278
4279unlock:
4280 read_unlock_irqrestore(&tasklist_lock, flags);
4281free:
4282 for (i = start; i < end; i++)
4283 kfree(ret_stack_list[i]);
4284 return ret;
4285}
4286
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004287static void
Steven Rostedt38516ab2010-04-20 17:04:50 -04004288ftrace_graph_probe_sched_switch(void *ignore,
4289 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004290{
4291 unsigned long long timestamp;
4292 int index;
4293
Steven Rostedtbe6f1642009-03-24 11:06:24 -04004294 /*
4295 * Does the user want to count the time a function was asleep.
4296 * If so, do not update the time stamps.
4297 */
4298 if (trace_flags & TRACE_ITER_SLEEP_TIME)
4299 return;
4300
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004301 timestamp = trace_clock_local();
4302
4303 prev->ftrace_timestamp = timestamp;
4304
4305 /* only process tasks that we timestamped */
4306 if (!next->ftrace_timestamp)
4307 return;
4308
4309 /*
4310 * Update all the counters in next to make up for the
4311 * time next was sleeping.
4312 */
4313 timestamp -= next->ftrace_timestamp;
4314
4315 for (index = next->curr_ret_stack; index >= 0; index--)
4316 next->ret_stack[index].calltime += timestamp;
4317}
4318
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004319/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004320static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004321{
4322 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004323 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004324
4325 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
4326 sizeof(struct ftrace_ret_stack *),
4327 GFP_KERNEL);
4328
4329 if (!ret_stack_list)
4330 return -ENOMEM;
4331
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004332 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04004333 for_each_online_cpu(cpu) {
4334 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05004335 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04004336 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004337
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004338 do {
4339 ret = alloc_retstack_tasklist(ret_stack_list);
4340 } while (ret == -EAGAIN);
4341
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004342 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04004343 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004344 if (ret)
4345 pr_info("ftrace_graph: Couldn't activate tracepoint"
4346 " probe to kernel_sched_switch\n");
4347 }
4348
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004349 kfree(ret_stack_list);
4350 return ret;
4351}
4352
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004353/*
4354 * Hibernation protection.
4355 * The state of the current task is too much unstable during
4356 * suspend/restore to disk. We want to protect against that.
4357 */
4358static int
4359ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
4360 void *unused)
4361{
4362 switch (state) {
4363 case PM_HIBERNATION_PREPARE:
4364 pause_graph_tracing();
4365 break;
4366
4367 case PM_POST_HIBERNATION:
4368 unpause_graph_tracing();
4369 break;
4370 }
4371 return NOTIFY_DONE;
4372}
4373
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004374int register_ftrace_graph(trace_func_graph_ret_t retfunc,
4375 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004376{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004377 int ret = 0;
4378
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004379 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004380
Steven Rostedt05ce5812009-03-24 00:18:31 -04004381 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04004382 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04004383 ret = -EBUSY;
4384 goto out;
4385 }
4386
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004387 ftrace_suspend_notifier.notifier_call = ftrace_suspend_notifier_call;
4388 register_pm_notifier(&ftrace_suspend_notifier);
4389
Steven Rostedt597af812009-04-03 15:24:12 -04004390 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004391 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004392 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04004393 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004394 goto out;
4395 }
Steven Rostedte53a6312008-11-26 00:16:25 -05004396
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004397 ftrace_graph_return = retfunc;
4398 ftrace_graph_entry = entryfunc;
Steven Rostedte53a6312008-11-26 00:16:25 -05004399
Steven Rostedta1cd6172011-05-23 15:24:25 -04004400 ret = ftrace_startup(&global_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004401
4402out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004403 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004404 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004405}
4406
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004407void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004408{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004409 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004410
Steven Rostedt597af812009-04-03 15:24:12 -04004411 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04004412 goto out;
4413
Steven Rostedt597af812009-04-03 15:24:12 -04004414 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004415 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05004416 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedtbd69c302011-05-03 21:55:54 -04004417 ftrace_shutdown(&global_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004418 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04004419 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004420
Steven Rostedt2aad1b72009-03-30 11:11:28 -04004421 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004422 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004423}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004424
Steven Rostedt868baf02011-02-10 21:26:13 -05004425static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
4426
4427static void
4428graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
4429{
4430 atomic_set(&t->tracing_graph_pause, 0);
4431 atomic_set(&t->trace_overrun, 0);
4432 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004433 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05004434 smp_wmb();
4435 t->ret_stack = ret_stack;
4436}
4437
4438/*
4439 * Allocate a return stack for the idle task. May be the first
4440 * time through, or it may be done by CPU hotplug online.
4441 */
4442void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
4443{
4444 t->curr_ret_stack = -1;
4445 /*
4446 * The idle task has no parent, it either has its own
4447 * stack or no stack at all.
4448 */
4449 if (t->ret_stack)
4450 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
4451
4452 if (ftrace_graph_active) {
4453 struct ftrace_ret_stack *ret_stack;
4454
4455 ret_stack = per_cpu(idle_ret_stack, cpu);
4456 if (!ret_stack) {
4457 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
4458 * sizeof(struct ftrace_ret_stack),
4459 GFP_KERNEL);
4460 if (!ret_stack)
4461 return;
4462 per_cpu(idle_ret_stack, cpu) = ret_stack;
4463 }
4464 graph_init_task(t, ret_stack);
4465 }
4466}
4467
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004468/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004469void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004470{
Steven Rostedt84047e32009-06-02 16:51:55 -04004471 /* Make sure we do not use the parent ret_stack */
4472 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05004473 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04004474
Steven Rostedt597af812009-04-03 15:24:12 -04004475 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04004476 struct ftrace_ret_stack *ret_stack;
4477
4478 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004479 * sizeof(struct ftrace_ret_stack),
4480 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04004481 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004482 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05004483 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04004484 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004485}
4486
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004487void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004488{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01004489 struct ftrace_ret_stack *ret_stack = t->ret_stack;
4490
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004491 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01004492 /* NULL must become visible to IRQs before we free it: */
4493 barrier();
4494
4495 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004496}
Steven Rostedt14a866c2008-12-02 23:50:02 -05004497
4498void ftrace_graph_stop(void)
4499{
4500 ftrace_stop();
4501}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004502#endif