blob: fa7ece649fe1bcad7b0db621fa8579e91860fb04 [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>
Ingo Molnar2d8b8202008-02-23 16:55:50 +010025#include <linux/ftrace.h>
Steven Rostedtb0fc4942008-05-12 21:20:43 +020026#include <linux/sysctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020028#include <linux/ctype.h>
Steven Rostedt3d083392008-05-12 21:20:42 +020029#include <linux/list.h>
Steven Rostedt59df055f2009-02-14 15:29:06 -050030#include <linux/hash.h>
Paul E. McKenney3f379b02010-03-05 15:03:25 -080031#include <linux/rcupdate.h>
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020032
Steven Rostedtad8d75f2009-04-14 19:39:12 -040033#include <trace/events/sched.h>
Steven Rostedt8aef2d22009-03-24 01:10:15 -040034
Abhishek Sagar395a59d2008-06-21 23:47:27 +053035#include <asm/ftrace.h>
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) \
42 do { \
43 if (WARN_ON(cond)) \
44 ftrace_kill(); \
45 } while (0)
46
47#define FTRACE_WARN_ON_ONCE(cond) \
48 do { \
49 if (WARN_ON_ONCE(cond)) \
50 ftrace_kill(); \
51 } while (0)
52
Steven Rostedt8fc0c702009-02-16 15:28:00 -050053/* hash bits for specific function selection */
54#define FTRACE_HASH_BITS 7
55#define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
56
Steven Rostedt4eebcc82008-05-12 21:20:48 +020057/* ftrace_enabled is a method to turn ftrace on or off */
58int ftrace_enabled __read_mostly;
Steven Rostedtd61f82d2008-05-12 21:20:43 +020059static int last_ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +020060
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050061/* Quick disabling of function tracer. */
62int function_trace_stop;
63
jolsa@redhat.com756d17e2009-10-13 16:33:52 -040064/* List for set_ftrace_pid's pids. */
65LIST_HEAD(ftrace_pids);
66struct ftrace_pid {
67 struct list_head list;
68 struct pid *pid;
69};
70
Steven Rostedt4eebcc82008-05-12 21:20:48 +020071/*
72 * ftrace_disabled is set when an anomaly is discovered.
73 * ftrace_disabled is much stronger than ftrace_enabled.
74 */
75static int ftrace_disabled __read_mostly;
76
Steven Rostedt52baf112009-02-14 01:15:39 -050077static DEFINE_MUTEX(ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +020078
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020079static struct ftrace_ops ftrace_list_end __read_mostly =
80{
Steven Rostedtfb9fb012009-03-25 13:26:41 -040081 .func = ftrace_stub,
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020082};
83
84static struct ftrace_ops *ftrace_list __read_mostly = &ftrace_list_end;
85ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050086ftrace_func_t __ftrace_trace_function __read_mostly = ftrace_stub;
Steven Rostedtdf4fc312008-11-26 00:16:23 -050087ftrace_func_t ftrace_pid_function __read_mostly = ftrace_stub;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020088
Paul E. McKenney3f379b02010-03-05 15:03:25 -080089/*
90 * Traverse the ftrace_list, invoking all entries. The reason that we
91 * can use rcu_dereference_raw() is that elements removed from this list
92 * are simply leaked, so there is no need to interact with a grace-period
93 * mechanism. The rcu_dereference_raw() calls are needed to handle
94 * concurrent insertions into the ftrace_list.
95 *
96 * Silly Alpha and silly pointer-speculation compiler optimizations!
97 */
Ingo Molnarf2252932008-05-22 10:37:48 +020098static void ftrace_list_func(unsigned long ip, unsigned long parent_ip)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020099{
Paul E. McKenney3f379b02010-03-05 15:03:25 -0800100 struct ftrace_ops *op = rcu_dereference_raw(ftrace_list); /*see above*/
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200101
102 while (op != &ftrace_list_end) {
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200103 op->func(ip, parent_ip);
Paul E. McKenney3f379b02010-03-05 15:03:25 -0800104 op = rcu_dereference_raw(op->next); /*see above*/
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200105 };
106}
107
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500108static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip)
109{
Steven Rostedt0ef8cde2008-12-03 15:36:58 -0500110 if (!test_tsk_trace_trace(current))
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500111 return;
112
113 ftrace_pid_function(ip, parent_ip);
114}
115
116static void set_ftrace_pid_function(ftrace_func_t func)
117{
118 /* do not set ftrace_pid_function to itself! */
119 if (func != ftrace_pid_func)
120 ftrace_pid_function = func;
121}
122
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200123/**
Steven Rostedt3d083392008-05-12 21:20:42 +0200124 * clear_ftrace_function - reset the ftrace function
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200125 *
Steven Rostedt3d083392008-05-12 21:20:42 +0200126 * This NULLs the ftrace function and in essence stops
127 * tracing. There may be lag
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200128 */
Steven Rostedt3d083392008-05-12 21:20:42 +0200129void clear_ftrace_function(void)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200130{
Steven Rostedt3d083392008-05-12 21:20:42 +0200131 ftrace_trace_function = ftrace_stub;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500132 __ftrace_trace_function = ftrace_stub;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500133 ftrace_pid_function = ftrace_stub;
Steven Rostedt3d083392008-05-12 21:20:42 +0200134}
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200135
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500136#ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
137/*
138 * For those archs that do not test ftrace_trace_stop in their
139 * mcount call site, we need to do it from C.
140 */
141static void ftrace_test_stop_func(unsigned long ip, unsigned long parent_ip)
142{
143 if (function_trace_stop)
144 return;
145
146 __ftrace_trace_function(ip, parent_ip);
147}
148#endif
149
Ingo Molnare309b412008-05-12 21:20:51 +0200150static int __register_ftrace_function(struct ftrace_ops *ops)
Steven Rostedt3d083392008-05-12 21:20:42 +0200151{
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200152 ops->next = ftrace_list;
153 /*
154 * We are entering ops into the ftrace_list but another
155 * CPU might be walking that list. We need to make sure
156 * the ops->next pointer is valid before another CPU sees
157 * the ops pointer included into the ftrace_list.
158 */
Paul E. McKenney3f379b02010-03-05 15:03:25 -0800159 rcu_assign_pointer(ftrace_list, ops);
Steven Rostedt3d083392008-05-12 21:20:42 +0200160
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200161 if (ftrace_enabled) {
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500162 ftrace_func_t func;
163
164 if (ops->next == &ftrace_list_end)
165 func = ops->func;
166 else
167 func = ftrace_list_func;
168
jolsa@redhat.com756d17e2009-10-13 16:33:52 -0400169 if (!list_empty(&ftrace_pids)) {
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500170 set_ftrace_pid_function(func);
171 func = ftrace_pid_func;
172 }
173
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200174 /*
175 * For one func, simply call it directly.
176 * For more than one func, call the chain.
177 */
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500178#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500179 ftrace_trace_function = func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500180#else
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500181 __ftrace_trace_function = func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500182 ftrace_trace_function = ftrace_test_stop_func;
183#endif
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200184 }
Steven Rostedt3d083392008-05-12 21:20:42 +0200185
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200186 return 0;
187}
188
Ingo Molnare309b412008-05-12 21:20:51 +0200189static int __unregister_ftrace_function(struct ftrace_ops *ops)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200190{
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200191 struct ftrace_ops **p;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200192
193 /*
Steven Rostedt3d083392008-05-12 21:20:42 +0200194 * If we are removing the last function, then simply point
195 * to the ftrace_stub.
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200196 */
197 if (ftrace_list == ops && ops->next == &ftrace_list_end) {
198 ftrace_trace_function = ftrace_stub;
199 ftrace_list = &ftrace_list_end;
Steven Rostedte6ea44e2009-02-14 01:42:44 -0500200 return 0;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200201 }
202
203 for (p = &ftrace_list; *p != &ftrace_list_end; p = &(*p)->next)
204 if (*p == ops)
205 break;
206
Steven Rostedte6ea44e2009-02-14 01:42:44 -0500207 if (*p != ops)
208 return -1;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200209
210 *p = (*p)->next;
211
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200212 if (ftrace_enabled) {
213 /* If we only have one func left, then call that directly */
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500214 if (ftrace_list->next == &ftrace_list_end) {
215 ftrace_func_t func = ftrace_list->func;
216
jolsa@redhat.com756d17e2009-10-13 16:33:52 -0400217 if (!list_empty(&ftrace_pids)) {
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500218 set_ftrace_pid_function(func);
219 func = ftrace_pid_func;
220 }
221#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
222 ftrace_trace_function = func;
223#else
224 __ftrace_trace_function = func;
225#endif
226 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200227 }
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200228
Steven Rostedte6ea44e2009-02-14 01:42:44 -0500229 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +0200230}
231
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500232static void ftrace_update_pid_func(void)
233{
234 ftrace_func_t func;
235
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500236 if (ftrace_trace_function == ftrace_stub)
KOSAKI Motohiro10dd3eb2009-03-06 15:29:04 +0900237 return;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500238
Matt Fleming33974092009-09-28 16:43:01 +0100239#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500240 func = ftrace_trace_function;
Matt Fleming33974092009-09-28 16:43:01 +0100241#else
242 func = __ftrace_trace_function;
243#endif
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500244
jolsa@redhat.com756d17e2009-10-13 16:33:52 -0400245 if (!list_empty(&ftrace_pids)) {
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500246 set_ftrace_pid_function(func);
247 func = ftrace_pid_func;
248 } else {
Liming Wang66eafeb2008-12-02 10:33:08 +0800249 if (func == ftrace_pid_func)
250 func = ftrace_pid_function;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500251 }
252
253#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
254 ftrace_trace_function = func;
255#else
256 __ftrace_trace_function = func;
257#endif
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500258}
259
Steven Rostedt493762f2009-03-23 17:12:36 -0400260#ifdef CONFIG_FUNCTION_PROFILER
261struct ftrace_profile {
262 struct hlist_node node;
263 unsigned long ip;
264 unsigned long counter;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400265#ifdef CONFIG_FUNCTION_GRAPH_TRACER
266 unsigned long long time;
Chase Douglase330b3b2010-04-26 14:02:05 -0400267 unsigned long long time_squared;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400268#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400269};
270
271struct ftrace_profile_page {
272 struct ftrace_profile_page *next;
273 unsigned long index;
274 struct ftrace_profile records[];
275};
276
Steven Rostedtcafb1682009-03-24 20:50:39 -0400277struct ftrace_profile_stat {
278 atomic_t disabled;
279 struct hlist_head *hash;
280 struct ftrace_profile_page *pages;
281 struct ftrace_profile_page *start;
282 struct tracer_stat stat;
283};
284
Steven Rostedt493762f2009-03-23 17:12:36 -0400285#define PROFILE_RECORDS_SIZE \
286 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
287
288#define PROFILES_PER_PAGE \
289 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
290
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400291static int ftrace_profile_bits __read_mostly;
292static int ftrace_profile_enabled __read_mostly;
293
294/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
Steven Rostedt493762f2009-03-23 17:12:36 -0400295static DEFINE_MUTEX(ftrace_profile_lock);
296
Steven Rostedtcafb1682009-03-24 20:50:39 -0400297static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
Steven Rostedt493762f2009-03-23 17:12:36 -0400298
299#define FTRACE_PROFILE_HASH_SIZE 1024 /* must be power of 2 */
300
Steven Rostedt493762f2009-03-23 17:12:36 -0400301static void *
302function_stat_next(void *v, int idx)
303{
304 struct ftrace_profile *rec = v;
305 struct ftrace_profile_page *pg;
306
307 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
308
309 again:
Li Zefan0296e422009-06-26 11:15:37 +0800310 if (idx != 0)
311 rec++;
312
Steven Rostedt493762f2009-03-23 17:12:36 -0400313 if ((void *)rec >= (void *)&pg->records[pg->index]) {
314 pg = pg->next;
315 if (!pg)
316 return NULL;
317 rec = &pg->records[0];
318 if (!rec->counter)
319 goto again;
320 }
321
322 return rec;
323}
324
325static void *function_stat_start(struct tracer_stat *trace)
326{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400327 struct ftrace_profile_stat *stat =
328 container_of(trace, struct ftrace_profile_stat, stat);
329
330 if (!stat || !stat->start)
331 return NULL;
332
333 return function_stat_next(&stat->start->records[0], 0);
Steven Rostedt493762f2009-03-23 17:12:36 -0400334}
335
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400336#ifdef CONFIG_FUNCTION_GRAPH_TRACER
337/* function graph compares on total time */
338static int function_stat_cmp(void *p1, void *p2)
339{
340 struct ftrace_profile *a = p1;
341 struct ftrace_profile *b = p2;
342
343 if (a->time < b->time)
344 return -1;
345 if (a->time > b->time)
346 return 1;
347 else
348 return 0;
349}
350#else
351/* not function graph compares against hits */
Steven Rostedt493762f2009-03-23 17:12:36 -0400352static int function_stat_cmp(void *p1, void *p2)
353{
354 struct ftrace_profile *a = p1;
355 struct ftrace_profile *b = p2;
356
357 if (a->counter < b->counter)
358 return -1;
359 if (a->counter > b->counter)
360 return 1;
361 else
362 return 0;
363}
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400364#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400365
366static int function_stat_headers(struct seq_file *m)
367{
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400368#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400369 seq_printf(m, " Function "
Chase Douglase330b3b2010-04-26 14:02:05 -0400370 "Hit Time Avg s^2\n"
Steven Rostedt34886c82009-03-25 21:00:47 -0400371 " -------- "
Chase Douglase330b3b2010-04-26 14:02:05 -0400372 "--- ---- --- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400373#else
Steven Rostedt493762f2009-03-23 17:12:36 -0400374 seq_printf(m, " Function Hit\n"
375 " -------- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400376#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400377 return 0;
378}
379
380static int function_stat_show(struct seq_file *m, void *v)
381{
382 struct ftrace_profile *rec = v;
383 char str[KSYM_SYMBOL_LEN];
Li Zefan3aaba202010-08-23 16:50:12 +0800384 int ret = 0;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400385#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400386 static struct trace_seq s;
387 unsigned long long avg;
Chase Douglase330b3b2010-04-26 14:02:05 -0400388 unsigned long long stddev;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400389#endif
Li Zefan3aaba202010-08-23 16:50:12 +0800390 mutex_lock(&ftrace_profile_lock);
391
392 /* we raced with function_profile_reset() */
393 if (unlikely(rec->counter == 0)) {
394 ret = -EBUSY;
395 goto out;
396 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400397
398 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400399 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
Steven Rostedt493762f2009-03-23 17:12:36 -0400400
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400401#ifdef CONFIG_FUNCTION_GRAPH_TRACER
402 seq_printf(m, " ");
Steven Rostedt34886c82009-03-25 21:00:47 -0400403 avg = rec->time;
404 do_div(avg, rec->counter);
405
Chase Douglase330b3b2010-04-26 14:02:05 -0400406 /* Sample standard deviation (s^2) */
407 if (rec->counter <= 1)
408 stddev = 0;
409 else {
410 stddev = rec->time_squared - rec->counter * avg * avg;
411 /*
412 * Divide only 1000 for ns^2 -> us^2 conversion.
413 * trace_print_graph_duration will divide 1000 again.
414 */
415 do_div(stddev, (rec->counter - 1) * 1000);
416 }
417
Steven Rostedt34886c82009-03-25 21:00:47 -0400418 trace_seq_init(&s);
419 trace_print_graph_duration(rec->time, &s);
420 trace_seq_puts(&s, " ");
421 trace_print_graph_duration(avg, &s);
Chase Douglase330b3b2010-04-26 14:02:05 -0400422 trace_seq_puts(&s, " ");
423 trace_print_graph_duration(stddev, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400424 trace_print_seq(m, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400425#endif
426 seq_putc(m, '\n');
Li Zefan3aaba202010-08-23 16:50:12 +0800427out:
428 mutex_unlock(&ftrace_profile_lock);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400429
Li Zefan3aaba202010-08-23 16:50:12 +0800430 return ret;
Steven Rostedt493762f2009-03-23 17:12:36 -0400431}
432
Steven Rostedtcafb1682009-03-24 20:50:39 -0400433static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400434{
435 struct ftrace_profile_page *pg;
436
Steven Rostedtcafb1682009-03-24 20:50:39 -0400437 pg = stat->pages = stat->start;
Steven Rostedt493762f2009-03-23 17:12:36 -0400438
439 while (pg) {
440 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
441 pg->index = 0;
442 pg = pg->next;
443 }
444
Steven Rostedtcafb1682009-03-24 20:50:39 -0400445 memset(stat->hash, 0,
Steven Rostedt493762f2009-03-23 17:12:36 -0400446 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
447}
448
Steven Rostedtcafb1682009-03-24 20:50:39 -0400449int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400450{
451 struct ftrace_profile_page *pg;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400452 int functions;
453 int pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400454 int i;
455
456 /* If we already allocated, do nothing */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400457 if (stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400458 return 0;
459
Steven Rostedtcafb1682009-03-24 20:50:39 -0400460 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
461 if (!stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400462 return -ENOMEM;
463
Steven Rostedt318e0a72009-03-25 20:06:34 -0400464#ifdef CONFIG_DYNAMIC_FTRACE
465 functions = ftrace_update_tot_cnt;
466#else
467 /*
468 * We do not know the number of functions that exist because
469 * dynamic tracing is what counts them. With past experience
470 * we have around 20K functions. That should be more than enough.
471 * It is highly unlikely we will execute every function in
472 * the kernel.
473 */
474 functions = 20000;
475#endif
476
Steven Rostedtcafb1682009-03-24 20:50:39 -0400477 pg = stat->start = stat->pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400478
Steven Rostedt318e0a72009-03-25 20:06:34 -0400479 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
480
481 for (i = 0; i < pages; i++) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400482 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400483 if (!pg->next)
Steven Rostedt318e0a72009-03-25 20:06:34 -0400484 goto out_free;
Steven Rostedt493762f2009-03-23 17:12:36 -0400485 pg = pg->next;
486 }
487
488 return 0;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400489
490 out_free:
491 pg = stat->start;
492 while (pg) {
493 unsigned long tmp = (unsigned long)pg;
494
495 pg = pg->next;
496 free_page(tmp);
497 }
498
499 free_page((unsigned long)stat->pages);
500 stat->pages = NULL;
501 stat->start = NULL;
502
503 return -ENOMEM;
Steven Rostedt493762f2009-03-23 17:12:36 -0400504}
505
Steven Rostedtcafb1682009-03-24 20:50:39 -0400506static int ftrace_profile_init_cpu(int cpu)
Steven Rostedt493762f2009-03-23 17:12:36 -0400507{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400508 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400509 int size;
510
Steven Rostedtcafb1682009-03-24 20:50:39 -0400511 stat = &per_cpu(ftrace_profile_stats, cpu);
512
513 if (stat->hash) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400514 /* If the profile is already created, simply reset it */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400515 ftrace_profile_reset(stat);
Steven Rostedt493762f2009-03-23 17:12:36 -0400516 return 0;
517 }
518
519 /*
520 * We are profiling all functions, but usually only a few thousand
521 * functions are hit. We'll make a hash of 1024 items.
522 */
523 size = FTRACE_PROFILE_HASH_SIZE;
524
Steven Rostedtcafb1682009-03-24 20:50:39 -0400525 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400526
Steven Rostedtcafb1682009-03-24 20:50:39 -0400527 if (!stat->hash)
Steven Rostedt493762f2009-03-23 17:12:36 -0400528 return -ENOMEM;
529
Steven Rostedtcafb1682009-03-24 20:50:39 -0400530 if (!ftrace_profile_bits) {
531 size--;
Steven Rostedt493762f2009-03-23 17:12:36 -0400532
Steven Rostedtcafb1682009-03-24 20:50:39 -0400533 for (; size; size >>= 1)
534 ftrace_profile_bits++;
535 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400536
Steven Rostedt318e0a72009-03-25 20:06:34 -0400537 /* Preallocate the function profiling pages */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400538 if (ftrace_profile_pages_init(stat) < 0) {
539 kfree(stat->hash);
540 stat->hash = NULL;
Steven Rostedt493762f2009-03-23 17:12:36 -0400541 return -ENOMEM;
542 }
543
544 return 0;
545}
546
Steven Rostedtcafb1682009-03-24 20:50:39 -0400547static int ftrace_profile_init(void)
548{
549 int cpu;
550 int ret = 0;
551
552 for_each_online_cpu(cpu) {
553 ret = ftrace_profile_init_cpu(cpu);
554 if (ret)
555 break;
556 }
557
558 return ret;
559}
560
Steven Rostedt493762f2009-03-23 17:12:36 -0400561/* interrupts must be disabled */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400562static struct ftrace_profile *
563ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400564{
565 struct ftrace_profile *rec;
566 struct hlist_head *hhd;
567 struct hlist_node *n;
568 unsigned long key;
569
570 key = hash_long(ip, ftrace_profile_bits);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400571 hhd = &stat->hash[key];
Steven Rostedt493762f2009-03-23 17:12:36 -0400572
573 if (hlist_empty(hhd))
574 return NULL;
575
576 hlist_for_each_entry_rcu(rec, n, hhd, node) {
577 if (rec->ip == ip)
578 return rec;
579 }
580
581 return NULL;
582}
583
Steven Rostedtcafb1682009-03-24 20:50:39 -0400584static void ftrace_add_profile(struct ftrace_profile_stat *stat,
585 struct ftrace_profile *rec)
Steven Rostedt493762f2009-03-23 17:12:36 -0400586{
587 unsigned long key;
588
589 key = hash_long(rec->ip, ftrace_profile_bits);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400590 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
Steven Rostedt493762f2009-03-23 17:12:36 -0400591}
592
Steven Rostedt318e0a72009-03-25 20:06:34 -0400593/*
594 * The memory is already allocated, this simply finds a new record to use.
595 */
Steven Rostedt493762f2009-03-23 17:12:36 -0400596static struct ftrace_profile *
Steven Rostedt318e0a72009-03-25 20:06:34 -0400597ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400598{
599 struct ftrace_profile *rec = NULL;
600
Steven Rostedt318e0a72009-03-25 20:06:34 -0400601 /* prevent recursion (from NMIs) */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400602 if (atomic_inc_return(&stat->disabled) != 1)
Steven Rostedt493762f2009-03-23 17:12:36 -0400603 goto out;
604
Steven Rostedt493762f2009-03-23 17:12:36 -0400605 /*
Steven Rostedt318e0a72009-03-25 20:06:34 -0400606 * Try to find the function again since an NMI
607 * could have added it
Steven Rostedt493762f2009-03-23 17:12:36 -0400608 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400609 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400610 if (rec)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400611 goto out;
Steven Rostedt493762f2009-03-23 17:12:36 -0400612
Steven Rostedtcafb1682009-03-24 20:50:39 -0400613 if (stat->pages->index == PROFILES_PER_PAGE) {
614 if (!stat->pages->next)
615 goto out;
616 stat->pages = stat->pages->next;
Steven Rostedt493762f2009-03-23 17:12:36 -0400617 }
618
Steven Rostedtcafb1682009-03-24 20:50:39 -0400619 rec = &stat->pages->records[stat->pages->index++];
Steven Rostedt493762f2009-03-23 17:12:36 -0400620 rec->ip = ip;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400621 ftrace_add_profile(stat, rec);
Steven Rostedt493762f2009-03-23 17:12:36 -0400622
Steven Rostedt493762f2009-03-23 17:12:36 -0400623 out:
Steven Rostedtcafb1682009-03-24 20:50:39 -0400624 atomic_dec(&stat->disabled);
Steven Rostedt493762f2009-03-23 17:12:36 -0400625
626 return rec;
627}
628
Steven Rostedt493762f2009-03-23 17:12:36 -0400629static void
630function_profile_call(unsigned long ip, unsigned long parent_ip)
631{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400632 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400633 struct ftrace_profile *rec;
634 unsigned long flags;
Steven Rostedt493762f2009-03-23 17:12:36 -0400635
636 if (!ftrace_profile_enabled)
637 return;
638
Steven Rostedt493762f2009-03-23 17:12:36 -0400639 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400640
641 stat = &__get_cpu_var(ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400642 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400643 goto out;
644
645 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400646 if (!rec) {
Steven Rostedt318e0a72009-03-25 20:06:34 -0400647 rec = ftrace_profile_alloc(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400648 if (!rec)
649 goto out;
650 }
651
652 rec->counter++;
653 out:
654 local_irq_restore(flags);
655}
656
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400657#ifdef CONFIG_FUNCTION_GRAPH_TRACER
658static int profile_graph_entry(struct ftrace_graph_ent *trace)
659{
660 function_profile_call(trace->func, 0);
661 return 1;
662}
663
664static void profile_graph_return(struct ftrace_graph_ret *trace)
665{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400666 struct ftrace_profile_stat *stat;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400667 unsigned long long calltime;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400668 struct ftrace_profile *rec;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400669 unsigned long flags;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400670
671 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400672 stat = &__get_cpu_var(ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400673 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400674 goto out;
675
Steven Rostedt37e44bc2010-04-27 21:04:24 -0400676 /* If the calltime was zero'd ignore it */
677 if (!trace->calltime)
678 goto out;
679
Steven Rostedta2a16d62009-03-24 23:17:58 -0400680 calltime = trace->rettime - trace->calltime;
681
682 if (!(trace_flags & TRACE_ITER_GRAPH_TIME)) {
683 int index;
684
685 index = trace->depth;
686
687 /* Append this call time to the parent time to subtract */
688 if (index)
689 current->ret_stack[index - 1].subtime += calltime;
690
691 if (current->ret_stack[index].subtime < calltime)
692 calltime -= current->ret_stack[index].subtime;
693 else
694 calltime = 0;
695 }
696
Steven Rostedtcafb1682009-03-24 20:50:39 -0400697 rec = ftrace_find_profiled_func(stat, trace->func);
Chase Douglase330b3b2010-04-26 14:02:05 -0400698 if (rec) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400699 rec->time += calltime;
Chase Douglase330b3b2010-04-26 14:02:05 -0400700 rec->time_squared += calltime * calltime;
701 }
Steven Rostedta2a16d62009-03-24 23:17:58 -0400702
Steven Rostedtcafb1682009-03-24 20:50:39 -0400703 out:
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400704 local_irq_restore(flags);
705}
706
707static int register_ftrace_profiler(void)
708{
709 return register_ftrace_graph(&profile_graph_return,
710 &profile_graph_entry);
711}
712
713static void unregister_ftrace_profiler(void)
714{
715 unregister_ftrace_graph();
716}
717#else
Steven Rostedt493762f2009-03-23 17:12:36 -0400718static struct ftrace_ops ftrace_profile_ops __read_mostly =
719{
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400720 .func = function_profile_call,
Steven Rostedt493762f2009-03-23 17:12:36 -0400721};
722
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400723static int register_ftrace_profiler(void)
724{
725 return register_ftrace_function(&ftrace_profile_ops);
726}
727
728static void unregister_ftrace_profiler(void)
729{
730 unregister_ftrace_function(&ftrace_profile_ops);
731}
732#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
733
Steven Rostedt493762f2009-03-23 17:12:36 -0400734static ssize_t
735ftrace_profile_write(struct file *filp, const char __user *ubuf,
736 size_t cnt, loff_t *ppos)
737{
738 unsigned long val;
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400739 char buf[64]; /* big enough to hold a number */
Steven Rostedt493762f2009-03-23 17:12:36 -0400740 int ret;
741
742 if (cnt >= sizeof(buf))
743 return -EINVAL;
744
745 if (copy_from_user(&buf, ubuf, cnt))
746 return -EFAULT;
747
748 buf[cnt] = 0;
749
750 ret = strict_strtoul(buf, 10, &val);
751 if (ret < 0)
752 return ret;
753
754 val = !!val;
755
756 mutex_lock(&ftrace_profile_lock);
757 if (ftrace_profile_enabled ^ val) {
758 if (val) {
759 ret = ftrace_profile_init();
760 if (ret < 0) {
761 cnt = ret;
762 goto out;
763 }
764
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400765 ret = register_ftrace_profiler();
766 if (ret < 0) {
767 cnt = ret;
768 goto out;
769 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400770 ftrace_profile_enabled = 1;
771 } else {
772 ftrace_profile_enabled = 0;
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400773 /*
774 * unregister_ftrace_profiler calls stop_machine
775 * so this acts like an synchronize_sched.
776 */
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400777 unregister_ftrace_profiler();
Steven Rostedt493762f2009-03-23 17:12:36 -0400778 }
779 }
780 out:
781 mutex_unlock(&ftrace_profile_lock);
782
Jiri Olsacf8517c2009-10-23 19:36:16 -0400783 *ppos += cnt;
Steven Rostedt493762f2009-03-23 17:12:36 -0400784
785 return cnt;
786}
787
788static ssize_t
789ftrace_profile_read(struct file *filp, char __user *ubuf,
790 size_t cnt, loff_t *ppos)
791{
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400792 char buf[64]; /* big enough to hold a number */
Steven Rostedt493762f2009-03-23 17:12:36 -0400793 int r;
794
795 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
796 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
797}
798
799static const struct file_operations ftrace_profile_fops = {
800 .open = tracing_open_generic,
801 .read = ftrace_profile_read,
802 .write = ftrace_profile_write,
803};
804
Steven Rostedtcafb1682009-03-24 20:50:39 -0400805/* used to initialize the real stat files */
806static struct tracer_stat function_stats __initdata = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400807 .name = "functions",
808 .stat_start = function_stat_start,
809 .stat_next = function_stat_next,
810 .stat_cmp = function_stat_cmp,
811 .stat_headers = function_stat_headers,
812 .stat_show = function_stat_show
Steven Rostedtcafb1682009-03-24 20:50:39 -0400813};
814
Steven Rostedt6ab5d662009-06-04 00:55:45 -0400815static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -0400816{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400817 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400818 struct dentry *entry;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400819 char *name;
Steven Rostedt493762f2009-03-23 17:12:36 -0400820 int ret;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400821 int cpu;
Steven Rostedt493762f2009-03-23 17:12:36 -0400822
Steven Rostedtcafb1682009-03-24 20:50:39 -0400823 for_each_possible_cpu(cpu) {
824 stat = &per_cpu(ftrace_profile_stats, cpu);
825
826 /* allocate enough for function name + cpu number */
827 name = kmalloc(32, GFP_KERNEL);
828 if (!name) {
829 /*
830 * The files created are permanent, if something happens
831 * we still do not free memory.
832 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400833 WARN(1,
834 "Could not allocate stat file for cpu %d\n",
835 cpu);
836 return;
837 }
838 stat->stat = function_stats;
839 snprintf(name, 32, "function%d", cpu);
840 stat->stat.name = name;
841 ret = register_stat_tracer(&stat->stat);
842 if (ret) {
843 WARN(1,
844 "Could not register function stat for cpu %d\n",
845 cpu);
846 kfree(name);
847 return;
848 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400849 }
850
851 entry = debugfs_create_file("function_profile_enabled", 0644,
852 d_tracer, NULL, &ftrace_profile_fops);
853 if (!entry)
854 pr_warning("Could not create debugfs "
855 "'function_profile_enabled' entry\n");
856}
857
858#else /* CONFIG_FUNCTION_PROFILER */
Steven Rostedt6ab5d662009-06-04 00:55:45 -0400859static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -0400860{
861}
862#endif /* CONFIG_FUNCTION_PROFILER */
863
Ingo Molnar73d3fd92009-02-17 11:48:18 +0100864static struct pid * const ftrace_swapper_pid = &init_struct_pid;
865
Steven Rostedt3d083392008-05-12 21:20:42 +0200866#ifdef CONFIG_DYNAMIC_FTRACE
Ingo Molnar73d3fd92009-02-17 11:48:18 +0100867
Steven Rostedt99ecdc42008-08-15 21:40:05 -0400868#ifndef CONFIG_FTRACE_MCOUNT_RECORD
Steven Rostedtcb7be3b2008-10-23 09:33:05 -0400869# error Dynamic ftrace depends on MCOUNT_RECORD
Steven Rostedt99ecdc42008-08-15 21:40:05 -0400870#endif
871
Steven Rostedt8fc0c702009-02-16 15:28:00 -0500872static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
873
Steven Rostedtb6887d72009-02-17 12:32:04 -0500874struct ftrace_func_probe {
Steven Rostedt8fc0c702009-02-16 15:28:00 -0500875 struct hlist_node node;
Steven Rostedtb6887d72009-02-17 12:32:04 -0500876 struct ftrace_probe_ops *ops;
Steven Rostedt8fc0c702009-02-16 15:28:00 -0500877 unsigned long flags;
878 unsigned long ip;
879 void *data;
880 struct rcu_head rcu;
881};
882
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200883enum {
884 FTRACE_ENABLE_CALLS = (1 << 0),
885 FTRACE_DISABLE_CALLS = (1 << 1),
886 FTRACE_UPDATE_TRACE_FUNC = (1 << 2),
887 FTRACE_ENABLE_MCOUNT = (1 << 3),
888 FTRACE_DISABLE_MCOUNT = (1 << 4),
Steven Rostedt5a45cfe2008-11-26 00:16:24 -0500889 FTRACE_START_FUNC_RET = (1 << 5),
890 FTRACE_STOP_FUNC_RET = (1 << 6),
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200891};
892
Steven Rostedt5072c592008-05-12 21:20:43 +0200893static int ftrace_filtered;
894
Lai Jiangshane94142a2009-03-13 17:51:27 +0800895static struct dyn_ftrace *ftrace_new_addrs;
Steven Rostedt3d083392008-05-12 21:20:42 +0200896
Steven Rostedt41c52c02008-05-22 11:46:33 -0400897static DEFINE_MUTEX(ftrace_regex_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +0200898
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200899struct ftrace_page {
900 struct ftrace_page *next;
Steven Rostedt431aa3f2009-01-06 12:43:01 -0500901 int index;
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200902 struct dyn_ftrace records[];
David Milleraa5e5ce2008-05-13 22:06:56 -0700903};
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200904
905#define ENTRIES_PER_PAGE \
906 ((PAGE_SIZE - sizeof(struct ftrace_page)) / sizeof(struct dyn_ftrace))
907
908/* estimate from running different kernels */
909#define NR_TO_INIT 10000
910
911static struct ftrace_page *ftrace_pages_start;
912static struct ftrace_page *ftrace_pages;
913
Steven Rostedt37ad5082008-05-12 21:20:48 +0200914static struct dyn_ftrace *ftrace_free_records;
915
Steven Rostedt265c8312009-02-13 12:43:56 -0500916/*
917 * This is a double for. Do not use 'break' to break out of the loop,
918 * you must use a goto.
919 */
920#define do_for_each_ftrace_rec(pg, rec) \
921 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
922 int _____i; \
923 for (_____i = 0; _____i < pg->index; _____i++) { \
924 rec = &pg->records[_____i];
925
926#define while_for_each_ftrace_rec() \
927 } \
928 }
Abhishek Sagarecea6562008-06-21 23:47:53 +0530929
Ingo Molnare309b412008-05-12 21:20:51 +0200930static void ftrace_free_rec(struct dyn_ftrace *rec)
Steven Rostedt37ad5082008-05-12 21:20:48 +0200931{
Lai Jiangshanee000b72009-03-24 13:38:06 +0800932 rec->freelist = ftrace_free_records;
Steven Rostedt37ad5082008-05-12 21:20:48 +0200933 ftrace_free_records = rec;
934 rec->flags |= FTRACE_FL_FREE;
935}
936
Ingo Molnare309b412008-05-12 21:20:51 +0200937static struct dyn_ftrace *ftrace_alloc_dyn_node(unsigned long ip)
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200938{
Steven Rostedt37ad5082008-05-12 21:20:48 +0200939 struct dyn_ftrace *rec;
940
941 /* First check for freed records */
942 if (ftrace_free_records) {
943 rec = ftrace_free_records;
944
Steven Rostedt37ad5082008-05-12 21:20:48 +0200945 if (unlikely(!(rec->flags & FTRACE_FL_FREE))) {
Steven Rostedt69128962008-10-23 09:33:03 -0400946 FTRACE_WARN_ON_ONCE(1);
Steven Rostedt37ad5082008-05-12 21:20:48 +0200947 ftrace_free_records = NULL;
948 return NULL;
949 }
950
Lai Jiangshanee000b72009-03-24 13:38:06 +0800951 ftrace_free_records = rec->freelist;
Steven Rostedt37ad5082008-05-12 21:20:48 +0200952 memset(rec, 0, sizeof(*rec));
953 return rec;
954 }
955
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200956 if (ftrace_pages->index == ENTRIES_PER_PAGE) {
Steven Rostedt08f5ac902008-10-23 09:33:07 -0400957 if (!ftrace_pages->next) {
958 /* allocate another page */
959 ftrace_pages->next =
960 (void *)get_zeroed_page(GFP_KERNEL);
961 if (!ftrace_pages->next)
962 return NULL;
963 }
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200964 ftrace_pages = ftrace_pages->next;
965 }
966
967 return &ftrace_pages->records[ftrace_pages->index++];
968}
969
Steven Rostedt08f5ac902008-10-23 09:33:07 -0400970static struct dyn_ftrace *
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200971ftrace_record_ip(unsigned long ip)
Steven Rostedt3d083392008-05-12 21:20:42 +0200972{
Steven Rostedt08f5ac902008-10-23 09:33:07 -0400973 struct dyn_ftrace *rec;
Steven Rostedt3d083392008-05-12 21:20:42 +0200974
Steven Rostedtf3c7ac42008-11-14 16:21:19 -0800975 if (ftrace_disabled)
Steven Rostedt08f5ac902008-10-23 09:33:07 -0400976 return NULL;
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200977
Steven Rostedt08f5ac902008-10-23 09:33:07 -0400978 rec = ftrace_alloc_dyn_node(ip);
979 if (!rec)
980 return NULL;
Steven Rostedt3d083392008-05-12 21:20:42 +0200981
Steven Rostedt08f5ac902008-10-23 09:33:07 -0400982 rec->ip = ip;
Lai Jiangshanee000b72009-03-24 13:38:06 +0800983 rec->newlist = ftrace_new_addrs;
Lai Jiangshane94142a2009-03-13 17:51:27 +0800984 ftrace_new_addrs = rec;
Steven Rostedt3d083392008-05-12 21:20:42 +0200985
Steven Rostedt08f5ac902008-10-23 09:33:07 -0400986 return rec;
Steven Rostedt3d083392008-05-12 21:20:42 +0200987}
988
Steven Rostedt05736a42008-09-22 14:55:47 -0700989static void print_ip_ins(const char *fmt, unsigned char *p)
990{
991 int i;
992
993 printk(KERN_CONT "%s", fmt);
994
995 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
996 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
997}
998
Steven Rostedt31e88902008-11-14 16:21:19 -0800999static void ftrace_bug(int failed, unsigned long ip)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001000{
1001 switch (failed) {
1002 case -EFAULT:
1003 FTRACE_WARN_ON_ONCE(1);
1004 pr_info("ftrace faulted on modifying ");
1005 print_ip_sym(ip);
1006 break;
1007 case -EINVAL:
1008 FTRACE_WARN_ON_ONCE(1);
1009 pr_info("ftrace failed to modify ");
1010 print_ip_sym(ip);
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001011 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001012 printk(KERN_CONT "\n");
1013 break;
1014 case -EPERM:
1015 FTRACE_WARN_ON_ONCE(1);
1016 pr_info("ftrace faulted on writing ");
1017 print_ip_sym(ip);
1018 break;
1019 default:
1020 FTRACE_WARN_ON_ONCE(1);
1021 pr_info("ftrace faulted on unknown error ");
1022 print_ip_sym(ip);
1023 }
1024}
1025
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001026
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -05001027/* Return 1 if the address range is reserved for ftrace */
1028int ftrace_text_reserved(void *start, void *end)
1029{
1030 struct dyn_ftrace *rec;
1031 struct ftrace_page *pg;
1032
1033 do_for_each_ftrace_rec(pg, rec) {
1034 if (rec->ip <= (unsigned long)end &&
1035 rec->ip + MCOUNT_INSN_SIZE > (unsigned long)start)
1036 return 1;
1037 } while_for_each_ftrace_rec();
1038 return 0;
1039}
1040
1041
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301042static int
Steven Rostedt31e88902008-11-14 16:21:19 -08001043__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001044{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01001045 unsigned long ftrace_addr;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001046 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01001047
Shaohua Lif0001202009-01-09 11:29:42 +08001048 ftrace_addr = (unsigned long)FTRACE_ADDR;
Steven Rostedt5072c592008-05-12 21:20:43 +02001049
Steven Rostedt982c3502008-11-15 16:31:41 -05001050 /*
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001051 * If this record is not to be traced or we want to disable it,
1052 * then disable it.
Steven Rostedt982c3502008-11-15 16:31:41 -05001053 *
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001054 * If we want to enable it and filtering is off, then enable it.
Steven Rostedt982c3502008-11-15 16:31:41 -05001055 *
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001056 * If we want to enable it and filtering is on, enable it only if
1057 * it's filtered
Steven Rostedt982c3502008-11-15 16:31:41 -05001058 */
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001059 if (enable && !(rec->flags & FTRACE_FL_NOTRACE)) {
1060 if (!ftrace_filtered || (rec->flags & FTRACE_FL_FILTER))
1061 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02001062 }
1063
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001064 /* If the state of this record hasn't changed, then do nothing */
1065 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
1066 return 0;
1067
1068 if (flag) {
1069 rec->flags |= FTRACE_FL_ENABLED;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01001070 return ftrace_make_call(rec, ftrace_addr);
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001071 }
1072
1073 rec->flags &= ~FTRACE_FL_ENABLED;
1074 return ftrace_make_nop(NULL, rec, ftrace_addr);
Steven Rostedt5072c592008-05-12 21:20:43 +02001075}
1076
1077static void ftrace_replace_code(int enable)
1078{
Steven Rostedt37ad5082008-05-12 21:20:48 +02001079 struct dyn_ftrace *rec;
1080 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05001081 int failed;
Steven Rostedt37ad5082008-05-12 21:20:48 +02001082
Steven Rostedt265c8312009-02-13 12:43:56 -05001083 do_for_each_ftrace_rec(pg, rec) {
1084 /*
Zhaoleifa9d13c2009-03-13 17:16:34 +08001085 * Skip over free records, records that have
1086 * failed and not converted.
Steven Rostedt265c8312009-02-13 12:43:56 -05001087 */
1088 if (rec->flags & FTRACE_FL_FREE ||
Zhaoleifa9d13c2009-03-13 17:16:34 +08001089 rec->flags & FTRACE_FL_FAILED ||
Frederic Weisbecker03303542009-03-16 22:41:00 +01001090 !(rec->flags & FTRACE_FL_CONVERTED))
Steven Rostedt265c8312009-02-13 12:43:56 -05001091 continue;
Steven Rostedt5072c592008-05-12 21:20:43 +02001092
Steven Rostedt265c8312009-02-13 12:43:56 -05001093 failed = __ftrace_replace_code(rec, enable);
Zhaoleifa9d13c2009-03-13 17:16:34 +08001094 if (failed) {
Steven Rostedt265c8312009-02-13 12:43:56 -05001095 rec->flags |= FTRACE_FL_FAILED;
Steven Rostedt3279ba32009-10-07 16:57:56 -04001096 ftrace_bug(failed, rec->ip);
1097 /* Stop processing */
1098 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05001099 }
1100 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001101}
1102
Ingo Molnare309b412008-05-12 21:20:51 +02001103static int
Steven Rostedt31e88902008-11-14 16:21:19 -08001104ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001105{
1106 unsigned long ip;
Steven Rostedt593eb8a2008-10-23 09:32:59 -04001107 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001108
1109 ip = rec->ip;
1110
Shaohua Li25aac9d2009-01-09 11:29:40 +08001111 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04001112 if (ret) {
Steven Rostedt31e88902008-11-14 16:21:19 -08001113 ftrace_bug(ret, ip);
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001114 rec->flags |= FTRACE_FL_FAILED;
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301115 return 0;
Steven Rostedt37ad5082008-05-12 21:20:48 +02001116 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301117 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001118}
1119
Steven Rostedt000ab692009-02-17 13:35:06 -05001120/*
1121 * archs can override this function if they must do something
1122 * before the modifying code is performed.
1123 */
1124int __weak ftrace_arch_code_modify_prepare(void)
1125{
1126 return 0;
1127}
1128
1129/*
1130 * archs can override this function if they must do something
1131 * after the modifying code is performed.
1132 */
1133int __weak ftrace_arch_code_modify_post_process(void)
1134{
1135 return 0;
1136}
1137
Ingo Molnare309b412008-05-12 21:20:51 +02001138static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02001139{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001140 int *command = data;
1141
Steven Rostedta3583242008-11-11 15:01:42 -05001142 if (*command & FTRACE_ENABLE_CALLS)
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001143 ftrace_replace_code(1);
Steven Rostedta3583242008-11-11 15:01:42 -05001144 else if (*command & FTRACE_DISABLE_CALLS)
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001145 ftrace_replace_code(0);
1146
1147 if (*command & FTRACE_UPDATE_TRACE_FUNC)
1148 ftrace_update_ftrace_func(ftrace_trace_function);
1149
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05001150 if (*command & FTRACE_START_FUNC_RET)
1151 ftrace_enable_ftrace_graph_caller();
1152 else if (*command & FTRACE_STOP_FUNC_RET)
1153 ftrace_disable_ftrace_graph_caller();
1154
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001155 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02001156}
1157
Ingo Molnare309b412008-05-12 21:20:51 +02001158static void ftrace_run_update_code(int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02001159{
Steven Rostedt000ab692009-02-17 13:35:06 -05001160 int ret;
1161
1162 ret = ftrace_arch_code_modify_prepare();
1163 FTRACE_WARN_ON(ret);
1164 if (ret)
1165 return;
1166
Rusty Russell784e2d72008-07-28 12:16:31 -05001167 stop_machine(__ftrace_modify_code, &command, NULL);
Steven Rostedt000ab692009-02-17 13:35:06 -05001168
1169 ret = ftrace_arch_code_modify_post_process();
1170 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02001171}
1172
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001173static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001174static int ftrace_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05001175
1176static void ftrace_startup_enable(int command)
1177{
1178 if (saved_ftrace_func != ftrace_trace_function) {
1179 saved_ftrace_func = ftrace_trace_function;
1180 command |= FTRACE_UPDATE_TRACE_FUNC;
1181 }
1182
1183 if (!command || !ftrace_enabled)
1184 return;
1185
1186 ftrace_run_update_code(command);
1187}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001188
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05001189static void ftrace_startup(int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02001190{
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001191 if (unlikely(ftrace_disabled))
1192 return;
1193
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001194 ftrace_start_up++;
Steven Rostedt982c3502008-11-15 16:31:41 -05001195 command |= FTRACE_ENABLE_CALLS;
Steven Rostedt3d083392008-05-12 21:20:42 +02001196
Steven Rostedtdf4fc312008-11-26 00:16:23 -05001197 ftrace_startup_enable(command);
Steven Rostedt3d083392008-05-12 21:20:42 +02001198}
1199
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05001200static void ftrace_shutdown(int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02001201{
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001202 if (unlikely(ftrace_disabled))
1203 return;
1204
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001205 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02001206 /*
1207 * Just warn in case of unbalance, no need to kill ftrace, it's not
1208 * critical but the ftrace_call callers may be never nopped again after
1209 * further ftrace uses.
1210 */
1211 WARN_ON_ONCE(ftrace_start_up < 0);
1212
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001213 if (!ftrace_start_up)
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001214 command |= FTRACE_DISABLE_CALLS;
1215
1216 if (saved_ftrace_func != ftrace_trace_function) {
1217 saved_ftrace_func = ftrace_trace_function;
1218 command |= FTRACE_UPDATE_TRACE_FUNC;
1219 }
1220
1221 if (!command || !ftrace_enabled)
Steven Rostedte6ea44e2009-02-14 01:42:44 -05001222 return;
Steven Rostedt3d083392008-05-12 21:20:42 +02001223
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001224 ftrace_run_update_code(command);
Steven Rostedt3d083392008-05-12 21:20:42 +02001225}
1226
Ingo Molnare309b412008-05-12 21:20:51 +02001227static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001228{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001229 int command = FTRACE_ENABLE_MCOUNT;
1230
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001231 if (unlikely(ftrace_disabled))
1232 return;
1233
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001234 /* Force update next time */
1235 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001236 /* ftrace_start_up is true if we want ftrace running */
1237 if (ftrace_start_up)
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001238 command |= FTRACE_ENABLE_CALLS;
1239
1240 ftrace_run_update_code(command);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001241}
1242
Ingo Molnare309b412008-05-12 21:20:51 +02001243static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001244{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001245 int command = FTRACE_DISABLE_MCOUNT;
1246
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001247 if (unlikely(ftrace_disabled))
1248 return;
1249
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001250 /* ftrace_start_up is true if ftrace is running */
1251 if (ftrace_start_up)
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001252 command |= FTRACE_DISABLE_CALLS;
1253
1254 ftrace_run_update_code(command);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001255}
1256
Steven Rostedt3d083392008-05-12 21:20:42 +02001257static cycle_t ftrace_update_time;
1258static unsigned long ftrace_update_cnt;
1259unsigned long ftrace_update_tot_cnt;
1260
Steven Rostedt31e88902008-11-14 16:21:19 -08001261static int ftrace_update_code(struct module *mod)
Steven Rostedt3d083392008-05-12 21:20:42 +02001262{
Lai Jiangshane94142a2009-03-13 17:51:27 +08001263 struct dyn_ftrace *p;
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05301264 cycle_t start, stop;
Steven Rostedt3d083392008-05-12 21:20:42 +02001265
Ingo Molnar750ed1a2008-05-12 21:20:46 +02001266 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02001267 ftrace_update_cnt = 0;
1268
Lai Jiangshane94142a2009-03-13 17:51:27 +08001269 while (ftrace_new_addrs) {
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05301270
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001271 /* If something went wrong, bail without enabling anything */
1272 if (unlikely(ftrace_disabled))
1273 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02001274
Lai Jiangshane94142a2009-03-13 17:51:27 +08001275 p = ftrace_new_addrs;
Lai Jiangshanee000b72009-03-24 13:38:06 +08001276 ftrace_new_addrs = p->newlist;
Lai Jiangshane94142a2009-03-13 17:51:27 +08001277 p->flags = 0L;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05301278
Jiri Olsa5cb084b2009-10-13 16:33:53 -04001279 /*
1280 * Do the initial record convertion from mcount jump
1281 * to the NOP instructions.
1282 */
1283 if (!ftrace_code_disable(mod, p)) {
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001284 ftrace_free_rec(p);
Jiri Olsa5cb084b2009-10-13 16:33:53 -04001285 continue;
1286 }
1287
1288 p->flags |= FTRACE_FL_CONVERTED;
1289 ftrace_update_cnt++;
1290
1291 /*
1292 * If the tracing is enabled, go ahead and enable the record.
1293 *
1294 * The reason not to enable the record immediatelly is the
1295 * inherent check of ftrace_make_nop/ftrace_make_call for
1296 * correct previous instructions. Making first the NOP
1297 * conversion puts the module to the correct state, thus
1298 * passing the ftrace_make_call check.
1299 */
1300 if (ftrace_start_up) {
1301 int failed = __ftrace_replace_code(p, 1);
1302 if (failed) {
1303 ftrace_bug(failed, p->ip);
1304 ftrace_free_rec(p);
1305 }
1306 }
Steven Rostedt3d083392008-05-12 21:20:42 +02001307 }
1308
Ingo Molnar750ed1a2008-05-12 21:20:46 +02001309 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02001310 ftrace_update_time = stop - start;
1311 ftrace_update_tot_cnt += ftrace_update_cnt;
1312
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02001313 return 0;
1314}
1315
Steven Rostedt68bf21a2008-08-14 15:45:08 -04001316static int __init ftrace_dyn_table_alloc(unsigned long num_to_init)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001317{
1318 struct ftrace_page *pg;
1319 int cnt;
1320 int i;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001321
1322 /* allocate a few pages */
1323 ftrace_pages_start = (void *)get_zeroed_page(GFP_KERNEL);
1324 if (!ftrace_pages_start)
1325 return -1;
1326
1327 /*
1328 * Allocate a few more pages.
1329 *
1330 * TODO: have some parser search vmlinux before
1331 * final linking to find all calls to ftrace.
1332 * Then we can:
1333 * a) know how many pages to allocate.
1334 * and/or
1335 * b) set up the table then.
1336 *
1337 * The dynamic code is still necessary for
1338 * modules.
1339 */
1340
1341 pg = ftrace_pages = ftrace_pages_start;
1342
Steven Rostedt68bf21a2008-08-14 15:45:08 -04001343 cnt = num_to_init / ENTRIES_PER_PAGE;
Steven Rostedt08f5ac902008-10-23 09:33:07 -04001344 pr_info("ftrace: allocating %ld entries in %d pages\n",
walimis5821e1b2008-11-15 15:19:06 +08001345 num_to_init, cnt + 1);
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001346
1347 for (i = 0; i < cnt; i++) {
1348 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
1349
1350 /* If we fail, we'll try later anyway */
1351 if (!pg->next)
1352 break;
1353
1354 pg = pg->next;
1355 }
1356
1357 return 0;
1358}
1359
Steven Rostedt5072c592008-05-12 21:20:43 +02001360enum {
1361 FTRACE_ITER_FILTER = (1 << 0),
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02001362 FTRACE_ITER_NOTRACE = (1 << 1),
1363 FTRACE_ITER_FAILURES = (1 << 2),
1364 FTRACE_ITER_PRINTALL = (1 << 3),
1365 FTRACE_ITER_HASH = (1 << 4),
Steven Rostedt5072c592008-05-12 21:20:43 +02001366};
1367
1368#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
1369
1370struct ftrace_iterator {
Steven Rostedt5072c592008-05-12 21:20:43 +02001371 struct ftrace_page *pg;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001372 int hidx;
Steven Rostedt431aa3f2009-01-06 12:43:01 -05001373 int idx;
Steven Rostedt5072c592008-05-12 21:20:43 +02001374 unsigned flags;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02001375 struct trace_parser parser;
Steven Rostedt5072c592008-05-12 21:20:43 +02001376};
1377
Ingo Molnare309b412008-05-12 21:20:51 +02001378static void *
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001379t_hash_next(struct seq_file *m, void *v, loff_t *pos)
1380{
1381 struct ftrace_iterator *iter = m->private;
1382 struct hlist_node *hnd = v;
1383 struct hlist_head *hhd;
1384
1385 WARN_ON(!(iter->flags & FTRACE_ITER_HASH));
1386
1387 (*pos)++;
1388
1389 retry:
1390 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
1391 return NULL;
1392
1393 hhd = &ftrace_func_hash[iter->hidx];
1394
1395 if (hlist_empty(hhd)) {
1396 iter->hidx++;
1397 hnd = NULL;
1398 goto retry;
1399 }
1400
1401 if (!hnd)
1402 hnd = hhd->first;
1403 else {
1404 hnd = hnd->next;
1405 if (!hnd) {
1406 iter->hidx++;
1407 goto retry;
1408 }
1409 }
1410
1411 return hnd;
1412}
1413
1414static void *t_hash_start(struct seq_file *m, loff_t *pos)
1415{
1416 struct ftrace_iterator *iter = m->private;
1417 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08001418 loff_t l;
1419
1420 if (!(iter->flags & FTRACE_ITER_HASH))
1421 *pos = 0;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001422
1423 iter->flags |= FTRACE_ITER_HASH;
1424
Li Zefand82d6242009-06-24 09:54:54 +08001425 iter->hidx = 0;
1426 for (l = 0; l <= *pos; ) {
1427 p = t_hash_next(m, p, &l);
1428 if (!p)
1429 break;
1430 }
1431 return p;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001432}
1433
1434static int t_hash_show(struct seq_file *m, void *v)
1435{
Steven Rostedtb6887d72009-02-17 12:32:04 -05001436 struct ftrace_func_probe *rec;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001437 struct hlist_node *hnd = v;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001438
Steven Rostedtb6887d72009-02-17 12:32:04 -05001439 rec = hlist_entry(hnd, struct ftrace_func_probe, node);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001440
Steven Rostedt809dcf22009-02-16 23:06:01 -05001441 if (rec->ops->print)
1442 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
1443
Steven Rostedtb375a112009-09-17 00:05:58 -04001444 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001445
1446 if (rec->data)
1447 seq_printf(m, ":%p", rec->data);
1448 seq_putc(m, '\n');
1449
1450 return 0;
1451}
1452
1453static void *
Steven Rostedt5072c592008-05-12 21:20:43 +02001454t_next(struct seq_file *m, void *v, loff_t *pos)
1455{
1456 struct ftrace_iterator *iter = m->private;
1457 struct dyn_ftrace *rec = NULL;
1458
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001459 if (iter->flags & FTRACE_ITER_HASH)
1460 return t_hash_next(m, v, pos);
1461
Steven Rostedt5072c592008-05-12 21:20:43 +02001462 (*pos)++;
1463
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05001464 if (iter->flags & FTRACE_ITER_PRINTALL)
1465 return NULL;
1466
Steven Rostedt5072c592008-05-12 21:20:43 +02001467 retry:
1468 if (iter->idx >= iter->pg->index) {
1469 if (iter->pg->next) {
1470 iter->pg = iter->pg->next;
1471 iter->idx = 0;
1472 goto retry;
1473 }
1474 } else {
1475 rec = &iter->pg->records[iter->idx++];
Steven Rostedta9fdda32008-08-14 22:47:17 -04001476 if ((rec->flags & FTRACE_FL_FREE) ||
1477
1478 (!(iter->flags & FTRACE_ITER_FAILURES) &&
Abhishek Sagareb9a7bf2008-06-01 21:47:54 +05301479 (rec->flags & FTRACE_FL_FAILED)) ||
1480
1481 ((iter->flags & FTRACE_ITER_FAILURES) &&
Steven Rostedta9fdda32008-08-14 22:47:17 -04001482 !(rec->flags & FTRACE_FL_FAILED)) ||
Abhishek Sagareb9a7bf2008-06-01 21:47:54 +05301483
Steven Rostedt0183fb12008-11-07 22:36:02 -05001484 ((iter->flags & FTRACE_ITER_FILTER) &&
1485 !(rec->flags & FTRACE_FL_FILTER)) ||
1486
Steven Rostedt41c52c02008-05-22 11:46:33 -04001487 ((iter->flags & FTRACE_ITER_NOTRACE) &&
1488 !(rec->flags & FTRACE_FL_NOTRACE))) {
Steven Rostedt5072c592008-05-12 21:20:43 +02001489 rec = NULL;
1490 goto retry;
1491 }
1492 }
1493
Steven Rostedt5072c592008-05-12 21:20:43 +02001494 return rec;
1495}
1496
1497static void *t_start(struct seq_file *m, loff_t *pos)
1498{
1499 struct ftrace_iterator *iter = m->private;
1500 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08001501 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02001502
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001503 mutex_lock(&ftrace_lock);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05001504 /*
1505 * For set_ftrace_filter reading, if we have the filter
1506 * off, we can short cut and just print out that all
1507 * functions are enabled.
1508 */
1509 if (iter->flags & FTRACE_ITER_FILTER && !ftrace_filtered) {
1510 if (*pos > 0)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001511 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05001512 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07001513 /* reset in case of seek/pread */
1514 iter->flags &= ~FTRACE_ITER_HASH;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05001515 return iter;
1516 }
1517
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001518 if (iter->flags & FTRACE_ITER_HASH)
1519 return t_hash_start(m, pos);
1520
Li Zefan694ce0a2009-06-24 09:54:19 +08001521 iter->pg = ftrace_pages_start;
1522 iter->idx = 0;
1523 for (l = 0; l <= *pos; ) {
1524 p = t_next(m, p, &l);
1525 if (!p)
1526 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08001527 }
walimis5821e1b2008-11-15 15:19:06 +08001528
Li Zefan694ce0a2009-06-24 09:54:19 +08001529 if (!p && iter->flags & FTRACE_ITER_FILTER)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001530 return t_hash_start(m, pos);
1531
Steven Rostedt5072c592008-05-12 21:20:43 +02001532 return p;
1533}
1534
1535static void t_stop(struct seq_file *m, void *p)
1536{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001537 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02001538}
1539
1540static int t_show(struct seq_file *m, void *v)
1541{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05001542 struct ftrace_iterator *iter = m->private;
Steven Rostedt5072c592008-05-12 21:20:43 +02001543 struct dyn_ftrace *rec = v;
Steven Rostedt5072c592008-05-12 21:20:43 +02001544
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001545 if (iter->flags & FTRACE_ITER_HASH)
1546 return t_hash_show(m, v);
1547
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05001548 if (iter->flags & FTRACE_ITER_PRINTALL) {
1549 seq_printf(m, "#### all functions enabled ####\n");
1550 return 0;
1551 }
1552
Steven Rostedt5072c592008-05-12 21:20:43 +02001553 if (!rec)
1554 return 0;
1555
Steven Rostedtb375a112009-09-17 00:05:58 -04001556 seq_printf(m, "%ps\n", (void *)rec->ip);
Steven Rostedt5072c592008-05-12 21:20:43 +02001557
1558 return 0;
1559}
1560
James Morris88e9d342009-09-22 16:43:43 -07001561static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02001562 .start = t_start,
1563 .next = t_next,
1564 .stop = t_stop,
1565 .show = t_show,
1566};
1567
Ingo Molnare309b412008-05-12 21:20:51 +02001568static int
Steven Rostedt5072c592008-05-12 21:20:43 +02001569ftrace_avail_open(struct inode *inode, struct file *file)
1570{
1571 struct ftrace_iterator *iter;
1572 int ret;
1573
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001574 if (unlikely(ftrace_disabled))
1575 return -ENODEV;
1576
Steven Rostedt5072c592008-05-12 21:20:43 +02001577 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1578 if (!iter)
1579 return -ENOMEM;
1580
1581 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02001582
1583 ret = seq_open(file, &show_ftrace_seq_ops);
1584 if (!ret) {
1585 struct seq_file *m = file->private_data;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02001586
Steven Rostedt5072c592008-05-12 21:20:43 +02001587 m->private = iter;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02001588 } else {
Steven Rostedt5072c592008-05-12 21:20:43 +02001589 kfree(iter);
Ingo Molnar4bf39a92008-05-12 21:20:46 +02001590 }
Steven Rostedt5072c592008-05-12 21:20:43 +02001591
1592 return ret;
1593}
1594
Abhishek Sagareb9a7bf2008-06-01 21:47:54 +05301595static int
1596ftrace_failures_open(struct inode *inode, struct file *file)
1597{
1598 int ret;
1599 struct seq_file *m;
1600 struct ftrace_iterator *iter;
1601
1602 ret = ftrace_avail_open(inode, file);
1603 if (!ret) {
1604 m = (struct seq_file *)file->private_data;
1605 iter = (struct ftrace_iterator *)m->private;
1606 iter->flags = FTRACE_ITER_FAILURES;
1607 }
1608
1609 return ret;
1610}
1611
1612
Steven Rostedt41c52c02008-05-22 11:46:33 -04001613static void ftrace_filter_reset(int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02001614{
1615 struct ftrace_page *pg;
1616 struct dyn_ftrace *rec;
Steven Rostedt41c52c02008-05-22 11:46:33 -04001617 unsigned long type = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
Steven Rostedt5072c592008-05-12 21:20:43 +02001618
Steven Rostedt52baf112009-02-14 01:15:39 -05001619 mutex_lock(&ftrace_lock);
Steven Rostedt41c52c02008-05-22 11:46:33 -04001620 if (enable)
1621 ftrace_filtered = 0;
Steven Rostedt265c8312009-02-13 12:43:56 -05001622 do_for_each_ftrace_rec(pg, rec) {
1623 if (rec->flags & FTRACE_FL_FAILED)
1624 continue;
1625 rec->flags &= ~type;
1626 } while_for_each_ftrace_rec();
Steven Rostedt52baf112009-02-14 01:15:39 -05001627 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02001628}
1629
Ingo Molnare309b412008-05-12 21:20:51 +02001630static int
Steven Rostedt41c52c02008-05-22 11:46:33 -04001631ftrace_regex_open(struct inode *inode, struct file *file, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02001632{
1633 struct ftrace_iterator *iter;
1634 int ret = 0;
1635
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001636 if (unlikely(ftrace_disabled))
1637 return -ENODEV;
1638
Steven Rostedt5072c592008-05-12 21:20:43 +02001639 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1640 if (!iter)
1641 return -ENOMEM;
1642
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02001643 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
1644 kfree(iter);
1645 return -ENOMEM;
1646 }
1647
Steven Rostedt41c52c02008-05-22 11:46:33 -04001648 mutex_lock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02001649 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04001650 (file->f_flags & O_TRUNC))
Steven Rostedt41c52c02008-05-22 11:46:33 -04001651 ftrace_filter_reset(enable);
Steven Rostedt5072c592008-05-12 21:20:43 +02001652
1653 if (file->f_mode & FMODE_READ) {
1654 iter->pg = ftrace_pages_start;
Steven Rostedt41c52c02008-05-22 11:46:33 -04001655 iter->flags = enable ? FTRACE_ITER_FILTER :
1656 FTRACE_ITER_NOTRACE;
Steven Rostedt5072c592008-05-12 21:20:43 +02001657
1658 ret = seq_open(file, &show_ftrace_seq_ops);
1659 if (!ret) {
1660 struct seq_file *m = file->private_data;
1661 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08001662 } else {
1663 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02001664 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08001665 }
Steven Rostedt5072c592008-05-12 21:20:43 +02001666 } else
1667 file->private_data = iter;
Steven Rostedt41c52c02008-05-22 11:46:33 -04001668 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02001669
1670 return ret;
1671}
1672
Steven Rostedt41c52c02008-05-22 11:46:33 -04001673static int
1674ftrace_filter_open(struct inode *inode, struct file *file)
1675{
1676 return ftrace_regex_open(inode, file, 1);
1677}
1678
1679static int
1680ftrace_notrace_open(struct inode *inode, struct file *file)
1681{
1682 return ftrace_regex_open(inode, file, 0);
1683}
1684
Ingo Molnare309b412008-05-12 21:20:51 +02001685static loff_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04001686ftrace_regex_lseek(struct file *file, loff_t offset, int origin)
Steven Rostedt5072c592008-05-12 21:20:43 +02001687{
1688 loff_t ret;
1689
1690 if (file->f_mode & FMODE_READ)
1691 ret = seq_lseek(file, offset, origin);
1692 else
1693 file->f_pos = ret = 1;
1694
1695 return ret;
1696}
1697
Steven Rostedt64e7c442009-02-13 17:08:48 -05001698static int ftrace_match(char *str, char *regex, int len, int type)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05001699{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05001700 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08001701 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05001702
Steven Rostedt9f4801e2009-02-13 15:56:43 -05001703 switch (type) {
1704 case MATCH_FULL:
1705 if (strcmp(str, regex) == 0)
1706 matched = 1;
1707 break;
1708 case MATCH_FRONT_ONLY:
1709 if (strncmp(str, regex, len) == 0)
1710 matched = 1;
1711 break;
1712 case MATCH_MIDDLE_ONLY:
1713 if (strstr(str, regex))
1714 matched = 1;
1715 break;
1716 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08001717 slen = strlen(str);
1718 if (slen >= len && memcmp(str + slen - len, regex, len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05001719 matched = 1;
1720 break;
1721 }
1722
1723 return matched;
1724}
1725
Steven Rostedt64e7c442009-02-13 17:08:48 -05001726static int
1727ftrace_match_record(struct dyn_ftrace *rec, char *regex, int len, int type)
1728{
1729 char str[KSYM_SYMBOL_LEN];
1730
1731 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
1732 return ftrace_match(str, regex, len, type);
1733}
1734
Li Zefan311d16d2009-12-08 11:15:11 +08001735static int ftrace_match_records(char *buff, int len, int enable)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05001736{
Steven Rostedt6a24a242009-02-17 11:20:26 -05001737 unsigned int search_len;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05001738 struct ftrace_page *pg;
1739 struct dyn_ftrace *rec;
Steven Rostedt6a24a242009-02-17 11:20:26 -05001740 unsigned long flag;
1741 char *search;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05001742 int type;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05001743 int not;
Li Zefan311d16d2009-12-08 11:15:11 +08001744 int found = 0;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05001745
Steven Rostedt6a24a242009-02-17 11:20:26 -05001746 flag = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02001747 type = filter_parse_regex(buff, len, &search, &not);
Steven Rostedt9f4801e2009-02-13 15:56:43 -05001748
1749 search_len = strlen(search);
1750
Steven Rostedt52baf112009-02-14 01:15:39 -05001751 mutex_lock(&ftrace_lock);
Steven Rostedt265c8312009-02-13 12:43:56 -05001752 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedt5072c592008-05-12 21:20:43 +02001753
Steven Rostedt265c8312009-02-13 12:43:56 -05001754 if (rec->flags & FTRACE_FL_FAILED)
1755 continue;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05001756
1757 if (ftrace_match_record(rec, search, search_len, type)) {
Steven Rostedt265c8312009-02-13 12:43:56 -05001758 if (not)
1759 rec->flags &= ~flag;
1760 else
1761 rec->flags |= flag;
Li Zefan311d16d2009-12-08 11:15:11 +08001762 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05001763 }
Steven Rostedte68746a2009-02-13 20:53:42 -05001764 /*
1765 * Only enable filtering if we have a function that
1766 * is filtered on.
1767 */
1768 if (enable && (rec->flags & FTRACE_FL_FILTER))
1769 ftrace_filtered = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05001770 } while_for_each_ftrace_rec();
Steven Rostedt52baf112009-02-14 01:15:39 -05001771 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08001772
1773 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02001774}
1775
Steven Rostedt64e7c442009-02-13 17:08:48 -05001776static int
1777ftrace_match_module_record(struct dyn_ftrace *rec, char *mod,
1778 char *regex, int len, int type)
1779{
1780 char str[KSYM_SYMBOL_LEN];
1781 char *modname;
1782
1783 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
1784
1785 if (!modname || strcmp(modname, mod))
1786 return 0;
1787
1788 /* blank search means to match all funcs in the mod */
1789 if (len)
1790 return ftrace_match(str, regex, len, type);
1791 else
1792 return 1;
1793}
1794
Li Zefan311d16d2009-12-08 11:15:11 +08001795static int ftrace_match_module_records(char *buff, char *mod, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05001796{
Steven Rostedt6a24a242009-02-17 11:20:26 -05001797 unsigned search_len = 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05001798 struct ftrace_page *pg;
1799 struct dyn_ftrace *rec;
1800 int type = MATCH_FULL;
Steven Rostedt6a24a242009-02-17 11:20:26 -05001801 char *search = buff;
1802 unsigned long flag;
Steven Rostedt64e7c442009-02-13 17:08:48 -05001803 int not = 0;
Li Zefan311d16d2009-12-08 11:15:11 +08001804 int found = 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05001805
Steven Rostedt6a24a242009-02-17 11:20:26 -05001806 flag = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
1807
Steven Rostedt64e7c442009-02-13 17:08:48 -05001808 /* blank or '*' mean the same */
1809 if (strcmp(buff, "*") == 0)
1810 buff[0] = 0;
1811
1812 /* handle the case of 'dont filter this module' */
1813 if (strcmp(buff, "!") == 0 || strcmp(buff, "!*") == 0) {
1814 buff[0] = 0;
1815 not = 1;
1816 }
1817
1818 if (strlen(buff)) {
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02001819 type = filter_parse_regex(buff, strlen(buff), &search, &not);
Steven Rostedt64e7c442009-02-13 17:08:48 -05001820 search_len = strlen(search);
1821 }
1822
Steven Rostedt52baf112009-02-14 01:15:39 -05001823 mutex_lock(&ftrace_lock);
Steven Rostedt64e7c442009-02-13 17:08:48 -05001824 do_for_each_ftrace_rec(pg, rec) {
1825
1826 if (rec->flags & FTRACE_FL_FAILED)
1827 continue;
1828
1829 if (ftrace_match_module_record(rec, mod,
1830 search, search_len, type)) {
1831 if (not)
1832 rec->flags &= ~flag;
1833 else
1834 rec->flags |= flag;
Li Zefan311d16d2009-12-08 11:15:11 +08001835 found = 1;
Steven Rostedt64e7c442009-02-13 17:08:48 -05001836 }
Steven Rostedte68746a2009-02-13 20:53:42 -05001837 if (enable && (rec->flags & FTRACE_FL_FILTER))
1838 ftrace_filtered = 1;
Steven Rostedt64e7c442009-02-13 17:08:48 -05001839
1840 } while_for_each_ftrace_rec();
Steven Rostedt52baf112009-02-14 01:15:39 -05001841 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08001842
1843 return found;
Steven Rostedt64e7c442009-02-13 17:08:48 -05001844}
1845
Steven Rostedtf6180772009-02-14 00:40:25 -05001846/*
1847 * We register the module command as a template to show others how
1848 * to register the a command as well.
1849 */
1850
1851static int
1852ftrace_mod_callback(char *func, char *cmd, char *param, int enable)
1853{
1854 char *mod;
1855
1856 /*
1857 * cmd == 'mod' because we only registered this func
1858 * for the 'mod' ftrace_func_command.
1859 * But if you register one func with multiple commands,
1860 * you can tell which command was used by the cmd
1861 * parameter.
1862 */
1863
1864 /* we must have a module name */
1865 if (!param)
1866 return -EINVAL;
1867
1868 mod = strsep(&param, ":");
1869 if (!strlen(mod))
1870 return -EINVAL;
1871
Li Zefan311d16d2009-12-08 11:15:11 +08001872 if (ftrace_match_module_records(func, mod, enable))
1873 return 0;
1874 return -EINVAL;
Steven Rostedtf6180772009-02-14 00:40:25 -05001875}
1876
1877static struct ftrace_func_command ftrace_mod_cmd = {
1878 .name = "mod",
1879 .func = ftrace_mod_callback,
1880};
1881
1882static int __init ftrace_mod_cmd_init(void)
1883{
1884 return register_ftrace_command(&ftrace_mod_cmd);
1885}
1886device_initcall(ftrace_mod_cmd_init);
1887
Steven Rostedt59df055f2009-02-14 15:29:06 -05001888static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05001889function_trace_probe_call(unsigned long ip, unsigned long parent_ip)
Steven Rostedt59df055f2009-02-14 15:29:06 -05001890{
Steven Rostedtb6887d72009-02-17 12:32:04 -05001891 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05001892 struct hlist_head *hhd;
1893 struct hlist_node *n;
1894 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05001895
1896 key = hash_long(ip, FTRACE_HASH_BITS);
1897
1898 hhd = &ftrace_func_hash[key];
1899
1900 if (hlist_empty(hhd))
1901 return;
1902
1903 /*
1904 * Disable preemption for these calls to prevent a RCU grace
1905 * period. This syncs the hash iteration and freeing of items
1906 * on the hash. rcu_read_lock is too dangerous here.
1907 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04001908 preempt_disable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05001909 hlist_for_each_entry_rcu(entry, n, hhd, node) {
1910 if (entry->ip == ip)
1911 entry->ops->func(ip, parent_ip, &entry->data);
1912 }
Steven Rostedt5168ae52010-06-03 09:36:50 -04001913 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05001914}
1915
Steven Rostedtb6887d72009-02-17 12:32:04 -05001916static struct ftrace_ops trace_probe_ops __read_mostly =
Steven Rostedt59df055f2009-02-14 15:29:06 -05001917{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001918 .func = function_trace_probe_call,
Steven Rostedt59df055f2009-02-14 15:29:06 -05001919};
1920
Steven Rostedtb6887d72009-02-17 12:32:04 -05001921static int ftrace_probe_registered;
Steven Rostedt59df055f2009-02-14 15:29:06 -05001922
Steven Rostedtb6887d72009-02-17 12:32:04 -05001923static void __enable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05001924{
1925 int i;
1926
Steven Rostedtb6887d72009-02-17 12:32:04 -05001927 if (ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05001928 return;
1929
1930 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
1931 struct hlist_head *hhd = &ftrace_func_hash[i];
1932 if (hhd->first)
1933 break;
1934 }
1935 /* Nothing registered? */
1936 if (i == FTRACE_FUNC_HASHSIZE)
1937 return;
1938
Steven Rostedtb6887d72009-02-17 12:32:04 -05001939 __register_ftrace_function(&trace_probe_ops);
Steven Rostedt59df055f2009-02-14 15:29:06 -05001940 ftrace_startup(0);
Steven Rostedtb6887d72009-02-17 12:32:04 -05001941 ftrace_probe_registered = 1;
Steven Rostedt59df055f2009-02-14 15:29:06 -05001942}
1943
Steven Rostedtb6887d72009-02-17 12:32:04 -05001944static void __disable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05001945{
1946 int i;
1947
Steven Rostedtb6887d72009-02-17 12:32:04 -05001948 if (!ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05001949 return;
1950
1951 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
1952 struct hlist_head *hhd = &ftrace_func_hash[i];
1953 if (hhd->first)
1954 return;
1955 }
1956
1957 /* no more funcs left */
Steven Rostedtb6887d72009-02-17 12:32:04 -05001958 __unregister_ftrace_function(&trace_probe_ops);
Steven Rostedt59df055f2009-02-14 15:29:06 -05001959 ftrace_shutdown(0);
Steven Rostedtb6887d72009-02-17 12:32:04 -05001960 ftrace_probe_registered = 0;
Steven Rostedt59df055f2009-02-14 15:29:06 -05001961}
1962
1963
1964static void ftrace_free_entry_rcu(struct rcu_head *rhp)
1965{
Steven Rostedtb6887d72009-02-17 12:32:04 -05001966 struct ftrace_func_probe *entry =
1967 container_of(rhp, struct ftrace_func_probe, rcu);
Steven Rostedt59df055f2009-02-14 15:29:06 -05001968
1969 if (entry->ops->free)
1970 entry->ops->free(&entry->data);
1971 kfree(entry);
1972}
1973
1974
1975int
Steven Rostedtb6887d72009-02-17 12:32:04 -05001976register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05001977 void *data)
1978{
Steven Rostedtb6887d72009-02-17 12:32:04 -05001979 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05001980 struct ftrace_page *pg;
1981 struct dyn_ftrace *rec;
Steven Rostedt59df055f2009-02-14 15:29:06 -05001982 int type, len, not;
Steven Rostedt6a24a242009-02-17 11:20:26 -05001983 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05001984 int count = 0;
1985 char *search;
1986
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02001987 type = filter_parse_regex(glob, strlen(glob), &search, &not);
Steven Rostedt59df055f2009-02-14 15:29:06 -05001988 len = strlen(search);
1989
Steven Rostedtb6887d72009-02-17 12:32:04 -05001990 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05001991 if (WARN_ON(not))
1992 return -EINVAL;
1993
1994 mutex_lock(&ftrace_lock);
1995 do_for_each_ftrace_rec(pg, rec) {
1996
1997 if (rec->flags & FTRACE_FL_FAILED)
1998 continue;
1999
2000 if (!ftrace_match_record(rec, search, len, type))
2001 continue;
2002
2003 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
2004 if (!entry) {
Steven Rostedtb6887d72009-02-17 12:32:04 -05002005 /* If we did not process any, then return error */
Steven Rostedt59df055f2009-02-14 15:29:06 -05002006 if (!count)
2007 count = -ENOMEM;
2008 goto out_unlock;
2009 }
2010
2011 count++;
2012
2013 entry->data = data;
2014
2015 /*
2016 * The caller might want to do something special
2017 * for each function we find. We call the callback
2018 * to give the caller an opportunity to do so.
2019 */
2020 if (ops->callback) {
2021 if (ops->callback(rec->ip, &entry->data) < 0) {
2022 /* caller does not like this func */
2023 kfree(entry);
2024 continue;
2025 }
2026 }
2027
2028 entry->ops = ops;
2029 entry->ip = rec->ip;
2030
2031 key = hash_long(entry->ip, FTRACE_HASH_BITS);
2032 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
2033
2034 } while_for_each_ftrace_rec();
Steven Rostedtb6887d72009-02-17 12:32:04 -05002035 __enable_ftrace_function_probe();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002036
2037 out_unlock:
2038 mutex_unlock(&ftrace_lock);
2039
2040 return count;
2041}
2042
2043enum {
Steven Rostedtb6887d72009-02-17 12:32:04 -05002044 PROBE_TEST_FUNC = 1,
2045 PROBE_TEST_DATA = 2
Steven Rostedt59df055f2009-02-14 15:29:06 -05002046};
2047
2048static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002049__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002050 void *data, int flags)
2051{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002052 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002053 struct hlist_node *n, *tmp;
2054 char str[KSYM_SYMBOL_LEN];
2055 int type = MATCH_FULL;
2056 int i, len = 0;
2057 char *search;
2058
Atsushi Tsujib36461d2009-09-15 19:06:30 +09002059 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
Steven Rostedt59df055f2009-02-14 15:29:06 -05002060 glob = NULL;
Atsushi Tsujib36461d2009-09-15 19:06:30 +09002061 else if (glob) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05002062 int not;
2063
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02002064 type = filter_parse_regex(glob, strlen(glob), &search, &not);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002065 len = strlen(search);
2066
Steven Rostedtb6887d72009-02-17 12:32:04 -05002067 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05002068 if (WARN_ON(not))
2069 return;
2070 }
2071
2072 mutex_lock(&ftrace_lock);
2073 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2074 struct hlist_head *hhd = &ftrace_func_hash[i];
2075
2076 hlist_for_each_entry_safe(entry, n, tmp, hhd, node) {
2077
2078 /* break up if statements for readability */
Steven Rostedtb6887d72009-02-17 12:32:04 -05002079 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002080 continue;
2081
Steven Rostedtb6887d72009-02-17 12:32:04 -05002082 if ((flags & PROBE_TEST_DATA) && entry->data != data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002083 continue;
2084
2085 /* do this last, since it is the most expensive */
2086 if (glob) {
2087 kallsyms_lookup(entry->ip, NULL, NULL,
2088 NULL, str);
2089 if (!ftrace_match(str, glob, len, type))
2090 continue;
2091 }
2092
2093 hlist_del(&entry->node);
2094 call_rcu(&entry->rcu, ftrace_free_entry_rcu);
2095 }
2096 }
Steven Rostedtb6887d72009-02-17 12:32:04 -05002097 __disable_ftrace_function_probe();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002098 mutex_unlock(&ftrace_lock);
2099}
2100
2101void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002102unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002103 void *data)
2104{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002105 __unregister_ftrace_function_probe(glob, ops, data,
2106 PROBE_TEST_FUNC | PROBE_TEST_DATA);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002107}
2108
2109void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002110unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002111{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002112 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002113}
2114
Steven Rostedtb6887d72009-02-17 12:32:04 -05002115void unregister_ftrace_function_probe_all(char *glob)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002116{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002117 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002118}
2119
Steven Rostedtf6180772009-02-14 00:40:25 -05002120static LIST_HEAD(ftrace_commands);
2121static DEFINE_MUTEX(ftrace_cmd_mutex);
2122
2123int register_ftrace_command(struct ftrace_func_command *cmd)
2124{
2125 struct ftrace_func_command *p;
2126 int ret = 0;
2127
2128 mutex_lock(&ftrace_cmd_mutex);
2129 list_for_each_entry(p, &ftrace_commands, list) {
2130 if (strcmp(cmd->name, p->name) == 0) {
2131 ret = -EBUSY;
2132 goto out_unlock;
2133 }
2134 }
2135 list_add(&cmd->list, &ftrace_commands);
2136 out_unlock:
2137 mutex_unlock(&ftrace_cmd_mutex);
2138
2139 return ret;
2140}
2141
2142int unregister_ftrace_command(struct ftrace_func_command *cmd)
2143{
2144 struct ftrace_func_command *p, *n;
2145 int ret = -ENODEV;
2146
2147 mutex_lock(&ftrace_cmd_mutex);
2148 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
2149 if (strcmp(cmd->name, p->name) == 0) {
2150 ret = 0;
2151 list_del_init(&p->list);
2152 goto out_unlock;
2153 }
2154 }
2155 out_unlock:
2156 mutex_unlock(&ftrace_cmd_mutex);
2157
2158 return ret;
2159}
2160
Steven Rostedt64e7c442009-02-13 17:08:48 -05002161static int ftrace_process_regex(char *buff, int len, int enable)
2162{
Steven Rostedtf6180772009-02-14 00:40:25 -05002163 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002164 struct ftrace_func_command *p;
Steven Rostedtf6180772009-02-14 00:40:25 -05002165 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05002166
2167 func = strsep(&next, ":");
2168
2169 if (!next) {
Li Zefan311d16d2009-12-08 11:15:11 +08002170 if (ftrace_match_records(func, len, enable))
2171 return 0;
2172 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05002173 }
2174
Steven Rostedtf6180772009-02-14 00:40:25 -05002175 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05002176
2177 command = strsep(&next, ":");
2178
Steven Rostedtf6180772009-02-14 00:40:25 -05002179 mutex_lock(&ftrace_cmd_mutex);
2180 list_for_each_entry(p, &ftrace_commands, list) {
2181 if (strcmp(p->name, command) == 0) {
2182 ret = p->func(func, command, next, enable);
2183 goto out_unlock;
2184 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05002185 }
Steven Rostedtf6180772009-02-14 00:40:25 -05002186 out_unlock:
2187 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05002188
Steven Rostedtf6180772009-02-14 00:40:25 -05002189 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05002190}
2191
Ingo Molnare309b412008-05-12 21:20:51 +02002192static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04002193ftrace_regex_write(struct file *file, const char __user *ubuf,
2194 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02002195{
2196 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002197 struct trace_parser *parser;
2198 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02002199
Li Zefan4ba79782009-09-22 13:52:20 +08002200 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02002201 return 0;
2202
Steven Rostedt41c52c02008-05-22 11:46:33 -04002203 mutex_lock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002204
2205 if (file->f_mode & FMODE_READ) {
2206 struct seq_file *m = file->private_data;
2207 iter = m->private;
2208 } else
2209 iter = file->private_data;
2210
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002211 parser = &iter->parser;
2212 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02002213
Li Zefan4ba79782009-09-22 13:52:20 +08002214 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002215 !trace_parser_cont(parser)) {
2216 ret = ftrace_process_regex(parser->buffer,
2217 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08002218 trace_parser_clear(parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02002219 if (ret)
Li Zefaned146b252009-11-03 08:55:38 +08002220 goto out_unlock;
Steven Rostedt5072c592008-05-12 21:20:43 +02002221 }
2222
Steven Rostedt5072c592008-05-12 21:20:43 +02002223 ret = read;
Li Zefaned146b252009-11-03 08:55:38 +08002224out_unlock:
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002225 mutex_unlock(&ftrace_regex_lock);
Li Zefaned146b252009-11-03 08:55:38 +08002226
Steven Rostedt5072c592008-05-12 21:20:43 +02002227 return ret;
2228}
2229
Steven Rostedt41c52c02008-05-22 11:46:33 -04002230static ssize_t
2231ftrace_filter_write(struct file *file, const char __user *ubuf,
2232 size_t cnt, loff_t *ppos)
2233{
2234 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
2235}
2236
2237static ssize_t
2238ftrace_notrace_write(struct file *file, const char __user *ubuf,
2239 size_t cnt, loff_t *ppos)
2240{
2241 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
2242}
2243
2244static void
2245ftrace_set_regex(unsigned char *buf, int len, int reset, int enable)
2246{
2247 if (unlikely(ftrace_disabled))
2248 return;
2249
2250 mutex_lock(&ftrace_regex_lock);
2251 if (reset)
2252 ftrace_filter_reset(enable);
2253 if (buf)
Steven Rostedt7f24b312009-02-13 14:37:33 -05002254 ftrace_match_records(buf, len, enable);
Steven Rostedt41c52c02008-05-22 11:46:33 -04002255 mutex_unlock(&ftrace_regex_lock);
2256}
2257
Steven Rostedt77a2b372008-05-12 21:20:45 +02002258/**
2259 * ftrace_set_filter - set a function to filter on in ftrace
2260 * @buf - the string that holds the function filter text.
2261 * @len - the length of the string.
2262 * @reset - non zero to reset all filters before applying this filter.
2263 *
2264 * Filters denote which functions should be enabled when tracing is enabled.
2265 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
2266 */
Ingo Molnare309b412008-05-12 21:20:51 +02002267void ftrace_set_filter(unsigned char *buf, int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02002268{
Steven Rostedt41c52c02008-05-22 11:46:33 -04002269 ftrace_set_regex(buf, len, reset, 1);
2270}
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002271
Steven Rostedt41c52c02008-05-22 11:46:33 -04002272/**
2273 * ftrace_set_notrace - set a function to not trace in ftrace
2274 * @buf - the string that holds the function notrace text.
2275 * @len - the length of the string.
2276 * @reset - non zero to reset all filters before applying this filter.
2277 *
2278 * Notrace Filters denote which functions should not be enabled when tracing
2279 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
2280 * for tracing.
2281 */
2282void ftrace_set_notrace(unsigned char *buf, int len, int reset)
2283{
2284 ftrace_set_regex(buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02002285}
2286
Steven Rostedt2af15d62009-05-28 13:37:24 -04002287/*
2288 * command line interface to allow users to set filters on boot up.
2289 */
2290#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
2291static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
2292static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
2293
2294static int __init set_ftrace_notrace(char *str)
2295{
2296 strncpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
2297 return 1;
2298}
2299__setup("ftrace_notrace=", set_ftrace_notrace);
2300
2301static int __init set_ftrace_filter(char *str)
2302{
2303 strncpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
2304 return 1;
2305}
2306__setup("ftrace_filter=", set_ftrace_filter);
2307
Stefan Assmann369bc182009-10-12 22:17:21 +02002308#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08002309static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Steven Rostedt801c29f2010-03-05 20:02:19 -05002310static int ftrace_set_func(unsigned long *array, int *idx, char *buffer);
2311
Stefan Assmann369bc182009-10-12 22:17:21 +02002312static int __init set_graph_function(char *str)
2313{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02002314 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02002315 return 1;
2316}
2317__setup("ftrace_graph_filter=", set_graph_function);
2318
2319static void __init set_ftrace_early_graph(char *buf)
2320{
2321 int ret;
2322 char *func;
2323
2324 while (buf) {
2325 func = strsep(&buf, ",");
2326 /* we allow only one expression at a time */
2327 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
2328 func);
2329 if (ret)
2330 printk(KERN_DEBUG "ftrace: function %s not "
2331 "traceable\n", func);
2332 }
2333}
2334#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2335
Steven Rostedt2af15d62009-05-28 13:37:24 -04002336static void __init set_ftrace_early_filter(char *buf, int enable)
2337{
2338 char *func;
2339
2340 while (buf) {
2341 func = strsep(&buf, ",");
2342 ftrace_set_regex(func, strlen(func), 0, enable);
2343 }
2344}
2345
2346static void __init set_ftrace_early_filters(void)
2347{
2348 if (ftrace_filter_buf[0])
2349 set_ftrace_early_filter(ftrace_filter_buf, 1);
2350 if (ftrace_notrace_buf[0])
2351 set_ftrace_early_filter(ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02002352#ifdef CONFIG_FUNCTION_GRAPH_TRACER
2353 if (ftrace_graph_buf[0])
2354 set_ftrace_early_graph(ftrace_graph_buf);
2355#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04002356}
2357
Ingo Molnare309b412008-05-12 21:20:51 +02002358static int
Steven Rostedt41c52c02008-05-22 11:46:33 -04002359ftrace_regex_release(struct inode *inode, struct file *file, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02002360{
2361 struct seq_file *m = (struct seq_file *)file->private_data;
2362 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002363 struct trace_parser *parser;
Steven Rostedt5072c592008-05-12 21:20:43 +02002364
Steven Rostedt41c52c02008-05-22 11:46:33 -04002365 mutex_lock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002366 if (file->f_mode & FMODE_READ) {
2367 iter = m->private;
2368
2369 seq_release(inode, file);
2370 } else
2371 iter = file->private_data;
2372
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002373 parser = &iter->parser;
2374 if (trace_parser_loaded(parser)) {
2375 parser->buffer[parser->idx] = 0;
2376 ftrace_match_records(parser->buffer, parser->idx, enable);
Steven Rostedt5072c592008-05-12 21:20:43 +02002377 }
2378
Steven Rostedte6ea44e2009-02-14 01:42:44 -05002379 mutex_lock(&ftrace_lock);
Steven Rostedtee02a2e2008-11-15 16:31:41 -05002380 if (ftrace_start_up && ftrace_enabled)
Steven Rostedt5072c592008-05-12 21:20:43 +02002381 ftrace_run_update_code(FTRACE_ENABLE_CALLS);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05002382 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002383
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002384 trace_parser_put(parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02002385 kfree(iter);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002386
Steven Rostedt41c52c02008-05-22 11:46:33 -04002387 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002388 return 0;
2389}
2390
Steven Rostedt41c52c02008-05-22 11:46:33 -04002391static int
2392ftrace_filter_release(struct inode *inode, struct file *file)
2393{
2394 return ftrace_regex_release(inode, file, 1);
2395}
2396
2397static int
2398ftrace_notrace_release(struct inode *inode, struct file *file)
2399{
2400 return ftrace_regex_release(inode, file, 0);
2401}
2402
Steven Rostedt5e2336a2009-03-05 21:44:55 -05002403static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02002404 .open = ftrace_avail_open,
2405 .read = seq_read,
2406 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08002407 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02002408};
2409
Steven Rostedt5e2336a2009-03-05 21:44:55 -05002410static const struct file_operations ftrace_failures_fops = {
Abhishek Sagareb9a7bf2008-06-01 21:47:54 +05302411 .open = ftrace_failures_open,
2412 .read = seq_read,
2413 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08002414 .release = seq_release_private,
Abhishek Sagareb9a7bf2008-06-01 21:47:54 +05302415};
2416
Steven Rostedt5e2336a2009-03-05 21:44:55 -05002417static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02002418 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08002419 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02002420 .write = ftrace_filter_write,
Steven Rostedt9c55cb12010-09-08 11:20:37 -04002421 .llseek = no_llseek,
Steven Rostedt5072c592008-05-12 21:20:43 +02002422 .release = ftrace_filter_release,
2423};
2424
Steven Rostedt5e2336a2009-03-05 21:44:55 -05002425static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04002426 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08002427 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04002428 .write = ftrace_notrace_write,
2429 .llseek = ftrace_regex_lseek,
2430 .release = ftrace_notrace_release,
2431};
2432
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002433#ifdef CONFIG_FUNCTION_GRAPH_TRACER
2434
2435static DEFINE_MUTEX(graph_lock);
2436
2437int ftrace_graph_count;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08002438int ftrace_graph_filter_enabled;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002439unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
2440
2441static void *
Li Zefan85951842009-06-24 09:54:00 +08002442__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002443{
Li Zefan85951842009-06-24 09:54:00 +08002444 if (*pos >= ftrace_graph_count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002445 return NULL;
Li Zefana4ec5e02009-09-18 14:06:28 +08002446 return &ftrace_graph_funcs[*pos];
Li Zefan85951842009-06-24 09:54:00 +08002447}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002448
Li Zefan85951842009-06-24 09:54:00 +08002449static void *
2450g_next(struct seq_file *m, void *v, loff_t *pos)
2451{
2452 (*pos)++;
2453 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002454}
2455
2456static void *g_start(struct seq_file *m, loff_t *pos)
2457{
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002458 mutex_lock(&graph_lock);
2459
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01002460 /* Nothing, tell g_show to print all functions are enabled */
Li Zefanc7c6b1f2010-02-10 15:43:04 +08002461 if (!ftrace_graph_filter_enabled && !*pos)
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01002462 return (void *)1;
2463
Li Zefan85951842009-06-24 09:54:00 +08002464 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002465}
2466
2467static void g_stop(struct seq_file *m, void *p)
2468{
2469 mutex_unlock(&graph_lock);
2470}
2471
2472static int g_show(struct seq_file *m, void *v)
2473{
2474 unsigned long *ptr = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002475
2476 if (!ptr)
2477 return 0;
2478
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01002479 if (ptr == (unsigned long *)1) {
2480 seq_printf(m, "#### all functions enabled ####\n");
2481 return 0;
2482 }
2483
Steven Rostedtb375a112009-09-17 00:05:58 -04002484 seq_printf(m, "%ps\n", (void *)*ptr);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002485
2486 return 0;
2487}
2488
James Morris88e9d342009-09-22 16:43:43 -07002489static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002490 .start = g_start,
2491 .next = g_next,
2492 .stop = g_stop,
2493 .show = g_show,
2494};
2495
2496static int
2497ftrace_graph_open(struct inode *inode, struct file *file)
2498{
2499 int ret = 0;
2500
2501 if (unlikely(ftrace_disabled))
2502 return -ENODEV;
2503
2504 mutex_lock(&graph_lock);
2505 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04002506 (file->f_flags & O_TRUNC)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08002507 ftrace_graph_filter_enabled = 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002508 ftrace_graph_count = 0;
2509 memset(ftrace_graph_funcs, 0, sizeof(ftrace_graph_funcs));
2510 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002511 mutex_unlock(&graph_lock);
2512
Li Zefana4ec5e02009-09-18 14:06:28 +08002513 if (file->f_mode & FMODE_READ)
2514 ret = seq_open(file, &ftrace_graph_seq_ops);
2515
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002516 return ret;
2517}
2518
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002519static int
Li Zefan87827112009-07-23 11:29:11 +08002520ftrace_graph_release(struct inode *inode, struct file *file)
2521{
2522 if (file->f_mode & FMODE_READ)
2523 seq_release(inode, file);
2524 return 0;
2525}
2526
2527static int
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01002528ftrace_set_func(unsigned long *array, int *idx, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002529{
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002530 struct dyn_ftrace *rec;
2531 struct ftrace_page *pg;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01002532 int search_len;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08002533 int fail = 1;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01002534 int type, not;
2535 char *search;
2536 bool exists;
2537 int i;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002538
2539 if (ftrace_disabled)
2540 return -ENODEV;
2541
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01002542 /* decode regex */
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02002543 type = filter_parse_regex(buffer, strlen(buffer), &search, &not);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08002544 if (!not && *idx >= FTRACE_GRAPH_MAX_FUNCS)
2545 return -EBUSY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01002546
2547 search_len = strlen(search);
2548
Steven Rostedt52baf112009-02-14 01:15:39 -05002549 mutex_lock(&ftrace_lock);
Steven Rostedt265c8312009-02-13 12:43:56 -05002550 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002551
Steven Rostedt265c8312009-02-13 12:43:56 -05002552 if (rec->flags & (FTRACE_FL_FAILED | FTRACE_FL_FREE))
2553 continue;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002554
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01002555 if (ftrace_match_record(rec, search, search_len, type)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08002556 /* if it is in the array */
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01002557 exists = false;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08002558 for (i = 0; i < *idx; i++) {
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01002559 if (array[i] == rec->ip) {
2560 exists = true;
Steven Rostedt265c8312009-02-13 12:43:56 -05002561 break;
2562 }
Li Zefanc7c6b1f2010-02-10 15:43:04 +08002563 }
2564
2565 if (!not) {
2566 fail = 0;
2567 if (!exists) {
2568 array[(*idx)++] = rec->ip;
2569 if (*idx >= FTRACE_GRAPH_MAX_FUNCS)
2570 goto out;
2571 }
2572 } else {
2573 if (exists) {
2574 array[i] = array[--(*idx)];
2575 array[*idx] = 0;
2576 fail = 0;
2577 }
2578 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002579 }
Steven Rostedt265c8312009-02-13 12:43:56 -05002580 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08002581out:
Steven Rostedt52baf112009-02-14 01:15:39 -05002582 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002583
Li Zefanc7c6b1f2010-02-10 15:43:04 +08002584 if (fail)
2585 return -EINVAL;
2586
2587 ftrace_graph_filter_enabled = 1;
2588 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002589}
2590
2591static ssize_t
2592ftrace_graph_write(struct file *file, const char __user *ubuf,
2593 size_t cnt, loff_t *ppos)
2594{
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002595 struct trace_parser parser;
Li Zefan4ba79782009-09-22 13:52:20 +08002596 ssize_t read, ret;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002597
Li Zefanc7c6b1f2010-02-10 15:43:04 +08002598 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002599 return 0;
2600
2601 mutex_lock(&graph_lock);
2602
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002603 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX)) {
2604 ret = -ENOMEM;
Li Zefan1eb90f12009-09-22 13:52:57 +08002605 goto out_unlock;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002606 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002607
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002608 read = trace_get_user(&parser, ubuf, cnt, ppos);
2609
Li Zefan4ba79782009-09-22 13:52:20 +08002610 if (read >= 0 && trace_parser_loaded((&parser))) {
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002611 parser.buffer[parser.idx] = 0;
2612
2613 /* we allow only one expression at a time */
Li Zefana4ec5e02009-09-18 14:06:28 +08002614 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002615 parser.buffer);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002616 if (ret)
Li Zefan1eb90f12009-09-22 13:52:57 +08002617 goto out_free;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002618 }
2619
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002620 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08002621
2622out_free:
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002623 trace_parser_put(&parser);
Li Zefan1eb90f12009-09-22 13:52:57 +08002624out_unlock:
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002625 mutex_unlock(&graph_lock);
2626
2627 return ret;
2628}
2629
2630static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08002631 .open = ftrace_graph_open,
2632 .read = seq_read,
2633 .write = ftrace_graph_write,
2634 .release = ftrace_graph_release,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002635};
2636#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2637
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002638static __init int ftrace_init_dyn_debugfs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02002639{
Steven Rostedt5072c592008-05-12 21:20:43 +02002640
Frederic Weisbecker5452af62009-03-27 00:25:38 +01002641 trace_create_file("available_filter_functions", 0444,
2642 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02002643
Frederic Weisbecker5452af62009-03-27 00:25:38 +01002644 trace_create_file("failures", 0444,
2645 d_tracer, NULL, &ftrace_failures_fops);
Abhishek Sagareb9a7bf2008-06-01 21:47:54 +05302646
Frederic Weisbecker5452af62009-03-27 00:25:38 +01002647 trace_create_file("set_ftrace_filter", 0644, d_tracer,
2648 NULL, &ftrace_filter_fops);
Steven Rostedt41c52c02008-05-22 11:46:33 -04002649
Frederic Weisbecker5452af62009-03-27 00:25:38 +01002650 trace_create_file("set_ftrace_notrace", 0644, d_tracer,
Steven Rostedt41c52c02008-05-22 11:46:33 -04002651 NULL, &ftrace_notrace_fops);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04002652
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002653#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01002654 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002655 NULL,
2656 &ftrace_graph_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05002657#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2658
Steven Rostedt5072c592008-05-12 21:20:43 +02002659 return 0;
2660}
2661
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002662static int ftrace_process_locs(struct module *mod,
Steven Rostedt31e88902008-11-14 16:21:19 -08002663 unsigned long *start,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002664 unsigned long *end)
2665{
2666 unsigned long *p;
2667 unsigned long addr;
2668 unsigned long flags;
2669
Steven Rostedte6ea44e2009-02-14 01:42:44 -05002670 mutex_lock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002671 p = start;
2672 while (p < end) {
2673 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08002674 /*
2675 * Some architecture linkers will pad between
2676 * the different mcount_loc sections of different
2677 * object files to satisfy alignments.
2678 * Skip any NULL pointers.
2679 */
2680 if (!addr)
2681 continue;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002682 ftrace_record_ip(addr);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002683 }
2684
Steven Rostedt08f5ac902008-10-23 09:33:07 -04002685 /* disable interrupts to prevent kstop machine */
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002686 local_irq_save(flags);
Steven Rostedt31e88902008-11-14 16:21:19 -08002687 ftrace_update_code(mod);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002688 local_irq_restore(flags);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05002689 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002690
2691 return 0;
2692}
2693
Steven Rostedt93eb6772009-04-15 13:24:06 -04002694#ifdef CONFIG_MODULES
jolsa@redhat.come7247a12009-10-07 19:00:35 +02002695void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04002696{
2697 struct dyn_ftrace *rec;
2698 struct ftrace_page *pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04002699
jolsa@redhat.come7247a12009-10-07 19:00:35 +02002700 if (ftrace_disabled)
Steven Rostedt93eb6772009-04-15 13:24:06 -04002701 return;
2702
2703 mutex_lock(&ftrace_lock);
2704 do_for_each_ftrace_rec(pg, rec) {
jolsa@redhat.come7247a12009-10-07 19:00:35 +02002705 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04002706 /*
2707 * rec->ip is changed in ftrace_free_rec()
2708 * It should not between s and e if record was freed.
2709 */
2710 FTRACE_WARN_ON(rec->flags & FTRACE_FL_FREE);
2711 ftrace_free_rec(rec);
2712 }
2713 } while_for_each_ftrace_rec();
2714 mutex_unlock(&ftrace_lock);
2715}
2716
2717static void ftrace_init_module(struct module *mod,
2718 unsigned long *start, unsigned long *end)
Steven Rostedt90d595f2008-08-14 15:45:09 -04002719{
Steven Rostedt00fd61a2008-08-15 21:40:04 -04002720 if (ftrace_disabled || start == end)
Steven Rostedtfed19392008-08-14 22:47:19 -04002721 return;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002722 ftrace_process_locs(mod, start, end);
Steven Rostedt90d595f2008-08-14 15:45:09 -04002723}
2724
Steven Rostedt93eb6772009-04-15 13:24:06 -04002725static int ftrace_module_notify(struct notifier_block *self,
2726 unsigned long val, void *data)
2727{
2728 struct module *mod = data;
2729
2730 switch (val) {
2731 case MODULE_STATE_COMING:
2732 ftrace_init_module(mod, mod->ftrace_callsites,
2733 mod->ftrace_callsites +
2734 mod->num_ftrace_callsites);
2735 break;
2736 case MODULE_STATE_GOING:
jolsa@redhat.come7247a12009-10-07 19:00:35 +02002737 ftrace_release_mod(mod);
Steven Rostedt93eb6772009-04-15 13:24:06 -04002738 break;
2739 }
2740
2741 return 0;
2742}
2743#else
2744static int ftrace_module_notify(struct notifier_block *self,
2745 unsigned long val, void *data)
2746{
2747 return 0;
2748}
2749#endif /* CONFIG_MODULES */
2750
2751struct notifier_block ftrace_module_nb = {
2752 .notifier_call = ftrace_module_notify,
2753 .priority = 0,
2754};
2755
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002756extern unsigned long __start_mcount_loc[];
2757extern unsigned long __stop_mcount_loc[];
2758
2759void __init ftrace_init(void)
2760{
2761 unsigned long count, addr, flags;
2762 int ret;
2763
2764 /* Keep the ftrace pointer to the stub */
2765 addr = (unsigned long)ftrace_stub;
2766
2767 local_irq_save(flags);
2768 ftrace_dyn_arch_init(&addr);
2769 local_irq_restore(flags);
2770
2771 /* ftrace_dyn_arch_init places the return code in addr */
2772 if (addr)
2773 goto failed;
2774
2775 count = __stop_mcount_loc - __start_mcount_loc;
2776
2777 ret = ftrace_dyn_table_alloc(count);
2778 if (ret)
2779 goto failed;
2780
2781 last_ftrace_enabled = ftrace_enabled = 1;
2782
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002783 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08002784 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002785 __stop_mcount_loc);
2786
Steven Rostedt93eb6772009-04-15 13:24:06 -04002787 ret = register_module_notifier(&ftrace_module_nb);
Ming Lei24ed0c42009-05-17 15:31:38 +08002788 if (ret)
Steven Rostedt93eb6772009-04-15 13:24:06 -04002789 pr_warning("Failed to register trace ftrace module notifier\n");
2790
Steven Rostedt2af15d62009-05-28 13:37:24 -04002791 set_ftrace_early_filters();
2792
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002793 return;
2794 failed:
2795 ftrace_disabled = 1;
2796}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002797
Steven Rostedt3d083392008-05-12 21:20:42 +02002798#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01002799
2800static int __init ftrace_nodyn_init(void)
2801{
2802 ftrace_enabled = 1;
2803 return 0;
2804}
2805device_initcall(ftrace_nodyn_init);
2806
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002807static inline int ftrace_init_dyn_debugfs(struct dentry *d_tracer) { return 0; }
2808static inline void ftrace_startup_enable(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05002809/* Keep as macros so we do not need to define the commands */
2810# define ftrace_startup(command) do { } while (0)
2811# define ftrace_shutdown(command) do { } while (0)
Ingo Molnarc7aafc52008-05-12 21:20:45 +02002812# define ftrace_startup_sysctl() do { } while (0)
2813# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedt3d083392008-05-12 21:20:42 +02002814#endif /* CONFIG_DYNAMIC_FTRACE */
2815
Steven Rostedte32d8952008-12-04 00:26:41 -05002816static void clear_ftrace_swapper(void)
2817{
2818 struct task_struct *p;
2819 int cpu;
2820
2821 get_online_cpus();
2822 for_each_online_cpu(cpu) {
2823 p = idle_task(cpu);
2824 clear_tsk_trace_trace(p);
2825 }
2826 put_online_cpus();
2827}
2828
2829static void set_ftrace_swapper(void)
2830{
2831 struct task_struct *p;
2832 int cpu;
2833
2834 get_online_cpus();
2835 for_each_online_cpu(cpu) {
2836 p = idle_task(cpu);
2837 set_tsk_trace_trace(p);
2838 }
2839 put_online_cpus();
2840}
2841
2842static void clear_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05002843{
2844 struct task_struct *p;
2845
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01002846 rcu_read_lock();
Steven Rostedte32d8952008-12-04 00:26:41 -05002847 do_each_pid_task(pid, PIDTYPE_PID, p) {
Steven Rostedt978f3a42008-12-04 00:26:40 -05002848 clear_tsk_trace_trace(p);
Steven Rostedte32d8952008-12-04 00:26:41 -05002849 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01002850 rcu_read_unlock();
2851
Steven Rostedte32d8952008-12-04 00:26:41 -05002852 put_pid(pid);
Steven Rostedt978f3a42008-12-04 00:26:40 -05002853}
2854
Steven Rostedte32d8952008-12-04 00:26:41 -05002855static void set_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05002856{
2857 struct task_struct *p;
2858
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01002859 rcu_read_lock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05002860 do_each_pid_task(pid, PIDTYPE_PID, p) {
2861 set_tsk_trace_trace(p);
2862 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01002863 rcu_read_unlock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05002864}
2865
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04002866static void clear_ftrace_pid_task(struct pid *pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05002867{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04002868 if (pid == ftrace_swapper_pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05002869 clear_ftrace_swapper();
2870 else
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04002871 clear_ftrace_pid(pid);
Steven Rostedte32d8952008-12-04 00:26:41 -05002872}
2873
2874static void set_ftrace_pid_task(struct pid *pid)
2875{
2876 if (pid == ftrace_swapper_pid)
2877 set_ftrace_swapper();
2878 else
2879 set_ftrace_pid(pid);
2880}
2881
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04002882static int ftrace_pid_add(int p)
2883{
2884 struct pid *pid;
2885 struct ftrace_pid *fpid;
2886 int ret = -EINVAL;
2887
2888 mutex_lock(&ftrace_lock);
2889
2890 if (!p)
2891 pid = ftrace_swapper_pid;
2892 else
2893 pid = find_get_pid(p);
2894
2895 if (!pid)
2896 goto out;
2897
2898 ret = 0;
2899
2900 list_for_each_entry(fpid, &ftrace_pids, list)
2901 if (fpid->pid == pid)
2902 goto out_put;
2903
2904 ret = -ENOMEM;
2905
2906 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
2907 if (!fpid)
2908 goto out_put;
2909
2910 list_add(&fpid->list, &ftrace_pids);
2911 fpid->pid = pid;
2912
2913 set_ftrace_pid_task(pid);
2914
2915 ftrace_update_pid_func();
2916 ftrace_startup_enable(0);
2917
2918 mutex_unlock(&ftrace_lock);
2919 return 0;
2920
2921out_put:
2922 if (pid != ftrace_swapper_pid)
2923 put_pid(pid);
2924
2925out:
2926 mutex_unlock(&ftrace_lock);
2927 return ret;
2928}
2929
2930static void ftrace_pid_reset(void)
2931{
2932 struct ftrace_pid *fpid, *safe;
2933
2934 mutex_lock(&ftrace_lock);
2935 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
2936 struct pid *pid = fpid->pid;
2937
2938 clear_ftrace_pid_task(pid);
2939
2940 list_del(&fpid->list);
2941 kfree(fpid);
2942 }
2943
2944 ftrace_update_pid_func();
2945 ftrace_startup_enable(0);
2946
2947 mutex_unlock(&ftrace_lock);
2948}
2949
2950static void *fpid_start(struct seq_file *m, loff_t *pos)
2951{
2952 mutex_lock(&ftrace_lock);
2953
2954 if (list_empty(&ftrace_pids) && (!*pos))
2955 return (void *) 1;
2956
2957 return seq_list_start(&ftrace_pids, *pos);
2958}
2959
2960static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
2961{
2962 if (v == (void *)1)
2963 return NULL;
2964
2965 return seq_list_next(v, &ftrace_pids, pos);
2966}
2967
2968static void fpid_stop(struct seq_file *m, void *p)
2969{
2970 mutex_unlock(&ftrace_lock);
2971}
2972
2973static int fpid_show(struct seq_file *m, void *v)
2974{
2975 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
2976
2977 if (v == (void *)1) {
2978 seq_printf(m, "no pid\n");
2979 return 0;
2980 }
2981
2982 if (fpid->pid == ftrace_swapper_pid)
2983 seq_printf(m, "swapper tasks\n");
2984 else
2985 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
2986
2987 return 0;
2988}
2989
2990static const struct seq_operations ftrace_pid_sops = {
2991 .start = fpid_start,
2992 .next = fpid_next,
2993 .stop = fpid_stop,
2994 .show = fpid_show,
2995};
2996
2997static int
2998ftrace_pid_open(struct inode *inode, struct file *file)
2999{
3000 int ret = 0;
3001
3002 if ((file->f_mode & FMODE_WRITE) &&
3003 (file->f_flags & O_TRUNC))
3004 ftrace_pid_reset();
3005
3006 if (file->f_mode & FMODE_READ)
3007 ret = seq_open(file, &ftrace_pid_sops);
3008
3009 return ret;
3010}
3011
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003012static ssize_t
3013ftrace_pid_write(struct file *filp, const char __user *ubuf,
3014 size_t cnt, loff_t *ppos)
3015{
Ingo Molnar457dc922009-11-23 11:03:28 +01003016 char buf[64], *tmp;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003017 long val;
3018 int ret;
3019
3020 if (cnt >= sizeof(buf))
3021 return -EINVAL;
3022
3023 if (copy_from_user(&buf, ubuf, cnt))
3024 return -EFAULT;
3025
3026 buf[cnt] = 0;
3027
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003028 /*
3029 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
3030 * to clean the filter quietly.
3031 */
Ingo Molnar457dc922009-11-23 11:03:28 +01003032 tmp = strstrip(buf);
3033 if (strlen(tmp) == 0)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003034 return 1;
3035
Ingo Molnar457dc922009-11-23 11:03:28 +01003036 ret = strict_strtol(tmp, 10, &val);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003037 if (ret < 0)
3038 return ret;
3039
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003040 ret = ftrace_pid_add(val);
Steven Rostedt978f3a42008-12-04 00:26:40 -05003041
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003042 return ret ? ret : cnt;
3043}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003044
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003045static int
3046ftrace_pid_release(struct inode *inode, struct file *file)
3047{
3048 if (file->f_mode & FMODE_READ)
3049 seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003050
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003051 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003052}
3053
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003054static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04003055 .open = ftrace_pid_open,
3056 .write = ftrace_pid_write,
3057 .read = seq_read,
3058 .llseek = seq_lseek,
3059 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003060};
3061
3062static __init int ftrace_init_debugfs(void)
3063{
3064 struct dentry *d_tracer;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003065
3066 d_tracer = tracing_init_dentry();
3067 if (!d_tracer)
3068 return 0;
3069
3070 ftrace_init_dyn_debugfs(d_tracer);
3071
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003072 trace_create_file("set_ftrace_pid", 0644, d_tracer,
3073 NULL, &ftrace_pid_fops);
Steven Rostedt493762f2009-03-23 17:12:36 -04003074
3075 ftrace_profile_debugfs(d_tracer);
3076
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003077 return 0;
3078}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003079fs_initcall(ftrace_init_debugfs);
3080
Steven Rostedt3d083392008-05-12 21:20:42 +02003081/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04003082 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04003083 *
3084 * This function should be used by panic code. It stops ftrace
3085 * but in a not so nice way. If you need to simply kill ftrace
3086 * from a non-atomic section, use ftrace_kill.
3087 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04003088void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04003089{
3090 ftrace_disabled = 1;
3091 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04003092 clear_ftrace_function();
3093}
3094
3095/**
Steven Rostedt3d083392008-05-12 21:20:42 +02003096 * register_ftrace_function - register a function for profiling
3097 * @ops - ops structure that holds the function for profiling.
3098 *
3099 * Register a function to be called by all functions in the
3100 * kernel.
3101 *
3102 * Note: @ops->func and all the functions it calls must be labeled
3103 * with "notrace", otherwise it will go into a
3104 * recursive loop.
3105 */
3106int register_ftrace_function(struct ftrace_ops *ops)
3107{
Steven Rostedtb0fc4942008-05-12 21:20:43 +02003108 int ret;
3109
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003110 if (unlikely(ftrace_disabled))
3111 return -1;
3112
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003113 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01003114
Steven Rostedtb0fc4942008-05-12 21:20:43 +02003115 ret = __register_ftrace_function(ops);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05003116 ftrace_startup(0);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02003117
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003118 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02003119 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02003120}
3121
3122/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01003123 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02003124 * @ops - ops structure that holds the function to unregister
3125 *
3126 * Unregister a function that was added to be called by ftrace profiling.
3127 */
3128int unregister_ftrace_function(struct ftrace_ops *ops)
3129{
3130 int ret;
3131
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003132 mutex_lock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02003133 ret = __unregister_ftrace_function(ops);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05003134 ftrace_shutdown(0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003135 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02003136
3137 return ret;
3138}
3139
Ingo Molnare309b412008-05-12 21:20:51 +02003140int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02003141ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003142 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02003143 loff_t *ppos)
3144{
3145 int ret;
3146
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003147 if (unlikely(ftrace_disabled))
3148 return -ENODEV;
3149
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003150 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02003151
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003152 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02003153
Li Zefana32c7762009-06-26 16:55:51 +08003154 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02003155 goto out;
3156
Li Zefana32c7762009-06-26 16:55:51 +08003157 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02003158
3159 if (ftrace_enabled) {
3160
3161 ftrace_startup_sysctl();
3162
3163 /* we are starting ftrace again */
3164 if (ftrace_list != &ftrace_list_end) {
3165 if (ftrace_list->next == &ftrace_list_end)
3166 ftrace_trace_function = ftrace_list->func;
3167 else
3168 ftrace_trace_function = ftrace_list_func;
3169 }
3170
3171 } else {
3172 /* stopping ftrace calls (just send to ftrace_stub) */
3173 ftrace_trace_function = ftrace_stub;
3174
3175 ftrace_shutdown_sysctl();
3176 }
3177
3178 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003179 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02003180 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02003181}
Ingo Molnarf17845e2008-10-24 12:47:10 +02003182
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01003183#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01003184
Steven Rostedt597af812009-04-03 15:24:12 -04003185static int ftrace_graph_active;
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08003186static struct notifier_block ftrace_suspend_notifier;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003187
Steven Rostedte49dc192008-12-02 23:50:05 -05003188int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
3189{
3190 return 0;
3191}
3192
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01003193/* The callbacks that hook a function */
3194trace_func_graph_ret_t ftrace_graph_return =
3195 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05003196trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003197
3198/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
3199static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
3200{
3201 int i;
3202 int ret = 0;
3203 unsigned long flags;
3204 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
3205 struct task_struct *g, *t;
3206
3207 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
3208 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
3209 * sizeof(struct ftrace_ret_stack),
3210 GFP_KERNEL);
3211 if (!ret_stack_list[i]) {
3212 start = 0;
3213 end = i;
3214 ret = -ENOMEM;
3215 goto free;
3216 }
3217 }
3218
3219 read_lock_irqsave(&tasklist_lock, flags);
3220 do_each_thread(g, t) {
3221 if (start == end) {
3222 ret = -EAGAIN;
3223 goto unlock;
3224 }
3225
3226 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01003227 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003228 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04003229 t->curr_ret_stack = -1;
3230 /* Make sure the tasks see the -1 first: */
3231 smp_wmb();
3232 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003233 }
3234 } while_each_thread(g, t);
3235
3236unlock:
3237 read_unlock_irqrestore(&tasklist_lock, flags);
3238free:
3239 for (i = start; i < end; i++)
3240 kfree(ret_stack_list[i]);
3241 return ret;
3242}
3243
Steven Rostedt8aef2d22009-03-24 01:10:15 -04003244static void
Steven Rostedt38516ab2010-04-20 17:04:50 -04003245ftrace_graph_probe_sched_switch(void *ignore,
3246 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04003247{
3248 unsigned long long timestamp;
3249 int index;
3250
Steven Rostedtbe6f1642009-03-24 11:06:24 -04003251 /*
3252 * Does the user want to count the time a function was asleep.
3253 * If so, do not update the time stamps.
3254 */
3255 if (trace_flags & TRACE_ITER_SLEEP_TIME)
3256 return;
3257
Steven Rostedt8aef2d22009-03-24 01:10:15 -04003258 timestamp = trace_clock_local();
3259
3260 prev->ftrace_timestamp = timestamp;
3261
3262 /* only process tasks that we timestamped */
3263 if (!next->ftrace_timestamp)
3264 return;
3265
3266 /*
3267 * Update all the counters in next to make up for the
3268 * time next was sleeping.
3269 */
3270 timestamp -= next->ftrace_timestamp;
3271
3272 for (index = next->curr_ret_stack; index >= 0; index--)
3273 next->ret_stack[index].calltime += timestamp;
3274}
3275
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003276/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01003277static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003278{
3279 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01003280 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003281
3282 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
3283 sizeof(struct ftrace_ret_stack *),
3284 GFP_KERNEL);
3285
3286 if (!ret_stack_list)
3287 return -ENOMEM;
3288
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01003289 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04003290 for_each_online_cpu(cpu) {
3291 if (!idle_task(cpu)->ret_stack)
3292 ftrace_graph_init_task(idle_task(cpu));
3293 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01003294
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003295 do {
3296 ret = alloc_retstack_tasklist(ret_stack_list);
3297 } while (ret == -EAGAIN);
3298
Steven Rostedt8aef2d22009-03-24 01:10:15 -04003299 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04003300 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04003301 if (ret)
3302 pr_info("ftrace_graph: Couldn't activate tracepoint"
3303 " probe to kernel_sched_switch\n");
3304 }
3305
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003306 kfree(ret_stack_list);
3307 return ret;
3308}
3309
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08003310/*
3311 * Hibernation protection.
3312 * The state of the current task is too much unstable during
3313 * suspend/restore to disk. We want to protect against that.
3314 */
3315static int
3316ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
3317 void *unused)
3318{
3319 switch (state) {
3320 case PM_HIBERNATION_PREPARE:
3321 pause_graph_tracing();
3322 break;
3323
3324 case PM_POST_HIBERNATION:
3325 unpause_graph_tracing();
3326 break;
3327 }
3328 return NOTIFY_DONE;
3329}
3330
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01003331int register_ftrace_graph(trace_func_graph_ret_t retfunc,
3332 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01003333{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01003334 int ret = 0;
3335
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003336 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01003337
Steven Rostedt05ce5812009-03-24 00:18:31 -04003338 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04003339 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04003340 ret = -EBUSY;
3341 goto out;
3342 }
3343
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08003344 ftrace_suspend_notifier.notifier_call = ftrace_suspend_notifier_call;
3345 register_pm_notifier(&ftrace_suspend_notifier);
3346
Steven Rostedt597af812009-04-03 15:24:12 -04003347 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01003348 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003349 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04003350 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003351 goto out;
3352 }
Steven Rostedte53a6312008-11-26 00:16:25 -05003353
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01003354 ftrace_graph_return = retfunc;
3355 ftrace_graph_entry = entryfunc;
Steven Rostedte53a6312008-11-26 00:16:25 -05003356
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05003357 ftrace_startup(FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01003358
3359out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003360 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01003361 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01003362}
3363
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01003364void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01003365{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003366 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01003367
Steven Rostedt597af812009-04-03 15:24:12 -04003368 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04003369 goto out;
3370
Steven Rostedt597af812009-04-03 15:24:12 -04003371 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01003372 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05003373 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05003374 ftrace_shutdown(FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08003375 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04003376 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01003377
Steven Rostedt2aad1b72009-03-30 11:11:28 -04003378 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003379 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01003380}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003381
3382/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01003383void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003384{
Steven Rostedt84047e32009-06-02 16:51:55 -04003385 /* Make sure we do not use the parent ret_stack */
3386 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05003387 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04003388
Steven Rostedt597af812009-04-03 15:24:12 -04003389 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04003390 struct ftrace_ret_stack *ret_stack;
3391
3392 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003393 * sizeof(struct ftrace_ret_stack),
3394 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04003395 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003396 return;
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01003397 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003398 atomic_set(&t->trace_overrun, 0);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04003399 t->ftrace_timestamp = 0;
Steven Rostedt82310a32009-06-02 12:26:07 -04003400 /* make curr_ret_stack visable before we add the ret_stack */
3401 smp_wmb();
3402 t->ret_stack = ret_stack;
Steven Rostedt84047e32009-06-02 16:51:55 -04003403 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003404}
3405
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01003406void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003407{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01003408 struct ftrace_ret_stack *ret_stack = t->ret_stack;
3409
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003410 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01003411 /* NULL must become visible to IRQs before we free it: */
3412 barrier();
3413
3414 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01003415}
Steven Rostedt14a866c2008-12-02 23:50:02 -05003416
3417void ftrace_graph_stop(void)
3418{
3419 ftrace_stop();
3420}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01003421#endif