blob: 2e7218869fe981776ea8fc186f2e78448434c252 [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 Rostedt69128962008-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 Rostedt69128962008-10-23 09:33:03 -040045 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040046 ___r; \
47 })
Steven Rostedt69128962008-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 Rostedt69128962008-10-23 09:33:03 -040053 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040054 ___r; \
55 })
Steven Rostedt69128962008-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
Lai Jiangshane94142a2009-03-13 17:51:27 +0800980static struct dyn_ftrace *ftrace_new_addrs;
Steven Rostedt3d083392008-05-12 21:20:42 +0200981
Steven Rostedt41c52c02008-05-22 11:46:33 -0400982static DEFINE_MUTEX(ftrace_regex_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +0200983
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200984struct ftrace_page {
985 struct ftrace_page *next;
Steven Rostedta7900872011-12-16 16:23:44 -0500986 struct dyn_ftrace *records;
Steven Rostedt431aa3f2009-01-06 12:43:01 -0500987 int index;
Steven Rostedta7900872011-12-16 16:23:44 -0500988 int size;
David Milleraa5e5ce2008-05-13 22:06:56 -0700989};
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200990
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;
Lai Jiangshanee000b72009-03-24 13:38:06 +08001448 rec->newlist = ftrace_new_addrs;
Lai Jiangshane94142a2009-03-13 17:51:27 +08001449 ftrace_new_addrs = rec;
Steven Rostedt3d083392008-05-12 21:20:42 +02001450
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001451 return rec;
Steven Rostedt3d083392008-05-12 21:20:42 +02001452}
1453
Steven Rostedt05736a42008-09-22 14:55:47 -07001454static void print_ip_ins(const char *fmt, unsigned char *p)
1455{
1456 int i;
1457
1458 printk(KERN_CONT "%s", fmt);
1459
1460 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1461 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1462}
1463
Steven Rostedtc88fd862011-08-16 09:53:39 -04001464/**
1465 * ftrace_bug - report and shutdown function tracer
1466 * @failed: The failed type (EFAULT, EINVAL, EPERM)
1467 * @ip: The address that failed
1468 *
1469 * The arch code that enables or disables the function tracing
1470 * can call ftrace_bug() when it has detected a problem in
1471 * modifying the code. @failed should be one of either:
1472 * EFAULT - if the problem happens on reading the @ip address
1473 * EINVAL - if what is read at @ip is not what was expected
1474 * EPERM - if the problem happens on writting to the @ip address
1475 */
1476void ftrace_bug(int failed, unsigned long ip)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001477{
1478 switch (failed) {
1479 case -EFAULT:
1480 FTRACE_WARN_ON_ONCE(1);
1481 pr_info("ftrace faulted on modifying ");
1482 print_ip_sym(ip);
1483 break;
1484 case -EINVAL:
1485 FTRACE_WARN_ON_ONCE(1);
1486 pr_info("ftrace failed to modify ");
1487 print_ip_sym(ip);
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001488 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001489 printk(KERN_CONT "\n");
1490 break;
1491 case -EPERM:
1492 FTRACE_WARN_ON_ONCE(1);
1493 pr_info("ftrace faulted on writing ");
1494 print_ip_sym(ip);
1495 break;
1496 default:
1497 FTRACE_WARN_ON_ONCE(1);
1498 pr_info("ftrace faulted on unknown error ");
1499 print_ip_sym(ip);
1500 }
1501}
1502
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001503
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -05001504/* Return 1 if the address range is reserved for ftrace */
1505int ftrace_text_reserved(void *start, void *end)
1506{
1507 struct dyn_ftrace *rec;
1508 struct ftrace_page *pg;
1509
1510 do_for_each_ftrace_rec(pg, rec) {
1511 if (rec->ip <= (unsigned long)end &&
1512 rec->ip + MCOUNT_INSN_SIZE > (unsigned long)start)
1513 return 1;
1514 } while_for_each_ftrace_rec();
1515 return 0;
1516}
1517
Steven Rostedtc88fd862011-08-16 09:53:39 -04001518static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02001519{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001520 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01001521
Steven Rostedt982c3502008-11-15 16:31:41 -05001522 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001523 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05001524 *
Steven Rostedted926f92011-05-03 13:25:24 -04001525 * If the record has a ref count, then we need to enable it
1526 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05001527 *
Steven Rostedted926f92011-05-03 13:25:24 -04001528 * Otherwise we make sure its disabled.
1529 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001530 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04001531 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05001532 */
Steven Rostedtc88fd862011-08-16 09:53:39 -04001533 if (enable && (rec->flags & ~FTRACE_FL_MASK))
Steven Rostedted926f92011-05-03 13:25:24 -04001534 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02001535
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001536 /* If the state of this record hasn't changed, then do nothing */
1537 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001538 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001539
1540 if (flag) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04001541 if (update)
1542 rec->flags |= FTRACE_FL_ENABLED;
1543 return FTRACE_UPDATE_MAKE_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001544 }
1545
Steven Rostedtc88fd862011-08-16 09:53:39 -04001546 if (update)
1547 rec->flags &= ~FTRACE_FL_ENABLED;
1548
1549 return FTRACE_UPDATE_MAKE_NOP;
1550}
1551
1552/**
1553 * ftrace_update_record, set a record that now is tracing or not
1554 * @rec: the record to update
1555 * @enable: set to 1 if the record is tracing, zero to force disable
1556 *
1557 * The records that represent all functions that can be traced need
1558 * to be updated when tracing has been enabled.
1559 */
1560int ftrace_update_record(struct dyn_ftrace *rec, int enable)
1561{
1562 return ftrace_check_record(rec, enable, 1);
1563}
1564
1565/**
1566 * ftrace_test_record, check if the record has been enabled or not
1567 * @rec: the record to test
1568 * @enable: set to 1 to check if enabled, 0 if it is disabled
1569 *
1570 * The arch code may need to test if a record is already set to
1571 * tracing to determine how to modify the function code that it
1572 * represents.
1573 */
1574int ftrace_test_record(struct dyn_ftrace *rec, int enable)
1575{
1576 return ftrace_check_record(rec, enable, 0);
1577}
1578
1579static int
1580__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
1581{
1582 unsigned long ftrace_addr;
1583 int ret;
1584
1585 ftrace_addr = (unsigned long)FTRACE_ADDR;
1586
1587 ret = ftrace_update_record(rec, enable);
1588
1589 switch (ret) {
1590 case FTRACE_UPDATE_IGNORE:
1591 return 0;
1592
1593 case FTRACE_UPDATE_MAKE_CALL:
1594 return ftrace_make_call(rec, ftrace_addr);
1595
1596 case FTRACE_UPDATE_MAKE_NOP:
1597 return ftrace_make_nop(NULL, rec, ftrace_addr);
1598 }
1599
1600 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02001601}
1602
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001603static void ftrace_replace_code(int update)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001604{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001605 struct dyn_ftrace *rec;
1606 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05001607 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001608
Steven Rostedt45a4a232011-04-21 23:16:46 -04001609 if (unlikely(ftrace_disabled))
1610 return;
1611
Steven Rostedt265c8312009-02-13 12:43:56 -05001612 do_for_each_ftrace_rec(pg, rec) {
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001613 failed = __ftrace_replace_code(rec, update);
Zhaoleifa9d13c2009-03-13 17:16:34 +08001614 if (failed) {
Steven Rostedt3279ba32009-10-07 16:57:56 -04001615 ftrace_bug(failed, rec->ip);
1616 /* Stop processing */
1617 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05001618 }
1619 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001620}
1621
Steven Rostedtc88fd862011-08-16 09:53:39 -04001622struct ftrace_rec_iter {
1623 struct ftrace_page *pg;
1624 int index;
1625};
1626
1627/**
1628 * ftrace_rec_iter_start, start up iterating over traced functions
1629 *
1630 * Returns an iterator handle that is used to iterate over all
1631 * the records that represent address locations where functions
1632 * are traced.
1633 *
1634 * May return NULL if no records are available.
1635 */
1636struct ftrace_rec_iter *ftrace_rec_iter_start(void)
1637{
1638 /*
1639 * We only use a single iterator.
1640 * Protected by the ftrace_lock mutex.
1641 */
1642 static struct ftrace_rec_iter ftrace_rec_iter;
1643 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
1644
1645 iter->pg = ftrace_pages_start;
1646 iter->index = 0;
1647
1648 /* Could have empty pages */
1649 while (iter->pg && !iter->pg->index)
1650 iter->pg = iter->pg->next;
1651
1652 if (!iter->pg)
1653 return NULL;
1654
1655 return iter;
1656}
1657
1658/**
1659 * ftrace_rec_iter_next, get the next record to process.
1660 * @iter: The handle to the iterator.
1661 *
1662 * Returns the next iterator after the given iterator @iter.
1663 */
1664struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
1665{
1666 iter->index++;
1667
1668 if (iter->index >= iter->pg->index) {
1669 iter->pg = iter->pg->next;
1670 iter->index = 0;
1671
1672 /* Could have empty pages */
1673 while (iter->pg && !iter->pg->index)
1674 iter->pg = iter->pg->next;
1675 }
1676
1677 if (!iter->pg)
1678 return NULL;
1679
1680 return iter;
1681}
1682
1683/**
1684 * ftrace_rec_iter_record, get the record at the iterator location
1685 * @iter: The current iterator location
1686 *
1687 * Returns the record that the current @iter is at.
1688 */
1689struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
1690{
1691 return &iter->pg->records[iter->index];
1692}
1693
Abhishek Sagar492a7ea2008-05-25 00:10:04 +05301694static int
Steven Rostedt31e88902008-11-14 16:21:19 -08001695ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001696{
1697 unsigned long ip;
Steven Rostedt593eb8a2008-10-23 09:32:59 -04001698 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001699
1700 ip = rec->ip;
1701
Steven Rostedt45a4a232011-04-21 23:16:46 -04001702 if (unlikely(ftrace_disabled))
1703 return 0;
1704
Shaohua Li25aac9d2009-01-09 11:29:40 +08001705 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04001706 if (ret) {
Steven Rostedt31e88902008-11-14 16:21:19 -08001707 ftrace_bug(ret, ip);
Abhishek Sagar492a7ea2008-05-25 00:10:04 +05301708 return 0;
Steven Rostedt37ad5082008-05-12 21:20:48 +02001709 }
Abhishek Sagar492a7ea2008-05-25 00:10:04 +05301710 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001711}
1712
Steven Rostedt000ab692009-02-17 13:35:06 -05001713/*
1714 * archs can override this function if they must do something
1715 * before the modifying code is performed.
1716 */
1717int __weak ftrace_arch_code_modify_prepare(void)
1718{
1719 return 0;
1720}
1721
1722/*
1723 * archs can override this function if they must do something
1724 * after the modifying code is performed.
1725 */
1726int __weak ftrace_arch_code_modify_post_process(void)
1727{
1728 return 0;
1729}
1730
Ingo Molnare309b412008-05-12 21:20:51 +02001731static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02001732{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001733 int *command = data;
1734
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001735 if (*command & FTRACE_UPDATE_CALLS)
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001736 ftrace_replace_code(1);
Steven Rostedta3583242008-11-11 15:01:42 -05001737 else if (*command & FTRACE_DISABLE_CALLS)
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001738 ftrace_replace_code(0);
1739
1740 if (*command & FTRACE_UPDATE_TRACE_FUNC)
1741 ftrace_update_ftrace_func(ftrace_trace_function);
1742
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05001743 if (*command & FTRACE_START_FUNC_RET)
1744 ftrace_enable_ftrace_graph_caller();
1745 else if (*command & FTRACE_STOP_FUNC_RET)
1746 ftrace_disable_ftrace_graph_caller();
1747
Steven Rostedtc88fd862011-08-16 09:53:39 -04001748 return 0;
1749}
1750
1751/**
1752 * ftrace_run_stop_machine, go back to the stop machine method
1753 * @command: The command to tell ftrace what to do
1754 *
1755 * If an arch needs to fall back to the stop machine method, the
1756 * it can call this function.
1757 */
1758void ftrace_run_stop_machine(int command)
1759{
1760 stop_machine(__ftrace_modify_code, &command, NULL);
1761}
1762
1763/**
1764 * arch_ftrace_update_code, modify the code to trace or not trace
1765 * @command: The command that needs to be done
1766 *
1767 * Archs can override this function if it does not need to
1768 * run stop_machine() to modify code.
1769 */
1770void __weak arch_ftrace_update_code(int command)
1771{
1772 ftrace_run_stop_machine(command);
1773}
1774
1775static void ftrace_run_update_code(int command)
1776{
1777 int ret;
1778
1779 ret = ftrace_arch_code_modify_prepare();
1780 FTRACE_WARN_ON(ret);
1781 if (ret)
1782 return;
1783 /*
1784 * Do not call function tracer while we update the code.
1785 * We are in stop machine.
1786 */
1787 function_trace_stop++;
1788
1789 /*
1790 * By default we use stop_machine() to modify the code.
1791 * But archs can do what ever they want as long as it
1792 * is safe. The stop_machine() is the safest, but also
1793 * produces the most overhead.
1794 */
1795 arch_ftrace_update_code(command);
1796
Steven Rostedt6331c282011-07-13 15:11:02 -04001797#ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
1798 /*
1799 * For archs that call ftrace_test_stop_func(), we must
1800 * wait till after we update all the function callers
1801 * before we update the callback. This keeps different
1802 * ops that record different functions from corrupting
1803 * each other.
1804 */
1805 __ftrace_trace_function = __ftrace_trace_function_delay;
1806#endif
1807 function_trace_stop--;
1808
Steven Rostedt000ab692009-02-17 13:35:06 -05001809 ret = ftrace_arch_code_modify_post_process();
1810 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02001811}
1812
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001813static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001814static int ftrace_start_up;
Steven Rostedtb8489142011-05-04 09:27:52 -04001815static int global_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05001816
1817static void ftrace_startup_enable(int command)
1818{
1819 if (saved_ftrace_func != ftrace_trace_function) {
1820 saved_ftrace_func = ftrace_trace_function;
1821 command |= FTRACE_UPDATE_TRACE_FUNC;
1822 }
1823
1824 if (!command || !ftrace_enabled)
1825 return;
1826
1827 ftrace_run_update_code(command);
1828}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001829
Steven Rostedta1cd6172011-05-23 15:24:25 -04001830static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02001831{
Steven Rostedtb8489142011-05-04 09:27:52 -04001832 bool hash_enable = true;
1833
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001834 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04001835 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001836
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001837 ftrace_start_up++;
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001838 command |= FTRACE_UPDATE_CALLS;
Steven Rostedt3d083392008-05-12 21:20:42 +02001839
Steven Rostedtb8489142011-05-04 09:27:52 -04001840 /* ops marked global share the filter hashes */
1841 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
1842 ops = &global_ops;
1843 /* Don't update hash if global is already set */
1844 if (global_start_up)
1845 hash_enable = false;
1846 global_start_up++;
1847 }
1848
Steven Rostedted926f92011-05-03 13:25:24 -04001849 ops->flags |= FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04001850 if (hash_enable)
Steven Rostedted926f92011-05-03 13:25:24 -04001851 ftrace_hash_rec_enable(ops, 1);
1852
Steven Rostedtdf4fc312008-11-26 00:16:23 -05001853 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04001854
1855 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02001856}
1857
Steven Rostedtbd69c302011-05-03 21:55:54 -04001858static void ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02001859{
Steven Rostedtb8489142011-05-04 09:27:52 -04001860 bool hash_disable = true;
1861
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001862 if (unlikely(ftrace_disabled))
1863 return;
1864
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001865 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02001866 /*
1867 * Just warn in case of unbalance, no need to kill ftrace, it's not
1868 * critical but the ftrace_call callers may be never nopped again after
1869 * further ftrace uses.
1870 */
1871 WARN_ON_ONCE(ftrace_start_up < 0);
1872
Steven Rostedtb8489142011-05-04 09:27:52 -04001873 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
1874 ops = &global_ops;
1875 global_start_up--;
1876 WARN_ON_ONCE(global_start_up < 0);
1877 /* Don't update hash if global still has users */
1878 if (global_start_up) {
1879 WARN_ON_ONCE(!ftrace_start_up);
1880 hash_disable = false;
1881 }
1882 }
1883
1884 if (hash_disable)
Steven Rostedted926f92011-05-03 13:25:24 -04001885 ftrace_hash_rec_disable(ops, 1);
1886
Steven Rostedtb8489142011-05-04 09:27:52 -04001887 if (ops != &global_ops || !global_start_up)
Steven Rostedted926f92011-05-03 13:25:24 -04001888 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04001889
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001890 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001891
1892 if (saved_ftrace_func != ftrace_trace_function) {
1893 saved_ftrace_func = ftrace_trace_function;
1894 command |= FTRACE_UPDATE_TRACE_FUNC;
1895 }
1896
1897 if (!command || !ftrace_enabled)
Steven Rostedte6ea44e2009-02-14 01:42:44 -05001898 return;
Steven Rostedt3d083392008-05-12 21:20:42 +02001899
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001900 ftrace_run_update_code(command);
Steven Rostedt3d083392008-05-12 21:20:42 +02001901}
1902
Ingo Molnare309b412008-05-12 21:20:51 +02001903static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001904{
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001905 if (unlikely(ftrace_disabled))
1906 return;
1907
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001908 /* Force update next time */
1909 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001910 /* ftrace_start_up is true if we want ftrace running */
1911 if (ftrace_start_up)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001912 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001913}
1914
Ingo Molnare309b412008-05-12 21:20:51 +02001915static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001916{
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001917 if (unlikely(ftrace_disabled))
1918 return;
1919
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001920 /* ftrace_start_up is true if ftrace is running */
1921 if (ftrace_start_up)
Steven Rostedt79e406d2010-09-14 22:19:46 -04001922 ftrace_run_update_code(FTRACE_DISABLE_CALLS);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001923}
1924
Steven Rostedt3d083392008-05-12 21:20:42 +02001925static cycle_t ftrace_update_time;
1926static unsigned long ftrace_update_cnt;
1927unsigned long ftrace_update_tot_cnt;
1928
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04001929static int ops_traces_mod(struct ftrace_ops *ops)
1930{
1931 struct ftrace_hash *hash;
1932
1933 hash = ops->filter_hash;
1934 return !!(!hash || !hash->count);
1935}
1936
Steven Rostedt31e88902008-11-14 16:21:19 -08001937static int ftrace_update_code(struct module *mod)
Steven Rostedt3d083392008-05-12 21:20:42 +02001938{
Lai Jiangshane94142a2009-03-13 17:51:27 +08001939 struct dyn_ftrace *p;
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05301940 cycle_t start, stop;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04001941 unsigned long ref = 0;
1942
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
Lai Jiangshane94142a2009-03-13 17:51:27 +08001963 while (ftrace_new_addrs) {
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05301964
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001965 /* If something went wrong, bail without enabling anything */
1966 if (unlikely(ftrace_disabled))
1967 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02001968
Lai Jiangshane94142a2009-03-13 17:51:27 +08001969 p = ftrace_new_addrs;
Lai Jiangshanee000b72009-03-24 13:38:06 +08001970 ftrace_new_addrs = p->newlist;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04001971 p->flags = ref;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05301972
Jiri Olsa5cb084b2009-10-13 16:33:53 -04001973 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001974 * Do the initial record conversion from mcount jump
Jiri Olsa5cb084b2009-10-13 16:33:53 -04001975 * to the NOP instructions.
1976 */
Steven Rostedt32082302011-12-16 14:42:37 -05001977 if (!ftrace_code_disable(mod, p))
Steven Rostedtd2c8c3e2011-04-25 14:32:42 -04001978 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04001979
Jiri Olsa5cb084b2009-10-13 16:33:53 -04001980 ftrace_update_cnt++;
1981
1982 /*
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 */
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04001991 if (ftrace_start_up && ref) {
Jiri Olsa5cb084b2009-10-13 16:33:53 -04001992 int failed = __ftrace_replace_code(p, 1);
Steven Rostedt32082302011-12-16 14:42:37 -05001993 if (failed)
Jiri Olsa5cb084b2009-10-13 16:33:53 -04001994 ftrace_bug(failed, p->ip);
Jiri Olsa5cb084b2009-10-13 16:33:53 -04001995 }
Steven Rostedt3d083392008-05-12 21:20:42 +02001996 }
1997
Ingo Molnar750ed1a2008-05-12 21:20:46 +02001998 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02001999 ftrace_update_time = stop - start;
2000 ftrace_update_tot_cnt += ftrace_update_cnt;
2001
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02002002 return 0;
2003}
2004
Steven Rostedta7900872011-12-16 16:23:44 -05002005static int ftrace_allocate_records(struct ftrace_page *pg, int count)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002006{
Steven Rostedta7900872011-12-16 16:23:44 -05002007 int order;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002008 int cnt;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002009
Steven Rostedta7900872011-12-16 16:23:44 -05002010 if (WARN_ON(!count))
2011 return -EINVAL;
2012
2013 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002014
2015 /*
Steven Rostedta7900872011-12-16 16:23:44 -05002016 * We want to fill as much as possible. No more than a page
2017 * may be empty.
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002018 */
Steven Rostedta7900872011-12-16 16:23:44 -05002019 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2020 order--;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002021
Steven Rostedta7900872011-12-16 16:23:44 -05002022 again:
2023 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
2024
2025 if (!pg->records) {
2026 /* if we can't allocate this size, try something smaller */
2027 if (!order)
2028 return -ENOMEM;
2029 order >>= 1;
2030 goto again;
2031 }
2032
2033 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
2034 pg->size = cnt;
2035
2036 if (cnt > count)
2037 cnt = count;
2038
2039 return cnt;
2040}
2041
2042static struct ftrace_page *
2043ftrace_allocate_pages(unsigned long num_to_init)
2044{
2045 struct ftrace_page *start_pg;
2046 struct ftrace_page *pg;
2047 int order;
2048 int cnt;
2049
2050 if (!num_to_init)
2051 return 0;
2052
2053 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
2054 if (!pg)
2055 return NULL;
2056
2057 /*
2058 * Try to allocate as much as possible in one continues
2059 * location that fills in all of the space. We want to
2060 * waste as little space as possible.
2061 */
2062 for (;;) {
2063 cnt = ftrace_allocate_records(pg, num_to_init);
2064 if (cnt < 0)
2065 goto free_pages;
2066
2067 num_to_init -= cnt;
2068 if (!num_to_init)
2069 break;
2070
2071 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
2072 if (!pg->next)
2073 goto free_pages;
2074
2075 pg = pg->next;
2076 }
2077
2078 return start_pg;
2079
2080 free_pages:
2081 while (start_pg) {
2082 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
2083 free_pages((unsigned long)pg->records, order);
2084 start_pg = pg->next;
2085 kfree(pg);
2086 pg = start_pg;
2087 }
2088 pr_info("ftrace: FAILED to allocate memory for functions\n");
2089 return NULL;
2090}
2091
2092static int __init ftrace_dyn_table_alloc(unsigned long num_to_init)
2093{
2094 int cnt;
2095
2096 if (!num_to_init) {
2097 pr_info("ftrace: No functions to be traced?\n");
2098 return -1;
2099 }
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002100
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002101 cnt = num_to_init / ENTRIES_PER_PAGE;
Steven Rostedt08f5ac902008-10-23 09:33:07 -04002102 pr_info("ftrace: allocating %ld entries in %d pages\n",
walimis5821e1b2008-11-15 15:19:06 +08002103 num_to_init, cnt + 1);
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002104
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002105 return 0;
2106}
2107
Steven Rostedt5072c592008-05-12 21:20:43 +02002108enum {
2109 FTRACE_ITER_FILTER = (1 << 0),
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002110 FTRACE_ITER_NOTRACE = (1 << 1),
Steven Rostedt3499e462011-04-21 22:59:12 -04002111 FTRACE_ITER_PRINTALL = (1 << 2),
2112 FTRACE_ITER_HASH = (1 << 3),
Steven Rostedt647bcd02011-05-03 14:39:21 -04002113 FTRACE_ITER_ENABLED = (1 << 4),
Steven Rostedt5072c592008-05-12 21:20:43 +02002114};
2115
2116#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
2117
2118struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002119 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002120 loff_t func_pos;
2121 struct ftrace_page *pg;
2122 struct dyn_ftrace *func;
2123 struct ftrace_func_probe *probe;
2124 struct trace_parser parser;
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002125 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002126 struct ftrace_ops *ops;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002127 int hidx;
2128 int idx;
2129 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02002130};
2131
Ingo Molnare309b412008-05-12 21:20:51 +02002132static void *
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002133t_hash_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002134{
2135 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002136 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002137 struct hlist_head *hhd;
2138
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002139 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002140 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002141
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002142 if (iter->probe)
2143 hnd = &iter->probe->node;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002144 retry:
2145 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
2146 return NULL;
2147
2148 hhd = &ftrace_func_hash[iter->hidx];
2149
2150 if (hlist_empty(hhd)) {
2151 iter->hidx++;
2152 hnd = NULL;
2153 goto retry;
2154 }
2155
2156 if (!hnd)
2157 hnd = hhd->first;
2158 else {
2159 hnd = hnd->next;
2160 if (!hnd) {
2161 iter->hidx++;
2162 goto retry;
2163 }
2164 }
2165
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002166 if (WARN_ON_ONCE(!hnd))
2167 return NULL;
2168
2169 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
2170
2171 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002172}
2173
2174static void *t_hash_start(struct seq_file *m, loff_t *pos)
2175{
2176 struct ftrace_iterator *iter = m->private;
2177 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08002178 loff_t l;
2179
Steven Rostedt2bccfff2010-09-09 08:43:22 -04002180 if (iter->func_pos > *pos)
2181 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002182
Li Zefand82d6242009-06-24 09:54:54 +08002183 iter->hidx = 0;
Steven Rostedt2bccfff2010-09-09 08:43:22 -04002184 for (l = 0; l <= (*pos - iter->func_pos); ) {
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002185 p = t_hash_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08002186 if (!p)
2187 break;
2188 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002189 if (!p)
2190 return NULL;
2191
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002192 /* Only set this if we have an item */
2193 iter->flags |= FTRACE_ITER_HASH;
2194
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002195 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002196}
2197
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002198static int
2199t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002200{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002201 struct ftrace_func_probe *rec;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002202
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002203 rec = iter->probe;
2204 if (WARN_ON_ONCE(!rec))
2205 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002206
Steven Rostedt809dcf22009-02-16 23:06:01 -05002207 if (rec->ops->print)
2208 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
2209
Steven Rostedtb375a112009-09-17 00:05:58 -04002210 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002211
2212 if (rec->data)
2213 seq_printf(m, ":%p", rec->data);
2214 seq_putc(m, '\n');
2215
2216 return 0;
2217}
2218
2219static void *
Steven Rostedt5072c592008-05-12 21:20:43 +02002220t_next(struct seq_file *m, void *v, loff_t *pos)
2221{
2222 struct ftrace_iterator *iter = m->private;
Steven Rostedtf45948e2011-05-02 12:29:25 -04002223 struct ftrace_ops *ops = &global_ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02002224 struct dyn_ftrace *rec = NULL;
2225
Steven Rostedt45a4a232011-04-21 23:16:46 -04002226 if (unlikely(ftrace_disabled))
2227 return NULL;
2228
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002229 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002230 return t_hash_next(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002231
Steven Rostedt5072c592008-05-12 21:20:43 +02002232 (*pos)++;
Jiri Olsa1106b692011-02-16 17:35:34 +01002233 iter->pos = iter->func_pos = *pos;
Steven Rostedt5072c592008-05-12 21:20:43 +02002234
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002235 if (iter->flags & FTRACE_ITER_PRINTALL)
Steven Rostedt57c072c2010-09-14 11:21:11 -04002236 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002237
Steven Rostedt5072c592008-05-12 21:20:43 +02002238 retry:
2239 if (iter->idx >= iter->pg->index) {
2240 if (iter->pg->next) {
2241 iter->pg = iter->pg->next;
2242 iter->idx = 0;
2243 goto retry;
2244 }
2245 } else {
2246 rec = &iter->pg->records[iter->idx++];
Steven Rostedt32082302011-12-16 14:42:37 -05002247 if (((iter->flags & FTRACE_ITER_FILTER) &&
Steven Rostedtf45948e2011-05-02 12:29:25 -04002248 !(ftrace_lookup_ip(ops->filter_hash, rec->ip))) ||
Steven Rostedt0183fb12008-11-07 22:36:02 -05002249
Steven Rostedt41c52c02008-05-22 11:46:33 -04002250 ((iter->flags & FTRACE_ITER_NOTRACE) &&
Steven Rostedt647bcd02011-05-03 14:39:21 -04002251 !ftrace_lookup_ip(ops->notrace_hash, rec->ip)) ||
2252
2253 ((iter->flags & FTRACE_ITER_ENABLED) &&
2254 !(rec->flags & ~FTRACE_FL_MASK))) {
2255
Steven Rostedt5072c592008-05-12 21:20:43 +02002256 rec = NULL;
2257 goto retry;
2258 }
2259 }
2260
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002261 if (!rec)
Steven Rostedt57c072c2010-09-14 11:21:11 -04002262 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002263
2264 iter->func = rec;
2265
2266 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02002267}
2268
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002269static void reset_iter_read(struct ftrace_iterator *iter)
2270{
2271 iter->pos = 0;
2272 iter->func_pos = 0;
2273 iter->flags &= ~(FTRACE_ITER_PRINTALL & FTRACE_ITER_HASH);
Steven Rostedt5072c592008-05-12 21:20:43 +02002274}
2275
2276static void *t_start(struct seq_file *m, loff_t *pos)
2277{
2278 struct ftrace_iterator *iter = m->private;
Steven Rostedtf45948e2011-05-02 12:29:25 -04002279 struct ftrace_ops *ops = &global_ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02002280 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08002281 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02002282
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002283 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04002284
2285 if (unlikely(ftrace_disabled))
2286 return NULL;
2287
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002288 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002289 * If an lseek was done, then reset and start from beginning.
2290 */
2291 if (*pos < iter->pos)
2292 reset_iter_read(iter);
2293
2294 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002295 * For set_ftrace_filter reading, if we have the filter
2296 * off, we can short cut and just print out that all
2297 * functions are enabled.
2298 */
Steven Rostedtf45948e2011-05-02 12:29:25 -04002299 if (iter->flags & FTRACE_ITER_FILTER && !ops->filter_hash->count) {
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002300 if (*pos > 0)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002301 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002302 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07002303 /* reset in case of seek/pread */
2304 iter->flags &= ~FTRACE_ITER_HASH;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002305 return iter;
2306 }
2307
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002308 if (iter->flags & FTRACE_ITER_HASH)
2309 return t_hash_start(m, pos);
2310
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002311 /*
2312 * Unfortunately, we need to restart at ftrace_pages_start
2313 * every time we let go of the ftrace_mutex. This is because
2314 * those pointers can change without the lock.
2315 */
Li Zefan694ce0a2009-06-24 09:54:19 +08002316 iter->pg = ftrace_pages_start;
2317 iter->idx = 0;
2318 for (l = 0; l <= *pos; ) {
2319 p = t_next(m, p, &l);
2320 if (!p)
2321 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08002322 }
walimis5821e1b2008-11-15 15:19:06 +08002323
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002324 if (!p) {
2325 if (iter->flags & FTRACE_ITER_FILTER)
2326 return t_hash_start(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002327
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002328 return NULL;
2329 }
2330
2331 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02002332}
2333
2334static void t_stop(struct seq_file *m, void *p)
2335{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002336 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002337}
2338
2339static int t_show(struct seq_file *m, void *v)
2340{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002341 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002342 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02002343
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002344 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002345 return t_hash_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002346
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002347 if (iter->flags & FTRACE_ITER_PRINTALL) {
2348 seq_printf(m, "#### all functions enabled ####\n");
2349 return 0;
2350 }
2351
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002352 rec = iter->func;
2353
Steven Rostedt5072c592008-05-12 21:20:43 +02002354 if (!rec)
2355 return 0;
2356
Steven Rostedt647bcd02011-05-03 14:39:21 -04002357 seq_printf(m, "%ps", (void *)rec->ip);
2358 if (iter->flags & FTRACE_ITER_ENABLED)
2359 seq_printf(m, " (%ld)",
2360 rec->flags & ~FTRACE_FL_MASK);
2361 seq_printf(m, "\n");
Steven Rostedt5072c592008-05-12 21:20:43 +02002362
2363 return 0;
2364}
2365
James Morris88e9d342009-09-22 16:43:43 -07002366static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02002367 .start = t_start,
2368 .next = t_next,
2369 .stop = t_stop,
2370 .show = t_show,
2371};
2372
Ingo Molnare309b412008-05-12 21:20:51 +02002373static int
Steven Rostedt5072c592008-05-12 21:20:43 +02002374ftrace_avail_open(struct inode *inode, struct file *file)
2375{
2376 struct ftrace_iterator *iter;
2377 int ret;
2378
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002379 if (unlikely(ftrace_disabled))
2380 return -ENODEV;
2381
Steven Rostedt5072c592008-05-12 21:20:43 +02002382 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2383 if (!iter)
2384 return -ENOMEM;
2385
2386 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02002387
2388 ret = seq_open(file, &show_ftrace_seq_ops);
2389 if (!ret) {
2390 struct seq_file *m = file->private_data;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002391
Steven Rostedt5072c592008-05-12 21:20:43 +02002392 m->private = iter;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002393 } else {
Steven Rostedt5072c592008-05-12 21:20:43 +02002394 kfree(iter);
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002395 }
Steven Rostedt5072c592008-05-12 21:20:43 +02002396
2397 return ret;
2398}
2399
Steven Rostedt647bcd02011-05-03 14:39:21 -04002400static int
2401ftrace_enabled_open(struct inode *inode, struct file *file)
2402{
2403 struct ftrace_iterator *iter;
2404 int ret;
2405
2406 if (unlikely(ftrace_disabled))
2407 return -ENODEV;
2408
2409 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2410 if (!iter)
2411 return -ENOMEM;
2412
2413 iter->pg = ftrace_pages_start;
2414 iter->flags = FTRACE_ITER_ENABLED;
2415
2416 ret = seq_open(file, &show_ftrace_seq_ops);
2417 if (!ret) {
2418 struct seq_file *m = file->private_data;
2419
2420 m->private = iter;
2421 } else {
2422 kfree(iter);
2423 }
2424
2425 return ret;
2426}
2427
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002428static void ftrace_filter_reset(struct ftrace_hash *hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02002429{
Steven Rostedt52baf112009-02-14 01:15:39 -05002430 mutex_lock(&ftrace_lock);
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002431 ftrace_hash_clear(hash);
Steven Rostedt52baf112009-02-14 01:15:39 -05002432 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002433}
2434
Ingo Molnare309b412008-05-12 21:20:51 +02002435static int
Steven Rostedtf45948e2011-05-02 12:29:25 -04002436ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002437 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02002438{
2439 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04002440 struct ftrace_hash *hash;
Steven Rostedt5072c592008-05-12 21:20:43 +02002441 int ret = 0;
2442
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002443 if (unlikely(ftrace_disabled))
2444 return -ENODEV;
2445
Steven Rostedt5072c592008-05-12 21:20:43 +02002446 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2447 if (!iter)
2448 return -ENOMEM;
2449
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002450 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
2451 kfree(iter);
2452 return -ENOMEM;
2453 }
2454
Steven Rostedtf45948e2011-05-02 12:29:25 -04002455 if (flag & FTRACE_ITER_NOTRACE)
2456 hash = ops->notrace_hash;
2457 else
2458 hash = ops->filter_hash;
2459
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002460 iter->ops = ops;
2461 iter->flags = flag;
2462
2463 if (file->f_mode & FMODE_WRITE) {
2464 mutex_lock(&ftrace_lock);
2465 iter->hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, hash);
2466 mutex_unlock(&ftrace_lock);
2467
2468 if (!iter->hash) {
2469 trace_parser_put(&iter->parser);
2470 kfree(iter);
2471 return -ENOMEM;
2472 }
2473 }
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002474
Steven Rostedt41c52c02008-05-22 11:46:33 -04002475 mutex_lock(&ftrace_regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002476
Steven Rostedt5072c592008-05-12 21:20:43 +02002477 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04002478 (file->f_flags & O_TRUNC))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002479 ftrace_filter_reset(iter->hash);
Steven Rostedt5072c592008-05-12 21:20:43 +02002480
2481 if (file->f_mode & FMODE_READ) {
2482 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02002483
2484 ret = seq_open(file, &show_ftrace_seq_ops);
2485 if (!ret) {
2486 struct seq_file *m = file->private_data;
2487 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08002488 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002489 /* Failed */
2490 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08002491 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02002492 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08002493 }
Steven Rostedt5072c592008-05-12 21:20:43 +02002494 } else
2495 file->private_data = iter;
Steven Rostedt41c52c02008-05-22 11:46:33 -04002496 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002497
2498 return ret;
2499}
2500
Steven Rostedt41c52c02008-05-22 11:46:33 -04002501static int
2502ftrace_filter_open(struct inode *inode, struct file *file)
2503{
Steven Rostedtf45948e2011-05-02 12:29:25 -04002504 return ftrace_regex_open(&global_ops, FTRACE_ITER_FILTER,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002505 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04002506}
2507
2508static int
2509ftrace_notrace_open(struct inode *inode, struct file *file)
2510{
Steven Rostedtf45948e2011-05-02 12:29:25 -04002511 return ftrace_regex_open(&global_ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002512 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04002513}
2514
Ingo Molnare309b412008-05-12 21:20:51 +02002515static loff_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04002516ftrace_regex_lseek(struct file *file, loff_t offset, int origin)
Steven Rostedt5072c592008-05-12 21:20:43 +02002517{
2518 loff_t ret;
2519
2520 if (file->f_mode & FMODE_READ)
2521 ret = seq_lseek(file, offset, origin);
2522 else
2523 file->f_pos = ret = 1;
2524
2525 return ret;
2526}
2527
Steven Rostedt64e7c442009-02-13 17:08:48 -05002528static int ftrace_match(char *str, char *regex, int len, int type)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002529{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002530 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08002531 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002532
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002533 switch (type) {
2534 case MATCH_FULL:
2535 if (strcmp(str, regex) == 0)
2536 matched = 1;
2537 break;
2538 case MATCH_FRONT_ONLY:
2539 if (strncmp(str, regex, len) == 0)
2540 matched = 1;
2541 break;
2542 case MATCH_MIDDLE_ONLY:
2543 if (strstr(str, regex))
2544 matched = 1;
2545 break;
2546 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08002547 slen = strlen(str);
2548 if (slen >= len && memcmp(str + slen - len, regex, len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002549 matched = 1;
2550 break;
2551 }
2552
2553 return matched;
2554}
2555
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002556static int
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002557enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int not)
Steven Rostedt996e87b2011-04-26 16:11:03 -04002558{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002559 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002560 int ret = 0;
2561
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002562 entry = ftrace_lookup_ip(hash, rec->ip);
2563 if (not) {
2564 /* Do nothing if it doesn't exist */
2565 if (!entry)
2566 return 0;
2567
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002568 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002569 } else {
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002570 /* Do nothing if it exists */
2571 if (entry)
2572 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002573
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002574 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002575 }
2576 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04002577}
2578
Steven Rostedt64e7c442009-02-13 17:08:48 -05002579static int
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002580ftrace_match_record(struct dyn_ftrace *rec, char *mod,
2581 char *regex, int len, int type)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002582{
2583 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002584 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05002585
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002586 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
2587
2588 if (mod) {
2589 /* module lookup requires matching the module */
2590 if (!modname || strcmp(modname, mod))
2591 return 0;
2592
2593 /* blank search means to match all funcs in the mod */
2594 if (!len)
2595 return 1;
2596 }
2597
Steven Rostedt64e7c442009-02-13 17:08:48 -05002598 return ftrace_match(str, regex, len, type);
2599}
2600
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002601static int
2602match_records(struct ftrace_hash *hash, char *buff,
2603 int len, char *mod, int not)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002604{
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002605 unsigned search_len = 0;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002606 struct ftrace_page *pg;
2607 struct dyn_ftrace *rec;
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002608 int type = MATCH_FULL;
2609 char *search = buff;
Li Zefan311d16d2009-12-08 11:15:11 +08002610 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002611 int ret;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002612
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002613 if (len) {
2614 type = filter_parse_regex(buff, len, &search, &not);
2615 search_len = strlen(search);
2616 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002617
Steven Rostedt52baf112009-02-14 01:15:39 -05002618 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002619
2620 if (unlikely(ftrace_disabled))
2621 goto out_unlock;
2622
Steven Rostedt265c8312009-02-13 12:43:56 -05002623 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002624 if (ftrace_match_record(rec, mod, search, search_len, type)) {
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002625 ret = enter_record(hash, rec, not);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002626 if (ret < 0) {
2627 found = ret;
2628 goto out_unlock;
2629 }
Li Zefan311d16d2009-12-08 11:15:11 +08002630 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05002631 }
2632 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002633 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05002634 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08002635
2636 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02002637}
2638
Steven Rostedt64e7c442009-02-13 17:08:48 -05002639static int
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002640ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002641{
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002642 return match_records(hash, buff, len, NULL, 0);
Steven Rostedt64e7c442009-02-13 17:08:48 -05002643}
2644
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002645static int
2646ftrace_match_module_records(struct ftrace_hash *hash, char *buff, char *mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002647{
Steven Rostedt64e7c442009-02-13 17:08:48 -05002648 int not = 0;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002649
Steven Rostedt64e7c442009-02-13 17:08:48 -05002650 /* blank or '*' mean the same */
2651 if (strcmp(buff, "*") == 0)
2652 buff[0] = 0;
2653
2654 /* handle the case of 'dont filter this module' */
2655 if (strcmp(buff, "!") == 0 || strcmp(buff, "!*") == 0) {
2656 buff[0] = 0;
2657 not = 1;
2658 }
2659
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002660 return match_records(hash, buff, strlen(buff), mod, not);
Steven Rostedt64e7c442009-02-13 17:08:48 -05002661}
2662
Steven Rostedtf6180772009-02-14 00:40:25 -05002663/*
2664 * We register the module command as a template to show others how
2665 * to register the a command as well.
2666 */
2667
2668static int
Steven Rostedt43dd61c2011-07-07 11:09:22 -04002669ftrace_mod_callback(struct ftrace_hash *hash,
2670 char *func, char *cmd, char *param, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05002671{
2672 char *mod;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002673 int ret = -EINVAL;
Steven Rostedtf6180772009-02-14 00:40:25 -05002674
2675 /*
2676 * cmd == 'mod' because we only registered this func
2677 * for the 'mod' ftrace_func_command.
2678 * But if you register one func with multiple commands,
2679 * you can tell which command was used by the cmd
2680 * parameter.
2681 */
2682
2683 /* we must have a module name */
2684 if (!param)
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002685 return ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05002686
2687 mod = strsep(&param, ":");
2688 if (!strlen(mod))
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002689 return ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05002690
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002691 ret = ftrace_match_module_records(hash, func, mod);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002692 if (!ret)
2693 ret = -EINVAL;
2694 if (ret < 0)
2695 return ret;
2696
2697 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05002698}
2699
2700static struct ftrace_func_command ftrace_mod_cmd = {
2701 .name = "mod",
2702 .func = ftrace_mod_callback,
2703};
2704
2705static int __init ftrace_mod_cmd_init(void)
2706{
2707 return register_ftrace_command(&ftrace_mod_cmd);
2708}
2709device_initcall(ftrace_mod_cmd_init);
2710
Steven Rostedt59df055f2009-02-14 15:29:06 -05002711static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002712function_trace_probe_call(unsigned long ip, unsigned long parent_ip)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002713{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002714 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002715 struct hlist_head *hhd;
2716 struct hlist_node *n;
2717 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002718
2719 key = hash_long(ip, FTRACE_HASH_BITS);
2720
2721 hhd = &ftrace_func_hash[key];
2722
2723 if (hlist_empty(hhd))
2724 return;
2725
2726 /*
2727 * Disable preemption for these calls to prevent a RCU grace
2728 * period. This syncs the hash iteration and freeing of items
2729 * on the hash. rcu_read_lock is too dangerous here.
2730 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04002731 preempt_disable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002732 hlist_for_each_entry_rcu(entry, n, hhd, node) {
2733 if (entry->ip == ip)
2734 entry->ops->func(ip, parent_ip, &entry->data);
2735 }
Steven Rostedt5168ae52010-06-03 09:36:50 -04002736 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002737}
2738
Steven Rostedtb6887d72009-02-17 12:32:04 -05002739static struct ftrace_ops trace_probe_ops __read_mostly =
Steven Rostedt59df055f2009-02-14 15:29:06 -05002740{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04002741 .func = function_trace_probe_call,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002742};
2743
Steven Rostedtb6887d72009-02-17 12:32:04 -05002744static int ftrace_probe_registered;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002745
Steven Rostedtb6887d72009-02-17 12:32:04 -05002746static void __enable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002747{
Steven Rostedtb8489142011-05-04 09:27:52 -04002748 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002749 int i;
2750
Steven Rostedtb6887d72009-02-17 12:32:04 -05002751 if (ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002752 return;
2753
2754 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2755 struct hlist_head *hhd = &ftrace_func_hash[i];
2756 if (hhd->first)
2757 break;
2758 }
2759 /* Nothing registered? */
2760 if (i == FTRACE_FUNC_HASHSIZE)
2761 return;
2762
Steven Rostedtb8489142011-05-04 09:27:52 -04002763 ret = __register_ftrace_function(&trace_probe_ops);
2764 if (!ret)
Steven Rostedta1cd6172011-05-23 15:24:25 -04002765 ret = ftrace_startup(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04002766
Steven Rostedtb6887d72009-02-17 12:32:04 -05002767 ftrace_probe_registered = 1;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002768}
2769
Steven Rostedtb6887d72009-02-17 12:32:04 -05002770static void __disable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002771{
Steven Rostedtb8489142011-05-04 09:27:52 -04002772 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002773 int i;
2774
Steven Rostedtb6887d72009-02-17 12:32:04 -05002775 if (!ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002776 return;
2777
2778 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2779 struct hlist_head *hhd = &ftrace_func_hash[i];
2780 if (hhd->first)
2781 return;
2782 }
2783
2784 /* no more funcs left */
Steven Rostedtb8489142011-05-04 09:27:52 -04002785 ret = __unregister_ftrace_function(&trace_probe_ops);
2786 if (!ret)
2787 ftrace_shutdown(&trace_probe_ops, 0);
2788
Steven Rostedtb6887d72009-02-17 12:32:04 -05002789 ftrace_probe_registered = 0;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002790}
2791
2792
2793static void ftrace_free_entry_rcu(struct rcu_head *rhp)
2794{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002795 struct ftrace_func_probe *entry =
2796 container_of(rhp, struct ftrace_func_probe, rcu);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002797
2798 if (entry->ops->free)
2799 entry->ops->free(&entry->data);
2800 kfree(entry);
2801}
2802
2803
2804int
Steven Rostedtb6887d72009-02-17 12:32:04 -05002805register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002806 void *data)
2807{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002808 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002809 struct ftrace_page *pg;
2810 struct dyn_ftrace *rec;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002811 int type, len, not;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002812 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002813 int count = 0;
2814 char *search;
2815
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02002816 type = filter_parse_regex(glob, strlen(glob), &search, &not);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002817 len = strlen(search);
2818
Steven Rostedtb6887d72009-02-17 12:32:04 -05002819 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05002820 if (WARN_ON(not))
2821 return -EINVAL;
2822
2823 mutex_lock(&ftrace_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002824
Steven Rostedt45a4a232011-04-21 23:16:46 -04002825 if (unlikely(ftrace_disabled))
2826 goto out_unlock;
2827
Steven Rostedt59df055f2009-02-14 15:29:06 -05002828 do_for_each_ftrace_rec(pg, rec) {
2829
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002830 if (!ftrace_match_record(rec, NULL, search, len, type))
Steven Rostedt59df055f2009-02-14 15:29:06 -05002831 continue;
2832
2833 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
2834 if (!entry) {
Steven Rostedtb6887d72009-02-17 12:32:04 -05002835 /* If we did not process any, then return error */
Steven Rostedt59df055f2009-02-14 15:29:06 -05002836 if (!count)
2837 count = -ENOMEM;
2838 goto out_unlock;
2839 }
2840
2841 count++;
2842
2843 entry->data = data;
2844
2845 /*
2846 * The caller might want to do something special
2847 * for each function we find. We call the callback
2848 * to give the caller an opportunity to do so.
2849 */
2850 if (ops->callback) {
2851 if (ops->callback(rec->ip, &entry->data) < 0) {
2852 /* caller does not like this func */
2853 kfree(entry);
2854 continue;
2855 }
2856 }
2857
2858 entry->ops = ops;
2859 entry->ip = rec->ip;
2860
2861 key = hash_long(entry->ip, FTRACE_HASH_BITS);
2862 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
2863
2864 } while_for_each_ftrace_rec();
Steven Rostedtb6887d72009-02-17 12:32:04 -05002865 __enable_ftrace_function_probe();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002866
2867 out_unlock:
2868 mutex_unlock(&ftrace_lock);
2869
2870 return count;
2871}
2872
2873enum {
Steven Rostedtb6887d72009-02-17 12:32:04 -05002874 PROBE_TEST_FUNC = 1,
2875 PROBE_TEST_DATA = 2
Steven Rostedt59df055f2009-02-14 15:29:06 -05002876};
2877
2878static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002879__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002880 void *data, int flags)
2881{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002882 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002883 struct hlist_node *n, *tmp;
2884 char str[KSYM_SYMBOL_LEN];
2885 int type = MATCH_FULL;
2886 int i, len = 0;
2887 char *search;
2888
Atsushi Tsujib36461d2009-09-15 19:06:30 +09002889 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
Steven Rostedt59df055f2009-02-14 15:29:06 -05002890 glob = NULL;
Atsushi Tsujib36461d2009-09-15 19:06:30 +09002891 else if (glob) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05002892 int not;
2893
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02002894 type = filter_parse_regex(glob, strlen(glob), &search, &not);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002895 len = strlen(search);
2896
Steven Rostedtb6887d72009-02-17 12:32:04 -05002897 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05002898 if (WARN_ON(not))
2899 return;
2900 }
2901
2902 mutex_lock(&ftrace_lock);
2903 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2904 struct hlist_head *hhd = &ftrace_func_hash[i];
2905
2906 hlist_for_each_entry_safe(entry, n, tmp, hhd, node) {
2907
2908 /* break up if statements for readability */
Steven Rostedtb6887d72009-02-17 12:32:04 -05002909 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002910 continue;
2911
Steven Rostedtb6887d72009-02-17 12:32:04 -05002912 if ((flags & PROBE_TEST_DATA) && entry->data != data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002913 continue;
2914
2915 /* do this last, since it is the most expensive */
2916 if (glob) {
2917 kallsyms_lookup(entry->ip, NULL, NULL,
2918 NULL, str);
2919 if (!ftrace_match(str, glob, len, type))
2920 continue;
2921 }
2922
2923 hlist_del(&entry->node);
2924 call_rcu(&entry->rcu, ftrace_free_entry_rcu);
2925 }
2926 }
Steven Rostedtb6887d72009-02-17 12:32:04 -05002927 __disable_ftrace_function_probe();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002928 mutex_unlock(&ftrace_lock);
2929}
2930
2931void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002932unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002933 void *data)
2934{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002935 __unregister_ftrace_function_probe(glob, ops, data,
2936 PROBE_TEST_FUNC | PROBE_TEST_DATA);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002937}
2938
2939void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002940unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002941{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002942 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002943}
2944
Steven Rostedtb6887d72009-02-17 12:32:04 -05002945void unregister_ftrace_function_probe_all(char *glob)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002946{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002947 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002948}
2949
Steven Rostedtf6180772009-02-14 00:40:25 -05002950static LIST_HEAD(ftrace_commands);
2951static DEFINE_MUTEX(ftrace_cmd_mutex);
2952
2953int register_ftrace_command(struct ftrace_func_command *cmd)
2954{
2955 struct ftrace_func_command *p;
2956 int ret = 0;
2957
2958 mutex_lock(&ftrace_cmd_mutex);
2959 list_for_each_entry(p, &ftrace_commands, list) {
2960 if (strcmp(cmd->name, p->name) == 0) {
2961 ret = -EBUSY;
2962 goto out_unlock;
2963 }
2964 }
2965 list_add(&cmd->list, &ftrace_commands);
2966 out_unlock:
2967 mutex_unlock(&ftrace_cmd_mutex);
2968
2969 return ret;
2970}
2971
2972int unregister_ftrace_command(struct ftrace_func_command *cmd)
2973{
2974 struct ftrace_func_command *p, *n;
2975 int ret = -ENODEV;
2976
2977 mutex_lock(&ftrace_cmd_mutex);
2978 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
2979 if (strcmp(cmd->name, p->name) == 0) {
2980 ret = 0;
2981 list_del_init(&p->list);
2982 goto out_unlock;
2983 }
2984 }
2985 out_unlock:
2986 mutex_unlock(&ftrace_cmd_mutex);
2987
2988 return ret;
2989}
2990
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002991static int ftrace_process_regex(struct ftrace_hash *hash,
2992 char *buff, int len, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002993{
Steven Rostedtf6180772009-02-14 00:40:25 -05002994 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002995 struct ftrace_func_command *p;
GuoWen Li0aff1c02011-06-01 19:18:47 +08002996 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05002997
2998 func = strsep(&next, ":");
2999
3000 if (!next) {
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003001 ret = ftrace_match_records(hash, func, len);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003002 if (!ret)
3003 ret = -EINVAL;
3004 if (ret < 0)
3005 return ret;
3006 return 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003007 }
3008
Steven Rostedtf6180772009-02-14 00:40:25 -05003009 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05003010
3011 command = strsep(&next, ":");
3012
Steven Rostedtf6180772009-02-14 00:40:25 -05003013 mutex_lock(&ftrace_cmd_mutex);
3014 list_for_each_entry(p, &ftrace_commands, list) {
3015 if (strcmp(p->name, command) == 0) {
Steven Rostedt43dd61c2011-07-07 11:09:22 -04003016 ret = p->func(hash, func, command, next, enable);
Steven Rostedtf6180772009-02-14 00:40:25 -05003017 goto out_unlock;
3018 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05003019 }
Steven Rostedtf6180772009-02-14 00:40:25 -05003020 out_unlock:
3021 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003022
Steven Rostedtf6180772009-02-14 00:40:25 -05003023 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003024}
3025
Ingo Molnare309b412008-05-12 21:20:51 +02003026static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04003027ftrace_regex_write(struct file *file, const char __user *ubuf,
3028 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02003029{
3030 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003031 struct trace_parser *parser;
3032 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02003033
Li Zefan4ba79782009-09-22 13:52:20 +08003034 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02003035 return 0;
3036
Steven Rostedt41c52c02008-05-22 11:46:33 -04003037 mutex_lock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003038
Steven Rostedt45a4a232011-04-21 23:16:46 -04003039 ret = -ENODEV;
3040 if (unlikely(ftrace_disabled))
3041 goto out_unlock;
3042
Steven Rostedt5072c592008-05-12 21:20:43 +02003043 if (file->f_mode & FMODE_READ) {
3044 struct seq_file *m = file->private_data;
3045 iter = m->private;
3046 } else
3047 iter = file->private_data;
3048
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003049 parser = &iter->parser;
3050 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02003051
Li Zefan4ba79782009-09-22 13:52:20 +08003052 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003053 !trace_parser_cont(parser)) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003054 ret = ftrace_process_regex(iter->hash, parser->buffer,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003055 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08003056 trace_parser_clear(parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003057 if (ret)
Li Zefaned146b252009-11-03 08:55:38 +08003058 goto out_unlock;
Steven Rostedt5072c592008-05-12 21:20:43 +02003059 }
3060
Steven Rostedt5072c592008-05-12 21:20:43 +02003061 ret = read;
Li Zefaned146b252009-11-03 08:55:38 +08003062out_unlock:
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003063 mutex_unlock(&ftrace_regex_lock);
Li Zefaned146b252009-11-03 08:55:38 +08003064
Steven Rostedt5072c592008-05-12 21:20:43 +02003065 return ret;
3066}
3067
Steven Rostedt41c52c02008-05-22 11:46:33 -04003068static ssize_t
3069ftrace_filter_write(struct file *file, const char __user *ubuf,
3070 size_t cnt, loff_t *ppos)
3071{
3072 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
3073}
3074
3075static ssize_t
3076ftrace_notrace_write(struct file *file, const char __user *ubuf,
3077 size_t cnt, loff_t *ppos)
3078{
3079 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
3080}
3081
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003082static int
Steven Rostedtf45948e2011-05-02 12:29:25 -04003083ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
3084 int reset, int enable)
Steven Rostedt41c52c02008-05-22 11:46:33 -04003085{
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003086 struct ftrace_hash **orig_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003087 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003088 int ret;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003089
Steven Rostedt936e0742011-05-05 22:54:01 -04003090 /* All global ops uses the global ops filters */
3091 if (ops->flags & FTRACE_OPS_FL_GLOBAL)
3092 ops = &global_ops;
3093
Steven Rostedt41c52c02008-05-22 11:46:33 -04003094 if (unlikely(ftrace_disabled))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003095 return -ENODEV;
Steven Rostedt41c52c02008-05-22 11:46:33 -04003096
Steven Rostedtf45948e2011-05-02 12:29:25 -04003097 if (enable)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003098 orig_hash = &ops->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003099 else
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003100 orig_hash = &ops->notrace_hash;
3101
3102 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3103 if (!hash)
3104 return -ENOMEM;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003105
Steven Rostedt41c52c02008-05-22 11:46:33 -04003106 mutex_lock(&ftrace_regex_lock);
3107 if (reset)
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003108 ftrace_filter_reset(hash);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003109 if (buf)
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003110 ftrace_match_records(hash, buf, len);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003111
3112 mutex_lock(&ftrace_lock);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003113 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
Steven Rostedt072126f2011-07-13 15:08:31 -04003114 if (!ret && ops->flags & FTRACE_OPS_FL_ENABLED
3115 && ftrace_enabled)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01003116 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedt072126f2011-07-13 15:08:31 -04003117
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003118 mutex_unlock(&ftrace_lock);
3119
Steven Rostedt41c52c02008-05-22 11:46:33 -04003120 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003121
3122 free_ftrace_hash(hash);
3123 return ret;
Steven Rostedt41c52c02008-05-22 11:46:33 -04003124}
3125
Steven Rostedt77a2b372008-05-12 21:20:45 +02003126/**
3127 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04003128 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02003129 * @buf - the string that holds the function filter text.
3130 * @len - the length of the string.
3131 * @reset - non zero to reset all filters before applying this filter.
3132 *
3133 * Filters denote which functions should be enabled when tracing is enabled.
3134 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3135 */
Steven Rostedt936e0742011-05-05 22:54:01 -04003136void ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
3137 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02003138{
Steven Rostedt936e0742011-05-05 22:54:01 -04003139 ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003140}
Steven Rostedt936e0742011-05-05 22:54:01 -04003141EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003142
Steven Rostedt41c52c02008-05-22 11:46:33 -04003143/**
3144 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04003145 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04003146 * @buf - the string that holds the function notrace text.
3147 * @len - the length of the string.
3148 * @reset - non zero to reset all filters before applying this filter.
3149 *
3150 * Notrace Filters denote which functions should not be enabled when tracing
3151 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3152 * for tracing.
3153 */
Steven Rostedt936e0742011-05-05 22:54:01 -04003154void ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
3155 int len, int reset)
3156{
3157 ftrace_set_regex(ops, buf, len, reset, 0);
3158}
3159EXPORT_SYMBOL_GPL(ftrace_set_notrace);
3160/**
3161 * ftrace_set_filter - set a function to filter on in ftrace
3162 * @ops - the ops to set the filter with
3163 * @buf - the string that holds the function filter text.
3164 * @len - the length of the string.
3165 * @reset - non zero to reset all filters before applying this filter.
3166 *
3167 * Filters denote which functions should be enabled when tracing is enabled.
3168 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3169 */
3170void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
3171{
3172 ftrace_set_regex(&global_ops, buf, len, reset, 1);
3173}
3174EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
3175
3176/**
3177 * ftrace_set_notrace - set a function to not trace in ftrace
3178 * @ops - the ops to set the notrace filter with
3179 * @buf - the string that holds the function notrace text.
3180 * @len - the length of the string.
3181 * @reset - non zero to reset all filters before applying this filter.
3182 *
3183 * Notrace Filters denote which functions should not be enabled when tracing
3184 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3185 * for tracing.
3186 */
3187void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04003188{
Steven Rostedtf45948e2011-05-02 12:29:25 -04003189 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02003190}
Steven Rostedt936e0742011-05-05 22:54:01 -04003191EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02003192
Steven Rostedt2af15d62009-05-28 13:37:24 -04003193/*
3194 * command line interface to allow users to set filters on boot up.
3195 */
3196#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
3197static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
3198static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
3199
3200static int __init set_ftrace_notrace(char *str)
3201{
3202 strncpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
3203 return 1;
3204}
3205__setup("ftrace_notrace=", set_ftrace_notrace);
3206
3207static int __init set_ftrace_filter(char *str)
3208{
3209 strncpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
3210 return 1;
3211}
3212__setup("ftrace_filter=", set_ftrace_filter);
3213
Stefan Assmann369bc182009-10-12 22:17:21 +02003214#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08003215static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Steven Rostedt801c29f2010-03-05 20:02:19 -05003216static int ftrace_set_func(unsigned long *array, int *idx, char *buffer);
3217
Stefan Assmann369bc182009-10-12 22:17:21 +02003218static int __init set_graph_function(char *str)
3219{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02003220 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02003221 return 1;
3222}
3223__setup("ftrace_graph_filter=", set_graph_function);
3224
3225static void __init set_ftrace_early_graph(char *buf)
3226{
3227 int ret;
3228 char *func;
3229
3230 while (buf) {
3231 func = strsep(&buf, ",");
3232 /* we allow only one expression at a time */
3233 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
3234 func);
3235 if (ret)
3236 printk(KERN_DEBUG "ftrace: function %s not "
3237 "traceable\n", func);
3238 }
3239}
3240#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3241
Steven Rostedtf45948e2011-05-02 12:29:25 -04003242static void __init
3243set_ftrace_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04003244{
3245 char *func;
3246
3247 while (buf) {
3248 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04003249 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04003250 }
3251}
3252
3253static void __init set_ftrace_early_filters(void)
3254{
3255 if (ftrace_filter_buf[0])
Steven Rostedtf45948e2011-05-02 12:29:25 -04003256 set_ftrace_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04003257 if (ftrace_notrace_buf[0])
Steven Rostedtf45948e2011-05-02 12:29:25 -04003258 set_ftrace_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02003259#ifdef CONFIG_FUNCTION_GRAPH_TRACER
3260 if (ftrace_graph_buf[0])
3261 set_ftrace_early_graph(ftrace_graph_buf);
3262#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04003263}
3264
Ingo Molnare309b412008-05-12 21:20:51 +02003265static int
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003266ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003267{
3268 struct seq_file *m = (struct seq_file *)file->private_data;
3269 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003270 struct ftrace_hash **orig_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003271 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04003272 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003273 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02003274
Steven Rostedt41c52c02008-05-22 11:46:33 -04003275 mutex_lock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003276 if (file->f_mode & FMODE_READ) {
3277 iter = m->private;
3278
3279 seq_release(inode, file);
3280 } else
3281 iter = file->private_data;
3282
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003283 parser = &iter->parser;
3284 if (trace_parser_loaded(parser)) {
3285 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003286 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02003287 }
3288
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003289 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003290
Steven Rostedt058e2972011-04-29 22:35:33 -04003291 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04003292 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
3293
3294 if (filter_hash)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003295 orig_hash = &iter->ops->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04003296 else
3297 orig_hash = &iter->ops->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003298
Steven Rostedt058e2972011-04-29 22:35:33 -04003299 mutex_lock(&ftrace_lock);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003300 ret = ftrace_hash_move(iter->ops, filter_hash,
3301 orig_hash, iter->hash);
3302 if (!ret && (iter->ops->flags & FTRACE_OPS_FL_ENABLED)
3303 && ftrace_enabled)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01003304 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003305
Steven Rostedt058e2972011-04-29 22:35:33 -04003306 mutex_unlock(&ftrace_lock);
3307 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003308 free_ftrace_hash(iter->hash);
3309 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04003310
Steven Rostedt41c52c02008-05-22 11:46:33 -04003311 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003312 return 0;
3313}
3314
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003315static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003316 .open = ftrace_avail_open,
3317 .read = seq_read,
3318 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08003319 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02003320};
3321
Steven Rostedt647bcd02011-05-03 14:39:21 -04003322static const struct file_operations ftrace_enabled_fops = {
3323 .open = ftrace_enabled_open,
3324 .read = seq_read,
3325 .llseek = seq_lseek,
3326 .release = seq_release_private,
3327};
3328
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003329static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003330 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08003331 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02003332 .write = ftrace_filter_write,
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003333 .llseek = ftrace_regex_lseek,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003334 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02003335};
3336
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003337static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04003338 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08003339 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003340 .write = ftrace_notrace_write,
3341 .llseek = ftrace_regex_lseek,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003342 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003343};
3344
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003345#ifdef CONFIG_FUNCTION_GRAPH_TRACER
3346
3347static DEFINE_MUTEX(graph_lock);
3348
3349int ftrace_graph_count;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003350int ftrace_graph_filter_enabled;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003351unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
3352
3353static void *
Li Zefan85951842009-06-24 09:54:00 +08003354__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003355{
Li Zefan85951842009-06-24 09:54:00 +08003356 if (*pos >= ftrace_graph_count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003357 return NULL;
Li Zefana4ec5e02009-09-18 14:06:28 +08003358 return &ftrace_graph_funcs[*pos];
Li Zefan85951842009-06-24 09:54:00 +08003359}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003360
Li Zefan85951842009-06-24 09:54:00 +08003361static void *
3362g_next(struct seq_file *m, void *v, loff_t *pos)
3363{
3364 (*pos)++;
3365 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003366}
3367
3368static void *g_start(struct seq_file *m, loff_t *pos)
3369{
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003370 mutex_lock(&graph_lock);
3371
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003372 /* Nothing, tell g_show to print all functions are enabled */
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003373 if (!ftrace_graph_filter_enabled && !*pos)
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003374 return (void *)1;
3375
Li Zefan85951842009-06-24 09:54:00 +08003376 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003377}
3378
3379static void g_stop(struct seq_file *m, void *p)
3380{
3381 mutex_unlock(&graph_lock);
3382}
3383
3384static int g_show(struct seq_file *m, void *v)
3385{
3386 unsigned long *ptr = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003387
3388 if (!ptr)
3389 return 0;
3390
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003391 if (ptr == (unsigned long *)1) {
3392 seq_printf(m, "#### all functions enabled ####\n");
3393 return 0;
3394 }
3395
Steven Rostedtb375a112009-09-17 00:05:58 -04003396 seq_printf(m, "%ps\n", (void *)*ptr);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003397
3398 return 0;
3399}
3400
James Morris88e9d342009-09-22 16:43:43 -07003401static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003402 .start = g_start,
3403 .next = g_next,
3404 .stop = g_stop,
3405 .show = g_show,
3406};
3407
3408static int
3409ftrace_graph_open(struct inode *inode, struct file *file)
3410{
3411 int ret = 0;
3412
3413 if (unlikely(ftrace_disabled))
3414 return -ENODEV;
3415
3416 mutex_lock(&graph_lock);
3417 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04003418 (file->f_flags & O_TRUNC)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003419 ftrace_graph_filter_enabled = 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003420 ftrace_graph_count = 0;
3421 memset(ftrace_graph_funcs, 0, sizeof(ftrace_graph_funcs));
3422 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003423 mutex_unlock(&graph_lock);
3424
Li Zefana4ec5e02009-09-18 14:06:28 +08003425 if (file->f_mode & FMODE_READ)
3426 ret = seq_open(file, &ftrace_graph_seq_ops);
3427
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003428 return ret;
3429}
3430
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003431static int
Li Zefan87827112009-07-23 11:29:11 +08003432ftrace_graph_release(struct inode *inode, struct file *file)
3433{
3434 if (file->f_mode & FMODE_READ)
3435 seq_release(inode, file);
3436 return 0;
3437}
3438
3439static int
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003440ftrace_set_func(unsigned long *array, int *idx, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003441{
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003442 struct dyn_ftrace *rec;
3443 struct ftrace_page *pg;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003444 int search_len;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003445 int fail = 1;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003446 int type, not;
3447 char *search;
3448 bool exists;
3449 int i;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003450
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003451 /* decode regex */
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02003452 type = filter_parse_regex(buffer, strlen(buffer), &search, &not);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003453 if (!not && *idx >= FTRACE_GRAPH_MAX_FUNCS)
3454 return -EBUSY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003455
3456 search_len = strlen(search);
3457
Steven Rostedt52baf112009-02-14 01:15:39 -05003458 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003459
3460 if (unlikely(ftrace_disabled)) {
3461 mutex_unlock(&ftrace_lock);
3462 return -ENODEV;
3463 }
3464
Steven Rostedt265c8312009-02-13 12:43:56 -05003465 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003466
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003467 if (ftrace_match_record(rec, NULL, search, search_len, type)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003468 /* if it is in the array */
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003469 exists = false;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003470 for (i = 0; i < *idx; i++) {
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003471 if (array[i] == rec->ip) {
3472 exists = true;
Steven Rostedt265c8312009-02-13 12:43:56 -05003473 break;
3474 }
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003475 }
3476
3477 if (!not) {
3478 fail = 0;
3479 if (!exists) {
3480 array[(*idx)++] = rec->ip;
3481 if (*idx >= FTRACE_GRAPH_MAX_FUNCS)
3482 goto out;
3483 }
3484 } else {
3485 if (exists) {
3486 array[i] = array[--(*idx)];
3487 array[*idx] = 0;
3488 fail = 0;
3489 }
3490 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003491 }
Steven Rostedt265c8312009-02-13 12:43:56 -05003492 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003493out:
Steven Rostedt52baf112009-02-14 01:15:39 -05003494 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003495
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003496 if (fail)
3497 return -EINVAL;
3498
3499 ftrace_graph_filter_enabled = 1;
3500 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003501}
3502
3503static ssize_t
3504ftrace_graph_write(struct file *file, const char __user *ubuf,
3505 size_t cnt, loff_t *ppos)
3506{
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003507 struct trace_parser parser;
Li Zefan4ba79782009-09-22 13:52:20 +08003508 ssize_t read, ret;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003509
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003510 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003511 return 0;
3512
3513 mutex_lock(&graph_lock);
3514
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003515 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX)) {
3516 ret = -ENOMEM;
Li Zefan1eb90f12009-09-22 13:52:57 +08003517 goto out_unlock;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003518 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003519
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003520 read = trace_get_user(&parser, ubuf, cnt, ppos);
3521
Li Zefan4ba79782009-09-22 13:52:20 +08003522 if (read >= 0 && trace_parser_loaded((&parser))) {
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003523 parser.buffer[parser.idx] = 0;
3524
3525 /* we allow only one expression at a time */
Li Zefana4ec5e02009-09-18 14:06:28 +08003526 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003527 parser.buffer);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003528 if (ret)
Li Zefan1eb90f12009-09-22 13:52:57 +08003529 goto out_free;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003530 }
3531
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003532 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08003533
3534out_free:
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003535 trace_parser_put(&parser);
Li Zefan1eb90f12009-09-22 13:52:57 +08003536out_unlock:
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003537 mutex_unlock(&graph_lock);
3538
3539 return ret;
3540}
3541
3542static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08003543 .open = ftrace_graph_open,
3544 .read = seq_read,
3545 .write = ftrace_graph_write,
3546 .release = ftrace_graph_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003547 .llseek = seq_lseek,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003548};
3549#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3550
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003551static __init int ftrace_init_dyn_debugfs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02003552{
Steven Rostedt5072c592008-05-12 21:20:43 +02003553
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003554 trace_create_file("available_filter_functions", 0444,
3555 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02003556
Steven Rostedt647bcd02011-05-03 14:39:21 -04003557 trace_create_file("enabled_functions", 0444,
3558 d_tracer, NULL, &ftrace_enabled_fops);
3559
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003560 trace_create_file("set_ftrace_filter", 0644, d_tracer,
3561 NULL, &ftrace_filter_fops);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003562
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003563 trace_create_file("set_ftrace_notrace", 0644, d_tracer,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003564 NULL, &ftrace_notrace_fops);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04003565
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003566#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003567 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003568 NULL,
3569 &ftrace_graph_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003570#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3571
Steven Rostedt5072c592008-05-12 21:20:43 +02003572 return 0;
3573}
3574
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003575static int ftrace_process_locs(struct module *mod,
Steven Rostedt31e88902008-11-14 16:21:19 -08003576 unsigned long *start,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003577 unsigned long *end)
3578{
Steven Rostedta7900872011-12-16 16:23:44 -05003579 struct ftrace_page *pg;
3580 unsigned long count;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003581 unsigned long *p;
3582 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04003583 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedta7900872011-12-16 16:23:44 -05003584 int ret = -ENOMEM;
3585
3586 count = end - start;
3587
3588 if (!count)
3589 return 0;
3590
3591 pg = ftrace_allocate_pages(count);
3592 if (!pg)
3593 return -ENOMEM;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003594
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003595 mutex_lock(&ftrace_lock);
Steven Rostedta7900872011-12-16 16:23:44 -05003596
Steven Rostedt32082302011-12-16 14:42:37 -05003597 /*
3598 * Core and each module needs their own pages, as
3599 * modules will free them when they are removed.
3600 * Force a new page to be allocated for modules.
3601 */
Steven Rostedta7900872011-12-16 16:23:44 -05003602 if (!mod) {
3603 WARN_ON(ftrace_pages || ftrace_pages_start);
3604 /* First initialization */
3605 ftrace_pages = ftrace_pages_start = pg;
3606 } else {
Steven Rostedt32082302011-12-16 14:42:37 -05003607 if (!ftrace_pages)
Steven Rostedta7900872011-12-16 16:23:44 -05003608 goto out;
Steven Rostedt32082302011-12-16 14:42:37 -05003609
Steven Rostedta7900872011-12-16 16:23:44 -05003610 if (WARN_ON(ftrace_pages->next)) {
3611 /* Hmm, we have free pages? */
3612 while (ftrace_pages->next)
3613 ftrace_pages = ftrace_pages->next;
Steven Rostedt32082302011-12-16 14:42:37 -05003614 }
Steven Rostedta7900872011-12-16 16:23:44 -05003615
3616 ftrace_pages->next = pg;
3617 ftrace_pages = pg;
Steven Rostedt32082302011-12-16 14:42:37 -05003618 }
3619
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003620 p = start;
3621 while (p < end) {
3622 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08003623 /*
3624 * Some architecture linkers will pad between
3625 * the different mcount_loc sections of different
3626 * object files to satisfy alignments.
3627 * Skip any NULL pointers.
3628 */
3629 if (!addr)
3630 continue;
Steven Rostedta7900872011-12-16 16:23:44 -05003631 if (!ftrace_record_ip(addr))
3632 break;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003633 }
3634
Steven Rostedta4f18ed2011-06-07 09:26:46 -04003635 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04003636 * We only need to disable interrupts on start up
3637 * because we are modifying code that an interrupt
3638 * may execute, and the modification is not atomic.
3639 * But for modules, nothing runs the code we modify
3640 * until we are finished with it, and there's no
3641 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04003642 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04003643 if (!mod)
3644 local_irq_save(flags);
Steven Rostedt31e88902008-11-14 16:21:19 -08003645 ftrace_update_code(mod);
Steven Rostedt4376cac2011-06-24 23:28:13 -04003646 if (!mod)
3647 local_irq_restore(flags);
Steven Rostedta7900872011-12-16 16:23:44 -05003648 ret = 0;
3649 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003650 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003651
Steven Rostedta7900872011-12-16 16:23:44 -05003652 return ret;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003653}
3654
Steven Rostedt93eb6772009-04-15 13:24:06 -04003655#ifdef CONFIG_MODULES
Steven Rostedt32082302011-12-16 14:42:37 -05003656
3657#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
3658
jolsa@redhat.come7247a12009-10-07 19:00:35 +02003659void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04003660{
3661 struct dyn_ftrace *rec;
Steven Rostedt32082302011-12-16 14:42:37 -05003662 struct ftrace_page **last_pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04003663 struct ftrace_page *pg;
Steven Rostedta7900872011-12-16 16:23:44 -05003664 int order;
Steven Rostedt93eb6772009-04-15 13:24:06 -04003665
Steven Rostedt93eb6772009-04-15 13:24:06 -04003666 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003667
3668 if (ftrace_disabled)
3669 goto out_unlock;
3670
Steven Rostedt32082302011-12-16 14:42:37 -05003671 /*
3672 * Each module has its own ftrace_pages, remove
3673 * them from the list.
3674 */
3675 last_pg = &ftrace_pages_start;
3676 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
3677 rec = &pg->records[0];
jolsa@redhat.come7247a12009-10-07 19:00:35 +02003678 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04003679 /*
Steven Rostedt32082302011-12-16 14:42:37 -05003680 * As core pages are first, the first
3681 * page should never be a module page.
Steven Rostedt93eb6772009-04-15 13:24:06 -04003682 */
Steven Rostedt32082302011-12-16 14:42:37 -05003683 if (WARN_ON(pg == ftrace_pages_start))
3684 goto out_unlock;
3685
3686 /* Check if we are deleting the last page */
3687 if (pg == ftrace_pages)
3688 ftrace_pages = next_to_ftrace_page(last_pg);
3689
3690 *last_pg = pg->next;
Steven Rostedta7900872011-12-16 16:23:44 -05003691 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3692 free_pages((unsigned long)pg->records, order);
3693 kfree(pg);
Steven Rostedt32082302011-12-16 14:42:37 -05003694 } else
3695 last_pg = &pg->next;
3696 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04003697 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04003698 mutex_unlock(&ftrace_lock);
3699}
3700
3701static void ftrace_init_module(struct module *mod,
3702 unsigned long *start, unsigned long *end)
Steven Rostedt90d595f2008-08-14 15:45:09 -04003703{
Steven Rostedt00fd61a2008-08-15 21:40:04 -04003704 if (ftrace_disabled || start == end)
Steven Rostedtfed19392008-08-14 22:47:19 -04003705 return;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003706 ftrace_process_locs(mod, start, end);
Steven Rostedt90d595f2008-08-14 15:45:09 -04003707}
3708
Steven Rostedt93eb6772009-04-15 13:24:06 -04003709static int ftrace_module_notify(struct notifier_block *self,
3710 unsigned long val, void *data)
3711{
3712 struct module *mod = data;
3713
3714 switch (val) {
3715 case MODULE_STATE_COMING:
3716 ftrace_init_module(mod, mod->ftrace_callsites,
3717 mod->ftrace_callsites +
3718 mod->num_ftrace_callsites);
3719 break;
3720 case MODULE_STATE_GOING:
jolsa@redhat.come7247a12009-10-07 19:00:35 +02003721 ftrace_release_mod(mod);
Steven Rostedt93eb6772009-04-15 13:24:06 -04003722 break;
3723 }
3724
3725 return 0;
3726}
3727#else
3728static int ftrace_module_notify(struct notifier_block *self,
3729 unsigned long val, void *data)
3730{
3731 return 0;
3732}
3733#endif /* CONFIG_MODULES */
3734
3735struct notifier_block ftrace_module_nb = {
3736 .notifier_call = ftrace_module_notify,
3737 .priority = 0,
3738};
3739
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003740extern unsigned long __start_mcount_loc[];
3741extern unsigned long __stop_mcount_loc[];
3742
3743void __init ftrace_init(void)
3744{
3745 unsigned long count, addr, flags;
3746 int ret;
3747
3748 /* Keep the ftrace pointer to the stub */
3749 addr = (unsigned long)ftrace_stub;
3750
3751 local_irq_save(flags);
3752 ftrace_dyn_arch_init(&addr);
3753 local_irq_restore(flags);
3754
3755 /* ftrace_dyn_arch_init places the return code in addr */
3756 if (addr)
3757 goto failed;
3758
3759 count = __stop_mcount_loc - __start_mcount_loc;
3760
3761 ret = ftrace_dyn_table_alloc(count);
3762 if (ret)
3763 goto failed;
3764
3765 last_ftrace_enabled = ftrace_enabled = 1;
3766
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003767 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08003768 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003769 __stop_mcount_loc);
3770
Steven Rostedt93eb6772009-04-15 13:24:06 -04003771 ret = register_module_notifier(&ftrace_module_nb);
Ming Lei24ed0c42009-05-17 15:31:38 +08003772 if (ret)
Steven Rostedt93eb6772009-04-15 13:24:06 -04003773 pr_warning("Failed to register trace ftrace module notifier\n");
3774
Steven Rostedt2af15d62009-05-28 13:37:24 -04003775 set_ftrace_early_filters();
3776
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003777 return;
3778 failed:
3779 ftrace_disabled = 1;
3780}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003781
Steven Rostedt3d083392008-05-12 21:20:42 +02003782#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01003783
Steven Rostedt2b499382011-05-03 22:49:52 -04003784static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04003785 .func = ftrace_stub,
3786};
3787
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01003788static int __init ftrace_nodyn_init(void)
3789{
3790 ftrace_enabled = 1;
3791 return 0;
3792}
3793device_initcall(ftrace_nodyn_init);
3794
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003795static inline int ftrace_init_dyn_debugfs(struct dentry *d_tracer) { return 0; }
3796static inline void ftrace_startup_enable(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05003797/* Keep as macros so we do not need to define the commands */
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04003798# define ftrace_startup(ops, command) \
3799 ({ \
3800 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
3801 0; \
3802 })
Steven Rostedtbd69c302011-05-03 21:55:54 -04003803# define ftrace_shutdown(ops, command) do { } while (0)
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003804# define ftrace_startup_sysctl() do { } while (0)
3805# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04003806
3807static inline int
3808ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip)
3809{
3810 return 1;
3811}
3812
Steven Rostedt3d083392008-05-12 21:20:42 +02003813#endif /* CONFIG_DYNAMIC_FTRACE */
3814
Steven Rostedtb8489142011-05-04 09:27:52 -04003815static void
3816ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip)
3817{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04003818 struct ftrace_ops *op;
Steven Rostedtb8489142011-05-04 09:27:52 -04003819
Steven Rostedtb1cff0a2011-05-25 14:27:43 -04003820 if (unlikely(trace_recursion_test(TRACE_INTERNAL_BIT)))
3821 return;
3822
3823 trace_recursion_set(TRACE_INTERNAL_BIT);
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04003824 /*
3825 * Some of the ops may be dynamically allocated,
3826 * they must be freed after a synchronize_sched().
3827 */
3828 preempt_disable_notrace();
3829 op = rcu_dereference_raw(ftrace_ops_list);
Steven Rostedtb8489142011-05-04 09:27:52 -04003830 while (op != &ftrace_list_end) {
3831 if (ftrace_ops_test(op, ip))
3832 op->func(ip, parent_ip);
3833 op = rcu_dereference_raw(op->next);
3834 };
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04003835 preempt_enable_notrace();
Steven Rostedtb1cff0a2011-05-25 14:27:43 -04003836 trace_recursion_clear(TRACE_INTERNAL_BIT);
Steven Rostedtb8489142011-05-04 09:27:52 -04003837}
3838
Steven Rostedte32d8952008-12-04 00:26:41 -05003839static void clear_ftrace_swapper(void)
3840{
3841 struct task_struct *p;
3842 int cpu;
3843
3844 get_online_cpus();
3845 for_each_online_cpu(cpu) {
3846 p = idle_task(cpu);
3847 clear_tsk_trace_trace(p);
3848 }
3849 put_online_cpus();
3850}
3851
3852static void set_ftrace_swapper(void)
3853{
3854 struct task_struct *p;
3855 int cpu;
3856
3857 get_online_cpus();
3858 for_each_online_cpu(cpu) {
3859 p = idle_task(cpu);
3860 set_tsk_trace_trace(p);
3861 }
3862 put_online_cpus();
3863}
3864
3865static void clear_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05003866{
3867 struct task_struct *p;
3868
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01003869 rcu_read_lock();
Steven Rostedte32d8952008-12-04 00:26:41 -05003870 do_each_pid_task(pid, PIDTYPE_PID, p) {
Steven Rostedt978f3a42008-12-04 00:26:40 -05003871 clear_tsk_trace_trace(p);
Steven Rostedte32d8952008-12-04 00:26:41 -05003872 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01003873 rcu_read_unlock();
3874
Steven Rostedte32d8952008-12-04 00:26:41 -05003875 put_pid(pid);
Steven Rostedt978f3a42008-12-04 00:26:40 -05003876}
3877
Steven Rostedte32d8952008-12-04 00:26:41 -05003878static void set_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05003879{
3880 struct task_struct *p;
3881
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01003882 rcu_read_lock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05003883 do_each_pid_task(pid, PIDTYPE_PID, p) {
3884 set_tsk_trace_trace(p);
3885 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01003886 rcu_read_unlock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05003887}
3888
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003889static void clear_ftrace_pid_task(struct pid *pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05003890{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003891 if (pid == ftrace_swapper_pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05003892 clear_ftrace_swapper();
3893 else
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003894 clear_ftrace_pid(pid);
Steven Rostedte32d8952008-12-04 00:26:41 -05003895}
3896
3897static void set_ftrace_pid_task(struct pid *pid)
3898{
3899 if (pid == ftrace_swapper_pid)
3900 set_ftrace_swapper();
3901 else
3902 set_ftrace_pid(pid);
3903}
3904
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003905static int ftrace_pid_add(int p)
3906{
3907 struct pid *pid;
3908 struct ftrace_pid *fpid;
3909 int ret = -EINVAL;
3910
3911 mutex_lock(&ftrace_lock);
3912
3913 if (!p)
3914 pid = ftrace_swapper_pid;
3915 else
3916 pid = find_get_pid(p);
3917
3918 if (!pid)
3919 goto out;
3920
3921 ret = 0;
3922
3923 list_for_each_entry(fpid, &ftrace_pids, list)
3924 if (fpid->pid == pid)
3925 goto out_put;
3926
3927 ret = -ENOMEM;
3928
3929 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
3930 if (!fpid)
3931 goto out_put;
3932
3933 list_add(&fpid->list, &ftrace_pids);
3934 fpid->pid = pid;
3935
3936 set_ftrace_pid_task(pid);
3937
3938 ftrace_update_pid_func();
3939 ftrace_startup_enable(0);
3940
3941 mutex_unlock(&ftrace_lock);
3942 return 0;
3943
3944out_put:
3945 if (pid != ftrace_swapper_pid)
3946 put_pid(pid);
3947
3948out:
3949 mutex_unlock(&ftrace_lock);
3950 return ret;
3951}
3952
3953static void ftrace_pid_reset(void)
3954{
3955 struct ftrace_pid *fpid, *safe;
3956
3957 mutex_lock(&ftrace_lock);
3958 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
3959 struct pid *pid = fpid->pid;
3960
3961 clear_ftrace_pid_task(pid);
3962
3963 list_del(&fpid->list);
3964 kfree(fpid);
3965 }
3966
3967 ftrace_update_pid_func();
3968 ftrace_startup_enable(0);
3969
3970 mutex_unlock(&ftrace_lock);
3971}
3972
3973static void *fpid_start(struct seq_file *m, loff_t *pos)
3974{
3975 mutex_lock(&ftrace_lock);
3976
3977 if (list_empty(&ftrace_pids) && (!*pos))
3978 return (void *) 1;
3979
3980 return seq_list_start(&ftrace_pids, *pos);
3981}
3982
3983static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
3984{
3985 if (v == (void *)1)
3986 return NULL;
3987
3988 return seq_list_next(v, &ftrace_pids, pos);
3989}
3990
3991static void fpid_stop(struct seq_file *m, void *p)
3992{
3993 mutex_unlock(&ftrace_lock);
3994}
3995
3996static int fpid_show(struct seq_file *m, void *v)
3997{
3998 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
3999
4000 if (v == (void *)1) {
4001 seq_printf(m, "no pid\n");
4002 return 0;
4003 }
4004
4005 if (fpid->pid == ftrace_swapper_pid)
4006 seq_printf(m, "swapper tasks\n");
4007 else
4008 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
4009
4010 return 0;
4011}
4012
4013static const struct seq_operations ftrace_pid_sops = {
4014 .start = fpid_start,
4015 .next = fpid_next,
4016 .stop = fpid_stop,
4017 .show = fpid_show,
4018};
4019
4020static int
4021ftrace_pid_open(struct inode *inode, struct file *file)
4022{
4023 int ret = 0;
4024
4025 if ((file->f_mode & FMODE_WRITE) &&
4026 (file->f_flags & O_TRUNC))
4027 ftrace_pid_reset();
4028
4029 if (file->f_mode & FMODE_READ)
4030 ret = seq_open(file, &ftrace_pid_sops);
4031
4032 return ret;
4033}
4034
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004035static ssize_t
4036ftrace_pid_write(struct file *filp, const char __user *ubuf,
4037 size_t cnt, loff_t *ppos)
4038{
Ingo Molnar457dc922009-11-23 11:03:28 +01004039 char buf[64], *tmp;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004040 long val;
4041 int ret;
4042
4043 if (cnt >= sizeof(buf))
4044 return -EINVAL;
4045
4046 if (copy_from_user(&buf, ubuf, cnt))
4047 return -EFAULT;
4048
4049 buf[cnt] = 0;
4050
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004051 /*
4052 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
4053 * to clean the filter quietly.
4054 */
Ingo Molnar457dc922009-11-23 11:03:28 +01004055 tmp = strstrip(buf);
4056 if (strlen(tmp) == 0)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004057 return 1;
4058
Ingo Molnar457dc922009-11-23 11:03:28 +01004059 ret = strict_strtol(tmp, 10, &val);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004060 if (ret < 0)
4061 return ret;
4062
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004063 ret = ftrace_pid_add(val);
Steven Rostedt978f3a42008-12-04 00:26:40 -05004064
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004065 return ret ? ret : cnt;
4066}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004067
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004068static int
4069ftrace_pid_release(struct inode *inode, struct file *file)
4070{
4071 if (file->f_mode & FMODE_READ)
4072 seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004073
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004074 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004075}
4076
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004077static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004078 .open = ftrace_pid_open,
4079 .write = ftrace_pid_write,
4080 .read = seq_read,
4081 .llseek = seq_lseek,
4082 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004083};
4084
4085static __init int ftrace_init_debugfs(void)
4086{
4087 struct dentry *d_tracer;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004088
4089 d_tracer = tracing_init_dentry();
4090 if (!d_tracer)
4091 return 0;
4092
4093 ftrace_init_dyn_debugfs(d_tracer);
4094
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004095 trace_create_file("set_ftrace_pid", 0644, d_tracer,
4096 NULL, &ftrace_pid_fops);
Steven Rostedt493762f2009-03-23 17:12:36 -04004097
4098 ftrace_profile_debugfs(d_tracer);
4099
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004100 return 0;
4101}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004102fs_initcall(ftrace_init_debugfs);
4103
Steven Rostedt3d083392008-05-12 21:20:42 +02004104/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04004105 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004106 *
4107 * This function should be used by panic code. It stops ftrace
4108 * but in a not so nice way. If you need to simply kill ftrace
4109 * from a non-atomic section, use ftrace_kill.
4110 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04004111void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004112{
4113 ftrace_disabled = 1;
4114 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004115 clear_ftrace_function();
4116}
4117
4118/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04004119 * Test if ftrace is dead or not.
4120 */
4121int ftrace_is_dead(void)
4122{
4123 return ftrace_disabled;
4124}
4125
4126/**
Steven Rostedt3d083392008-05-12 21:20:42 +02004127 * register_ftrace_function - register a function for profiling
4128 * @ops - ops structure that holds the function for profiling.
4129 *
4130 * Register a function to be called by all functions in the
4131 * kernel.
4132 *
4133 * Note: @ops->func and all the functions it calls must be labeled
4134 * with "notrace", otherwise it will go into a
4135 * recursive loop.
4136 */
4137int register_ftrace_function(struct ftrace_ops *ops)
4138{
Steven Rostedt45a4a232011-04-21 23:16:46 -04004139 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004140
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004141 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004142
Steven Rostedt45a4a232011-04-21 23:16:46 -04004143 if (unlikely(ftrace_disabled))
4144 goto out_unlock;
4145
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004146 ret = __register_ftrace_function(ops);
Steven Rostedtb8489142011-05-04 09:27:52 -04004147 if (!ret)
Steven Rostedta1cd6172011-05-23 15:24:25 -04004148 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04004149
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004150
Steven Rostedt45a4a232011-04-21 23:16:46 -04004151 out_unlock:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004152 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004153 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02004154}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004155EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02004156
4157/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01004158 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02004159 * @ops - ops structure that holds the function to unregister
4160 *
4161 * Unregister a function that was added to be called by ftrace profiling.
4162 */
4163int unregister_ftrace_function(struct ftrace_ops *ops)
4164{
4165 int ret;
4166
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004167 mutex_lock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02004168 ret = __unregister_ftrace_function(ops);
Steven Rostedtb8489142011-05-04 09:27:52 -04004169 if (!ret)
4170 ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004171 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004172
4173 return ret;
4174}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004175EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004176
Ingo Molnare309b412008-05-12 21:20:51 +02004177int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004178ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004179 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004180 loff_t *ppos)
4181{
Steven Rostedt45a4a232011-04-21 23:16:46 -04004182 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004183
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004184 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004185
Steven Rostedt45a4a232011-04-21 23:16:46 -04004186 if (unlikely(ftrace_disabled))
4187 goto out;
4188
4189 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004190
Li Zefana32c7762009-06-26 16:55:51 +08004191 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004192 goto out;
4193
Li Zefana32c7762009-06-26 16:55:51 +08004194 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004195
4196 if (ftrace_enabled) {
4197
4198 ftrace_startup_sysctl();
4199
4200 /* we are starting ftrace again */
Steven Rostedtb8489142011-05-04 09:27:52 -04004201 if (ftrace_ops_list != &ftrace_list_end) {
4202 if (ftrace_ops_list->next == &ftrace_list_end)
4203 ftrace_trace_function = ftrace_ops_list->func;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004204 else
Steven Rostedtb8489142011-05-04 09:27:52 -04004205 ftrace_trace_function = ftrace_ops_list_func;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004206 }
4207
4208 } else {
4209 /* stopping ftrace calls (just send to ftrace_stub) */
4210 ftrace_trace_function = ftrace_stub;
4211
4212 ftrace_shutdown_sysctl();
4213 }
4214
4215 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004216 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02004217 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02004218}
Ingo Molnarf17845e2008-10-24 12:47:10 +02004219
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004220#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004221
Steven Rostedt597af812009-04-03 15:24:12 -04004222static int ftrace_graph_active;
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004223static struct notifier_block ftrace_suspend_notifier;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004224
Steven Rostedte49dc192008-12-02 23:50:05 -05004225int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
4226{
4227 return 0;
4228}
4229
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004230/* The callbacks that hook a function */
4231trace_func_graph_ret_t ftrace_graph_return =
4232 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05004233trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004234
4235/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
4236static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
4237{
4238 int i;
4239 int ret = 0;
4240 unsigned long flags;
4241 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
4242 struct task_struct *g, *t;
4243
4244 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
4245 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
4246 * sizeof(struct ftrace_ret_stack),
4247 GFP_KERNEL);
4248 if (!ret_stack_list[i]) {
4249 start = 0;
4250 end = i;
4251 ret = -ENOMEM;
4252 goto free;
4253 }
4254 }
4255
4256 read_lock_irqsave(&tasklist_lock, flags);
4257 do_each_thread(g, t) {
4258 if (start == end) {
4259 ret = -EAGAIN;
4260 goto unlock;
4261 }
4262
4263 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01004264 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004265 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04004266 t->curr_ret_stack = -1;
4267 /* Make sure the tasks see the -1 first: */
4268 smp_wmb();
4269 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004270 }
4271 } while_each_thread(g, t);
4272
4273unlock:
4274 read_unlock_irqrestore(&tasklist_lock, flags);
4275free:
4276 for (i = start; i < end; i++)
4277 kfree(ret_stack_list[i]);
4278 return ret;
4279}
4280
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004281static void
Steven Rostedt38516ab2010-04-20 17:04:50 -04004282ftrace_graph_probe_sched_switch(void *ignore,
4283 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004284{
4285 unsigned long long timestamp;
4286 int index;
4287
Steven Rostedtbe6f1642009-03-24 11:06:24 -04004288 /*
4289 * Does the user want to count the time a function was asleep.
4290 * If so, do not update the time stamps.
4291 */
4292 if (trace_flags & TRACE_ITER_SLEEP_TIME)
4293 return;
4294
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004295 timestamp = trace_clock_local();
4296
4297 prev->ftrace_timestamp = timestamp;
4298
4299 /* only process tasks that we timestamped */
4300 if (!next->ftrace_timestamp)
4301 return;
4302
4303 /*
4304 * Update all the counters in next to make up for the
4305 * time next was sleeping.
4306 */
4307 timestamp -= next->ftrace_timestamp;
4308
4309 for (index = next->curr_ret_stack; index >= 0; index--)
4310 next->ret_stack[index].calltime += timestamp;
4311}
4312
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004313/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004314static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004315{
4316 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004317 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004318
4319 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
4320 sizeof(struct ftrace_ret_stack *),
4321 GFP_KERNEL);
4322
4323 if (!ret_stack_list)
4324 return -ENOMEM;
4325
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004326 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04004327 for_each_online_cpu(cpu) {
4328 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05004329 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04004330 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004331
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004332 do {
4333 ret = alloc_retstack_tasklist(ret_stack_list);
4334 } while (ret == -EAGAIN);
4335
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004336 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04004337 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004338 if (ret)
4339 pr_info("ftrace_graph: Couldn't activate tracepoint"
4340 " probe to kernel_sched_switch\n");
4341 }
4342
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004343 kfree(ret_stack_list);
4344 return ret;
4345}
4346
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004347/*
4348 * Hibernation protection.
4349 * The state of the current task is too much unstable during
4350 * suspend/restore to disk. We want to protect against that.
4351 */
4352static int
4353ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
4354 void *unused)
4355{
4356 switch (state) {
4357 case PM_HIBERNATION_PREPARE:
4358 pause_graph_tracing();
4359 break;
4360
4361 case PM_POST_HIBERNATION:
4362 unpause_graph_tracing();
4363 break;
4364 }
4365 return NOTIFY_DONE;
4366}
4367
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004368int register_ftrace_graph(trace_func_graph_ret_t retfunc,
4369 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004370{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004371 int ret = 0;
4372
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004373 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004374
Steven Rostedt05ce5812009-03-24 00:18:31 -04004375 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04004376 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04004377 ret = -EBUSY;
4378 goto out;
4379 }
4380
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004381 ftrace_suspend_notifier.notifier_call = ftrace_suspend_notifier_call;
4382 register_pm_notifier(&ftrace_suspend_notifier);
4383
Steven Rostedt597af812009-04-03 15:24:12 -04004384 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004385 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004386 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04004387 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004388 goto out;
4389 }
Steven Rostedte53a6312008-11-26 00:16:25 -05004390
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004391 ftrace_graph_return = retfunc;
4392 ftrace_graph_entry = entryfunc;
Steven Rostedte53a6312008-11-26 00:16:25 -05004393
Steven Rostedta1cd6172011-05-23 15:24:25 -04004394 ret = ftrace_startup(&global_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004395
4396out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004397 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004398 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004399}
4400
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004401void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004402{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004403 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004404
Steven Rostedt597af812009-04-03 15:24:12 -04004405 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04004406 goto out;
4407
Steven Rostedt597af812009-04-03 15:24:12 -04004408 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004409 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05004410 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedtbd69c302011-05-03 21:55:54 -04004411 ftrace_shutdown(&global_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004412 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04004413 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004414
Steven Rostedt2aad1b72009-03-30 11:11:28 -04004415 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004416 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004417}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004418
Steven Rostedt868baf02011-02-10 21:26:13 -05004419static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
4420
4421static void
4422graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
4423{
4424 atomic_set(&t->tracing_graph_pause, 0);
4425 atomic_set(&t->trace_overrun, 0);
4426 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004427 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05004428 smp_wmb();
4429 t->ret_stack = ret_stack;
4430}
4431
4432/*
4433 * Allocate a return stack for the idle task. May be the first
4434 * time through, or it may be done by CPU hotplug online.
4435 */
4436void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
4437{
4438 t->curr_ret_stack = -1;
4439 /*
4440 * The idle task has no parent, it either has its own
4441 * stack or no stack at all.
4442 */
4443 if (t->ret_stack)
4444 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
4445
4446 if (ftrace_graph_active) {
4447 struct ftrace_ret_stack *ret_stack;
4448
4449 ret_stack = per_cpu(idle_ret_stack, cpu);
4450 if (!ret_stack) {
4451 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
4452 * sizeof(struct ftrace_ret_stack),
4453 GFP_KERNEL);
4454 if (!ret_stack)
4455 return;
4456 per_cpu(idle_ret_stack, cpu) = ret_stack;
4457 }
4458 graph_init_task(t, ret_stack);
4459 }
4460}
4461
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004462/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004463void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004464{
Steven Rostedt84047e32009-06-02 16:51:55 -04004465 /* Make sure we do not use the parent ret_stack */
4466 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05004467 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04004468
Steven Rostedt597af812009-04-03 15:24:12 -04004469 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04004470 struct ftrace_ret_stack *ret_stack;
4471
4472 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004473 * sizeof(struct ftrace_ret_stack),
4474 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04004475 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004476 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05004477 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04004478 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004479}
4480
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004481void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004482{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01004483 struct ftrace_ret_stack *ret_stack = t->ret_stack;
4484
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004485 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01004486 /* NULL must become visible to IRQs before we free it: */
4487 barrier();
4488
4489 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004490}
Steven Rostedt14a866c2008-12-02 23:50:02 -05004491
4492void ftrace_graph_stop(void)
4493{
4494 ftrace_stop();
4495}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004496#endif