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
;
267 unsigned long long time_squared
;
271 struct ftrace_profile_page
{
272 struct ftrace_profile_page
*next
;
274 struct ftrace_profile records
[];
277 struct ftrace_profile_stat
{
279 struct hlist_head
*hash
;
280 struct ftrace_profile_page
*pages
;
281 struct ftrace_profile_page
*start
;
282 struct tracer_stat stat
;
285 #define PROFILE_RECORDS_SIZE \
286 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
288 #define PROFILES_PER_PAGE \
289 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
291 static int ftrace_profile_bits __read_mostly
;
292 static int ftrace_profile_enabled __read_mostly
;
294 /* ftrace_profile_lock - synchronize the enable and disable of the profiler */
295 static DEFINE_MUTEX(ftrace_profile_lock
);
297 static DEFINE_PER_CPU(struct ftrace_profile_stat
, ftrace_profile_stats
);
299 #define FTRACE_PROFILE_HASH_SIZE 1024 /* must be power of 2 */
302 function_stat_next(void *v
, int idx
)
304 struct ftrace_profile
*rec
= v
;
305 struct ftrace_profile_page
*pg
;
307 pg
= (struct ftrace_profile_page
*)((unsigned long)rec
& PAGE_MASK
);
313 if ((void *)rec
>= (void *)&pg
->records
[pg
->index
]) {
317 rec
= &pg
->records
[0];
325 static void *function_stat_start(struct tracer_stat
*trace
)
327 struct ftrace_profile_stat
*stat
=
328 container_of(trace
, struct ftrace_profile_stat
, stat
);
330 if (!stat
|| !stat
->start
)
333 return function_stat_next(&stat
->start
->records
[0], 0);
336 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
337 /* function graph compares on total time */
338 static int function_stat_cmp(void *p1
, void *p2
)
340 struct ftrace_profile
*a
= p1
;
341 struct ftrace_profile
*b
= p2
;
343 if (a
->time
< b
->time
)
345 if (a
->time
> b
->time
)
351 /* not function graph compares against hits */
352 static int function_stat_cmp(void *p1
, void *p2
)
354 struct ftrace_profile
*a
= p1
;
355 struct ftrace_profile
*b
= p2
;
357 if (a
->counter
< b
->counter
)
359 if (a
->counter
> b
->counter
)
366 static int function_stat_headers(struct seq_file
*m
)
368 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
369 seq_printf(m
, " Function "
372 "--- ---- --- ---\n");
374 seq_printf(m
, " Function Hit\n"
380 static int function_stat_show(struct seq_file
*m
, void *v
)
382 struct ftrace_profile
*rec
= v
;
383 char str
[KSYM_SYMBOL_LEN
];
385 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
386 static struct trace_seq s
;
387 unsigned long long avg
;
388 unsigned long long stddev
;
390 mutex_lock(&ftrace_profile_lock
);
392 /* we raced with function_profile_reset() */
393 if (unlikely(rec
->counter
== 0)) {
398 kallsyms_lookup(rec
->ip
, NULL
, NULL
, NULL
, str
);
399 seq_printf(m
, " %-30.30s %10lu", str
, rec
->counter
);
401 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
404 do_div(avg
, rec
->counter
);
406 /* Sample standard deviation (s^2) */
407 if (rec
->counter
<= 1)
410 stddev
= rec
->time_squared
- rec
->counter
* avg
* avg
;
412 * Divide only 1000 for ns^2 -> us^2 conversion.
413 * trace_print_graph_duration will divide 1000 again.
415 do_div(stddev
, (rec
->counter
- 1) * 1000);
419 trace_print_graph_duration(rec
->time
, &s
);
420 trace_seq_puts(&s
, " ");
421 trace_print_graph_duration(avg
, &s
);
422 trace_seq_puts(&s
, " ");
423 trace_print_graph_duration(stddev
, &s
);
424 trace_print_seq(m
, &s
);
428 mutex_unlock(&ftrace_profile_lock
);
433 static void ftrace_profile_reset(struct ftrace_profile_stat
*stat
)
435 struct ftrace_profile_page
*pg
;
437 pg
= stat
->pages
= stat
->start
;
440 memset(pg
->records
, 0, PROFILE_RECORDS_SIZE
);
445 memset(stat
->hash
, 0,
446 FTRACE_PROFILE_HASH_SIZE
* sizeof(struct hlist_head
));
449 int ftrace_profile_pages_init(struct ftrace_profile_stat
*stat
)
451 struct ftrace_profile_page
*pg
;
456 /* If we already allocated, do nothing */
460 stat
->pages
= (void *)get_zeroed_page(GFP_KERNEL
);
464 #ifdef CONFIG_DYNAMIC_FTRACE
465 functions
= ftrace_update_tot_cnt
;
468 * We do not know the number of functions that exist because
469 * dynamic tracing is what counts them. With past experience
470 * we have around 20K functions. That should be more than enough.
471 * It is highly unlikely we will execute every function in
477 pg
= stat
->start
= stat
->pages
;
479 pages
= DIV_ROUND_UP(functions
, PROFILES_PER_PAGE
);
481 for (i
= 0; i
< pages
; i
++) {
482 pg
->next
= (void *)get_zeroed_page(GFP_KERNEL
);
493 unsigned long tmp
= (unsigned long)pg
;
499 free_page((unsigned long)stat
->pages
);
506 static int ftrace_profile_init_cpu(int cpu
)
508 struct ftrace_profile_stat
*stat
;
511 stat
= &per_cpu(ftrace_profile_stats
, cpu
);
514 /* If the profile is already created, simply reset it */
515 ftrace_profile_reset(stat
);
520 * We are profiling all functions, but usually only a few thousand
521 * functions are hit. We'll make a hash of 1024 items.
523 size
= FTRACE_PROFILE_HASH_SIZE
;
525 stat
->hash
= kzalloc(sizeof(struct hlist_head
) * size
, GFP_KERNEL
);
530 if (!ftrace_profile_bits
) {
533 for (; size
; size
>>= 1)
534 ftrace_profile_bits
++;
537 /* Preallocate the function profiling pages */
538 if (ftrace_profile_pages_init(stat
) < 0) {
547 static int ftrace_profile_init(void)
552 for_each_online_cpu(cpu
) {
553 ret
= ftrace_profile_init_cpu(cpu
);
561 /* interrupts must be disabled */
562 static struct ftrace_profile
*
563 ftrace_find_profiled_func(struct ftrace_profile_stat
*stat
, unsigned long ip
)
565 struct ftrace_profile
*rec
;
566 struct hlist_head
*hhd
;
567 struct hlist_node
*n
;
570 key
= hash_long(ip
, ftrace_profile_bits
);
571 hhd
= &stat
->hash
[key
];
573 if (hlist_empty(hhd
))
576 hlist_for_each_entry_rcu(rec
, n
, hhd
, node
) {
584 static void ftrace_add_profile(struct ftrace_profile_stat
*stat
,
585 struct ftrace_profile
*rec
)
589 key
= hash_long(rec
->ip
, ftrace_profile_bits
);
590 hlist_add_head_rcu(&rec
->node
, &stat
->hash
[key
]);
594 * The memory is already allocated, this simply finds a new record to use.
596 static struct ftrace_profile
*
597 ftrace_profile_alloc(struct ftrace_profile_stat
*stat
, unsigned long ip
)
599 struct ftrace_profile
*rec
= NULL
;
601 /* prevent recursion (from NMIs) */
602 if (atomic_inc_return(&stat
->disabled
) != 1)
606 * Try to find the function again since an NMI
607 * could have added it
609 rec
= ftrace_find_profiled_func(stat
, ip
);
613 if (stat
->pages
->index
== PROFILES_PER_PAGE
) {
614 if (!stat
->pages
->next
)
616 stat
->pages
= stat
->pages
->next
;
619 rec
= &stat
->pages
->records
[stat
->pages
->index
++];
621 ftrace_add_profile(stat
, rec
);
624 atomic_dec(&stat
->disabled
);
630 function_profile_call(unsigned long ip
, unsigned long parent_ip
)
632 struct ftrace_profile_stat
*stat
;
633 struct ftrace_profile
*rec
;
636 if (!ftrace_profile_enabled
)
639 local_irq_save(flags
);
641 stat
= &__get_cpu_var(ftrace_profile_stats
);
642 if (!stat
->hash
|| !ftrace_profile_enabled
)
645 rec
= ftrace_find_profiled_func(stat
, ip
);
647 rec
= ftrace_profile_alloc(stat
, ip
);
654 local_irq_restore(flags
);
657 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
658 static int profile_graph_entry(struct ftrace_graph_ent
*trace
)
660 function_profile_call(trace
->func
, 0);
664 static void profile_graph_return(struct ftrace_graph_ret
*trace
)
666 struct ftrace_profile_stat
*stat
;
667 unsigned long long calltime
;
668 struct ftrace_profile
*rec
;
671 local_irq_save(flags
);
672 stat
= &__get_cpu_var(ftrace_profile_stats
);
673 if (!stat
->hash
|| !ftrace_profile_enabled
)
676 /* If the calltime was zero'd ignore it */
677 if (!trace
->calltime
)
680 calltime
= trace
->rettime
- trace
->calltime
;
682 if (!(trace_flags
& TRACE_ITER_GRAPH_TIME
)) {
685 index
= trace
->depth
;
687 /* Append this call time to the parent time to subtract */
689 current
->ret_stack
[index
- 1].subtime
+= calltime
;
691 if (current
->ret_stack
[index
].subtime
< calltime
)
692 calltime
-= current
->ret_stack
[index
].subtime
;
697 rec
= ftrace_find_profiled_func(stat
, trace
->func
);
699 rec
->time
+= calltime
;
700 rec
->time_squared
+= calltime
* calltime
;
704 local_irq_restore(flags
);
707 static int register_ftrace_profiler(void)
709 return register_ftrace_graph(&profile_graph_return
,
710 &profile_graph_entry
);
713 static void unregister_ftrace_profiler(void)
715 unregister_ftrace_graph();
718 static struct ftrace_ops ftrace_profile_ops __read_mostly
=
720 .func
= function_profile_call
,
723 static int register_ftrace_profiler(void)
725 return register_ftrace_function(&ftrace_profile_ops
);
728 static void unregister_ftrace_profiler(void)
730 unregister_ftrace_function(&ftrace_profile_ops
);
732 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
735 ftrace_profile_write(struct file
*filp
, const char __user
*ubuf
,
736 size_t cnt
, loff_t
*ppos
)
739 char buf
[64]; /* big enough to hold a number */
742 if (cnt
>= sizeof(buf
))
745 if (copy_from_user(&buf
, ubuf
, cnt
))
750 ret
= strict_strtoul(buf
, 10, &val
);
756 mutex_lock(&ftrace_profile_lock
);
757 if (ftrace_profile_enabled
^ val
) {
759 ret
= ftrace_profile_init();
765 ret
= register_ftrace_profiler();
770 ftrace_profile_enabled
= 1;
772 ftrace_profile_enabled
= 0;
774 * unregister_ftrace_profiler calls stop_machine
775 * so this acts like an synchronize_sched.
777 unregister_ftrace_profiler();
781 mutex_unlock(&ftrace_profile_lock
);
789 ftrace_profile_read(struct file
*filp
, char __user
*ubuf
,
790 size_t cnt
, loff_t
*ppos
)
792 char buf
[64]; /* big enough to hold a number */
795 r
= sprintf(buf
, "%u\n", ftrace_profile_enabled
);
796 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
799 static const struct file_operations ftrace_profile_fops
= {
800 .open
= tracing_open_generic
,
801 .read
= ftrace_profile_read
,
802 .write
= ftrace_profile_write
,
803 .llseek
= default_llseek
,
806 /* used to initialize the real stat files */
807 static struct tracer_stat function_stats __initdata
= {
809 .stat_start
= function_stat_start
,
810 .stat_next
= function_stat_next
,
811 .stat_cmp
= function_stat_cmp
,
812 .stat_headers
= function_stat_headers
,
813 .stat_show
= function_stat_show
816 static __init
void ftrace_profile_debugfs(struct dentry
*d_tracer
)
818 struct ftrace_profile_stat
*stat
;
819 struct dentry
*entry
;
824 for_each_possible_cpu(cpu
) {
825 stat
= &per_cpu(ftrace_profile_stats
, cpu
);
827 /* allocate enough for function name + cpu number */
828 name
= kmalloc(32, GFP_KERNEL
);
831 * The files created are permanent, if something happens
832 * we still do not free memory.
835 "Could not allocate stat file for cpu %d\n",
839 stat
->stat
= function_stats
;
840 snprintf(name
, 32, "function%d", cpu
);
841 stat
->stat
.name
= name
;
842 ret
= register_stat_tracer(&stat
->stat
);
845 "Could not register function stat for cpu %d\n",
852 entry
= debugfs_create_file("function_profile_enabled", 0644,
853 d_tracer
, NULL
, &ftrace_profile_fops
);
855 pr_warning("Could not create debugfs "
856 "'function_profile_enabled' entry\n");
859 #else /* CONFIG_FUNCTION_PROFILER */
860 static __init
void ftrace_profile_debugfs(struct dentry
*d_tracer
)
863 #endif /* CONFIG_FUNCTION_PROFILER */
865 static struct pid
* const ftrace_swapper_pid
= &init_struct_pid
;
867 #ifdef CONFIG_DYNAMIC_FTRACE
869 #ifndef CONFIG_FTRACE_MCOUNT_RECORD
870 # error Dynamic ftrace depends on MCOUNT_RECORD
873 static struct hlist_head ftrace_func_hash
[FTRACE_FUNC_HASHSIZE
] __read_mostly
;
875 struct ftrace_func_probe
{
876 struct hlist_node node
;
877 struct ftrace_probe_ops
*ops
;
885 FTRACE_ENABLE_CALLS
= (1 << 0),
886 FTRACE_DISABLE_CALLS
= (1 << 1),
887 FTRACE_UPDATE_TRACE_FUNC
= (1 << 2),
888 FTRACE_START_FUNC_RET
= (1 << 3),
889 FTRACE_STOP_FUNC_RET
= (1 << 4),
892 static int ftrace_filtered
;
894 static struct dyn_ftrace
*ftrace_new_addrs
;
896 static DEFINE_MUTEX(ftrace_regex_lock
);
899 struct ftrace_page
*next
;
901 struct dyn_ftrace records
[];
904 #define ENTRIES_PER_PAGE \
905 ((PAGE_SIZE - sizeof(struct ftrace_page)) / sizeof(struct dyn_ftrace))
907 /* estimate from running different kernels */
908 #define NR_TO_INIT 10000
910 static struct ftrace_page
*ftrace_pages_start
;
911 static struct ftrace_page
*ftrace_pages
;
913 static struct dyn_ftrace
*ftrace_free_records
;
916 * This is a double for. Do not use 'break' to break out of the loop,
917 * you must use a goto.
919 #define do_for_each_ftrace_rec(pg, rec) \
920 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
922 for (_____i = 0; _____i < pg->index; _____i++) { \
923 rec = &pg->records[_____i];
925 #define while_for_each_ftrace_rec() \
929 static void ftrace_free_rec(struct dyn_ftrace
*rec
)
931 rec
->freelist
= ftrace_free_records
;
932 ftrace_free_records
= rec
;
933 rec
->flags
|= FTRACE_FL_FREE
;
936 static struct dyn_ftrace
*ftrace_alloc_dyn_node(unsigned long ip
)
938 struct dyn_ftrace
*rec
;
940 /* First check for freed records */
941 if (ftrace_free_records
) {
942 rec
= ftrace_free_records
;
944 if (unlikely(!(rec
->flags
& FTRACE_FL_FREE
))) {
945 FTRACE_WARN_ON_ONCE(1);
946 ftrace_free_records
= NULL
;
950 ftrace_free_records
= rec
->freelist
;
951 memset(rec
, 0, sizeof(*rec
));
955 if (ftrace_pages
->index
== ENTRIES_PER_PAGE
) {
956 if (!ftrace_pages
->next
) {
957 /* allocate another page */
959 (void *)get_zeroed_page(GFP_KERNEL
);
960 if (!ftrace_pages
->next
)
963 ftrace_pages
= ftrace_pages
->next
;
966 return &ftrace_pages
->records
[ftrace_pages
->index
++];
969 static struct dyn_ftrace
*
970 ftrace_record_ip(unsigned long ip
)
972 struct dyn_ftrace
*rec
;
977 rec
= ftrace_alloc_dyn_node(ip
);
982 rec
->newlist
= ftrace_new_addrs
;
983 ftrace_new_addrs
= rec
;
988 static void print_ip_ins(const char *fmt
, unsigned char *p
)
992 printk(KERN_CONT
"%s", fmt
);
994 for (i
= 0; i
< MCOUNT_INSN_SIZE
; i
++)
995 printk(KERN_CONT
"%s%02x", i
? ":" : "", p
[i
]);
998 static void ftrace_bug(int failed
, unsigned long ip
)
1002 FTRACE_WARN_ON_ONCE(1);
1003 pr_info("ftrace faulted on modifying ");
1007 FTRACE_WARN_ON_ONCE(1);
1008 pr_info("ftrace failed to modify ");
1010 print_ip_ins(" actual: ", (unsigned char *)ip
);
1011 printk(KERN_CONT
"\n");
1014 FTRACE_WARN_ON_ONCE(1);
1015 pr_info("ftrace faulted on writing ");
1019 FTRACE_WARN_ON_ONCE(1);
1020 pr_info("ftrace faulted on unknown error ");
1026 /* Return 1 if the address range is reserved for ftrace */
1027 int ftrace_text_reserved(void *start
, void *end
)
1029 struct dyn_ftrace
*rec
;
1030 struct ftrace_page
*pg
;
1032 do_for_each_ftrace_rec(pg
, rec
) {
1033 if (rec
->ip
<= (unsigned long)end
&&
1034 rec
->ip
+ MCOUNT_INSN_SIZE
> (unsigned long)start
)
1036 } while_for_each_ftrace_rec();
1042 __ftrace_replace_code(struct dyn_ftrace
*rec
, int enable
)
1044 unsigned long ftrace_addr
;
1045 unsigned long flag
= 0UL;
1047 ftrace_addr
= (unsigned long)FTRACE_ADDR
;
1050 * If this record is not to be traced or we want to disable it,
1053 * If we want to enable it and filtering is off, then enable it.
1055 * If we want to enable it and filtering is on, enable it only if
1058 if (enable
&& !(rec
->flags
& FTRACE_FL_NOTRACE
)) {
1059 if (!ftrace_filtered
|| (rec
->flags
& FTRACE_FL_FILTER
))
1060 flag
= FTRACE_FL_ENABLED
;
1063 /* If the state of this record hasn't changed, then do nothing */
1064 if ((rec
->flags
& FTRACE_FL_ENABLED
) == flag
)
1068 rec
->flags
|= FTRACE_FL_ENABLED
;
1069 return ftrace_make_call(rec
, ftrace_addr
);
1072 rec
->flags
&= ~FTRACE_FL_ENABLED
;
1073 return ftrace_make_nop(NULL
, rec
, ftrace_addr
);
1076 static void ftrace_replace_code(int enable
)
1078 struct dyn_ftrace
*rec
;
1079 struct ftrace_page
*pg
;
1082 do_for_each_ftrace_rec(pg
, rec
) {
1084 * Skip over free records, records that have
1085 * failed and not converted.
1087 if (rec
->flags
& FTRACE_FL_FREE
||
1088 rec
->flags
& FTRACE_FL_FAILED
||
1089 !(rec
->flags
& FTRACE_FL_CONVERTED
))
1092 failed
= __ftrace_replace_code(rec
, enable
);
1094 rec
->flags
|= FTRACE_FL_FAILED
;
1095 ftrace_bug(failed
, rec
->ip
);
1096 /* Stop processing */
1099 } while_for_each_ftrace_rec();
1103 ftrace_code_disable(struct module
*mod
, struct dyn_ftrace
*rec
)
1110 ret
= ftrace_make_nop(mod
, rec
, MCOUNT_ADDR
);
1112 ftrace_bug(ret
, ip
);
1113 rec
->flags
|= FTRACE_FL_FAILED
;
1120 * archs can override this function if they must do something
1121 * before the modifying code is performed.
1123 int __weak
ftrace_arch_code_modify_prepare(void)
1129 * archs can override this function if they must do something
1130 * after the modifying code is performed.
1132 int __weak
ftrace_arch_code_modify_post_process(void)
1137 static int __ftrace_modify_code(void *data
)
1139 int *command
= data
;
1141 if (*command
& FTRACE_ENABLE_CALLS
)
1142 ftrace_replace_code(1);
1143 else if (*command
& FTRACE_DISABLE_CALLS
)
1144 ftrace_replace_code(0);
1146 if (*command
& FTRACE_UPDATE_TRACE_FUNC
)
1147 ftrace_update_ftrace_func(ftrace_trace_function
);
1149 if (*command
& FTRACE_START_FUNC_RET
)
1150 ftrace_enable_ftrace_graph_caller();
1151 else if (*command
& FTRACE_STOP_FUNC_RET
)
1152 ftrace_disable_ftrace_graph_caller();
1157 static void ftrace_run_update_code(int command
)
1161 ret
= ftrace_arch_code_modify_prepare();
1162 FTRACE_WARN_ON(ret
);
1166 stop_machine(__ftrace_modify_code
, &command
, NULL
);
1168 ret
= ftrace_arch_code_modify_post_process();
1169 FTRACE_WARN_ON(ret
);
1172 static ftrace_func_t saved_ftrace_func
;
1173 static int ftrace_start_up
;
1175 static void ftrace_startup_enable(int command
)
1177 if (saved_ftrace_func
!= ftrace_trace_function
) {
1178 saved_ftrace_func
= ftrace_trace_function
;
1179 command
|= FTRACE_UPDATE_TRACE_FUNC
;
1182 if (!command
|| !ftrace_enabled
)
1185 ftrace_run_update_code(command
);
1188 static void ftrace_startup(int command
)
1190 if (unlikely(ftrace_disabled
))
1194 command
|= FTRACE_ENABLE_CALLS
;
1196 ftrace_startup_enable(command
);
1199 static void ftrace_shutdown(int command
)
1201 if (unlikely(ftrace_disabled
))
1206 * Just warn in case of unbalance, no need to kill ftrace, it's not
1207 * critical but the ftrace_call callers may be never nopped again after
1208 * further ftrace uses.
1210 WARN_ON_ONCE(ftrace_start_up
< 0);
1212 if (!ftrace_start_up
)
1213 command
|= FTRACE_DISABLE_CALLS
;
1215 if (saved_ftrace_func
!= ftrace_trace_function
) {
1216 saved_ftrace_func
= ftrace_trace_function
;
1217 command
|= FTRACE_UPDATE_TRACE_FUNC
;
1220 if (!command
|| !ftrace_enabled
)
1223 ftrace_run_update_code(command
);
1226 static void ftrace_startup_sysctl(void)
1228 if (unlikely(ftrace_disabled
))
1231 /* Force update next time */
1232 saved_ftrace_func
= NULL
;
1233 /* ftrace_start_up is true if we want ftrace running */
1234 if (ftrace_start_up
)
1235 ftrace_run_update_code(FTRACE_ENABLE_CALLS
);
1238 static void ftrace_shutdown_sysctl(void)
1240 if (unlikely(ftrace_disabled
))
1243 /* ftrace_start_up is true if ftrace is running */
1244 if (ftrace_start_up
)
1245 ftrace_run_update_code(FTRACE_DISABLE_CALLS
);
1248 static cycle_t ftrace_update_time
;
1249 static unsigned long ftrace_update_cnt
;
1250 unsigned long ftrace_update_tot_cnt
;
1252 static int ftrace_update_code(struct module
*mod
)
1254 struct dyn_ftrace
*p
;
1255 cycle_t start
, stop
;
1257 start
= ftrace_now(raw_smp_processor_id());
1258 ftrace_update_cnt
= 0;
1260 while (ftrace_new_addrs
) {
1262 /* If something went wrong, bail without enabling anything */
1263 if (unlikely(ftrace_disabled
))
1266 p
= ftrace_new_addrs
;
1267 ftrace_new_addrs
= p
->newlist
;
1271 * Do the initial record convertion from mcount jump
1272 * to the NOP instructions.
1274 if (!ftrace_code_disable(mod
, p
)) {
1279 p
->flags
|= FTRACE_FL_CONVERTED
;
1280 ftrace_update_cnt
++;
1283 * If the tracing is enabled, go ahead and enable the record.
1285 * The reason not to enable the record immediatelly is the
1286 * inherent check of ftrace_make_nop/ftrace_make_call for
1287 * correct previous instructions. Making first the NOP
1288 * conversion puts the module to the correct state, thus
1289 * passing the ftrace_make_call check.
1291 if (ftrace_start_up
) {
1292 int failed
= __ftrace_replace_code(p
, 1);
1294 ftrace_bug(failed
, p
->ip
);
1300 stop
= ftrace_now(raw_smp_processor_id());
1301 ftrace_update_time
= stop
- start
;
1302 ftrace_update_tot_cnt
+= ftrace_update_cnt
;
1307 static int __init
ftrace_dyn_table_alloc(unsigned long num_to_init
)
1309 struct ftrace_page
*pg
;
1313 /* allocate a few pages */
1314 ftrace_pages_start
= (void *)get_zeroed_page(GFP_KERNEL
);
1315 if (!ftrace_pages_start
)
1319 * Allocate a few more pages.
1321 * TODO: have some parser search vmlinux before
1322 * final linking to find all calls to ftrace.
1324 * a) know how many pages to allocate.
1326 * b) set up the table then.
1328 * The dynamic code is still necessary for
1332 pg
= ftrace_pages
= ftrace_pages_start
;
1334 cnt
= num_to_init
/ ENTRIES_PER_PAGE
;
1335 pr_info("ftrace: allocating %ld entries in %d pages\n",
1336 num_to_init
, cnt
+ 1);
1338 for (i
= 0; i
< cnt
; i
++) {
1339 pg
->next
= (void *)get_zeroed_page(GFP_KERNEL
);
1341 /* If we fail, we'll try later anyway */
1352 FTRACE_ITER_FILTER
= (1 << 0),
1353 FTRACE_ITER_NOTRACE
= (1 << 1),
1354 FTRACE_ITER_FAILURES
= (1 << 2),
1355 FTRACE_ITER_PRINTALL
= (1 << 3),
1356 FTRACE_ITER_HASH
= (1 << 4),
1359 #define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
1361 struct ftrace_iterator
{
1364 struct ftrace_page
*pg
;
1365 struct dyn_ftrace
*func
;
1366 struct ftrace_func_probe
*probe
;
1367 struct trace_parser parser
;
1374 t_hash_next(struct seq_file
*m
, loff_t
*pos
)
1376 struct ftrace_iterator
*iter
= m
->private;
1377 struct hlist_node
*hnd
= NULL
;
1378 struct hlist_head
*hhd
;
1384 hnd
= &iter
->probe
->node
;
1386 if (iter
->hidx
>= FTRACE_FUNC_HASHSIZE
)
1389 hhd
= &ftrace_func_hash
[iter
->hidx
];
1391 if (hlist_empty(hhd
)) {
1407 if (WARN_ON_ONCE(!hnd
))
1410 iter
->probe
= hlist_entry(hnd
, struct ftrace_func_probe
, node
);
1415 static void *t_hash_start(struct seq_file
*m
, loff_t
*pos
)
1417 struct ftrace_iterator
*iter
= m
->private;
1421 if (iter
->func_pos
> *pos
)
1425 for (l
= 0; l
<= (*pos
- iter
->func_pos
); ) {
1426 p
= t_hash_next(m
, &l
);
1433 /* Only set this if we have an item */
1434 iter
->flags
|= FTRACE_ITER_HASH
;
1440 t_hash_show(struct seq_file
*m
, struct ftrace_iterator
*iter
)
1442 struct ftrace_func_probe
*rec
;
1445 if (WARN_ON_ONCE(!rec
))
1448 if (rec
->ops
->print
)
1449 return rec
->ops
->print(m
, rec
->ip
, rec
->ops
, rec
->data
);
1451 seq_printf(m
, "%ps:%ps", (void *)rec
->ip
, (void *)rec
->ops
->func
);
1454 seq_printf(m
, ":%p", rec
->data
);
1461 t_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
1463 struct ftrace_iterator
*iter
= m
->private;
1464 struct dyn_ftrace
*rec
= NULL
;
1466 if (iter
->flags
& FTRACE_ITER_HASH
)
1467 return t_hash_next(m
, pos
);
1472 if (iter
->flags
& FTRACE_ITER_PRINTALL
)
1473 return t_hash_start(m
, pos
);
1476 if (iter
->idx
>= iter
->pg
->index
) {
1477 if (iter
->pg
->next
) {
1478 iter
->pg
= iter
->pg
->next
;
1483 rec
= &iter
->pg
->records
[iter
->idx
++];
1484 if ((rec
->flags
& FTRACE_FL_FREE
) ||
1486 (!(iter
->flags
& FTRACE_ITER_FAILURES
) &&
1487 (rec
->flags
& FTRACE_FL_FAILED
)) ||
1489 ((iter
->flags
& FTRACE_ITER_FAILURES
) &&
1490 !(rec
->flags
& FTRACE_FL_FAILED
)) ||
1492 ((iter
->flags
& FTRACE_ITER_FILTER
) &&
1493 !(rec
->flags
& FTRACE_FL_FILTER
)) ||
1495 ((iter
->flags
& FTRACE_ITER_NOTRACE
) &&
1496 !(rec
->flags
& FTRACE_FL_NOTRACE
))) {
1503 return t_hash_start(m
, pos
);
1505 iter
->func_pos
= *pos
;
1511 static void reset_iter_read(struct ftrace_iterator
*iter
)
1515 iter
->flags
&= ~(FTRACE_ITER_PRINTALL
& FTRACE_ITER_HASH
);
1518 static void *t_start(struct seq_file
*m
, loff_t
*pos
)
1520 struct ftrace_iterator
*iter
= m
->private;
1524 mutex_lock(&ftrace_lock
);
1526 * If an lseek was done, then reset and start from beginning.
1528 if (*pos
< iter
->pos
)
1529 reset_iter_read(iter
);
1532 * For set_ftrace_filter reading, if we have the filter
1533 * off, we can short cut and just print out that all
1534 * functions are enabled.
1536 if (iter
->flags
& FTRACE_ITER_FILTER
&& !ftrace_filtered
) {
1538 return t_hash_start(m
, pos
);
1539 iter
->flags
|= FTRACE_ITER_PRINTALL
;
1540 /* reset in case of seek/pread */
1541 iter
->flags
&= ~FTRACE_ITER_HASH
;
1545 if (iter
->flags
& FTRACE_ITER_HASH
)
1546 return t_hash_start(m
, pos
);
1549 * Unfortunately, we need to restart at ftrace_pages_start
1550 * every time we let go of the ftrace_mutex. This is because
1551 * those pointers can change without the lock.
1553 iter
->pg
= ftrace_pages_start
;
1555 for (l
= 0; l
<= *pos
; ) {
1556 p
= t_next(m
, p
, &l
);
1562 if (iter
->flags
& FTRACE_ITER_FILTER
)
1563 return t_hash_start(m
, pos
);
1571 static void t_stop(struct seq_file
*m
, void *p
)
1573 mutex_unlock(&ftrace_lock
);
1576 static int t_show(struct seq_file
*m
, void *v
)
1578 struct ftrace_iterator
*iter
= m
->private;
1579 struct dyn_ftrace
*rec
;
1581 if (iter
->flags
& FTRACE_ITER_HASH
)
1582 return t_hash_show(m
, iter
);
1584 if (iter
->flags
& FTRACE_ITER_PRINTALL
) {
1585 seq_printf(m
, "#### all functions enabled ####\n");
1594 seq_printf(m
, "%ps\n", (void *)rec
->ip
);
1599 static const struct seq_operations show_ftrace_seq_ops
= {
1607 ftrace_avail_open(struct inode
*inode
, struct file
*file
)
1609 struct ftrace_iterator
*iter
;
1612 if (unlikely(ftrace_disabled
))
1615 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
1619 iter
->pg
= ftrace_pages_start
;
1621 ret
= seq_open(file
, &show_ftrace_seq_ops
);
1623 struct seq_file
*m
= file
->private_data
;
1634 ftrace_failures_open(struct inode
*inode
, struct file
*file
)
1638 struct ftrace_iterator
*iter
;
1640 ret
= ftrace_avail_open(inode
, file
);
1642 m
= file
->private_data
;
1644 iter
->flags
= FTRACE_ITER_FAILURES
;
1651 static void ftrace_filter_reset(int enable
)
1653 struct ftrace_page
*pg
;
1654 struct dyn_ftrace
*rec
;
1655 unsigned long type
= enable
? FTRACE_FL_FILTER
: FTRACE_FL_NOTRACE
;
1657 mutex_lock(&ftrace_lock
);
1659 ftrace_filtered
= 0;
1660 do_for_each_ftrace_rec(pg
, rec
) {
1661 if (rec
->flags
& FTRACE_FL_FAILED
)
1663 rec
->flags
&= ~type
;
1664 } while_for_each_ftrace_rec();
1665 mutex_unlock(&ftrace_lock
);
1669 ftrace_regex_open(struct inode
*inode
, struct file
*file
, int enable
)
1671 struct ftrace_iterator
*iter
;
1674 if (unlikely(ftrace_disabled
))
1677 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
1681 if (trace_parser_get_init(&iter
->parser
, FTRACE_BUFF_MAX
)) {
1686 mutex_lock(&ftrace_regex_lock
);
1687 if ((file
->f_mode
& FMODE_WRITE
) &&
1688 (file
->f_flags
& O_TRUNC
))
1689 ftrace_filter_reset(enable
);
1691 if (file
->f_mode
& FMODE_READ
) {
1692 iter
->pg
= ftrace_pages_start
;
1693 iter
->flags
= enable
? FTRACE_ITER_FILTER
:
1694 FTRACE_ITER_NOTRACE
;
1696 ret
= seq_open(file
, &show_ftrace_seq_ops
);
1698 struct seq_file
*m
= file
->private_data
;
1701 trace_parser_put(&iter
->parser
);
1705 file
->private_data
= iter
;
1706 mutex_unlock(&ftrace_regex_lock
);
1712 ftrace_filter_open(struct inode
*inode
, struct file
*file
)
1714 return ftrace_regex_open(inode
, file
, 1);
1718 ftrace_notrace_open(struct inode
*inode
, struct file
*file
)
1720 return ftrace_regex_open(inode
, file
, 0);
1724 ftrace_regex_lseek(struct file
*file
, loff_t offset
, int origin
)
1728 if (file
->f_mode
& FMODE_READ
)
1729 ret
= seq_lseek(file
, offset
, origin
);
1731 file
->f_pos
= ret
= 1;
1736 static int ftrace_match(char *str
, char *regex
, int len
, int type
)
1743 if (strcmp(str
, regex
) == 0)
1746 case MATCH_FRONT_ONLY
:
1747 if (strncmp(str
, regex
, len
) == 0)
1750 case MATCH_MIDDLE_ONLY
:
1751 if (strstr(str
, regex
))
1754 case MATCH_END_ONLY
:
1756 if (slen
>= len
&& memcmp(str
+ slen
- len
, regex
, len
) == 0)
1765 ftrace_match_record(struct dyn_ftrace
*rec
, char *regex
, int len
, int type
)
1767 char str
[KSYM_SYMBOL_LEN
];
1769 kallsyms_lookup(rec
->ip
, NULL
, NULL
, NULL
, str
);
1770 return ftrace_match(str
, regex
, len
, type
);
1773 static int ftrace_match_records(char *buff
, int len
, int enable
)
1775 unsigned int search_len
;
1776 struct ftrace_page
*pg
;
1777 struct dyn_ftrace
*rec
;
1784 flag
= enable
? FTRACE_FL_FILTER
: FTRACE_FL_NOTRACE
;
1785 type
= filter_parse_regex(buff
, len
, &search
, ¬);
1787 search_len
= strlen(search
);
1789 mutex_lock(&ftrace_lock
);
1790 do_for_each_ftrace_rec(pg
, rec
) {
1792 if (rec
->flags
& FTRACE_FL_FAILED
)
1795 if (ftrace_match_record(rec
, search
, search_len
, type
)) {
1797 rec
->flags
&= ~flag
;
1803 * Only enable filtering if we have a function that
1806 if (enable
&& (rec
->flags
& FTRACE_FL_FILTER
))
1807 ftrace_filtered
= 1;
1808 } while_for_each_ftrace_rec();
1809 mutex_unlock(&ftrace_lock
);
1815 ftrace_match_module_record(struct dyn_ftrace
*rec
, char *mod
,
1816 char *regex
, int len
, int type
)
1818 char str
[KSYM_SYMBOL_LEN
];
1821 kallsyms_lookup(rec
->ip
, NULL
, NULL
, &modname
, str
);
1823 if (!modname
|| strcmp(modname
, mod
))
1826 /* blank search means to match all funcs in the mod */
1828 return ftrace_match(str
, regex
, len
, type
);
1833 static int ftrace_match_module_records(char *buff
, char *mod
, int enable
)
1835 unsigned search_len
= 0;
1836 struct ftrace_page
*pg
;
1837 struct dyn_ftrace
*rec
;
1838 int type
= MATCH_FULL
;
1839 char *search
= buff
;
1844 flag
= enable
? FTRACE_FL_FILTER
: FTRACE_FL_NOTRACE
;
1846 /* blank or '*' mean the same */
1847 if (strcmp(buff
, "*") == 0)
1850 /* handle the case of 'dont filter this module' */
1851 if (strcmp(buff
, "!") == 0 || strcmp(buff
, "!*") == 0) {
1857 type
= filter_parse_regex(buff
, strlen(buff
), &search
, ¬);
1858 search_len
= strlen(search
);
1861 mutex_lock(&ftrace_lock
);
1862 do_for_each_ftrace_rec(pg
, rec
) {
1864 if (rec
->flags
& FTRACE_FL_FAILED
)
1867 if (ftrace_match_module_record(rec
, mod
,
1868 search
, search_len
, type
)) {
1870 rec
->flags
&= ~flag
;
1875 if (enable
&& (rec
->flags
& FTRACE_FL_FILTER
))
1876 ftrace_filtered
= 1;
1878 } while_for_each_ftrace_rec();
1879 mutex_unlock(&ftrace_lock
);
1885 * We register the module command as a template to show others how
1886 * to register the a command as well.
1890 ftrace_mod_callback(char *func
, char *cmd
, char *param
, int enable
)
1895 * cmd == 'mod' because we only registered this func
1896 * for the 'mod' ftrace_func_command.
1897 * But if you register one func with multiple commands,
1898 * you can tell which command was used by the cmd
1902 /* we must have a module name */
1906 mod
= strsep(¶m
, ":");
1910 if (ftrace_match_module_records(func
, mod
, enable
))
1915 static struct ftrace_func_command ftrace_mod_cmd
= {
1917 .func
= ftrace_mod_callback
,
1920 static int __init
ftrace_mod_cmd_init(void)
1922 return register_ftrace_command(&ftrace_mod_cmd
);
1924 device_initcall(ftrace_mod_cmd_init
);
1927 function_trace_probe_call(unsigned long ip
, unsigned long parent_ip
)
1929 struct ftrace_func_probe
*entry
;
1930 struct hlist_head
*hhd
;
1931 struct hlist_node
*n
;
1934 key
= hash_long(ip
, FTRACE_HASH_BITS
);
1936 hhd
= &ftrace_func_hash
[key
];
1938 if (hlist_empty(hhd
))
1942 * Disable preemption for these calls to prevent a RCU grace
1943 * period. This syncs the hash iteration and freeing of items
1944 * on the hash. rcu_read_lock is too dangerous here.
1946 preempt_disable_notrace();
1947 hlist_for_each_entry_rcu(entry
, n
, hhd
, node
) {
1948 if (entry
->ip
== ip
)
1949 entry
->ops
->func(ip
, parent_ip
, &entry
->data
);
1951 preempt_enable_notrace();
1954 static struct ftrace_ops trace_probe_ops __read_mostly
=
1956 .func
= function_trace_probe_call
,
1959 static int ftrace_probe_registered
;
1961 static void __enable_ftrace_function_probe(void)
1965 if (ftrace_probe_registered
)
1968 for (i
= 0; i
< FTRACE_FUNC_HASHSIZE
; i
++) {
1969 struct hlist_head
*hhd
= &ftrace_func_hash
[i
];
1973 /* Nothing registered? */
1974 if (i
== FTRACE_FUNC_HASHSIZE
)
1977 __register_ftrace_function(&trace_probe_ops
);
1979 ftrace_probe_registered
= 1;
1982 static void __disable_ftrace_function_probe(void)
1986 if (!ftrace_probe_registered
)
1989 for (i
= 0; i
< FTRACE_FUNC_HASHSIZE
; i
++) {
1990 struct hlist_head
*hhd
= &ftrace_func_hash
[i
];
1995 /* no more funcs left */
1996 __unregister_ftrace_function(&trace_probe_ops
);
1998 ftrace_probe_registered
= 0;
2002 static void ftrace_free_entry_rcu(struct rcu_head
*rhp
)
2004 struct ftrace_func_probe
*entry
=
2005 container_of(rhp
, struct ftrace_func_probe
, rcu
);
2007 if (entry
->ops
->free
)
2008 entry
->ops
->free(&entry
->data
);
2014 register_ftrace_function_probe(char *glob
, struct ftrace_probe_ops
*ops
,
2017 struct ftrace_func_probe
*entry
;
2018 struct ftrace_page
*pg
;
2019 struct dyn_ftrace
*rec
;
2025 type
= filter_parse_regex(glob
, strlen(glob
), &search
, ¬);
2026 len
= strlen(search
);
2028 /* we do not support '!' for function probes */
2032 mutex_lock(&ftrace_lock
);
2033 do_for_each_ftrace_rec(pg
, rec
) {
2035 if (rec
->flags
& FTRACE_FL_FAILED
)
2038 if (!ftrace_match_record(rec
, search
, len
, type
))
2041 entry
= kmalloc(sizeof(*entry
), GFP_KERNEL
);
2043 /* If we did not process any, then return error */
2054 * The caller might want to do something special
2055 * for each function we find. We call the callback
2056 * to give the caller an opportunity to do so.
2058 if (ops
->callback
) {
2059 if (ops
->callback(rec
->ip
, &entry
->data
) < 0) {
2060 /* caller does not like this func */
2067 entry
->ip
= rec
->ip
;
2069 key
= hash_long(entry
->ip
, FTRACE_HASH_BITS
);
2070 hlist_add_head_rcu(&entry
->node
, &ftrace_func_hash
[key
]);
2072 } while_for_each_ftrace_rec();
2073 __enable_ftrace_function_probe();
2076 mutex_unlock(&ftrace_lock
);
2082 PROBE_TEST_FUNC
= 1,
2087 __unregister_ftrace_function_probe(char *glob
, struct ftrace_probe_ops
*ops
,
2088 void *data
, int flags
)
2090 struct ftrace_func_probe
*entry
;
2091 struct hlist_node
*n
, *tmp
;
2092 char str
[KSYM_SYMBOL_LEN
];
2093 int type
= MATCH_FULL
;
2097 if (glob
&& (strcmp(glob
, "*") == 0 || !strlen(glob
)))
2102 type
= filter_parse_regex(glob
, strlen(glob
), &search
, ¬);
2103 len
= strlen(search
);
2105 /* we do not support '!' for function probes */
2110 mutex_lock(&ftrace_lock
);
2111 for (i
= 0; i
< FTRACE_FUNC_HASHSIZE
; i
++) {
2112 struct hlist_head
*hhd
= &ftrace_func_hash
[i
];
2114 hlist_for_each_entry_safe(entry
, n
, tmp
, hhd
, node
) {
2116 /* break up if statements for readability */
2117 if ((flags
& PROBE_TEST_FUNC
) && entry
->ops
!= ops
)
2120 if ((flags
& PROBE_TEST_DATA
) && entry
->data
!= data
)
2123 /* do this last, since it is the most expensive */
2125 kallsyms_lookup(entry
->ip
, NULL
, NULL
,
2127 if (!ftrace_match(str
, glob
, len
, type
))
2131 hlist_del(&entry
->node
);
2132 call_rcu(&entry
->rcu
, ftrace_free_entry_rcu
);
2135 __disable_ftrace_function_probe();
2136 mutex_unlock(&ftrace_lock
);
2140 unregister_ftrace_function_probe(char *glob
, struct ftrace_probe_ops
*ops
,
2143 __unregister_ftrace_function_probe(glob
, ops
, data
,
2144 PROBE_TEST_FUNC
| PROBE_TEST_DATA
);
2148 unregister_ftrace_function_probe_func(char *glob
, struct ftrace_probe_ops
*ops
)
2150 __unregister_ftrace_function_probe(glob
, ops
, NULL
, PROBE_TEST_FUNC
);
2153 void unregister_ftrace_function_probe_all(char *glob
)
2155 __unregister_ftrace_function_probe(glob
, NULL
, NULL
, 0);
2158 static LIST_HEAD(ftrace_commands
);
2159 static DEFINE_MUTEX(ftrace_cmd_mutex
);
2161 int register_ftrace_command(struct ftrace_func_command
*cmd
)
2163 struct ftrace_func_command
*p
;
2166 mutex_lock(&ftrace_cmd_mutex
);
2167 list_for_each_entry(p
, &ftrace_commands
, list
) {
2168 if (strcmp(cmd
->name
, p
->name
) == 0) {
2173 list_add(&cmd
->list
, &ftrace_commands
);
2175 mutex_unlock(&ftrace_cmd_mutex
);
2180 int unregister_ftrace_command(struct ftrace_func_command
*cmd
)
2182 struct ftrace_func_command
*p
, *n
;
2185 mutex_lock(&ftrace_cmd_mutex
);
2186 list_for_each_entry_safe(p
, n
, &ftrace_commands
, list
) {
2187 if (strcmp(cmd
->name
, p
->name
) == 0) {
2189 list_del_init(&p
->list
);
2194 mutex_unlock(&ftrace_cmd_mutex
);
2199 static int ftrace_process_regex(char *buff
, int len
, int enable
)
2201 char *func
, *command
, *next
= buff
;
2202 struct ftrace_func_command
*p
;
2205 func
= strsep(&next
, ":");
2208 if (ftrace_match_records(func
, len
, enable
))
2215 command
= strsep(&next
, ":");
2217 mutex_lock(&ftrace_cmd_mutex
);
2218 list_for_each_entry(p
, &ftrace_commands
, list
) {
2219 if (strcmp(p
->name
, command
) == 0) {
2220 ret
= p
->func(func
, command
, next
, enable
);
2225 mutex_unlock(&ftrace_cmd_mutex
);
2231 ftrace_regex_write(struct file
*file
, const char __user
*ubuf
,
2232 size_t cnt
, loff_t
*ppos
, int enable
)
2234 struct ftrace_iterator
*iter
;
2235 struct trace_parser
*parser
;
2241 mutex_lock(&ftrace_regex_lock
);
2243 if (file
->f_mode
& FMODE_READ
) {
2244 struct seq_file
*m
= file
->private_data
;
2247 iter
= file
->private_data
;
2249 parser
= &iter
->parser
;
2250 read
= trace_get_user(parser
, ubuf
, cnt
, ppos
);
2252 if (read
>= 0 && trace_parser_loaded(parser
) &&
2253 !trace_parser_cont(parser
)) {
2254 ret
= ftrace_process_regex(parser
->buffer
,
2255 parser
->idx
, enable
);
2256 trace_parser_clear(parser
);
2263 mutex_unlock(&ftrace_regex_lock
);
2269 ftrace_filter_write(struct file
*file
, const char __user
*ubuf
,
2270 size_t cnt
, loff_t
*ppos
)
2272 return ftrace_regex_write(file
, ubuf
, cnt
, ppos
, 1);
2276 ftrace_notrace_write(struct file
*file
, const char __user
*ubuf
,
2277 size_t cnt
, loff_t
*ppos
)
2279 return ftrace_regex_write(file
, ubuf
, cnt
, ppos
, 0);
2283 ftrace_set_regex(unsigned char *buf
, int len
, int reset
, int enable
)
2285 if (unlikely(ftrace_disabled
))
2288 mutex_lock(&ftrace_regex_lock
);
2290 ftrace_filter_reset(enable
);
2292 ftrace_match_records(buf
, len
, enable
);
2293 mutex_unlock(&ftrace_regex_lock
);
2297 * ftrace_set_filter - set a function to filter on in ftrace
2298 * @buf - the string that holds the function filter text.
2299 * @len - the length of the string.
2300 * @reset - non zero to reset all filters before applying this filter.
2302 * Filters denote which functions should be enabled when tracing is enabled.
2303 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
2305 void ftrace_set_filter(unsigned char *buf
, int len
, int reset
)
2307 ftrace_set_regex(buf
, len
, reset
, 1);
2311 * ftrace_set_notrace - set a function to not trace in ftrace
2312 * @buf - the string that holds the function notrace text.
2313 * @len - the length of the string.
2314 * @reset - non zero to reset all filters before applying this filter.
2316 * Notrace Filters denote which functions should not be enabled when tracing
2317 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
2320 void ftrace_set_notrace(unsigned char *buf
, int len
, int reset
)
2322 ftrace_set_regex(buf
, len
, reset
, 0);
2326 * command line interface to allow users to set filters on boot up.
2328 #define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
2329 static char ftrace_notrace_buf
[FTRACE_FILTER_SIZE
] __initdata
;
2330 static char ftrace_filter_buf
[FTRACE_FILTER_SIZE
] __initdata
;
2332 static int __init
set_ftrace_notrace(char *str
)
2334 strncpy(ftrace_notrace_buf
, str
, FTRACE_FILTER_SIZE
);
2337 __setup("ftrace_notrace=", set_ftrace_notrace
);
2339 static int __init
set_ftrace_filter(char *str
)
2341 strncpy(ftrace_filter_buf
, str
, FTRACE_FILTER_SIZE
);
2344 __setup("ftrace_filter=", set_ftrace_filter
);
2346 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
2347 static char ftrace_graph_buf
[FTRACE_FILTER_SIZE
] __initdata
;
2348 static int ftrace_set_func(unsigned long *array
, int *idx
, char *buffer
);
2350 static int __init
set_graph_function(char *str
)
2352 strlcpy(ftrace_graph_buf
, str
, FTRACE_FILTER_SIZE
);
2355 __setup("ftrace_graph_filter=", set_graph_function
);
2357 static void __init
set_ftrace_early_graph(char *buf
)
2363 func
= strsep(&buf
, ",");
2364 /* we allow only one expression at a time */
2365 ret
= ftrace_set_func(ftrace_graph_funcs
, &ftrace_graph_count
,
2368 printk(KERN_DEBUG
"ftrace: function %s not "
2369 "traceable\n", func
);
2372 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2374 static void __init
set_ftrace_early_filter(char *buf
, int enable
)
2379 func
= strsep(&buf
, ",");
2380 ftrace_set_regex(func
, strlen(func
), 0, enable
);
2384 static void __init
set_ftrace_early_filters(void)
2386 if (ftrace_filter_buf
[0])
2387 set_ftrace_early_filter(ftrace_filter_buf
, 1);
2388 if (ftrace_notrace_buf
[0])
2389 set_ftrace_early_filter(ftrace_notrace_buf
, 0);
2390 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
2391 if (ftrace_graph_buf
[0])
2392 set_ftrace_early_graph(ftrace_graph_buf
);
2393 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2397 ftrace_regex_release(struct inode
*inode
, struct file
*file
, int enable
)
2399 struct seq_file
*m
= (struct seq_file
*)file
->private_data
;
2400 struct ftrace_iterator
*iter
;
2401 struct trace_parser
*parser
;
2403 mutex_lock(&ftrace_regex_lock
);
2404 if (file
->f_mode
& FMODE_READ
) {
2407 seq_release(inode
, file
);
2409 iter
= file
->private_data
;
2411 parser
= &iter
->parser
;
2412 if (trace_parser_loaded(parser
)) {
2413 parser
->buffer
[parser
->idx
] = 0;
2414 ftrace_match_records(parser
->buffer
, parser
->idx
, enable
);
2417 mutex_lock(&ftrace_lock
);
2418 if (ftrace_start_up
&& ftrace_enabled
)
2419 ftrace_run_update_code(FTRACE_ENABLE_CALLS
);
2420 mutex_unlock(&ftrace_lock
);
2422 trace_parser_put(parser
);
2425 mutex_unlock(&ftrace_regex_lock
);
2430 ftrace_filter_release(struct inode
*inode
, struct file
*file
)
2432 return ftrace_regex_release(inode
, file
, 1);
2436 ftrace_notrace_release(struct inode
*inode
, struct file
*file
)
2438 return ftrace_regex_release(inode
, file
, 0);
2441 static const struct file_operations ftrace_avail_fops
= {
2442 .open
= ftrace_avail_open
,
2444 .llseek
= seq_lseek
,
2445 .release
= seq_release_private
,
2448 static const struct file_operations ftrace_failures_fops
= {
2449 .open
= ftrace_failures_open
,
2451 .llseek
= seq_lseek
,
2452 .release
= seq_release_private
,
2455 static const struct file_operations ftrace_filter_fops
= {
2456 .open
= ftrace_filter_open
,
2458 .write
= ftrace_filter_write
,
2459 .llseek
= ftrace_regex_lseek
,
2460 .release
= ftrace_filter_release
,
2463 static const struct file_operations ftrace_notrace_fops
= {
2464 .open
= ftrace_notrace_open
,
2466 .write
= ftrace_notrace_write
,
2467 .llseek
= ftrace_regex_lseek
,
2468 .release
= ftrace_notrace_release
,
2471 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
2473 static DEFINE_MUTEX(graph_lock
);
2475 int ftrace_graph_count
;
2476 int ftrace_graph_filter_enabled
;
2477 unsigned long ftrace_graph_funcs
[FTRACE_GRAPH_MAX_FUNCS
] __read_mostly
;
2480 __g_next(struct seq_file
*m
, loff_t
*pos
)
2482 if (*pos
>= ftrace_graph_count
)
2484 return &ftrace_graph_funcs
[*pos
];
2488 g_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
2491 return __g_next(m
, pos
);
2494 static void *g_start(struct seq_file
*m
, loff_t
*pos
)
2496 mutex_lock(&graph_lock
);
2498 /* Nothing, tell g_show to print all functions are enabled */
2499 if (!ftrace_graph_filter_enabled
&& !*pos
)
2502 return __g_next(m
, pos
);
2505 static void g_stop(struct seq_file
*m
, void *p
)
2507 mutex_unlock(&graph_lock
);
2510 static int g_show(struct seq_file
*m
, void *v
)
2512 unsigned long *ptr
= v
;
2517 if (ptr
== (unsigned long *)1) {
2518 seq_printf(m
, "#### all functions enabled ####\n");
2522 seq_printf(m
, "%ps\n", (void *)*ptr
);
2527 static const struct seq_operations ftrace_graph_seq_ops
= {
2535 ftrace_graph_open(struct inode
*inode
, struct file
*file
)
2539 if (unlikely(ftrace_disabled
))
2542 mutex_lock(&graph_lock
);
2543 if ((file
->f_mode
& FMODE_WRITE
) &&
2544 (file
->f_flags
& O_TRUNC
)) {
2545 ftrace_graph_filter_enabled
= 0;
2546 ftrace_graph_count
= 0;
2547 memset(ftrace_graph_funcs
, 0, sizeof(ftrace_graph_funcs
));
2549 mutex_unlock(&graph_lock
);
2551 if (file
->f_mode
& FMODE_READ
)
2552 ret
= seq_open(file
, &ftrace_graph_seq_ops
);
2558 ftrace_graph_release(struct inode
*inode
, struct file
*file
)
2560 if (file
->f_mode
& FMODE_READ
)
2561 seq_release(inode
, file
);
2566 ftrace_set_func(unsigned long *array
, int *idx
, char *buffer
)
2568 struct dyn_ftrace
*rec
;
2569 struct ftrace_page
*pg
;
2577 if (ftrace_disabled
)
2581 type
= filter_parse_regex(buffer
, strlen(buffer
), &search
, ¬);
2582 if (!not && *idx
>= FTRACE_GRAPH_MAX_FUNCS
)
2585 search_len
= strlen(search
);
2587 mutex_lock(&ftrace_lock
);
2588 do_for_each_ftrace_rec(pg
, rec
) {
2590 if (rec
->flags
& (FTRACE_FL_FAILED
| FTRACE_FL_FREE
))
2593 if (ftrace_match_record(rec
, search
, search_len
, type
)) {
2594 /* if it is in the array */
2596 for (i
= 0; i
< *idx
; i
++) {
2597 if (array
[i
] == rec
->ip
) {
2606 array
[(*idx
)++] = rec
->ip
;
2607 if (*idx
>= FTRACE_GRAPH_MAX_FUNCS
)
2612 array
[i
] = array
[--(*idx
)];
2618 } while_for_each_ftrace_rec();
2620 mutex_unlock(&ftrace_lock
);
2625 ftrace_graph_filter_enabled
= 1;
2630 ftrace_graph_write(struct file
*file
, const char __user
*ubuf
,
2631 size_t cnt
, loff_t
*ppos
)
2633 struct trace_parser parser
;
2639 mutex_lock(&graph_lock
);
2641 if (trace_parser_get_init(&parser
, FTRACE_BUFF_MAX
)) {
2646 read
= trace_get_user(&parser
, ubuf
, cnt
, ppos
);
2648 if (read
>= 0 && trace_parser_loaded((&parser
))) {
2649 parser
.buffer
[parser
.idx
] = 0;
2651 /* we allow only one expression at a time */
2652 ret
= ftrace_set_func(ftrace_graph_funcs
, &ftrace_graph_count
,
2661 trace_parser_put(&parser
);
2663 mutex_unlock(&graph_lock
);
2668 static const struct file_operations ftrace_graph_fops
= {
2669 .open
= ftrace_graph_open
,
2671 .write
= ftrace_graph_write
,
2672 .release
= ftrace_graph_release
,
2673 .llseek
= seq_lseek
,
2675 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2677 static __init
int ftrace_init_dyn_debugfs(struct dentry
*d_tracer
)
2680 trace_create_file("available_filter_functions", 0444,
2681 d_tracer
, NULL
, &ftrace_avail_fops
);
2683 trace_create_file("failures", 0444,
2684 d_tracer
, NULL
, &ftrace_failures_fops
);
2686 trace_create_file("set_ftrace_filter", 0644, d_tracer
,
2687 NULL
, &ftrace_filter_fops
);
2689 trace_create_file("set_ftrace_notrace", 0644, d_tracer
,
2690 NULL
, &ftrace_notrace_fops
);
2692 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
2693 trace_create_file("set_graph_function", 0444, d_tracer
,
2695 &ftrace_graph_fops
);
2696 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2701 static int ftrace_process_locs(struct module
*mod
,
2702 unsigned long *start
,
2707 unsigned long flags
;
2709 mutex_lock(&ftrace_lock
);
2712 addr
= ftrace_call_adjust(*p
++);
2714 * Some architecture linkers will pad between
2715 * the different mcount_loc sections of different
2716 * object files to satisfy alignments.
2717 * Skip any NULL pointers.
2721 ftrace_record_ip(addr
);
2724 /* disable interrupts to prevent kstop machine */
2725 local_irq_save(flags
);
2726 ftrace_update_code(mod
);
2727 local_irq_restore(flags
);
2728 mutex_unlock(&ftrace_lock
);
2733 #ifdef CONFIG_MODULES
2734 void ftrace_release_mod(struct module
*mod
)
2736 struct dyn_ftrace
*rec
;
2737 struct ftrace_page
*pg
;
2739 if (ftrace_disabled
)
2742 mutex_lock(&ftrace_lock
);
2743 do_for_each_ftrace_rec(pg
, rec
) {
2744 if (within_module_core(rec
->ip
, mod
)) {
2746 * rec->ip is changed in ftrace_free_rec()
2747 * It should not between s and e if record was freed.
2749 FTRACE_WARN_ON(rec
->flags
& FTRACE_FL_FREE
);
2750 ftrace_free_rec(rec
);
2752 } while_for_each_ftrace_rec();
2753 mutex_unlock(&ftrace_lock
);
2756 static void ftrace_init_module(struct module
*mod
,
2757 unsigned long *start
, unsigned long *end
)
2759 if (ftrace_disabled
|| start
== end
)
2761 ftrace_process_locs(mod
, start
, end
);
2764 static int ftrace_module_notify(struct notifier_block
*self
,
2765 unsigned long val
, void *data
)
2767 struct module
*mod
= data
;
2770 case MODULE_STATE_COMING
:
2771 ftrace_init_module(mod
, mod
->ftrace_callsites
,
2772 mod
->ftrace_callsites
+
2773 mod
->num_ftrace_callsites
);
2775 case MODULE_STATE_GOING
:
2776 ftrace_release_mod(mod
);
2783 static int ftrace_module_notify(struct notifier_block
*self
,
2784 unsigned long val
, void *data
)
2788 #endif /* CONFIG_MODULES */
2790 struct notifier_block ftrace_module_nb
= {
2791 .notifier_call
= ftrace_module_notify
,
2795 extern unsigned long __start_mcount_loc
[];
2796 extern unsigned long __stop_mcount_loc
[];
2798 void __init
ftrace_init(void)
2800 unsigned long count
, addr
, flags
;
2803 /* Keep the ftrace pointer to the stub */
2804 addr
= (unsigned long)ftrace_stub
;
2806 local_irq_save(flags
);
2807 ftrace_dyn_arch_init(&addr
);
2808 local_irq_restore(flags
);
2810 /* ftrace_dyn_arch_init places the return code in addr */
2814 count
= __stop_mcount_loc
- __start_mcount_loc
;
2816 ret
= ftrace_dyn_table_alloc(count
);
2820 last_ftrace_enabled
= ftrace_enabled
= 1;
2822 ret
= ftrace_process_locs(NULL
,
2826 ret
= register_module_notifier(&ftrace_module_nb
);
2828 pr_warning("Failed to register trace ftrace module notifier\n");
2830 set_ftrace_early_filters();
2834 ftrace_disabled
= 1;
2839 static int __init
ftrace_nodyn_init(void)
2844 device_initcall(ftrace_nodyn_init
);
2846 static inline int ftrace_init_dyn_debugfs(struct dentry
*d_tracer
) { return 0; }
2847 static inline void ftrace_startup_enable(int command
) { }
2848 /* Keep as macros so we do not need to define the commands */
2849 # define ftrace_startup(command) do { } while (0)
2850 # define ftrace_shutdown(command) do { } while (0)
2851 # define ftrace_startup_sysctl() do { } while (0)
2852 # define ftrace_shutdown_sysctl() do { } while (0)
2853 #endif /* CONFIG_DYNAMIC_FTRACE */
2855 static void clear_ftrace_swapper(void)
2857 struct task_struct
*p
;
2861 for_each_online_cpu(cpu
) {
2863 clear_tsk_trace_trace(p
);
2868 static void set_ftrace_swapper(void)
2870 struct task_struct
*p
;
2874 for_each_online_cpu(cpu
) {
2876 set_tsk_trace_trace(p
);
2881 static void clear_ftrace_pid(struct pid
*pid
)
2883 struct task_struct
*p
;
2886 do_each_pid_task(pid
, PIDTYPE_PID
, p
) {
2887 clear_tsk_trace_trace(p
);
2888 } while_each_pid_task(pid
, PIDTYPE_PID
, p
);
2894 static void set_ftrace_pid(struct pid
*pid
)
2896 struct task_struct
*p
;
2899 do_each_pid_task(pid
, PIDTYPE_PID
, p
) {
2900 set_tsk_trace_trace(p
);
2901 } while_each_pid_task(pid
, PIDTYPE_PID
, p
);
2905 static void clear_ftrace_pid_task(struct pid
*pid
)
2907 if (pid
== ftrace_swapper_pid
)
2908 clear_ftrace_swapper();
2910 clear_ftrace_pid(pid
);
2913 static void set_ftrace_pid_task(struct pid
*pid
)
2915 if (pid
== ftrace_swapper_pid
)
2916 set_ftrace_swapper();
2918 set_ftrace_pid(pid
);
2921 static int ftrace_pid_add(int p
)
2924 struct ftrace_pid
*fpid
;
2927 mutex_lock(&ftrace_lock
);
2930 pid
= ftrace_swapper_pid
;
2932 pid
= find_get_pid(p
);
2939 list_for_each_entry(fpid
, &ftrace_pids
, list
)
2940 if (fpid
->pid
== pid
)
2945 fpid
= kmalloc(sizeof(*fpid
), GFP_KERNEL
);
2949 list_add(&fpid
->list
, &ftrace_pids
);
2952 set_ftrace_pid_task(pid
);
2954 ftrace_update_pid_func();
2955 ftrace_startup_enable(0);
2957 mutex_unlock(&ftrace_lock
);
2961 if (pid
!= ftrace_swapper_pid
)
2965 mutex_unlock(&ftrace_lock
);
2969 static void ftrace_pid_reset(void)
2971 struct ftrace_pid
*fpid
, *safe
;
2973 mutex_lock(&ftrace_lock
);
2974 list_for_each_entry_safe(fpid
, safe
, &ftrace_pids
, list
) {
2975 struct pid
*pid
= fpid
->pid
;
2977 clear_ftrace_pid_task(pid
);
2979 list_del(&fpid
->list
);
2983 ftrace_update_pid_func();
2984 ftrace_startup_enable(0);
2986 mutex_unlock(&ftrace_lock
);
2989 static void *fpid_start(struct seq_file
*m
, loff_t
*pos
)
2991 mutex_lock(&ftrace_lock
);
2993 if (list_empty(&ftrace_pids
) && (!*pos
))
2996 return seq_list_start(&ftrace_pids
, *pos
);
2999 static void *fpid_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
3004 return seq_list_next(v
, &ftrace_pids
, pos
);
3007 static void fpid_stop(struct seq_file
*m
, void *p
)
3009 mutex_unlock(&ftrace_lock
);
3012 static int fpid_show(struct seq_file
*m
, void *v
)
3014 const struct ftrace_pid
*fpid
= list_entry(v
, struct ftrace_pid
, list
);
3016 if (v
== (void *)1) {
3017 seq_printf(m
, "no pid\n");
3021 if (fpid
->pid
== ftrace_swapper_pid
)
3022 seq_printf(m
, "swapper tasks\n");
3024 seq_printf(m
, "%u\n", pid_vnr(fpid
->pid
));
3029 static const struct seq_operations ftrace_pid_sops
= {
3030 .start
= fpid_start
,
3037 ftrace_pid_open(struct inode
*inode
, struct file
*file
)
3041 if ((file
->f_mode
& FMODE_WRITE
) &&
3042 (file
->f_flags
& O_TRUNC
))
3045 if (file
->f_mode
& FMODE_READ
)
3046 ret
= seq_open(file
, &ftrace_pid_sops
);
3052 ftrace_pid_write(struct file
*filp
, const char __user
*ubuf
,
3053 size_t cnt
, loff_t
*ppos
)
3059 if (cnt
>= sizeof(buf
))
3062 if (copy_from_user(&buf
, ubuf
, cnt
))
3068 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
3069 * to clean the filter quietly.
3071 tmp
= strstrip(buf
);
3072 if (strlen(tmp
) == 0)
3075 ret
= strict_strtol(tmp
, 10, &val
);
3079 ret
= ftrace_pid_add(val
);
3081 return ret
? ret
: cnt
;
3085 ftrace_pid_release(struct inode
*inode
, struct file
*file
)
3087 if (file
->f_mode
& FMODE_READ
)
3088 seq_release(inode
, file
);
3093 static const struct file_operations ftrace_pid_fops
= {
3094 .open
= ftrace_pid_open
,
3095 .write
= ftrace_pid_write
,
3097 .llseek
= seq_lseek
,
3098 .release
= ftrace_pid_release
,
3101 static __init
int ftrace_init_debugfs(void)
3103 struct dentry
*d_tracer
;
3105 d_tracer
= tracing_init_dentry();
3109 ftrace_init_dyn_debugfs(d_tracer
);
3111 trace_create_file("set_ftrace_pid", 0644, d_tracer
,
3112 NULL
, &ftrace_pid_fops
);
3114 ftrace_profile_debugfs(d_tracer
);
3118 fs_initcall(ftrace_init_debugfs
);
3121 * ftrace_kill - kill ftrace
3123 * This function should be used by panic code. It stops ftrace
3124 * but in a not so nice way. If you need to simply kill ftrace
3125 * from a non-atomic section, use ftrace_kill.
3127 void ftrace_kill(void)
3129 ftrace_disabled
= 1;
3131 clear_ftrace_function();
3135 * register_ftrace_function - register a function for profiling
3136 * @ops - ops structure that holds the function for profiling.
3138 * Register a function to be called by all functions in the
3141 * Note: @ops->func and all the functions it calls must be labeled
3142 * with "notrace", otherwise it will go into a
3145 int register_ftrace_function(struct ftrace_ops
*ops
)
3149 if (unlikely(ftrace_disabled
))
3152 mutex_lock(&ftrace_lock
);
3154 ret
= __register_ftrace_function(ops
);
3157 mutex_unlock(&ftrace_lock
);
3162 * unregister_ftrace_function - unregister a function for profiling.
3163 * @ops - ops structure that holds the function to unregister
3165 * Unregister a function that was added to be called by ftrace profiling.
3167 int unregister_ftrace_function(struct ftrace_ops
*ops
)
3171 mutex_lock(&ftrace_lock
);
3172 ret
= __unregister_ftrace_function(ops
);
3174 mutex_unlock(&ftrace_lock
);
3180 ftrace_enable_sysctl(struct ctl_table
*table
, int write
,
3181 void __user
*buffer
, size_t *lenp
,
3186 if (unlikely(ftrace_disabled
))
3189 mutex_lock(&ftrace_lock
);
3191 ret
= proc_dointvec(table
, write
, buffer
, lenp
, ppos
);
3193 if (ret
|| !write
|| (last_ftrace_enabled
== !!ftrace_enabled
))
3196 last_ftrace_enabled
= !!ftrace_enabled
;
3198 if (ftrace_enabled
) {
3200 ftrace_startup_sysctl();
3202 /* we are starting ftrace again */
3203 if (ftrace_list
!= &ftrace_list_end
) {
3204 if (ftrace_list
->next
== &ftrace_list_end
)
3205 ftrace_trace_function
= ftrace_list
->func
;
3207 ftrace_trace_function
= ftrace_list_func
;
3211 /* stopping ftrace calls (just send to ftrace_stub) */
3212 ftrace_trace_function
= ftrace_stub
;
3214 ftrace_shutdown_sysctl();
3218 mutex_unlock(&ftrace_lock
);
3222 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3224 static int ftrace_graph_active
;
3225 static struct notifier_block ftrace_suspend_notifier
;
3227 int ftrace_graph_entry_stub(struct ftrace_graph_ent
*trace
)
3232 /* The callbacks that hook a function */
3233 trace_func_graph_ret_t ftrace_graph_return
=
3234 (trace_func_graph_ret_t
)ftrace_stub
;
3235 trace_func_graph_ent_t ftrace_graph_entry
= ftrace_graph_entry_stub
;
3237 /* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
3238 static int alloc_retstack_tasklist(struct ftrace_ret_stack
**ret_stack_list
)
3242 unsigned long flags
;
3243 int start
= 0, end
= FTRACE_RETSTACK_ALLOC_SIZE
;
3244 struct task_struct
*g
, *t
;
3246 for (i
= 0; i
< FTRACE_RETSTACK_ALLOC_SIZE
; i
++) {
3247 ret_stack_list
[i
] = kmalloc(FTRACE_RETFUNC_DEPTH
3248 * sizeof(struct ftrace_ret_stack
),
3250 if (!ret_stack_list
[i
]) {
3258 read_lock_irqsave(&tasklist_lock
, flags
);
3259 do_each_thread(g
, t
) {
3265 if (t
->ret_stack
== NULL
) {
3266 atomic_set(&t
->tracing_graph_pause
, 0);
3267 atomic_set(&t
->trace_overrun
, 0);
3268 t
->curr_ret_stack
= -1;
3269 /* Make sure the tasks see the -1 first: */
3271 t
->ret_stack
= ret_stack_list
[start
++];
3273 } while_each_thread(g
, t
);
3276 read_unlock_irqrestore(&tasklist_lock
, flags
);
3278 for (i
= start
; i
< end
; i
++)
3279 kfree(ret_stack_list
[i
]);
3284 ftrace_graph_probe_sched_switch(void *ignore
,
3285 struct task_struct
*prev
, struct task_struct
*next
)
3287 unsigned long long timestamp
;
3291 * Does the user want to count the time a function was asleep.
3292 * If so, do not update the time stamps.
3294 if (trace_flags
& TRACE_ITER_SLEEP_TIME
)
3297 timestamp
= trace_clock_local();
3299 prev
->ftrace_timestamp
= timestamp
;
3301 /* only process tasks that we timestamped */
3302 if (!next
->ftrace_timestamp
)
3306 * Update all the counters in next to make up for the
3307 * time next was sleeping.
3309 timestamp
-= next
->ftrace_timestamp
;
3311 for (index
= next
->curr_ret_stack
; index
>= 0; index
--)
3312 next
->ret_stack
[index
].calltime
+= timestamp
;
3315 /* Allocate a return stack for each task */
3316 static int start_graph_tracing(void)
3318 struct ftrace_ret_stack
**ret_stack_list
;
3321 ret_stack_list
= kmalloc(FTRACE_RETSTACK_ALLOC_SIZE
*
3322 sizeof(struct ftrace_ret_stack
*),
3325 if (!ret_stack_list
)
3328 /* The cpu_boot init_task->ret_stack will never be freed */
3329 for_each_online_cpu(cpu
) {
3330 if (!idle_task(cpu
)->ret_stack
)
3331 ftrace_graph_init_task(idle_task(cpu
));
3335 ret
= alloc_retstack_tasklist(ret_stack_list
);
3336 } while (ret
== -EAGAIN
);
3339 ret
= register_trace_sched_switch(ftrace_graph_probe_sched_switch
, NULL
);
3341 pr_info("ftrace_graph: Couldn't activate tracepoint"
3342 " probe to kernel_sched_switch\n");
3345 kfree(ret_stack_list
);
3350 * Hibernation protection.
3351 * The state of the current task is too much unstable during
3352 * suspend/restore to disk. We want to protect against that.
3355 ftrace_suspend_notifier_call(struct notifier_block
*bl
, unsigned long state
,
3359 case PM_HIBERNATION_PREPARE
:
3360 pause_graph_tracing();
3363 case PM_POST_HIBERNATION
:
3364 unpause_graph_tracing();
3370 int register_ftrace_graph(trace_func_graph_ret_t retfunc
,
3371 trace_func_graph_ent_t entryfunc
)
3375 mutex_lock(&ftrace_lock
);
3377 /* we currently allow only one tracer registered at a time */
3378 if (ftrace_graph_active
) {
3383 ftrace_suspend_notifier
.notifier_call
= ftrace_suspend_notifier_call
;
3384 register_pm_notifier(&ftrace_suspend_notifier
);
3386 ftrace_graph_active
++;
3387 ret
= start_graph_tracing();
3389 ftrace_graph_active
--;
3393 ftrace_graph_return
= retfunc
;
3394 ftrace_graph_entry
= entryfunc
;
3396 ftrace_startup(FTRACE_START_FUNC_RET
);
3399 mutex_unlock(&ftrace_lock
);
3403 void unregister_ftrace_graph(void)
3405 mutex_lock(&ftrace_lock
);
3407 if (unlikely(!ftrace_graph_active
))
3410 ftrace_graph_active
--;
3411 ftrace_graph_return
= (trace_func_graph_ret_t
)ftrace_stub
;
3412 ftrace_graph_entry
= ftrace_graph_entry_stub
;
3413 ftrace_shutdown(FTRACE_STOP_FUNC_RET
);
3414 unregister_pm_notifier(&ftrace_suspend_notifier
);
3415 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch
, NULL
);
3418 mutex_unlock(&ftrace_lock
);
3421 /* Allocate a return stack for newly created task */
3422 void ftrace_graph_init_task(struct task_struct
*t
)
3424 /* Make sure we do not use the parent ret_stack */
3425 t
->ret_stack
= NULL
;
3426 t
->curr_ret_stack
= -1;
3428 if (ftrace_graph_active
) {
3429 struct ftrace_ret_stack
*ret_stack
;
3431 ret_stack
= kmalloc(FTRACE_RETFUNC_DEPTH
3432 * sizeof(struct ftrace_ret_stack
),
3436 atomic_set(&t
->tracing_graph_pause
, 0);
3437 atomic_set(&t
->trace_overrun
, 0);
3438 t
->ftrace_timestamp
= 0;
3439 /* make curr_ret_stack visable before we add the ret_stack */
3441 t
->ret_stack
= ret_stack
;
3445 void ftrace_graph_exit_task(struct task_struct
*t
)
3447 struct ftrace_ret_stack
*ret_stack
= t
->ret_stack
;
3449 t
->ret_stack
= NULL
;
3450 /* NULL must become visible to IRQs before we free it: */
3456 void ftrace_graph_stop(void)