include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[linux-block.git] / kernel / trace / ftrace.c
CommitLineData
16444a8a
ACM
1/*
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
3d083395
SR
16#include <linux/stop_machine.h>
17#include <linux/clocksource.h>
18#include <linux/kallsyms.h>
5072c59f 19#include <linux/seq_file.h>
4a2b8dda 20#include <linux/suspend.h>
5072c59f 21#include <linux/debugfs.h>
3d083395 22#include <linux/hardirq.h>
2d8b820b 23#include <linux/kthread.h>
5072c59f 24#include <linux/uaccess.h>
2d8b820b 25#include <linux/ftrace.h>
b0fc494f 26#include <linux/sysctl.h>
5a0e3ad6 27#include <linux/slab.h>
5072c59f 28#include <linux/ctype.h>
3d083395 29#include <linux/list.h>
59df055f 30#include <linux/hash.h>
3f379b03 31#include <linux/rcupdate.h>
3d083395 32
ad8d75ff 33#include <trace/events/sched.h>
8aef2d28 34
395a59d0 35#include <asm/ftrace.h>
2af15d6a 36#include <asm/setup.h>
395a59d0 37
0706f1c4 38#include "trace_output.h"
bac429f0 39#include "trace_stat.h"
16444a8a 40
6912896e
SR
41#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
8fc0c701
SR
53/* hash bits for specific function selection */
54#define FTRACE_HASH_BITS 7
55#define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
56
4eebcc81
SR
57/* ftrace_enabled is a method to turn ftrace on or off */
58int ftrace_enabled __read_mostly;
d61f82d0 59static int last_ftrace_enabled;
b0fc494f 60
60a7ecf4
SR
61/* Quick disabling of function tracer. */
62int function_trace_stop;
63
756d17ee 64/* 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
4eebcc81
SR
71/*
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
52baf119 77static DEFINE_MUTEX(ftrace_lock);
b0fc494f 78
16444a8a
ACM
79static struct ftrace_ops ftrace_list_end __read_mostly =
80{
fb9fb015 81 .func = ftrace_stub,
16444a8a
ACM
82};
83
84static struct ftrace_ops *ftrace_list __read_mostly = &ftrace_list_end;
85ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
60a7ecf4 86ftrace_func_t __ftrace_trace_function __read_mostly = ftrace_stub;
df4fc315 87ftrace_func_t ftrace_pid_function __read_mostly = ftrace_stub;
16444a8a 88
3f379b03
PM
89/*
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 */
f2252935 98static void ftrace_list_func(unsigned long ip, unsigned long parent_ip)
16444a8a 99{
3f379b03 100 struct ftrace_ops *op = rcu_dereference_raw(ftrace_list); /*see above*/
16444a8a
ACM
101
102 while (op != &ftrace_list_end) {
16444a8a 103 op->func(ip, parent_ip);
3f379b03 104 op = rcu_dereference_raw(op->next); /*see above*/
16444a8a
ACM
105 };
106}
107
df4fc315
SR
108static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip)
109{
0ef8cde5 110 if (!test_tsk_trace_trace(current))
df4fc315
SR
111 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
16444a8a 123/**
3d083395 124 * clear_ftrace_function - reset the ftrace function
16444a8a 125 *
3d083395
SR
126 * This NULLs the ftrace function and in essence stops
127 * tracing. There may be lag
16444a8a 128 */
3d083395 129void clear_ftrace_function(void)
16444a8a 130{
3d083395 131 ftrace_trace_function = ftrace_stub;
60a7ecf4 132 __ftrace_trace_function = ftrace_stub;
df4fc315 133 ftrace_pid_function = ftrace_stub;
3d083395
SR
134}
135
60a7ecf4
SR
136#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
e309b41d 150static int __register_ftrace_function(struct ftrace_ops *ops)
3d083395 151{
16444a8a
ACM
152 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 */
3f379b03 159 rcu_assign_pointer(ftrace_list, ops);
3d083395 160
b0fc494f 161 if (ftrace_enabled) {
df4fc315
SR
162 ftrace_func_t func;
163
164 if (ops->next == &ftrace_list_end)
165 func = ops->func;
166 else
167 func = ftrace_list_func;
168
756d17ee 169 if (!list_empty(&ftrace_pids)) {
df4fc315
SR
170 set_ftrace_pid_function(func);
171 func = ftrace_pid_func;
172 }
173
b0fc494f
SR
174 /*
175 * For one func, simply call it directly.
176 * For more than one func, call the chain.
177 */
60a7ecf4 178#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
df4fc315 179 ftrace_trace_function = func;
60a7ecf4 180#else
df4fc315 181 __ftrace_trace_function = func;
60a7ecf4
SR
182 ftrace_trace_function = ftrace_test_stop_func;
183#endif
b0fc494f 184 }
3d083395 185
16444a8a
ACM
186 return 0;
187}
188
e309b41d 189static int __unregister_ftrace_function(struct ftrace_ops *ops)
16444a8a 190{
16444a8a 191 struct ftrace_ops **p;
16444a8a
ACM
192
193 /*
3d083395
SR
194 * If we are removing the last function, then simply point
195 * to the ftrace_stub.
16444a8a
ACM
196 */
197 if (ftrace_list == ops && ops->next == &ftrace_list_end) {
198 ftrace_trace_function = ftrace_stub;
199 ftrace_list = &ftrace_list_end;
e6ea44e9 200 return 0;
16444a8a
ACM
201 }
202
203 for (p = &ftrace_list; *p != &ftrace_list_end; p = &(*p)->next)
204 if (*p == ops)
205 break;
206
e6ea44e9
SR
207 if (*p != ops)
208 return -1;
16444a8a
ACM
209
210 *p = (*p)->next;
211
b0fc494f
SR
212 if (ftrace_enabled) {
213 /* If we only have one func left, then call that directly */
df4fc315
SR
214 if (ftrace_list->next == &ftrace_list_end) {
215 ftrace_func_t func = ftrace_list->func;
216
756d17ee 217 if (!list_empty(&ftrace_pids)) {
df4fc315
SR
218 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 }
b0fc494f 227 }
16444a8a 228
e6ea44e9 229 return 0;
3d083395
SR
230}
231
df4fc315
SR
232static void ftrace_update_pid_func(void)
233{
234 ftrace_func_t func;
235
df4fc315 236 if (ftrace_trace_function == ftrace_stub)
10dd3ebe 237 return;
df4fc315 238
33974093 239#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
df4fc315 240 func = ftrace_trace_function;
33974093
MF
241#else
242 func = __ftrace_trace_function;
243#endif
df4fc315 244
756d17ee 245 if (!list_empty(&ftrace_pids)) {
df4fc315
SR
246 set_ftrace_pid_function(func);
247 func = ftrace_pid_func;
248 } else {
66eafebc
LW
249 if (func == ftrace_pid_func)
250 func = ftrace_pid_function;
df4fc315
SR
251 }
252
253#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
254 ftrace_trace_function = func;
255#else
256 __ftrace_trace_function = func;
257#endif
df4fc315
SR
258}
259
493762fc
SR
260#ifdef CONFIG_FUNCTION_PROFILER
261struct ftrace_profile {
262 struct hlist_node node;
263 unsigned long ip;
264 unsigned long counter;
0706f1c4
SR
265#ifdef CONFIG_FUNCTION_GRAPH_TRACER
266 unsigned long long time;
267#endif
8fc0c701
SR
268};
269
493762fc
SR
270struct ftrace_profile_page {
271 struct ftrace_profile_page *next;
272 unsigned long index;
273 struct ftrace_profile records[];
d61f82d0
SR
274};
275
cafb168a
SR
276struct ftrace_profile_stat {
277 atomic_t disabled;
278 struct hlist_head *hash;
279 struct ftrace_profile_page *pages;
280 struct ftrace_profile_page *start;
281 struct tracer_stat stat;
282};
283
493762fc
SR
284#define PROFILE_RECORDS_SIZE \
285 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
5072c59f 286
493762fc
SR
287#define PROFILES_PER_PAGE \
288 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
3d083395 289
fb9fb015
SR
290static int ftrace_profile_bits __read_mostly;
291static int ftrace_profile_enabled __read_mostly;
292
293/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
bac429f0
SR
294static DEFINE_MUTEX(ftrace_profile_lock);
295
cafb168a 296static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
493762fc
SR
297
298#define FTRACE_PROFILE_HASH_SIZE 1024 /* must be power of 2 */
299
bac429f0
SR
300static void *
301function_stat_next(void *v, int idx)
302{
493762fc
SR
303 struct ftrace_profile *rec = v;
304 struct ftrace_profile_page *pg;
bac429f0 305
493762fc 306 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
bac429f0
SR
307
308 again:
0296e425
LZ
309 if (idx != 0)
310 rec++;
311
bac429f0
SR
312 if ((void *)rec >= (void *)&pg->records[pg->index]) {
313 pg = pg->next;
314 if (!pg)
315 return NULL;
316 rec = &pg->records[0];
493762fc
SR
317 if (!rec->counter)
318 goto again;
bac429f0
SR
319 }
320
bac429f0
SR
321 return rec;
322}
323
324static void *function_stat_start(struct tracer_stat *trace)
325{
cafb168a
SR
326 struct ftrace_profile_stat *stat =
327 container_of(trace, struct ftrace_profile_stat, stat);
328
329 if (!stat || !stat->start)
330 return NULL;
331
332 return function_stat_next(&stat->start->records[0], 0);
bac429f0
SR
333}
334
0706f1c4
SR
335#ifdef CONFIG_FUNCTION_GRAPH_TRACER
336/* function graph compares on total time */
337static int function_stat_cmp(void *p1, void *p2)
338{
339 struct ftrace_profile *a = p1;
340 struct ftrace_profile *b = p2;
341
342 if (a->time < b->time)
343 return -1;
344 if (a->time > b->time)
345 return 1;
346 else
347 return 0;
348}
349#else
350/* not function graph compares against hits */
bac429f0
SR
351static int function_stat_cmp(void *p1, void *p2)
352{
493762fc
SR
353 struct ftrace_profile *a = p1;
354 struct ftrace_profile *b = p2;
bac429f0
SR
355
356 if (a->counter < b->counter)
357 return -1;
358 if (a->counter > b->counter)
359 return 1;
360 else
361 return 0;
362}
0706f1c4 363#endif
bac429f0
SR
364
365static int function_stat_headers(struct seq_file *m)
366{
0706f1c4 367#ifdef CONFIG_FUNCTION_GRAPH_TRACER
34886c8b
SR
368 seq_printf(m, " Function "
369 "Hit Time Avg\n"
370 " -------- "
371 "--- ---- ---\n");
0706f1c4 372#else
bac429f0
SR
373 seq_printf(m, " Function Hit\n"
374 " -------- ---\n");
0706f1c4 375#endif
bac429f0
SR
376 return 0;
377}
378
379static int function_stat_show(struct seq_file *m, void *v)
380{
493762fc 381 struct ftrace_profile *rec = v;
bac429f0 382 char str[KSYM_SYMBOL_LEN];
0706f1c4 383#ifdef CONFIG_FUNCTION_GRAPH_TRACER
0706f1c4 384 static DEFINE_MUTEX(mutex);
34886c8b
SR
385 static struct trace_seq s;
386 unsigned long long avg;
0706f1c4 387#endif
bac429f0
SR
388
389 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
0706f1c4
SR
390 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
391
392#ifdef CONFIG_FUNCTION_GRAPH_TRACER
393 seq_printf(m, " ");
34886c8b
SR
394 avg = rec->time;
395 do_div(avg, rec->counter);
396
397 mutex_lock(&mutex);
398 trace_seq_init(&s);
399 trace_print_graph_duration(rec->time, &s);
400 trace_seq_puts(&s, " ");
401 trace_print_graph_duration(avg, &s);
0706f1c4
SR
402 trace_print_seq(m, &s);
403 mutex_unlock(&mutex);
404#endif
405 seq_putc(m, '\n');
bac429f0 406
bac429f0
SR
407 return 0;
408}
409
cafb168a 410static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
bac429f0 411{
493762fc 412 struct ftrace_profile_page *pg;
bac429f0 413
cafb168a 414 pg = stat->pages = stat->start;
bac429f0 415
493762fc
SR
416 while (pg) {
417 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
418 pg->index = 0;
419 pg = pg->next;
bac429f0
SR
420 }
421
cafb168a 422 memset(stat->hash, 0,
493762fc
SR
423 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
424}
bac429f0 425
cafb168a 426int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
493762fc
SR
427{
428 struct ftrace_profile_page *pg;
318e0a73
SR
429 int functions;
430 int pages;
493762fc 431 int i;
bac429f0 432
493762fc 433 /* If we already allocated, do nothing */
cafb168a 434 if (stat->pages)
493762fc 435 return 0;
bac429f0 436
cafb168a
SR
437 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
438 if (!stat->pages)
493762fc 439 return -ENOMEM;
bac429f0 440
318e0a73
SR
441#ifdef CONFIG_DYNAMIC_FTRACE
442 functions = ftrace_update_tot_cnt;
443#else
444 /*
445 * We do not know the number of functions that exist because
446 * dynamic tracing is what counts them. With past experience
447 * we have around 20K functions. That should be more than enough.
448 * It is highly unlikely we will execute every function in
449 * the kernel.
450 */
451 functions = 20000;
452#endif
453
cafb168a 454 pg = stat->start = stat->pages;
bac429f0 455
318e0a73
SR
456 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
457
458 for (i = 0; i < pages; i++) {
493762fc 459 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
493762fc 460 if (!pg->next)
318e0a73 461 goto out_free;
493762fc
SR
462 pg = pg->next;
463 }
464
465 return 0;
318e0a73
SR
466
467 out_free:
468 pg = stat->start;
469 while (pg) {
470 unsigned long tmp = (unsigned long)pg;
471
472 pg = pg->next;
473 free_page(tmp);
474 }
475
476 free_page((unsigned long)stat->pages);
477 stat->pages = NULL;
478 stat->start = NULL;
479
480 return -ENOMEM;
bac429f0
SR
481}
482
cafb168a 483static int ftrace_profile_init_cpu(int cpu)
bac429f0 484{
cafb168a 485 struct ftrace_profile_stat *stat;
493762fc 486 int size;
bac429f0 487
cafb168a
SR
488 stat = &per_cpu(ftrace_profile_stats, cpu);
489
490 if (stat->hash) {
493762fc 491 /* If the profile is already created, simply reset it */
cafb168a 492 ftrace_profile_reset(stat);
493762fc
SR
493 return 0;
494 }
bac429f0 495
493762fc
SR
496 /*
497 * We are profiling all functions, but usually only a few thousand
498 * functions are hit. We'll make a hash of 1024 items.
499 */
500 size = FTRACE_PROFILE_HASH_SIZE;
bac429f0 501
cafb168a 502 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
493762fc 503
cafb168a 504 if (!stat->hash)
493762fc
SR
505 return -ENOMEM;
506
cafb168a
SR
507 if (!ftrace_profile_bits) {
508 size--;
493762fc 509
cafb168a
SR
510 for (; size; size >>= 1)
511 ftrace_profile_bits++;
512 }
493762fc 513
318e0a73 514 /* Preallocate the function profiling pages */
cafb168a
SR
515 if (ftrace_profile_pages_init(stat) < 0) {
516 kfree(stat->hash);
517 stat->hash = NULL;
493762fc
SR
518 return -ENOMEM;
519 }
520
521 return 0;
bac429f0
SR
522}
523
cafb168a
SR
524static int ftrace_profile_init(void)
525{
526 int cpu;
527 int ret = 0;
528
529 for_each_online_cpu(cpu) {
530 ret = ftrace_profile_init_cpu(cpu);
531 if (ret)
532 break;
533 }
534
535 return ret;
536}
537
493762fc 538/* interrupts must be disabled */
cafb168a
SR
539static struct ftrace_profile *
540ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
bac429f0 541{
493762fc 542 struct ftrace_profile *rec;
bac429f0
SR
543 struct hlist_head *hhd;
544 struct hlist_node *n;
bac429f0
SR
545 unsigned long key;
546
bac429f0 547 key = hash_long(ip, ftrace_profile_bits);
cafb168a 548 hhd = &stat->hash[key];
bac429f0
SR
549
550 if (hlist_empty(hhd))
551 return NULL;
552
bac429f0
SR
553 hlist_for_each_entry_rcu(rec, n, hhd, node) {
554 if (rec->ip == ip)
493762fc
SR
555 return rec;
556 }
557
558 return NULL;
559}
560
cafb168a
SR
561static void ftrace_add_profile(struct ftrace_profile_stat *stat,
562 struct ftrace_profile *rec)
493762fc
SR
563{
564 unsigned long key;
565
566 key = hash_long(rec->ip, ftrace_profile_bits);
cafb168a 567 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
493762fc
SR
568}
569
318e0a73
SR
570/*
571 * The memory is already allocated, this simply finds a new record to use.
572 */
493762fc 573static struct ftrace_profile *
318e0a73 574ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
493762fc
SR
575{
576 struct ftrace_profile *rec = NULL;
577
318e0a73 578 /* prevent recursion (from NMIs) */
cafb168a 579 if (atomic_inc_return(&stat->disabled) != 1)
493762fc
SR
580 goto out;
581
493762fc 582 /*
318e0a73
SR
583 * Try to find the function again since an NMI
584 * could have added it
493762fc 585 */
cafb168a 586 rec = ftrace_find_profiled_func(stat, ip);
493762fc 587 if (rec)
cafb168a 588 goto out;
493762fc 589
cafb168a
SR
590 if (stat->pages->index == PROFILES_PER_PAGE) {
591 if (!stat->pages->next)
592 goto out;
593 stat->pages = stat->pages->next;
bac429f0 594 }
493762fc 595
cafb168a 596 rec = &stat->pages->records[stat->pages->index++];
493762fc 597 rec->ip = ip;
cafb168a 598 ftrace_add_profile(stat, rec);
493762fc 599
bac429f0 600 out:
cafb168a 601 atomic_dec(&stat->disabled);
bac429f0
SR
602
603 return rec;
604}
605
606static void
607function_profile_call(unsigned long ip, unsigned long parent_ip)
608{
cafb168a 609 struct ftrace_profile_stat *stat;
493762fc 610 struct ftrace_profile *rec;
bac429f0
SR
611 unsigned long flags;
612
613 if (!ftrace_profile_enabled)
614 return;
615
616 local_irq_save(flags);
cafb168a
SR
617
618 stat = &__get_cpu_var(ftrace_profile_stats);
0f6ce3de 619 if (!stat->hash || !ftrace_profile_enabled)
cafb168a
SR
620 goto out;
621
622 rec = ftrace_find_profiled_func(stat, ip);
493762fc 623 if (!rec) {
318e0a73 624 rec = ftrace_profile_alloc(stat, ip);
493762fc
SR
625 if (!rec)
626 goto out;
627 }
bac429f0
SR
628
629 rec->counter++;
630 out:
631 local_irq_restore(flags);
632}
633
0706f1c4
SR
634#ifdef CONFIG_FUNCTION_GRAPH_TRACER
635static int profile_graph_entry(struct ftrace_graph_ent *trace)
636{
637 function_profile_call(trace->func, 0);
638 return 1;
639}
640
641static void profile_graph_return(struct ftrace_graph_ret *trace)
642{
cafb168a 643 struct ftrace_profile_stat *stat;
a2a16d6a 644 unsigned long long calltime;
0706f1c4 645 struct ftrace_profile *rec;
cafb168a 646 unsigned long flags;
0706f1c4
SR
647
648 local_irq_save(flags);
cafb168a 649 stat = &__get_cpu_var(ftrace_profile_stats);
0f6ce3de 650 if (!stat->hash || !ftrace_profile_enabled)
cafb168a
SR
651 goto out;
652
a2a16d6a
SR
653 calltime = trace->rettime - trace->calltime;
654
655 if (!(trace_flags & TRACE_ITER_GRAPH_TIME)) {
656 int index;
657
658 index = trace->depth;
659
660 /* Append this call time to the parent time to subtract */
661 if (index)
662 current->ret_stack[index - 1].subtime += calltime;
663
664 if (current->ret_stack[index].subtime < calltime)
665 calltime -= current->ret_stack[index].subtime;
666 else
667 calltime = 0;
668 }
669
cafb168a 670 rec = ftrace_find_profiled_func(stat, trace->func);
0706f1c4 671 if (rec)
a2a16d6a
SR
672 rec->time += calltime;
673
cafb168a 674 out:
0706f1c4
SR
675 local_irq_restore(flags);
676}
677
678static int register_ftrace_profiler(void)
679{
680 return register_ftrace_graph(&profile_graph_return,
681 &profile_graph_entry);
682}
683
684static void unregister_ftrace_profiler(void)
685{
686 unregister_ftrace_graph();
687}
688#else
bac429f0
SR
689static struct ftrace_ops ftrace_profile_ops __read_mostly =
690{
fb9fb015 691 .func = function_profile_call,
bac429f0
SR
692};
693
0706f1c4
SR
694static int register_ftrace_profiler(void)
695{
696 return register_ftrace_function(&ftrace_profile_ops);
697}
698
699static void unregister_ftrace_profiler(void)
700{
701 unregister_ftrace_function(&ftrace_profile_ops);
702}
703#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
704
bac429f0
SR
705static ssize_t
706ftrace_profile_write(struct file *filp, const char __user *ubuf,
707 size_t cnt, loff_t *ppos)
708{
709 unsigned long val;
fb9fb015 710 char buf[64]; /* big enough to hold a number */
bac429f0
SR
711 int ret;
712
bac429f0
SR
713 if (cnt >= sizeof(buf))
714 return -EINVAL;
715
716 if (copy_from_user(&buf, ubuf, cnt))
717 return -EFAULT;
718
719 buf[cnt] = 0;
720
721 ret = strict_strtoul(buf, 10, &val);
722 if (ret < 0)
723 return ret;
724
725 val = !!val;
726
727 mutex_lock(&ftrace_profile_lock);
728 if (ftrace_profile_enabled ^ val) {
729 if (val) {
493762fc
SR
730 ret = ftrace_profile_init();
731 if (ret < 0) {
732 cnt = ret;
733 goto out;
734 }
735
0706f1c4
SR
736 ret = register_ftrace_profiler();
737 if (ret < 0) {
738 cnt = ret;
739 goto out;
740 }
bac429f0
SR
741 ftrace_profile_enabled = 1;
742 } else {
743 ftrace_profile_enabled = 0;
0f6ce3de
SR
744 /*
745 * unregister_ftrace_profiler calls stop_machine
746 * so this acts like an synchronize_sched.
747 */
0706f1c4 748 unregister_ftrace_profiler();
bac429f0
SR
749 }
750 }
493762fc 751 out:
bac429f0
SR
752 mutex_unlock(&ftrace_profile_lock);
753
cf8517cf 754 *ppos += cnt;
bac429f0
SR
755
756 return cnt;
757}
758
493762fc
SR
759static ssize_t
760ftrace_profile_read(struct file *filp, char __user *ubuf,
761 size_t cnt, loff_t *ppos)
762{
fb9fb015 763 char buf[64]; /* big enough to hold a number */
493762fc
SR
764 int r;
765
766 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
767 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
768}
769
bac429f0
SR
770static const struct file_operations ftrace_profile_fops = {
771 .open = tracing_open_generic,
772 .read = ftrace_profile_read,
773 .write = ftrace_profile_write,
774};
775
cafb168a
SR
776/* used to initialize the real stat files */
777static struct tracer_stat function_stats __initdata = {
fb9fb015
SR
778 .name = "functions",
779 .stat_start = function_stat_start,
780 .stat_next = function_stat_next,
781 .stat_cmp = function_stat_cmp,
782 .stat_headers = function_stat_headers,
783 .stat_show = function_stat_show
cafb168a
SR
784};
785
6ab5d668 786static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
bac429f0 787{
cafb168a 788 struct ftrace_profile_stat *stat;
bac429f0 789 struct dentry *entry;
cafb168a 790 char *name;
bac429f0 791 int ret;
cafb168a
SR
792 int cpu;
793
794 for_each_possible_cpu(cpu) {
795 stat = &per_cpu(ftrace_profile_stats, cpu);
796
797 /* allocate enough for function name + cpu number */
798 name = kmalloc(32, GFP_KERNEL);
799 if (!name) {
800 /*
801 * The files created are permanent, if something happens
802 * we still do not free memory.
803 */
cafb168a
SR
804 WARN(1,
805 "Could not allocate stat file for cpu %d\n",
806 cpu);
807 return;
808 }
809 stat->stat = function_stats;
810 snprintf(name, 32, "function%d", cpu);
811 stat->stat.name = name;
812 ret = register_stat_tracer(&stat->stat);
813 if (ret) {
814 WARN(1,
815 "Could not register function stat for cpu %d\n",
816 cpu);
817 kfree(name);
818 return;
819 }
bac429f0
SR
820 }
821
822 entry = debugfs_create_file("function_profile_enabled", 0644,
823 d_tracer, NULL, &ftrace_profile_fops);
824 if (!entry)
825 pr_warning("Could not create debugfs "
826 "'function_profile_enabled' entry\n");
827}
828
bac429f0 829#else /* CONFIG_FUNCTION_PROFILER */
6ab5d668 830static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
bac429f0
SR
831{
832}
bac429f0
SR
833#endif /* CONFIG_FUNCTION_PROFILER */
834
493762fc
SR
835static struct pid * const ftrace_swapper_pid = &init_struct_pid;
836
837#ifdef CONFIG_DYNAMIC_FTRACE
838
839#ifndef CONFIG_FTRACE_MCOUNT_RECORD
840# error Dynamic ftrace depends on MCOUNT_RECORD
841#endif
842
843static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
844
845struct ftrace_func_probe {
846 struct hlist_node node;
847 struct ftrace_probe_ops *ops;
848 unsigned long flags;
849 unsigned long ip;
850 void *data;
851 struct rcu_head rcu;
852};
853
854enum {
855 FTRACE_ENABLE_CALLS = (1 << 0),
856 FTRACE_DISABLE_CALLS = (1 << 1),
857 FTRACE_UPDATE_TRACE_FUNC = (1 << 2),
858 FTRACE_ENABLE_MCOUNT = (1 << 3),
859 FTRACE_DISABLE_MCOUNT = (1 << 4),
860 FTRACE_START_FUNC_RET = (1 << 5),
861 FTRACE_STOP_FUNC_RET = (1 << 6),
862};
863
864static int ftrace_filtered;
865
866static struct dyn_ftrace *ftrace_new_addrs;
867
868static DEFINE_MUTEX(ftrace_regex_lock);
869
870struct ftrace_page {
871 struct ftrace_page *next;
872 int index;
873 struct dyn_ftrace records[];
874};
875
876#define ENTRIES_PER_PAGE \
877 ((PAGE_SIZE - sizeof(struct ftrace_page)) / sizeof(struct dyn_ftrace))
878
879/* estimate from running different kernels */
880#define NR_TO_INIT 10000
881
882static struct ftrace_page *ftrace_pages_start;
883static struct ftrace_page *ftrace_pages;
884
885static struct dyn_ftrace *ftrace_free_records;
886
887/*
888 * This is a double for. Do not use 'break' to break out of the loop,
889 * you must use a goto.
890 */
891#define do_for_each_ftrace_rec(pg, rec) \
892 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
893 int _____i; \
894 for (_____i = 0; _____i < pg->index; _____i++) { \
895 rec = &pg->records[_____i];
896
897#define while_for_each_ftrace_rec() \
898 } \
899 }
900
e309b41d 901static void ftrace_free_rec(struct dyn_ftrace *rec)
37ad5084 902{
ee000b7f 903 rec->freelist = ftrace_free_records;
37ad5084
SR
904 ftrace_free_records = rec;
905 rec->flags |= FTRACE_FL_FREE;
906}
907
e309b41d 908static struct dyn_ftrace *ftrace_alloc_dyn_node(unsigned long ip)
3c1720f0 909{
37ad5084
SR
910 struct dyn_ftrace *rec;
911
912 /* First check for freed records */
913 if (ftrace_free_records) {
914 rec = ftrace_free_records;
915
37ad5084 916 if (unlikely(!(rec->flags & FTRACE_FL_FREE))) {
6912896e 917 FTRACE_WARN_ON_ONCE(1);
37ad5084
SR
918 ftrace_free_records = NULL;
919 return NULL;
920 }
921
ee000b7f 922 ftrace_free_records = rec->freelist;
37ad5084
SR
923 memset(rec, 0, sizeof(*rec));
924 return rec;
925 }
926
3c1720f0 927 if (ftrace_pages->index == ENTRIES_PER_PAGE) {
08f5ac90
SR
928 if (!ftrace_pages->next) {
929 /* allocate another page */
930 ftrace_pages->next =
931 (void *)get_zeroed_page(GFP_KERNEL);
932 if (!ftrace_pages->next)
933 return NULL;
934 }
3c1720f0
SR
935 ftrace_pages = ftrace_pages->next;
936 }
937
938 return &ftrace_pages->records[ftrace_pages->index++];
939}
940
08f5ac90 941static struct dyn_ftrace *
d61f82d0 942ftrace_record_ip(unsigned long ip)
3d083395 943{
08f5ac90 944 struct dyn_ftrace *rec;
3d083395 945
f3c7ac40 946 if (ftrace_disabled)
08f5ac90 947 return NULL;
3d083395 948
08f5ac90
SR
949 rec = ftrace_alloc_dyn_node(ip);
950 if (!rec)
951 return NULL;
3d083395 952
08f5ac90 953 rec->ip = ip;
ee000b7f 954 rec->newlist = ftrace_new_addrs;
e94142a6 955 ftrace_new_addrs = rec;
3d083395 956
08f5ac90 957 return rec;
3d083395
SR
958}
959
b17e8a37
SR
960static void print_ip_ins(const char *fmt, unsigned char *p)
961{
962 int i;
963
964 printk(KERN_CONT "%s", fmt);
965
966 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
967 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
968}
969
31e88909 970static void ftrace_bug(int failed, unsigned long ip)
b17e8a37
SR
971{
972 switch (failed) {
973 case -EFAULT:
974 FTRACE_WARN_ON_ONCE(1);
975 pr_info("ftrace faulted on modifying ");
976 print_ip_sym(ip);
977 break;
978 case -EINVAL:
979 FTRACE_WARN_ON_ONCE(1);
980 pr_info("ftrace failed to modify ");
981 print_ip_sym(ip);
b17e8a37 982 print_ip_ins(" actual: ", (unsigned char *)ip);
b17e8a37
SR
983 printk(KERN_CONT "\n");
984 break;
985 case -EPERM:
986 FTRACE_WARN_ON_ONCE(1);
987 pr_info("ftrace faulted on writing ");
988 print_ip_sym(ip);
989 break;
990 default:
991 FTRACE_WARN_ON_ONCE(1);
992 pr_info("ftrace faulted on unknown error ");
993 print_ip_sym(ip);
994 }
995}
996
3c1720f0 997
2cfa1978
MH
998/* Return 1 if the address range is reserved for ftrace */
999int ftrace_text_reserved(void *start, void *end)
1000{
1001 struct dyn_ftrace *rec;
1002 struct ftrace_page *pg;
1003
1004 do_for_each_ftrace_rec(pg, rec) {
1005 if (rec->ip <= (unsigned long)end &&
1006 rec->ip + MCOUNT_INSN_SIZE > (unsigned long)start)
1007 return 1;
1008 } while_for_each_ftrace_rec();
1009 return 0;
1010}
1011
1012
0eb96701 1013static int
31e88909 1014__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
5072c59f 1015{
e7d3737e 1016 unsigned long ftrace_addr;
64fbcd16 1017 unsigned long flag = 0UL;
e7d3737e 1018
f0001207 1019 ftrace_addr = (unsigned long)FTRACE_ADDR;
5072c59f 1020
982c350b 1021 /*
64fbcd16
XG
1022 * If this record is not to be traced or we want to disable it,
1023 * then disable it.
982c350b 1024 *
64fbcd16 1025 * If we want to enable it and filtering is off, then enable it.
982c350b 1026 *
64fbcd16
XG
1027 * If we want to enable it and filtering is on, enable it only if
1028 * it's filtered
982c350b 1029 */
64fbcd16
XG
1030 if (enable && !(rec->flags & FTRACE_FL_NOTRACE)) {
1031 if (!ftrace_filtered || (rec->flags & FTRACE_FL_FILTER))
1032 flag = FTRACE_FL_ENABLED;
1033 }
982c350b 1034
64fbcd16
XG
1035 /* If the state of this record hasn't changed, then do nothing */
1036 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
1037 return 0;
982c350b 1038
64fbcd16
XG
1039 if (flag) {
1040 rec->flags |= FTRACE_FL_ENABLED;
1041 return ftrace_make_call(rec, ftrace_addr);
5072c59f
SR
1042 }
1043
64fbcd16
XG
1044 rec->flags &= ~FTRACE_FL_ENABLED;
1045 return ftrace_make_nop(NULL, rec, ftrace_addr);
5072c59f
SR
1046}
1047
e309b41d 1048static void ftrace_replace_code(int enable)
3c1720f0 1049{
3c1720f0
SR
1050 struct dyn_ftrace *rec;
1051 struct ftrace_page *pg;
6a24a244 1052 int failed;
3c1720f0 1053
265c831c
SR
1054 do_for_each_ftrace_rec(pg, rec) {
1055 /*
fa9d13cf
Z
1056 * Skip over free records, records that have
1057 * failed and not converted.
265c831c
SR
1058 */
1059 if (rec->flags & FTRACE_FL_FREE ||
fa9d13cf 1060 rec->flags & FTRACE_FL_FAILED ||
03303549 1061 !(rec->flags & FTRACE_FL_CONVERTED))
265c831c
SR
1062 continue;
1063
265c831c 1064 failed = __ftrace_replace_code(rec, enable);
fa9d13cf 1065 if (failed) {
265c831c 1066 rec->flags |= FTRACE_FL_FAILED;
3279ba37
SR
1067 ftrace_bug(failed, rec->ip);
1068 /* Stop processing */
1069 return;
3c1720f0 1070 }
265c831c 1071 } while_for_each_ftrace_rec();
3c1720f0
SR
1072}
1073
492a7ea5 1074static int
31e88909 1075ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
3c1720f0
SR
1076{
1077 unsigned long ip;
593eb8a2 1078 int ret;
3c1720f0
SR
1079
1080 ip = rec->ip;
1081
25aac9dc 1082 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
593eb8a2 1083 if (ret) {
31e88909 1084 ftrace_bug(ret, ip);
3c1720f0 1085 rec->flags |= FTRACE_FL_FAILED;
492a7ea5 1086 return 0;
37ad5084 1087 }
492a7ea5 1088 return 1;
3c1720f0
SR
1089}
1090
000ab691
SR
1091/*
1092 * archs can override this function if they must do something
1093 * before the modifying code is performed.
1094 */
1095int __weak ftrace_arch_code_modify_prepare(void)
1096{
1097 return 0;
1098}
1099
1100/*
1101 * archs can override this function if they must do something
1102 * after the modifying code is performed.
1103 */
1104int __weak ftrace_arch_code_modify_post_process(void)
1105{
1106 return 0;
1107}
1108
e309b41d 1109static int __ftrace_modify_code(void *data)
3d083395 1110{
d61f82d0
SR
1111 int *command = data;
1112
a3583244 1113 if (*command & FTRACE_ENABLE_CALLS)
d61f82d0 1114 ftrace_replace_code(1);
a3583244 1115 else if (*command & FTRACE_DISABLE_CALLS)
d61f82d0
SR
1116 ftrace_replace_code(0);
1117
1118 if (*command & FTRACE_UPDATE_TRACE_FUNC)
1119 ftrace_update_ftrace_func(ftrace_trace_function);
1120
5a45cfe1
SR
1121 if (*command & FTRACE_START_FUNC_RET)
1122 ftrace_enable_ftrace_graph_caller();
1123 else if (*command & FTRACE_STOP_FUNC_RET)
1124 ftrace_disable_ftrace_graph_caller();
1125
d61f82d0 1126 return 0;
3d083395
SR
1127}
1128
e309b41d 1129static void ftrace_run_update_code(int command)
3d083395 1130{
000ab691
SR
1131 int ret;
1132
1133 ret = ftrace_arch_code_modify_prepare();
1134 FTRACE_WARN_ON(ret);
1135 if (ret)
1136 return;
1137
784e2d76 1138 stop_machine(__ftrace_modify_code, &command, NULL);
000ab691
SR
1139
1140 ret = ftrace_arch_code_modify_post_process();
1141 FTRACE_WARN_ON(ret);
3d083395
SR
1142}
1143
d61f82d0 1144static ftrace_func_t saved_ftrace_func;
60a7ecf4 1145static int ftrace_start_up;
df4fc315
SR
1146
1147static void ftrace_startup_enable(int command)
1148{
1149 if (saved_ftrace_func != ftrace_trace_function) {
1150 saved_ftrace_func = ftrace_trace_function;
1151 command |= FTRACE_UPDATE_TRACE_FUNC;
1152 }
1153
1154 if (!command || !ftrace_enabled)
1155 return;
1156
1157 ftrace_run_update_code(command);
1158}
d61f82d0 1159
5a45cfe1 1160static void ftrace_startup(int command)
3d083395 1161{
4eebcc81
SR
1162 if (unlikely(ftrace_disabled))
1163 return;
1164
60a7ecf4 1165 ftrace_start_up++;
982c350b 1166 command |= FTRACE_ENABLE_CALLS;
d61f82d0 1167
df4fc315 1168 ftrace_startup_enable(command);
3d083395
SR
1169}
1170
5a45cfe1 1171static void ftrace_shutdown(int command)
3d083395 1172{
4eebcc81
SR
1173 if (unlikely(ftrace_disabled))
1174 return;
1175
60a7ecf4 1176 ftrace_start_up--;
9ea1a153
FW
1177 /*
1178 * Just warn in case of unbalance, no need to kill ftrace, it's not
1179 * critical but the ftrace_call callers may be never nopped again after
1180 * further ftrace uses.
1181 */
1182 WARN_ON_ONCE(ftrace_start_up < 0);
1183
60a7ecf4 1184 if (!ftrace_start_up)
d61f82d0 1185 command |= FTRACE_DISABLE_CALLS;
3d083395 1186
d61f82d0
SR
1187 if (saved_ftrace_func != ftrace_trace_function) {
1188 saved_ftrace_func = ftrace_trace_function;
1189 command |= FTRACE_UPDATE_TRACE_FUNC;
1190 }
3d083395 1191
d61f82d0 1192 if (!command || !ftrace_enabled)
e6ea44e9 1193 return;
d61f82d0
SR
1194
1195 ftrace_run_update_code(command);
3d083395
SR
1196}
1197
e309b41d 1198static void ftrace_startup_sysctl(void)
b0fc494f 1199{
d61f82d0
SR
1200 int command = FTRACE_ENABLE_MCOUNT;
1201
4eebcc81
SR
1202 if (unlikely(ftrace_disabled))
1203 return;
1204
d61f82d0
SR
1205 /* Force update next time */
1206 saved_ftrace_func = NULL;
60a7ecf4
SR
1207 /* ftrace_start_up is true if we want ftrace running */
1208 if (ftrace_start_up)
d61f82d0
SR
1209 command |= FTRACE_ENABLE_CALLS;
1210
1211 ftrace_run_update_code(command);
b0fc494f
SR
1212}
1213
e309b41d 1214static void ftrace_shutdown_sysctl(void)
b0fc494f 1215{
d61f82d0
SR
1216 int command = FTRACE_DISABLE_MCOUNT;
1217
4eebcc81
SR
1218 if (unlikely(ftrace_disabled))
1219 return;
1220
60a7ecf4
SR
1221 /* ftrace_start_up is true if ftrace is running */
1222 if (ftrace_start_up)
d61f82d0
SR
1223 command |= FTRACE_DISABLE_CALLS;
1224
1225 ftrace_run_update_code(command);
b0fc494f
SR
1226}
1227
3d083395
SR
1228static cycle_t ftrace_update_time;
1229static unsigned long ftrace_update_cnt;
1230unsigned long ftrace_update_tot_cnt;
1231
31e88909 1232static int ftrace_update_code(struct module *mod)
3d083395 1233{
e94142a6 1234 struct dyn_ftrace *p;
f22f9a89 1235 cycle_t start, stop;
3d083395 1236
750ed1a4 1237 start = ftrace_now(raw_smp_processor_id());
3d083395
SR
1238 ftrace_update_cnt = 0;
1239
e94142a6 1240 while (ftrace_new_addrs) {
3d083395 1241
08f5ac90
SR
1242 /* If something went wrong, bail without enabling anything */
1243 if (unlikely(ftrace_disabled))
1244 return -1;
f22f9a89 1245
e94142a6 1246 p = ftrace_new_addrs;
ee000b7f 1247 ftrace_new_addrs = p->newlist;
e94142a6 1248 p->flags = 0L;
f22f9a89 1249
5cb084bb
JO
1250 /*
1251 * Do the initial record convertion from mcount jump
1252 * to the NOP instructions.
1253 */
1254 if (!ftrace_code_disable(mod, p)) {
08f5ac90 1255 ftrace_free_rec(p);
5cb084bb
JO
1256 continue;
1257 }
1258
1259 p->flags |= FTRACE_FL_CONVERTED;
1260 ftrace_update_cnt++;
1261
1262 /*
1263 * If the tracing is enabled, go ahead and enable the record.
1264 *
1265 * The reason not to enable the record immediatelly is the
1266 * inherent check of ftrace_make_nop/ftrace_make_call for
1267 * correct previous instructions. Making first the NOP
1268 * conversion puts the module to the correct state, thus
1269 * passing the ftrace_make_call check.
1270 */
1271 if (ftrace_start_up) {
1272 int failed = __ftrace_replace_code(p, 1);
1273 if (failed) {
1274 ftrace_bug(failed, p->ip);
1275 ftrace_free_rec(p);
1276 }
1277 }
3d083395
SR
1278 }
1279
750ed1a4 1280 stop = ftrace_now(raw_smp_processor_id());
3d083395
SR
1281 ftrace_update_time = stop - start;
1282 ftrace_update_tot_cnt += ftrace_update_cnt;
1283
16444a8a
ACM
1284 return 0;
1285}
1286
68bf21aa 1287static int __init ftrace_dyn_table_alloc(unsigned long num_to_init)
3c1720f0
SR
1288{
1289 struct ftrace_page *pg;
1290 int cnt;
1291 int i;
3c1720f0
SR
1292
1293 /* allocate a few pages */
1294 ftrace_pages_start = (void *)get_zeroed_page(GFP_KERNEL);
1295 if (!ftrace_pages_start)
1296 return -1;
1297
1298 /*
1299 * Allocate a few more pages.
1300 *
1301 * TODO: have some parser search vmlinux before
1302 * final linking to find all calls to ftrace.
1303 * Then we can:
1304 * a) know how many pages to allocate.
1305 * and/or
1306 * b) set up the table then.
1307 *
1308 * The dynamic code is still necessary for
1309 * modules.
1310 */
1311
1312 pg = ftrace_pages = ftrace_pages_start;
1313
68bf21aa 1314 cnt = num_to_init / ENTRIES_PER_PAGE;
08f5ac90 1315 pr_info("ftrace: allocating %ld entries in %d pages\n",
5821e1b7 1316 num_to_init, cnt + 1);
3c1720f0
SR
1317
1318 for (i = 0; i < cnt; i++) {
1319 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
1320
1321 /* If we fail, we'll try later anyway */
1322 if (!pg->next)
1323 break;
1324
1325 pg = pg->next;
1326 }
1327
1328 return 0;
1329}
1330
5072c59f
SR
1331enum {
1332 FTRACE_ITER_FILTER = (1 << 0),
689fd8b6 1333 FTRACE_ITER_NOTRACE = (1 << 1),
1334 FTRACE_ITER_FAILURES = (1 << 2),
1335 FTRACE_ITER_PRINTALL = (1 << 3),
1336 FTRACE_ITER_HASH = (1 << 4),
5072c59f
SR
1337};
1338
1339#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
1340
1341struct ftrace_iterator {
5072c59f 1342 struct ftrace_page *pg;
8fc0c701 1343 int hidx;
431aa3fb 1344 int idx;
5072c59f 1345 unsigned flags;
689fd8b6 1346 struct trace_parser parser;
5072c59f
SR
1347};
1348
8fc0c701
SR
1349static void *
1350t_hash_next(struct seq_file *m, void *v, loff_t *pos)
1351{
1352 struct ftrace_iterator *iter = m->private;
1353 struct hlist_node *hnd = v;
1354 struct hlist_head *hhd;
1355
1356 WARN_ON(!(iter->flags & FTRACE_ITER_HASH));
1357
1358 (*pos)++;
1359
1360 retry:
1361 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
1362 return NULL;
1363
1364 hhd = &ftrace_func_hash[iter->hidx];
1365
1366 if (hlist_empty(hhd)) {
1367 iter->hidx++;
1368 hnd = NULL;
1369 goto retry;
1370 }
1371
1372 if (!hnd)
1373 hnd = hhd->first;
1374 else {
1375 hnd = hnd->next;
1376 if (!hnd) {
1377 iter->hidx++;
1378 goto retry;
1379 }
1380 }
1381
1382 return hnd;
1383}
1384
1385static void *t_hash_start(struct seq_file *m, loff_t *pos)
1386{
1387 struct ftrace_iterator *iter = m->private;
1388 void *p = NULL;
d82d6244
LZ
1389 loff_t l;
1390
1391 if (!(iter->flags & FTRACE_ITER_HASH))
1392 *pos = 0;
8fc0c701
SR
1393
1394 iter->flags |= FTRACE_ITER_HASH;
1395
d82d6244
LZ
1396 iter->hidx = 0;
1397 for (l = 0; l <= *pos; ) {
1398 p = t_hash_next(m, p, &l);
1399 if (!p)
1400 break;
1401 }
1402 return p;
8fc0c701
SR
1403}
1404
1405static int t_hash_show(struct seq_file *m, void *v)
1406{
b6887d79 1407 struct ftrace_func_probe *rec;
8fc0c701 1408 struct hlist_node *hnd = v;
8fc0c701 1409
b6887d79 1410 rec = hlist_entry(hnd, struct ftrace_func_probe, node);
8fc0c701 1411
809dcf29
SR
1412 if (rec->ops->print)
1413 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
1414
b375a11a 1415 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
8fc0c701
SR
1416
1417 if (rec->data)
1418 seq_printf(m, ":%p", rec->data);
1419 seq_putc(m, '\n');
1420
1421 return 0;
1422}
1423
e309b41d 1424static void *
5072c59f
SR
1425t_next(struct seq_file *m, void *v, loff_t *pos)
1426{
1427 struct ftrace_iterator *iter = m->private;
1428 struct dyn_ftrace *rec = NULL;
1429
8fc0c701
SR
1430 if (iter->flags & FTRACE_ITER_HASH)
1431 return t_hash_next(m, v, pos);
1432
5072c59f
SR
1433 (*pos)++;
1434
0c75a3ed
SR
1435 if (iter->flags & FTRACE_ITER_PRINTALL)
1436 return NULL;
1437
5072c59f
SR
1438 retry:
1439 if (iter->idx >= iter->pg->index) {
1440 if (iter->pg->next) {
1441 iter->pg = iter->pg->next;
1442 iter->idx = 0;
1443 goto retry;
1444 }
1445 } else {
1446 rec = &iter->pg->records[iter->idx++];
a9fdda33
SR
1447 if ((rec->flags & FTRACE_FL_FREE) ||
1448
1449 (!(iter->flags & FTRACE_ITER_FAILURES) &&
eb9a7bf0
AS
1450 (rec->flags & FTRACE_FL_FAILED)) ||
1451
1452 ((iter->flags & FTRACE_ITER_FAILURES) &&
a9fdda33 1453 !(rec->flags & FTRACE_FL_FAILED)) ||
eb9a7bf0 1454
0183fb1c
SR
1455 ((iter->flags & FTRACE_ITER_FILTER) &&
1456 !(rec->flags & FTRACE_FL_FILTER)) ||
1457
41c52c0d
SR
1458 ((iter->flags & FTRACE_ITER_NOTRACE) &&
1459 !(rec->flags & FTRACE_FL_NOTRACE))) {
5072c59f
SR
1460 rec = NULL;
1461 goto retry;
1462 }
1463 }
1464
5072c59f
SR
1465 return rec;
1466}
1467
1468static void *t_start(struct seq_file *m, loff_t *pos)
1469{
1470 struct ftrace_iterator *iter = m->private;
1471 void *p = NULL;
694ce0a5 1472 loff_t l;
5072c59f 1473
8fc0c701 1474 mutex_lock(&ftrace_lock);
0c75a3ed
SR
1475 /*
1476 * For set_ftrace_filter reading, if we have the filter
1477 * off, we can short cut and just print out that all
1478 * functions are enabled.
1479 */
1480 if (iter->flags & FTRACE_ITER_FILTER && !ftrace_filtered) {
1481 if (*pos > 0)
8fc0c701 1482 return t_hash_start(m, pos);
0c75a3ed 1483 iter->flags |= FTRACE_ITER_PRINTALL;
0c75a3ed
SR
1484 return iter;
1485 }
1486
8fc0c701
SR
1487 if (iter->flags & FTRACE_ITER_HASH)
1488 return t_hash_start(m, pos);
1489
694ce0a5
LZ
1490 iter->pg = ftrace_pages_start;
1491 iter->idx = 0;
1492 for (l = 0; l <= *pos; ) {
1493 p = t_next(m, p, &l);
1494 if (!p)
1495 break;
50cdaf08 1496 }
5821e1b7 1497
694ce0a5 1498 if (!p && iter->flags & FTRACE_ITER_FILTER)
8fc0c701
SR
1499 return t_hash_start(m, pos);
1500
5072c59f
SR
1501 return p;
1502}
1503
1504static void t_stop(struct seq_file *m, void *p)
1505{
8fc0c701 1506 mutex_unlock(&ftrace_lock);
5072c59f
SR
1507}
1508
1509static int t_show(struct seq_file *m, void *v)
1510{
0c75a3ed 1511 struct ftrace_iterator *iter = m->private;
5072c59f 1512 struct dyn_ftrace *rec = v;
5072c59f 1513
8fc0c701
SR
1514 if (iter->flags & FTRACE_ITER_HASH)
1515 return t_hash_show(m, v);
1516
0c75a3ed
SR
1517 if (iter->flags & FTRACE_ITER_PRINTALL) {
1518 seq_printf(m, "#### all functions enabled ####\n");
1519 return 0;
1520 }
1521
5072c59f
SR
1522 if (!rec)
1523 return 0;
1524
b375a11a 1525 seq_printf(m, "%ps\n", (void *)rec->ip);
5072c59f
SR
1526
1527 return 0;
1528}
1529
88e9d34c 1530static const struct seq_operations show_ftrace_seq_ops = {
5072c59f
SR
1531 .start = t_start,
1532 .next = t_next,
1533 .stop = t_stop,
1534 .show = t_show,
1535};
1536
e309b41d 1537static int
5072c59f
SR
1538ftrace_avail_open(struct inode *inode, struct file *file)
1539{
1540 struct ftrace_iterator *iter;
1541 int ret;
1542
4eebcc81
SR
1543 if (unlikely(ftrace_disabled))
1544 return -ENODEV;
1545
5072c59f
SR
1546 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1547 if (!iter)
1548 return -ENOMEM;
1549
1550 iter->pg = ftrace_pages_start;
5072c59f
SR
1551
1552 ret = seq_open(file, &show_ftrace_seq_ops);
1553 if (!ret) {
1554 struct seq_file *m = file->private_data;
4bf39a94 1555
5072c59f 1556 m->private = iter;
4bf39a94 1557 } else {
5072c59f 1558 kfree(iter);
4bf39a94 1559 }
5072c59f
SR
1560
1561 return ret;
1562}
1563
eb9a7bf0
AS
1564static int
1565ftrace_failures_open(struct inode *inode, struct file *file)
1566{
1567 int ret;
1568 struct seq_file *m;
1569 struct ftrace_iterator *iter;
1570
1571 ret = ftrace_avail_open(inode, file);
1572 if (!ret) {
1573 m = (struct seq_file *)file->private_data;
1574 iter = (struct ftrace_iterator *)m->private;
1575 iter->flags = FTRACE_ITER_FAILURES;
1576 }
1577
1578 return ret;
1579}
1580
1581
41c52c0d 1582static void ftrace_filter_reset(int enable)
5072c59f
SR
1583{
1584 struct ftrace_page *pg;
1585 struct dyn_ftrace *rec;
41c52c0d 1586 unsigned long type = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
5072c59f 1587
52baf119 1588 mutex_lock(&ftrace_lock);
41c52c0d
SR
1589 if (enable)
1590 ftrace_filtered = 0;
265c831c
SR
1591 do_for_each_ftrace_rec(pg, rec) {
1592 if (rec->flags & FTRACE_FL_FAILED)
1593 continue;
1594 rec->flags &= ~type;
1595 } while_for_each_ftrace_rec();
52baf119 1596 mutex_unlock(&ftrace_lock);
5072c59f
SR
1597}
1598
e309b41d 1599static int
41c52c0d 1600ftrace_regex_open(struct inode *inode, struct file *file, int enable)
5072c59f
SR
1601{
1602 struct ftrace_iterator *iter;
1603 int ret = 0;
1604
4eebcc81
SR
1605 if (unlikely(ftrace_disabled))
1606 return -ENODEV;
1607
5072c59f
SR
1608 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1609 if (!iter)
1610 return -ENOMEM;
1611
689fd8b6 1612 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
1613 kfree(iter);
1614 return -ENOMEM;
1615 }
1616
41c52c0d 1617 mutex_lock(&ftrace_regex_lock);
5072c59f 1618 if ((file->f_mode & FMODE_WRITE) &&
8650ae32 1619 (file->f_flags & O_TRUNC))
41c52c0d 1620 ftrace_filter_reset(enable);
5072c59f
SR
1621
1622 if (file->f_mode & FMODE_READ) {
1623 iter->pg = ftrace_pages_start;
41c52c0d
SR
1624 iter->flags = enable ? FTRACE_ITER_FILTER :
1625 FTRACE_ITER_NOTRACE;
5072c59f
SR
1626
1627 ret = seq_open(file, &show_ftrace_seq_ops);
1628 if (!ret) {
1629 struct seq_file *m = file->private_data;
1630 m->private = iter;
79fe249c
LZ
1631 } else {
1632 trace_parser_put(&iter->parser);
5072c59f 1633 kfree(iter);
79fe249c 1634 }
5072c59f
SR
1635 } else
1636 file->private_data = iter;
41c52c0d 1637 mutex_unlock(&ftrace_regex_lock);
5072c59f
SR
1638
1639 return ret;
1640}
1641
41c52c0d
SR
1642static int
1643ftrace_filter_open(struct inode *inode, struct file *file)
1644{
1645 return ftrace_regex_open(inode, file, 1);
1646}
1647
1648static int
1649ftrace_notrace_open(struct inode *inode, struct file *file)
1650{
1651 return ftrace_regex_open(inode, file, 0);
1652}
1653
e309b41d 1654static loff_t
41c52c0d 1655ftrace_regex_lseek(struct file *file, loff_t offset, int origin)
5072c59f
SR
1656{
1657 loff_t ret;
1658
1659 if (file->f_mode & FMODE_READ)
1660 ret = seq_lseek(file, offset, origin);
1661 else
1662 file->f_pos = ret = 1;
1663
1664 return ret;
1665}
1666
64e7c440 1667static int ftrace_match(char *str, char *regex, int len, int type)
9f4801e3 1668{
9f4801e3 1669 int matched = 0;
751e9983 1670 int slen;
9f4801e3 1671
9f4801e3
SR
1672 switch (type) {
1673 case MATCH_FULL:
1674 if (strcmp(str, regex) == 0)
1675 matched = 1;
1676 break;
1677 case MATCH_FRONT_ONLY:
1678 if (strncmp(str, regex, len) == 0)
1679 matched = 1;
1680 break;
1681 case MATCH_MIDDLE_ONLY:
1682 if (strstr(str, regex))
1683 matched = 1;
1684 break;
1685 case MATCH_END_ONLY:
751e9983
LZ
1686 slen = strlen(str);
1687 if (slen >= len && memcmp(str + slen - len, regex, len) == 0)
9f4801e3
SR
1688 matched = 1;
1689 break;
1690 }
1691
1692 return matched;
1693}
1694
64e7c440
SR
1695static int
1696ftrace_match_record(struct dyn_ftrace *rec, char *regex, int len, int type)
1697{
1698 char str[KSYM_SYMBOL_LEN];
1699
1700 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
1701 return ftrace_match(str, regex, len, type);
1702}
1703
311d16da 1704static int ftrace_match_records(char *buff, int len, int enable)
9f4801e3 1705{
6a24a244 1706 unsigned int search_len;
9f4801e3
SR
1707 struct ftrace_page *pg;
1708 struct dyn_ftrace *rec;
6a24a244
SR
1709 unsigned long flag;
1710 char *search;
9f4801e3 1711 int type;
9f4801e3 1712 int not;
311d16da 1713 int found = 0;
9f4801e3 1714
6a24a244 1715 flag = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
3f6fe06d 1716 type = filter_parse_regex(buff, len, &search, &not);
9f4801e3
SR
1717
1718 search_len = strlen(search);
1719
52baf119 1720 mutex_lock(&ftrace_lock);
265c831c 1721 do_for_each_ftrace_rec(pg, rec) {
265c831c
SR
1722
1723 if (rec->flags & FTRACE_FL_FAILED)
1724 continue;
9f4801e3
SR
1725
1726 if (ftrace_match_record(rec, search, search_len, type)) {
265c831c
SR
1727 if (not)
1728 rec->flags &= ~flag;
1729 else
1730 rec->flags |= flag;
311d16da 1731 found = 1;
265c831c 1732 }
e68746a2
SR
1733 /*
1734 * Only enable filtering if we have a function that
1735 * is filtered on.
1736 */
1737 if (enable && (rec->flags & FTRACE_FL_FILTER))
1738 ftrace_filtered = 1;
265c831c 1739 } while_for_each_ftrace_rec();
52baf119 1740 mutex_unlock(&ftrace_lock);
311d16da
LZ
1741
1742 return found;
5072c59f
SR
1743}
1744
64e7c440
SR
1745static int
1746ftrace_match_module_record(struct dyn_ftrace *rec, char *mod,
1747 char *regex, int len, int type)
1748{
1749 char str[KSYM_SYMBOL_LEN];
1750 char *modname;
1751
1752 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
1753
1754 if (!modname || strcmp(modname, mod))
1755 return 0;
1756
1757 /* blank search means to match all funcs in the mod */
1758 if (len)
1759 return ftrace_match(str, regex, len, type);
1760 else
1761 return 1;
1762}
1763
311d16da 1764static int ftrace_match_module_records(char *buff, char *mod, int enable)
64e7c440 1765{
6a24a244 1766 unsigned search_len = 0;
64e7c440
SR
1767 struct ftrace_page *pg;
1768 struct dyn_ftrace *rec;
1769 int type = MATCH_FULL;
6a24a244
SR
1770 char *search = buff;
1771 unsigned long flag;
64e7c440 1772 int not = 0;
311d16da 1773 int found = 0;
64e7c440 1774
6a24a244
SR
1775 flag = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
1776
64e7c440
SR
1777 /* blank or '*' mean the same */
1778 if (strcmp(buff, "*") == 0)
1779 buff[0] = 0;
1780
1781 /* handle the case of 'dont filter this module' */
1782 if (strcmp(buff, "!") == 0 || strcmp(buff, "!*") == 0) {
1783 buff[0] = 0;
1784 not = 1;
1785 }
1786
1787 if (strlen(buff)) {
3f6fe06d 1788 type = filter_parse_regex(buff, strlen(buff), &search, &not);
64e7c440
SR
1789 search_len = strlen(search);
1790 }
1791
52baf119 1792 mutex_lock(&ftrace_lock);
64e7c440
SR
1793 do_for_each_ftrace_rec(pg, rec) {
1794
1795 if (rec->flags & FTRACE_FL_FAILED)
1796 continue;
1797
1798 if (ftrace_match_module_record(rec, mod,
1799 search, search_len, type)) {
1800 if (not)
1801 rec->flags &= ~flag;
1802 else
1803 rec->flags |= flag;
311d16da 1804 found = 1;
64e7c440 1805 }
e68746a2
SR
1806 if (enable && (rec->flags & FTRACE_FL_FILTER))
1807 ftrace_filtered = 1;
64e7c440
SR
1808
1809 } while_for_each_ftrace_rec();
52baf119 1810 mutex_unlock(&ftrace_lock);
311d16da
LZ
1811
1812 return found;
64e7c440
SR
1813}
1814
f6180773
SR
1815/*
1816 * We register the module command as a template to show others how
1817 * to register the a command as well.
1818 */
1819
1820static int
1821ftrace_mod_callback(char *func, char *cmd, char *param, int enable)
1822{
1823 char *mod;
1824
1825 /*
1826 * cmd == 'mod' because we only registered this func
1827 * for the 'mod' ftrace_func_command.
1828 * But if you register one func with multiple commands,
1829 * you can tell which command was used by the cmd
1830 * parameter.
1831 */
1832
1833 /* we must have a module name */
1834 if (!param)
1835 return -EINVAL;
1836
1837 mod = strsep(&param, ":");
1838 if (!strlen(mod))
1839 return -EINVAL;
1840
311d16da
LZ
1841 if (ftrace_match_module_records(func, mod, enable))
1842 return 0;
1843 return -EINVAL;
f6180773
SR
1844}
1845
1846static struct ftrace_func_command ftrace_mod_cmd = {
1847 .name = "mod",
1848 .func = ftrace_mod_callback,
1849};
1850
1851static int __init ftrace_mod_cmd_init(void)
1852{
1853 return register_ftrace_command(&ftrace_mod_cmd);
1854}
1855device_initcall(ftrace_mod_cmd_init);
1856
59df055f 1857static void
b6887d79 1858function_trace_probe_call(unsigned long ip, unsigned long parent_ip)
59df055f 1859{
b6887d79 1860 struct ftrace_func_probe *entry;
59df055f
SR
1861 struct hlist_head *hhd;
1862 struct hlist_node *n;
1863 unsigned long key;
1864 int resched;
1865
1866 key = hash_long(ip, FTRACE_HASH_BITS);
1867
1868 hhd = &ftrace_func_hash[key];
1869
1870 if (hlist_empty(hhd))
1871 return;
1872
1873 /*
1874 * Disable preemption for these calls to prevent a RCU grace
1875 * period. This syncs the hash iteration and freeing of items
1876 * on the hash. rcu_read_lock is too dangerous here.
1877 */
1878 resched = ftrace_preempt_disable();
1879 hlist_for_each_entry_rcu(entry, n, hhd, node) {
1880 if (entry->ip == ip)
1881 entry->ops->func(ip, parent_ip, &entry->data);
1882 }
1883 ftrace_preempt_enable(resched);
1884}
1885
b6887d79 1886static struct ftrace_ops trace_probe_ops __read_mostly =
59df055f 1887{
fb9fb015 1888 .func = function_trace_probe_call,
59df055f
SR
1889};
1890
b6887d79 1891static int ftrace_probe_registered;
59df055f 1892
b6887d79 1893static void __enable_ftrace_function_probe(void)
59df055f
SR
1894{
1895 int i;
1896
b6887d79 1897 if (ftrace_probe_registered)
59df055f
SR
1898 return;
1899
1900 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
1901 struct hlist_head *hhd = &ftrace_func_hash[i];
1902 if (hhd->first)
1903 break;
1904 }
1905 /* Nothing registered? */
1906 if (i == FTRACE_FUNC_HASHSIZE)
1907 return;
1908
b6887d79 1909 __register_ftrace_function(&trace_probe_ops);
59df055f 1910 ftrace_startup(0);
b6887d79 1911 ftrace_probe_registered = 1;
59df055f
SR
1912}
1913
b6887d79 1914static void __disable_ftrace_function_probe(void)
59df055f
SR
1915{
1916 int i;
1917
b6887d79 1918 if (!ftrace_probe_registered)
59df055f
SR
1919 return;
1920
1921 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
1922 struct hlist_head *hhd = &ftrace_func_hash[i];
1923 if (hhd->first)
1924 return;
1925 }
1926
1927 /* no more funcs left */
b6887d79 1928 __unregister_ftrace_function(&trace_probe_ops);
59df055f 1929 ftrace_shutdown(0);
b6887d79 1930 ftrace_probe_registered = 0;
59df055f
SR
1931}
1932
1933
1934static void ftrace_free_entry_rcu(struct rcu_head *rhp)
1935{
b6887d79
SR
1936 struct ftrace_func_probe *entry =
1937 container_of(rhp, struct ftrace_func_probe, rcu);
59df055f
SR
1938
1939 if (entry->ops->free)
1940 entry->ops->free(&entry->data);
1941 kfree(entry);
1942}
1943
1944
1945int
b6887d79 1946register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
59df055f
SR
1947 void *data)
1948{
b6887d79 1949 struct ftrace_func_probe *entry;
59df055f
SR
1950 struct ftrace_page *pg;
1951 struct dyn_ftrace *rec;
59df055f 1952 int type, len, not;
6a24a244 1953 unsigned long key;
59df055f
SR
1954 int count = 0;
1955 char *search;
1956
3f6fe06d 1957 type = filter_parse_regex(glob, strlen(glob), &search, &not);
59df055f
SR
1958 len = strlen(search);
1959
b6887d79 1960 /* we do not support '!' for function probes */
59df055f
SR
1961 if (WARN_ON(not))
1962 return -EINVAL;
1963
1964 mutex_lock(&ftrace_lock);
1965 do_for_each_ftrace_rec(pg, rec) {
1966
1967 if (rec->flags & FTRACE_FL_FAILED)
1968 continue;
1969
1970 if (!ftrace_match_record(rec, search, len, type))
1971 continue;
1972
1973 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1974 if (!entry) {
b6887d79 1975 /* If we did not process any, then return error */
59df055f
SR
1976 if (!count)
1977 count = -ENOMEM;
1978 goto out_unlock;
1979 }
1980
1981 count++;
1982
1983 entry->data = data;
1984
1985 /*
1986 * The caller might want to do something special
1987 * for each function we find. We call the callback
1988 * to give the caller an opportunity to do so.
1989 */
1990 if (ops->callback) {
1991 if (ops->callback(rec->ip, &entry->data) < 0) {
1992 /* caller does not like this func */
1993 kfree(entry);
1994 continue;
1995 }
1996 }
1997
1998 entry->ops = ops;
1999 entry->ip = rec->ip;
2000
2001 key = hash_long(entry->ip, FTRACE_HASH_BITS);
2002 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
2003
2004 } while_for_each_ftrace_rec();
b6887d79 2005 __enable_ftrace_function_probe();
59df055f
SR
2006
2007 out_unlock:
2008 mutex_unlock(&ftrace_lock);
2009
2010 return count;
2011}
2012
2013enum {
b6887d79
SR
2014 PROBE_TEST_FUNC = 1,
2015 PROBE_TEST_DATA = 2
59df055f
SR
2016};
2017
2018static void
b6887d79 2019__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
59df055f
SR
2020 void *data, int flags)
2021{
b6887d79 2022 struct ftrace_func_probe *entry;
59df055f
SR
2023 struct hlist_node *n, *tmp;
2024 char str[KSYM_SYMBOL_LEN];
2025 int type = MATCH_FULL;
2026 int i, len = 0;
2027 char *search;
2028
b36461da 2029 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
59df055f 2030 glob = NULL;
b36461da 2031 else if (glob) {
59df055f
SR
2032 int not;
2033
3f6fe06d 2034 type = filter_parse_regex(glob, strlen(glob), &search, &not);
59df055f
SR
2035 len = strlen(search);
2036
b6887d79 2037 /* we do not support '!' for function probes */
59df055f
SR
2038 if (WARN_ON(not))
2039 return;
2040 }
2041
2042 mutex_lock(&ftrace_lock);
2043 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2044 struct hlist_head *hhd = &ftrace_func_hash[i];
2045
2046 hlist_for_each_entry_safe(entry, n, tmp, hhd, node) {
2047
2048 /* break up if statements for readability */
b6887d79 2049 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
59df055f
SR
2050 continue;
2051
b6887d79 2052 if ((flags & PROBE_TEST_DATA) && entry->data != data)
59df055f
SR
2053 continue;
2054
2055 /* do this last, since it is the most expensive */
2056 if (glob) {
2057 kallsyms_lookup(entry->ip, NULL, NULL,
2058 NULL, str);
2059 if (!ftrace_match(str, glob, len, type))
2060 continue;
2061 }
2062
2063 hlist_del(&entry->node);
2064 call_rcu(&entry->rcu, ftrace_free_entry_rcu);
2065 }
2066 }
b6887d79 2067 __disable_ftrace_function_probe();
59df055f
SR
2068 mutex_unlock(&ftrace_lock);
2069}
2070
2071void
b6887d79 2072unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
59df055f
SR
2073 void *data)
2074{
b6887d79
SR
2075 __unregister_ftrace_function_probe(glob, ops, data,
2076 PROBE_TEST_FUNC | PROBE_TEST_DATA);
59df055f
SR
2077}
2078
2079void
b6887d79 2080unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
59df055f 2081{
b6887d79 2082 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
59df055f
SR
2083}
2084
b6887d79 2085void unregister_ftrace_function_probe_all(char *glob)
59df055f 2086{
b6887d79 2087 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
59df055f
SR
2088}
2089
f6180773
SR
2090static LIST_HEAD(ftrace_commands);
2091static DEFINE_MUTEX(ftrace_cmd_mutex);
2092
2093int register_ftrace_command(struct ftrace_func_command *cmd)
2094{
2095 struct ftrace_func_command *p;
2096 int ret = 0;
2097
2098 mutex_lock(&ftrace_cmd_mutex);
2099 list_for_each_entry(p, &ftrace_commands, list) {
2100 if (strcmp(cmd->name, p->name) == 0) {
2101 ret = -EBUSY;
2102 goto out_unlock;
2103 }
2104 }
2105 list_add(&cmd->list, &ftrace_commands);
2106 out_unlock:
2107 mutex_unlock(&ftrace_cmd_mutex);
2108
2109 return ret;
2110}
2111
2112int unregister_ftrace_command(struct ftrace_func_command *cmd)
2113{
2114 struct ftrace_func_command *p, *n;
2115 int ret = -ENODEV;
2116
2117 mutex_lock(&ftrace_cmd_mutex);
2118 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
2119 if (strcmp(cmd->name, p->name) == 0) {
2120 ret = 0;
2121 list_del_init(&p->list);
2122 goto out_unlock;
2123 }
2124 }
2125 out_unlock:
2126 mutex_unlock(&ftrace_cmd_mutex);
2127
2128 return ret;
2129}
2130
64e7c440
SR
2131static int ftrace_process_regex(char *buff, int len, int enable)
2132{
f6180773 2133 char *func, *command, *next = buff;
6a24a244 2134 struct ftrace_func_command *p;
f6180773 2135 int ret = -EINVAL;
64e7c440
SR
2136
2137 func = strsep(&next, ":");
2138
2139 if (!next) {
311d16da
LZ
2140 if (ftrace_match_records(func, len, enable))
2141 return 0;
2142 return ret;
64e7c440
SR
2143 }
2144
f6180773 2145 /* command found */
64e7c440
SR
2146
2147 command = strsep(&next, ":");
2148
f6180773
SR
2149 mutex_lock(&ftrace_cmd_mutex);
2150 list_for_each_entry(p, &ftrace_commands, list) {
2151 if (strcmp(p->name, command) == 0) {
2152 ret = p->func(func, command, next, enable);
2153 goto out_unlock;
2154 }
64e7c440 2155 }
f6180773
SR
2156 out_unlock:
2157 mutex_unlock(&ftrace_cmd_mutex);
64e7c440 2158
f6180773 2159 return ret;
64e7c440
SR
2160}
2161
e309b41d 2162static ssize_t
41c52c0d
SR
2163ftrace_regex_write(struct file *file, const char __user *ubuf,
2164 size_t cnt, loff_t *ppos, int enable)
5072c59f
SR
2165{
2166 struct ftrace_iterator *iter;
689fd8b6 2167 struct trace_parser *parser;
2168 ssize_t ret, read;
5072c59f 2169
4ba7978e 2170 if (!cnt)
5072c59f
SR
2171 return 0;
2172
41c52c0d 2173 mutex_lock(&ftrace_regex_lock);
5072c59f
SR
2174
2175 if (file->f_mode & FMODE_READ) {
2176 struct seq_file *m = file->private_data;
2177 iter = m->private;
2178 } else
2179 iter = file->private_data;
2180
689fd8b6 2181 parser = &iter->parser;
2182 read = trace_get_user(parser, ubuf, cnt, ppos);
5072c59f 2183
4ba7978e 2184 if (read >= 0 && trace_parser_loaded(parser) &&
689fd8b6 2185 !trace_parser_cont(parser)) {
2186 ret = ftrace_process_regex(parser->buffer,
2187 parser->idx, enable);
313254a9 2188 trace_parser_clear(parser);
5072c59f 2189 if (ret)
ed146b25 2190 goto out_unlock;
eda1e328 2191 }
5072c59f 2192
5072c59f 2193 ret = read;
ed146b25 2194out_unlock:
689fd8b6 2195 mutex_unlock(&ftrace_regex_lock);
ed146b25 2196
5072c59f
SR
2197 return ret;
2198}
2199
41c52c0d
SR
2200static ssize_t
2201ftrace_filter_write(struct file *file, const char __user *ubuf,
2202 size_t cnt, loff_t *ppos)
2203{
2204 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
2205}
2206
2207static ssize_t
2208ftrace_notrace_write(struct file *file, const char __user *ubuf,
2209 size_t cnt, loff_t *ppos)
2210{
2211 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
2212}
2213
2214static void
2215ftrace_set_regex(unsigned char *buf, int len, int reset, int enable)
2216{
2217 if (unlikely(ftrace_disabled))
2218 return;
2219
2220 mutex_lock(&ftrace_regex_lock);
2221 if (reset)
2222 ftrace_filter_reset(enable);
2223 if (buf)
7f24b31b 2224 ftrace_match_records(buf, len, enable);
41c52c0d
SR
2225 mutex_unlock(&ftrace_regex_lock);
2226}
2227
77a2b37d
SR
2228/**
2229 * ftrace_set_filter - set a function to filter on in ftrace
2230 * @buf - the string that holds the function filter text.
2231 * @len - the length of the string.
2232 * @reset - non zero to reset all filters before applying this filter.
2233 *
2234 * Filters denote which functions should be enabled when tracing is enabled.
2235 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
2236 */
e309b41d 2237void ftrace_set_filter(unsigned char *buf, int len, int reset)
77a2b37d 2238{
41c52c0d
SR
2239 ftrace_set_regex(buf, len, reset, 1);
2240}
4eebcc81 2241
41c52c0d
SR
2242/**
2243 * ftrace_set_notrace - set a function to not trace in ftrace
2244 * @buf - the string that holds the function notrace text.
2245 * @len - the length of the string.
2246 * @reset - non zero to reset all filters before applying this filter.
2247 *
2248 * Notrace Filters denote which functions should not be enabled when tracing
2249 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
2250 * for tracing.
2251 */
2252void ftrace_set_notrace(unsigned char *buf, int len, int reset)
2253{
2254 ftrace_set_regex(buf, len, reset, 0);
77a2b37d
SR
2255}
2256
2af15d6a
SR
2257/*
2258 * command line interface to allow users to set filters on boot up.
2259 */
2260#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
2261static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
2262static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
2263
2264static int __init set_ftrace_notrace(char *str)
2265{
2266 strncpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
2267 return 1;
2268}
2269__setup("ftrace_notrace=", set_ftrace_notrace);
2270
2271static int __init set_ftrace_filter(char *str)
2272{
2273 strncpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
2274 return 1;
2275}
2276__setup("ftrace_filter=", set_ftrace_filter);
2277
369bc18f 2278#ifdef CONFIG_FUNCTION_GRAPH_TRACER
f6060f46 2279static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
801c29fd
SR
2280static int ftrace_set_func(unsigned long *array, int *idx, char *buffer);
2281
369bc18f
SA
2282static int __init set_graph_function(char *str)
2283{
06f43d66 2284 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
369bc18f
SA
2285 return 1;
2286}
2287__setup("ftrace_graph_filter=", set_graph_function);
2288
2289static void __init set_ftrace_early_graph(char *buf)
2290{
2291 int ret;
2292 char *func;
2293
2294 while (buf) {
2295 func = strsep(&buf, ",");
2296 /* we allow only one expression at a time */
2297 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
2298 func);
2299 if (ret)
2300 printk(KERN_DEBUG "ftrace: function %s not "
2301 "traceable\n", func);
2302 }
2303}
2304#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2305
2af15d6a
SR
2306static void __init set_ftrace_early_filter(char *buf, int enable)
2307{
2308 char *func;
2309
2310 while (buf) {
2311 func = strsep(&buf, ",");
2312 ftrace_set_regex(func, strlen(func), 0, enable);
2313 }
2314}
2315
2316static void __init set_ftrace_early_filters(void)
2317{
2318 if (ftrace_filter_buf[0])
2319 set_ftrace_early_filter(ftrace_filter_buf, 1);
2320 if (ftrace_notrace_buf[0])
2321 set_ftrace_early_filter(ftrace_notrace_buf, 0);
369bc18f
SA
2322#ifdef CONFIG_FUNCTION_GRAPH_TRACER
2323 if (ftrace_graph_buf[0])
2324 set_ftrace_early_graph(ftrace_graph_buf);
2325#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2af15d6a
SR
2326}
2327
e309b41d 2328static int
41c52c0d 2329ftrace_regex_release(struct inode *inode, struct file *file, int enable)
5072c59f
SR
2330{
2331 struct seq_file *m = (struct seq_file *)file->private_data;
2332 struct ftrace_iterator *iter;
689fd8b6 2333 struct trace_parser *parser;
5072c59f 2334
41c52c0d 2335 mutex_lock(&ftrace_regex_lock);
5072c59f
SR
2336 if (file->f_mode & FMODE_READ) {
2337 iter = m->private;
2338
2339 seq_release(inode, file);
2340 } else
2341 iter = file->private_data;
2342
689fd8b6 2343 parser = &iter->parser;
2344 if (trace_parser_loaded(parser)) {
2345 parser->buffer[parser->idx] = 0;
2346 ftrace_match_records(parser->buffer, parser->idx, enable);
5072c59f
SR
2347 }
2348
e6ea44e9 2349 mutex_lock(&ftrace_lock);
ee02a2e5 2350 if (ftrace_start_up && ftrace_enabled)
5072c59f 2351 ftrace_run_update_code(FTRACE_ENABLE_CALLS);
e6ea44e9 2352 mutex_unlock(&ftrace_lock);
5072c59f 2353
689fd8b6 2354 trace_parser_put(parser);
5072c59f 2355 kfree(iter);
689fd8b6 2356
41c52c0d 2357 mutex_unlock(&ftrace_regex_lock);
5072c59f
SR
2358 return 0;
2359}
2360
41c52c0d
SR
2361static int
2362ftrace_filter_release(struct inode *inode, struct file *file)
2363{
2364 return ftrace_regex_release(inode, file, 1);
2365}
2366
2367static int
2368ftrace_notrace_release(struct inode *inode, struct file *file)
2369{
2370 return ftrace_regex_release(inode, file, 0);
2371}
2372
5e2336a0 2373static const struct file_operations ftrace_avail_fops = {
5072c59f
SR
2374 .open = ftrace_avail_open,
2375 .read = seq_read,
2376 .llseek = seq_lseek,
3be04b47 2377 .release = seq_release_private,
5072c59f
SR
2378};
2379
5e2336a0 2380static const struct file_operations ftrace_failures_fops = {
eb9a7bf0
AS
2381 .open = ftrace_failures_open,
2382 .read = seq_read,
2383 .llseek = seq_lseek,
3be04b47 2384 .release = seq_release_private,
eb9a7bf0
AS
2385};
2386
5e2336a0 2387static const struct file_operations ftrace_filter_fops = {
5072c59f 2388 .open = ftrace_filter_open,
850a80cf 2389 .read = seq_read,
5072c59f 2390 .write = ftrace_filter_write,
41c52c0d 2391 .llseek = ftrace_regex_lseek,
5072c59f
SR
2392 .release = ftrace_filter_release,
2393};
2394
5e2336a0 2395static const struct file_operations ftrace_notrace_fops = {
41c52c0d 2396 .open = ftrace_notrace_open,
850a80cf 2397 .read = seq_read,
41c52c0d
SR
2398 .write = ftrace_notrace_write,
2399 .llseek = ftrace_regex_lseek,
2400 .release = ftrace_notrace_release,
2401};
2402
ea4e2bc4
SR
2403#ifdef CONFIG_FUNCTION_GRAPH_TRACER
2404
2405static DEFINE_MUTEX(graph_lock);
2406
2407int ftrace_graph_count;
c7c6b1fe 2408int ftrace_graph_filter_enabled;
ea4e2bc4
SR
2409unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
2410
2411static void *
85951842 2412__g_next(struct seq_file *m, loff_t *pos)
ea4e2bc4 2413{
85951842 2414 if (*pos >= ftrace_graph_count)
ea4e2bc4 2415 return NULL;
a4ec5e0c 2416 return &ftrace_graph_funcs[*pos];
85951842 2417}
ea4e2bc4 2418
85951842
LZ
2419static void *
2420g_next(struct seq_file *m, void *v, loff_t *pos)
2421{
2422 (*pos)++;
2423 return __g_next(m, pos);
ea4e2bc4
SR
2424}
2425
2426static void *g_start(struct seq_file *m, loff_t *pos)
2427{
ea4e2bc4
SR
2428 mutex_lock(&graph_lock);
2429
f9349a8f 2430 /* Nothing, tell g_show to print all functions are enabled */
c7c6b1fe 2431 if (!ftrace_graph_filter_enabled && !*pos)
f9349a8f
FW
2432 return (void *)1;
2433
85951842 2434 return __g_next(m, pos);
ea4e2bc4
SR
2435}
2436
2437static void g_stop(struct seq_file *m, void *p)
2438{
2439 mutex_unlock(&graph_lock);
2440}
2441
2442static int g_show(struct seq_file *m, void *v)
2443{
2444 unsigned long *ptr = v;
ea4e2bc4
SR
2445
2446 if (!ptr)
2447 return 0;
2448
f9349a8f
FW
2449 if (ptr == (unsigned long *)1) {
2450 seq_printf(m, "#### all functions enabled ####\n");
2451 return 0;
2452 }
2453
b375a11a 2454 seq_printf(m, "%ps\n", (void *)*ptr);
ea4e2bc4
SR
2455
2456 return 0;
2457}
2458
88e9d34c 2459static const struct seq_operations ftrace_graph_seq_ops = {
ea4e2bc4
SR
2460 .start = g_start,
2461 .next = g_next,
2462 .stop = g_stop,
2463 .show = g_show,
2464};
2465
2466static int
2467ftrace_graph_open(struct inode *inode, struct file *file)
2468{
2469 int ret = 0;
2470
2471 if (unlikely(ftrace_disabled))
2472 return -ENODEV;
2473
2474 mutex_lock(&graph_lock);
2475 if ((file->f_mode & FMODE_WRITE) &&
8650ae32 2476 (file->f_flags & O_TRUNC)) {
c7c6b1fe 2477 ftrace_graph_filter_enabled = 0;
ea4e2bc4
SR
2478 ftrace_graph_count = 0;
2479 memset(ftrace_graph_funcs, 0, sizeof(ftrace_graph_funcs));
2480 }
a4ec5e0c 2481 mutex_unlock(&graph_lock);
ea4e2bc4 2482
a4ec5e0c 2483 if (file->f_mode & FMODE_READ)
ea4e2bc4 2484 ret = seq_open(file, &ftrace_graph_seq_ops);
ea4e2bc4
SR
2485
2486 return ret;
2487}
2488
87827111
LZ
2489static int
2490ftrace_graph_release(struct inode *inode, struct file *file)
2491{
2492 if (file->f_mode & FMODE_READ)
2493 seq_release(inode, file);
2494 return 0;
2495}
2496
ea4e2bc4 2497static int
f9349a8f 2498ftrace_set_func(unsigned long *array, int *idx, char *buffer)
ea4e2bc4 2499{
ea4e2bc4
SR
2500 struct dyn_ftrace *rec;
2501 struct ftrace_page *pg;
f9349a8f 2502 int search_len;
c7c6b1fe 2503 int fail = 1;
f9349a8f
FW
2504 int type, not;
2505 char *search;
2506 bool exists;
2507 int i;
ea4e2bc4
SR
2508
2509 if (ftrace_disabled)
2510 return -ENODEV;
2511
f9349a8f 2512 /* decode regex */
3f6fe06d 2513 type = filter_parse_regex(buffer, strlen(buffer), &search, &not);
c7c6b1fe
LZ
2514 if (!not && *idx >= FTRACE_GRAPH_MAX_FUNCS)
2515 return -EBUSY;
f9349a8f
FW
2516
2517 search_len = strlen(search);
2518
52baf119 2519 mutex_lock(&ftrace_lock);
265c831c
SR
2520 do_for_each_ftrace_rec(pg, rec) {
2521
2522 if (rec->flags & (FTRACE_FL_FAILED | FTRACE_FL_FREE))
2523 continue;
2524
f9349a8f 2525 if (ftrace_match_record(rec, search, search_len, type)) {
c7c6b1fe 2526 /* if it is in the array */
f9349a8f 2527 exists = false;
c7c6b1fe 2528 for (i = 0; i < *idx; i++) {
f9349a8f
FW
2529 if (array[i] == rec->ip) {
2530 exists = true;
265c831c
SR
2531 break;
2532 }
c7c6b1fe
LZ
2533 }
2534
2535 if (!not) {
2536 fail = 0;
2537 if (!exists) {
2538 array[(*idx)++] = rec->ip;
2539 if (*idx >= FTRACE_GRAPH_MAX_FUNCS)
2540 goto out;
2541 }
2542 } else {
2543 if (exists) {
2544 array[i] = array[--(*idx)];
2545 array[*idx] = 0;
2546 fail = 0;
2547 }
2548 }
ea4e2bc4 2549 }
265c831c 2550 } while_for_each_ftrace_rec();
c7c6b1fe 2551out:
52baf119 2552 mutex_unlock(&ftrace_lock);
ea4e2bc4 2553
c7c6b1fe
LZ
2554 if (fail)
2555 return -EINVAL;
2556
2557 ftrace_graph_filter_enabled = 1;
2558 return 0;
ea4e2bc4
SR
2559}
2560
2561static ssize_t
2562ftrace_graph_write(struct file *file, const char __user *ubuf,
2563 size_t cnt, loff_t *ppos)
2564{
689fd8b6 2565 struct trace_parser parser;
4ba7978e 2566 ssize_t read, ret;
ea4e2bc4 2567
c7c6b1fe 2568 if (!cnt)
ea4e2bc4
SR
2569 return 0;
2570
2571 mutex_lock(&graph_lock);
2572
689fd8b6 2573 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX)) {
2574 ret = -ENOMEM;
1eb90f13 2575 goto out_unlock;
ea4e2bc4
SR
2576 }
2577
689fd8b6 2578 read = trace_get_user(&parser, ubuf, cnt, ppos);
ea4e2bc4 2579
4ba7978e 2580 if (read >= 0 && trace_parser_loaded((&parser))) {
689fd8b6 2581 parser.buffer[parser.idx] = 0;
2582
2583 /* we allow only one expression at a time */
a4ec5e0c 2584 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
689fd8b6 2585 parser.buffer);
ea4e2bc4 2586 if (ret)
1eb90f13 2587 goto out_free;
ea4e2bc4 2588 }
ea4e2bc4
SR
2589
2590 ret = read;
1eb90f13
LZ
2591
2592out_free:
689fd8b6 2593 trace_parser_put(&parser);
1eb90f13 2594out_unlock:
ea4e2bc4
SR
2595 mutex_unlock(&graph_lock);
2596
2597 return ret;
2598}
2599
2600static const struct file_operations ftrace_graph_fops = {
87827111
LZ
2601 .open = ftrace_graph_open,
2602 .read = seq_read,
2603 .write = ftrace_graph_write,
2604 .release = ftrace_graph_release,
ea4e2bc4
SR
2605};
2606#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2607
df4fc315 2608static __init int ftrace_init_dyn_debugfs(struct dentry *d_tracer)
5072c59f 2609{
5072c59f 2610
5452af66
FW
2611 trace_create_file("available_filter_functions", 0444,
2612 d_tracer, NULL, &ftrace_avail_fops);
5072c59f 2613
5452af66
FW
2614 trace_create_file("failures", 0444,
2615 d_tracer, NULL, &ftrace_failures_fops);
eb9a7bf0 2616
5452af66
FW
2617 trace_create_file("set_ftrace_filter", 0644, d_tracer,
2618 NULL, &ftrace_filter_fops);
41c52c0d 2619
5452af66 2620 trace_create_file("set_ftrace_notrace", 0644, d_tracer,
41c52c0d 2621 NULL, &ftrace_notrace_fops);
ad90c0e3 2622
ea4e2bc4 2623#ifdef CONFIG_FUNCTION_GRAPH_TRACER
5452af66 2624 trace_create_file("set_graph_function", 0444, d_tracer,
ea4e2bc4
SR
2625 NULL,
2626 &ftrace_graph_fops);
ea4e2bc4
SR
2627#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2628
5072c59f
SR
2629 return 0;
2630}
2631
5cb084bb 2632static int ftrace_process_locs(struct module *mod,
31e88909 2633 unsigned long *start,
68bf21aa
SR
2634 unsigned long *end)
2635{
2636 unsigned long *p;
2637 unsigned long addr;
2638 unsigned long flags;
2639
e6ea44e9 2640 mutex_lock(&ftrace_lock);
68bf21aa
SR
2641 p = start;
2642 while (p < end) {
2643 addr = ftrace_call_adjust(*p++);
20e5227e
SR
2644 /*
2645 * Some architecture linkers will pad between
2646 * the different mcount_loc sections of different
2647 * object files to satisfy alignments.
2648 * Skip any NULL pointers.
2649 */
2650 if (!addr)
2651 continue;
68bf21aa 2652 ftrace_record_ip(addr);
68bf21aa
SR
2653 }
2654
08f5ac90 2655 /* disable interrupts to prevent kstop machine */
68bf21aa 2656 local_irq_save(flags);
31e88909 2657 ftrace_update_code(mod);
68bf21aa 2658 local_irq_restore(flags);
e6ea44e9 2659 mutex_unlock(&ftrace_lock);
68bf21aa
SR
2660
2661 return 0;
2662}
2663
93eb677d 2664#ifdef CONFIG_MODULES
e7247a15 2665void ftrace_release_mod(struct module *mod)
93eb677d
SR
2666{
2667 struct dyn_ftrace *rec;
2668 struct ftrace_page *pg;
93eb677d 2669
e7247a15 2670 if (ftrace_disabled)
93eb677d
SR
2671 return;
2672
2673 mutex_lock(&ftrace_lock);
2674 do_for_each_ftrace_rec(pg, rec) {
e7247a15 2675 if (within_module_core(rec->ip, mod)) {
93eb677d
SR
2676 /*
2677 * rec->ip is changed in ftrace_free_rec()
2678 * It should not between s and e if record was freed.
2679 */
2680 FTRACE_WARN_ON(rec->flags & FTRACE_FL_FREE);
2681 ftrace_free_rec(rec);
2682 }
2683 } while_for_each_ftrace_rec();
2684 mutex_unlock(&ftrace_lock);
2685}
2686
2687static void ftrace_init_module(struct module *mod,
2688 unsigned long *start, unsigned long *end)
90d595fe 2689{
00fd61ae 2690 if (ftrace_disabled || start == end)
fed1939c 2691 return;
5cb084bb 2692 ftrace_process_locs(mod, start, end);
90d595fe
SR
2693}
2694
93eb677d
SR
2695static int ftrace_module_notify(struct notifier_block *self,
2696 unsigned long val, void *data)
2697{
2698 struct module *mod = data;
2699
2700 switch (val) {
2701 case MODULE_STATE_COMING:
2702 ftrace_init_module(mod, mod->ftrace_callsites,
2703 mod->ftrace_callsites +
2704 mod->num_ftrace_callsites);
2705 break;
2706 case MODULE_STATE_GOING:
e7247a15 2707 ftrace_release_mod(mod);
93eb677d
SR
2708 break;
2709 }
2710
2711 return 0;
2712}
2713#else
2714static int ftrace_module_notify(struct notifier_block *self,
2715 unsigned long val, void *data)
2716{
2717 return 0;
2718}
2719#endif /* CONFIG_MODULES */
2720
2721struct notifier_block ftrace_module_nb = {
2722 .notifier_call = ftrace_module_notify,
2723 .priority = 0,
2724};
2725
68bf21aa
SR
2726extern unsigned long __start_mcount_loc[];
2727extern unsigned long __stop_mcount_loc[];
2728
2729void __init ftrace_init(void)
2730{
2731 unsigned long count, addr, flags;
2732 int ret;
2733
2734 /* Keep the ftrace pointer to the stub */
2735 addr = (unsigned long)ftrace_stub;
2736
2737 local_irq_save(flags);
2738 ftrace_dyn_arch_init(&addr);
2739 local_irq_restore(flags);
2740
2741 /* ftrace_dyn_arch_init places the return code in addr */
2742 if (addr)
2743 goto failed;
2744
2745 count = __stop_mcount_loc - __start_mcount_loc;
2746
2747 ret = ftrace_dyn_table_alloc(count);
2748 if (ret)
2749 goto failed;
2750
2751 last_ftrace_enabled = ftrace_enabled = 1;
2752
5cb084bb 2753 ret = ftrace_process_locs(NULL,
31e88909 2754 __start_mcount_loc,
68bf21aa
SR
2755 __stop_mcount_loc);
2756
93eb677d 2757 ret = register_module_notifier(&ftrace_module_nb);
24ed0c4b 2758 if (ret)
93eb677d
SR
2759 pr_warning("Failed to register trace ftrace module notifier\n");
2760
2af15d6a
SR
2761 set_ftrace_early_filters();
2762
68bf21aa
SR
2763 return;
2764 failed:
2765 ftrace_disabled = 1;
2766}
68bf21aa 2767
3d083395 2768#else
0b6e4d56
FW
2769
2770static int __init ftrace_nodyn_init(void)
2771{
2772 ftrace_enabled = 1;
2773 return 0;
2774}
2775device_initcall(ftrace_nodyn_init);
2776
df4fc315
SR
2777static inline int ftrace_init_dyn_debugfs(struct dentry *d_tracer) { return 0; }
2778static inline void ftrace_startup_enable(int command) { }
5a45cfe1
SR
2779/* Keep as macros so we do not need to define the commands */
2780# define ftrace_startup(command) do { } while (0)
2781# define ftrace_shutdown(command) do { } while (0)
c7aafc54
IM
2782# define ftrace_startup_sysctl() do { } while (0)
2783# define ftrace_shutdown_sysctl() do { } while (0)
3d083395
SR
2784#endif /* CONFIG_DYNAMIC_FTRACE */
2785
e32d8956 2786static void clear_ftrace_swapper(void)
978f3a45
SR
2787{
2788 struct task_struct *p;
e32d8956 2789 int cpu;
978f3a45 2790
e32d8956
SR
2791 get_online_cpus();
2792 for_each_online_cpu(cpu) {
2793 p = idle_task(cpu);
978f3a45 2794 clear_tsk_trace_trace(p);
e32d8956
SR
2795 }
2796 put_online_cpus();
2797}
978f3a45 2798
e32d8956
SR
2799static void set_ftrace_swapper(void)
2800{
2801 struct task_struct *p;
2802 int cpu;
2803
2804 get_online_cpus();
2805 for_each_online_cpu(cpu) {
2806 p = idle_task(cpu);
2807 set_tsk_trace_trace(p);
2808 }
2809 put_online_cpus();
978f3a45
SR
2810}
2811
e32d8956
SR
2812static void clear_ftrace_pid(struct pid *pid)
2813{
2814 struct task_struct *p;
2815
229c4ef8 2816 rcu_read_lock();
e32d8956
SR
2817 do_each_pid_task(pid, PIDTYPE_PID, p) {
2818 clear_tsk_trace_trace(p);
2819 } while_each_pid_task(pid, PIDTYPE_PID, p);
229c4ef8
ON
2820 rcu_read_unlock();
2821
e32d8956
SR
2822 put_pid(pid);
2823}
2824
2825static void set_ftrace_pid(struct pid *pid)
978f3a45
SR
2826{
2827 struct task_struct *p;
2828
229c4ef8 2829 rcu_read_lock();
978f3a45
SR
2830 do_each_pid_task(pid, PIDTYPE_PID, p) {
2831 set_tsk_trace_trace(p);
2832 } while_each_pid_task(pid, PIDTYPE_PID, p);
229c4ef8 2833 rcu_read_unlock();
978f3a45
SR
2834}
2835
756d17ee 2836static void clear_ftrace_pid_task(struct pid *pid)
e32d8956 2837{
756d17ee 2838 if (pid == ftrace_swapper_pid)
e32d8956
SR
2839 clear_ftrace_swapper();
2840 else
756d17ee 2841 clear_ftrace_pid(pid);
e32d8956
SR
2842}
2843
2844static void set_ftrace_pid_task(struct pid *pid)
2845{
2846 if (pid == ftrace_swapper_pid)
2847 set_ftrace_swapper();
2848 else
2849 set_ftrace_pid(pid);
2850}
2851
756d17ee 2852static int ftrace_pid_add(int p)
df4fc315 2853{
978f3a45 2854 struct pid *pid;
756d17ee 2855 struct ftrace_pid *fpid;
2856 int ret = -EINVAL;
df4fc315 2857
756d17ee 2858 mutex_lock(&ftrace_lock);
df4fc315 2859
756d17ee 2860 if (!p)
2861 pid = ftrace_swapper_pid;
2862 else
2863 pid = find_get_pid(p);
df4fc315 2864
756d17ee 2865 if (!pid)
2866 goto out;
df4fc315 2867
756d17ee 2868 ret = 0;
df4fc315 2869
756d17ee 2870 list_for_each_entry(fpid, &ftrace_pids, list)
2871 if (fpid->pid == pid)
2872 goto out_put;
978f3a45 2873
756d17ee 2874 ret = -ENOMEM;
df4fc315 2875
756d17ee 2876 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
2877 if (!fpid)
2878 goto out_put;
df4fc315 2879
756d17ee 2880 list_add(&fpid->list, &ftrace_pids);
2881 fpid->pid = pid;
0ef8cde5 2882
756d17ee 2883 set_ftrace_pid_task(pid);
978f3a45 2884
756d17ee 2885 ftrace_update_pid_func();
2886 ftrace_startup_enable(0);
2887
2888 mutex_unlock(&ftrace_lock);
2889 return 0;
2890
2891out_put:
2892 if (pid != ftrace_swapper_pid)
2893 put_pid(pid);
978f3a45 2894
756d17ee 2895out:
2896 mutex_unlock(&ftrace_lock);
2897 return ret;
2898}
2899
2900static void ftrace_pid_reset(void)
2901{
2902 struct ftrace_pid *fpid, *safe;
978f3a45 2903
756d17ee 2904 mutex_lock(&ftrace_lock);
2905 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
2906 struct pid *pid = fpid->pid;
2907
2908 clear_ftrace_pid_task(pid);
2909
2910 list_del(&fpid->list);
2911 kfree(fpid);
df4fc315
SR
2912 }
2913
df4fc315
SR
2914 ftrace_update_pid_func();
2915 ftrace_startup_enable(0);
2916
e6ea44e9 2917 mutex_unlock(&ftrace_lock);
756d17ee 2918}
df4fc315 2919
756d17ee 2920static void *fpid_start(struct seq_file *m, loff_t *pos)
2921{
2922 mutex_lock(&ftrace_lock);
2923
2924 if (list_empty(&ftrace_pids) && (!*pos))
2925 return (void *) 1;
2926
2927 return seq_list_start(&ftrace_pids, *pos);
2928}
2929
2930static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
2931{
2932 if (v == (void *)1)
2933 return NULL;
2934
2935 return seq_list_next(v, &ftrace_pids, pos);
2936}
2937
2938static void fpid_stop(struct seq_file *m, void *p)
2939{
2940 mutex_unlock(&ftrace_lock);
2941}
2942
2943static int fpid_show(struct seq_file *m, void *v)
2944{
2945 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
2946
2947 if (v == (void *)1) {
2948 seq_printf(m, "no pid\n");
2949 return 0;
2950 }
2951
2952 if (fpid->pid == ftrace_swapper_pid)
2953 seq_printf(m, "swapper tasks\n");
2954 else
2955 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
2956
2957 return 0;
2958}
2959
2960static const struct seq_operations ftrace_pid_sops = {
2961 .start = fpid_start,
2962 .next = fpid_next,
2963 .stop = fpid_stop,
2964 .show = fpid_show,
2965};
2966
2967static int
2968ftrace_pid_open(struct inode *inode, struct file *file)
2969{
2970 int ret = 0;
2971
2972 if ((file->f_mode & FMODE_WRITE) &&
2973 (file->f_flags & O_TRUNC))
2974 ftrace_pid_reset();
2975
2976 if (file->f_mode & FMODE_READ)
2977 ret = seq_open(file, &ftrace_pid_sops);
2978
2979 return ret;
2980}
2981
df4fc315
SR
2982static ssize_t
2983ftrace_pid_write(struct file *filp, const char __user *ubuf,
2984 size_t cnt, loff_t *ppos)
2985{
457dc928 2986 char buf[64], *tmp;
df4fc315
SR
2987 long val;
2988 int ret;
2989
2990 if (cnt >= sizeof(buf))
2991 return -EINVAL;
2992
2993 if (copy_from_user(&buf, ubuf, cnt))
2994 return -EFAULT;
2995
2996 buf[cnt] = 0;
2997
756d17ee 2998 /*
2999 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
3000 * to clean the filter quietly.
3001 */
457dc928
IM
3002 tmp = strstrip(buf);
3003 if (strlen(tmp) == 0)
756d17ee 3004 return 1;
3005
457dc928 3006 ret = strict_strtol(tmp, 10, &val);
df4fc315
SR
3007 if (ret < 0)
3008 return ret;
3009
756d17ee 3010 ret = ftrace_pid_add(val);
df4fc315 3011
756d17ee 3012 return ret ? ret : cnt;
3013}
df4fc315 3014
756d17ee 3015static int
3016ftrace_pid_release(struct inode *inode, struct file *file)
3017{
3018 if (file->f_mode & FMODE_READ)
3019 seq_release(inode, file);
df4fc315 3020
756d17ee 3021 return 0;
df4fc315
SR
3022}
3023
5e2336a0 3024static const struct file_operations ftrace_pid_fops = {
756d17ee 3025 .open = ftrace_pid_open,
3026 .write = ftrace_pid_write,
3027 .read = seq_read,
3028 .llseek = seq_lseek,
3029 .release = ftrace_pid_release,
df4fc315
SR
3030};
3031
3032static __init int ftrace_init_debugfs(void)
3033{
3034 struct dentry *d_tracer;
df4fc315
SR
3035
3036 d_tracer = tracing_init_dentry();
3037 if (!d_tracer)
3038 return 0;
3039
3040 ftrace_init_dyn_debugfs(d_tracer);
3041
5452af66
FW
3042 trace_create_file("set_ftrace_pid", 0644, d_tracer,
3043 NULL, &ftrace_pid_fops);
493762fc
SR
3044
3045 ftrace_profile_debugfs(d_tracer);
3046
df4fc315
SR
3047 return 0;
3048}
df4fc315
SR
3049fs_initcall(ftrace_init_debugfs);
3050
a2bb6a3d 3051/**
81adbdc0 3052 * ftrace_kill - kill ftrace
a2bb6a3d
SR
3053 *
3054 * This function should be used by panic code. It stops ftrace
3055 * but in a not so nice way. If you need to simply kill ftrace
3056 * from a non-atomic section, use ftrace_kill.
3057 */
81adbdc0 3058void ftrace_kill(void)
a2bb6a3d
SR
3059{
3060 ftrace_disabled = 1;
3061 ftrace_enabled = 0;
a2bb6a3d
SR
3062 clear_ftrace_function();
3063}
3064
16444a8a 3065/**
3d083395
SR
3066 * register_ftrace_function - register a function for profiling
3067 * @ops - ops structure that holds the function for profiling.
16444a8a 3068 *
3d083395
SR
3069 * Register a function to be called by all functions in the
3070 * kernel.
3071 *
3072 * Note: @ops->func and all the functions it calls must be labeled
3073 * with "notrace", otherwise it will go into a
3074 * recursive loop.
16444a8a 3075 */
3d083395 3076int register_ftrace_function(struct ftrace_ops *ops)
16444a8a 3077{
b0fc494f
SR
3078 int ret;
3079
4eebcc81
SR
3080 if (unlikely(ftrace_disabled))
3081 return -1;
3082
e6ea44e9 3083 mutex_lock(&ftrace_lock);
e7d3737e 3084
b0fc494f 3085 ret = __register_ftrace_function(ops);
5a45cfe1 3086 ftrace_startup(0);
b0fc494f 3087
e6ea44e9 3088 mutex_unlock(&ftrace_lock);
b0fc494f 3089 return ret;
3d083395
SR
3090}
3091
3092/**
32632920 3093 * unregister_ftrace_function - unregister a function for profiling.
3d083395
SR
3094 * @ops - ops structure that holds the function to unregister
3095 *
3096 * Unregister a function that was added to be called by ftrace profiling.
3097 */
3098int unregister_ftrace_function(struct ftrace_ops *ops)
3099{
3100 int ret;
3101
e6ea44e9 3102 mutex_lock(&ftrace_lock);
3d083395 3103 ret = __unregister_ftrace_function(ops);
5a45cfe1 3104 ftrace_shutdown(0);
e6ea44e9 3105 mutex_unlock(&ftrace_lock);
b0fc494f
SR
3106
3107 return ret;
3108}
3109
e309b41d 3110int
b0fc494f 3111ftrace_enable_sysctl(struct ctl_table *table, int write,
8d65af78 3112 void __user *buffer, size_t *lenp,
b0fc494f
SR
3113 loff_t *ppos)
3114{
3115 int ret;
3116
4eebcc81
SR
3117 if (unlikely(ftrace_disabled))
3118 return -ENODEV;
3119
e6ea44e9 3120 mutex_lock(&ftrace_lock);
b0fc494f 3121
8d65af78 3122 ret = proc_dointvec(table, write, buffer, lenp, ppos);
b0fc494f 3123
a32c7765 3124 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
b0fc494f
SR
3125 goto out;
3126
a32c7765 3127 last_ftrace_enabled = !!ftrace_enabled;
b0fc494f
SR
3128
3129 if (ftrace_enabled) {
3130
3131 ftrace_startup_sysctl();
3132
3133 /* we are starting ftrace again */
3134 if (ftrace_list != &ftrace_list_end) {
3135 if (ftrace_list->next == &ftrace_list_end)
3136 ftrace_trace_function = ftrace_list->func;
3137 else
3138 ftrace_trace_function = ftrace_list_func;
3139 }
3140
3141 } else {
3142 /* stopping ftrace calls (just send to ftrace_stub) */
3143 ftrace_trace_function = ftrace_stub;
3144
3145 ftrace_shutdown_sysctl();
3146 }
3147
3148 out:
e6ea44e9 3149 mutex_unlock(&ftrace_lock);
3d083395 3150 return ret;
16444a8a 3151}
f17845e5 3152
fb52607a 3153#ifdef CONFIG_FUNCTION_GRAPH_TRACER
e7d3737e 3154
597af815 3155static int ftrace_graph_active;
4a2b8dda 3156static struct notifier_block ftrace_suspend_notifier;
e7d3737e 3157
e49dc19c
SR
3158int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
3159{
3160 return 0;
3161}
3162
287b6e68
FW
3163/* The callbacks that hook a function */
3164trace_func_graph_ret_t ftrace_graph_return =
3165 (trace_func_graph_ret_t)ftrace_stub;
e49dc19c 3166trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
f201ae23
FW
3167
3168/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
3169static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
3170{
3171 int i;
3172 int ret = 0;
3173 unsigned long flags;
3174 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
3175 struct task_struct *g, *t;
3176
3177 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
3178 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
3179 * sizeof(struct ftrace_ret_stack),
3180 GFP_KERNEL);
3181 if (!ret_stack_list[i]) {
3182 start = 0;
3183 end = i;
3184 ret = -ENOMEM;
3185 goto free;
3186 }
3187 }
3188
3189 read_lock_irqsave(&tasklist_lock, flags);
3190 do_each_thread(g, t) {
3191 if (start == end) {
3192 ret = -EAGAIN;
3193 goto unlock;
3194 }
3195
3196 if (t->ret_stack == NULL) {
380c4b14 3197 atomic_set(&t->tracing_graph_pause, 0);
f201ae23 3198 atomic_set(&t->trace_overrun, 0);
26c01624
SR
3199 t->curr_ret_stack = -1;
3200 /* Make sure the tasks see the -1 first: */
3201 smp_wmb();
3202 t->ret_stack = ret_stack_list[start++];
f201ae23
FW
3203 }
3204 } while_each_thread(g, t);
3205
3206unlock:
3207 read_unlock_irqrestore(&tasklist_lock, flags);
3208free:
3209 for (i = start; i < end; i++)
3210 kfree(ret_stack_list[i]);
3211 return ret;
3212}
3213
8aef2d28
SR
3214static void
3215ftrace_graph_probe_sched_switch(struct rq *__rq, struct task_struct *prev,
3216 struct task_struct *next)
3217{
3218 unsigned long long timestamp;
3219 int index;
3220
be6f164a
SR
3221 /*
3222 * Does the user want to count the time a function was asleep.
3223 * If so, do not update the time stamps.
3224 */
3225 if (trace_flags & TRACE_ITER_SLEEP_TIME)
3226 return;
3227
8aef2d28
SR
3228 timestamp = trace_clock_local();
3229
3230 prev->ftrace_timestamp = timestamp;
3231
3232 /* only process tasks that we timestamped */
3233 if (!next->ftrace_timestamp)
3234 return;
3235
3236 /*
3237 * Update all the counters in next to make up for the
3238 * time next was sleeping.
3239 */
3240 timestamp -= next->ftrace_timestamp;
3241
3242 for (index = next->curr_ret_stack; index >= 0; index--)
3243 next->ret_stack[index].calltime += timestamp;
3244}
3245
f201ae23 3246/* Allocate a return stack for each task */
fb52607a 3247static int start_graph_tracing(void)
f201ae23
FW
3248{
3249 struct ftrace_ret_stack **ret_stack_list;
5b058bcd 3250 int ret, cpu;
f201ae23
FW
3251
3252 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
3253 sizeof(struct ftrace_ret_stack *),
3254 GFP_KERNEL);
3255
3256 if (!ret_stack_list)
3257 return -ENOMEM;
3258
5b058bcd 3259 /* The cpu_boot init_task->ret_stack will never be freed */
179c498a
SR
3260 for_each_online_cpu(cpu) {
3261 if (!idle_task(cpu)->ret_stack)
3262 ftrace_graph_init_task(idle_task(cpu));
3263 }
5b058bcd 3264
f201ae23
FW
3265 do {
3266 ret = alloc_retstack_tasklist(ret_stack_list);
3267 } while (ret == -EAGAIN);
3268
8aef2d28
SR
3269 if (!ret) {
3270 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch);
3271 if (ret)
3272 pr_info("ftrace_graph: Couldn't activate tracepoint"
3273 " probe to kernel_sched_switch\n");
3274 }
3275
f201ae23
FW
3276 kfree(ret_stack_list);
3277 return ret;
3278}
3279
4a2b8dda
FW
3280/*
3281 * Hibernation protection.
3282 * The state of the current task is too much unstable during
3283 * suspend/restore to disk. We want to protect against that.
3284 */
3285static int
3286ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
3287 void *unused)
3288{
3289 switch (state) {
3290 case PM_HIBERNATION_PREPARE:
3291 pause_graph_tracing();
3292 break;
3293
3294 case PM_POST_HIBERNATION:
3295 unpause_graph_tracing();
3296 break;
3297 }
3298 return NOTIFY_DONE;
3299}
3300
287b6e68
FW
3301int register_ftrace_graph(trace_func_graph_ret_t retfunc,
3302 trace_func_graph_ent_t entryfunc)
15e6cb36 3303{
e7d3737e
FW
3304 int ret = 0;
3305
e6ea44e9 3306 mutex_lock(&ftrace_lock);
e7d3737e 3307
05ce5818 3308 /* we currently allow only one tracer registered at a time */
597af815 3309 if (ftrace_graph_active) {
05ce5818
SR
3310 ret = -EBUSY;
3311 goto out;
3312 }
3313
4a2b8dda
FW
3314 ftrace_suspend_notifier.notifier_call = ftrace_suspend_notifier_call;
3315 register_pm_notifier(&ftrace_suspend_notifier);
3316
597af815 3317 ftrace_graph_active++;
fb52607a 3318 ret = start_graph_tracing();
f201ae23 3319 if (ret) {
597af815 3320 ftrace_graph_active--;
f201ae23
FW
3321 goto out;
3322 }
e53a6319 3323
287b6e68
FW
3324 ftrace_graph_return = retfunc;
3325 ftrace_graph_entry = entryfunc;
e53a6319 3326
5a45cfe1 3327 ftrace_startup(FTRACE_START_FUNC_RET);
e7d3737e
FW
3328
3329out:
e6ea44e9 3330 mutex_unlock(&ftrace_lock);
e7d3737e 3331 return ret;
15e6cb36
FW
3332}
3333
fb52607a 3334void unregister_ftrace_graph(void)
15e6cb36 3335{
e6ea44e9 3336 mutex_lock(&ftrace_lock);
e7d3737e 3337
597af815 3338 if (unlikely(!ftrace_graph_active))
2aad1b76
SR
3339 goto out;
3340
597af815 3341 ftrace_graph_active--;
8aef2d28 3342 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch);
287b6e68 3343 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
e49dc19c 3344 ftrace_graph_entry = ftrace_graph_entry_stub;
5a45cfe1 3345 ftrace_shutdown(FTRACE_STOP_FUNC_RET);
4a2b8dda 3346 unregister_pm_notifier(&ftrace_suspend_notifier);
e7d3737e 3347
2aad1b76 3348 out:
e6ea44e9 3349 mutex_unlock(&ftrace_lock);
15e6cb36 3350}
f201ae23
FW
3351
3352/* Allocate a return stack for newly created task */
fb52607a 3353void ftrace_graph_init_task(struct task_struct *t)
f201ae23 3354{
84047e36
SR
3355 /* Make sure we do not use the parent ret_stack */
3356 t->ret_stack = NULL;
ea14eb71 3357 t->curr_ret_stack = -1;
84047e36 3358
597af815 3359 if (ftrace_graph_active) {
82310a32
SR
3360 struct ftrace_ret_stack *ret_stack;
3361
3362 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
f201ae23
FW
3363 * sizeof(struct ftrace_ret_stack),
3364 GFP_KERNEL);
82310a32 3365 if (!ret_stack)
f201ae23 3366 return;
380c4b14 3367 atomic_set(&t->tracing_graph_pause, 0);
f201ae23 3368 atomic_set(&t->trace_overrun, 0);
8aef2d28 3369 t->ftrace_timestamp = 0;
82310a32
SR
3370 /* make curr_ret_stack visable before we add the ret_stack */
3371 smp_wmb();
3372 t->ret_stack = ret_stack;
84047e36 3373 }
f201ae23
FW
3374}
3375
fb52607a 3376void ftrace_graph_exit_task(struct task_struct *t)
f201ae23 3377{
eae849ca
FW
3378 struct ftrace_ret_stack *ret_stack = t->ret_stack;
3379
f201ae23 3380 t->ret_stack = NULL;
eae849ca
FW
3381 /* NULL must become visible to IRQs before we free it: */
3382 barrier();
3383
3384 kfree(ret_stack);
f201ae23 3385}
14a866c5
SR
3386
3387void ftrace_graph_stop(void)
3388{
3389 ftrace_stop();
3390}
15e6cb36 3391#endif