blob: 655b432fb89075cc7d1b1023b754be292203e59f [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 Rostedt431aa3f2009-01-06 12:43:01 -0500986 int index;
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200987 struct dyn_ftrace records[];
David Milleraa5e5ce2008-05-13 22:06:56 -0700988};
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200989
990#define ENTRIES_PER_PAGE \
991 ((PAGE_SIZE - sizeof(struct ftrace_page)) / sizeof(struct dyn_ftrace))
992
993/* estimate from running different kernels */
994#define NR_TO_INIT 10000
995
996static struct ftrace_page *ftrace_pages_start;
997static struct ftrace_page *ftrace_pages;
998
Steven Rostedt37ad5082008-05-12 21:20:48 +0200999static struct dyn_ftrace *ftrace_free_records;
1000
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001001static struct ftrace_func_entry *
1002ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1003{
1004 unsigned long key;
1005 struct ftrace_func_entry *entry;
1006 struct hlist_head *hhd;
1007 struct hlist_node *n;
1008
1009 if (!hash->count)
1010 return NULL;
1011
1012 if (hash->size_bits > 0)
1013 key = hash_long(ip, hash->size_bits);
1014 else
1015 key = 0;
1016
1017 hhd = &hash->buckets[key];
1018
1019 hlist_for_each_entry_rcu(entry, n, hhd, hlist) {
1020 if (entry->ip == ip)
1021 return entry;
1022 }
1023 return NULL;
1024}
1025
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001026static void __add_hash_entry(struct ftrace_hash *hash,
1027 struct ftrace_func_entry *entry)
1028{
1029 struct hlist_head *hhd;
1030 unsigned long key;
1031
1032 if (hash->size_bits)
1033 key = hash_long(entry->ip, hash->size_bits);
1034 else
1035 key = 0;
1036
1037 hhd = &hash->buckets[key];
1038 hlist_add_head(&entry->hlist, hhd);
1039 hash->count++;
1040}
1041
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001042static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1043{
1044 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001045
1046 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1047 if (!entry)
1048 return -ENOMEM;
1049
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001050 entry->ip = ip;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001051 __add_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001052
1053 return 0;
1054}
1055
1056static void
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001057free_hash_entry(struct ftrace_hash *hash,
1058 struct ftrace_func_entry *entry)
1059{
1060 hlist_del(&entry->hlist);
1061 kfree(entry);
1062 hash->count--;
1063}
1064
1065static void
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001066remove_hash_entry(struct ftrace_hash *hash,
1067 struct ftrace_func_entry *entry)
1068{
1069 hlist_del(&entry->hlist);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001070 hash->count--;
1071}
1072
1073static void ftrace_hash_clear(struct ftrace_hash *hash)
1074{
1075 struct hlist_head *hhd;
1076 struct hlist_node *tp, *tn;
1077 struct ftrace_func_entry *entry;
1078 int size = 1 << hash->size_bits;
1079 int i;
1080
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001081 if (!hash->count)
1082 return;
1083
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001084 for (i = 0; i < size; i++) {
1085 hhd = &hash->buckets[i];
1086 hlist_for_each_entry_safe(entry, tp, tn, hhd, hlist)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001087 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001088 }
1089 FTRACE_WARN_ON(hash->count);
1090}
1091
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001092static void free_ftrace_hash(struct ftrace_hash *hash)
1093{
1094 if (!hash || hash == EMPTY_HASH)
1095 return;
1096 ftrace_hash_clear(hash);
1097 kfree(hash->buckets);
1098 kfree(hash);
1099}
1100
Steven Rostedt07fd5512011-05-05 18:03:47 -04001101static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1102{
1103 struct ftrace_hash *hash;
1104
1105 hash = container_of(rcu, struct ftrace_hash, rcu);
1106 free_ftrace_hash(hash);
1107}
1108
1109static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1110{
1111 if (!hash || hash == EMPTY_HASH)
1112 return;
1113 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1114}
1115
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001116static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1117{
1118 struct ftrace_hash *hash;
1119 int size;
1120
1121 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1122 if (!hash)
1123 return NULL;
1124
1125 size = 1 << size_bits;
1126 hash->buckets = kzalloc(sizeof(*hash->buckets) * size, GFP_KERNEL);
1127
1128 if (!hash->buckets) {
1129 kfree(hash);
1130 return NULL;
1131 }
1132
1133 hash->size_bits = size_bits;
1134
1135 return hash;
1136}
1137
1138static struct ftrace_hash *
1139alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1140{
1141 struct ftrace_func_entry *entry;
1142 struct ftrace_hash *new_hash;
1143 struct hlist_node *tp;
1144 int size;
1145 int ret;
1146 int i;
1147
1148 new_hash = alloc_ftrace_hash(size_bits);
1149 if (!new_hash)
1150 return NULL;
1151
1152 /* Empty hash? */
1153 if (!hash || !hash->count)
1154 return new_hash;
1155
1156 size = 1 << hash->size_bits;
1157 for (i = 0; i < size; i++) {
1158 hlist_for_each_entry(entry, tp, &hash->buckets[i], hlist) {
1159 ret = add_hash_entry(new_hash, entry->ip);
1160 if (ret < 0)
1161 goto free_hash;
1162 }
1163 }
1164
1165 FTRACE_WARN_ON(new_hash->count != hash->count);
1166
1167 return new_hash;
1168
1169 free_hash:
1170 free_ftrace_hash(new_hash);
1171 return NULL;
1172}
1173
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001174static void
1175ftrace_hash_rec_disable(struct ftrace_ops *ops, int filter_hash);
1176static void
1177ftrace_hash_rec_enable(struct ftrace_ops *ops, int filter_hash);
1178
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001179static int
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001180ftrace_hash_move(struct ftrace_ops *ops, int enable,
1181 struct ftrace_hash **dst, struct ftrace_hash *src)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001182{
1183 struct ftrace_func_entry *entry;
1184 struct hlist_node *tp, *tn;
1185 struct hlist_head *hhd;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001186 struct ftrace_hash *old_hash;
1187 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001188 unsigned long key;
1189 int size = src->count;
1190 int bits = 0;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001191 int ret;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001192 int i;
1193
1194 /*
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001195 * Remove the current set, update the hash and add
1196 * them back.
1197 */
1198 ftrace_hash_rec_disable(ops, enable);
1199
1200 /*
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001201 * If the new source is empty, just free dst and assign it
1202 * the empty_hash.
1203 */
1204 if (!src->count) {
Steven Rostedt07fd5512011-05-05 18:03:47 -04001205 free_ftrace_hash_rcu(*dst);
1206 rcu_assign_pointer(*dst, EMPTY_HASH);
Steven Rostedtd4d34b92011-11-04 20:32:39 -04001207 /* still need to update the function records */
1208 ret = 0;
1209 goto out;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001210 }
1211
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001212 /*
1213 * Make the hash size about 1/2 the # found
1214 */
1215 for (size /= 2; size; size >>= 1)
1216 bits++;
1217
1218 /* Don't allocate too much */
1219 if (bits > FTRACE_HASH_MAX_BITS)
1220 bits = FTRACE_HASH_MAX_BITS;
1221
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001222 ret = -ENOMEM;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001223 new_hash = alloc_ftrace_hash(bits);
1224 if (!new_hash)
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001225 goto out;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001226
1227 size = 1 << src->size_bits;
1228 for (i = 0; i < size; i++) {
1229 hhd = &src->buckets[i];
1230 hlist_for_each_entry_safe(entry, tp, tn, hhd, hlist) {
1231 if (bits > 0)
1232 key = hash_long(entry->ip, bits);
1233 else
1234 key = 0;
1235 remove_hash_entry(src, entry);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001236 __add_hash_entry(new_hash, entry);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001237 }
1238 }
1239
Steven Rostedt07fd5512011-05-05 18:03:47 -04001240 old_hash = *dst;
1241 rcu_assign_pointer(*dst, new_hash);
1242 free_ftrace_hash_rcu(old_hash);
1243
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001244 ret = 0;
1245 out:
1246 /*
1247 * Enable regardless of ret:
1248 * On success, we enable the new hash.
1249 * On failure, we re-enable the original hash.
1250 */
1251 ftrace_hash_rec_enable(ops, enable);
1252
1253 return ret;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001254}
1255
Steven Rostedt265c8312009-02-13 12:43:56 -05001256/*
Steven Rostedtb8489142011-05-04 09:27:52 -04001257 * Test the hashes for this ops to see if we want to call
1258 * the ops->func or not.
1259 *
1260 * It's a match if the ip is in the ops->filter_hash or
1261 * the filter_hash does not exist or is empty,
1262 * AND
1263 * the ip is not in the ops->notrace_hash.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04001264 *
1265 * This needs to be called with preemption disabled as
1266 * the hashes are freed with call_rcu_sched().
Steven Rostedtb8489142011-05-04 09:27:52 -04001267 */
1268static int
1269ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip)
1270{
1271 struct ftrace_hash *filter_hash;
1272 struct ftrace_hash *notrace_hash;
1273 int ret;
1274
Steven Rostedtb8489142011-05-04 09:27:52 -04001275 filter_hash = rcu_dereference_raw(ops->filter_hash);
1276 notrace_hash = rcu_dereference_raw(ops->notrace_hash);
1277
1278 if ((!filter_hash || !filter_hash->count ||
1279 ftrace_lookup_ip(filter_hash, ip)) &&
1280 (!notrace_hash || !notrace_hash->count ||
1281 !ftrace_lookup_ip(notrace_hash, ip)))
1282 ret = 1;
1283 else
1284 ret = 0;
Steven Rostedtb8489142011-05-04 09:27:52 -04001285
1286 return ret;
1287}
1288
1289/*
Steven Rostedt265c8312009-02-13 12:43:56 -05001290 * This is a double for. Do not use 'break' to break out of the loop,
1291 * you must use a goto.
1292 */
1293#define do_for_each_ftrace_rec(pg, rec) \
1294 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1295 int _____i; \
1296 for (_____i = 0; _____i < pg->index; _____i++) { \
1297 rec = &pg->records[_____i];
1298
1299#define while_for_each_ftrace_rec() \
1300 } \
1301 }
Abhishek Sagarecea6562008-06-21 23:47:53 +05301302
Steven Rostedtc88fd862011-08-16 09:53:39 -04001303/**
1304 * ftrace_location - return true if the ip giving is a traced location
1305 * @ip: the instruction pointer to check
1306 *
1307 * Returns 1 if @ip given is a pointer to a ftrace location.
1308 * That is, the instruction that is either a NOP or call to
1309 * the function tracer. It checks the ftrace internal tables to
1310 * determine if the address belongs or not.
1311 */
1312int ftrace_location(unsigned long ip)
1313{
1314 struct ftrace_page *pg;
1315 struct dyn_ftrace *rec;
1316
1317 do_for_each_ftrace_rec(pg, rec) {
1318 if (rec->ip == ip)
1319 return 1;
1320 } while_for_each_ftrace_rec();
1321
1322 return 0;
1323}
1324
Steven Rostedted926f92011-05-03 13:25:24 -04001325static void __ftrace_hash_rec_update(struct ftrace_ops *ops,
1326 int filter_hash,
1327 bool inc)
1328{
1329 struct ftrace_hash *hash;
1330 struct ftrace_hash *other_hash;
1331 struct ftrace_page *pg;
1332 struct dyn_ftrace *rec;
1333 int count = 0;
1334 int all = 0;
1335
1336 /* Only update if the ops has been registered */
1337 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1338 return;
1339
1340 /*
1341 * In the filter_hash case:
1342 * If the count is zero, we update all records.
1343 * Otherwise we just update the items in the hash.
1344 *
1345 * In the notrace_hash case:
1346 * We enable the update in the hash.
1347 * As disabling notrace means enabling the tracing,
1348 * and enabling notrace means disabling, the inc variable
1349 * gets inversed.
1350 */
1351 if (filter_hash) {
1352 hash = ops->filter_hash;
1353 other_hash = ops->notrace_hash;
Steven Rostedtb8489142011-05-04 09:27:52 -04001354 if (!hash || !hash->count)
Steven Rostedted926f92011-05-03 13:25:24 -04001355 all = 1;
1356 } else {
1357 inc = !inc;
1358 hash = ops->notrace_hash;
1359 other_hash = ops->filter_hash;
1360 /*
1361 * If the notrace hash has no items,
1362 * then there's nothing to do.
1363 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001364 if (hash && !hash->count)
Steven Rostedted926f92011-05-03 13:25:24 -04001365 return;
1366 }
1367
1368 do_for_each_ftrace_rec(pg, rec) {
1369 int in_other_hash = 0;
1370 int in_hash = 0;
1371 int match = 0;
1372
1373 if (all) {
1374 /*
1375 * Only the filter_hash affects all records.
1376 * Update if the record is not in the notrace hash.
1377 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001378 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
Steven Rostedted926f92011-05-03 13:25:24 -04001379 match = 1;
1380 } else {
Steven Rostedtb8489142011-05-04 09:27:52 -04001381 in_hash = hash && !!ftrace_lookup_ip(hash, rec->ip);
1382 in_other_hash = other_hash && !!ftrace_lookup_ip(other_hash, rec->ip);
Steven Rostedted926f92011-05-03 13:25:24 -04001383
1384 /*
1385 *
1386 */
1387 if (filter_hash && in_hash && !in_other_hash)
1388 match = 1;
1389 else if (!filter_hash && in_hash &&
1390 (in_other_hash || !other_hash->count))
1391 match = 1;
1392 }
1393 if (!match)
1394 continue;
1395
1396 if (inc) {
1397 rec->flags++;
1398 if (FTRACE_WARN_ON((rec->flags & ~FTRACE_FL_MASK) == FTRACE_REF_MAX))
1399 return;
1400 } else {
1401 if (FTRACE_WARN_ON((rec->flags & ~FTRACE_FL_MASK) == 0))
1402 return;
1403 rec->flags--;
1404 }
1405 count++;
1406 /* Shortcut, if we handled all records, we are done. */
1407 if (!all && count == hash->count)
1408 return;
1409 } while_for_each_ftrace_rec();
1410}
1411
1412static void ftrace_hash_rec_disable(struct ftrace_ops *ops,
1413 int filter_hash)
1414{
1415 __ftrace_hash_rec_update(ops, filter_hash, 0);
1416}
1417
1418static void ftrace_hash_rec_enable(struct ftrace_ops *ops,
1419 int filter_hash)
1420{
1421 __ftrace_hash_rec_update(ops, filter_hash, 1);
1422}
1423
Ingo Molnare309b412008-05-12 21:20:51 +02001424static void ftrace_free_rec(struct dyn_ftrace *rec)
Steven Rostedt37ad5082008-05-12 21:20:48 +02001425{
Lai Jiangshanee000b72009-03-24 13:38:06 +08001426 rec->freelist = ftrace_free_records;
Steven Rostedt37ad5082008-05-12 21:20:48 +02001427 ftrace_free_records = rec;
1428 rec->flags |= FTRACE_FL_FREE;
1429}
1430
Ingo Molnare309b412008-05-12 21:20:51 +02001431static struct dyn_ftrace *ftrace_alloc_dyn_node(unsigned long ip)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001432{
Steven Rostedt37ad5082008-05-12 21:20:48 +02001433 struct dyn_ftrace *rec;
1434
1435 /* First check for freed records */
1436 if (ftrace_free_records) {
1437 rec = ftrace_free_records;
1438
Steven Rostedt37ad5082008-05-12 21:20:48 +02001439 if (unlikely(!(rec->flags & FTRACE_FL_FREE))) {
Steven Rostedt69128962008-10-23 09:33:03 -04001440 FTRACE_WARN_ON_ONCE(1);
Steven Rostedt37ad5082008-05-12 21:20:48 +02001441 ftrace_free_records = NULL;
1442 return NULL;
1443 }
1444
Lai Jiangshanee000b72009-03-24 13:38:06 +08001445 ftrace_free_records = rec->freelist;
Steven Rostedt37ad5082008-05-12 21:20:48 +02001446 memset(rec, 0, sizeof(*rec));
1447 return rec;
1448 }
1449
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001450 if (ftrace_pages->index == ENTRIES_PER_PAGE) {
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001451 if (!ftrace_pages->next) {
1452 /* allocate another page */
1453 ftrace_pages->next =
1454 (void *)get_zeroed_page(GFP_KERNEL);
1455 if (!ftrace_pages->next)
1456 return NULL;
1457 }
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001458 ftrace_pages = ftrace_pages->next;
1459 }
1460
1461 return &ftrace_pages->records[ftrace_pages->index++];
1462}
1463
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001464static struct dyn_ftrace *
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001465ftrace_record_ip(unsigned long ip)
Steven Rostedt3d083392008-05-12 21:20:42 +02001466{
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001467 struct dyn_ftrace *rec;
Steven Rostedt3d083392008-05-12 21:20:42 +02001468
Steven Rostedtf3c7ac42008-11-14 16:21:19 -08001469 if (ftrace_disabled)
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001470 return NULL;
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001471
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001472 rec = ftrace_alloc_dyn_node(ip);
1473 if (!rec)
1474 return NULL;
Steven Rostedt3d083392008-05-12 21:20:42 +02001475
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001476 rec->ip = ip;
Lai Jiangshanee000b72009-03-24 13:38:06 +08001477 rec->newlist = ftrace_new_addrs;
Lai Jiangshane94142a2009-03-13 17:51:27 +08001478 ftrace_new_addrs = rec;
Steven Rostedt3d083392008-05-12 21:20:42 +02001479
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001480 return rec;
Steven Rostedt3d083392008-05-12 21:20:42 +02001481}
1482
Steven Rostedt05736a42008-09-22 14:55:47 -07001483static void print_ip_ins(const char *fmt, unsigned char *p)
1484{
1485 int i;
1486
1487 printk(KERN_CONT "%s", fmt);
1488
1489 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1490 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1491}
1492
Steven Rostedtc88fd862011-08-16 09:53:39 -04001493/**
1494 * ftrace_bug - report and shutdown function tracer
1495 * @failed: The failed type (EFAULT, EINVAL, EPERM)
1496 * @ip: The address that failed
1497 *
1498 * The arch code that enables or disables the function tracing
1499 * can call ftrace_bug() when it has detected a problem in
1500 * modifying the code. @failed should be one of either:
1501 * EFAULT - if the problem happens on reading the @ip address
1502 * EINVAL - if what is read at @ip is not what was expected
1503 * EPERM - if the problem happens on writting to the @ip address
1504 */
1505void ftrace_bug(int failed, unsigned long ip)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001506{
1507 switch (failed) {
1508 case -EFAULT:
1509 FTRACE_WARN_ON_ONCE(1);
1510 pr_info("ftrace faulted on modifying ");
1511 print_ip_sym(ip);
1512 break;
1513 case -EINVAL:
1514 FTRACE_WARN_ON_ONCE(1);
1515 pr_info("ftrace failed to modify ");
1516 print_ip_sym(ip);
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001517 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001518 printk(KERN_CONT "\n");
1519 break;
1520 case -EPERM:
1521 FTRACE_WARN_ON_ONCE(1);
1522 pr_info("ftrace faulted on writing ");
1523 print_ip_sym(ip);
1524 break;
1525 default:
1526 FTRACE_WARN_ON_ONCE(1);
1527 pr_info("ftrace faulted on unknown error ");
1528 print_ip_sym(ip);
1529 }
1530}
1531
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001532
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -05001533/* Return 1 if the address range is reserved for ftrace */
1534int ftrace_text_reserved(void *start, void *end)
1535{
1536 struct dyn_ftrace *rec;
1537 struct ftrace_page *pg;
1538
1539 do_for_each_ftrace_rec(pg, rec) {
1540 if (rec->ip <= (unsigned long)end &&
1541 rec->ip + MCOUNT_INSN_SIZE > (unsigned long)start)
1542 return 1;
1543 } while_for_each_ftrace_rec();
1544 return 0;
1545}
1546
Steven Rostedtc88fd862011-08-16 09:53:39 -04001547static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02001548{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001549 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01001550
Steven Rostedt982c3502008-11-15 16:31:41 -05001551 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001552 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05001553 *
Steven Rostedted926f92011-05-03 13:25:24 -04001554 * If the record has a ref count, then we need to enable it
1555 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05001556 *
Steven Rostedted926f92011-05-03 13:25:24 -04001557 * Otherwise we make sure its disabled.
1558 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001559 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04001560 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05001561 */
Steven Rostedtc88fd862011-08-16 09:53:39 -04001562 if (enable && (rec->flags & ~FTRACE_FL_MASK))
Steven Rostedted926f92011-05-03 13:25:24 -04001563 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02001564
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001565 /* If the state of this record hasn't changed, then do nothing */
1566 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001567 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001568
1569 if (flag) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04001570 if (update)
1571 rec->flags |= FTRACE_FL_ENABLED;
1572 return FTRACE_UPDATE_MAKE_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001573 }
1574
Steven Rostedtc88fd862011-08-16 09:53:39 -04001575 if (update)
1576 rec->flags &= ~FTRACE_FL_ENABLED;
1577
1578 return FTRACE_UPDATE_MAKE_NOP;
1579}
1580
1581/**
1582 * ftrace_update_record, set a record that now is tracing or not
1583 * @rec: the record to update
1584 * @enable: set to 1 if the record is tracing, zero to force disable
1585 *
1586 * The records that represent all functions that can be traced need
1587 * to be updated when tracing has been enabled.
1588 */
1589int ftrace_update_record(struct dyn_ftrace *rec, int enable)
1590{
1591 return ftrace_check_record(rec, enable, 1);
1592}
1593
1594/**
1595 * ftrace_test_record, check if the record has been enabled or not
1596 * @rec: the record to test
1597 * @enable: set to 1 to check if enabled, 0 if it is disabled
1598 *
1599 * The arch code may need to test if a record is already set to
1600 * tracing to determine how to modify the function code that it
1601 * represents.
1602 */
1603int ftrace_test_record(struct dyn_ftrace *rec, int enable)
1604{
1605 return ftrace_check_record(rec, enable, 0);
1606}
1607
1608static int
1609__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
1610{
1611 unsigned long ftrace_addr;
1612 int ret;
1613
1614 ftrace_addr = (unsigned long)FTRACE_ADDR;
1615
1616 ret = ftrace_update_record(rec, enable);
1617
1618 switch (ret) {
1619 case FTRACE_UPDATE_IGNORE:
1620 return 0;
1621
1622 case FTRACE_UPDATE_MAKE_CALL:
1623 return ftrace_make_call(rec, ftrace_addr);
1624
1625 case FTRACE_UPDATE_MAKE_NOP:
1626 return ftrace_make_nop(NULL, rec, ftrace_addr);
1627 }
1628
1629 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02001630}
1631
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001632static void ftrace_replace_code(int update)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001633{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001634 struct dyn_ftrace *rec;
1635 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05001636 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001637
Steven Rostedt45a4a232011-04-21 23:16:46 -04001638 if (unlikely(ftrace_disabled))
1639 return;
1640
Steven Rostedt265c8312009-02-13 12:43:56 -05001641 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtd2c8c3e2011-04-25 14:32:42 -04001642 /* Skip over free records */
1643 if (rec->flags & FTRACE_FL_FREE)
Steven Rostedt265c8312009-02-13 12:43:56 -05001644 continue;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001645
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001646 failed = __ftrace_replace_code(rec, update);
Zhaoleifa9d13c2009-03-13 17:16:34 +08001647 if (failed) {
Steven Rostedt3279ba32009-10-07 16:57:56 -04001648 ftrace_bug(failed, rec->ip);
1649 /* Stop processing */
1650 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05001651 }
1652 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001653}
1654
Steven Rostedtc88fd862011-08-16 09:53:39 -04001655struct ftrace_rec_iter {
1656 struct ftrace_page *pg;
1657 int index;
1658};
1659
1660/**
1661 * ftrace_rec_iter_start, start up iterating over traced functions
1662 *
1663 * Returns an iterator handle that is used to iterate over all
1664 * the records that represent address locations where functions
1665 * are traced.
1666 *
1667 * May return NULL if no records are available.
1668 */
1669struct ftrace_rec_iter *ftrace_rec_iter_start(void)
1670{
1671 /*
1672 * We only use a single iterator.
1673 * Protected by the ftrace_lock mutex.
1674 */
1675 static struct ftrace_rec_iter ftrace_rec_iter;
1676 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
1677
1678 iter->pg = ftrace_pages_start;
1679 iter->index = 0;
1680
1681 /* Could have empty pages */
1682 while (iter->pg && !iter->pg->index)
1683 iter->pg = iter->pg->next;
1684
1685 if (!iter->pg)
1686 return NULL;
1687
1688 return iter;
1689}
1690
1691/**
1692 * ftrace_rec_iter_next, get the next record to process.
1693 * @iter: The handle to the iterator.
1694 *
1695 * Returns the next iterator after the given iterator @iter.
1696 */
1697struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
1698{
1699 iter->index++;
1700
1701 if (iter->index >= iter->pg->index) {
1702 iter->pg = iter->pg->next;
1703 iter->index = 0;
1704
1705 /* Could have empty pages */
1706 while (iter->pg && !iter->pg->index)
1707 iter->pg = iter->pg->next;
1708 }
1709
1710 if (!iter->pg)
1711 return NULL;
1712
1713 return iter;
1714}
1715
1716/**
1717 * ftrace_rec_iter_record, get the record at the iterator location
1718 * @iter: The current iterator location
1719 *
1720 * Returns the record that the current @iter is at.
1721 */
1722struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
1723{
1724 return &iter->pg->records[iter->index];
1725}
1726
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301727static int
Steven Rostedt31e88902008-11-14 16:21:19 -08001728ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001729{
1730 unsigned long ip;
Steven Rostedt593eb8a2008-10-23 09:32:59 -04001731 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001732
1733 ip = rec->ip;
1734
Steven Rostedt45a4a232011-04-21 23:16:46 -04001735 if (unlikely(ftrace_disabled))
1736 return 0;
1737
Shaohua Li25aac9d2009-01-09 11:29:40 +08001738 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04001739 if (ret) {
Steven Rostedt31e88902008-11-14 16:21:19 -08001740 ftrace_bug(ret, ip);
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301741 return 0;
Steven Rostedt37ad5082008-05-12 21:20:48 +02001742 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301743 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001744}
1745
Steven Rostedt000ab692009-02-17 13:35:06 -05001746/*
1747 * archs can override this function if they must do something
1748 * before the modifying code is performed.
1749 */
1750int __weak ftrace_arch_code_modify_prepare(void)
1751{
1752 return 0;
1753}
1754
1755/*
1756 * archs can override this function if they must do something
1757 * after the modifying code is performed.
1758 */
1759int __weak ftrace_arch_code_modify_post_process(void)
1760{
1761 return 0;
1762}
1763
Ingo Molnare309b412008-05-12 21:20:51 +02001764static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02001765{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001766 int *command = data;
1767
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001768 if (*command & FTRACE_UPDATE_CALLS)
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001769 ftrace_replace_code(1);
Steven Rostedta3583242008-11-11 15:01:42 -05001770 else if (*command & FTRACE_DISABLE_CALLS)
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001771 ftrace_replace_code(0);
1772
1773 if (*command & FTRACE_UPDATE_TRACE_FUNC)
1774 ftrace_update_ftrace_func(ftrace_trace_function);
1775
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05001776 if (*command & FTRACE_START_FUNC_RET)
1777 ftrace_enable_ftrace_graph_caller();
1778 else if (*command & FTRACE_STOP_FUNC_RET)
1779 ftrace_disable_ftrace_graph_caller();
1780
Steven Rostedtc88fd862011-08-16 09:53:39 -04001781 return 0;
1782}
1783
1784/**
1785 * ftrace_run_stop_machine, go back to the stop machine method
1786 * @command: The command to tell ftrace what to do
1787 *
1788 * If an arch needs to fall back to the stop machine method, the
1789 * it can call this function.
1790 */
1791void ftrace_run_stop_machine(int command)
1792{
1793 stop_machine(__ftrace_modify_code, &command, NULL);
1794}
1795
1796/**
1797 * arch_ftrace_update_code, modify the code to trace or not trace
1798 * @command: The command that needs to be done
1799 *
1800 * Archs can override this function if it does not need to
1801 * run stop_machine() to modify code.
1802 */
1803void __weak arch_ftrace_update_code(int command)
1804{
1805 ftrace_run_stop_machine(command);
1806}
1807
1808static void ftrace_run_update_code(int command)
1809{
1810 int ret;
1811
1812 ret = ftrace_arch_code_modify_prepare();
1813 FTRACE_WARN_ON(ret);
1814 if (ret)
1815 return;
1816 /*
1817 * Do not call function tracer while we update the code.
1818 * We are in stop machine.
1819 */
1820 function_trace_stop++;
1821
1822 /*
1823 * By default we use stop_machine() to modify the code.
1824 * But archs can do what ever they want as long as it
1825 * is safe. The stop_machine() is the safest, but also
1826 * produces the most overhead.
1827 */
1828 arch_ftrace_update_code(command);
1829
Steven Rostedt6331c282011-07-13 15:11:02 -04001830#ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
1831 /*
1832 * For archs that call ftrace_test_stop_func(), we must
1833 * wait till after we update all the function callers
1834 * before we update the callback. This keeps different
1835 * ops that record different functions from corrupting
1836 * each other.
1837 */
1838 __ftrace_trace_function = __ftrace_trace_function_delay;
1839#endif
1840 function_trace_stop--;
1841
Steven Rostedt000ab692009-02-17 13:35:06 -05001842 ret = ftrace_arch_code_modify_post_process();
1843 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02001844}
1845
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001846static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001847static int ftrace_start_up;
Steven Rostedtb8489142011-05-04 09:27:52 -04001848static int global_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05001849
1850static void ftrace_startup_enable(int command)
1851{
1852 if (saved_ftrace_func != ftrace_trace_function) {
1853 saved_ftrace_func = ftrace_trace_function;
1854 command |= FTRACE_UPDATE_TRACE_FUNC;
1855 }
1856
1857 if (!command || !ftrace_enabled)
1858 return;
1859
1860 ftrace_run_update_code(command);
1861}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001862
Steven Rostedta1cd6172011-05-23 15:24:25 -04001863static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02001864{
Steven Rostedtb8489142011-05-04 09:27:52 -04001865 bool hash_enable = true;
1866
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001867 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04001868 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001869
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001870 ftrace_start_up++;
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001871 command |= FTRACE_UPDATE_CALLS;
Steven Rostedt3d083392008-05-12 21:20:42 +02001872
Steven Rostedtb8489142011-05-04 09:27:52 -04001873 /* ops marked global share the filter hashes */
1874 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
1875 ops = &global_ops;
1876 /* Don't update hash if global is already set */
1877 if (global_start_up)
1878 hash_enable = false;
1879 global_start_up++;
1880 }
1881
Steven Rostedted926f92011-05-03 13:25:24 -04001882 ops->flags |= FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04001883 if (hash_enable)
Steven Rostedted926f92011-05-03 13:25:24 -04001884 ftrace_hash_rec_enable(ops, 1);
1885
Steven Rostedtdf4fc312008-11-26 00:16:23 -05001886 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04001887
1888 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02001889}
1890
Steven Rostedtbd69c302011-05-03 21:55:54 -04001891static void ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02001892{
Steven Rostedtb8489142011-05-04 09:27:52 -04001893 bool hash_disable = true;
1894
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001895 if (unlikely(ftrace_disabled))
1896 return;
1897
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001898 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02001899 /*
1900 * Just warn in case of unbalance, no need to kill ftrace, it's not
1901 * critical but the ftrace_call callers may be never nopped again after
1902 * further ftrace uses.
1903 */
1904 WARN_ON_ONCE(ftrace_start_up < 0);
1905
Steven Rostedtb8489142011-05-04 09:27:52 -04001906 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
1907 ops = &global_ops;
1908 global_start_up--;
1909 WARN_ON_ONCE(global_start_up < 0);
1910 /* Don't update hash if global still has users */
1911 if (global_start_up) {
1912 WARN_ON_ONCE(!ftrace_start_up);
1913 hash_disable = false;
1914 }
1915 }
1916
1917 if (hash_disable)
Steven Rostedted926f92011-05-03 13:25:24 -04001918 ftrace_hash_rec_disable(ops, 1);
1919
Steven Rostedtb8489142011-05-04 09:27:52 -04001920 if (ops != &global_ops || !global_start_up)
Steven Rostedted926f92011-05-03 13:25:24 -04001921 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04001922
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001923 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001924
1925 if (saved_ftrace_func != ftrace_trace_function) {
1926 saved_ftrace_func = ftrace_trace_function;
1927 command |= FTRACE_UPDATE_TRACE_FUNC;
1928 }
1929
1930 if (!command || !ftrace_enabled)
Steven Rostedte6ea44e2009-02-14 01:42:44 -05001931 return;
Steven Rostedt3d083392008-05-12 21:20:42 +02001932
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001933 ftrace_run_update_code(command);
Steven Rostedt3d083392008-05-12 21:20:42 +02001934}
1935
Ingo Molnare309b412008-05-12 21:20:51 +02001936static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001937{
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001938 if (unlikely(ftrace_disabled))
1939 return;
1940
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001941 /* Force update next time */
1942 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001943 /* ftrace_start_up is true if we want ftrace running */
1944 if (ftrace_start_up)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001945 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001946}
1947
Ingo Molnare309b412008-05-12 21:20:51 +02001948static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001949{
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001950 if (unlikely(ftrace_disabled))
1951 return;
1952
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001953 /* ftrace_start_up is true if ftrace is running */
1954 if (ftrace_start_up)
Steven Rostedt79e406d2010-09-14 22:19:46 -04001955 ftrace_run_update_code(FTRACE_DISABLE_CALLS);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001956}
1957
Steven Rostedt3d083392008-05-12 21:20:42 +02001958static cycle_t ftrace_update_time;
1959static unsigned long ftrace_update_cnt;
1960unsigned long ftrace_update_tot_cnt;
1961
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04001962static int ops_traces_mod(struct ftrace_ops *ops)
1963{
1964 struct ftrace_hash *hash;
1965
1966 hash = ops->filter_hash;
1967 return !!(!hash || !hash->count);
1968}
1969
Steven Rostedt31e88902008-11-14 16:21:19 -08001970static int ftrace_update_code(struct module *mod)
Steven Rostedt3d083392008-05-12 21:20:42 +02001971{
Lai Jiangshane94142a2009-03-13 17:51:27 +08001972 struct dyn_ftrace *p;
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05301973 cycle_t start, stop;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04001974 unsigned long ref = 0;
1975
1976 /*
1977 * When adding a module, we need to check if tracers are
1978 * currently enabled and if they are set to trace all functions.
1979 * If they are, we need to enable the module functions as well
1980 * as update the reference counts for those function records.
1981 */
1982 if (mod) {
1983 struct ftrace_ops *ops;
1984
1985 for (ops = ftrace_ops_list;
1986 ops != &ftrace_list_end; ops = ops->next) {
1987 if (ops->flags & FTRACE_OPS_FL_ENABLED &&
1988 ops_traces_mod(ops))
1989 ref++;
1990 }
1991 }
Steven Rostedt3d083392008-05-12 21:20:42 +02001992
Ingo Molnar750ed1a2008-05-12 21:20:46 +02001993 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02001994 ftrace_update_cnt = 0;
1995
Lai Jiangshane94142a2009-03-13 17:51:27 +08001996 while (ftrace_new_addrs) {
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05301997
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001998 /* If something went wrong, bail without enabling anything */
1999 if (unlikely(ftrace_disabled))
2000 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02002001
Lai Jiangshane94142a2009-03-13 17:51:27 +08002002 p = ftrace_new_addrs;
Lai Jiangshanee000b72009-03-24 13:38:06 +08002003 ftrace_new_addrs = p->newlist;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002004 p->flags = ref;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05302005
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002006 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002007 * Do the initial record conversion from mcount jump
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002008 * to the NOP instructions.
2009 */
2010 if (!ftrace_code_disable(mod, p)) {
Steven Rostedt08f5ac902008-10-23 09:33:07 -04002011 ftrace_free_rec(p);
Steven Rostedtd2c8c3e2011-04-25 14:32:42 -04002012 /* Game over */
2013 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002014 }
2015
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002016 ftrace_update_cnt++;
2017
2018 /*
2019 * If the tracing is enabled, go ahead and enable the record.
2020 *
2021 * The reason not to enable the record immediatelly is the
2022 * inherent check of ftrace_make_nop/ftrace_make_call for
2023 * correct previous instructions. Making first the NOP
2024 * conversion puts the module to the correct state, thus
2025 * passing the ftrace_make_call check.
2026 */
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002027 if (ftrace_start_up && ref) {
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002028 int failed = __ftrace_replace_code(p, 1);
2029 if (failed) {
2030 ftrace_bug(failed, p->ip);
2031 ftrace_free_rec(p);
2032 }
2033 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002034 }
2035
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002036 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002037 ftrace_update_time = stop - start;
2038 ftrace_update_tot_cnt += ftrace_update_cnt;
2039
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02002040 return 0;
2041}
2042
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002043static int __init ftrace_dyn_table_alloc(unsigned long num_to_init)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002044{
2045 struct ftrace_page *pg;
2046 int cnt;
2047 int i;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002048
2049 /* allocate a few pages */
2050 ftrace_pages_start = (void *)get_zeroed_page(GFP_KERNEL);
2051 if (!ftrace_pages_start)
2052 return -1;
2053
2054 /*
2055 * Allocate a few more pages.
2056 *
2057 * TODO: have some parser search vmlinux before
2058 * final linking to find all calls to ftrace.
2059 * Then we can:
2060 * a) know how many pages to allocate.
2061 * and/or
2062 * b) set up the table then.
2063 *
2064 * The dynamic code is still necessary for
2065 * modules.
2066 */
2067
2068 pg = ftrace_pages = ftrace_pages_start;
2069
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002070 cnt = num_to_init / ENTRIES_PER_PAGE;
Steven Rostedt08f5ac902008-10-23 09:33:07 -04002071 pr_info("ftrace: allocating %ld entries in %d pages\n",
walimis5821e1b2008-11-15 15:19:06 +08002072 num_to_init, cnt + 1);
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002073
2074 for (i = 0; i < cnt; i++) {
2075 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
2076
2077 /* If we fail, we'll try later anyway */
2078 if (!pg->next)
2079 break;
2080
2081 pg = pg->next;
2082 }
2083
2084 return 0;
2085}
2086
Steven Rostedt5072c592008-05-12 21:20:43 +02002087enum {
2088 FTRACE_ITER_FILTER = (1 << 0),
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002089 FTRACE_ITER_NOTRACE = (1 << 1),
Steven Rostedt3499e462011-04-21 22:59:12 -04002090 FTRACE_ITER_PRINTALL = (1 << 2),
2091 FTRACE_ITER_HASH = (1 << 3),
Steven Rostedt647bcd02011-05-03 14:39:21 -04002092 FTRACE_ITER_ENABLED = (1 << 4),
Steven Rostedt5072c592008-05-12 21:20:43 +02002093};
2094
2095#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
2096
2097struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002098 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002099 loff_t func_pos;
2100 struct ftrace_page *pg;
2101 struct dyn_ftrace *func;
2102 struct ftrace_func_probe *probe;
2103 struct trace_parser parser;
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002104 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002105 struct ftrace_ops *ops;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002106 int hidx;
2107 int idx;
2108 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02002109};
2110
Ingo Molnare309b412008-05-12 21:20:51 +02002111static void *
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002112t_hash_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002113{
2114 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002115 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002116 struct hlist_head *hhd;
2117
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002118 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002119 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002120
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002121 if (iter->probe)
2122 hnd = &iter->probe->node;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002123 retry:
2124 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
2125 return NULL;
2126
2127 hhd = &ftrace_func_hash[iter->hidx];
2128
2129 if (hlist_empty(hhd)) {
2130 iter->hidx++;
2131 hnd = NULL;
2132 goto retry;
2133 }
2134
2135 if (!hnd)
2136 hnd = hhd->first;
2137 else {
2138 hnd = hnd->next;
2139 if (!hnd) {
2140 iter->hidx++;
2141 goto retry;
2142 }
2143 }
2144
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002145 if (WARN_ON_ONCE(!hnd))
2146 return NULL;
2147
2148 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
2149
2150 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002151}
2152
2153static void *t_hash_start(struct seq_file *m, loff_t *pos)
2154{
2155 struct ftrace_iterator *iter = m->private;
2156 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08002157 loff_t l;
2158
Steven Rostedt2bccfff2010-09-09 08:43:22 -04002159 if (iter->func_pos > *pos)
2160 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002161
Li Zefand82d6242009-06-24 09:54:54 +08002162 iter->hidx = 0;
Steven Rostedt2bccfff2010-09-09 08:43:22 -04002163 for (l = 0; l <= (*pos - iter->func_pos); ) {
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002164 p = t_hash_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08002165 if (!p)
2166 break;
2167 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002168 if (!p)
2169 return NULL;
2170
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002171 /* Only set this if we have an item */
2172 iter->flags |= FTRACE_ITER_HASH;
2173
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002174 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002175}
2176
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002177static int
2178t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002179{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002180 struct ftrace_func_probe *rec;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002181
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002182 rec = iter->probe;
2183 if (WARN_ON_ONCE(!rec))
2184 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002185
Steven Rostedt809dcf22009-02-16 23:06:01 -05002186 if (rec->ops->print)
2187 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
2188
Steven Rostedtb375a112009-09-17 00:05:58 -04002189 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002190
2191 if (rec->data)
2192 seq_printf(m, ":%p", rec->data);
2193 seq_putc(m, '\n');
2194
2195 return 0;
2196}
2197
2198static void *
Steven Rostedt5072c592008-05-12 21:20:43 +02002199t_next(struct seq_file *m, void *v, loff_t *pos)
2200{
2201 struct ftrace_iterator *iter = m->private;
Steven Rostedtf45948e2011-05-02 12:29:25 -04002202 struct ftrace_ops *ops = &global_ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02002203 struct dyn_ftrace *rec = NULL;
2204
Steven Rostedt45a4a232011-04-21 23:16:46 -04002205 if (unlikely(ftrace_disabled))
2206 return NULL;
2207
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002208 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002209 return t_hash_next(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002210
Steven Rostedt5072c592008-05-12 21:20:43 +02002211 (*pos)++;
Jiri Olsa1106b692011-02-16 17:35:34 +01002212 iter->pos = iter->func_pos = *pos;
Steven Rostedt5072c592008-05-12 21:20:43 +02002213
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002214 if (iter->flags & FTRACE_ITER_PRINTALL)
Steven Rostedt57c072c2010-09-14 11:21:11 -04002215 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002216
Steven Rostedt5072c592008-05-12 21:20:43 +02002217 retry:
2218 if (iter->idx >= iter->pg->index) {
2219 if (iter->pg->next) {
2220 iter->pg = iter->pg->next;
2221 iter->idx = 0;
2222 goto retry;
2223 }
2224 } else {
2225 rec = &iter->pg->records[iter->idx++];
Steven Rostedta9fdda32008-08-14 22:47:17 -04002226 if ((rec->flags & FTRACE_FL_FREE) ||
2227
Steven Rostedt0183fb12008-11-07 22:36:02 -05002228 ((iter->flags & FTRACE_ITER_FILTER) &&
Steven Rostedtf45948e2011-05-02 12:29:25 -04002229 !(ftrace_lookup_ip(ops->filter_hash, rec->ip))) ||
Steven Rostedt0183fb12008-11-07 22:36:02 -05002230
Steven Rostedt41c52c02008-05-22 11:46:33 -04002231 ((iter->flags & FTRACE_ITER_NOTRACE) &&
Steven Rostedt647bcd02011-05-03 14:39:21 -04002232 !ftrace_lookup_ip(ops->notrace_hash, rec->ip)) ||
2233
2234 ((iter->flags & FTRACE_ITER_ENABLED) &&
2235 !(rec->flags & ~FTRACE_FL_MASK))) {
2236
Steven Rostedt5072c592008-05-12 21:20:43 +02002237 rec = NULL;
2238 goto retry;
2239 }
2240 }
2241
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002242 if (!rec)
Steven Rostedt57c072c2010-09-14 11:21:11 -04002243 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002244
2245 iter->func = rec;
2246
2247 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02002248}
2249
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002250static void reset_iter_read(struct ftrace_iterator *iter)
2251{
2252 iter->pos = 0;
2253 iter->func_pos = 0;
2254 iter->flags &= ~(FTRACE_ITER_PRINTALL & FTRACE_ITER_HASH);
Steven Rostedt5072c592008-05-12 21:20:43 +02002255}
2256
2257static void *t_start(struct seq_file *m, loff_t *pos)
2258{
2259 struct ftrace_iterator *iter = m->private;
Steven Rostedtf45948e2011-05-02 12:29:25 -04002260 struct ftrace_ops *ops = &global_ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02002261 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08002262 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02002263
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002264 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04002265
2266 if (unlikely(ftrace_disabled))
2267 return NULL;
2268
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002269 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002270 * If an lseek was done, then reset and start from beginning.
2271 */
2272 if (*pos < iter->pos)
2273 reset_iter_read(iter);
2274
2275 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002276 * For set_ftrace_filter reading, if we have the filter
2277 * off, we can short cut and just print out that all
2278 * functions are enabled.
2279 */
Steven Rostedtf45948e2011-05-02 12:29:25 -04002280 if (iter->flags & FTRACE_ITER_FILTER && !ops->filter_hash->count) {
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002281 if (*pos > 0)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002282 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002283 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07002284 /* reset in case of seek/pread */
2285 iter->flags &= ~FTRACE_ITER_HASH;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002286 return iter;
2287 }
2288
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002289 if (iter->flags & FTRACE_ITER_HASH)
2290 return t_hash_start(m, pos);
2291
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002292 /*
2293 * Unfortunately, we need to restart at ftrace_pages_start
2294 * every time we let go of the ftrace_mutex. This is because
2295 * those pointers can change without the lock.
2296 */
Li Zefan694ce0a2009-06-24 09:54:19 +08002297 iter->pg = ftrace_pages_start;
2298 iter->idx = 0;
2299 for (l = 0; l <= *pos; ) {
2300 p = t_next(m, p, &l);
2301 if (!p)
2302 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08002303 }
walimis5821e1b2008-11-15 15:19:06 +08002304
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002305 if (!p) {
2306 if (iter->flags & FTRACE_ITER_FILTER)
2307 return t_hash_start(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002308
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002309 return NULL;
2310 }
2311
2312 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02002313}
2314
2315static void t_stop(struct seq_file *m, void *p)
2316{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002317 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002318}
2319
2320static int t_show(struct seq_file *m, void *v)
2321{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002322 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002323 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02002324
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002325 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002326 return t_hash_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002327
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002328 if (iter->flags & FTRACE_ITER_PRINTALL) {
2329 seq_printf(m, "#### all functions enabled ####\n");
2330 return 0;
2331 }
2332
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002333 rec = iter->func;
2334
Steven Rostedt5072c592008-05-12 21:20:43 +02002335 if (!rec)
2336 return 0;
2337
Steven Rostedt647bcd02011-05-03 14:39:21 -04002338 seq_printf(m, "%ps", (void *)rec->ip);
2339 if (iter->flags & FTRACE_ITER_ENABLED)
2340 seq_printf(m, " (%ld)",
2341 rec->flags & ~FTRACE_FL_MASK);
2342 seq_printf(m, "\n");
Steven Rostedt5072c592008-05-12 21:20:43 +02002343
2344 return 0;
2345}
2346
James Morris88e9d342009-09-22 16:43:43 -07002347static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02002348 .start = t_start,
2349 .next = t_next,
2350 .stop = t_stop,
2351 .show = t_show,
2352};
2353
Ingo Molnare309b412008-05-12 21:20:51 +02002354static int
Steven Rostedt5072c592008-05-12 21:20:43 +02002355ftrace_avail_open(struct inode *inode, struct file *file)
2356{
2357 struct ftrace_iterator *iter;
2358 int ret;
2359
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002360 if (unlikely(ftrace_disabled))
2361 return -ENODEV;
2362
Steven Rostedt5072c592008-05-12 21:20:43 +02002363 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2364 if (!iter)
2365 return -ENOMEM;
2366
2367 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02002368
2369 ret = seq_open(file, &show_ftrace_seq_ops);
2370 if (!ret) {
2371 struct seq_file *m = file->private_data;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002372
Steven Rostedt5072c592008-05-12 21:20:43 +02002373 m->private = iter;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002374 } else {
Steven Rostedt5072c592008-05-12 21:20:43 +02002375 kfree(iter);
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002376 }
Steven Rostedt5072c592008-05-12 21:20:43 +02002377
2378 return ret;
2379}
2380
Steven Rostedt647bcd02011-05-03 14:39:21 -04002381static int
2382ftrace_enabled_open(struct inode *inode, struct file *file)
2383{
2384 struct ftrace_iterator *iter;
2385 int ret;
2386
2387 if (unlikely(ftrace_disabled))
2388 return -ENODEV;
2389
2390 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2391 if (!iter)
2392 return -ENOMEM;
2393
2394 iter->pg = ftrace_pages_start;
2395 iter->flags = FTRACE_ITER_ENABLED;
2396
2397 ret = seq_open(file, &show_ftrace_seq_ops);
2398 if (!ret) {
2399 struct seq_file *m = file->private_data;
2400
2401 m->private = iter;
2402 } else {
2403 kfree(iter);
2404 }
2405
2406 return ret;
2407}
2408
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002409static void ftrace_filter_reset(struct ftrace_hash *hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02002410{
Steven Rostedt52baf112009-02-14 01:15:39 -05002411 mutex_lock(&ftrace_lock);
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002412 ftrace_hash_clear(hash);
Steven Rostedt52baf112009-02-14 01:15:39 -05002413 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002414}
2415
Ingo Molnare309b412008-05-12 21:20:51 +02002416static int
Steven Rostedtf45948e2011-05-02 12:29:25 -04002417ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002418 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02002419{
2420 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04002421 struct ftrace_hash *hash;
Steven Rostedt5072c592008-05-12 21:20:43 +02002422 int ret = 0;
2423
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002424 if (unlikely(ftrace_disabled))
2425 return -ENODEV;
2426
Steven Rostedt5072c592008-05-12 21:20:43 +02002427 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2428 if (!iter)
2429 return -ENOMEM;
2430
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002431 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
2432 kfree(iter);
2433 return -ENOMEM;
2434 }
2435
Steven Rostedtf45948e2011-05-02 12:29:25 -04002436 if (flag & FTRACE_ITER_NOTRACE)
2437 hash = ops->notrace_hash;
2438 else
2439 hash = ops->filter_hash;
2440
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002441 iter->ops = ops;
2442 iter->flags = flag;
2443
2444 if (file->f_mode & FMODE_WRITE) {
2445 mutex_lock(&ftrace_lock);
2446 iter->hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, hash);
2447 mutex_unlock(&ftrace_lock);
2448
2449 if (!iter->hash) {
2450 trace_parser_put(&iter->parser);
2451 kfree(iter);
2452 return -ENOMEM;
2453 }
2454 }
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002455
Steven Rostedt41c52c02008-05-22 11:46:33 -04002456 mutex_lock(&ftrace_regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002457
Steven Rostedt5072c592008-05-12 21:20:43 +02002458 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04002459 (file->f_flags & O_TRUNC))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002460 ftrace_filter_reset(iter->hash);
Steven Rostedt5072c592008-05-12 21:20:43 +02002461
2462 if (file->f_mode & FMODE_READ) {
2463 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02002464
2465 ret = seq_open(file, &show_ftrace_seq_ops);
2466 if (!ret) {
2467 struct seq_file *m = file->private_data;
2468 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08002469 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002470 /* Failed */
2471 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08002472 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02002473 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08002474 }
Steven Rostedt5072c592008-05-12 21:20:43 +02002475 } else
2476 file->private_data = iter;
Steven Rostedt41c52c02008-05-22 11:46:33 -04002477 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002478
2479 return ret;
2480}
2481
Steven Rostedt41c52c02008-05-22 11:46:33 -04002482static int
2483ftrace_filter_open(struct inode *inode, struct file *file)
2484{
Steven Rostedtf45948e2011-05-02 12:29:25 -04002485 return ftrace_regex_open(&global_ops, FTRACE_ITER_FILTER,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002486 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04002487}
2488
2489static int
2490ftrace_notrace_open(struct inode *inode, struct file *file)
2491{
Steven Rostedtf45948e2011-05-02 12:29:25 -04002492 return ftrace_regex_open(&global_ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002493 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04002494}
2495
Ingo Molnare309b412008-05-12 21:20:51 +02002496static loff_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04002497ftrace_regex_lseek(struct file *file, loff_t offset, int origin)
Steven Rostedt5072c592008-05-12 21:20:43 +02002498{
2499 loff_t ret;
2500
2501 if (file->f_mode & FMODE_READ)
2502 ret = seq_lseek(file, offset, origin);
2503 else
2504 file->f_pos = ret = 1;
2505
2506 return ret;
2507}
2508
Steven Rostedt64e7c442009-02-13 17:08:48 -05002509static int ftrace_match(char *str, char *regex, int len, int type)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002510{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002511 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08002512 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002513
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002514 switch (type) {
2515 case MATCH_FULL:
2516 if (strcmp(str, regex) == 0)
2517 matched = 1;
2518 break;
2519 case MATCH_FRONT_ONLY:
2520 if (strncmp(str, regex, len) == 0)
2521 matched = 1;
2522 break;
2523 case MATCH_MIDDLE_ONLY:
2524 if (strstr(str, regex))
2525 matched = 1;
2526 break;
2527 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08002528 slen = strlen(str);
2529 if (slen >= len && memcmp(str + slen - len, regex, len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002530 matched = 1;
2531 break;
2532 }
2533
2534 return matched;
2535}
2536
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002537static int
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002538enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int not)
Steven Rostedt996e87b2011-04-26 16:11:03 -04002539{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002540 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002541 int ret = 0;
2542
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002543 entry = ftrace_lookup_ip(hash, rec->ip);
2544 if (not) {
2545 /* Do nothing if it doesn't exist */
2546 if (!entry)
2547 return 0;
2548
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002549 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002550 } else {
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002551 /* Do nothing if it exists */
2552 if (entry)
2553 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002554
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002555 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002556 }
2557 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04002558}
2559
Steven Rostedt64e7c442009-02-13 17:08:48 -05002560static int
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002561ftrace_match_record(struct dyn_ftrace *rec, char *mod,
2562 char *regex, int len, int type)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002563{
2564 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002565 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05002566
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002567 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
2568
2569 if (mod) {
2570 /* module lookup requires matching the module */
2571 if (!modname || strcmp(modname, mod))
2572 return 0;
2573
2574 /* blank search means to match all funcs in the mod */
2575 if (!len)
2576 return 1;
2577 }
2578
Steven Rostedt64e7c442009-02-13 17:08:48 -05002579 return ftrace_match(str, regex, len, type);
2580}
2581
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002582static int
2583match_records(struct ftrace_hash *hash, char *buff,
2584 int len, char *mod, int not)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002585{
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002586 unsigned search_len = 0;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002587 struct ftrace_page *pg;
2588 struct dyn_ftrace *rec;
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002589 int type = MATCH_FULL;
2590 char *search = buff;
Li Zefan311d16d2009-12-08 11:15:11 +08002591 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002592 int ret;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002593
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002594 if (len) {
2595 type = filter_parse_regex(buff, len, &search, &not);
2596 search_len = strlen(search);
2597 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002598
Steven Rostedt52baf112009-02-14 01:15:39 -05002599 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002600
2601 if (unlikely(ftrace_disabled))
2602 goto out_unlock;
2603
Steven Rostedt265c8312009-02-13 12:43:56 -05002604 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt5072c592008-05-12 21:20:43 +02002605
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002606 if (ftrace_match_record(rec, mod, search, search_len, type)) {
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002607 ret = enter_record(hash, rec, not);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002608 if (ret < 0) {
2609 found = ret;
2610 goto out_unlock;
2611 }
Li Zefan311d16d2009-12-08 11:15:11 +08002612 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05002613 }
2614 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002615 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05002616 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08002617
2618 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02002619}
2620
Steven Rostedt64e7c442009-02-13 17:08:48 -05002621static int
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002622ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002623{
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002624 return match_records(hash, buff, len, NULL, 0);
Steven Rostedt64e7c442009-02-13 17:08:48 -05002625}
2626
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002627static int
2628ftrace_match_module_records(struct ftrace_hash *hash, char *buff, char *mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002629{
Steven Rostedt64e7c442009-02-13 17:08:48 -05002630 int not = 0;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002631
Steven Rostedt64e7c442009-02-13 17:08:48 -05002632 /* blank or '*' mean the same */
2633 if (strcmp(buff, "*") == 0)
2634 buff[0] = 0;
2635
2636 /* handle the case of 'dont filter this module' */
2637 if (strcmp(buff, "!") == 0 || strcmp(buff, "!*") == 0) {
2638 buff[0] = 0;
2639 not = 1;
2640 }
2641
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002642 return match_records(hash, buff, strlen(buff), mod, not);
Steven Rostedt64e7c442009-02-13 17:08:48 -05002643}
2644
Steven Rostedtf6180772009-02-14 00:40:25 -05002645/*
2646 * We register the module command as a template to show others how
2647 * to register the a command as well.
2648 */
2649
2650static int
Steven Rostedt43dd61c2011-07-07 11:09:22 -04002651ftrace_mod_callback(struct ftrace_hash *hash,
2652 char *func, char *cmd, char *param, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05002653{
2654 char *mod;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002655 int ret = -EINVAL;
Steven Rostedtf6180772009-02-14 00:40:25 -05002656
2657 /*
2658 * cmd == 'mod' because we only registered this func
2659 * for the 'mod' ftrace_func_command.
2660 * But if you register one func with multiple commands,
2661 * you can tell which command was used by the cmd
2662 * parameter.
2663 */
2664
2665 /* we must have a module name */
2666 if (!param)
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002667 return ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05002668
2669 mod = strsep(&param, ":");
2670 if (!strlen(mod))
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002671 return ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05002672
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002673 ret = ftrace_match_module_records(hash, func, mod);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002674 if (!ret)
2675 ret = -EINVAL;
2676 if (ret < 0)
2677 return ret;
2678
2679 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05002680}
2681
2682static struct ftrace_func_command ftrace_mod_cmd = {
2683 .name = "mod",
2684 .func = ftrace_mod_callback,
2685};
2686
2687static int __init ftrace_mod_cmd_init(void)
2688{
2689 return register_ftrace_command(&ftrace_mod_cmd);
2690}
2691device_initcall(ftrace_mod_cmd_init);
2692
Steven Rostedt59df055f2009-02-14 15:29:06 -05002693static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002694function_trace_probe_call(unsigned long ip, unsigned long parent_ip)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002695{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002696 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002697 struct hlist_head *hhd;
2698 struct hlist_node *n;
2699 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002700
2701 key = hash_long(ip, FTRACE_HASH_BITS);
2702
2703 hhd = &ftrace_func_hash[key];
2704
2705 if (hlist_empty(hhd))
2706 return;
2707
2708 /*
2709 * Disable preemption for these calls to prevent a RCU grace
2710 * period. This syncs the hash iteration and freeing of items
2711 * on the hash. rcu_read_lock is too dangerous here.
2712 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04002713 preempt_disable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002714 hlist_for_each_entry_rcu(entry, n, hhd, node) {
2715 if (entry->ip == ip)
2716 entry->ops->func(ip, parent_ip, &entry->data);
2717 }
Steven Rostedt5168ae52010-06-03 09:36:50 -04002718 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002719}
2720
Steven Rostedtb6887d72009-02-17 12:32:04 -05002721static struct ftrace_ops trace_probe_ops __read_mostly =
Steven Rostedt59df055f2009-02-14 15:29:06 -05002722{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04002723 .func = function_trace_probe_call,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002724};
2725
Steven Rostedtb6887d72009-02-17 12:32:04 -05002726static int ftrace_probe_registered;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002727
Steven Rostedtb6887d72009-02-17 12:32:04 -05002728static void __enable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002729{
Steven Rostedtb8489142011-05-04 09:27:52 -04002730 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002731 int i;
2732
Steven Rostedtb6887d72009-02-17 12:32:04 -05002733 if (ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002734 return;
2735
2736 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2737 struct hlist_head *hhd = &ftrace_func_hash[i];
2738 if (hhd->first)
2739 break;
2740 }
2741 /* Nothing registered? */
2742 if (i == FTRACE_FUNC_HASHSIZE)
2743 return;
2744
Steven Rostedtb8489142011-05-04 09:27:52 -04002745 ret = __register_ftrace_function(&trace_probe_ops);
2746 if (!ret)
Steven Rostedta1cd6172011-05-23 15:24:25 -04002747 ret = ftrace_startup(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04002748
Steven Rostedtb6887d72009-02-17 12:32:04 -05002749 ftrace_probe_registered = 1;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002750}
2751
Steven Rostedtb6887d72009-02-17 12:32:04 -05002752static void __disable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002753{
Steven Rostedtb8489142011-05-04 09:27:52 -04002754 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002755 int i;
2756
Steven Rostedtb6887d72009-02-17 12:32:04 -05002757 if (!ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002758 return;
2759
2760 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2761 struct hlist_head *hhd = &ftrace_func_hash[i];
2762 if (hhd->first)
2763 return;
2764 }
2765
2766 /* no more funcs left */
Steven Rostedtb8489142011-05-04 09:27:52 -04002767 ret = __unregister_ftrace_function(&trace_probe_ops);
2768 if (!ret)
2769 ftrace_shutdown(&trace_probe_ops, 0);
2770
Steven Rostedtb6887d72009-02-17 12:32:04 -05002771 ftrace_probe_registered = 0;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002772}
2773
2774
2775static void ftrace_free_entry_rcu(struct rcu_head *rhp)
2776{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002777 struct ftrace_func_probe *entry =
2778 container_of(rhp, struct ftrace_func_probe, rcu);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002779
2780 if (entry->ops->free)
2781 entry->ops->free(&entry->data);
2782 kfree(entry);
2783}
2784
2785
2786int
Steven Rostedtb6887d72009-02-17 12:32:04 -05002787register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002788 void *data)
2789{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002790 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002791 struct ftrace_page *pg;
2792 struct dyn_ftrace *rec;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002793 int type, len, not;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002794 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002795 int count = 0;
2796 char *search;
2797
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02002798 type = filter_parse_regex(glob, strlen(glob), &search, &not);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002799 len = strlen(search);
2800
Steven Rostedtb6887d72009-02-17 12:32:04 -05002801 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05002802 if (WARN_ON(not))
2803 return -EINVAL;
2804
2805 mutex_lock(&ftrace_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002806
Steven Rostedt45a4a232011-04-21 23:16:46 -04002807 if (unlikely(ftrace_disabled))
2808 goto out_unlock;
2809
Steven Rostedt59df055f2009-02-14 15:29:06 -05002810 do_for_each_ftrace_rec(pg, rec) {
2811
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002812 if (!ftrace_match_record(rec, NULL, search, len, type))
Steven Rostedt59df055f2009-02-14 15:29:06 -05002813 continue;
2814
2815 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
2816 if (!entry) {
Steven Rostedtb6887d72009-02-17 12:32:04 -05002817 /* If we did not process any, then return error */
Steven Rostedt59df055f2009-02-14 15:29:06 -05002818 if (!count)
2819 count = -ENOMEM;
2820 goto out_unlock;
2821 }
2822
2823 count++;
2824
2825 entry->data = data;
2826
2827 /*
2828 * The caller might want to do something special
2829 * for each function we find. We call the callback
2830 * to give the caller an opportunity to do so.
2831 */
2832 if (ops->callback) {
2833 if (ops->callback(rec->ip, &entry->data) < 0) {
2834 /* caller does not like this func */
2835 kfree(entry);
2836 continue;
2837 }
2838 }
2839
2840 entry->ops = ops;
2841 entry->ip = rec->ip;
2842
2843 key = hash_long(entry->ip, FTRACE_HASH_BITS);
2844 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
2845
2846 } while_for_each_ftrace_rec();
Steven Rostedtb6887d72009-02-17 12:32:04 -05002847 __enable_ftrace_function_probe();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002848
2849 out_unlock:
2850 mutex_unlock(&ftrace_lock);
2851
2852 return count;
2853}
2854
2855enum {
Steven Rostedtb6887d72009-02-17 12:32:04 -05002856 PROBE_TEST_FUNC = 1,
2857 PROBE_TEST_DATA = 2
Steven Rostedt59df055f2009-02-14 15:29:06 -05002858};
2859
2860static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002861__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002862 void *data, int flags)
2863{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002864 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002865 struct hlist_node *n, *tmp;
2866 char str[KSYM_SYMBOL_LEN];
2867 int type = MATCH_FULL;
2868 int i, len = 0;
2869 char *search;
2870
Atsushi Tsujib36461d2009-09-15 19:06:30 +09002871 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
Steven Rostedt59df055f2009-02-14 15:29:06 -05002872 glob = NULL;
Atsushi Tsujib36461d2009-09-15 19:06:30 +09002873 else if (glob) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05002874 int not;
2875
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02002876 type = filter_parse_regex(glob, strlen(glob), &search, &not);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002877 len = strlen(search);
2878
Steven Rostedtb6887d72009-02-17 12:32:04 -05002879 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05002880 if (WARN_ON(not))
2881 return;
2882 }
2883
2884 mutex_lock(&ftrace_lock);
2885 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2886 struct hlist_head *hhd = &ftrace_func_hash[i];
2887
2888 hlist_for_each_entry_safe(entry, n, tmp, hhd, node) {
2889
2890 /* break up if statements for readability */
Steven Rostedtb6887d72009-02-17 12:32:04 -05002891 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002892 continue;
2893
Steven Rostedtb6887d72009-02-17 12:32:04 -05002894 if ((flags & PROBE_TEST_DATA) && entry->data != data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002895 continue;
2896
2897 /* do this last, since it is the most expensive */
2898 if (glob) {
2899 kallsyms_lookup(entry->ip, NULL, NULL,
2900 NULL, str);
2901 if (!ftrace_match(str, glob, len, type))
2902 continue;
2903 }
2904
2905 hlist_del(&entry->node);
2906 call_rcu(&entry->rcu, ftrace_free_entry_rcu);
2907 }
2908 }
Steven Rostedtb6887d72009-02-17 12:32:04 -05002909 __disable_ftrace_function_probe();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002910 mutex_unlock(&ftrace_lock);
2911}
2912
2913void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002914unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002915 void *data)
2916{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002917 __unregister_ftrace_function_probe(glob, ops, data,
2918 PROBE_TEST_FUNC | PROBE_TEST_DATA);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002919}
2920
2921void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002922unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002923{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002924 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002925}
2926
Steven Rostedtb6887d72009-02-17 12:32:04 -05002927void unregister_ftrace_function_probe_all(char *glob)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002928{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002929 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002930}
2931
Steven Rostedtf6180772009-02-14 00:40:25 -05002932static LIST_HEAD(ftrace_commands);
2933static DEFINE_MUTEX(ftrace_cmd_mutex);
2934
2935int register_ftrace_command(struct ftrace_func_command *cmd)
2936{
2937 struct ftrace_func_command *p;
2938 int ret = 0;
2939
2940 mutex_lock(&ftrace_cmd_mutex);
2941 list_for_each_entry(p, &ftrace_commands, list) {
2942 if (strcmp(cmd->name, p->name) == 0) {
2943 ret = -EBUSY;
2944 goto out_unlock;
2945 }
2946 }
2947 list_add(&cmd->list, &ftrace_commands);
2948 out_unlock:
2949 mutex_unlock(&ftrace_cmd_mutex);
2950
2951 return ret;
2952}
2953
2954int unregister_ftrace_command(struct ftrace_func_command *cmd)
2955{
2956 struct ftrace_func_command *p, *n;
2957 int ret = -ENODEV;
2958
2959 mutex_lock(&ftrace_cmd_mutex);
2960 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
2961 if (strcmp(cmd->name, p->name) == 0) {
2962 ret = 0;
2963 list_del_init(&p->list);
2964 goto out_unlock;
2965 }
2966 }
2967 out_unlock:
2968 mutex_unlock(&ftrace_cmd_mutex);
2969
2970 return ret;
2971}
2972
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002973static int ftrace_process_regex(struct ftrace_hash *hash,
2974 char *buff, int len, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002975{
Steven Rostedtf6180772009-02-14 00:40:25 -05002976 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002977 struct ftrace_func_command *p;
GuoWen Li0aff1c02011-06-01 19:18:47 +08002978 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05002979
2980 func = strsep(&next, ":");
2981
2982 if (!next) {
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002983 ret = ftrace_match_records(hash, func, len);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002984 if (!ret)
2985 ret = -EINVAL;
2986 if (ret < 0)
2987 return ret;
2988 return 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05002989 }
2990
Steven Rostedtf6180772009-02-14 00:40:25 -05002991 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05002992
2993 command = strsep(&next, ":");
2994
Steven Rostedtf6180772009-02-14 00:40:25 -05002995 mutex_lock(&ftrace_cmd_mutex);
2996 list_for_each_entry(p, &ftrace_commands, list) {
2997 if (strcmp(p->name, command) == 0) {
Steven Rostedt43dd61c2011-07-07 11:09:22 -04002998 ret = p->func(hash, func, command, next, enable);
Steven Rostedtf6180772009-02-14 00:40:25 -05002999 goto out_unlock;
3000 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05003001 }
Steven Rostedtf6180772009-02-14 00:40:25 -05003002 out_unlock:
3003 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003004
Steven Rostedtf6180772009-02-14 00:40:25 -05003005 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003006}
3007
Ingo Molnare309b412008-05-12 21:20:51 +02003008static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04003009ftrace_regex_write(struct file *file, const char __user *ubuf,
3010 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02003011{
3012 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003013 struct trace_parser *parser;
3014 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02003015
Li Zefan4ba79782009-09-22 13:52:20 +08003016 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02003017 return 0;
3018
Steven Rostedt41c52c02008-05-22 11:46:33 -04003019 mutex_lock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003020
Steven Rostedt45a4a232011-04-21 23:16:46 -04003021 ret = -ENODEV;
3022 if (unlikely(ftrace_disabled))
3023 goto out_unlock;
3024
Steven Rostedt5072c592008-05-12 21:20:43 +02003025 if (file->f_mode & FMODE_READ) {
3026 struct seq_file *m = file->private_data;
3027 iter = m->private;
3028 } else
3029 iter = file->private_data;
3030
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003031 parser = &iter->parser;
3032 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02003033
Li Zefan4ba79782009-09-22 13:52:20 +08003034 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003035 !trace_parser_cont(parser)) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003036 ret = ftrace_process_regex(iter->hash, parser->buffer,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003037 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08003038 trace_parser_clear(parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003039 if (ret)
Li Zefaned146b252009-11-03 08:55:38 +08003040 goto out_unlock;
Steven Rostedt5072c592008-05-12 21:20:43 +02003041 }
3042
Steven Rostedt5072c592008-05-12 21:20:43 +02003043 ret = read;
Li Zefaned146b252009-11-03 08:55:38 +08003044out_unlock:
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003045 mutex_unlock(&ftrace_regex_lock);
Li Zefaned146b252009-11-03 08:55:38 +08003046
Steven Rostedt5072c592008-05-12 21:20:43 +02003047 return ret;
3048}
3049
Steven Rostedt41c52c02008-05-22 11:46:33 -04003050static ssize_t
3051ftrace_filter_write(struct file *file, const char __user *ubuf,
3052 size_t cnt, loff_t *ppos)
3053{
3054 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
3055}
3056
3057static ssize_t
3058ftrace_notrace_write(struct file *file, const char __user *ubuf,
3059 size_t cnt, loff_t *ppos)
3060{
3061 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
3062}
3063
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003064static int
Steven Rostedtf45948e2011-05-02 12:29:25 -04003065ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
3066 int reset, int enable)
Steven Rostedt41c52c02008-05-22 11:46:33 -04003067{
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003068 struct ftrace_hash **orig_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003069 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003070 int ret;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003071
Steven Rostedt936e0742011-05-05 22:54:01 -04003072 /* All global ops uses the global ops filters */
3073 if (ops->flags & FTRACE_OPS_FL_GLOBAL)
3074 ops = &global_ops;
3075
Steven Rostedt41c52c02008-05-22 11:46:33 -04003076 if (unlikely(ftrace_disabled))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003077 return -ENODEV;
Steven Rostedt41c52c02008-05-22 11:46:33 -04003078
Steven Rostedtf45948e2011-05-02 12:29:25 -04003079 if (enable)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003080 orig_hash = &ops->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003081 else
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003082 orig_hash = &ops->notrace_hash;
3083
3084 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3085 if (!hash)
3086 return -ENOMEM;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003087
Steven Rostedt41c52c02008-05-22 11:46:33 -04003088 mutex_lock(&ftrace_regex_lock);
3089 if (reset)
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003090 ftrace_filter_reset(hash);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003091 if (buf)
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003092 ftrace_match_records(hash, buf, len);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003093
3094 mutex_lock(&ftrace_lock);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003095 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
Steven Rostedt072126f2011-07-13 15:08:31 -04003096 if (!ret && ops->flags & FTRACE_OPS_FL_ENABLED
3097 && ftrace_enabled)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01003098 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedt072126f2011-07-13 15:08:31 -04003099
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003100 mutex_unlock(&ftrace_lock);
3101
Steven Rostedt41c52c02008-05-22 11:46:33 -04003102 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003103
3104 free_ftrace_hash(hash);
3105 return ret;
Steven Rostedt41c52c02008-05-22 11:46:33 -04003106}
3107
Steven Rostedt77a2b372008-05-12 21:20:45 +02003108/**
3109 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04003110 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02003111 * @buf - the string that holds the function filter text.
3112 * @len - the length of the string.
3113 * @reset - non zero to reset all filters before applying this filter.
3114 *
3115 * Filters denote which functions should be enabled when tracing is enabled.
3116 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3117 */
Steven Rostedt936e0742011-05-05 22:54:01 -04003118void ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
3119 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02003120{
Steven Rostedt936e0742011-05-05 22:54:01 -04003121 ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003122}
Steven Rostedt936e0742011-05-05 22:54:01 -04003123EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003124
Steven Rostedt41c52c02008-05-22 11:46:33 -04003125/**
3126 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04003127 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04003128 * @buf - the string that holds the function notrace text.
3129 * @len - the length of the string.
3130 * @reset - non zero to reset all filters before applying this filter.
3131 *
3132 * Notrace Filters denote which functions should not be enabled when tracing
3133 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3134 * for tracing.
3135 */
Steven Rostedt936e0742011-05-05 22:54:01 -04003136void ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
3137 int len, int reset)
3138{
3139 ftrace_set_regex(ops, buf, len, reset, 0);
3140}
3141EXPORT_SYMBOL_GPL(ftrace_set_notrace);
3142/**
3143 * ftrace_set_filter - set a function to filter on in ftrace
3144 * @ops - the ops to set the filter with
3145 * @buf - the string that holds the function filter text.
3146 * @len - the length of the string.
3147 * @reset - non zero to reset all filters before applying this filter.
3148 *
3149 * Filters denote which functions should be enabled when tracing is enabled.
3150 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3151 */
3152void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
3153{
3154 ftrace_set_regex(&global_ops, buf, len, reset, 1);
3155}
3156EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
3157
3158/**
3159 * ftrace_set_notrace - set a function to not trace in ftrace
3160 * @ops - the ops to set the notrace filter with
3161 * @buf - the string that holds the function notrace text.
3162 * @len - the length of the string.
3163 * @reset - non zero to reset all filters before applying this filter.
3164 *
3165 * Notrace Filters denote which functions should not be enabled when tracing
3166 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3167 * for tracing.
3168 */
3169void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04003170{
Steven Rostedtf45948e2011-05-02 12:29:25 -04003171 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02003172}
Steven Rostedt936e0742011-05-05 22:54:01 -04003173EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02003174
Steven Rostedt2af15d62009-05-28 13:37:24 -04003175/*
3176 * command line interface to allow users to set filters on boot up.
3177 */
3178#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
3179static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
3180static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
3181
3182static int __init set_ftrace_notrace(char *str)
3183{
3184 strncpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
3185 return 1;
3186}
3187__setup("ftrace_notrace=", set_ftrace_notrace);
3188
3189static int __init set_ftrace_filter(char *str)
3190{
3191 strncpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
3192 return 1;
3193}
3194__setup("ftrace_filter=", set_ftrace_filter);
3195
Stefan Assmann369bc182009-10-12 22:17:21 +02003196#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08003197static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Steven Rostedt801c29f2010-03-05 20:02:19 -05003198static int ftrace_set_func(unsigned long *array, int *idx, char *buffer);
3199
Stefan Assmann369bc182009-10-12 22:17:21 +02003200static int __init set_graph_function(char *str)
3201{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02003202 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02003203 return 1;
3204}
3205__setup("ftrace_graph_filter=", set_graph_function);
3206
3207static void __init set_ftrace_early_graph(char *buf)
3208{
3209 int ret;
3210 char *func;
3211
3212 while (buf) {
3213 func = strsep(&buf, ",");
3214 /* we allow only one expression at a time */
3215 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
3216 func);
3217 if (ret)
3218 printk(KERN_DEBUG "ftrace: function %s not "
3219 "traceable\n", func);
3220 }
3221}
3222#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3223
Steven Rostedtf45948e2011-05-02 12:29:25 -04003224static void __init
3225set_ftrace_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04003226{
3227 char *func;
3228
3229 while (buf) {
3230 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04003231 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04003232 }
3233}
3234
3235static void __init set_ftrace_early_filters(void)
3236{
3237 if (ftrace_filter_buf[0])
Steven Rostedtf45948e2011-05-02 12:29:25 -04003238 set_ftrace_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04003239 if (ftrace_notrace_buf[0])
Steven Rostedtf45948e2011-05-02 12:29:25 -04003240 set_ftrace_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02003241#ifdef CONFIG_FUNCTION_GRAPH_TRACER
3242 if (ftrace_graph_buf[0])
3243 set_ftrace_early_graph(ftrace_graph_buf);
3244#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04003245}
3246
Ingo Molnare309b412008-05-12 21:20:51 +02003247static int
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003248ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003249{
3250 struct seq_file *m = (struct seq_file *)file->private_data;
3251 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003252 struct ftrace_hash **orig_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003253 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04003254 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003255 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02003256
Steven Rostedt41c52c02008-05-22 11:46:33 -04003257 mutex_lock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003258 if (file->f_mode & FMODE_READ) {
3259 iter = m->private;
3260
3261 seq_release(inode, file);
3262 } else
3263 iter = file->private_data;
3264
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003265 parser = &iter->parser;
3266 if (trace_parser_loaded(parser)) {
3267 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003268 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02003269 }
3270
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003271 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003272
Steven Rostedt058e2972011-04-29 22:35:33 -04003273 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04003274 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
3275
3276 if (filter_hash)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003277 orig_hash = &iter->ops->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04003278 else
3279 orig_hash = &iter->ops->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003280
Steven Rostedt058e2972011-04-29 22:35:33 -04003281 mutex_lock(&ftrace_lock);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003282 ret = ftrace_hash_move(iter->ops, filter_hash,
3283 orig_hash, iter->hash);
3284 if (!ret && (iter->ops->flags & FTRACE_OPS_FL_ENABLED)
3285 && ftrace_enabled)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01003286 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003287
Steven Rostedt058e2972011-04-29 22:35:33 -04003288 mutex_unlock(&ftrace_lock);
3289 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003290 free_ftrace_hash(iter->hash);
3291 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04003292
Steven Rostedt41c52c02008-05-22 11:46:33 -04003293 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003294 return 0;
3295}
3296
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003297static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003298 .open = ftrace_avail_open,
3299 .read = seq_read,
3300 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08003301 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02003302};
3303
Steven Rostedt647bcd02011-05-03 14:39:21 -04003304static const struct file_operations ftrace_enabled_fops = {
3305 .open = ftrace_enabled_open,
3306 .read = seq_read,
3307 .llseek = seq_lseek,
3308 .release = seq_release_private,
3309};
3310
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003311static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003312 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08003313 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02003314 .write = ftrace_filter_write,
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003315 .llseek = ftrace_regex_lseek,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003316 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02003317};
3318
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003319static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04003320 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08003321 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003322 .write = ftrace_notrace_write,
3323 .llseek = ftrace_regex_lseek,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003324 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003325};
3326
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003327#ifdef CONFIG_FUNCTION_GRAPH_TRACER
3328
3329static DEFINE_MUTEX(graph_lock);
3330
3331int ftrace_graph_count;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003332int ftrace_graph_filter_enabled;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003333unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
3334
3335static void *
Li Zefan85951842009-06-24 09:54:00 +08003336__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003337{
Li Zefan85951842009-06-24 09:54:00 +08003338 if (*pos >= ftrace_graph_count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003339 return NULL;
Li Zefana4ec5e02009-09-18 14:06:28 +08003340 return &ftrace_graph_funcs[*pos];
Li Zefan85951842009-06-24 09:54:00 +08003341}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003342
Li Zefan85951842009-06-24 09:54:00 +08003343static void *
3344g_next(struct seq_file *m, void *v, loff_t *pos)
3345{
3346 (*pos)++;
3347 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003348}
3349
3350static void *g_start(struct seq_file *m, loff_t *pos)
3351{
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003352 mutex_lock(&graph_lock);
3353
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003354 /* Nothing, tell g_show to print all functions are enabled */
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003355 if (!ftrace_graph_filter_enabled && !*pos)
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003356 return (void *)1;
3357
Li Zefan85951842009-06-24 09:54:00 +08003358 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003359}
3360
3361static void g_stop(struct seq_file *m, void *p)
3362{
3363 mutex_unlock(&graph_lock);
3364}
3365
3366static int g_show(struct seq_file *m, void *v)
3367{
3368 unsigned long *ptr = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003369
3370 if (!ptr)
3371 return 0;
3372
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003373 if (ptr == (unsigned long *)1) {
3374 seq_printf(m, "#### all functions enabled ####\n");
3375 return 0;
3376 }
3377
Steven Rostedtb375a112009-09-17 00:05:58 -04003378 seq_printf(m, "%ps\n", (void *)*ptr);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003379
3380 return 0;
3381}
3382
James Morris88e9d342009-09-22 16:43:43 -07003383static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003384 .start = g_start,
3385 .next = g_next,
3386 .stop = g_stop,
3387 .show = g_show,
3388};
3389
3390static int
3391ftrace_graph_open(struct inode *inode, struct file *file)
3392{
3393 int ret = 0;
3394
3395 if (unlikely(ftrace_disabled))
3396 return -ENODEV;
3397
3398 mutex_lock(&graph_lock);
3399 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04003400 (file->f_flags & O_TRUNC)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003401 ftrace_graph_filter_enabled = 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003402 ftrace_graph_count = 0;
3403 memset(ftrace_graph_funcs, 0, sizeof(ftrace_graph_funcs));
3404 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003405 mutex_unlock(&graph_lock);
3406
Li Zefana4ec5e02009-09-18 14:06:28 +08003407 if (file->f_mode & FMODE_READ)
3408 ret = seq_open(file, &ftrace_graph_seq_ops);
3409
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003410 return ret;
3411}
3412
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003413static int
Li Zefan87827112009-07-23 11:29:11 +08003414ftrace_graph_release(struct inode *inode, struct file *file)
3415{
3416 if (file->f_mode & FMODE_READ)
3417 seq_release(inode, file);
3418 return 0;
3419}
3420
3421static int
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003422ftrace_set_func(unsigned long *array, int *idx, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003423{
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003424 struct dyn_ftrace *rec;
3425 struct ftrace_page *pg;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003426 int search_len;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003427 int fail = 1;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003428 int type, not;
3429 char *search;
3430 bool exists;
3431 int i;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003432
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003433 /* decode regex */
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02003434 type = filter_parse_regex(buffer, strlen(buffer), &search, &not);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003435 if (!not && *idx >= FTRACE_GRAPH_MAX_FUNCS)
3436 return -EBUSY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003437
3438 search_len = strlen(search);
3439
Steven Rostedt52baf112009-02-14 01:15:39 -05003440 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003441
3442 if (unlikely(ftrace_disabled)) {
3443 mutex_unlock(&ftrace_lock);
3444 return -ENODEV;
3445 }
3446
Steven Rostedt265c8312009-02-13 12:43:56 -05003447 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003448
Steven Rostedt45a4a232011-04-21 23:16:46 -04003449 if (rec->flags & FTRACE_FL_FREE)
Steven Rostedt265c8312009-02-13 12:43:56 -05003450 continue;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003451
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003452 if (ftrace_match_record(rec, NULL, search, search_len, type)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003453 /* if it is in the array */
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003454 exists = false;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003455 for (i = 0; i < *idx; i++) {
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003456 if (array[i] == rec->ip) {
3457 exists = true;
Steven Rostedt265c8312009-02-13 12:43:56 -05003458 break;
3459 }
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003460 }
3461
3462 if (!not) {
3463 fail = 0;
3464 if (!exists) {
3465 array[(*idx)++] = rec->ip;
3466 if (*idx >= FTRACE_GRAPH_MAX_FUNCS)
3467 goto out;
3468 }
3469 } else {
3470 if (exists) {
3471 array[i] = array[--(*idx)];
3472 array[*idx] = 0;
3473 fail = 0;
3474 }
3475 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003476 }
Steven Rostedt265c8312009-02-13 12:43:56 -05003477 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003478out:
Steven Rostedt52baf112009-02-14 01:15:39 -05003479 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003480
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003481 if (fail)
3482 return -EINVAL;
3483
3484 ftrace_graph_filter_enabled = 1;
3485 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003486}
3487
3488static ssize_t
3489ftrace_graph_write(struct file *file, const char __user *ubuf,
3490 size_t cnt, loff_t *ppos)
3491{
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003492 struct trace_parser parser;
Li Zefan4ba79782009-09-22 13:52:20 +08003493 ssize_t read, ret;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003494
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003495 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003496 return 0;
3497
3498 mutex_lock(&graph_lock);
3499
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003500 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX)) {
3501 ret = -ENOMEM;
Li Zefan1eb90f12009-09-22 13:52:57 +08003502 goto out_unlock;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003503 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003504
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003505 read = trace_get_user(&parser, ubuf, cnt, ppos);
3506
Li Zefan4ba79782009-09-22 13:52:20 +08003507 if (read >= 0 && trace_parser_loaded((&parser))) {
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003508 parser.buffer[parser.idx] = 0;
3509
3510 /* we allow only one expression at a time */
Li Zefana4ec5e02009-09-18 14:06:28 +08003511 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003512 parser.buffer);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003513 if (ret)
Li Zefan1eb90f12009-09-22 13:52:57 +08003514 goto out_free;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003515 }
3516
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003517 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08003518
3519out_free:
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003520 trace_parser_put(&parser);
Li Zefan1eb90f12009-09-22 13:52:57 +08003521out_unlock:
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003522 mutex_unlock(&graph_lock);
3523
3524 return ret;
3525}
3526
3527static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08003528 .open = ftrace_graph_open,
3529 .read = seq_read,
3530 .write = ftrace_graph_write,
3531 .release = ftrace_graph_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003532 .llseek = seq_lseek,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003533};
3534#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3535
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003536static __init int ftrace_init_dyn_debugfs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02003537{
Steven Rostedt5072c592008-05-12 21:20:43 +02003538
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003539 trace_create_file("available_filter_functions", 0444,
3540 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02003541
Steven Rostedt647bcd02011-05-03 14:39:21 -04003542 trace_create_file("enabled_functions", 0444,
3543 d_tracer, NULL, &ftrace_enabled_fops);
3544
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003545 trace_create_file("set_ftrace_filter", 0644, d_tracer,
3546 NULL, &ftrace_filter_fops);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003547
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003548 trace_create_file("set_ftrace_notrace", 0644, d_tracer,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003549 NULL, &ftrace_notrace_fops);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04003550
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003551#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003552 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003553 NULL,
3554 &ftrace_graph_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003555#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3556
Steven Rostedt5072c592008-05-12 21:20:43 +02003557 return 0;
3558}
3559
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003560static int ftrace_process_locs(struct module *mod,
Steven Rostedt31e88902008-11-14 16:21:19 -08003561 unsigned long *start,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003562 unsigned long *end)
3563{
3564 unsigned long *p;
3565 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04003566 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003567
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003568 mutex_lock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003569 p = start;
3570 while (p < end) {
3571 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08003572 /*
3573 * Some architecture linkers will pad between
3574 * the different mcount_loc sections of different
3575 * object files to satisfy alignments.
3576 * Skip any NULL pointers.
3577 */
3578 if (!addr)
3579 continue;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003580 ftrace_record_ip(addr);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003581 }
3582
Steven Rostedta4f18ed2011-06-07 09:26:46 -04003583 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04003584 * We only need to disable interrupts on start up
3585 * because we are modifying code that an interrupt
3586 * may execute, and the modification is not atomic.
3587 * But for modules, nothing runs the code we modify
3588 * until we are finished with it, and there's no
3589 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04003590 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04003591 if (!mod)
3592 local_irq_save(flags);
Steven Rostedt31e88902008-11-14 16:21:19 -08003593 ftrace_update_code(mod);
Steven Rostedt4376cac2011-06-24 23:28:13 -04003594 if (!mod)
3595 local_irq_restore(flags);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003596 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003597
3598 return 0;
3599}
3600
Steven Rostedt93eb6772009-04-15 13:24:06 -04003601#ifdef CONFIG_MODULES
jolsa@redhat.come7247a12009-10-07 19:00:35 +02003602void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04003603{
3604 struct dyn_ftrace *rec;
3605 struct ftrace_page *pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04003606
Steven Rostedt93eb6772009-04-15 13:24:06 -04003607 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003608
3609 if (ftrace_disabled)
3610 goto out_unlock;
3611
Steven Rostedt93eb6772009-04-15 13:24:06 -04003612 do_for_each_ftrace_rec(pg, rec) {
jolsa@redhat.come7247a12009-10-07 19:00:35 +02003613 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04003614 /*
3615 * rec->ip is changed in ftrace_free_rec()
3616 * It should not between s and e if record was freed.
3617 */
3618 FTRACE_WARN_ON(rec->flags & FTRACE_FL_FREE);
3619 ftrace_free_rec(rec);
3620 }
3621 } while_for_each_ftrace_rec();
Steven Rostedt45a4a232011-04-21 23:16:46 -04003622 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04003623 mutex_unlock(&ftrace_lock);
3624}
3625
3626static void ftrace_init_module(struct module *mod,
3627 unsigned long *start, unsigned long *end)
Steven Rostedt90d595f2008-08-14 15:45:09 -04003628{
Steven Rostedt00fd61a2008-08-15 21:40:04 -04003629 if (ftrace_disabled || start == end)
Steven Rostedtfed19392008-08-14 22:47:19 -04003630 return;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003631 ftrace_process_locs(mod, start, end);
Steven Rostedt90d595f2008-08-14 15:45:09 -04003632}
3633
Steven Rostedt93eb6772009-04-15 13:24:06 -04003634static int ftrace_module_notify(struct notifier_block *self,
3635 unsigned long val, void *data)
3636{
3637 struct module *mod = data;
3638
3639 switch (val) {
3640 case MODULE_STATE_COMING:
3641 ftrace_init_module(mod, mod->ftrace_callsites,
3642 mod->ftrace_callsites +
3643 mod->num_ftrace_callsites);
3644 break;
3645 case MODULE_STATE_GOING:
jolsa@redhat.come7247a12009-10-07 19:00:35 +02003646 ftrace_release_mod(mod);
Steven Rostedt93eb6772009-04-15 13:24:06 -04003647 break;
3648 }
3649
3650 return 0;
3651}
3652#else
3653static int ftrace_module_notify(struct notifier_block *self,
3654 unsigned long val, void *data)
3655{
3656 return 0;
3657}
3658#endif /* CONFIG_MODULES */
3659
3660struct notifier_block ftrace_module_nb = {
3661 .notifier_call = ftrace_module_notify,
3662 .priority = 0,
3663};
3664
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003665extern unsigned long __start_mcount_loc[];
3666extern unsigned long __stop_mcount_loc[];
3667
3668void __init ftrace_init(void)
3669{
3670 unsigned long count, addr, flags;
3671 int ret;
3672
3673 /* Keep the ftrace pointer to the stub */
3674 addr = (unsigned long)ftrace_stub;
3675
3676 local_irq_save(flags);
3677 ftrace_dyn_arch_init(&addr);
3678 local_irq_restore(flags);
3679
3680 /* ftrace_dyn_arch_init places the return code in addr */
3681 if (addr)
3682 goto failed;
3683
3684 count = __stop_mcount_loc - __start_mcount_loc;
3685
3686 ret = ftrace_dyn_table_alloc(count);
3687 if (ret)
3688 goto failed;
3689
3690 last_ftrace_enabled = ftrace_enabled = 1;
3691
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003692 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08003693 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003694 __stop_mcount_loc);
3695
Steven Rostedt93eb6772009-04-15 13:24:06 -04003696 ret = register_module_notifier(&ftrace_module_nb);
Ming Lei24ed0c42009-05-17 15:31:38 +08003697 if (ret)
Steven Rostedt93eb6772009-04-15 13:24:06 -04003698 pr_warning("Failed to register trace ftrace module notifier\n");
3699
Steven Rostedt2af15d62009-05-28 13:37:24 -04003700 set_ftrace_early_filters();
3701
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003702 return;
3703 failed:
3704 ftrace_disabled = 1;
3705}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003706
Steven Rostedt3d083392008-05-12 21:20:42 +02003707#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01003708
Steven Rostedt2b499382011-05-03 22:49:52 -04003709static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04003710 .func = ftrace_stub,
3711};
3712
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01003713static int __init ftrace_nodyn_init(void)
3714{
3715 ftrace_enabled = 1;
3716 return 0;
3717}
3718device_initcall(ftrace_nodyn_init);
3719
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003720static inline int ftrace_init_dyn_debugfs(struct dentry *d_tracer) { return 0; }
3721static inline void ftrace_startup_enable(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05003722/* Keep as macros so we do not need to define the commands */
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04003723# define ftrace_startup(ops, command) \
3724 ({ \
3725 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
3726 0; \
3727 })
Steven Rostedtbd69c302011-05-03 21:55:54 -04003728# define ftrace_shutdown(ops, command) do { } while (0)
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003729# define ftrace_startup_sysctl() do { } while (0)
3730# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04003731
3732static inline int
3733ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip)
3734{
3735 return 1;
3736}
3737
Steven Rostedt3d083392008-05-12 21:20:42 +02003738#endif /* CONFIG_DYNAMIC_FTRACE */
3739
Steven Rostedtb8489142011-05-04 09:27:52 -04003740static void
3741ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip)
3742{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04003743 struct ftrace_ops *op;
Steven Rostedtb8489142011-05-04 09:27:52 -04003744
Steven Rostedtb1cff0a2011-05-25 14:27:43 -04003745 if (unlikely(trace_recursion_test(TRACE_INTERNAL_BIT)))
3746 return;
3747
3748 trace_recursion_set(TRACE_INTERNAL_BIT);
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04003749 /*
3750 * Some of the ops may be dynamically allocated,
3751 * they must be freed after a synchronize_sched().
3752 */
3753 preempt_disable_notrace();
3754 op = rcu_dereference_raw(ftrace_ops_list);
Steven Rostedtb8489142011-05-04 09:27:52 -04003755 while (op != &ftrace_list_end) {
3756 if (ftrace_ops_test(op, ip))
3757 op->func(ip, parent_ip);
3758 op = rcu_dereference_raw(op->next);
3759 };
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04003760 preempt_enable_notrace();
Steven Rostedtb1cff0a2011-05-25 14:27:43 -04003761 trace_recursion_clear(TRACE_INTERNAL_BIT);
Steven Rostedtb8489142011-05-04 09:27:52 -04003762}
3763
Steven Rostedte32d8952008-12-04 00:26:41 -05003764static void clear_ftrace_swapper(void)
3765{
3766 struct task_struct *p;
3767 int cpu;
3768
3769 get_online_cpus();
3770 for_each_online_cpu(cpu) {
3771 p = idle_task(cpu);
3772 clear_tsk_trace_trace(p);
3773 }
3774 put_online_cpus();
3775}
3776
3777static void set_ftrace_swapper(void)
3778{
3779 struct task_struct *p;
3780 int cpu;
3781
3782 get_online_cpus();
3783 for_each_online_cpu(cpu) {
3784 p = idle_task(cpu);
3785 set_tsk_trace_trace(p);
3786 }
3787 put_online_cpus();
3788}
3789
3790static void clear_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05003791{
3792 struct task_struct *p;
3793
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01003794 rcu_read_lock();
Steven Rostedte32d8952008-12-04 00:26:41 -05003795 do_each_pid_task(pid, PIDTYPE_PID, p) {
Steven Rostedt978f3a42008-12-04 00:26:40 -05003796 clear_tsk_trace_trace(p);
Steven Rostedte32d8952008-12-04 00:26:41 -05003797 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01003798 rcu_read_unlock();
3799
Steven Rostedte32d8952008-12-04 00:26:41 -05003800 put_pid(pid);
Steven Rostedt978f3a42008-12-04 00:26:40 -05003801}
3802
Steven Rostedte32d8952008-12-04 00:26:41 -05003803static void set_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05003804{
3805 struct task_struct *p;
3806
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01003807 rcu_read_lock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05003808 do_each_pid_task(pid, PIDTYPE_PID, p) {
3809 set_tsk_trace_trace(p);
3810 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01003811 rcu_read_unlock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05003812}
3813
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003814static void clear_ftrace_pid_task(struct pid *pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05003815{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003816 if (pid == ftrace_swapper_pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05003817 clear_ftrace_swapper();
3818 else
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003819 clear_ftrace_pid(pid);
Steven Rostedte32d8952008-12-04 00:26:41 -05003820}
3821
3822static void set_ftrace_pid_task(struct pid *pid)
3823{
3824 if (pid == ftrace_swapper_pid)
3825 set_ftrace_swapper();
3826 else
3827 set_ftrace_pid(pid);
3828}
3829
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003830static int ftrace_pid_add(int p)
3831{
3832 struct pid *pid;
3833 struct ftrace_pid *fpid;
3834 int ret = -EINVAL;
3835
3836 mutex_lock(&ftrace_lock);
3837
3838 if (!p)
3839 pid = ftrace_swapper_pid;
3840 else
3841 pid = find_get_pid(p);
3842
3843 if (!pid)
3844 goto out;
3845
3846 ret = 0;
3847
3848 list_for_each_entry(fpid, &ftrace_pids, list)
3849 if (fpid->pid == pid)
3850 goto out_put;
3851
3852 ret = -ENOMEM;
3853
3854 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
3855 if (!fpid)
3856 goto out_put;
3857
3858 list_add(&fpid->list, &ftrace_pids);
3859 fpid->pid = pid;
3860
3861 set_ftrace_pid_task(pid);
3862
3863 ftrace_update_pid_func();
3864 ftrace_startup_enable(0);
3865
3866 mutex_unlock(&ftrace_lock);
3867 return 0;
3868
3869out_put:
3870 if (pid != ftrace_swapper_pid)
3871 put_pid(pid);
3872
3873out:
3874 mutex_unlock(&ftrace_lock);
3875 return ret;
3876}
3877
3878static void ftrace_pid_reset(void)
3879{
3880 struct ftrace_pid *fpid, *safe;
3881
3882 mutex_lock(&ftrace_lock);
3883 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
3884 struct pid *pid = fpid->pid;
3885
3886 clear_ftrace_pid_task(pid);
3887
3888 list_del(&fpid->list);
3889 kfree(fpid);
3890 }
3891
3892 ftrace_update_pid_func();
3893 ftrace_startup_enable(0);
3894
3895 mutex_unlock(&ftrace_lock);
3896}
3897
3898static void *fpid_start(struct seq_file *m, loff_t *pos)
3899{
3900 mutex_lock(&ftrace_lock);
3901
3902 if (list_empty(&ftrace_pids) && (!*pos))
3903 return (void *) 1;
3904
3905 return seq_list_start(&ftrace_pids, *pos);
3906}
3907
3908static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
3909{
3910 if (v == (void *)1)
3911 return NULL;
3912
3913 return seq_list_next(v, &ftrace_pids, pos);
3914}
3915
3916static void fpid_stop(struct seq_file *m, void *p)
3917{
3918 mutex_unlock(&ftrace_lock);
3919}
3920
3921static int fpid_show(struct seq_file *m, void *v)
3922{
3923 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
3924
3925 if (v == (void *)1) {
3926 seq_printf(m, "no pid\n");
3927 return 0;
3928 }
3929
3930 if (fpid->pid == ftrace_swapper_pid)
3931 seq_printf(m, "swapper tasks\n");
3932 else
3933 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
3934
3935 return 0;
3936}
3937
3938static const struct seq_operations ftrace_pid_sops = {
3939 .start = fpid_start,
3940 .next = fpid_next,
3941 .stop = fpid_stop,
3942 .show = fpid_show,
3943};
3944
3945static int
3946ftrace_pid_open(struct inode *inode, struct file *file)
3947{
3948 int ret = 0;
3949
3950 if ((file->f_mode & FMODE_WRITE) &&
3951 (file->f_flags & O_TRUNC))
3952 ftrace_pid_reset();
3953
3954 if (file->f_mode & FMODE_READ)
3955 ret = seq_open(file, &ftrace_pid_sops);
3956
3957 return ret;
3958}
3959
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003960static ssize_t
3961ftrace_pid_write(struct file *filp, const char __user *ubuf,
3962 size_t cnt, loff_t *ppos)
3963{
Ingo Molnar457dc922009-11-23 11:03:28 +01003964 char buf[64], *tmp;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003965 long val;
3966 int ret;
3967
3968 if (cnt >= sizeof(buf))
3969 return -EINVAL;
3970
3971 if (copy_from_user(&buf, ubuf, cnt))
3972 return -EFAULT;
3973
3974 buf[cnt] = 0;
3975
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003976 /*
3977 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
3978 * to clean the filter quietly.
3979 */
Ingo Molnar457dc922009-11-23 11:03:28 +01003980 tmp = strstrip(buf);
3981 if (strlen(tmp) == 0)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003982 return 1;
3983
Ingo Molnar457dc922009-11-23 11:03:28 +01003984 ret = strict_strtol(tmp, 10, &val);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003985 if (ret < 0)
3986 return ret;
3987
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003988 ret = ftrace_pid_add(val);
Steven Rostedt978f3a42008-12-04 00:26:40 -05003989
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003990 return ret ? ret : cnt;
3991}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003992
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003993static int
3994ftrace_pid_release(struct inode *inode, struct file *file)
3995{
3996 if (file->f_mode & FMODE_READ)
3997 seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003998
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003999 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004000}
4001
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004002static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004003 .open = ftrace_pid_open,
4004 .write = ftrace_pid_write,
4005 .read = seq_read,
4006 .llseek = seq_lseek,
4007 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004008};
4009
4010static __init int ftrace_init_debugfs(void)
4011{
4012 struct dentry *d_tracer;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004013
4014 d_tracer = tracing_init_dentry();
4015 if (!d_tracer)
4016 return 0;
4017
4018 ftrace_init_dyn_debugfs(d_tracer);
4019
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004020 trace_create_file("set_ftrace_pid", 0644, d_tracer,
4021 NULL, &ftrace_pid_fops);
Steven Rostedt493762f2009-03-23 17:12:36 -04004022
4023 ftrace_profile_debugfs(d_tracer);
4024
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004025 return 0;
4026}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004027fs_initcall(ftrace_init_debugfs);
4028
Steven Rostedt3d083392008-05-12 21:20:42 +02004029/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04004030 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004031 *
4032 * This function should be used by panic code. It stops ftrace
4033 * but in a not so nice way. If you need to simply kill ftrace
4034 * from a non-atomic section, use ftrace_kill.
4035 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04004036void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004037{
4038 ftrace_disabled = 1;
4039 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004040 clear_ftrace_function();
4041}
4042
4043/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04004044 * Test if ftrace is dead or not.
4045 */
4046int ftrace_is_dead(void)
4047{
4048 return ftrace_disabled;
4049}
4050
4051/**
Steven Rostedt3d083392008-05-12 21:20:42 +02004052 * register_ftrace_function - register a function for profiling
4053 * @ops - ops structure that holds the function for profiling.
4054 *
4055 * Register a function to be called by all functions in the
4056 * kernel.
4057 *
4058 * Note: @ops->func and all the functions it calls must be labeled
4059 * with "notrace", otherwise it will go into a
4060 * recursive loop.
4061 */
4062int register_ftrace_function(struct ftrace_ops *ops)
4063{
Steven Rostedt45a4a232011-04-21 23:16:46 -04004064 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004065
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004066 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004067
Steven Rostedt45a4a232011-04-21 23:16:46 -04004068 if (unlikely(ftrace_disabled))
4069 goto out_unlock;
4070
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004071 ret = __register_ftrace_function(ops);
Steven Rostedtb8489142011-05-04 09:27:52 -04004072 if (!ret)
Steven Rostedta1cd6172011-05-23 15:24:25 -04004073 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04004074
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004075
Steven Rostedt45a4a232011-04-21 23:16:46 -04004076 out_unlock:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004077 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004078 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02004079}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004080EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02004081
4082/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01004083 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02004084 * @ops - ops structure that holds the function to unregister
4085 *
4086 * Unregister a function that was added to be called by ftrace profiling.
4087 */
4088int unregister_ftrace_function(struct ftrace_ops *ops)
4089{
4090 int ret;
4091
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004092 mutex_lock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02004093 ret = __unregister_ftrace_function(ops);
Steven Rostedtb8489142011-05-04 09:27:52 -04004094 if (!ret)
4095 ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004096 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004097
4098 return ret;
4099}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004100EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004101
Ingo Molnare309b412008-05-12 21:20:51 +02004102int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004103ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004104 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004105 loff_t *ppos)
4106{
Steven Rostedt45a4a232011-04-21 23:16:46 -04004107 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004108
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004109 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004110
Steven Rostedt45a4a232011-04-21 23:16:46 -04004111 if (unlikely(ftrace_disabled))
4112 goto out;
4113
4114 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004115
Li Zefana32c7762009-06-26 16:55:51 +08004116 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004117 goto out;
4118
Li Zefana32c7762009-06-26 16:55:51 +08004119 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004120
4121 if (ftrace_enabled) {
4122
4123 ftrace_startup_sysctl();
4124
4125 /* we are starting ftrace again */
Steven Rostedtb8489142011-05-04 09:27:52 -04004126 if (ftrace_ops_list != &ftrace_list_end) {
4127 if (ftrace_ops_list->next == &ftrace_list_end)
4128 ftrace_trace_function = ftrace_ops_list->func;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004129 else
Steven Rostedtb8489142011-05-04 09:27:52 -04004130 ftrace_trace_function = ftrace_ops_list_func;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004131 }
4132
4133 } else {
4134 /* stopping ftrace calls (just send to ftrace_stub) */
4135 ftrace_trace_function = ftrace_stub;
4136
4137 ftrace_shutdown_sysctl();
4138 }
4139
4140 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004141 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02004142 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02004143}
Ingo Molnarf17845e2008-10-24 12:47:10 +02004144
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004145#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004146
Steven Rostedt597af812009-04-03 15:24:12 -04004147static int ftrace_graph_active;
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004148static struct notifier_block ftrace_suspend_notifier;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004149
Steven Rostedte49dc192008-12-02 23:50:05 -05004150int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
4151{
4152 return 0;
4153}
4154
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004155/* The callbacks that hook a function */
4156trace_func_graph_ret_t ftrace_graph_return =
4157 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05004158trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004159
4160/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
4161static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
4162{
4163 int i;
4164 int ret = 0;
4165 unsigned long flags;
4166 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
4167 struct task_struct *g, *t;
4168
4169 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
4170 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
4171 * sizeof(struct ftrace_ret_stack),
4172 GFP_KERNEL);
4173 if (!ret_stack_list[i]) {
4174 start = 0;
4175 end = i;
4176 ret = -ENOMEM;
4177 goto free;
4178 }
4179 }
4180
4181 read_lock_irqsave(&tasklist_lock, flags);
4182 do_each_thread(g, t) {
4183 if (start == end) {
4184 ret = -EAGAIN;
4185 goto unlock;
4186 }
4187
4188 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01004189 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004190 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04004191 t->curr_ret_stack = -1;
4192 /* Make sure the tasks see the -1 first: */
4193 smp_wmb();
4194 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004195 }
4196 } while_each_thread(g, t);
4197
4198unlock:
4199 read_unlock_irqrestore(&tasklist_lock, flags);
4200free:
4201 for (i = start; i < end; i++)
4202 kfree(ret_stack_list[i]);
4203 return ret;
4204}
4205
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004206static void
Steven Rostedt38516ab2010-04-20 17:04:50 -04004207ftrace_graph_probe_sched_switch(void *ignore,
4208 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004209{
4210 unsigned long long timestamp;
4211 int index;
4212
Steven Rostedtbe6f1642009-03-24 11:06:24 -04004213 /*
4214 * Does the user want to count the time a function was asleep.
4215 * If so, do not update the time stamps.
4216 */
4217 if (trace_flags & TRACE_ITER_SLEEP_TIME)
4218 return;
4219
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004220 timestamp = trace_clock_local();
4221
4222 prev->ftrace_timestamp = timestamp;
4223
4224 /* only process tasks that we timestamped */
4225 if (!next->ftrace_timestamp)
4226 return;
4227
4228 /*
4229 * Update all the counters in next to make up for the
4230 * time next was sleeping.
4231 */
4232 timestamp -= next->ftrace_timestamp;
4233
4234 for (index = next->curr_ret_stack; index >= 0; index--)
4235 next->ret_stack[index].calltime += timestamp;
4236}
4237
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004238/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004239static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004240{
4241 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004242 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004243
4244 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
4245 sizeof(struct ftrace_ret_stack *),
4246 GFP_KERNEL);
4247
4248 if (!ret_stack_list)
4249 return -ENOMEM;
4250
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004251 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04004252 for_each_online_cpu(cpu) {
4253 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05004254 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04004255 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004256
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004257 do {
4258 ret = alloc_retstack_tasklist(ret_stack_list);
4259 } while (ret == -EAGAIN);
4260
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004261 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04004262 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004263 if (ret)
4264 pr_info("ftrace_graph: Couldn't activate tracepoint"
4265 " probe to kernel_sched_switch\n");
4266 }
4267
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004268 kfree(ret_stack_list);
4269 return ret;
4270}
4271
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004272/*
4273 * Hibernation protection.
4274 * The state of the current task is too much unstable during
4275 * suspend/restore to disk. We want to protect against that.
4276 */
4277static int
4278ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
4279 void *unused)
4280{
4281 switch (state) {
4282 case PM_HIBERNATION_PREPARE:
4283 pause_graph_tracing();
4284 break;
4285
4286 case PM_POST_HIBERNATION:
4287 unpause_graph_tracing();
4288 break;
4289 }
4290 return NOTIFY_DONE;
4291}
4292
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004293int register_ftrace_graph(trace_func_graph_ret_t retfunc,
4294 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004295{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004296 int ret = 0;
4297
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004298 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004299
Steven Rostedt05ce5812009-03-24 00:18:31 -04004300 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04004301 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04004302 ret = -EBUSY;
4303 goto out;
4304 }
4305
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004306 ftrace_suspend_notifier.notifier_call = ftrace_suspend_notifier_call;
4307 register_pm_notifier(&ftrace_suspend_notifier);
4308
Steven Rostedt597af812009-04-03 15:24:12 -04004309 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004310 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004311 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04004312 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004313 goto out;
4314 }
Steven Rostedte53a6312008-11-26 00:16:25 -05004315
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004316 ftrace_graph_return = retfunc;
4317 ftrace_graph_entry = entryfunc;
Steven Rostedte53a6312008-11-26 00:16:25 -05004318
Steven Rostedta1cd6172011-05-23 15:24:25 -04004319 ret = ftrace_startup(&global_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004320
4321out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004322 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004323 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004324}
4325
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004326void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004327{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004328 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004329
Steven Rostedt597af812009-04-03 15:24:12 -04004330 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04004331 goto out;
4332
Steven Rostedt597af812009-04-03 15:24:12 -04004333 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004334 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05004335 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedtbd69c302011-05-03 21:55:54 -04004336 ftrace_shutdown(&global_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004337 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04004338 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004339
Steven Rostedt2aad1b72009-03-30 11:11:28 -04004340 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004341 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004342}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004343
Steven Rostedt868baf02011-02-10 21:26:13 -05004344static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
4345
4346static void
4347graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
4348{
4349 atomic_set(&t->tracing_graph_pause, 0);
4350 atomic_set(&t->trace_overrun, 0);
4351 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004352 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05004353 smp_wmb();
4354 t->ret_stack = ret_stack;
4355}
4356
4357/*
4358 * Allocate a return stack for the idle task. May be the first
4359 * time through, or it may be done by CPU hotplug online.
4360 */
4361void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
4362{
4363 t->curr_ret_stack = -1;
4364 /*
4365 * The idle task has no parent, it either has its own
4366 * stack or no stack at all.
4367 */
4368 if (t->ret_stack)
4369 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
4370
4371 if (ftrace_graph_active) {
4372 struct ftrace_ret_stack *ret_stack;
4373
4374 ret_stack = per_cpu(idle_ret_stack, cpu);
4375 if (!ret_stack) {
4376 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
4377 * sizeof(struct ftrace_ret_stack),
4378 GFP_KERNEL);
4379 if (!ret_stack)
4380 return;
4381 per_cpu(idle_ret_stack, cpu) = ret_stack;
4382 }
4383 graph_init_task(t, ret_stack);
4384 }
4385}
4386
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004387/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004388void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004389{
Steven Rostedt84047e32009-06-02 16:51:55 -04004390 /* Make sure we do not use the parent ret_stack */
4391 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05004392 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04004393
Steven Rostedt597af812009-04-03 15:24:12 -04004394 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04004395 struct ftrace_ret_stack *ret_stack;
4396
4397 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004398 * sizeof(struct ftrace_ret_stack),
4399 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04004400 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004401 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05004402 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04004403 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004404}
4405
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004406void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004407{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01004408 struct ftrace_ret_stack *ret_stack = t->ret_stack;
4409
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004410 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01004411 /* NULL must become visible to IRQs before we free it: */
4412 barrier();
4413
4414 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004415}
Steven Rostedt14a866c2008-12-02 23:50:02 -05004416
4417void ftrace_graph_stop(void)
4418{
4419 ftrace_stop();
4420}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004421#endif