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