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/module.h>
26 #include <linux/ftrace.h>
27 #include <linux/sysctl.h>
28 #include <linux/slab.h>
29 #include <linux/ctype.h>
30 #include <linux/list.h>
31 #include <linux/hash.h>
32 #include <linux/rcupdate.h>
34 #include <trace/events/sched.h>
36 #include <asm/setup.h>
38 #include "trace_output.h"
39 #include "trace_stat.h"
41 #define FTRACE_WARN_ON(cond) \
49 #define FTRACE_WARN_ON_ONCE(cond) \
52 if (WARN_ON_ONCE(___r)) \
57 /* hash bits for specific function selection */
58 #define FTRACE_HASH_BITS 7
59 #define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
60 #define FTRACE_HASH_DEFAULT_BITS 10
61 #define FTRACE_HASH_MAX_BITS 12
63 /* ftrace_enabled is a method to turn ftrace on or off */
64 int ftrace_enabled __read_mostly
;
65 static int last_ftrace_enabled
;
67 /* Quick disabling of function tracer. */
68 int function_trace_stop
;
70 /* List for set_ftrace_pid's pids. */
71 LIST_HEAD(ftrace_pids
);
73 struct list_head list
;
78 * ftrace_disabled is set when an anomaly is discovered.
79 * ftrace_disabled is much stronger than ftrace_enabled.
81 static int ftrace_disabled __read_mostly
;
83 static DEFINE_MUTEX(ftrace_lock
);
85 static struct ftrace_ops ftrace_list_end __read_mostly
= {
89 static struct ftrace_ops
*ftrace_global_list __read_mostly
= &ftrace_list_end
;
90 static struct ftrace_ops
*ftrace_ops_list __read_mostly
= &ftrace_list_end
;
91 ftrace_func_t ftrace_trace_function __read_mostly
= ftrace_stub
;
92 static ftrace_func_t __ftrace_trace_function_delay __read_mostly
= ftrace_stub
;
93 ftrace_func_t __ftrace_trace_function __read_mostly
= ftrace_stub
;
94 ftrace_func_t ftrace_pid_function __read_mostly
= ftrace_stub
;
95 static struct ftrace_ops global_ops
;
98 ftrace_ops_list_func(unsigned long ip
, unsigned long parent_ip
);
101 * Traverse the ftrace_global_list, invoking all entries. The reason that we
102 * can use rcu_dereference_raw() is that elements removed from this list
103 * are simply leaked, so there is no need to interact with a grace-period
104 * mechanism. The rcu_dereference_raw() calls are needed to handle
105 * concurrent insertions into the ftrace_global_list.
107 * Silly Alpha and silly pointer-speculation compiler optimizations!
109 static void ftrace_global_list_func(unsigned long ip
,
110 unsigned long parent_ip
)
112 struct ftrace_ops
*op
;
114 if (unlikely(trace_recursion_test(TRACE_GLOBAL_BIT
)))
117 trace_recursion_set(TRACE_GLOBAL_BIT
);
118 op
= rcu_dereference_raw(ftrace_global_list
); /*see above*/
119 while (op
!= &ftrace_list_end
) {
120 op
->func(ip
, parent_ip
);
121 op
= rcu_dereference_raw(op
->next
); /*see above*/
123 trace_recursion_clear(TRACE_GLOBAL_BIT
);
126 static void ftrace_pid_func(unsigned long ip
, unsigned long parent_ip
)
128 if (!test_tsk_trace_trace(current
))
131 ftrace_pid_function(ip
, parent_ip
);
134 static void set_ftrace_pid_function(ftrace_func_t func
)
136 /* do not set ftrace_pid_function to itself! */
137 if (func
!= ftrace_pid_func
)
138 ftrace_pid_function
= func
;
142 * clear_ftrace_function - reset the ftrace function
144 * This NULLs the ftrace function and in essence stops
145 * tracing. There may be lag
147 void clear_ftrace_function(void)
149 ftrace_trace_function
= ftrace_stub
;
150 __ftrace_trace_function
= ftrace_stub
;
151 __ftrace_trace_function_delay
= ftrace_stub
;
152 ftrace_pid_function
= ftrace_stub
;
155 #undef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
156 #ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
158 * For those archs that do not test ftrace_trace_stop in their
159 * mcount call site, we need to do it from C.
161 static void ftrace_test_stop_func(unsigned long ip
, unsigned long parent_ip
)
163 if (function_trace_stop
)
166 __ftrace_trace_function(ip
, parent_ip
);
170 static void update_global_ops(void)
175 * If there's only one function registered, then call that
176 * function directly. Otherwise, we need to iterate over the
177 * registered callers.
179 if (ftrace_global_list
== &ftrace_list_end
||
180 ftrace_global_list
->next
== &ftrace_list_end
)
181 func
= ftrace_global_list
->func
;
183 func
= ftrace_global_list_func
;
185 /* If we filter on pids, update to use the pid function */
186 if (!list_empty(&ftrace_pids
)) {
187 set_ftrace_pid_function(func
);
188 func
= ftrace_pid_func
;
191 global_ops
.func
= func
;
194 static void update_ftrace_function(void)
201 * If we are at the end of the list and this ops is
202 * not dynamic, then have the mcount trampoline call
203 * the function directly
205 if (ftrace_ops_list
== &ftrace_list_end
||
206 (ftrace_ops_list
->next
== &ftrace_list_end
&&
207 !(ftrace_ops_list
->flags
& FTRACE_OPS_FL_DYNAMIC
)))
208 func
= ftrace_ops_list
->func
;
210 func
= ftrace_ops_list_func
;
212 #ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
213 ftrace_trace_function
= func
;
215 #ifdef CONFIG_DYNAMIC_FTRACE
216 /* do not update till all functions have been modified */
217 __ftrace_trace_function_delay
= func
;
219 __ftrace_trace_function
= func
;
221 ftrace_trace_function
= ftrace_test_stop_func
;
225 static void add_ftrace_ops(struct ftrace_ops
**list
, struct ftrace_ops
*ops
)
229 * We are entering ops into the list but another
230 * CPU might be walking that list. We need to make sure
231 * the ops->next pointer is valid before another CPU sees
232 * the ops pointer included into the list.
234 rcu_assign_pointer(*list
, ops
);
237 static int remove_ftrace_ops(struct ftrace_ops
**list
, struct ftrace_ops
*ops
)
239 struct ftrace_ops
**p
;
242 * If we are removing the last function, then simply point
243 * to the ftrace_stub.
245 if (*list
== ops
&& ops
->next
== &ftrace_list_end
) {
246 *list
= &ftrace_list_end
;
250 for (p
= list
; *p
!= &ftrace_list_end
; p
= &(*p
)->next
)
261 static int __register_ftrace_function(struct ftrace_ops
*ops
)
266 if (FTRACE_WARN_ON(ops
== &global_ops
))
269 if (WARN_ON(ops
->flags
& FTRACE_OPS_FL_ENABLED
))
272 if (!core_kernel_data((unsigned long)ops
))
273 ops
->flags
|= FTRACE_OPS_FL_DYNAMIC
;
275 if (ops
->flags
& FTRACE_OPS_FL_GLOBAL
) {
276 int first
= ftrace_global_list
== &ftrace_list_end
;
277 add_ftrace_ops(&ftrace_global_list
, ops
);
278 ops
->flags
|= FTRACE_OPS_FL_ENABLED
;
280 add_ftrace_ops(&ftrace_ops_list
, &global_ops
);
282 add_ftrace_ops(&ftrace_ops_list
, ops
);
285 update_ftrace_function();
290 static int __unregister_ftrace_function(struct ftrace_ops
*ops
)
297 if (WARN_ON(!(ops
->flags
& FTRACE_OPS_FL_ENABLED
)))
300 if (FTRACE_WARN_ON(ops
== &global_ops
))
303 if (ops
->flags
& FTRACE_OPS_FL_GLOBAL
) {
304 ret
= remove_ftrace_ops(&ftrace_global_list
, ops
);
305 if (!ret
&& ftrace_global_list
== &ftrace_list_end
)
306 ret
= remove_ftrace_ops(&ftrace_ops_list
, &global_ops
);
308 ops
->flags
&= ~FTRACE_OPS_FL_ENABLED
;
310 ret
= remove_ftrace_ops(&ftrace_ops_list
, ops
);
316 update_ftrace_function();
319 * Dynamic ops may be freed, we must make sure that all
320 * callers are done before leaving this function.
322 if (ops
->flags
& FTRACE_OPS_FL_DYNAMIC
)
328 static void ftrace_update_pid_func(void)
330 /* Only do something if we are tracing something */
331 if (ftrace_trace_function
== ftrace_stub
)
334 update_ftrace_function();
337 #ifdef CONFIG_FUNCTION_PROFILER
338 struct ftrace_profile
{
339 struct hlist_node node
;
341 unsigned long counter
;
342 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
343 unsigned long long time
;
344 unsigned long long time_squared
;
348 struct ftrace_profile_page
{
349 struct ftrace_profile_page
*next
;
351 struct ftrace_profile records
[];
354 struct ftrace_profile_stat
{
356 struct hlist_head
*hash
;
357 struct ftrace_profile_page
*pages
;
358 struct ftrace_profile_page
*start
;
359 struct tracer_stat stat
;
362 #define PROFILE_RECORDS_SIZE \
363 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
365 #define PROFILES_PER_PAGE \
366 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
368 static int ftrace_profile_bits __read_mostly
;
369 static int ftrace_profile_enabled __read_mostly
;
371 /* ftrace_profile_lock - synchronize the enable and disable of the profiler */
372 static DEFINE_MUTEX(ftrace_profile_lock
);
374 static DEFINE_PER_CPU(struct ftrace_profile_stat
, ftrace_profile_stats
);
376 #define FTRACE_PROFILE_HASH_SIZE 1024 /* must be power of 2 */
379 function_stat_next(void *v
, int idx
)
381 struct ftrace_profile
*rec
= v
;
382 struct ftrace_profile_page
*pg
;
384 pg
= (struct ftrace_profile_page
*)((unsigned long)rec
& PAGE_MASK
);
390 if ((void *)rec
>= (void *)&pg
->records
[pg
->index
]) {
394 rec
= &pg
->records
[0];
402 static void *function_stat_start(struct tracer_stat
*trace
)
404 struct ftrace_profile_stat
*stat
=
405 container_of(trace
, struct ftrace_profile_stat
, stat
);
407 if (!stat
|| !stat
->start
)
410 return function_stat_next(&stat
->start
->records
[0], 0);
413 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
414 /* function graph compares on total time */
415 static int function_stat_cmp(void *p1
, void *p2
)
417 struct ftrace_profile
*a
= p1
;
418 struct ftrace_profile
*b
= p2
;
420 if (a
->time
< b
->time
)
422 if (a
->time
> b
->time
)
428 /* not function graph compares against hits */
429 static int function_stat_cmp(void *p1
, void *p2
)
431 struct ftrace_profile
*a
= p1
;
432 struct ftrace_profile
*b
= p2
;
434 if (a
->counter
< b
->counter
)
436 if (a
->counter
> b
->counter
)
443 static int function_stat_headers(struct seq_file
*m
)
445 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
446 seq_printf(m
, " Function "
449 "--- ---- --- ---\n");
451 seq_printf(m
, " Function Hit\n"
457 static int function_stat_show(struct seq_file
*m
, void *v
)
459 struct ftrace_profile
*rec
= v
;
460 char str
[KSYM_SYMBOL_LEN
];
462 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
463 static struct trace_seq s
;
464 unsigned long long avg
;
465 unsigned long long stddev
;
467 mutex_lock(&ftrace_profile_lock
);
469 /* we raced with function_profile_reset() */
470 if (unlikely(rec
->counter
== 0)) {
475 kallsyms_lookup(rec
->ip
, NULL
, NULL
, NULL
, str
);
476 seq_printf(m
, " %-30.30s %10lu", str
, rec
->counter
);
478 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
481 do_div(avg
, rec
->counter
);
483 /* Sample standard deviation (s^2) */
484 if (rec
->counter
<= 1)
487 stddev
= rec
->time_squared
- rec
->counter
* avg
* avg
;
489 * Divide only 1000 for ns^2 -> us^2 conversion.
490 * trace_print_graph_duration will divide 1000 again.
492 do_div(stddev
, (rec
->counter
- 1) * 1000);
496 trace_print_graph_duration(rec
->time
, &s
);
497 trace_seq_puts(&s
, " ");
498 trace_print_graph_duration(avg
, &s
);
499 trace_seq_puts(&s
, " ");
500 trace_print_graph_duration(stddev
, &s
);
501 trace_print_seq(m
, &s
);
505 mutex_unlock(&ftrace_profile_lock
);
510 static void ftrace_profile_reset(struct ftrace_profile_stat
*stat
)
512 struct ftrace_profile_page
*pg
;
514 pg
= stat
->pages
= stat
->start
;
517 memset(pg
->records
, 0, PROFILE_RECORDS_SIZE
);
522 memset(stat
->hash
, 0,
523 FTRACE_PROFILE_HASH_SIZE
* sizeof(struct hlist_head
));
526 int ftrace_profile_pages_init(struct ftrace_profile_stat
*stat
)
528 struct ftrace_profile_page
*pg
;
533 /* If we already allocated, do nothing */
537 stat
->pages
= (void *)get_zeroed_page(GFP_KERNEL
);
541 #ifdef CONFIG_DYNAMIC_FTRACE
542 functions
= ftrace_update_tot_cnt
;
545 * We do not know the number of functions that exist because
546 * dynamic tracing is what counts them. With past experience
547 * we have around 20K functions. That should be more than enough.
548 * It is highly unlikely we will execute every function in
554 pg
= stat
->start
= stat
->pages
;
556 pages
= DIV_ROUND_UP(functions
, PROFILES_PER_PAGE
);
558 for (i
= 0; i
< pages
; i
++) {
559 pg
->next
= (void *)get_zeroed_page(GFP_KERNEL
);
570 unsigned long tmp
= (unsigned long)pg
;
576 free_page((unsigned long)stat
->pages
);
583 static int ftrace_profile_init_cpu(int cpu
)
585 struct ftrace_profile_stat
*stat
;
588 stat
= &per_cpu(ftrace_profile_stats
, cpu
);
591 /* If the profile is already created, simply reset it */
592 ftrace_profile_reset(stat
);
597 * We are profiling all functions, but usually only a few thousand
598 * functions are hit. We'll make a hash of 1024 items.
600 size
= FTRACE_PROFILE_HASH_SIZE
;
602 stat
->hash
= kzalloc(sizeof(struct hlist_head
) * size
, GFP_KERNEL
);
607 if (!ftrace_profile_bits
) {
610 for (; size
; size
>>= 1)
611 ftrace_profile_bits
++;
614 /* Preallocate the function profiling pages */
615 if (ftrace_profile_pages_init(stat
) < 0) {
624 static int ftrace_profile_init(void)
629 for_each_online_cpu(cpu
) {
630 ret
= ftrace_profile_init_cpu(cpu
);
638 /* interrupts must be disabled */
639 static struct ftrace_profile
*
640 ftrace_find_profiled_func(struct ftrace_profile_stat
*stat
, unsigned long ip
)
642 struct ftrace_profile
*rec
;
643 struct hlist_head
*hhd
;
644 struct hlist_node
*n
;
647 key
= hash_long(ip
, ftrace_profile_bits
);
648 hhd
= &stat
->hash
[key
];
650 if (hlist_empty(hhd
))
653 hlist_for_each_entry_rcu(rec
, n
, hhd
, node
) {
661 static void ftrace_add_profile(struct ftrace_profile_stat
*stat
,
662 struct ftrace_profile
*rec
)
666 key
= hash_long(rec
->ip
, ftrace_profile_bits
);
667 hlist_add_head_rcu(&rec
->node
, &stat
->hash
[key
]);
671 * The memory is already allocated, this simply finds a new record to use.
673 static struct ftrace_profile
*
674 ftrace_profile_alloc(struct ftrace_profile_stat
*stat
, unsigned long ip
)
676 struct ftrace_profile
*rec
= NULL
;
678 /* prevent recursion (from NMIs) */
679 if (atomic_inc_return(&stat
->disabled
) != 1)
683 * Try to find the function again since an NMI
684 * could have added it
686 rec
= ftrace_find_profiled_func(stat
, ip
);
690 if (stat
->pages
->index
== PROFILES_PER_PAGE
) {
691 if (!stat
->pages
->next
)
693 stat
->pages
= stat
->pages
->next
;
696 rec
= &stat
->pages
->records
[stat
->pages
->index
++];
698 ftrace_add_profile(stat
, rec
);
701 atomic_dec(&stat
->disabled
);
707 function_profile_call(unsigned long ip
, unsigned long parent_ip
)
709 struct ftrace_profile_stat
*stat
;
710 struct ftrace_profile
*rec
;
713 if (!ftrace_profile_enabled
)
716 local_irq_save(flags
);
718 stat
= &__get_cpu_var(ftrace_profile_stats
);
719 if (!stat
->hash
|| !ftrace_profile_enabled
)
722 rec
= ftrace_find_profiled_func(stat
, ip
);
724 rec
= ftrace_profile_alloc(stat
, ip
);
731 local_irq_restore(flags
);
734 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
735 static int profile_graph_entry(struct ftrace_graph_ent
*trace
)
737 function_profile_call(trace
->func
, 0);
741 static void profile_graph_return(struct ftrace_graph_ret
*trace
)
743 struct ftrace_profile_stat
*stat
;
744 unsigned long long calltime
;
745 struct ftrace_profile
*rec
;
748 local_irq_save(flags
);
749 stat
= &__get_cpu_var(ftrace_profile_stats
);
750 if (!stat
->hash
|| !ftrace_profile_enabled
)
753 /* If the calltime was zero'd ignore it */
754 if (!trace
->calltime
)
757 calltime
= trace
->rettime
- trace
->calltime
;
759 if (!(trace_flags
& TRACE_ITER_GRAPH_TIME
)) {
762 index
= trace
->depth
;
764 /* Append this call time to the parent time to subtract */
766 current
->ret_stack
[index
- 1].subtime
+= calltime
;
768 if (current
->ret_stack
[index
].subtime
< calltime
)
769 calltime
-= current
->ret_stack
[index
].subtime
;
774 rec
= ftrace_find_profiled_func(stat
, trace
->func
);
776 rec
->time
+= calltime
;
777 rec
->time_squared
+= calltime
* calltime
;
781 local_irq_restore(flags
);
784 static int register_ftrace_profiler(void)
786 return register_ftrace_graph(&profile_graph_return
,
787 &profile_graph_entry
);
790 static void unregister_ftrace_profiler(void)
792 unregister_ftrace_graph();
795 static struct ftrace_ops ftrace_profile_ops __read_mostly
= {
796 .func
= function_profile_call
,
799 static int register_ftrace_profiler(void)
801 return register_ftrace_function(&ftrace_profile_ops
);
804 static void unregister_ftrace_profiler(void)
806 unregister_ftrace_function(&ftrace_profile_ops
);
808 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
811 ftrace_profile_write(struct file
*filp
, const char __user
*ubuf
,
812 size_t cnt
, loff_t
*ppos
)
817 ret
= kstrtoul_from_user(ubuf
, cnt
, 10, &val
);
823 mutex_lock(&ftrace_profile_lock
);
824 if (ftrace_profile_enabled
^ val
) {
826 ret
= ftrace_profile_init();
832 ret
= register_ftrace_profiler();
837 ftrace_profile_enabled
= 1;
839 ftrace_profile_enabled
= 0;
841 * unregister_ftrace_profiler calls stop_machine
842 * so this acts like an synchronize_sched.
844 unregister_ftrace_profiler();
848 mutex_unlock(&ftrace_profile_lock
);
856 ftrace_profile_read(struct file
*filp
, char __user
*ubuf
,
857 size_t cnt
, loff_t
*ppos
)
859 char buf
[64]; /* big enough to hold a number */
862 r
= sprintf(buf
, "%u\n", ftrace_profile_enabled
);
863 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
866 static const struct file_operations ftrace_profile_fops
= {
867 .open
= tracing_open_generic
,
868 .read
= ftrace_profile_read
,
869 .write
= ftrace_profile_write
,
870 .llseek
= default_llseek
,
873 /* used to initialize the real stat files */
874 static struct tracer_stat function_stats __initdata
= {
876 .stat_start
= function_stat_start
,
877 .stat_next
= function_stat_next
,
878 .stat_cmp
= function_stat_cmp
,
879 .stat_headers
= function_stat_headers
,
880 .stat_show
= function_stat_show
883 static __init
void ftrace_profile_debugfs(struct dentry
*d_tracer
)
885 struct ftrace_profile_stat
*stat
;
886 struct dentry
*entry
;
891 for_each_possible_cpu(cpu
) {
892 stat
= &per_cpu(ftrace_profile_stats
, cpu
);
894 /* allocate enough for function name + cpu number */
895 name
= kmalloc(32, GFP_KERNEL
);
898 * The files created are permanent, if something happens
899 * we still do not free memory.
902 "Could not allocate stat file for cpu %d\n",
906 stat
->stat
= function_stats
;
907 snprintf(name
, 32, "function%d", cpu
);
908 stat
->stat
.name
= name
;
909 ret
= register_stat_tracer(&stat
->stat
);
912 "Could not register function stat for cpu %d\n",
919 entry
= debugfs_create_file("function_profile_enabled", 0644,
920 d_tracer
, NULL
, &ftrace_profile_fops
);
922 pr_warning("Could not create debugfs "
923 "'function_profile_enabled' entry\n");
926 #else /* CONFIG_FUNCTION_PROFILER */
927 static __init
void ftrace_profile_debugfs(struct dentry
*d_tracer
)
930 #endif /* CONFIG_FUNCTION_PROFILER */
932 static struct pid
* const ftrace_swapper_pid
= &init_struct_pid
;
934 #ifdef CONFIG_DYNAMIC_FTRACE
936 #ifndef CONFIG_FTRACE_MCOUNT_RECORD
937 # error Dynamic ftrace depends on MCOUNT_RECORD
940 static struct hlist_head ftrace_func_hash
[FTRACE_FUNC_HASHSIZE
] __read_mostly
;
942 struct ftrace_func_probe
{
943 struct hlist_node node
;
944 struct ftrace_probe_ops
*ops
;
952 FTRACE_ENABLE_CALLS
= (1 << 0),
953 FTRACE_DISABLE_CALLS
= (1 << 1),
954 FTRACE_UPDATE_TRACE_FUNC
= (1 << 2),
955 FTRACE_START_FUNC_RET
= (1 << 3),
956 FTRACE_STOP_FUNC_RET
= (1 << 4),
958 struct ftrace_func_entry
{
959 struct hlist_node hlist
;
964 unsigned long size_bits
;
965 struct hlist_head
*buckets
;
971 * We make these constant because no one should touch them,
972 * but they are used as the default "empty hash", to avoid allocating
973 * it all the time. These are in a read only section such that if
974 * anyone does try to modify it, it will cause an exception.
976 static const struct hlist_head empty_buckets
[1];
977 static const struct ftrace_hash empty_hash
= {
978 .buckets
= (struct hlist_head
*)empty_buckets
,
980 #define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
982 static struct ftrace_ops global_ops
= {
984 .notrace_hash
= EMPTY_HASH
,
985 .filter_hash
= EMPTY_HASH
,
988 static struct dyn_ftrace
*ftrace_new_addrs
;
990 static DEFINE_MUTEX(ftrace_regex_lock
);
993 struct ftrace_page
*next
;
995 struct dyn_ftrace records
[];
998 #define ENTRIES_PER_PAGE \
999 ((PAGE_SIZE - sizeof(struct ftrace_page)) / sizeof(struct dyn_ftrace))
1001 /* estimate from running different kernels */
1002 #define NR_TO_INIT 10000
1004 static struct ftrace_page
*ftrace_pages_start
;
1005 static struct ftrace_page
*ftrace_pages
;
1007 static struct dyn_ftrace
*ftrace_free_records
;
1009 static struct ftrace_func_entry
*
1010 ftrace_lookup_ip(struct ftrace_hash
*hash
, unsigned long ip
)
1013 struct ftrace_func_entry
*entry
;
1014 struct hlist_head
*hhd
;
1015 struct hlist_node
*n
;
1020 if (hash
->size_bits
> 0)
1021 key
= hash_long(ip
, hash
->size_bits
);
1025 hhd
= &hash
->buckets
[key
];
1027 hlist_for_each_entry_rcu(entry
, n
, hhd
, hlist
) {
1028 if (entry
->ip
== ip
)
1034 static void __add_hash_entry(struct ftrace_hash
*hash
,
1035 struct ftrace_func_entry
*entry
)
1037 struct hlist_head
*hhd
;
1040 if (hash
->size_bits
)
1041 key
= hash_long(entry
->ip
, hash
->size_bits
);
1045 hhd
= &hash
->buckets
[key
];
1046 hlist_add_head(&entry
->hlist
, hhd
);
1050 static int add_hash_entry(struct ftrace_hash
*hash
, unsigned long ip
)
1052 struct ftrace_func_entry
*entry
;
1054 entry
= kmalloc(sizeof(*entry
), GFP_KERNEL
);
1059 __add_hash_entry(hash
, entry
);
1065 free_hash_entry(struct ftrace_hash
*hash
,
1066 struct ftrace_func_entry
*entry
)
1068 hlist_del(&entry
->hlist
);
1074 remove_hash_entry(struct ftrace_hash
*hash
,
1075 struct ftrace_func_entry
*entry
)
1077 hlist_del(&entry
->hlist
);
1081 static void ftrace_hash_clear(struct ftrace_hash
*hash
)
1083 struct hlist_head
*hhd
;
1084 struct hlist_node
*tp
, *tn
;
1085 struct ftrace_func_entry
*entry
;
1086 int size
= 1 << hash
->size_bits
;
1092 for (i
= 0; i
< size
; i
++) {
1093 hhd
= &hash
->buckets
[i
];
1094 hlist_for_each_entry_safe(entry
, tp
, tn
, hhd
, hlist
)
1095 free_hash_entry(hash
, entry
);
1097 FTRACE_WARN_ON(hash
->count
);
1100 static void free_ftrace_hash(struct ftrace_hash
*hash
)
1102 if (!hash
|| hash
== EMPTY_HASH
)
1104 ftrace_hash_clear(hash
);
1105 kfree(hash
->buckets
);
1109 static void __free_ftrace_hash_rcu(struct rcu_head
*rcu
)
1111 struct ftrace_hash
*hash
;
1113 hash
= container_of(rcu
, struct ftrace_hash
, rcu
);
1114 free_ftrace_hash(hash
);
1117 static void free_ftrace_hash_rcu(struct ftrace_hash
*hash
)
1119 if (!hash
|| hash
== EMPTY_HASH
)
1121 call_rcu_sched(&hash
->rcu
, __free_ftrace_hash_rcu
);
1124 static struct ftrace_hash
*alloc_ftrace_hash(int size_bits
)
1126 struct ftrace_hash
*hash
;
1129 hash
= kzalloc(sizeof(*hash
), GFP_KERNEL
);
1133 size
= 1 << size_bits
;
1134 hash
->buckets
= kzalloc(sizeof(*hash
->buckets
) * size
, GFP_KERNEL
);
1136 if (!hash
->buckets
) {
1141 hash
->size_bits
= size_bits
;
1146 static struct ftrace_hash
*
1147 alloc_and_copy_ftrace_hash(int size_bits
, struct ftrace_hash
*hash
)
1149 struct ftrace_func_entry
*entry
;
1150 struct ftrace_hash
*new_hash
;
1151 struct hlist_node
*tp
;
1156 new_hash
= alloc_ftrace_hash(size_bits
);
1161 if (!hash
|| !hash
->count
)
1164 size
= 1 << hash
->size_bits
;
1165 for (i
= 0; i
< size
; i
++) {
1166 hlist_for_each_entry(entry
, tp
, &hash
->buckets
[i
], hlist
) {
1167 ret
= add_hash_entry(new_hash
, entry
->ip
);
1173 FTRACE_WARN_ON(new_hash
->count
!= hash
->count
);
1178 free_ftrace_hash(new_hash
);
1183 ftrace_hash_rec_disable(struct ftrace_ops
*ops
, int filter_hash
);
1185 ftrace_hash_rec_enable(struct ftrace_ops
*ops
, int filter_hash
);
1188 ftrace_hash_move(struct ftrace_ops
*ops
, int enable
,
1189 struct ftrace_hash
**dst
, struct ftrace_hash
*src
)
1191 struct ftrace_func_entry
*entry
;
1192 struct hlist_node
*tp
, *tn
;
1193 struct hlist_head
*hhd
;
1194 struct ftrace_hash
*old_hash
;
1195 struct ftrace_hash
*new_hash
;
1197 int size
= src
->count
;
1203 * Remove the current set, update the hash and add
1206 ftrace_hash_rec_disable(ops
, enable
);
1209 * If the new source is empty, just free dst and assign it
1213 free_ftrace_hash_rcu(*dst
);
1214 rcu_assign_pointer(*dst
, EMPTY_HASH
);
1219 * Make the hash size about 1/2 the # found
1221 for (size
/= 2; size
; size
>>= 1)
1224 /* Don't allocate too much */
1225 if (bits
> FTRACE_HASH_MAX_BITS
)
1226 bits
= FTRACE_HASH_MAX_BITS
;
1229 new_hash
= alloc_ftrace_hash(bits
);
1233 size
= 1 << src
->size_bits
;
1234 for (i
= 0; i
< size
; i
++) {
1235 hhd
= &src
->buckets
[i
];
1236 hlist_for_each_entry_safe(entry
, tp
, tn
, hhd
, hlist
) {
1238 key
= hash_long(entry
->ip
, bits
);
1241 remove_hash_entry(src
, entry
);
1242 __add_hash_entry(new_hash
, entry
);
1247 rcu_assign_pointer(*dst
, new_hash
);
1248 free_ftrace_hash_rcu(old_hash
);
1253 * Enable regardless of ret:
1254 * On success, we enable the new hash.
1255 * On failure, we re-enable the original hash.
1257 ftrace_hash_rec_enable(ops
, enable
);
1263 * Test the hashes for this ops to see if we want to call
1264 * the ops->func or not.
1266 * It's a match if the ip is in the ops->filter_hash or
1267 * the filter_hash does not exist or is empty,
1269 * the ip is not in the ops->notrace_hash.
1271 * This needs to be called with preemption disabled as
1272 * the hashes are freed with call_rcu_sched().
1275 ftrace_ops_test(struct ftrace_ops
*ops
, unsigned long ip
)
1277 struct ftrace_hash
*filter_hash
;
1278 struct ftrace_hash
*notrace_hash
;
1281 filter_hash
= rcu_dereference_raw(ops
->filter_hash
);
1282 notrace_hash
= rcu_dereference_raw(ops
->notrace_hash
);
1284 if ((!filter_hash
|| !filter_hash
->count
||
1285 ftrace_lookup_ip(filter_hash
, ip
)) &&
1286 (!notrace_hash
|| !notrace_hash
->count
||
1287 !ftrace_lookup_ip(notrace_hash
, ip
)))
1296 * This is a double for. Do not use 'break' to break out of the loop,
1297 * you must use a goto.
1299 #define do_for_each_ftrace_rec(pg, rec) \
1300 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1302 for (_____i = 0; _____i < pg->index; _____i++) { \
1303 rec = &pg->records[_____i];
1305 #define while_for_each_ftrace_rec() \
1309 static void __ftrace_hash_rec_update(struct ftrace_ops
*ops
,
1313 struct ftrace_hash
*hash
;
1314 struct ftrace_hash
*other_hash
;
1315 struct ftrace_page
*pg
;
1316 struct dyn_ftrace
*rec
;
1320 /* Only update if the ops has been registered */
1321 if (!(ops
->flags
& FTRACE_OPS_FL_ENABLED
))
1325 * In the filter_hash case:
1326 * If the count is zero, we update all records.
1327 * Otherwise we just update the items in the hash.
1329 * In the notrace_hash case:
1330 * We enable the update in the hash.
1331 * As disabling notrace means enabling the tracing,
1332 * and enabling notrace means disabling, the inc variable
1336 hash
= ops
->filter_hash
;
1337 other_hash
= ops
->notrace_hash
;
1338 if (!hash
|| !hash
->count
)
1342 hash
= ops
->notrace_hash
;
1343 other_hash
= ops
->filter_hash
;
1345 * If the notrace hash has no items,
1346 * then there's nothing to do.
1348 if (hash
&& !hash
->count
)
1352 do_for_each_ftrace_rec(pg
, rec
) {
1353 int in_other_hash
= 0;
1359 * Only the filter_hash affects all records.
1360 * Update if the record is not in the notrace hash.
1362 if (!other_hash
|| !ftrace_lookup_ip(other_hash
, rec
->ip
))
1365 in_hash
= hash
&& !!ftrace_lookup_ip(hash
, rec
->ip
);
1366 in_other_hash
= other_hash
&& !!ftrace_lookup_ip(other_hash
, rec
->ip
);
1371 if (filter_hash
&& in_hash
&& !in_other_hash
)
1373 else if (!filter_hash
&& in_hash
&&
1374 (in_other_hash
|| !other_hash
->count
))
1382 if (FTRACE_WARN_ON((rec
->flags
& ~FTRACE_FL_MASK
) == FTRACE_REF_MAX
))
1385 if (FTRACE_WARN_ON((rec
->flags
& ~FTRACE_FL_MASK
) == 0))
1390 /* Shortcut, if we handled all records, we are done. */
1391 if (!all
&& count
== hash
->count
)
1393 } while_for_each_ftrace_rec();
1396 static void ftrace_hash_rec_disable(struct ftrace_ops
*ops
,
1399 __ftrace_hash_rec_update(ops
, filter_hash
, 0);
1402 static void ftrace_hash_rec_enable(struct ftrace_ops
*ops
,
1405 __ftrace_hash_rec_update(ops
, filter_hash
, 1);
1408 static void ftrace_free_rec(struct dyn_ftrace
*rec
)
1410 rec
->freelist
= ftrace_free_records
;
1411 ftrace_free_records
= rec
;
1412 rec
->flags
|= FTRACE_FL_FREE
;
1415 static struct dyn_ftrace
*ftrace_alloc_dyn_node(unsigned long ip
)
1417 struct dyn_ftrace
*rec
;
1419 /* First check for freed records */
1420 if (ftrace_free_records
) {
1421 rec
= ftrace_free_records
;
1423 if (unlikely(!(rec
->flags
& FTRACE_FL_FREE
))) {
1424 FTRACE_WARN_ON_ONCE(1);
1425 ftrace_free_records
= NULL
;
1429 ftrace_free_records
= rec
->freelist
;
1430 memset(rec
, 0, sizeof(*rec
));
1434 if (ftrace_pages
->index
== ENTRIES_PER_PAGE
) {
1435 if (!ftrace_pages
->next
) {
1436 /* allocate another page */
1437 ftrace_pages
->next
=
1438 (void *)get_zeroed_page(GFP_KERNEL
);
1439 if (!ftrace_pages
->next
)
1442 ftrace_pages
= ftrace_pages
->next
;
1445 return &ftrace_pages
->records
[ftrace_pages
->index
++];
1448 static struct dyn_ftrace
*
1449 ftrace_record_ip(unsigned long ip
)
1451 struct dyn_ftrace
*rec
;
1453 if (ftrace_disabled
)
1456 rec
= ftrace_alloc_dyn_node(ip
);
1461 rec
->newlist
= ftrace_new_addrs
;
1462 ftrace_new_addrs
= rec
;
1467 static void print_ip_ins(const char *fmt
, unsigned char *p
)
1471 printk(KERN_CONT
"%s", fmt
);
1473 for (i
= 0; i
< MCOUNT_INSN_SIZE
; i
++)
1474 printk(KERN_CONT
"%s%02x", i
? ":" : "", p
[i
]);
1477 static void ftrace_bug(int failed
, unsigned long ip
)
1481 FTRACE_WARN_ON_ONCE(1);
1482 pr_info("ftrace faulted on modifying ");
1486 FTRACE_WARN_ON_ONCE(1);
1487 pr_info("ftrace failed to modify ");
1489 print_ip_ins(" actual: ", (unsigned char *)ip
);
1490 printk(KERN_CONT
"\n");
1493 FTRACE_WARN_ON_ONCE(1);
1494 pr_info("ftrace faulted on writing ");
1498 FTRACE_WARN_ON_ONCE(1);
1499 pr_info("ftrace faulted on unknown error ");
1505 /* Return 1 if the address range is reserved for ftrace */
1506 int ftrace_text_reserved(void *start
, void *end
)
1508 struct dyn_ftrace
*rec
;
1509 struct ftrace_page
*pg
;
1511 do_for_each_ftrace_rec(pg
, rec
) {
1512 if (rec
->ip
<= (unsigned long)end
&&
1513 rec
->ip
+ MCOUNT_INSN_SIZE
> (unsigned long)start
)
1515 } while_for_each_ftrace_rec();
1521 __ftrace_replace_code(struct dyn_ftrace
*rec
, int enable
)
1523 unsigned long ftrace_addr
;
1524 unsigned long flag
= 0UL;
1526 ftrace_addr
= (unsigned long)FTRACE_ADDR
;
1529 * If we are enabling tracing:
1531 * If the record has a ref count, then we need to enable it
1532 * because someone is using it.
1534 * Otherwise we make sure its disabled.
1536 * If we are disabling tracing, then disable all records that
1539 if (enable
&& (rec
->flags
& ~FTRACE_FL_MASK
))
1540 flag
= FTRACE_FL_ENABLED
;
1542 /* If the state of this record hasn't changed, then do nothing */
1543 if ((rec
->flags
& FTRACE_FL_ENABLED
) == flag
)
1547 rec
->flags
|= FTRACE_FL_ENABLED
;
1548 return ftrace_make_call(rec
, ftrace_addr
);
1551 rec
->flags
&= ~FTRACE_FL_ENABLED
;
1552 return ftrace_make_nop(NULL
, rec
, ftrace_addr
);
1555 static void ftrace_replace_code(int enable
)
1557 struct dyn_ftrace
*rec
;
1558 struct ftrace_page
*pg
;
1561 if (unlikely(ftrace_disabled
))
1564 do_for_each_ftrace_rec(pg
, rec
) {
1565 /* Skip over free records */
1566 if (rec
->flags
& FTRACE_FL_FREE
)
1569 failed
= __ftrace_replace_code(rec
, enable
);
1571 ftrace_bug(failed
, rec
->ip
);
1572 /* Stop processing */
1575 } while_for_each_ftrace_rec();
1579 ftrace_code_disable(struct module
*mod
, struct dyn_ftrace
*rec
)
1586 if (unlikely(ftrace_disabled
))
1589 ret
= ftrace_make_nop(mod
, rec
, MCOUNT_ADDR
);
1591 ftrace_bug(ret
, ip
);
1598 * archs can override this function if they must do something
1599 * before the modifying code is performed.
1601 int __weak
ftrace_arch_code_modify_prepare(void)
1607 * archs can override this function if they must do something
1608 * after the modifying code is performed.
1610 int __weak
ftrace_arch_code_modify_post_process(void)
1615 static int __ftrace_modify_code(void *data
)
1617 int *command
= data
;
1620 * Do not call function tracer while we update the code.
1621 * We are in stop machine, no worrying about races.
1623 function_trace_stop
++;
1625 if (*command
& FTRACE_ENABLE_CALLS
)
1626 ftrace_replace_code(1);
1627 else if (*command
& FTRACE_DISABLE_CALLS
)
1628 ftrace_replace_code(0);
1630 if (*command
& FTRACE_UPDATE_TRACE_FUNC
)
1631 ftrace_update_ftrace_func(ftrace_trace_function
);
1633 if (*command
& FTRACE_START_FUNC_RET
)
1634 ftrace_enable_ftrace_graph_caller();
1635 else if (*command
& FTRACE_STOP_FUNC_RET
)
1636 ftrace_disable_ftrace_graph_caller();
1638 #ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
1640 * For archs that call ftrace_test_stop_func(), we must
1641 * wait till after we update all the function callers
1642 * before we update the callback. This keeps different
1643 * ops that record different functions from corrupting
1646 __ftrace_trace_function
= __ftrace_trace_function_delay
;
1648 function_trace_stop
--;
1653 static void ftrace_run_update_code(int command
)
1657 ret
= ftrace_arch_code_modify_prepare();
1658 FTRACE_WARN_ON(ret
);
1662 stop_machine(__ftrace_modify_code
, &command
, NULL
);
1664 ret
= ftrace_arch_code_modify_post_process();
1665 FTRACE_WARN_ON(ret
);
1668 static ftrace_func_t saved_ftrace_func
;
1669 static int ftrace_start_up
;
1670 static int global_start_up
;
1672 static void ftrace_startup_enable(int command
)
1674 if (saved_ftrace_func
!= ftrace_trace_function
) {
1675 saved_ftrace_func
= ftrace_trace_function
;
1676 command
|= FTRACE_UPDATE_TRACE_FUNC
;
1679 if (!command
|| !ftrace_enabled
)
1682 ftrace_run_update_code(command
);
1685 static int ftrace_startup(struct ftrace_ops
*ops
, int command
)
1687 bool hash_enable
= true;
1689 if (unlikely(ftrace_disabled
))
1693 command
|= FTRACE_ENABLE_CALLS
;
1695 /* ops marked global share the filter hashes */
1696 if (ops
->flags
& FTRACE_OPS_FL_GLOBAL
) {
1698 /* Don't update hash if global is already set */
1699 if (global_start_up
)
1700 hash_enable
= false;
1704 ops
->flags
|= FTRACE_OPS_FL_ENABLED
;
1706 ftrace_hash_rec_enable(ops
, 1);
1708 ftrace_startup_enable(command
);
1713 static void ftrace_shutdown(struct ftrace_ops
*ops
, int command
)
1715 bool hash_disable
= true;
1717 if (unlikely(ftrace_disabled
))
1722 * Just warn in case of unbalance, no need to kill ftrace, it's not
1723 * critical but the ftrace_call callers may be never nopped again after
1724 * further ftrace uses.
1726 WARN_ON_ONCE(ftrace_start_up
< 0);
1728 if (ops
->flags
& FTRACE_OPS_FL_GLOBAL
) {
1731 WARN_ON_ONCE(global_start_up
< 0);
1732 /* Don't update hash if global still has users */
1733 if (global_start_up
) {
1734 WARN_ON_ONCE(!ftrace_start_up
);
1735 hash_disable
= false;
1740 ftrace_hash_rec_disable(ops
, 1);
1742 if (ops
!= &global_ops
|| !global_start_up
)
1743 ops
->flags
&= ~FTRACE_OPS_FL_ENABLED
;
1745 if (!ftrace_start_up
)
1746 command
|= FTRACE_DISABLE_CALLS
;
1748 if (saved_ftrace_func
!= ftrace_trace_function
) {
1749 saved_ftrace_func
= ftrace_trace_function
;
1750 command
|= FTRACE_UPDATE_TRACE_FUNC
;
1753 if (!command
|| !ftrace_enabled
)
1756 ftrace_run_update_code(command
);
1759 static void ftrace_startup_sysctl(void)
1761 if (unlikely(ftrace_disabled
))
1764 /* Force update next time */
1765 saved_ftrace_func
= NULL
;
1766 /* ftrace_start_up is true if we want ftrace running */
1767 if (ftrace_start_up
)
1768 ftrace_run_update_code(FTRACE_ENABLE_CALLS
);
1771 static void ftrace_shutdown_sysctl(void)
1773 if (unlikely(ftrace_disabled
))
1776 /* ftrace_start_up is true if ftrace is running */
1777 if (ftrace_start_up
)
1778 ftrace_run_update_code(FTRACE_DISABLE_CALLS
);
1781 static cycle_t ftrace_update_time
;
1782 static unsigned long ftrace_update_cnt
;
1783 unsigned long ftrace_update_tot_cnt
;
1785 static int ops_traces_mod(struct ftrace_ops
*ops
)
1787 struct ftrace_hash
*hash
;
1789 hash
= ops
->filter_hash
;
1790 return !!(!hash
|| !hash
->count
);
1793 static int ftrace_update_code(struct module
*mod
)
1795 struct dyn_ftrace
*p
;
1796 cycle_t start
, stop
;
1797 unsigned long ref
= 0;
1800 * When adding a module, we need to check if tracers are
1801 * currently enabled and if they are set to trace all functions.
1802 * If they are, we need to enable the module functions as well
1803 * as update the reference counts for those function records.
1806 struct ftrace_ops
*ops
;
1808 for (ops
= ftrace_ops_list
;
1809 ops
!= &ftrace_list_end
; ops
= ops
->next
) {
1810 if (ops
->flags
& FTRACE_OPS_FL_ENABLED
&&
1811 ops_traces_mod(ops
))
1816 start
= ftrace_now(raw_smp_processor_id());
1817 ftrace_update_cnt
= 0;
1819 while (ftrace_new_addrs
) {
1821 /* If something went wrong, bail without enabling anything */
1822 if (unlikely(ftrace_disabled
))
1825 p
= ftrace_new_addrs
;
1826 ftrace_new_addrs
= p
->newlist
;
1830 * Do the initial record conversion from mcount jump
1831 * to the NOP instructions.
1833 if (!ftrace_code_disable(mod
, p
)) {
1839 ftrace_update_cnt
++;
1842 * If the tracing is enabled, go ahead and enable the record.
1844 * The reason not to enable the record immediatelly is the
1845 * inherent check of ftrace_make_nop/ftrace_make_call for
1846 * correct previous instructions. Making first the NOP
1847 * conversion puts the module to the correct state, thus
1848 * passing the ftrace_make_call check.
1850 if (ftrace_start_up
&& ref
) {
1851 int failed
= __ftrace_replace_code(p
, 1);
1853 ftrace_bug(failed
, p
->ip
);
1859 stop
= ftrace_now(raw_smp_processor_id());
1860 ftrace_update_time
= stop
- start
;
1861 ftrace_update_tot_cnt
+= ftrace_update_cnt
;
1866 static int __init
ftrace_dyn_table_alloc(unsigned long num_to_init
)
1868 struct ftrace_page
*pg
;
1872 /* allocate a few pages */
1873 ftrace_pages_start
= (void *)get_zeroed_page(GFP_KERNEL
);
1874 if (!ftrace_pages_start
)
1878 * Allocate a few more pages.
1880 * TODO: have some parser search vmlinux before
1881 * final linking to find all calls to ftrace.
1883 * a) know how many pages to allocate.
1885 * b) set up the table then.
1887 * The dynamic code is still necessary for
1891 pg
= ftrace_pages
= ftrace_pages_start
;
1893 cnt
= num_to_init
/ ENTRIES_PER_PAGE
;
1894 pr_info("ftrace: allocating %ld entries in %d pages\n",
1895 num_to_init
, cnt
+ 1);
1897 for (i
= 0; i
< cnt
; i
++) {
1898 pg
->next
= (void *)get_zeroed_page(GFP_KERNEL
);
1900 /* If we fail, we'll try later anyway */
1911 FTRACE_ITER_FILTER
= (1 << 0),
1912 FTRACE_ITER_NOTRACE
= (1 << 1),
1913 FTRACE_ITER_PRINTALL
= (1 << 2),
1914 FTRACE_ITER_HASH
= (1 << 3),
1915 FTRACE_ITER_ENABLED
= (1 << 4),
1918 #define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
1920 struct ftrace_iterator
{
1923 struct ftrace_page
*pg
;
1924 struct dyn_ftrace
*func
;
1925 struct ftrace_func_probe
*probe
;
1926 struct trace_parser parser
;
1927 struct ftrace_hash
*hash
;
1928 struct ftrace_ops
*ops
;
1935 t_hash_next(struct seq_file
*m
, loff_t
*pos
)
1937 struct ftrace_iterator
*iter
= m
->private;
1938 struct hlist_node
*hnd
= NULL
;
1939 struct hlist_head
*hhd
;
1945 hnd
= &iter
->probe
->node
;
1947 if (iter
->hidx
>= FTRACE_FUNC_HASHSIZE
)
1950 hhd
= &ftrace_func_hash
[iter
->hidx
];
1952 if (hlist_empty(hhd
)) {
1968 if (WARN_ON_ONCE(!hnd
))
1971 iter
->probe
= hlist_entry(hnd
, struct ftrace_func_probe
, node
);
1976 static void *t_hash_start(struct seq_file
*m
, loff_t
*pos
)
1978 struct ftrace_iterator
*iter
= m
->private;
1982 if (iter
->func_pos
> *pos
)
1986 for (l
= 0; l
<= (*pos
- iter
->func_pos
); ) {
1987 p
= t_hash_next(m
, &l
);
1994 /* Only set this if we have an item */
1995 iter
->flags
|= FTRACE_ITER_HASH
;
2001 t_hash_show(struct seq_file
*m
, struct ftrace_iterator
*iter
)
2003 struct ftrace_func_probe
*rec
;
2006 if (WARN_ON_ONCE(!rec
))
2009 if (rec
->ops
->print
)
2010 return rec
->ops
->print(m
, rec
->ip
, rec
->ops
, rec
->data
);
2012 seq_printf(m
, "%ps:%ps", (void *)rec
->ip
, (void *)rec
->ops
->func
);
2015 seq_printf(m
, ":%p", rec
->data
);
2022 t_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
2024 struct ftrace_iterator
*iter
= m
->private;
2025 struct ftrace_ops
*ops
= &global_ops
;
2026 struct dyn_ftrace
*rec
= NULL
;
2028 if (unlikely(ftrace_disabled
))
2031 if (iter
->flags
& FTRACE_ITER_HASH
)
2032 return t_hash_next(m
, pos
);
2035 iter
->pos
= iter
->func_pos
= *pos
;
2037 if (iter
->flags
& FTRACE_ITER_PRINTALL
)
2038 return t_hash_start(m
, pos
);
2041 if (iter
->idx
>= iter
->pg
->index
) {
2042 if (iter
->pg
->next
) {
2043 iter
->pg
= iter
->pg
->next
;
2048 rec
= &iter
->pg
->records
[iter
->idx
++];
2049 if ((rec
->flags
& FTRACE_FL_FREE
) ||
2051 ((iter
->flags
& FTRACE_ITER_FILTER
) &&
2052 !(ftrace_lookup_ip(ops
->filter_hash
, rec
->ip
))) ||
2054 ((iter
->flags
& FTRACE_ITER_NOTRACE
) &&
2055 !ftrace_lookup_ip(ops
->notrace_hash
, rec
->ip
)) ||
2057 ((iter
->flags
& FTRACE_ITER_ENABLED
) &&
2058 !(rec
->flags
& ~FTRACE_FL_MASK
))) {
2066 return t_hash_start(m
, pos
);
2073 static void reset_iter_read(struct ftrace_iterator
*iter
)
2077 iter
->flags
&= ~(FTRACE_ITER_PRINTALL
& FTRACE_ITER_HASH
);
2080 static void *t_start(struct seq_file
*m
, loff_t
*pos
)
2082 struct ftrace_iterator
*iter
= m
->private;
2083 struct ftrace_ops
*ops
= &global_ops
;
2087 mutex_lock(&ftrace_lock
);
2089 if (unlikely(ftrace_disabled
))
2093 * If an lseek was done, then reset and start from beginning.
2095 if (*pos
< iter
->pos
)
2096 reset_iter_read(iter
);
2099 * For set_ftrace_filter reading, if we have the filter
2100 * off, we can short cut and just print out that all
2101 * functions are enabled.
2103 if (iter
->flags
& FTRACE_ITER_FILTER
&& !ops
->filter_hash
->count
) {
2105 return t_hash_start(m
, pos
);
2106 iter
->flags
|= FTRACE_ITER_PRINTALL
;
2107 /* reset in case of seek/pread */
2108 iter
->flags
&= ~FTRACE_ITER_HASH
;
2112 if (iter
->flags
& FTRACE_ITER_HASH
)
2113 return t_hash_start(m
, pos
);
2116 * Unfortunately, we need to restart at ftrace_pages_start
2117 * every time we let go of the ftrace_mutex. This is because
2118 * those pointers can change without the lock.
2120 iter
->pg
= ftrace_pages_start
;
2122 for (l
= 0; l
<= *pos
; ) {
2123 p
= t_next(m
, p
, &l
);
2129 if (iter
->flags
& FTRACE_ITER_FILTER
)
2130 return t_hash_start(m
, pos
);
2138 static void t_stop(struct seq_file
*m
, void *p
)
2140 mutex_unlock(&ftrace_lock
);
2143 static int t_show(struct seq_file
*m
, void *v
)
2145 struct ftrace_iterator
*iter
= m
->private;
2146 struct dyn_ftrace
*rec
;
2148 if (iter
->flags
& FTRACE_ITER_HASH
)
2149 return t_hash_show(m
, iter
);
2151 if (iter
->flags
& FTRACE_ITER_PRINTALL
) {
2152 seq_printf(m
, "#### all functions enabled ####\n");
2161 seq_printf(m
, "%ps", (void *)rec
->ip
);
2162 if (iter
->flags
& FTRACE_ITER_ENABLED
)
2163 seq_printf(m
, " (%ld)",
2164 rec
->flags
& ~FTRACE_FL_MASK
);
2165 seq_printf(m
, "\n");
2170 static const struct seq_operations show_ftrace_seq_ops
= {
2178 ftrace_avail_open(struct inode
*inode
, struct file
*file
)
2180 struct ftrace_iterator
*iter
;
2183 if (unlikely(ftrace_disabled
))
2186 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
2190 iter
->pg
= ftrace_pages_start
;
2192 ret
= seq_open(file
, &show_ftrace_seq_ops
);
2194 struct seq_file
*m
= file
->private_data
;
2205 ftrace_enabled_open(struct inode
*inode
, struct file
*file
)
2207 struct ftrace_iterator
*iter
;
2210 if (unlikely(ftrace_disabled
))
2213 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
2217 iter
->pg
= ftrace_pages_start
;
2218 iter
->flags
= FTRACE_ITER_ENABLED
;
2220 ret
= seq_open(file
, &show_ftrace_seq_ops
);
2222 struct seq_file
*m
= file
->private_data
;
2232 static void ftrace_filter_reset(struct ftrace_hash
*hash
)
2234 mutex_lock(&ftrace_lock
);
2235 ftrace_hash_clear(hash
);
2236 mutex_unlock(&ftrace_lock
);
2240 ftrace_regex_open(struct ftrace_ops
*ops
, int flag
,
2241 struct inode
*inode
, struct file
*file
)
2243 struct ftrace_iterator
*iter
;
2244 struct ftrace_hash
*hash
;
2247 if (unlikely(ftrace_disabled
))
2250 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
2254 if (trace_parser_get_init(&iter
->parser
, FTRACE_BUFF_MAX
)) {
2259 if (flag
& FTRACE_ITER_NOTRACE
)
2260 hash
= ops
->notrace_hash
;
2262 hash
= ops
->filter_hash
;
2267 if (file
->f_mode
& FMODE_WRITE
) {
2268 mutex_lock(&ftrace_lock
);
2269 iter
->hash
= alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS
, hash
);
2270 mutex_unlock(&ftrace_lock
);
2273 trace_parser_put(&iter
->parser
);
2279 mutex_lock(&ftrace_regex_lock
);
2281 if ((file
->f_mode
& FMODE_WRITE
) &&
2282 (file
->f_flags
& O_TRUNC
))
2283 ftrace_filter_reset(iter
->hash
);
2285 if (file
->f_mode
& FMODE_READ
) {
2286 iter
->pg
= ftrace_pages_start
;
2288 ret
= seq_open(file
, &show_ftrace_seq_ops
);
2290 struct seq_file
*m
= file
->private_data
;
2294 free_ftrace_hash(iter
->hash
);
2295 trace_parser_put(&iter
->parser
);
2299 file
->private_data
= iter
;
2300 mutex_unlock(&ftrace_regex_lock
);
2306 ftrace_filter_open(struct inode
*inode
, struct file
*file
)
2308 return ftrace_regex_open(&global_ops
, FTRACE_ITER_FILTER
,
2313 ftrace_notrace_open(struct inode
*inode
, struct file
*file
)
2315 return ftrace_regex_open(&global_ops
, FTRACE_ITER_NOTRACE
,
2320 ftrace_regex_lseek(struct file
*file
, loff_t offset
, int origin
)
2324 if (file
->f_mode
& FMODE_READ
)
2325 ret
= seq_lseek(file
, offset
, origin
);
2327 file
->f_pos
= ret
= 1;
2332 static int ftrace_match(char *str
, char *regex
, int len
, int type
)
2339 if (strcmp(str
, regex
) == 0)
2342 case MATCH_FRONT_ONLY
:
2343 if (strncmp(str
, regex
, len
) == 0)
2346 case MATCH_MIDDLE_ONLY
:
2347 if (strstr(str
, regex
))
2350 case MATCH_END_ONLY
:
2352 if (slen
>= len
&& memcmp(str
+ slen
- len
, regex
, len
) == 0)
2361 enter_record(struct ftrace_hash
*hash
, struct dyn_ftrace
*rec
, int not)
2363 struct ftrace_func_entry
*entry
;
2366 entry
= ftrace_lookup_ip(hash
, rec
->ip
);
2368 /* Do nothing if it doesn't exist */
2372 free_hash_entry(hash
, entry
);
2374 /* Do nothing if it exists */
2378 ret
= add_hash_entry(hash
, rec
->ip
);
2384 ftrace_match_record(struct dyn_ftrace
*rec
, char *mod
,
2385 char *regex
, int len
, int type
)
2387 char str
[KSYM_SYMBOL_LEN
];
2390 kallsyms_lookup(rec
->ip
, NULL
, NULL
, &modname
, str
);
2393 /* module lookup requires matching the module */
2394 if (!modname
|| strcmp(modname
, mod
))
2397 /* blank search means to match all funcs in the mod */
2402 return ftrace_match(str
, regex
, len
, type
);
2406 match_records(struct ftrace_hash
*hash
, char *buff
,
2407 int len
, char *mod
, int not)
2409 unsigned search_len
= 0;
2410 struct ftrace_page
*pg
;
2411 struct dyn_ftrace
*rec
;
2412 int type
= MATCH_FULL
;
2413 char *search
= buff
;
2418 type
= filter_parse_regex(buff
, len
, &search
, ¬);
2419 search_len
= strlen(search
);
2422 mutex_lock(&ftrace_lock
);
2424 if (unlikely(ftrace_disabled
))
2427 do_for_each_ftrace_rec(pg
, rec
) {
2429 if (ftrace_match_record(rec
, mod
, search
, search_len
, type
)) {
2430 ret
= enter_record(hash
, rec
, not);
2437 } while_for_each_ftrace_rec();
2439 mutex_unlock(&ftrace_lock
);
2445 ftrace_match_records(struct ftrace_hash
*hash
, char *buff
, int len
)
2447 return match_records(hash
, buff
, len
, NULL
, 0);
2451 ftrace_match_module_records(struct ftrace_hash
*hash
, char *buff
, char *mod
)
2455 /* blank or '*' mean the same */
2456 if (strcmp(buff
, "*") == 0)
2459 /* handle the case of 'dont filter this module' */
2460 if (strcmp(buff
, "!") == 0 || strcmp(buff
, "!*") == 0) {
2465 return match_records(hash
, buff
, strlen(buff
), mod
, not);
2469 * We register the module command as a template to show others how
2470 * to register the a command as well.
2474 ftrace_mod_callback(struct ftrace_hash
*hash
,
2475 char *func
, char *cmd
, char *param
, int enable
)
2481 * cmd == 'mod' because we only registered this func
2482 * for the 'mod' ftrace_func_command.
2483 * But if you register one func with multiple commands,
2484 * you can tell which command was used by the cmd
2488 /* we must have a module name */
2492 mod
= strsep(¶m
, ":");
2496 ret
= ftrace_match_module_records(hash
, func
, mod
);
2505 static struct ftrace_func_command ftrace_mod_cmd
= {
2507 .func
= ftrace_mod_callback
,
2510 static int __init
ftrace_mod_cmd_init(void)
2512 return register_ftrace_command(&ftrace_mod_cmd
);
2514 device_initcall(ftrace_mod_cmd_init
);
2517 function_trace_probe_call(unsigned long ip
, unsigned long parent_ip
)
2519 struct ftrace_func_probe
*entry
;
2520 struct hlist_head
*hhd
;
2521 struct hlist_node
*n
;
2524 key
= hash_long(ip
, FTRACE_HASH_BITS
);
2526 hhd
= &ftrace_func_hash
[key
];
2528 if (hlist_empty(hhd
))
2532 * Disable preemption for these calls to prevent a RCU grace
2533 * period. This syncs the hash iteration and freeing of items
2534 * on the hash. rcu_read_lock is too dangerous here.
2536 preempt_disable_notrace();
2537 hlist_for_each_entry_rcu(entry
, n
, hhd
, node
) {
2538 if (entry
->ip
== ip
)
2539 entry
->ops
->func(ip
, parent_ip
, &entry
->data
);
2541 preempt_enable_notrace();
2544 static struct ftrace_ops trace_probe_ops __read_mostly
=
2546 .func
= function_trace_probe_call
,
2549 static int ftrace_probe_registered
;
2551 static void __enable_ftrace_function_probe(void)
2556 if (ftrace_probe_registered
)
2559 for (i
= 0; i
< FTRACE_FUNC_HASHSIZE
; i
++) {
2560 struct hlist_head
*hhd
= &ftrace_func_hash
[i
];
2564 /* Nothing registered? */
2565 if (i
== FTRACE_FUNC_HASHSIZE
)
2568 ret
= __register_ftrace_function(&trace_probe_ops
);
2570 ret
= ftrace_startup(&trace_probe_ops
, 0);
2572 ftrace_probe_registered
= 1;
2575 static void __disable_ftrace_function_probe(void)
2580 if (!ftrace_probe_registered
)
2583 for (i
= 0; i
< FTRACE_FUNC_HASHSIZE
; i
++) {
2584 struct hlist_head
*hhd
= &ftrace_func_hash
[i
];
2589 /* no more funcs left */
2590 ret
= __unregister_ftrace_function(&trace_probe_ops
);
2592 ftrace_shutdown(&trace_probe_ops
, 0);
2594 ftrace_probe_registered
= 0;
2598 static void ftrace_free_entry_rcu(struct rcu_head
*rhp
)
2600 struct ftrace_func_probe
*entry
=
2601 container_of(rhp
, struct ftrace_func_probe
, rcu
);
2603 if (entry
->ops
->free
)
2604 entry
->ops
->free(&entry
->data
);
2610 register_ftrace_function_probe(char *glob
, struct ftrace_probe_ops
*ops
,
2613 struct ftrace_func_probe
*entry
;
2614 struct ftrace_page
*pg
;
2615 struct dyn_ftrace
*rec
;
2621 type
= filter_parse_regex(glob
, strlen(glob
), &search
, ¬);
2622 len
= strlen(search
);
2624 /* we do not support '!' for function probes */
2628 mutex_lock(&ftrace_lock
);
2630 if (unlikely(ftrace_disabled
))
2633 do_for_each_ftrace_rec(pg
, rec
) {
2635 if (!ftrace_match_record(rec
, NULL
, search
, len
, type
))
2638 entry
= kmalloc(sizeof(*entry
), GFP_KERNEL
);
2640 /* If we did not process any, then return error */
2651 * The caller might want to do something special
2652 * for each function we find. We call the callback
2653 * to give the caller an opportunity to do so.
2655 if (ops
->callback
) {
2656 if (ops
->callback(rec
->ip
, &entry
->data
) < 0) {
2657 /* caller does not like this func */
2664 entry
->ip
= rec
->ip
;
2666 key
= hash_long(entry
->ip
, FTRACE_HASH_BITS
);
2667 hlist_add_head_rcu(&entry
->node
, &ftrace_func_hash
[key
]);
2669 } while_for_each_ftrace_rec();
2670 __enable_ftrace_function_probe();
2673 mutex_unlock(&ftrace_lock
);
2679 PROBE_TEST_FUNC
= 1,
2684 __unregister_ftrace_function_probe(char *glob
, struct ftrace_probe_ops
*ops
,
2685 void *data
, int flags
)
2687 struct ftrace_func_probe
*entry
;
2688 struct hlist_node
*n
, *tmp
;
2689 char str
[KSYM_SYMBOL_LEN
];
2690 int type
= MATCH_FULL
;
2694 if (glob
&& (strcmp(glob
, "*") == 0 || !strlen(glob
)))
2699 type
= filter_parse_regex(glob
, strlen(glob
), &search
, ¬);
2700 len
= strlen(search
);
2702 /* we do not support '!' for function probes */
2707 mutex_lock(&ftrace_lock
);
2708 for (i
= 0; i
< FTRACE_FUNC_HASHSIZE
; i
++) {
2709 struct hlist_head
*hhd
= &ftrace_func_hash
[i
];
2711 hlist_for_each_entry_safe(entry
, n
, tmp
, hhd
, node
) {
2713 /* break up if statements for readability */
2714 if ((flags
& PROBE_TEST_FUNC
) && entry
->ops
!= ops
)
2717 if ((flags
& PROBE_TEST_DATA
) && entry
->data
!= data
)
2720 /* do this last, since it is the most expensive */
2722 kallsyms_lookup(entry
->ip
, NULL
, NULL
,
2724 if (!ftrace_match(str
, glob
, len
, type
))
2728 hlist_del(&entry
->node
);
2729 call_rcu(&entry
->rcu
, ftrace_free_entry_rcu
);
2732 __disable_ftrace_function_probe();
2733 mutex_unlock(&ftrace_lock
);
2737 unregister_ftrace_function_probe(char *glob
, struct ftrace_probe_ops
*ops
,
2740 __unregister_ftrace_function_probe(glob
, ops
, data
,
2741 PROBE_TEST_FUNC
| PROBE_TEST_DATA
);
2745 unregister_ftrace_function_probe_func(char *glob
, struct ftrace_probe_ops
*ops
)
2747 __unregister_ftrace_function_probe(glob
, ops
, NULL
, PROBE_TEST_FUNC
);
2750 void unregister_ftrace_function_probe_all(char *glob
)
2752 __unregister_ftrace_function_probe(glob
, NULL
, NULL
, 0);
2755 static LIST_HEAD(ftrace_commands
);
2756 static DEFINE_MUTEX(ftrace_cmd_mutex
);
2758 int register_ftrace_command(struct ftrace_func_command
*cmd
)
2760 struct ftrace_func_command
*p
;
2763 mutex_lock(&ftrace_cmd_mutex
);
2764 list_for_each_entry(p
, &ftrace_commands
, list
) {
2765 if (strcmp(cmd
->name
, p
->name
) == 0) {
2770 list_add(&cmd
->list
, &ftrace_commands
);
2772 mutex_unlock(&ftrace_cmd_mutex
);
2777 int unregister_ftrace_command(struct ftrace_func_command
*cmd
)
2779 struct ftrace_func_command
*p
, *n
;
2782 mutex_lock(&ftrace_cmd_mutex
);
2783 list_for_each_entry_safe(p
, n
, &ftrace_commands
, list
) {
2784 if (strcmp(cmd
->name
, p
->name
) == 0) {
2786 list_del_init(&p
->list
);
2791 mutex_unlock(&ftrace_cmd_mutex
);
2796 static int ftrace_process_regex(struct ftrace_hash
*hash
,
2797 char *buff
, int len
, int enable
)
2799 char *func
, *command
, *next
= buff
;
2800 struct ftrace_func_command
*p
;
2803 func
= strsep(&next
, ":");
2806 ret
= ftrace_match_records(hash
, func
, len
);
2816 command
= strsep(&next
, ":");
2818 mutex_lock(&ftrace_cmd_mutex
);
2819 list_for_each_entry(p
, &ftrace_commands
, list
) {
2820 if (strcmp(p
->name
, command
) == 0) {
2821 ret
= p
->func(hash
, func
, command
, next
, enable
);
2826 mutex_unlock(&ftrace_cmd_mutex
);
2832 ftrace_regex_write(struct file
*file
, const char __user
*ubuf
,
2833 size_t cnt
, loff_t
*ppos
, int enable
)
2835 struct ftrace_iterator
*iter
;
2836 struct trace_parser
*parser
;
2842 mutex_lock(&ftrace_regex_lock
);
2845 if (unlikely(ftrace_disabled
))
2848 if (file
->f_mode
& FMODE_READ
) {
2849 struct seq_file
*m
= file
->private_data
;
2852 iter
= file
->private_data
;
2854 parser
= &iter
->parser
;
2855 read
= trace_get_user(parser
, ubuf
, cnt
, ppos
);
2857 if (read
>= 0 && trace_parser_loaded(parser
) &&
2858 !trace_parser_cont(parser
)) {
2859 ret
= ftrace_process_regex(iter
->hash
, parser
->buffer
,
2860 parser
->idx
, enable
);
2861 trace_parser_clear(parser
);
2868 mutex_unlock(&ftrace_regex_lock
);
2874 ftrace_filter_write(struct file
*file
, const char __user
*ubuf
,
2875 size_t cnt
, loff_t
*ppos
)
2877 return ftrace_regex_write(file
, ubuf
, cnt
, ppos
, 1);
2881 ftrace_notrace_write(struct file
*file
, const char __user
*ubuf
,
2882 size_t cnt
, loff_t
*ppos
)
2884 return ftrace_regex_write(file
, ubuf
, cnt
, ppos
, 0);
2888 ftrace_set_regex(struct ftrace_ops
*ops
, unsigned char *buf
, int len
,
2889 int reset
, int enable
)
2891 struct ftrace_hash
**orig_hash
;
2892 struct ftrace_hash
*hash
;
2895 /* All global ops uses the global ops filters */
2896 if (ops
->flags
& FTRACE_OPS_FL_GLOBAL
)
2899 if (unlikely(ftrace_disabled
))
2903 orig_hash
= &ops
->filter_hash
;
2905 orig_hash
= &ops
->notrace_hash
;
2907 hash
= alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS
, *orig_hash
);
2911 mutex_lock(&ftrace_regex_lock
);
2913 ftrace_filter_reset(hash
);
2915 ftrace_match_records(hash
, buf
, len
);
2917 mutex_lock(&ftrace_lock
);
2918 ret
= ftrace_hash_move(ops
, enable
, orig_hash
, hash
);
2919 if (!ret
&& ops
->flags
& FTRACE_OPS_FL_ENABLED
2921 ftrace_run_update_code(FTRACE_ENABLE_CALLS
);
2923 mutex_unlock(&ftrace_lock
);
2925 mutex_unlock(&ftrace_regex_lock
);
2927 free_ftrace_hash(hash
);
2932 * ftrace_set_filter - set a function to filter on in ftrace
2933 * @ops - the ops to set the filter with
2934 * @buf - the string that holds the function filter text.
2935 * @len - the length of the string.
2936 * @reset - non zero to reset all filters before applying this filter.
2938 * Filters denote which functions should be enabled when tracing is enabled.
2939 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
2941 void ftrace_set_filter(struct ftrace_ops
*ops
, unsigned char *buf
,
2944 ftrace_set_regex(ops
, buf
, len
, reset
, 1);
2946 EXPORT_SYMBOL_GPL(ftrace_set_filter
);
2949 * ftrace_set_notrace - set a function to not trace in ftrace
2950 * @ops - the ops to set the notrace filter with
2951 * @buf - the string that holds the function notrace text.
2952 * @len - the length of the string.
2953 * @reset - non zero to reset all filters before applying this filter.
2955 * Notrace Filters denote which functions should not be enabled when tracing
2956 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
2959 void ftrace_set_notrace(struct ftrace_ops
*ops
, unsigned char *buf
,
2962 ftrace_set_regex(ops
, buf
, len
, reset
, 0);
2964 EXPORT_SYMBOL_GPL(ftrace_set_notrace
);
2966 * ftrace_set_filter - set a function to filter on in ftrace
2967 * @ops - the ops to set the filter with
2968 * @buf - the string that holds the function filter text.
2969 * @len - the length of the string.
2970 * @reset - non zero to reset all filters before applying this filter.
2972 * Filters denote which functions should be enabled when tracing is enabled.
2973 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
2975 void ftrace_set_global_filter(unsigned char *buf
, int len
, int reset
)
2977 ftrace_set_regex(&global_ops
, buf
, len
, reset
, 1);
2979 EXPORT_SYMBOL_GPL(ftrace_set_global_filter
);
2982 * ftrace_set_notrace - set a function to not trace in ftrace
2983 * @ops - the ops to set the notrace filter with
2984 * @buf - the string that holds the function notrace text.
2985 * @len - the length of the string.
2986 * @reset - non zero to reset all filters before applying this filter.
2988 * Notrace Filters denote which functions should not be enabled when tracing
2989 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
2992 void ftrace_set_global_notrace(unsigned char *buf
, int len
, int reset
)
2994 ftrace_set_regex(&global_ops
, buf
, len
, reset
, 0);
2996 EXPORT_SYMBOL_GPL(ftrace_set_global_notrace
);
2999 * command line interface to allow users to set filters on boot up.
3001 #define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
3002 static char ftrace_notrace_buf
[FTRACE_FILTER_SIZE
] __initdata
;
3003 static char ftrace_filter_buf
[FTRACE_FILTER_SIZE
] __initdata
;
3005 static int __init
set_ftrace_notrace(char *str
)
3007 strncpy(ftrace_notrace_buf
, str
, FTRACE_FILTER_SIZE
);
3010 __setup("ftrace_notrace=", set_ftrace_notrace
);
3012 static int __init
set_ftrace_filter(char *str
)
3014 strncpy(ftrace_filter_buf
, str
, FTRACE_FILTER_SIZE
);
3017 __setup("ftrace_filter=", set_ftrace_filter
);
3019 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3020 static char ftrace_graph_buf
[FTRACE_FILTER_SIZE
] __initdata
;
3021 static int ftrace_set_func(unsigned long *array
, int *idx
, char *buffer
);
3023 static int __init
set_graph_function(char *str
)
3025 strlcpy(ftrace_graph_buf
, str
, FTRACE_FILTER_SIZE
);
3028 __setup("ftrace_graph_filter=", set_graph_function
);
3030 static void __init
set_ftrace_early_graph(char *buf
)
3036 func
= strsep(&buf
, ",");
3037 /* we allow only one expression at a time */
3038 ret
= ftrace_set_func(ftrace_graph_funcs
, &ftrace_graph_count
,
3041 printk(KERN_DEBUG
"ftrace: function %s not "
3042 "traceable\n", func
);
3045 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3048 set_ftrace_early_filter(struct ftrace_ops
*ops
, char *buf
, int enable
)
3053 func
= strsep(&buf
, ",");
3054 ftrace_set_regex(ops
, func
, strlen(func
), 0, enable
);
3058 static void __init
set_ftrace_early_filters(void)
3060 if (ftrace_filter_buf
[0])
3061 set_ftrace_early_filter(&global_ops
, ftrace_filter_buf
, 1);
3062 if (ftrace_notrace_buf
[0])
3063 set_ftrace_early_filter(&global_ops
, ftrace_notrace_buf
, 0);
3064 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3065 if (ftrace_graph_buf
[0])
3066 set_ftrace_early_graph(ftrace_graph_buf
);
3067 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3071 ftrace_regex_release(struct inode
*inode
, struct file
*file
)
3073 struct seq_file
*m
= (struct seq_file
*)file
->private_data
;
3074 struct ftrace_iterator
*iter
;
3075 struct ftrace_hash
**orig_hash
;
3076 struct trace_parser
*parser
;
3080 mutex_lock(&ftrace_regex_lock
);
3081 if (file
->f_mode
& FMODE_READ
) {
3084 seq_release(inode
, file
);
3086 iter
= file
->private_data
;
3088 parser
= &iter
->parser
;
3089 if (trace_parser_loaded(parser
)) {
3090 parser
->buffer
[parser
->idx
] = 0;
3091 ftrace_match_records(iter
->hash
, parser
->buffer
, parser
->idx
);
3094 trace_parser_put(parser
);
3096 if (file
->f_mode
& FMODE_WRITE
) {
3097 filter_hash
= !!(iter
->flags
& FTRACE_ITER_FILTER
);
3100 orig_hash
= &iter
->ops
->filter_hash
;
3102 orig_hash
= &iter
->ops
->notrace_hash
;
3104 mutex_lock(&ftrace_lock
);
3105 ret
= ftrace_hash_move(iter
->ops
, filter_hash
,
3106 orig_hash
, iter
->hash
);
3107 if (!ret
&& (iter
->ops
->flags
& FTRACE_OPS_FL_ENABLED
)
3109 ftrace_run_update_code(FTRACE_ENABLE_CALLS
);
3111 mutex_unlock(&ftrace_lock
);
3113 free_ftrace_hash(iter
->hash
);
3116 mutex_unlock(&ftrace_regex_lock
);
3120 static const struct file_operations ftrace_avail_fops
= {
3121 .open
= ftrace_avail_open
,
3123 .llseek
= seq_lseek
,
3124 .release
= seq_release_private
,
3127 static const struct file_operations ftrace_enabled_fops
= {
3128 .open
= ftrace_enabled_open
,
3130 .llseek
= seq_lseek
,
3131 .release
= seq_release_private
,
3134 static const struct file_operations ftrace_filter_fops
= {
3135 .open
= ftrace_filter_open
,
3137 .write
= ftrace_filter_write
,
3138 .llseek
= ftrace_regex_lseek
,
3139 .release
= ftrace_regex_release
,
3142 static const struct file_operations ftrace_notrace_fops
= {
3143 .open
= ftrace_notrace_open
,
3145 .write
= ftrace_notrace_write
,
3146 .llseek
= ftrace_regex_lseek
,
3147 .release
= ftrace_regex_release
,
3150 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3152 static DEFINE_MUTEX(graph_lock
);
3154 int ftrace_graph_count
;
3155 int ftrace_graph_filter_enabled
;
3156 unsigned long ftrace_graph_funcs
[FTRACE_GRAPH_MAX_FUNCS
] __read_mostly
;
3159 __g_next(struct seq_file
*m
, loff_t
*pos
)
3161 if (*pos
>= ftrace_graph_count
)
3163 return &ftrace_graph_funcs
[*pos
];
3167 g_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
3170 return __g_next(m
, pos
);
3173 static void *g_start(struct seq_file
*m
, loff_t
*pos
)
3175 mutex_lock(&graph_lock
);
3177 /* Nothing, tell g_show to print all functions are enabled */
3178 if (!ftrace_graph_filter_enabled
&& !*pos
)
3181 return __g_next(m
, pos
);
3184 static void g_stop(struct seq_file
*m
, void *p
)
3186 mutex_unlock(&graph_lock
);
3189 static int g_show(struct seq_file
*m
, void *v
)
3191 unsigned long *ptr
= v
;
3196 if (ptr
== (unsigned long *)1) {
3197 seq_printf(m
, "#### all functions enabled ####\n");
3201 seq_printf(m
, "%ps\n", (void *)*ptr
);
3206 static const struct seq_operations ftrace_graph_seq_ops
= {
3214 ftrace_graph_open(struct inode
*inode
, struct file
*file
)
3218 if (unlikely(ftrace_disabled
))
3221 mutex_lock(&graph_lock
);
3222 if ((file
->f_mode
& FMODE_WRITE
) &&
3223 (file
->f_flags
& O_TRUNC
)) {
3224 ftrace_graph_filter_enabled
= 0;
3225 ftrace_graph_count
= 0;
3226 memset(ftrace_graph_funcs
, 0, sizeof(ftrace_graph_funcs
));
3228 mutex_unlock(&graph_lock
);
3230 if (file
->f_mode
& FMODE_READ
)
3231 ret
= seq_open(file
, &ftrace_graph_seq_ops
);
3237 ftrace_graph_release(struct inode
*inode
, struct file
*file
)
3239 if (file
->f_mode
& FMODE_READ
)
3240 seq_release(inode
, file
);
3245 ftrace_set_func(unsigned long *array
, int *idx
, char *buffer
)
3247 struct dyn_ftrace
*rec
;
3248 struct ftrace_page
*pg
;
3257 type
= filter_parse_regex(buffer
, strlen(buffer
), &search
, ¬);
3258 if (!not && *idx
>= FTRACE_GRAPH_MAX_FUNCS
)
3261 search_len
= strlen(search
);
3263 mutex_lock(&ftrace_lock
);
3265 if (unlikely(ftrace_disabled
)) {
3266 mutex_unlock(&ftrace_lock
);
3270 do_for_each_ftrace_rec(pg
, rec
) {
3272 if (rec
->flags
& FTRACE_FL_FREE
)
3275 if (ftrace_match_record(rec
, NULL
, search
, search_len
, type
)) {
3276 /* if it is in the array */
3278 for (i
= 0; i
< *idx
; i
++) {
3279 if (array
[i
] == rec
->ip
) {
3288 array
[(*idx
)++] = rec
->ip
;
3289 if (*idx
>= FTRACE_GRAPH_MAX_FUNCS
)
3294 array
[i
] = array
[--(*idx
)];
3300 } while_for_each_ftrace_rec();
3302 mutex_unlock(&ftrace_lock
);
3307 ftrace_graph_filter_enabled
= 1;
3312 ftrace_graph_write(struct file
*file
, const char __user
*ubuf
,
3313 size_t cnt
, loff_t
*ppos
)
3315 struct trace_parser parser
;
3321 mutex_lock(&graph_lock
);
3323 if (trace_parser_get_init(&parser
, FTRACE_BUFF_MAX
)) {
3328 read
= trace_get_user(&parser
, ubuf
, cnt
, ppos
);
3330 if (read
>= 0 && trace_parser_loaded((&parser
))) {
3331 parser
.buffer
[parser
.idx
] = 0;
3333 /* we allow only one expression at a time */
3334 ret
= ftrace_set_func(ftrace_graph_funcs
, &ftrace_graph_count
,
3343 trace_parser_put(&parser
);
3345 mutex_unlock(&graph_lock
);
3350 static const struct file_operations ftrace_graph_fops
= {
3351 .open
= ftrace_graph_open
,
3353 .write
= ftrace_graph_write
,
3354 .release
= ftrace_graph_release
,
3355 .llseek
= seq_lseek
,
3357 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3359 static __init
int ftrace_init_dyn_debugfs(struct dentry
*d_tracer
)
3362 trace_create_file("available_filter_functions", 0444,
3363 d_tracer
, NULL
, &ftrace_avail_fops
);
3365 trace_create_file("enabled_functions", 0444,
3366 d_tracer
, NULL
, &ftrace_enabled_fops
);
3368 trace_create_file("set_ftrace_filter", 0644, d_tracer
,
3369 NULL
, &ftrace_filter_fops
);
3371 trace_create_file("set_ftrace_notrace", 0644, d_tracer
,
3372 NULL
, &ftrace_notrace_fops
);
3374 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3375 trace_create_file("set_graph_function", 0444, d_tracer
,
3377 &ftrace_graph_fops
);
3378 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3383 static int ftrace_process_locs(struct module
*mod
,
3384 unsigned long *start
,
3389 unsigned long flags
= 0; /* Shut up gcc */
3391 mutex_lock(&ftrace_lock
);
3394 addr
= ftrace_call_adjust(*p
++);
3396 * Some architecture linkers will pad between
3397 * the different mcount_loc sections of different
3398 * object files to satisfy alignments.
3399 * Skip any NULL pointers.
3403 ftrace_record_ip(addr
);
3407 * We only need to disable interrupts on start up
3408 * because we are modifying code that an interrupt
3409 * may execute, and the modification is not atomic.
3410 * But for modules, nothing runs the code we modify
3411 * until we are finished with it, and there's no
3412 * reason to cause large interrupt latencies while we do it.
3415 local_irq_save(flags
);
3416 ftrace_update_code(mod
);
3418 local_irq_restore(flags
);
3419 mutex_unlock(&ftrace_lock
);
3424 #ifdef CONFIG_MODULES
3425 void ftrace_release_mod(struct module
*mod
)
3427 struct dyn_ftrace
*rec
;
3428 struct ftrace_page
*pg
;
3430 mutex_lock(&ftrace_lock
);
3432 if (ftrace_disabled
)
3435 do_for_each_ftrace_rec(pg
, rec
) {
3436 if (within_module_core(rec
->ip
, mod
)) {
3438 * rec->ip is changed in ftrace_free_rec()
3439 * It should not between s and e if record was freed.
3441 FTRACE_WARN_ON(rec
->flags
& FTRACE_FL_FREE
);
3442 ftrace_free_rec(rec
);
3444 } while_for_each_ftrace_rec();
3446 mutex_unlock(&ftrace_lock
);
3449 static void ftrace_init_module(struct module
*mod
,
3450 unsigned long *start
, unsigned long *end
)
3452 if (ftrace_disabled
|| start
== end
)
3454 ftrace_process_locs(mod
, start
, end
);
3457 static int ftrace_module_notify(struct notifier_block
*self
,
3458 unsigned long val
, void *data
)
3460 struct module
*mod
= data
;
3463 case MODULE_STATE_COMING
:
3464 ftrace_init_module(mod
, mod
->ftrace_callsites
,
3465 mod
->ftrace_callsites
+
3466 mod
->num_ftrace_callsites
);
3468 case MODULE_STATE_GOING
:
3469 ftrace_release_mod(mod
);
3476 static int ftrace_module_notify(struct notifier_block
*self
,
3477 unsigned long val
, void *data
)
3481 #endif /* CONFIG_MODULES */
3483 struct notifier_block ftrace_module_nb
= {
3484 .notifier_call
= ftrace_module_notify
,
3488 extern unsigned long __start_mcount_loc
[];
3489 extern unsigned long __stop_mcount_loc
[];
3491 void __init
ftrace_init(void)
3493 unsigned long count
, addr
, flags
;
3496 /* Keep the ftrace pointer to the stub */
3497 addr
= (unsigned long)ftrace_stub
;
3499 local_irq_save(flags
);
3500 ftrace_dyn_arch_init(&addr
);
3501 local_irq_restore(flags
);
3503 /* ftrace_dyn_arch_init places the return code in addr */
3507 count
= __stop_mcount_loc
- __start_mcount_loc
;
3509 ret
= ftrace_dyn_table_alloc(count
);
3513 last_ftrace_enabled
= ftrace_enabled
= 1;
3515 ret
= ftrace_process_locs(NULL
,
3519 ret
= register_module_notifier(&ftrace_module_nb
);
3521 pr_warning("Failed to register trace ftrace module notifier\n");
3523 set_ftrace_early_filters();
3527 ftrace_disabled
= 1;
3532 static struct ftrace_ops global_ops
= {
3533 .func
= ftrace_stub
,
3536 static int __init
ftrace_nodyn_init(void)
3541 device_initcall(ftrace_nodyn_init
);
3543 static inline int ftrace_init_dyn_debugfs(struct dentry
*d_tracer
) { return 0; }
3544 static inline void ftrace_startup_enable(int command
) { }
3545 /* Keep as macros so we do not need to define the commands */
3546 # define ftrace_startup(ops, command) \
3548 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
3551 # define ftrace_shutdown(ops, command) do { } while (0)
3552 # define ftrace_startup_sysctl() do { } while (0)
3553 # define ftrace_shutdown_sysctl() do { } while (0)
3556 ftrace_ops_test(struct ftrace_ops
*ops
, unsigned long ip
)
3561 #endif /* CONFIG_DYNAMIC_FTRACE */
3564 ftrace_ops_list_func(unsigned long ip
, unsigned long parent_ip
)
3566 struct ftrace_ops
*op
;
3568 if (unlikely(trace_recursion_test(TRACE_INTERNAL_BIT
)))
3571 trace_recursion_set(TRACE_INTERNAL_BIT
);
3573 * Some of the ops may be dynamically allocated,
3574 * they must be freed after a synchronize_sched().
3576 preempt_disable_notrace();
3577 op
= rcu_dereference_raw(ftrace_ops_list
);
3578 while (op
!= &ftrace_list_end
) {
3579 if (ftrace_ops_test(op
, ip
))
3580 op
->func(ip
, parent_ip
);
3581 op
= rcu_dereference_raw(op
->next
);
3583 preempt_enable_notrace();
3584 trace_recursion_clear(TRACE_INTERNAL_BIT
);
3587 static void clear_ftrace_swapper(void)
3589 struct task_struct
*p
;
3593 for_each_online_cpu(cpu
) {
3595 clear_tsk_trace_trace(p
);
3600 static void set_ftrace_swapper(void)
3602 struct task_struct
*p
;
3606 for_each_online_cpu(cpu
) {
3608 set_tsk_trace_trace(p
);
3613 static void clear_ftrace_pid(struct pid
*pid
)
3615 struct task_struct
*p
;
3618 do_each_pid_task(pid
, PIDTYPE_PID
, p
) {
3619 clear_tsk_trace_trace(p
);
3620 } while_each_pid_task(pid
, PIDTYPE_PID
, p
);
3626 static void set_ftrace_pid(struct pid
*pid
)
3628 struct task_struct
*p
;
3631 do_each_pid_task(pid
, PIDTYPE_PID
, p
) {
3632 set_tsk_trace_trace(p
);
3633 } while_each_pid_task(pid
, PIDTYPE_PID
, p
);
3637 static void clear_ftrace_pid_task(struct pid
*pid
)
3639 if (pid
== ftrace_swapper_pid
)
3640 clear_ftrace_swapper();
3642 clear_ftrace_pid(pid
);
3645 static void set_ftrace_pid_task(struct pid
*pid
)
3647 if (pid
== ftrace_swapper_pid
)
3648 set_ftrace_swapper();
3650 set_ftrace_pid(pid
);
3653 static int ftrace_pid_add(int p
)
3656 struct ftrace_pid
*fpid
;
3659 mutex_lock(&ftrace_lock
);
3662 pid
= ftrace_swapper_pid
;
3664 pid
= find_get_pid(p
);
3671 list_for_each_entry(fpid
, &ftrace_pids
, list
)
3672 if (fpid
->pid
== pid
)
3677 fpid
= kmalloc(sizeof(*fpid
), GFP_KERNEL
);
3681 list_add(&fpid
->list
, &ftrace_pids
);
3684 set_ftrace_pid_task(pid
);
3686 ftrace_update_pid_func();
3687 ftrace_startup_enable(0);
3689 mutex_unlock(&ftrace_lock
);
3693 if (pid
!= ftrace_swapper_pid
)
3697 mutex_unlock(&ftrace_lock
);
3701 static void ftrace_pid_reset(void)
3703 struct ftrace_pid
*fpid
, *safe
;
3705 mutex_lock(&ftrace_lock
);
3706 list_for_each_entry_safe(fpid
, safe
, &ftrace_pids
, list
) {
3707 struct pid
*pid
= fpid
->pid
;
3709 clear_ftrace_pid_task(pid
);
3711 list_del(&fpid
->list
);
3715 ftrace_update_pid_func();
3716 ftrace_startup_enable(0);
3718 mutex_unlock(&ftrace_lock
);
3721 static void *fpid_start(struct seq_file
*m
, loff_t
*pos
)
3723 mutex_lock(&ftrace_lock
);
3725 if (list_empty(&ftrace_pids
) && (!*pos
))
3728 return seq_list_start(&ftrace_pids
, *pos
);
3731 static void *fpid_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
3736 return seq_list_next(v
, &ftrace_pids
, pos
);
3739 static void fpid_stop(struct seq_file
*m
, void *p
)
3741 mutex_unlock(&ftrace_lock
);
3744 static int fpid_show(struct seq_file
*m
, void *v
)
3746 const struct ftrace_pid
*fpid
= list_entry(v
, struct ftrace_pid
, list
);
3748 if (v
== (void *)1) {
3749 seq_printf(m
, "no pid\n");
3753 if (fpid
->pid
== ftrace_swapper_pid
)
3754 seq_printf(m
, "swapper tasks\n");
3756 seq_printf(m
, "%u\n", pid_vnr(fpid
->pid
));
3761 static const struct seq_operations ftrace_pid_sops
= {
3762 .start
= fpid_start
,
3769 ftrace_pid_open(struct inode
*inode
, struct file
*file
)
3773 if ((file
->f_mode
& FMODE_WRITE
) &&
3774 (file
->f_flags
& O_TRUNC
))
3777 if (file
->f_mode
& FMODE_READ
)
3778 ret
= seq_open(file
, &ftrace_pid_sops
);
3784 ftrace_pid_write(struct file
*filp
, const char __user
*ubuf
,
3785 size_t cnt
, loff_t
*ppos
)
3791 if (cnt
>= sizeof(buf
))
3794 if (copy_from_user(&buf
, ubuf
, cnt
))
3800 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
3801 * to clean the filter quietly.
3803 tmp
= strstrip(buf
);
3804 if (strlen(tmp
) == 0)
3807 ret
= strict_strtol(tmp
, 10, &val
);
3811 ret
= ftrace_pid_add(val
);
3813 return ret
? ret
: cnt
;
3817 ftrace_pid_release(struct inode
*inode
, struct file
*file
)
3819 if (file
->f_mode
& FMODE_READ
)
3820 seq_release(inode
, file
);
3825 static const struct file_operations ftrace_pid_fops
= {
3826 .open
= ftrace_pid_open
,
3827 .write
= ftrace_pid_write
,
3829 .llseek
= seq_lseek
,
3830 .release
= ftrace_pid_release
,
3833 static __init
int ftrace_init_debugfs(void)
3835 struct dentry
*d_tracer
;
3837 d_tracer
= tracing_init_dentry();
3841 ftrace_init_dyn_debugfs(d_tracer
);
3843 trace_create_file("set_ftrace_pid", 0644, d_tracer
,
3844 NULL
, &ftrace_pid_fops
);
3846 ftrace_profile_debugfs(d_tracer
);
3850 fs_initcall(ftrace_init_debugfs
);
3853 * ftrace_kill - kill ftrace
3855 * This function should be used by panic code. It stops ftrace
3856 * but in a not so nice way. If you need to simply kill ftrace
3857 * from a non-atomic section, use ftrace_kill.
3859 void ftrace_kill(void)
3861 ftrace_disabled
= 1;
3863 clear_ftrace_function();
3867 * Test if ftrace is dead or not.
3869 int ftrace_is_dead(void)
3871 return ftrace_disabled
;
3875 * register_ftrace_function - register a function for profiling
3876 * @ops - ops structure that holds the function for profiling.
3878 * Register a function to be called by all functions in the
3881 * Note: @ops->func and all the functions it calls must be labeled
3882 * with "notrace", otherwise it will go into a
3885 int register_ftrace_function(struct ftrace_ops
*ops
)
3889 mutex_lock(&ftrace_lock
);
3891 if (unlikely(ftrace_disabled
))
3894 ret
= __register_ftrace_function(ops
);
3896 ret
= ftrace_startup(ops
, 0);
3900 mutex_unlock(&ftrace_lock
);
3903 EXPORT_SYMBOL_GPL(register_ftrace_function
);
3906 * unregister_ftrace_function - unregister a function for profiling.
3907 * @ops - ops structure that holds the function to unregister
3909 * Unregister a function that was added to be called by ftrace profiling.
3911 int unregister_ftrace_function(struct ftrace_ops
*ops
)
3915 mutex_lock(&ftrace_lock
);
3916 ret
= __unregister_ftrace_function(ops
);
3918 ftrace_shutdown(ops
, 0);
3919 mutex_unlock(&ftrace_lock
);
3923 EXPORT_SYMBOL_GPL(unregister_ftrace_function
);
3926 ftrace_enable_sysctl(struct ctl_table
*table
, int write
,
3927 void __user
*buffer
, size_t *lenp
,
3932 mutex_lock(&ftrace_lock
);
3934 if (unlikely(ftrace_disabled
))
3937 ret
= proc_dointvec(table
, write
, buffer
, lenp
, ppos
);
3939 if (ret
|| !write
|| (last_ftrace_enabled
== !!ftrace_enabled
))
3942 last_ftrace_enabled
= !!ftrace_enabled
;
3944 if (ftrace_enabled
) {
3946 ftrace_startup_sysctl();
3948 /* we are starting ftrace again */
3949 if (ftrace_ops_list
!= &ftrace_list_end
) {
3950 if (ftrace_ops_list
->next
== &ftrace_list_end
)
3951 ftrace_trace_function
= ftrace_ops_list
->func
;
3953 ftrace_trace_function
= ftrace_ops_list_func
;
3957 /* stopping ftrace calls (just send to ftrace_stub) */
3958 ftrace_trace_function
= ftrace_stub
;
3960 ftrace_shutdown_sysctl();
3964 mutex_unlock(&ftrace_lock
);
3968 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3970 static int ftrace_graph_active
;
3971 static struct notifier_block ftrace_suspend_notifier
;
3973 int ftrace_graph_entry_stub(struct ftrace_graph_ent
*trace
)
3978 /* The callbacks that hook a function */
3979 trace_func_graph_ret_t ftrace_graph_return
=
3980 (trace_func_graph_ret_t
)ftrace_stub
;
3981 trace_func_graph_ent_t ftrace_graph_entry
= ftrace_graph_entry_stub
;
3983 /* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
3984 static int alloc_retstack_tasklist(struct ftrace_ret_stack
**ret_stack_list
)
3988 unsigned long flags
;
3989 int start
= 0, end
= FTRACE_RETSTACK_ALLOC_SIZE
;
3990 struct task_struct
*g
, *t
;
3992 for (i
= 0; i
< FTRACE_RETSTACK_ALLOC_SIZE
; i
++) {
3993 ret_stack_list
[i
] = kmalloc(FTRACE_RETFUNC_DEPTH
3994 * sizeof(struct ftrace_ret_stack
),
3996 if (!ret_stack_list
[i
]) {
4004 read_lock_irqsave(&tasklist_lock
, flags
);
4005 do_each_thread(g
, t
) {
4011 if (t
->ret_stack
== NULL
) {
4012 atomic_set(&t
->tracing_graph_pause
, 0);
4013 atomic_set(&t
->trace_overrun
, 0);
4014 t
->curr_ret_stack
= -1;
4015 /* Make sure the tasks see the -1 first: */
4017 t
->ret_stack
= ret_stack_list
[start
++];
4019 } while_each_thread(g
, t
);
4022 read_unlock_irqrestore(&tasklist_lock
, flags
);
4024 for (i
= start
; i
< end
; i
++)
4025 kfree(ret_stack_list
[i
]);
4030 ftrace_graph_probe_sched_switch(void *ignore
,
4031 struct task_struct
*prev
, struct task_struct
*next
)
4033 unsigned long long timestamp
;
4037 * Does the user want to count the time a function was asleep.
4038 * If so, do not update the time stamps.
4040 if (trace_flags
& TRACE_ITER_SLEEP_TIME
)
4043 timestamp
= trace_clock_local();
4045 prev
->ftrace_timestamp
= timestamp
;
4047 /* only process tasks that we timestamped */
4048 if (!next
->ftrace_timestamp
)
4052 * Update all the counters in next to make up for the
4053 * time next was sleeping.
4055 timestamp
-= next
->ftrace_timestamp
;
4057 for (index
= next
->curr_ret_stack
; index
>= 0; index
--)
4058 next
->ret_stack
[index
].calltime
+= timestamp
;
4061 /* Allocate a return stack for each task */
4062 static int start_graph_tracing(void)
4064 struct ftrace_ret_stack
**ret_stack_list
;
4067 ret_stack_list
= kmalloc(FTRACE_RETSTACK_ALLOC_SIZE
*
4068 sizeof(struct ftrace_ret_stack
*),
4071 if (!ret_stack_list
)
4074 /* The cpu_boot init_task->ret_stack will never be freed */
4075 for_each_online_cpu(cpu
) {
4076 if (!idle_task(cpu
)->ret_stack
)
4077 ftrace_graph_init_idle_task(idle_task(cpu
), cpu
);
4081 ret
= alloc_retstack_tasklist(ret_stack_list
);
4082 } while (ret
== -EAGAIN
);
4085 ret
= register_trace_sched_switch(ftrace_graph_probe_sched_switch
, NULL
);
4087 pr_info("ftrace_graph: Couldn't activate tracepoint"
4088 " probe to kernel_sched_switch\n");
4091 kfree(ret_stack_list
);
4096 * Hibernation protection.
4097 * The state of the current task is too much unstable during
4098 * suspend/restore to disk. We want to protect against that.
4101 ftrace_suspend_notifier_call(struct notifier_block
*bl
, unsigned long state
,
4105 case PM_HIBERNATION_PREPARE
:
4106 pause_graph_tracing();
4109 case PM_POST_HIBERNATION
:
4110 unpause_graph_tracing();
4116 int register_ftrace_graph(trace_func_graph_ret_t retfunc
,
4117 trace_func_graph_ent_t entryfunc
)
4121 mutex_lock(&ftrace_lock
);
4123 /* we currently allow only one tracer registered at a time */
4124 if (ftrace_graph_active
) {
4129 ftrace_suspend_notifier
.notifier_call
= ftrace_suspend_notifier_call
;
4130 register_pm_notifier(&ftrace_suspend_notifier
);
4132 ftrace_graph_active
++;
4133 ret
= start_graph_tracing();
4135 ftrace_graph_active
--;
4139 ftrace_graph_return
= retfunc
;
4140 ftrace_graph_entry
= entryfunc
;
4142 ret
= ftrace_startup(&global_ops
, FTRACE_START_FUNC_RET
);
4145 mutex_unlock(&ftrace_lock
);
4149 void unregister_ftrace_graph(void)
4151 mutex_lock(&ftrace_lock
);
4153 if (unlikely(!ftrace_graph_active
))
4156 ftrace_graph_active
--;
4157 ftrace_graph_return
= (trace_func_graph_ret_t
)ftrace_stub
;
4158 ftrace_graph_entry
= ftrace_graph_entry_stub
;
4159 ftrace_shutdown(&global_ops
, FTRACE_STOP_FUNC_RET
);
4160 unregister_pm_notifier(&ftrace_suspend_notifier
);
4161 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch
, NULL
);
4164 mutex_unlock(&ftrace_lock
);
4167 static DEFINE_PER_CPU(struct ftrace_ret_stack
*, idle_ret_stack
);
4170 graph_init_task(struct task_struct
*t
, struct ftrace_ret_stack
*ret_stack
)
4172 atomic_set(&t
->tracing_graph_pause
, 0);
4173 atomic_set(&t
->trace_overrun
, 0);
4174 t
->ftrace_timestamp
= 0;
4175 /* make curr_ret_stack visible before we add the ret_stack */
4177 t
->ret_stack
= ret_stack
;
4181 * Allocate a return stack for the idle task. May be the first
4182 * time through, or it may be done by CPU hotplug online.
4184 void ftrace_graph_init_idle_task(struct task_struct
*t
, int cpu
)
4186 t
->curr_ret_stack
= -1;
4188 * The idle task has no parent, it either has its own
4189 * stack or no stack at all.
4192 WARN_ON(t
->ret_stack
!= per_cpu(idle_ret_stack
, cpu
));
4194 if (ftrace_graph_active
) {
4195 struct ftrace_ret_stack
*ret_stack
;
4197 ret_stack
= per_cpu(idle_ret_stack
, cpu
);
4199 ret_stack
= kmalloc(FTRACE_RETFUNC_DEPTH
4200 * sizeof(struct ftrace_ret_stack
),
4204 per_cpu(idle_ret_stack
, cpu
) = ret_stack
;
4206 graph_init_task(t
, ret_stack
);
4210 /* Allocate a return stack for newly created task */
4211 void ftrace_graph_init_task(struct task_struct
*t
)
4213 /* Make sure we do not use the parent ret_stack */
4214 t
->ret_stack
= NULL
;
4215 t
->curr_ret_stack
= -1;
4217 if (ftrace_graph_active
) {
4218 struct ftrace_ret_stack
*ret_stack
;
4220 ret_stack
= kmalloc(FTRACE_RETFUNC_DEPTH
4221 * sizeof(struct ftrace_ret_stack
),
4225 graph_init_task(t
, ret_stack
);
4229 void ftrace_graph_exit_task(struct task_struct
*t
)
4231 struct ftrace_ret_stack
*ret_stack
= t
->ret_stack
;
4233 t
->ret_stack
= NULL
;
4234 /* NULL must become visible to IRQs before we free it: */
4240 void ftrace_graph_stop(void)