2 * Infrastructure for profiling code inserted by 'gcc -pg'.
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2004-2008 Ingo Molnar <mingo@redhat.com>
7 * Originally ported from the -rt patch by:
8 * Copyright (C) 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
10 * Based on code in the latency_tracer, that is:
12 * Copyright (C) 2004-2006 Ingo Molnar
13 * Copyright (C) 2004 William Lee Irwin III
16 #include <linux/stop_machine.h>
17 #include <linux/clocksource.h>
18 #include <linux/kallsyms.h>
19 #include <linux/seq_file.h>
20 #include <linux/suspend.h>
21 #include <linux/debugfs.h>
22 #include <linux/hardirq.h>
23 #include <linux/kthread.h>
24 #include <linux/uaccess.h>
25 #include <linux/ftrace.h>
26 #include <linux/sysctl.h>
27 #include <linux/slab.h>
28 #include <linux/ctype.h>
29 #include <linux/list.h>
30 #include <linux/hash.h>
31 #include <linux/rcupdate.h>
33 #include <trace/events/sched.h>
35 #include <asm/ftrace.h>
36 #include <asm/setup.h>
38 #include "trace_output.h"
39 #include "trace_stat.h"
41 #define FTRACE_WARN_ON(cond) \
47 #define FTRACE_WARN_ON_ONCE(cond) \
49 if (WARN_ON_ONCE(cond)) \
53 /* hash bits for specific function selection */
54 #define FTRACE_HASH_BITS 7
55 #define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
57 /* ftrace_enabled is a method to turn ftrace on or off */
58 int ftrace_enabled __read_mostly
;
59 static int last_ftrace_enabled
;
61 /* Quick disabling of function tracer. */
62 int function_trace_stop
;
64 /* List for set_ftrace_pid's pids. */
65 LIST_HEAD(ftrace_pids
);
67 struct list_head list
;
72 * ftrace_disabled is set when an anomaly is discovered.
73 * ftrace_disabled is much stronger than ftrace_enabled.
75 static int ftrace_disabled __read_mostly
;
77 static DEFINE_MUTEX(ftrace_lock
);
79 static struct ftrace_ops ftrace_list_end __read_mostly
=
84 static struct ftrace_ops
*ftrace_list __read_mostly
= &ftrace_list_end
;
85 ftrace_func_t ftrace_trace_function __read_mostly
= ftrace_stub
;
86 ftrace_func_t __ftrace_trace_function __read_mostly
= ftrace_stub
;
87 ftrace_func_t ftrace_pid_function __read_mostly
= ftrace_stub
;
90 * Traverse the ftrace_list, invoking all entries. The reason that we
91 * can use rcu_dereference_raw() is that elements removed from this list
92 * are simply leaked, so there is no need to interact with a grace-period
93 * mechanism. The rcu_dereference_raw() calls are needed to handle
94 * concurrent insertions into the ftrace_list.
96 * Silly Alpha and silly pointer-speculation compiler optimizations!
98 static void ftrace_list_func(unsigned long ip
, unsigned long parent_ip
)
100 struct ftrace_ops
*op
= rcu_dereference_raw(ftrace_list
); /*see above*/
102 while (op
!= &ftrace_list_end
) {
103 op
->func(ip
, parent_ip
);
104 op
= rcu_dereference_raw(op
->next
); /*see above*/
108 static void ftrace_pid_func(unsigned long ip
, unsigned long parent_ip
)
110 if (!test_tsk_trace_trace(current
))
113 ftrace_pid_function(ip
, parent_ip
);
116 static void set_ftrace_pid_function(ftrace_func_t func
)
118 /* do not set ftrace_pid_function to itself! */
119 if (func
!= ftrace_pid_func
)
120 ftrace_pid_function
= func
;
124 * clear_ftrace_function - reset the ftrace function
126 * This NULLs the ftrace function and in essence stops
127 * tracing. There may be lag
129 void clear_ftrace_function(void)
131 ftrace_trace_function
= ftrace_stub
;
132 __ftrace_trace_function
= ftrace_stub
;
133 ftrace_pid_function
= ftrace_stub
;
136 #ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
138 * For those archs that do not test ftrace_trace_stop in their
139 * mcount call site, we need to do it from C.
141 static void ftrace_test_stop_func(unsigned long ip
, unsigned long parent_ip
)
143 if (function_trace_stop
)
146 __ftrace_trace_function(ip
, parent_ip
);
150 static int __register_ftrace_function(struct ftrace_ops
*ops
)
152 ops
->next
= ftrace_list
;
154 * We are entering ops into the ftrace_list but another
155 * CPU might be walking that list. We need to make sure
156 * the ops->next pointer is valid before another CPU sees
157 * the ops pointer included into the ftrace_list.
159 rcu_assign_pointer(ftrace_list
, ops
);
161 if (ftrace_enabled
) {
164 if (ops
->next
== &ftrace_list_end
)
167 func
= ftrace_list_func
;
169 if (!list_empty(&ftrace_pids
)) {
170 set_ftrace_pid_function(func
);
171 func
= ftrace_pid_func
;
175 * For one func, simply call it directly.
176 * For more than one func, call the chain.
178 #ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
179 ftrace_trace_function
= func
;
181 __ftrace_trace_function
= func
;
182 ftrace_trace_function
= ftrace_test_stop_func
;
189 static int __unregister_ftrace_function(struct ftrace_ops
*ops
)
191 struct ftrace_ops
**p
;
194 * If we are removing the last function, then simply point
195 * to the ftrace_stub.
197 if (ftrace_list
== ops
&& ops
->next
== &ftrace_list_end
) {
198 ftrace_trace_function
= ftrace_stub
;
199 ftrace_list
= &ftrace_list_end
;
203 for (p
= &ftrace_list
; *p
!= &ftrace_list_end
; p
= &(*p
)->next
)
212 if (ftrace_enabled
) {
213 /* If we only have one func left, then call that directly */
214 if (ftrace_list
->next
== &ftrace_list_end
) {
215 ftrace_func_t func
= ftrace_list
->func
;
217 if (!list_empty(&ftrace_pids
)) {
218 set_ftrace_pid_function(func
);
219 func
= ftrace_pid_func
;
221 #ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
222 ftrace_trace_function
= func
;
224 __ftrace_trace_function
= func
;
232 static void ftrace_update_pid_func(void)
236 if (ftrace_trace_function
== ftrace_stub
)
239 #ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
240 func
= ftrace_trace_function
;
242 func
= __ftrace_trace_function
;
245 if (!list_empty(&ftrace_pids
)) {
246 set_ftrace_pid_function(func
);
247 func
= ftrace_pid_func
;
249 if (func
== ftrace_pid_func
)
250 func
= ftrace_pid_function
;
253 #ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
254 ftrace_trace_function
= func
;
256 __ftrace_trace_function
= func
;
260 #ifdef CONFIG_FUNCTION_PROFILER
261 struct ftrace_profile
{
262 struct hlist_node node
;
264 unsigned long counter
;
265 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
266 unsigned long long time
;
270 struct ftrace_profile_page
{
271 struct ftrace_profile_page
*next
;
273 struct ftrace_profile records
[];
276 struct ftrace_profile_stat
{
278 struct hlist_head
*hash
;
279 struct ftrace_profile_page
*pages
;
280 struct ftrace_profile_page
*start
;
281 struct tracer_stat stat
;
284 #define PROFILE_RECORDS_SIZE \
285 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
287 #define PROFILES_PER_PAGE \
288 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
290 static int ftrace_profile_bits __read_mostly
;
291 static int ftrace_profile_enabled __read_mostly
;
293 /* ftrace_profile_lock - synchronize the enable and disable of the profiler */
294 static DEFINE_MUTEX(ftrace_profile_lock
);
296 static DEFINE_PER_CPU(struct ftrace_profile_stat
, ftrace_profile_stats
);
298 #define FTRACE_PROFILE_HASH_SIZE 1024 /* must be power of 2 */
301 function_stat_next(void *v
, int idx
)
303 struct ftrace_profile
*rec
= v
;
304 struct ftrace_profile_page
*pg
;
306 pg
= (struct ftrace_profile_page
*)((unsigned long)rec
& PAGE_MASK
);
312 if ((void *)rec
>= (void *)&pg
->records
[pg
->index
]) {
316 rec
= &pg
->records
[0];
324 static void *function_stat_start(struct tracer_stat
*trace
)
326 struct ftrace_profile_stat
*stat
=
327 container_of(trace
, struct ftrace_profile_stat
, stat
);
329 if (!stat
|| !stat
->start
)
332 return function_stat_next(&stat
->start
->records
[0], 0);
335 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
336 /* function graph compares on total time */
337 static int function_stat_cmp(void *p1
, void *p2
)
339 struct ftrace_profile
*a
= p1
;
340 struct ftrace_profile
*b
= p2
;
342 if (a
->time
< b
->time
)
344 if (a
->time
> b
->time
)
350 /* not function graph compares against hits */
351 static int function_stat_cmp(void *p1
, void *p2
)
353 struct ftrace_profile
*a
= p1
;
354 struct ftrace_profile
*b
= p2
;
356 if (a
->counter
< b
->counter
)
358 if (a
->counter
> b
->counter
)
365 static int function_stat_headers(struct seq_file
*m
)
367 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
368 seq_printf(m
, " Function "
373 seq_printf(m
, " Function Hit\n"
379 static int function_stat_show(struct seq_file
*m
, void *v
)
381 struct ftrace_profile
*rec
= v
;
382 char str
[KSYM_SYMBOL_LEN
];
383 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
384 static DEFINE_MUTEX(mutex
);
385 static struct trace_seq s
;
386 unsigned long long avg
;
389 kallsyms_lookup(rec
->ip
, NULL
, NULL
, NULL
, str
);
390 seq_printf(m
, " %-30.30s %10lu", str
, rec
->counter
);
392 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
395 do_div(avg
, rec
->counter
);
399 trace_print_graph_duration(rec
->time
, &s
);
400 trace_seq_puts(&s
, " ");
401 trace_print_graph_duration(avg
, &s
);
402 trace_print_seq(m
, &s
);
403 mutex_unlock(&mutex
);
410 static void ftrace_profile_reset(struct ftrace_profile_stat
*stat
)
412 struct ftrace_profile_page
*pg
;
414 pg
= stat
->pages
= stat
->start
;
417 memset(pg
->records
, 0, PROFILE_RECORDS_SIZE
);
422 memset(stat
->hash
, 0,
423 FTRACE_PROFILE_HASH_SIZE
* sizeof(struct hlist_head
));
426 int ftrace_profile_pages_init(struct ftrace_profile_stat
*stat
)
428 struct ftrace_profile_page
*pg
;
433 /* If we already allocated, do nothing */
437 stat
->pages
= (void *)get_zeroed_page(GFP_KERNEL
);
441 #ifdef CONFIG_DYNAMIC_FTRACE
442 functions
= ftrace_update_tot_cnt
;
445 * We do not know the number of functions that exist because
446 * dynamic tracing is what counts them. With past experience
447 * we have around 20K functions. That should be more than enough.
448 * It is highly unlikely we will execute every function in
454 pg
= stat
->start
= stat
->pages
;
456 pages
= DIV_ROUND_UP(functions
, PROFILES_PER_PAGE
);
458 for (i
= 0; i
< pages
; i
++) {
459 pg
->next
= (void *)get_zeroed_page(GFP_KERNEL
);
470 unsigned long tmp
= (unsigned long)pg
;
476 free_page((unsigned long)stat
->pages
);
483 static int ftrace_profile_init_cpu(int cpu
)
485 struct ftrace_profile_stat
*stat
;
488 stat
= &per_cpu(ftrace_profile_stats
, cpu
);
491 /* If the profile is already created, simply reset it */
492 ftrace_profile_reset(stat
);
497 * We are profiling all functions, but usually only a few thousand
498 * functions are hit. We'll make a hash of 1024 items.
500 size
= FTRACE_PROFILE_HASH_SIZE
;
502 stat
->hash
= kzalloc(sizeof(struct hlist_head
) * size
, GFP_KERNEL
);
507 if (!ftrace_profile_bits
) {
510 for (; size
; size
>>= 1)
511 ftrace_profile_bits
++;
514 /* Preallocate the function profiling pages */
515 if (ftrace_profile_pages_init(stat
) < 0) {
524 static int ftrace_profile_init(void)
529 for_each_online_cpu(cpu
) {
530 ret
= ftrace_profile_init_cpu(cpu
);
538 /* interrupts must be disabled */
539 static struct ftrace_profile
*
540 ftrace_find_profiled_func(struct ftrace_profile_stat
*stat
, unsigned long ip
)
542 struct ftrace_profile
*rec
;
543 struct hlist_head
*hhd
;
544 struct hlist_node
*n
;
547 key
= hash_long(ip
, ftrace_profile_bits
);
548 hhd
= &stat
->hash
[key
];
550 if (hlist_empty(hhd
))
553 hlist_for_each_entry_rcu(rec
, n
, hhd
, node
) {
561 static void ftrace_add_profile(struct ftrace_profile_stat
*stat
,
562 struct ftrace_profile
*rec
)
566 key
= hash_long(rec
->ip
, ftrace_profile_bits
);
567 hlist_add_head_rcu(&rec
->node
, &stat
->hash
[key
]);
571 * The memory is already allocated, this simply finds a new record to use.
573 static struct ftrace_profile
*
574 ftrace_profile_alloc(struct ftrace_profile_stat
*stat
, unsigned long ip
)
576 struct ftrace_profile
*rec
= NULL
;
578 /* prevent recursion (from NMIs) */
579 if (atomic_inc_return(&stat
->disabled
) != 1)
583 * Try to find the function again since an NMI
584 * could have added it
586 rec
= ftrace_find_profiled_func(stat
, ip
);
590 if (stat
->pages
->index
== PROFILES_PER_PAGE
) {
591 if (!stat
->pages
->next
)
593 stat
->pages
= stat
->pages
->next
;
596 rec
= &stat
->pages
->records
[stat
->pages
->index
++];
598 ftrace_add_profile(stat
, rec
);
601 atomic_dec(&stat
->disabled
);
607 function_profile_call(unsigned long ip
, unsigned long parent_ip
)
609 struct ftrace_profile_stat
*stat
;
610 struct ftrace_profile
*rec
;
613 if (!ftrace_profile_enabled
)
616 local_irq_save(flags
);
618 stat
= &__get_cpu_var(ftrace_profile_stats
);
619 if (!stat
->hash
|| !ftrace_profile_enabled
)
622 rec
= ftrace_find_profiled_func(stat
, ip
);
624 rec
= ftrace_profile_alloc(stat
, ip
);
631 local_irq_restore(flags
);
634 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
635 static int profile_graph_entry(struct ftrace_graph_ent
*trace
)
637 function_profile_call(trace
->func
, 0);
641 static void profile_graph_return(struct ftrace_graph_ret
*trace
)
643 struct ftrace_profile_stat
*stat
;
644 unsigned long long calltime
;
645 struct ftrace_profile
*rec
;
648 local_irq_save(flags
);
649 stat
= &__get_cpu_var(ftrace_profile_stats
);
650 if (!stat
->hash
|| !ftrace_profile_enabled
)
653 calltime
= trace
->rettime
- trace
->calltime
;
655 if (!(trace_flags
& TRACE_ITER_GRAPH_TIME
)) {
658 index
= trace
->depth
;
660 /* Append this call time to the parent time to subtract */
662 current
->ret_stack
[index
- 1].subtime
+= calltime
;
664 if (current
->ret_stack
[index
].subtime
< calltime
)
665 calltime
-= current
->ret_stack
[index
].subtime
;
670 rec
= ftrace_find_profiled_func(stat
, trace
->func
);
672 rec
->time
+= calltime
;
675 local_irq_restore(flags
);
678 static int register_ftrace_profiler(void)
680 return register_ftrace_graph(&profile_graph_return
,
681 &profile_graph_entry
);
684 static void unregister_ftrace_profiler(void)
686 unregister_ftrace_graph();
689 static struct ftrace_ops ftrace_profile_ops __read_mostly
=
691 .func
= function_profile_call
,
694 static int register_ftrace_profiler(void)
696 return register_ftrace_function(&ftrace_profile_ops
);
699 static void unregister_ftrace_profiler(void)
701 unregister_ftrace_function(&ftrace_profile_ops
);
703 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
706 ftrace_profile_write(struct file
*filp
, const char __user
*ubuf
,
707 size_t cnt
, loff_t
*ppos
)
710 char buf
[64]; /* big enough to hold a number */
713 if (cnt
>= sizeof(buf
))
716 if (copy_from_user(&buf
, ubuf
, cnt
))
721 ret
= strict_strtoul(buf
, 10, &val
);
727 mutex_lock(&ftrace_profile_lock
);
728 if (ftrace_profile_enabled
^ val
) {
730 ret
= ftrace_profile_init();
736 ret
= register_ftrace_profiler();
741 ftrace_profile_enabled
= 1;
743 ftrace_profile_enabled
= 0;
745 * unregister_ftrace_profiler calls stop_machine
746 * so this acts like an synchronize_sched.
748 unregister_ftrace_profiler();
752 mutex_unlock(&ftrace_profile_lock
);
760 ftrace_profile_read(struct file
*filp
, char __user
*ubuf
,
761 size_t cnt
, loff_t
*ppos
)
763 char buf
[64]; /* big enough to hold a number */
766 r
= sprintf(buf
, "%u\n", ftrace_profile_enabled
);
767 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
770 static const struct file_operations ftrace_profile_fops
= {
771 .open
= tracing_open_generic
,
772 .read
= ftrace_profile_read
,
773 .write
= ftrace_profile_write
,
776 /* used to initialize the real stat files */
777 static struct tracer_stat function_stats __initdata
= {
779 .stat_start
= function_stat_start
,
780 .stat_next
= function_stat_next
,
781 .stat_cmp
= function_stat_cmp
,
782 .stat_headers
= function_stat_headers
,
783 .stat_show
= function_stat_show
786 static __init
void ftrace_profile_debugfs(struct dentry
*d_tracer
)
788 struct ftrace_profile_stat
*stat
;
789 struct dentry
*entry
;
794 for_each_possible_cpu(cpu
) {
795 stat
= &per_cpu(ftrace_profile_stats
, cpu
);
797 /* allocate enough for function name + cpu number */
798 name
= kmalloc(32, GFP_KERNEL
);
801 * The files created are permanent, if something happens
802 * we still do not free memory.
805 "Could not allocate stat file for cpu %d\n",
809 stat
->stat
= function_stats
;
810 snprintf(name
, 32, "function%d", cpu
);
811 stat
->stat
.name
= name
;
812 ret
= register_stat_tracer(&stat
->stat
);
815 "Could not register function stat for cpu %d\n",
822 entry
= debugfs_create_file("function_profile_enabled", 0644,
823 d_tracer
, NULL
, &ftrace_profile_fops
);
825 pr_warning("Could not create debugfs "
826 "'function_profile_enabled' entry\n");
829 #else /* CONFIG_FUNCTION_PROFILER */
830 static __init
void ftrace_profile_debugfs(struct dentry
*d_tracer
)
833 #endif /* CONFIG_FUNCTION_PROFILER */
835 static struct pid
* const ftrace_swapper_pid
= &init_struct_pid
;
837 #ifdef CONFIG_DYNAMIC_FTRACE
839 #ifndef CONFIG_FTRACE_MCOUNT_RECORD
840 # error Dynamic ftrace depends on MCOUNT_RECORD
843 static struct hlist_head ftrace_func_hash
[FTRACE_FUNC_HASHSIZE
] __read_mostly
;
845 struct ftrace_func_probe
{
846 struct hlist_node node
;
847 struct ftrace_probe_ops
*ops
;
855 FTRACE_ENABLE_CALLS
= (1 << 0),
856 FTRACE_DISABLE_CALLS
= (1 << 1),
857 FTRACE_UPDATE_TRACE_FUNC
= (1 << 2),
858 FTRACE_ENABLE_MCOUNT
= (1 << 3),
859 FTRACE_DISABLE_MCOUNT
= (1 << 4),
860 FTRACE_START_FUNC_RET
= (1 << 5),
861 FTRACE_STOP_FUNC_RET
= (1 << 6),
864 static int ftrace_filtered
;
866 static struct dyn_ftrace
*ftrace_new_addrs
;
868 static DEFINE_MUTEX(ftrace_regex_lock
);
871 struct ftrace_page
*next
;
873 struct dyn_ftrace records
[];
876 #define ENTRIES_PER_PAGE \
877 ((PAGE_SIZE - sizeof(struct ftrace_page)) / sizeof(struct dyn_ftrace))
879 /* estimate from running different kernels */
880 #define NR_TO_INIT 10000
882 static struct ftrace_page
*ftrace_pages_start
;
883 static struct ftrace_page
*ftrace_pages
;
885 static struct dyn_ftrace
*ftrace_free_records
;
888 * This is a double for. Do not use 'break' to break out of the loop,
889 * you must use a goto.
891 #define do_for_each_ftrace_rec(pg, rec) \
892 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
894 for (_____i = 0; _____i < pg->index; _____i++) { \
895 rec = &pg->records[_____i];
897 #define while_for_each_ftrace_rec() \
901 static void ftrace_free_rec(struct dyn_ftrace
*rec
)
903 rec
->freelist
= ftrace_free_records
;
904 ftrace_free_records
= rec
;
905 rec
->flags
|= FTRACE_FL_FREE
;
908 static struct dyn_ftrace
*ftrace_alloc_dyn_node(unsigned long ip
)
910 struct dyn_ftrace
*rec
;
912 /* First check for freed records */
913 if (ftrace_free_records
) {
914 rec
= ftrace_free_records
;
916 if (unlikely(!(rec
->flags
& FTRACE_FL_FREE
))) {
917 FTRACE_WARN_ON_ONCE(1);
918 ftrace_free_records
= NULL
;
922 ftrace_free_records
= rec
->freelist
;
923 memset(rec
, 0, sizeof(*rec
));
927 if (ftrace_pages
->index
== ENTRIES_PER_PAGE
) {
928 if (!ftrace_pages
->next
) {
929 /* allocate another page */
931 (void *)get_zeroed_page(GFP_KERNEL
);
932 if (!ftrace_pages
->next
)
935 ftrace_pages
= ftrace_pages
->next
;
938 return &ftrace_pages
->records
[ftrace_pages
->index
++];
941 static struct dyn_ftrace
*
942 ftrace_record_ip(unsigned long ip
)
944 struct dyn_ftrace
*rec
;
949 rec
= ftrace_alloc_dyn_node(ip
);
954 rec
->newlist
= ftrace_new_addrs
;
955 ftrace_new_addrs
= rec
;
960 static void print_ip_ins(const char *fmt
, unsigned char *p
)
964 printk(KERN_CONT
"%s", fmt
);
966 for (i
= 0; i
< MCOUNT_INSN_SIZE
; i
++)
967 printk(KERN_CONT
"%s%02x", i
? ":" : "", p
[i
]);
970 static void ftrace_bug(int failed
, unsigned long ip
)
974 FTRACE_WARN_ON_ONCE(1);
975 pr_info("ftrace faulted on modifying ");
979 FTRACE_WARN_ON_ONCE(1);
980 pr_info("ftrace failed to modify ");
982 print_ip_ins(" actual: ", (unsigned char *)ip
);
983 printk(KERN_CONT
"\n");
986 FTRACE_WARN_ON_ONCE(1);
987 pr_info("ftrace faulted on writing ");
991 FTRACE_WARN_ON_ONCE(1);
992 pr_info("ftrace faulted on unknown error ");
998 /* Return 1 if the address range is reserved for ftrace */
999 int ftrace_text_reserved(void *start
, void *end
)
1001 struct dyn_ftrace
*rec
;
1002 struct ftrace_page
*pg
;
1004 do_for_each_ftrace_rec(pg
, rec
) {
1005 if (rec
->ip
<= (unsigned long)end
&&
1006 rec
->ip
+ MCOUNT_INSN_SIZE
> (unsigned long)start
)
1008 } while_for_each_ftrace_rec();
1014 __ftrace_replace_code(struct dyn_ftrace
*rec
, int enable
)
1016 unsigned long ftrace_addr
;
1017 unsigned long flag
= 0UL;
1019 ftrace_addr
= (unsigned long)FTRACE_ADDR
;
1022 * If this record is not to be traced or we want to disable it,
1025 * If we want to enable it and filtering is off, then enable it.
1027 * If we want to enable it and filtering is on, enable it only if
1030 if (enable
&& !(rec
->flags
& FTRACE_FL_NOTRACE
)) {
1031 if (!ftrace_filtered
|| (rec
->flags
& FTRACE_FL_FILTER
))
1032 flag
= FTRACE_FL_ENABLED
;
1035 /* If the state of this record hasn't changed, then do nothing */
1036 if ((rec
->flags
& FTRACE_FL_ENABLED
) == flag
)
1040 rec
->flags
|= FTRACE_FL_ENABLED
;
1041 return ftrace_make_call(rec
, ftrace_addr
);
1044 rec
->flags
&= ~FTRACE_FL_ENABLED
;
1045 return ftrace_make_nop(NULL
, rec
, ftrace_addr
);
1048 static void ftrace_replace_code(int enable
)
1050 struct dyn_ftrace
*rec
;
1051 struct ftrace_page
*pg
;
1054 do_for_each_ftrace_rec(pg
, rec
) {
1056 * Skip over free records, records that have
1057 * failed and not converted.
1059 if (rec
->flags
& FTRACE_FL_FREE
||
1060 rec
->flags
& FTRACE_FL_FAILED
||
1061 !(rec
->flags
& FTRACE_FL_CONVERTED
))
1064 failed
= __ftrace_replace_code(rec
, enable
);
1066 rec
->flags
|= FTRACE_FL_FAILED
;
1067 ftrace_bug(failed
, rec
->ip
);
1068 /* Stop processing */
1071 } while_for_each_ftrace_rec();
1075 ftrace_code_disable(struct module
*mod
, struct dyn_ftrace
*rec
)
1082 ret
= ftrace_make_nop(mod
, rec
, MCOUNT_ADDR
);
1084 ftrace_bug(ret
, ip
);
1085 rec
->flags
|= FTRACE_FL_FAILED
;
1092 * archs can override this function if they must do something
1093 * before the modifying code is performed.
1095 int __weak
ftrace_arch_code_modify_prepare(void)
1101 * archs can override this function if they must do something
1102 * after the modifying code is performed.
1104 int __weak
ftrace_arch_code_modify_post_process(void)
1109 static int __ftrace_modify_code(void *data
)
1111 int *command
= data
;
1113 if (*command
& FTRACE_ENABLE_CALLS
)
1114 ftrace_replace_code(1);
1115 else if (*command
& FTRACE_DISABLE_CALLS
)
1116 ftrace_replace_code(0);
1118 if (*command
& FTRACE_UPDATE_TRACE_FUNC
)
1119 ftrace_update_ftrace_func(ftrace_trace_function
);
1121 if (*command
& FTRACE_START_FUNC_RET
)
1122 ftrace_enable_ftrace_graph_caller();
1123 else if (*command
& FTRACE_STOP_FUNC_RET
)
1124 ftrace_disable_ftrace_graph_caller();
1129 static void ftrace_run_update_code(int command
)
1133 ret
= ftrace_arch_code_modify_prepare();
1134 FTRACE_WARN_ON(ret
);
1138 stop_machine(__ftrace_modify_code
, &command
, NULL
);
1140 ret
= ftrace_arch_code_modify_post_process();
1141 FTRACE_WARN_ON(ret
);
1144 static ftrace_func_t saved_ftrace_func
;
1145 static int ftrace_start_up
;
1147 static void ftrace_startup_enable(int command
)
1149 if (saved_ftrace_func
!= ftrace_trace_function
) {
1150 saved_ftrace_func
= ftrace_trace_function
;
1151 command
|= FTRACE_UPDATE_TRACE_FUNC
;
1154 if (!command
|| !ftrace_enabled
)
1157 ftrace_run_update_code(command
);
1160 static void ftrace_startup(int command
)
1162 if (unlikely(ftrace_disabled
))
1166 command
|= FTRACE_ENABLE_CALLS
;
1168 ftrace_startup_enable(command
);
1171 static void ftrace_shutdown(int command
)
1173 if (unlikely(ftrace_disabled
))
1178 * Just warn in case of unbalance, no need to kill ftrace, it's not
1179 * critical but the ftrace_call callers may be never nopped again after
1180 * further ftrace uses.
1182 WARN_ON_ONCE(ftrace_start_up
< 0);
1184 if (!ftrace_start_up
)
1185 command
|= FTRACE_DISABLE_CALLS
;
1187 if (saved_ftrace_func
!= ftrace_trace_function
) {
1188 saved_ftrace_func
= ftrace_trace_function
;
1189 command
|= FTRACE_UPDATE_TRACE_FUNC
;
1192 if (!command
|| !ftrace_enabled
)
1195 ftrace_run_update_code(command
);
1198 static void ftrace_startup_sysctl(void)
1200 int command
= FTRACE_ENABLE_MCOUNT
;
1202 if (unlikely(ftrace_disabled
))
1205 /* Force update next time */
1206 saved_ftrace_func
= NULL
;
1207 /* ftrace_start_up is true if we want ftrace running */
1208 if (ftrace_start_up
)
1209 command
|= FTRACE_ENABLE_CALLS
;
1211 ftrace_run_update_code(command
);
1214 static void ftrace_shutdown_sysctl(void)
1216 int command
= FTRACE_DISABLE_MCOUNT
;
1218 if (unlikely(ftrace_disabled
))
1221 /* ftrace_start_up is true if ftrace is running */
1222 if (ftrace_start_up
)
1223 command
|= FTRACE_DISABLE_CALLS
;
1225 ftrace_run_update_code(command
);
1228 static cycle_t ftrace_update_time
;
1229 static unsigned long ftrace_update_cnt
;
1230 unsigned long ftrace_update_tot_cnt
;
1232 static int ftrace_update_code(struct module
*mod
)
1234 struct dyn_ftrace
*p
;
1235 cycle_t start
, stop
;
1237 start
= ftrace_now(raw_smp_processor_id());
1238 ftrace_update_cnt
= 0;
1240 while (ftrace_new_addrs
) {
1242 /* If something went wrong, bail without enabling anything */
1243 if (unlikely(ftrace_disabled
))
1246 p
= ftrace_new_addrs
;
1247 ftrace_new_addrs
= p
->newlist
;
1251 * Do the initial record convertion from mcount jump
1252 * to the NOP instructions.
1254 if (!ftrace_code_disable(mod
, p
)) {
1259 p
->flags
|= FTRACE_FL_CONVERTED
;
1260 ftrace_update_cnt
++;
1263 * If the tracing is enabled, go ahead and enable the record.
1265 * The reason not to enable the record immediatelly is the
1266 * inherent check of ftrace_make_nop/ftrace_make_call for
1267 * correct previous instructions. Making first the NOP
1268 * conversion puts the module to the correct state, thus
1269 * passing the ftrace_make_call check.
1271 if (ftrace_start_up
) {
1272 int failed
= __ftrace_replace_code(p
, 1);
1274 ftrace_bug(failed
, p
->ip
);
1280 stop
= ftrace_now(raw_smp_processor_id());
1281 ftrace_update_time
= stop
- start
;
1282 ftrace_update_tot_cnt
+= ftrace_update_cnt
;
1287 static int __init
ftrace_dyn_table_alloc(unsigned long num_to_init
)
1289 struct ftrace_page
*pg
;
1293 /* allocate a few pages */
1294 ftrace_pages_start
= (void *)get_zeroed_page(GFP_KERNEL
);
1295 if (!ftrace_pages_start
)
1299 * Allocate a few more pages.
1301 * TODO: have some parser search vmlinux before
1302 * final linking to find all calls to ftrace.
1304 * a) know how many pages to allocate.
1306 * b) set up the table then.
1308 * The dynamic code is still necessary for
1312 pg
= ftrace_pages
= ftrace_pages_start
;
1314 cnt
= num_to_init
/ ENTRIES_PER_PAGE
;
1315 pr_info("ftrace: allocating %ld entries in %d pages\n",
1316 num_to_init
, cnt
+ 1);
1318 for (i
= 0; i
< cnt
; i
++) {
1319 pg
->next
= (void *)get_zeroed_page(GFP_KERNEL
);
1321 /* If we fail, we'll try later anyway */
1332 FTRACE_ITER_FILTER
= (1 << 0),
1333 FTRACE_ITER_NOTRACE
= (1 << 1),
1334 FTRACE_ITER_FAILURES
= (1 << 2),
1335 FTRACE_ITER_PRINTALL
= (1 << 3),
1336 FTRACE_ITER_HASH
= (1 << 4),
1339 #define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
1341 struct ftrace_iterator
{
1342 struct ftrace_page
*pg
;
1346 struct trace_parser parser
;
1350 t_hash_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
1352 struct ftrace_iterator
*iter
= m
->private;
1353 struct hlist_node
*hnd
= v
;
1354 struct hlist_head
*hhd
;
1356 WARN_ON(!(iter
->flags
& FTRACE_ITER_HASH
));
1361 if (iter
->hidx
>= FTRACE_FUNC_HASHSIZE
)
1364 hhd
= &ftrace_func_hash
[iter
->hidx
];
1366 if (hlist_empty(hhd
)) {
1385 static void *t_hash_start(struct seq_file
*m
, loff_t
*pos
)
1387 struct ftrace_iterator
*iter
= m
->private;
1391 if (!(iter
->flags
& FTRACE_ITER_HASH
))
1394 iter
->flags
|= FTRACE_ITER_HASH
;
1397 for (l
= 0; l
<= *pos
; ) {
1398 p
= t_hash_next(m
, p
, &l
);
1405 static int t_hash_show(struct seq_file
*m
, void *v
)
1407 struct ftrace_func_probe
*rec
;
1408 struct hlist_node
*hnd
= v
;
1410 rec
= hlist_entry(hnd
, struct ftrace_func_probe
, node
);
1412 if (rec
->ops
->print
)
1413 return rec
->ops
->print(m
, rec
->ip
, rec
->ops
, rec
->data
);
1415 seq_printf(m
, "%ps:%ps", (void *)rec
->ip
, (void *)rec
->ops
->func
);
1418 seq_printf(m
, ":%p", rec
->data
);
1425 t_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
1427 struct ftrace_iterator
*iter
= m
->private;
1428 struct dyn_ftrace
*rec
= NULL
;
1430 if (iter
->flags
& FTRACE_ITER_HASH
)
1431 return t_hash_next(m
, v
, pos
);
1435 if (iter
->flags
& FTRACE_ITER_PRINTALL
)
1439 if (iter
->idx
>= iter
->pg
->index
) {
1440 if (iter
->pg
->next
) {
1441 iter
->pg
= iter
->pg
->next
;
1446 rec
= &iter
->pg
->records
[iter
->idx
++];
1447 if ((rec
->flags
& FTRACE_FL_FREE
) ||
1449 (!(iter
->flags
& FTRACE_ITER_FAILURES
) &&
1450 (rec
->flags
& FTRACE_FL_FAILED
)) ||
1452 ((iter
->flags
& FTRACE_ITER_FAILURES
) &&
1453 !(rec
->flags
& FTRACE_FL_FAILED
)) ||
1455 ((iter
->flags
& FTRACE_ITER_FILTER
) &&
1456 !(rec
->flags
& FTRACE_FL_FILTER
)) ||
1458 ((iter
->flags
& FTRACE_ITER_NOTRACE
) &&
1459 !(rec
->flags
& FTRACE_FL_NOTRACE
))) {
1468 static void *t_start(struct seq_file
*m
, loff_t
*pos
)
1470 struct ftrace_iterator
*iter
= m
->private;
1474 mutex_lock(&ftrace_lock
);
1476 * For set_ftrace_filter reading, if we have the filter
1477 * off, we can short cut and just print out that all
1478 * functions are enabled.
1480 if (iter
->flags
& FTRACE_ITER_FILTER
&& !ftrace_filtered
) {
1482 return t_hash_start(m
, pos
);
1483 iter
->flags
|= FTRACE_ITER_PRINTALL
;
1487 if (iter
->flags
& FTRACE_ITER_HASH
)
1488 return t_hash_start(m
, pos
);
1490 iter
->pg
= ftrace_pages_start
;
1492 for (l
= 0; l
<= *pos
; ) {
1493 p
= t_next(m
, p
, &l
);
1498 if (!p
&& iter
->flags
& FTRACE_ITER_FILTER
)
1499 return t_hash_start(m
, pos
);
1504 static void t_stop(struct seq_file
*m
, void *p
)
1506 mutex_unlock(&ftrace_lock
);
1509 static int t_show(struct seq_file
*m
, void *v
)
1511 struct ftrace_iterator
*iter
= m
->private;
1512 struct dyn_ftrace
*rec
= v
;
1514 if (iter
->flags
& FTRACE_ITER_HASH
)
1515 return t_hash_show(m
, v
);
1517 if (iter
->flags
& FTRACE_ITER_PRINTALL
) {
1518 seq_printf(m
, "#### all functions enabled ####\n");
1525 seq_printf(m
, "%ps\n", (void *)rec
->ip
);
1530 static const struct seq_operations show_ftrace_seq_ops
= {
1538 ftrace_avail_open(struct inode
*inode
, struct file
*file
)
1540 struct ftrace_iterator
*iter
;
1543 if (unlikely(ftrace_disabled
))
1546 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
1550 iter
->pg
= ftrace_pages_start
;
1552 ret
= seq_open(file
, &show_ftrace_seq_ops
);
1554 struct seq_file
*m
= file
->private_data
;
1565 ftrace_failures_open(struct inode
*inode
, struct file
*file
)
1569 struct ftrace_iterator
*iter
;
1571 ret
= ftrace_avail_open(inode
, file
);
1573 m
= (struct seq_file
*)file
->private_data
;
1574 iter
= (struct ftrace_iterator
*)m
->private;
1575 iter
->flags
= FTRACE_ITER_FAILURES
;
1582 static void ftrace_filter_reset(int enable
)
1584 struct ftrace_page
*pg
;
1585 struct dyn_ftrace
*rec
;
1586 unsigned long type
= enable
? FTRACE_FL_FILTER
: FTRACE_FL_NOTRACE
;
1588 mutex_lock(&ftrace_lock
);
1590 ftrace_filtered
= 0;
1591 do_for_each_ftrace_rec(pg
, rec
) {
1592 if (rec
->flags
& FTRACE_FL_FAILED
)
1594 rec
->flags
&= ~type
;
1595 } while_for_each_ftrace_rec();
1596 mutex_unlock(&ftrace_lock
);
1600 ftrace_regex_open(struct inode
*inode
, struct file
*file
, int enable
)
1602 struct ftrace_iterator
*iter
;
1605 if (unlikely(ftrace_disabled
))
1608 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
1612 if (trace_parser_get_init(&iter
->parser
, FTRACE_BUFF_MAX
)) {
1617 mutex_lock(&ftrace_regex_lock
);
1618 if ((file
->f_mode
& FMODE_WRITE
) &&
1619 (file
->f_flags
& O_TRUNC
))
1620 ftrace_filter_reset(enable
);
1622 if (file
->f_mode
& FMODE_READ
) {
1623 iter
->pg
= ftrace_pages_start
;
1624 iter
->flags
= enable
? FTRACE_ITER_FILTER
:
1625 FTRACE_ITER_NOTRACE
;
1627 ret
= seq_open(file
, &show_ftrace_seq_ops
);
1629 struct seq_file
*m
= file
->private_data
;
1632 trace_parser_put(&iter
->parser
);
1636 file
->private_data
= iter
;
1637 mutex_unlock(&ftrace_regex_lock
);
1643 ftrace_filter_open(struct inode
*inode
, struct file
*file
)
1645 return ftrace_regex_open(inode
, file
, 1);
1649 ftrace_notrace_open(struct inode
*inode
, struct file
*file
)
1651 return ftrace_regex_open(inode
, file
, 0);
1655 ftrace_regex_lseek(struct file
*file
, loff_t offset
, int origin
)
1659 if (file
->f_mode
& FMODE_READ
)
1660 ret
= seq_lseek(file
, offset
, origin
);
1662 file
->f_pos
= ret
= 1;
1667 static int ftrace_match(char *str
, char *regex
, int len
, int type
)
1674 if (strcmp(str
, regex
) == 0)
1677 case MATCH_FRONT_ONLY
:
1678 if (strncmp(str
, regex
, len
) == 0)
1681 case MATCH_MIDDLE_ONLY
:
1682 if (strstr(str
, regex
))
1685 case MATCH_END_ONLY
:
1687 if (slen
>= len
&& memcmp(str
+ slen
- len
, regex
, len
) == 0)
1696 ftrace_match_record(struct dyn_ftrace
*rec
, char *regex
, int len
, int type
)
1698 char str
[KSYM_SYMBOL_LEN
];
1700 kallsyms_lookup(rec
->ip
, NULL
, NULL
, NULL
, str
);
1701 return ftrace_match(str
, regex
, len
, type
);
1704 static int ftrace_match_records(char *buff
, int len
, int enable
)
1706 unsigned int search_len
;
1707 struct ftrace_page
*pg
;
1708 struct dyn_ftrace
*rec
;
1715 flag
= enable
? FTRACE_FL_FILTER
: FTRACE_FL_NOTRACE
;
1716 type
= filter_parse_regex(buff
, len
, &search
, ¬);
1718 search_len
= strlen(search
);
1720 mutex_lock(&ftrace_lock
);
1721 do_for_each_ftrace_rec(pg
, rec
) {
1723 if (rec
->flags
& FTRACE_FL_FAILED
)
1726 if (ftrace_match_record(rec
, search
, search_len
, type
)) {
1728 rec
->flags
&= ~flag
;
1734 * Only enable filtering if we have a function that
1737 if (enable
&& (rec
->flags
& FTRACE_FL_FILTER
))
1738 ftrace_filtered
= 1;
1739 } while_for_each_ftrace_rec();
1740 mutex_unlock(&ftrace_lock
);
1746 ftrace_match_module_record(struct dyn_ftrace
*rec
, char *mod
,
1747 char *regex
, int len
, int type
)
1749 char str
[KSYM_SYMBOL_LEN
];
1752 kallsyms_lookup(rec
->ip
, NULL
, NULL
, &modname
, str
);
1754 if (!modname
|| strcmp(modname
, mod
))
1757 /* blank search means to match all funcs in the mod */
1759 return ftrace_match(str
, regex
, len
, type
);
1764 static int ftrace_match_module_records(char *buff
, char *mod
, int enable
)
1766 unsigned search_len
= 0;
1767 struct ftrace_page
*pg
;
1768 struct dyn_ftrace
*rec
;
1769 int type
= MATCH_FULL
;
1770 char *search
= buff
;
1775 flag
= enable
? FTRACE_FL_FILTER
: FTRACE_FL_NOTRACE
;
1777 /* blank or '*' mean the same */
1778 if (strcmp(buff
, "*") == 0)
1781 /* handle the case of 'dont filter this module' */
1782 if (strcmp(buff
, "!") == 0 || strcmp(buff
, "!*") == 0) {
1788 type
= filter_parse_regex(buff
, strlen(buff
), &search
, ¬);
1789 search_len
= strlen(search
);
1792 mutex_lock(&ftrace_lock
);
1793 do_for_each_ftrace_rec(pg
, rec
) {
1795 if (rec
->flags
& FTRACE_FL_FAILED
)
1798 if (ftrace_match_module_record(rec
, mod
,
1799 search
, search_len
, type
)) {
1801 rec
->flags
&= ~flag
;
1806 if (enable
&& (rec
->flags
& FTRACE_FL_FILTER
))
1807 ftrace_filtered
= 1;
1809 } while_for_each_ftrace_rec();
1810 mutex_unlock(&ftrace_lock
);
1816 * We register the module command as a template to show others how
1817 * to register the a command as well.
1821 ftrace_mod_callback(char *func
, char *cmd
, char *param
, int enable
)
1826 * cmd == 'mod' because we only registered this func
1827 * for the 'mod' ftrace_func_command.
1828 * But if you register one func with multiple commands,
1829 * you can tell which command was used by the cmd
1833 /* we must have a module name */
1837 mod
= strsep(¶m
, ":");
1841 if (ftrace_match_module_records(func
, mod
, enable
))
1846 static struct ftrace_func_command ftrace_mod_cmd
= {
1848 .func
= ftrace_mod_callback
,
1851 static int __init
ftrace_mod_cmd_init(void)
1853 return register_ftrace_command(&ftrace_mod_cmd
);
1855 device_initcall(ftrace_mod_cmd_init
);
1858 function_trace_probe_call(unsigned long ip
, unsigned long parent_ip
)
1860 struct ftrace_func_probe
*entry
;
1861 struct hlist_head
*hhd
;
1862 struct hlist_node
*n
;
1866 key
= hash_long(ip
, FTRACE_HASH_BITS
);
1868 hhd
= &ftrace_func_hash
[key
];
1870 if (hlist_empty(hhd
))
1874 * Disable preemption for these calls to prevent a RCU grace
1875 * period. This syncs the hash iteration and freeing of items
1876 * on the hash. rcu_read_lock is too dangerous here.
1878 resched
= ftrace_preempt_disable();
1879 hlist_for_each_entry_rcu(entry
, n
, hhd
, node
) {
1880 if (entry
->ip
== ip
)
1881 entry
->ops
->func(ip
, parent_ip
, &entry
->data
);
1883 ftrace_preempt_enable(resched
);
1886 static struct ftrace_ops trace_probe_ops __read_mostly
=
1888 .func
= function_trace_probe_call
,
1891 static int ftrace_probe_registered
;
1893 static void __enable_ftrace_function_probe(void)
1897 if (ftrace_probe_registered
)
1900 for (i
= 0; i
< FTRACE_FUNC_HASHSIZE
; i
++) {
1901 struct hlist_head
*hhd
= &ftrace_func_hash
[i
];
1905 /* Nothing registered? */
1906 if (i
== FTRACE_FUNC_HASHSIZE
)
1909 __register_ftrace_function(&trace_probe_ops
);
1911 ftrace_probe_registered
= 1;
1914 static void __disable_ftrace_function_probe(void)
1918 if (!ftrace_probe_registered
)
1921 for (i
= 0; i
< FTRACE_FUNC_HASHSIZE
; i
++) {
1922 struct hlist_head
*hhd
= &ftrace_func_hash
[i
];
1927 /* no more funcs left */
1928 __unregister_ftrace_function(&trace_probe_ops
);
1930 ftrace_probe_registered
= 0;
1934 static void ftrace_free_entry_rcu(struct rcu_head
*rhp
)
1936 struct ftrace_func_probe
*entry
=
1937 container_of(rhp
, struct ftrace_func_probe
, rcu
);
1939 if (entry
->ops
->free
)
1940 entry
->ops
->free(&entry
->data
);
1946 register_ftrace_function_probe(char *glob
, struct ftrace_probe_ops
*ops
,
1949 struct ftrace_func_probe
*entry
;
1950 struct ftrace_page
*pg
;
1951 struct dyn_ftrace
*rec
;
1957 type
= filter_parse_regex(glob
, strlen(glob
), &search
, ¬);
1958 len
= strlen(search
);
1960 /* we do not support '!' for function probes */
1964 mutex_lock(&ftrace_lock
);
1965 do_for_each_ftrace_rec(pg
, rec
) {
1967 if (rec
->flags
& FTRACE_FL_FAILED
)
1970 if (!ftrace_match_record(rec
, search
, len
, type
))
1973 entry
= kmalloc(sizeof(*entry
), GFP_KERNEL
);
1975 /* If we did not process any, then return error */
1986 * The caller might want to do something special
1987 * for each function we find. We call the callback
1988 * to give the caller an opportunity to do so.
1990 if (ops
->callback
) {
1991 if (ops
->callback(rec
->ip
, &entry
->data
) < 0) {
1992 /* caller does not like this func */
1999 entry
->ip
= rec
->ip
;
2001 key
= hash_long(entry
->ip
, FTRACE_HASH_BITS
);
2002 hlist_add_head_rcu(&entry
->node
, &ftrace_func_hash
[key
]);
2004 } while_for_each_ftrace_rec();
2005 __enable_ftrace_function_probe();
2008 mutex_unlock(&ftrace_lock
);
2014 PROBE_TEST_FUNC
= 1,
2019 __unregister_ftrace_function_probe(char *glob
, struct ftrace_probe_ops
*ops
,
2020 void *data
, int flags
)
2022 struct ftrace_func_probe
*entry
;
2023 struct hlist_node
*n
, *tmp
;
2024 char str
[KSYM_SYMBOL_LEN
];
2025 int type
= MATCH_FULL
;
2029 if (glob
&& (strcmp(glob
, "*") == 0 || !strlen(glob
)))
2034 type
= filter_parse_regex(glob
, strlen(glob
), &search
, ¬);
2035 len
= strlen(search
);
2037 /* we do not support '!' for function probes */
2042 mutex_lock(&ftrace_lock
);
2043 for (i
= 0; i
< FTRACE_FUNC_HASHSIZE
; i
++) {
2044 struct hlist_head
*hhd
= &ftrace_func_hash
[i
];
2046 hlist_for_each_entry_safe(entry
, n
, tmp
, hhd
, node
) {
2048 /* break up if statements for readability */
2049 if ((flags
& PROBE_TEST_FUNC
) && entry
->ops
!= ops
)
2052 if ((flags
& PROBE_TEST_DATA
) && entry
->data
!= data
)
2055 /* do this last, since it is the most expensive */
2057 kallsyms_lookup(entry
->ip
, NULL
, NULL
,
2059 if (!ftrace_match(str
, glob
, len
, type
))
2063 hlist_del(&entry
->node
);
2064 call_rcu(&entry
->rcu
, ftrace_free_entry_rcu
);
2067 __disable_ftrace_function_probe();
2068 mutex_unlock(&ftrace_lock
);
2072 unregister_ftrace_function_probe(char *glob
, struct ftrace_probe_ops
*ops
,
2075 __unregister_ftrace_function_probe(glob
, ops
, data
,
2076 PROBE_TEST_FUNC
| PROBE_TEST_DATA
);
2080 unregister_ftrace_function_probe_func(char *glob
, struct ftrace_probe_ops
*ops
)
2082 __unregister_ftrace_function_probe(glob
, ops
, NULL
, PROBE_TEST_FUNC
);
2085 void unregister_ftrace_function_probe_all(char *glob
)
2087 __unregister_ftrace_function_probe(glob
, NULL
, NULL
, 0);
2090 static LIST_HEAD(ftrace_commands
);
2091 static DEFINE_MUTEX(ftrace_cmd_mutex
);
2093 int register_ftrace_command(struct ftrace_func_command
*cmd
)
2095 struct ftrace_func_command
*p
;
2098 mutex_lock(&ftrace_cmd_mutex
);
2099 list_for_each_entry(p
, &ftrace_commands
, list
) {
2100 if (strcmp(cmd
->name
, p
->name
) == 0) {
2105 list_add(&cmd
->list
, &ftrace_commands
);
2107 mutex_unlock(&ftrace_cmd_mutex
);
2112 int unregister_ftrace_command(struct ftrace_func_command
*cmd
)
2114 struct ftrace_func_command
*p
, *n
;
2117 mutex_lock(&ftrace_cmd_mutex
);
2118 list_for_each_entry_safe(p
, n
, &ftrace_commands
, list
) {
2119 if (strcmp(cmd
->name
, p
->name
) == 0) {
2121 list_del_init(&p
->list
);
2126 mutex_unlock(&ftrace_cmd_mutex
);
2131 static int ftrace_process_regex(char *buff
, int len
, int enable
)
2133 char *func
, *command
, *next
= buff
;
2134 struct ftrace_func_command
*p
;
2137 func
= strsep(&next
, ":");
2140 if (ftrace_match_records(func
, len
, enable
))
2147 command
= strsep(&next
, ":");
2149 mutex_lock(&ftrace_cmd_mutex
);
2150 list_for_each_entry(p
, &ftrace_commands
, list
) {
2151 if (strcmp(p
->name
, command
) == 0) {
2152 ret
= p
->func(func
, command
, next
, enable
);
2157 mutex_unlock(&ftrace_cmd_mutex
);
2163 ftrace_regex_write(struct file
*file
, const char __user
*ubuf
,
2164 size_t cnt
, loff_t
*ppos
, int enable
)
2166 struct ftrace_iterator
*iter
;
2167 struct trace_parser
*parser
;
2173 mutex_lock(&ftrace_regex_lock
);
2175 if (file
->f_mode
& FMODE_READ
) {
2176 struct seq_file
*m
= file
->private_data
;
2179 iter
= file
->private_data
;
2181 parser
= &iter
->parser
;
2182 read
= trace_get_user(parser
, ubuf
, cnt
, ppos
);
2184 if (read
>= 0 && trace_parser_loaded(parser
) &&
2185 !trace_parser_cont(parser
)) {
2186 ret
= ftrace_process_regex(parser
->buffer
,
2187 parser
->idx
, enable
);
2188 trace_parser_clear(parser
);
2195 mutex_unlock(&ftrace_regex_lock
);
2201 ftrace_filter_write(struct file
*file
, const char __user
*ubuf
,
2202 size_t cnt
, loff_t
*ppos
)
2204 return ftrace_regex_write(file
, ubuf
, cnt
, ppos
, 1);
2208 ftrace_notrace_write(struct file
*file
, const char __user
*ubuf
,
2209 size_t cnt
, loff_t
*ppos
)
2211 return ftrace_regex_write(file
, ubuf
, cnt
, ppos
, 0);
2215 ftrace_set_regex(unsigned char *buf
, int len
, int reset
, int enable
)
2217 if (unlikely(ftrace_disabled
))
2220 mutex_lock(&ftrace_regex_lock
);
2222 ftrace_filter_reset(enable
);
2224 ftrace_match_records(buf
, len
, enable
);
2225 mutex_unlock(&ftrace_regex_lock
);
2229 * ftrace_set_filter - set a function to filter on in ftrace
2230 * @buf - the string that holds the function filter text.
2231 * @len - the length of the string.
2232 * @reset - non zero to reset all filters before applying this filter.
2234 * Filters denote which functions should be enabled when tracing is enabled.
2235 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
2237 void ftrace_set_filter(unsigned char *buf
, int len
, int reset
)
2239 ftrace_set_regex(buf
, len
, reset
, 1);
2243 * ftrace_set_notrace - set a function to not trace in ftrace
2244 * @buf - the string that holds the function notrace text.
2245 * @len - the length of the string.
2246 * @reset - non zero to reset all filters before applying this filter.
2248 * Notrace Filters denote which functions should not be enabled when tracing
2249 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
2252 void ftrace_set_notrace(unsigned char *buf
, int len
, int reset
)
2254 ftrace_set_regex(buf
, len
, reset
, 0);
2258 * command line interface to allow users to set filters on boot up.
2260 #define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
2261 static char ftrace_notrace_buf
[FTRACE_FILTER_SIZE
] __initdata
;
2262 static char ftrace_filter_buf
[FTRACE_FILTER_SIZE
] __initdata
;
2264 static int __init
set_ftrace_notrace(char *str
)
2266 strncpy(ftrace_notrace_buf
, str
, FTRACE_FILTER_SIZE
);
2269 __setup("ftrace_notrace=", set_ftrace_notrace
);
2271 static int __init
set_ftrace_filter(char *str
)
2273 strncpy(ftrace_filter_buf
, str
, FTRACE_FILTER_SIZE
);
2276 __setup("ftrace_filter=", set_ftrace_filter
);
2278 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
2279 static char ftrace_graph_buf
[FTRACE_FILTER_SIZE
] __initdata
;
2280 static int ftrace_set_func(unsigned long *array
, int *idx
, char *buffer
);
2282 static int __init
set_graph_function(char *str
)
2284 strlcpy(ftrace_graph_buf
, str
, FTRACE_FILTER_SIZE
);
2287 __setup("ftrace_graph_filter=", set_graph_function
);
2289 static void __init
set_ftrace_early_graph(char *buf
)
2295 func
= strsep(&buf
, ",");
2296 /* we allow only one expression at a time */
2297 ret
= ftrace_set_func(ftrace_graph_funcs
, &ftrace_graph_count
,
2300 printk(KERN_DEBUG
"ftrace: function %s not "
2301 "traceable\n", func
);
2304 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2306 static void __init
set_ftrace_early_filter(char *buf
, int enable
)
2311 func
= strsep(&buf
, ",");
2312 ftrace_set_regex(func
, strlen(func
), 0, enable
);
2316 static void __init
set_ftrace_early_filters(void)
2318 if (ftrace_filter_buf
[0])
2319 set_ftrace_early_filter(ftrace_filter_buf
, 1);
2320 if (ftrace_notrace_buf
[0])
2321 set_ftrace_early_filter(ftrace_notrace_buf
, 0);
2322 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
2323 if (ftrace_graph_buf
[0])
2324 set_ftrace_early_graph(ftrace_graph_buf
);
2325 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2329 ftrace_regex_release(struct inode
*inode
, struct file
*file
, int enable
)
2331 struct seq_file
*m
= (struct seq_file
*)file
->private_data
;
2332 struct ftrace_iterator
*iter
;
2333 struct trace_parser
*parser
;
2335 mutex_lock(&ftrace_regex_lock
);
2336 if (file
->f_mode
& FMODE_READ
) {
2339 seq_release(inode
, file
);
2341 iter
= file
->private_data
;
2343 parser
= &iter
->parser
;
2344 if (trace_parser_loaded(parser
)) {
2345 parser
->buffer
[parser
->idx
] = 0;
2346 ftrace_match_records(parser
->buffer
, parser
->idx
, enable
);
2349 mutex_lock(&ftrace_lock
);
2350 if (ftrace_start_up
&& ftrace_enabled
)
2351 ftrace_run_update_code(FTRACE_ENABLE_CALLS
);
2352 mutex_unlock(&ftrace_lock
);
2354 trace_parser_put(parser
);
2357 mutex_unlock(&ftrace_regex_lock
);
2362 ftrace_filter_release(struct inode
*inode
, struct file
*file
)
2364 return ftrace_regex_release(inode
, file
, 1);
2368 ftrace_notrace_release(struct inode
*inode
, struct file
*file
)
2370 return ftrace_regex_release(inode
, file
, 0);
2373 static const struct file_operations ftrace_avail_fops
= {
2374 .open
= ftrace_avail_open
,
2376 .llseek
= seq_lseek
,
2377 .release
= seq_release_private
,
2380 static const struct file_operations ftrace_failures_fops
= {
2381 .open
= ftrace_failures_open
,
2383 .llseek
= seq_lseek
,
2384 .release
= seq_release_private
,
2387 static const struct file_operations ftrace_filter_fops
= {
2388 .open
= ftrace_filter_open
,
2390 .write
= ftrace_filter_write
,
2391 .llseek
= ftrace_regex_lseek
,
2392 .release
= ftrace_filter_release
,
2395 static const struct file_operations ftrace_notrace_fops
= {
2396 .open
= ftrace_notrace_open
,
2398 .write
= ftrace_notrace_write
,
2399 .llseek
= ftrace_regex_lseek
,
2400 .release
= ftrace_notrace_release
,
2403 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
2405 static DEFINE_MUTEX(graph_lock
);
2407 int ftrace_graph_count
;
2408 int ftrace_graph_filter_enabled
;
2409 unsigned long ftrace_graph_funcs
[FTRACE_GRAPH_MAX_FUNCS
] __read_mostly
;
2412 __g_next(struct seq_file
*m
, loff_t
*pos
)
2414 if (*pos
>= ftrace_graph_count
)
2416 return &ftrace_graph_funcs
[*pos
];
2420 g_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
2423 return __g_next(m
, pos
);
2426 static void *g_start(struct seq_file
*m
, loff_t
*pos
)
2428 mutex_lock(&graph_lock
);
2430 /* Nothing, tell g_show to print all functions are enabled */
2431 if (!ftrace_graph_filter_enabled
&& !*pos
)
2434 return __g_next(m
, pos
);
2437 static void g_stop(struct seq_file
*m
, void *p
)
2439 mutex_unlock(&graph_lock
);
2442 static int g_show(struct seq_file
*m
, void *v
)
2444 unsigned long *ptr
= v
;
2449 if (ptr
== (unsigned long *)1) {
2450 seq_printf(m
, "#### all functions enabled ####\n");
2454 seq_printf(m
, "%ps\n", (void *)*ptr
);
2459 static const struct seq_operations ftrace_graph_seq_ops
= {
2467 ftrace_graph_open(struct inode
*inode
, struct file
*file
)
2471 if (unlikely(ftrace_disabled
))
2474 mutex_lock(&graph_lock
);
2475 if ((file
->f_mode
& FMODE_WRITE
) &&
2476 (file
->f_flags
& O_TRUNC
)) {
2477 ftrace_graph_filter_enabled
= 0;
2478 ftrace_graph_count
= 0;
2479 memset(ftrace_graph_funcs
, 0, sizeof(ftrace_graph_funcs
));
2481 mutex_unlock(&graph_lock
);
2483 if (file
->f_mode
& FMODE_READ
)
2484 ret
= seq_open(file
, &ftrace_graph_seq_ops
);
2490 ftrace_graph_release(struct inode
*inode
, struct file
*file
)
2492 if (file
->f_mode
& FMODE_READ
)
2493 seq_release(inode
, file
);
2498 ftrace_set_func(unsigned long *array
, int *idx
, char *buffer
)
2500 struct dyn_ftrace
*rec
;
2501 struct ftrace_page
*pg
;
2509 if (ftrace_disabled
)
2513 type
= filter_parse_regex(buffer
, strlen(buffer
), &search
, ¬);
2514 if (!not && *idx
>= FTRACE_GRAPH_MAX_FUNCS
)
2517 search_len
= strlen(search
);
2519 mutex_lock(&ftrace_lock
);
2520 do_for_each_ftrace_rec(pg
, rec
) {
2522 if (rec
->flags
& (FTRACE_FL_FAILED
| FTRACE_FL_FREE
))
2525 if (ftrace_match_record(rec
, search
, search_len
, type
)) {
2526 /* if it is in the array */
2528 for (i
= 0; i
< *idx
; i
++) {
2529 if (array
[i
] == rec
->ip
) {
2538 array
[(*idx
)++] = rec
->ip
;
2539 if (*idx
>= FTRACE_GRAPH_MAX_FUNCS
)
2544 array
[i
] = array
[--(*idx
)];
2550 } while_for_each_ftrace_rec();
2552 mutex_unlock(&ftrace_lock
);
2557 ftrace_graph_filter_enabled
= 1;
2562 ftrace_graph_write(struct file
*file
, const char __user
*ubuf
,
2563 size_t cnt
, loff_t
*ppos
)
2565 struct trace_parser parser
;
2571 mutex_lock(&graph_lock
);
2573 if (trace_parser_get_init(&parser
, FTRACE_BUFF_MAX
)) {
2578 read
= trace_get_user(&parser
, ubuf
, cnt
, ppos
);
2580 if (read
>= 0 && trace_parser_loaded((&parser
))) {
2581 parser
.buffer
[parser
.idx
] = 0;
2583 /* we allow only one expression at a time */
2584 ret
= ftrace_set_func(ftrace_graph_funcs
, &ftrace_graph_count
,
2593 trace_parser_put(&parser
);
2595 mutex_unlock(&graph_lock
);
2600 static const struct file_operations ftrace_graph_fops
= {
2601 .open
= ftrace_graph_open
,
2603 .write
= ftrace_graph_write
,
2604 .release
= ftrace_graph_release
,
2606 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2608 static __init
int ftrace_init_dyn_debugfs(struct dentry
*d_tracer
)
2611 trace_create_file("available_filter_functions", 0444,
2612 d_tracer
, NULL
, &ftrace_avail_fops
);
2614 trace_create_file("failures", 0444,
2615 d_tracer
, NULL
, &ftrace_failures_fops
);
2617 trace_create_file("set_ftrace_filter", 0644, d_tracer
,
2618 NULL
, &ftrace_filter_fops
);
2620 trace_create_file("set_ftrace_notrace", 0644, d_tracer
,
2621 NULL
, &ftrace_notrace_fops
);
2623 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
2624 trace_create_file("set_graph_function", 0444, d_tracer
,
2626 &ftrace_graph_fops
);
2627 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2632 static int ftrace_process_locs(struct module
*mod
,
2633 unsigned long *start
,
2638 unsigned long flags
;
2640 mutex_lock(&ftrace_lock
);
2643 addr
= ftrace_call_adjust(*p
++);
2645 * Some architecture linkers will pad between
2646 * the different mcount_loc sections of different
2647 * object files to satisfy alignments.
2648 * Skip any NULL pointers.
2652 ftrace_record_ip(addr
);
2655 /* disable interrupts to prevent kstop machine */
2656 local_irq_save(flags
);
2657 ftrace_update_code(mod
);
2658 local_irq_restore(flags
);
2659 mutex_unlock(&ftrace_lock
);
2664 #ifdef CONFIG_MODULES
2665 void ftrace_release_mod(struct module
*mod
)
2667 struct dyn_ftrace
*rec
;
2668 struct ftrace_page
*pg
;
2670 if (ftrace_disabled
)
2673 mutex_lock(&ftrace_lock
);
2674 do_for_each_ftrace_rec(pg
, rec
) {
2675 if (within_module_core(rec
->ip
, mod
)) {
2677 * rec->ip is changed in ftrace_free_rec()
2678 * It should not between s and e if record was freed.
2680 FTRACE_WARN_ON(rec
->flags
& FTRACE_FL_FREE
);
2681 ftrace_free_rec(rec
);
2683 } while_for_each_ftrace_rec();
2684 mutex_unlock(&ftrace_lock
);
2687 static void ftrace_init_module(struct module
*mod
,
2688 unsigned long *start
, unsigned long *end
)
2690 if (ftrace_disabled
|| start
== end
)
2692 ftrace_process_locs(mod
, start
, end
);
2695 static int ftrace_module_notify(struct notifier_block
*self
,
2696 unsigned long val
, void *data
)
2698 struct module
*mod
= data
;
2701 case MODULE_STATE_COMING
:
2702 ftrace_init_module(mod
, mod
->ftrace_callsites
,
2703 mod
->ftrace_callsites
+
2704 mod
->num_ftrace_callsites
);
2706 case MODULE_STATE_GOING
:
2707 ftrace_release_mod(mod
);
2714 static int ftrace_module_notify(struct notifier_block
*self
,
2715 unsigned long val
, void *data
)
2719 #endif /* CONFIG_MODULES */
2721 struct notifier_block ftrace_module_nb
= {
2722 .notifier_call
= ftrace_module_notify
,
2726 extern unsigned long __start_mcount_loc
[];
2727 extern unsigned long __stop_mcount_loc
[];
2729 void __init
ftrace_init(void)
2731 unsigned long count
, addr
, flags
;
2734 /* Keep the ftrace pointer to the stub */
2735 addr
= (unsigned long)ftrace_stub
;
2737 local_irq_save(flags
);
2738 ftrace_dyn_arch_init(&addr
);
2739 local_irq_restore(flags
);
2741 /* ftrace_dyn_arch_init places the return code in addr */
2745 count
= __stop_mcount_loc
- __start_mcount_loc
;
2747 ret
= ftrace_dyn_table_alloc(count
);
2751 last_ftrace_enabled
= ftrace_enabled
= 1;
2753 ret
= ftrace_process_locs(NULL
,
2757 ret
= register_module_notifier(&ftrace_module_nb
);
2759 pr_warning("Failed to register trace ftrace module notifier\n");
2761 set_ftrace_early_filters();
2765 ftrace_disabled
= 1;
2770 static int __init
ftrace_nodyn_init(void)
2775 device_initcall(ftrace_nodyn_init
);
2777 static inline int ftrace_init_dyn_debugfs(struct dentry
*d_tracer
) { return 0; }
2778 static inline void ftrace_startup_enable(int command
) { }
2779 /* Keep as macros so we do not need to define the commands */
2780 # define ftrace_startup(command) do { } while (0)
2781 # define ftrace_shutdown(command) do { } while (0)
2782 # define ftrace_startup_sysctl() do { } while (0)
2783 # define ftrace_shutdown_sysctl() do { } while (0)
2784 #endif /* CONFIG_DYNAMIC_FTRACE */
2786 static void clear_ftrace_swapper(void)
2788 struct task_struct
*p
;
2792 for_each_online_cpu(cpu
) {
2794 clear_tsk_trace_trace(p
);
2799 static void set_ftrace_swapper(void)
2801 struct task_struct
*p
;
2805 for_each_online_cpu(cpu
) {
2807 set_tsk_trace_trace(p
);
2812 static void clear_ftrace_pid(struct pid
*pid
)
2814 struct task_struct
*p
;
2817 do_each_pid_task(pid
, PIDTYPE_PID
, p
) {
2818 clear_tsk_trace_trace(p
);
2819 } while_each_pid_task(pid
, PIDTYPE_PID
, p
);
2825 static void set_ftrace_pid(struct pid
*pid
)
2827 struct task_struct
*p
;
2830 do_each_pid_task(pid
, PIDTYPE_PID
, p
) {
2831 set_tsk_trace_trace(p
);
2832 } while_each_pid_task(pid
, PIDTYPE_PID
, p
);
2836 static void clear_ftrace_pid_task(struct pid
*pid
)
2838 if (pid
== ftrace_swapper_pid
)
2839 clear_ftrace_swapper();
2841 clear_ftrace_pid(pid
);
2844 static void set_ftrace_pid_task(struct pid
*pid
)
2846 if (pid
== ftrace_swapper_pid
)
2847 set_ftrace_swapper();
2849 set_ftrace_pid(pid
);
2852 static int ftrace_pid_add(int p
)
2855 struct ftrace_pid
*fpid
;
2858 mutex_lock(&ftrace_lock
);
2861 pid
= ftrace_swapper_pid
;
2863 pid
= find_get_pid(p
);
2870 list_for_each_entry(fpid
, &ftrace_pids
, list
)
2871 if (fpid
->pid
== pid
)
2876 fpid
= kmalloc(sizeof(*fpid
), GFP_KERNEL
);
2880 list_add(&fpid
->list
, &ftrace_pids
);
2883 set_ftrace_pid_task(pid
);
2885 ftrace_update_pid_func();
2886 ftrace_startup_enable(0);
2888 mutex_unlock(&ftrace_lock
);
2892 if (pid
!= ftrace_swapper_pid
)
2896 mutex_unlock(&ftrace_lock
);
2900 static void ftrace_pid_reset(void)
2902 struct ftrace_pid
*fpid
, *safe
;
2904 mutex_lock(&ftrace_lock
);
2905 list_for_each_entry_safe(fpid
, safe
, &ftrace_pids
, list
) {
2906 struct pid
*pid
= fpid
->pid
;
2908 clear_ftrace_pid_task(pid
);
2910 list_del(&fpid
->list
);
2914 ftrace_update_pid_func();
2915 ftrace_startup_enable(0);
2917 mutex_unlock(&ftrace_lock
);
2920 static void *fpid_start(struct seq_file
*m
, loff_t
*pos
)
2922 mutex_lock(&ftrace_lock
);
2924 if (list_empty(&ftrace_pids
) && (!*pos
))
2927 return seq_list_start(&ftrace_pids
, *pos
);
2930 static void *fpid_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
2935 return seq_list_next(v
, &ftrace_pids
, pos
);
2938 static void fpid_stop(struct seq_file
*m
, void *p
)
2940 mutex_unlock(&ftrace_lock
);
2943 static int fpid_show(struct seq_file
*m
, void *v
)
2945 const struct ftrace_pid
*fpid
= list_entry(v
, struct ftrace_pid
, list
);
2947 if (v
== (void *)1) {
2948 seq_printf(m
, "no pid\n");
2952 if (fpid
->pid
== ftrace_swapper_pid
)
2953 seq_printf(m
, "swapper tasks\n");
2955 seq_printf(m
, "%u\n", pid_vnr(fpid
->pid
));
2960 static const struct seq_operations ftrace_pid_sops
= {
2961 .start
= fpid_start
,
2968 ftrace_pid_open(struct inode
*inode
, struct file
*file
)
2972 if ((file
->f_mode
& FMODE_WRITE
) &&
2973 (file
->f_flags
& O_TRUNC
))
2976 if (file
->f_mode
& FMODE_READ
)
2977 ret
= seq_open(file
, &ftrace_pid_sops
);
2983 ftrace_pid_write(struct file
*filp
, const char __user
*ubuf
,
2984 size_t cnt
, loff_t
*ppos
)
2990 if (cnt
>= sizeof(buf
))
2993 if (copy_from_user(&buf
, ubuf
, cnt
))
2999 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
3000 * to clean the filter quietly.
3002 tmp
= strstrip(buf
);
3003 if (strlen(tmp
) == 0)
3006 ret
= strict_strtol(tmp
, 10, &val
);
3010 ret
= ftrace_pid_add(val
);
3012 return ret
? ret
: cnt
;
3016 ftrace_pid_release(struct inode
*inode
, struct file
*file
)
3018 if (file
->f_mode
& FMODE_READ
)
3019 seq_release(inode
, file
);
3024 static const struct file_operations ftrace_pid_fops
= {
3025 .open
= ftrace_pid_open
,
3026 .write
= ftrace_pid_write
,
3028 .llseek
= seq_lseek
,
3029 .release
= ftrace_pid_release
,
3032 static __init
int ftrace_init_debugfs(void)
3034 struct dentry
*d_tracer
;
3036 d_tracer
= tracing_init_dentry();
3040 ftrace_init_dyn_debugfs(d_tracer
);
3042 trace_create_file("set_ftrace_pid", 0644, d_tracer
,
3043 NULL
, &ftrace_pid_fops
);
3045 ftrace_profile_debugfs(d_tracer
);
3049 fs_initcall(ftrace_init_debugfs
);
3052 * ftrace_kill - kill ftrace
3054 * This function should be used by panic code. It stops ftrace
3055 * but in a not so nice way. If you need to simply kill ftrace
3056 * from a non-atomic section, use ftrace_kill.
3058 void ftrace_kill(void)
3060 ftrace_disabled
= 1;
3062 clear_ftrace_function();
3066 * register_ftrace_function - register a function for profiling
3067 * @ops - ops structure that holds the function for profiling.
3069 * Register a function to be called by all functions in the
3072 * Note: @ops->func and all the functions it calls must be labeled
3073 * with "notrace", otherwise it will go into a
3076 int register_ftrace_function(struct ftrace_ops
*ops
)
3080 if (unlikely(ftrace_disabled
))
3083 mutex_lock(&ftrace_lock
);
3085 ret
= __register_ftrace_function(ops
);
3088 mutex_unlock(&ftrace_lock
);
3093 * unregister_ftrace_function - unregister a function for profiling.
3094 * @ops - ops structure that holds the function to unregister
3096 * Unregister a function that was added to be called by ftrace profiling.
3098 int unregister_ftrace_function(struct ftrace_ops
*ops
)
3102 mutex_lock(&ftrace_lock
);
3103 ret
= __unregister_ftrace_function(ops
);
3105 mutex_unlock(&ftrace_lock
);
3111 ftrace_enable_sysctl(struct ctl_table
*table
, int write
,
3112 void __user
*buffer
, size_t *lenp
,
3117 if (unlikely(ftrace_disabled
))
3120 mutex_lock(&ftrace_lock
);
3122 ret
= proc_dointvec(table
, write
, buffer
, lenp
, ppos
);
3124 if (ret
|| !write
|| (last_ftrace_enabled
== !!ftrace_enabled
))
3127 last_ftrace_enabled
= !!ftrace_enabled
;
3129 if (ftrace_enabled
) {
3131 ftrace_startup_sysctl();
3133 /* we are starting ftrace again */
3134 if (ftrace_list
!= &ftrace_list_end
) {
3135 if (ftrace_list
->next
== &ftrace_list_end
)
3136 ftrace_trace_function
= ftrace_list
->func
;
3138 ftrace_trace_function
= ftrace_list_func
;
3142 /* stopping ftrace calls (just send to ftrace_stub) */
3143 ftrace_trace_function
= ftrace_stub
;
3145 ftrace_shutdown_sysctl();
3149 mutex_unlock(&ftrace_lock
);
3153 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3155 static int ftrace_graph_active
;
3156 static struct notifier_block ftrace_suspend_notifier
;
3158 int ftrace_graph_entry_stub(struct ftrace_graph_ent
*trace
)
3163 /* The callbacks that hook a function */
3164 trace_func_graph_ret_t ftrace_graph_return
=
3165 (trace_func_graph_ret_t
)ftrace_stub
;
3166 trace_func_graph_ent_t ftrace_graph_entry
= ftrace_graph_entry_stub
;
3168 /* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
3169 static int alloc_retstack_tasklist(struct ftrace_ret_stack
**ret_stack_list
)
3173 unsigned long flags
;
3174 int start
= 0, end
= FTRACE_RETSTACK_ALLOC_SIZE
;
3175 struct task_struct
*g
, *t
;
3177 for (i
= 0; i
< FTRACE_RETSTACK_ALLOC_SIZE
; i
++) {
3178 ret_stack_list
[i
] = kmalloc(FTRACE_RETFUNC_DEPTH
3179 * sizeof(struct ftrace_ret_stack
),
3181 if (!ret_stack_list
[i
]) {
3189 read_lock_irqsave(&tasklist_lock
, flags
);
3190 do_each_thread(g
, t
) {
3196 if (t
->ret_stack
== NULL
) {
3197 atomic_set(&t
->tracing_graph_pause
, 0);
3198 atomic_set(&t
->trace_overrun
, 0);
3199 t
->curr_ret_stack
= -1;
3200 /* Make sure the tasks see the -1 first: */
3202 t
->ret_stack
= ret_stack_list
[start
++];
3204 } while_each_thread(g
, t
);
3207 read_unlock_irqrestore(&tasklist_lock
, flags
);
3209 for (i
= start
; i
< end
; i
++)
3210 kfree(ret_stack_list
[i
]);
3215 ftrace_graph_probe_sched_switch(struct rq
*__rq
, struct task_struct
*prev
,
3216 struct task_struct
*next
)
3218 unsigned long long timestamp
;
3222 * Does the user want to count the time a function was asleep.
3223 * If so, do not update the time stamps.
3225 if (trace_flags
& TRACE_ITER_SLEEP_TIME
)
3228 timestamp
= trace_clock_local();
3230 prev
->ftrace_timestamp
= timestamp
;
3232 /* only process tasks that we timestamped */
3233 if (!next
->ftrace_timestamp
)
3237 * Update all the counters in next to make up for the
3238 * time next was sleeping.
3240 timestamp
-= next
->ftrace_timestamp
;
3242 for (index
= next
->curr_ret_stack
; index
>= 0; index
--)
3243 next
->ret_stack
[index
].calltime
+= timestamp
;
3246 /* Allocate a return stack for each task */
3247 static int start_graph_tracing(void)
3249 struct ftrace_ret_stack
**ret_stack_list
;
3252 ret_stack_list
= kmalloc(FTRACE_RETSTACK_ALLOC_SIZE
*
3253 sizeof(struct ftrace_ret_stack
*),
3256 if (!ret_stack_list
)
3259 /* The cpu_boot init_task->ret_stack will never be freed */
3260 for_each_online_cpu(cpu
) {
3261 if (!idle_task(cpu
)->ret_stack
)
3262 ftrace_graph_init_task(idle_task(cpu
));
3266 ret
= alloc_retstack_tasklist(ret_stack_list
);
3267 } while (ret
== -EAGAIN
);
3270 ret
= register_trace_sched_switch(ftrace_graph_probe_sched_switch
);
3272 pr_info("ftrace_graph: Couldn't activate tracepoint"
3273 " probe to kernel_sched_switch\n");
3276 kfree(ret_stack_list
);
3281 * Hibernation protection.
3282 * The state of the current task is too much unstable during
3283 * suspend/restore to disk. We want to protect against that.
3286 ftrace_suspend_notifier_call(struct notifier_block
*bl
, unsigned long state
,
3290 case PM_HIBERNATION_PREPARE
:
3291 pause_graph_tracing();
3294 case PM_POST_HIBERNATION
:
3295 unpause_graph_tracing();
3301 int register_ftrace_graph(trace_func_graph_ret_t retfunc
,
3302 trace_func_graph_ent_t entryfunc
)
3306 mutex_lock(&ftrace_lock
);
3308 /* we currently allow only one tracer registered at a time */
3309 if (ftrace_graph_active
) {
3314 ftrace_suspend_notifier
.notifier_call
= ftrace_suspend_notifier_call
;
3315 register_pm_notifier(&ftrace_suspend_notifier
);
3317 ftrace_graph_active
++;
3318 ret
= start_graph_tracing();
3320 ftrace_graph_active
--;
3324 ftrace_graph_return
= retfunc
;
3325 ftrace_graph_entry
= entryfunc
;
3327 ftrace_startup(FTRACE_START_FUNC_RET
);
3330 mutex_unlock(&ftrace_lock
);
3334 void unregister_ftrace_graph(void)
3336 mutex_lock(&ftrace_lock
);
3338 if (unlikely(!ftrace_graph_active
))
3341 ftrace_graph_active
--;
3342 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch
);
3343 ftrace_graph_return
= (trace_func_graph_ret_t
)ftrace_stub
;
3344 ftrace_graph_entry
= ftrace_graph_entry_stub
;
3345 ftrace_shutdown(FTRACE_STOP_FUNC_RET
);
3346 unregister_pm_notifier(&ftrace_suspend_notifier
);
3349 mutex_unlock(&ftrace_lock
);
3352 /* Allocate a return stack for newly created task */
3353 void ftrace_graph_init_task(struct task_struct
*t
)
3355 /* Make sure we do not use the parent ret_stack */
3356 t
->ret_stack
= NULL
;
3357 t
->curr_ret_stack
= -1;
3359 if (ftrace_graph_active
) {
3360 struct ftrace_ret_stack
*ret_stack
;
3362 ret_stack
= kmalloc(FTRACE_RETFUNC_DEPTH
3363 * sizeof(struct ftrace_ret_stack
),
3367 atomic_set(&t
->tracing_graph_pause
, 0);
3368 atomic_set(&t
->trace_overrun
, 0);
3369 t
->ftrace_timestamp
= 0;
3370 /* make curr_ret_stack visable before we add the ret_stack */
3372 t
->ret_stack
= ret_stack
;
3376 void ftrace_graph_exit_task(struct task_struct
*t
)
3378 struct ftrace_ret_stack
*ret_stack
= t
->ret_stack
;
3380 t
->ret_stack
= NULL
;
3381 /* NULL must become visible to IRQs before we free it: */
3387 void ftrace_graph_stop(void)