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 Nadia Yvette Chambers
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/tracefs.h>
22 #include <linux/hardirq.h>
23 #include <linux/kthread.h>
24 #include <linux/uaccess.h>
25 #include <linux/bsearch.h>
26 #include <linux/module.h>
27 #include <linux/ftrace.h>
28 #include <linux/sysctl.h>
29 #include <linux/slab.h>
30 #include <linux/ctype.h>
31 #include <linux/sort.h>
32 #include <linux/list.h>
33 #include <linux/hash.h>
34 #include <linux/rcupdate.h>
36 #include <trace/events/sched.h>
38 #include <asm/setup.h>
40 #include "trace_output.h"
41 #include "trace_stat.h"
43 #define FTRACE_WARN_ON(cond) \
51 #define FTRACE_WARN_ON_ONCE(cond) \
54 if (WARN_ON_ONCE(___r)) \
59 /* hash bits for specific function selection */
60 #define FTRACE_HASH_BITS 7
61 #define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
62 #define FTRACE_HASH_DEFAULT_BITS 10
63 #define FTRACE_HASH_MAX_BITS 12
65 #ifdef CONFIG_DYNAMIC_FTRACE
66 #define INIT_OPS_HASH(opsname) \
67 .func_hash = &opsname.local_hash, \
68 .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock),
69 #define ASSIGN_OPS_HASH(opsname, val) \
71 .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock),
73 #define INIT_OPS_HASH(opsname)
74 #define ASSIGN_OPS_HASH(opsname, val)
77 static struct ftrace_ops ftrace_list_end __read_mostly
= {
79 .flags
= FTRACE_OPS_FL_RECURSION_SAFE
| FTRACE_OPS_FL_STUB
,
80 INIT_OPS_HASH(ftrace_list_end
)
83 /* ftrace_enabled is a method to turn ftrace on or off */
84 int ftrace_enabled __read_mostly
;
85 static int last_ftrace_enabled
;
87 /* Current function tracing op */
88 struct ftrace_ops
*function_trace_op __read_mostly
= &ftrace_list_end
;
89 /* What to set function_trace_op to */
90 static struct ftrace_ops
*set_function_trace_op
;
92 static bool ftrace_pids_enabled(struct ftrace_ops
*ops
)
94 struct trace_array
*tr
;
96 if (!(ops
->flags
& FTRACE_OPS_FL_PID
) || !ops
->private)
101 return tr
->function_pids
!= NULL
;
104 static void ftrace_update_trampoline(struct ftrace_ops
*ops
);
107 * ftrace_disabled is set when an anomaly is discovered.
108 * ftrace_disabled is much stronger than ftrace_enabled.
110 static int ftrace_disabled __read_mostly
;
112 static DEFINE_MUTEX(ftrace_lock
);
114 static struct ftrace_ops
*ftrace_ops_list __read_mostly
= &ftrace_list_end
;
115 ftrace_func_t ftrace_trace_function __read_mostly
= ftrace_stub
;
116 static struct ftrace_ops global_ops
;
118 #if ARCH_SUPPORTS_FTRACE_OPS
119 static void ftrace_ops_list_func(unsigned long ip
, unsigned long parent_ip
,
120 struct ftrace_ops
*op
, struct pt_regs
*regs
);
122 /* See comment below, where ftrace_ops_list_func is defined */
123 static void ftrace_ops_no_ops(unsigned long ip
, unsigned long parent_ip
);
124 #define ftrace_ops_list_func ((ftrace_func_t)ftrace_ops_no_ops)
128 * Traverse the ftrace_global_list, invoking all entries. The reason that we
129 * can use rcu_dereference_raw_notrace() is that elements removed from this list
130 * are simply leaked, so there is no need to interact with a grace-period
131 * mechanism. The rcu_dereference_raw_notrace() calls are needed to handle
132 * concurrent insertions into the ftrace_global_list.
134 * Silly Alpha and silly pointer-speculation compiler optimizations!
136 #define do_for_each_ftrace_op(op, list) \
137 op = rcu_dereference_raw_notrace(list); \
141 * Optimized for just a single item in the list (as that is the normal case).
143 #define while_for_each_ftrace_op(op) \
144 while (likely(op = rcu_dereference_raw_notrace((op)->next)) && \
145 unlikely((op) != &ftrace_list_end))
147 static inline void ftrace_ops_init(struct ftrace_ops
*ops
)
149 #ifdef CONFIG_DYNAMIC_FTRACE
150 if (!(ops
->flags
& FTRACE_OPS_FL_INITIALIZED
)) {
151 mutex_init(&ops
->local_hash
.regex_lock
);
152 ops
->func_hash
= &ops
->local_hash
;
153 ops
->flags
|= FTRACE_OPS_FL_INITIALIZED
;
159 * ftrace_nr_registered_ops - return number of ops registered
161 * Returns the number of ftrace_ops registered and tracing functions
163 int ftrace_nr_registered_ops(void)
165 struct ftrace_ops
*ops
;
168 mutex_lock(&ftrace_lock
);
170 for (ops
= ftrace_ops_list
;
171 ops
!= &ftrace_list_end
; ops
= ops
->next
)
174 mutex_unlock(&ftrace_lock
);
179 static void ftrace_pid_func(unsigned long ip
, unsigned long parent_ip
,
180 struct ftrace_ops
*op
, struct pt_regs
*regs
)
182 struct trace_array
*tr
= op
->private;
184 if (tr
&& this_cpu_read(tr
->trace_buffer
.data
->ftrace_ignore_pid
))
187 op
->saved_func(ip
, parent_ip
, op
, regs
);
191 * clear_ftrace_function - reset the ftrace function
193 * This NULLs the ftrace function and in essence stops
194 * tracing. There may be lag
196 void clear_ftrace_function(void)
198 ftrace_trace_function
= ftrace_stub
;
201 static void per_cpu_ops_disable_all(struct ftrace_ops
*ops
)
205 for_each_possible_cpu(cpu
)
206 *per_cpu_ptr(ops
->disabled
, cpu
) = 1;
209 static int per_cpu_ops_alloc(struct ftrace_ops
*ops
)
211 int __percpu
*disabled
;
213 if (WARN_ON_ONCE(!(ops
->flags
& FTRACE_OPS_FL_PER_CPU
)))
216 disabled
= alloc_percpu(int);
220 ops
->disabled
= disabled
;
221 per_cpu_ops_disable_all(ops
);
225 static void ftrace_sync(struct work_struct
*work
)
228 * This function is just a stub to implement a hard force
229 * of synchronize_sched(). This requires synchronizing
230 * tasks even in userspace and idle.
232 * Yes, function tracing is rude.
236 static void ftrace_sync_ipi(void *data
)
238 /* Probably not needed, but do it anyway */
242 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
243 static void update_function_graph_func(void);
245 /* Both enabled by default (can be cleared by function_graph tracer flags */
246 static bool fgraph_sleep_time
= true;
247 static bool fgraph_graph_time
= true;
250 static inline void update_function_graph_func(void) { }
254 static ftrace_func_t
ftrace_ops_get_list_func(struct ftrace_ops
*ops
)
257 * If this is a dynamic, RCU, or per CPU ops, or we force list func,
258 * then it needs to call the list anyway.
260 if (ops
->flags
& (FTRACE_OPS_FL_DYNAMIC
| FTRACE_OPS_FL_PER_CPU
|
261 FTRACE_OPS_FL_RCU
) || FTRACE_FORCE_LIST_FUNC
)
262 return ftrace_ops_list_func
;
264 return ftrace_ops_get_func(ops
);
267 static void update_ftrace_function(void)
272 * Prepare the ftrace_ops that the arch callback will use.
273 * If there's only one ftrace_ops registered, the ftrace_ops_list
274 * will point to the ops we want.
276 set_function_trace_op
= ftrace_ops_list
;
278 /* If there's no ftrace_ops registered, just call the stub function */
279 if (ftrace_ops_list
== &ftrace_list_end
) {
283 * If we are at the end of the list and this ops is
284 * recursion safe and not dynamic and the arch supports passing ops,
285 * then have the mcount trampoline call the function directly.
287 } else if (ftrace_ops_list
->next
== &ftrace_list_end
) {
288 func
= ftrace_ops_get_list_func(ftrace_ops_list
);
291 /* Just use the default ftrace_ops */
292 set_function_trace_op
= &ftrace_list_end
;
293 func
= ftrace_ops_list_func
;
296 update_function_graph_func();
298 /* If there's no change, then do nothing more here */
299 if (ftrace_trace_function
== func
)
303 * If we are using the list function, it doesn't care
304 * about the function_trace_ops.
306 if (func
== ftrace_ops_list_func
) {
307 ftrace_trace_function
= func
;
309 * Don't even bother setting function_trace_ops,
310 * it would be racy to do so anyway.
315 #ifndef CONFIG_DYNAMIC_FTRACE
317 * For static tracing, we need to be a bit more careful.
318 * The function change takes affect immediately. Thus,
319 * we need to coorditate the setting of the function_trace_ops
320 * with the setting of the ftrace_trace_function.
322 * Set the function to the list ops, which will call the
323 * function we want, albeit indirectly, but it handles the
324 * ftrace_ops and doesn't depend on function_trace_op.
326 ftrace_trace_function
= ftrace_ops_list_func
;
328 * Make sure all CPUs see this. Yes this is slow, but static
329 * tracing is slow and nasty to have enabled.
331 schedule_on_each_cpu(ftrace_sync
);
332 /* Now all cpus are using the list ops. */
333 function_trace_op
= set_function_trace_op
;
334 /* Make sure the function_trace_op is visible on all CPUs */
336 /* Nasty way to force a rmb on all cpus */
337 smp_call_function(ftrace_sync_ipi
, NULL
, 1);
338 /* OK, we are all set to update the ftrace_trace_function now! */
339 #endif /* !CONFIG_DYNAMIC_FTRACE */
341 ftrace_trace_function
= func
;
344 int using_ftrace_ops_list_func(void)
346 return ftrace_trace_function
== ftrace_ops_list_func
;
349 static void add_ftrace_ops(struct ftrace_ops
**list
, struct ftrace_ops
*ops
)
353 * We are entering ops into the list but another
354 * CPU might be walking that list. We need to make sure
355 * the ops->next pointer is valid before another CPU sees
356 * the ops pointer included into the list.
358 rcu_assign_pointer(*list
, ops
);
361 static int remove_ftrace_ops(struct ftrace_ops
**list
, struct ftrace_ops
*ops
)
363 struct ftrace_ops
**p
;
366 * If we are removing the last function, then simply point
367 * to the ftrace_stub.
369 if (*list
== ops
&& ops
->next
== &ftrace_list_end
) {
370 *list
= &ftrace_list_end
;
374 for (p
= list
; *p
!= &ftrace_list_end
; p
= &(*p
)->next
)
385 static void ftrace_update_trampoline(struct ftrace_ops
*ops
);
387 static int __register_ftrace_function(struct ftrace_ops
*ops
)
389 if (ops
->flags
& FTRACE_OPS_FL_DELETED
)
392 if (WARN_ON(ops
->flags
& FTRACE_OPS_FL_ENABLED
))
395 #ifndef CONFIG_DYNAMIC_FTRACE_WITH_REGS
397 * If the ftrace_ops specifies SAVE_REGS, then it only can be used
398 * if the arch supports it, or SAVE_REGS_IF_SUPPORTED is also set.
399 * Setting SAVE_REGS_IF_SUPPORTED makes SAVE_REGS irrelevant.
401 if (ops
->flags
& FTRACE_OPS_FL_SAVE_REGS
&&
402 !(ops
->flags
& FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED
))
405 if (ops
->flags
& FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED
)
406 ops
->flags
|= FTRACE_OPS_FL_SAVE_REGS
;
409 if (!core_kernel_data((unsigned long)ops
))
410 ops
->flags
|= FTRACE_OPS_FL_DYNAMIC
;
412 if (ops
->flags
& FTRACE_OPS_FL_PER_CPU
) {
413 if (per_cpu_ops_alloc(ops
))
417 add_ftrace_ops(&ftrace_ops_list
, ops
);
419 /* Always save the function, and reset at unregistering */
420 ops
->saved_func
= ops
->func
;
422 if (ftrace_pids_enabled(ops
))
423 ops
->func
= ftrace_pid_func
;
425 ftrace_update_trampoline(ops
);
428 update_ftrace_function();
433 static int __unregister_ftrace_function(struct ftrace_ops
*ops
)
437 if (WARN_ON(!(ops
->flags
& FTRACE_OPS_FL_ENABLED
)))
440 ret
= remove_ftrace_ops(&ftrace_ops_list
, ops
);
446 update_ftrace_function();
448 ops
->func
= ops
->saved_func
;
453 static void ftrace_update_pid_func(void)
455 struct ftrace_ops
*op
;
457 /* Only do something if we are tracing something */
458 if (ftrace_trace_function
== ftrace_stub
)
461 do_for_each_ftrace_op(op
, ftrace_ops_list
) {
462 if (op
->flags
& FTRACE_OPS_FL_PID
) {
463 op
->func
= ftrace_pids_enabled(op
) ?
464 ftrace_pid_func
: op
->saved_func
;
465 ftrace_update_trampoline(op
);
467 } while_for_each_ftrace_op(op
);
469 update_ftrace_function();
472 #ifdef CONFIG_FUNCTION_PROFILER
473 struct ftrace_profile
{
474 struct hlist_node node
;
476 unsigned long counter
;
477 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
478 unsigned long long time
;
479 unsigned long long time_squared
;
483 struct ftrace_profile_page
{
484 struct ftrace_profile_page
*next
;
486 struct ftrace_profile records
[];
489 struct ftrace_profile_stat
{
491 struct hlist_head
*hash
;
492 struct ftrace_profile_page
*pages
;
493 struct ftrace_profile_page
*start
;
494 struct tracer_stat stat
;
497 #define PROFILE_RECORDS_SIZE \
498 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
500 #define PROFILES_PER_PAGE \
501 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
503 static int ftrace_profile_enabled __read_mostly
;
505 /* ftrace_profile_lock - synchronize the enable and disable of the profiler */
506 static DEFINE_MUTEX(ftrace_profile_lock
);
508 static DEFINE_PER_CPU(struct ftrace_profile_stat
, ftrace_profile_stats
);
510 #define FTRACE_PROFILE_HASH_BITS 10
511 #define FTRACE_PROFILE_HASH_SIZE (1 << FTRACE_PROFILE_HASH_BITS)
514 function_stat_next(void *v
, int idx
)
516 struct ftrace_profile
*rec
= v
;
517 struct ftrace_profile_page
*pg
;
519 pg
= (struct ftrace_profile_page
*)((unsigned long)rec
& PAGE_MASK
);
525 if ((void *)rec
>= (void *)&pg
->records
[pg
->index
]) {
529 rec
= &pg
->records
[0];
537 static void *function_stat_start(struct tracer_stat
*trace
)
539 struct ftrace_profile_stat
*stat
=
540 container_of(trace
, struct ftrace_profile_stat
, stat
);
542 if (!stat
|| !stat
->start
)
545 return function_stat_next(&stat
->start
->records
[0], 0);
548 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
549 /* function graph compares on total time */
550 static int function_stat_cmp(void *p1
, void *p2
)
552 struct ftrace_profile
*a
= p1
;
553 struct ftrace_profile
*b
= p2
;
555 if (a
->time
< b
->time
)
557 if (a
->time
> b
->time
)
563 /* not function graph compares against hits */
564 static int function_stat_cmp(void *p1
, void *p2
)
566 struct ftrace_profile
*a
= p1
;
567 struct ftrace_profile
*b
= p2
;
569 if (a
->counter
< b
->counter
)
571 if (a
->counter
> b
->counter
)
578 static int function_stat_headers(struct seq_file
*m
)
580 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
581 seq_puts(m
, " Function "
584 "--- ---- --- ---\n");
586 seq_puts(m
, " Function Hit\n"
592 static int function_stat_show(struct seq_file
*m
, void *v
)
594 struct ftrace_profile
*rec
= v
;
595 char str
[KSYM_SYMBOL_LEN
];
597 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
598 static struct trace_seq s
;
599 unsigned long long avg
;
600 unsigned long long stddev
;
602 mutex_lock(&ftrace_profile_lock
);
604 /* we raced with function_profile_reset() */
605 if (unlikely(rec
->counter
== 0)) {
610 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
612 do_div(avg
, rec
->counter
);
613 if (tracing_thresh
&& (avg
< tracing_thresh
))
617 kallsyms_lookup(rec
->ip
, NULL
, NULL
, NULL
, str
);
618 seq_printf(m
, " %-30.30s %10lu", str
, rec
->counter
);
620 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
623 /* Sample standard deviation (s^2) */
624 if (rec
->counter
<= 1)
628 * Apply Welford's method:
629 * s^2 = 1 / (n * (n-1)) * (n * \Sum (x_i)^2 - (\Sum x_i)^2)
631 stddev
= rec
->counter
* rec
->time_squared
-
632 rec
->time
* rec
->time
;
635 * Divide only 1000 for ns^2 -> us^2 conversion.
636 * trace_print_graph_duration will divide 1000 again.
638 do_div(stddev
, rec
->counter
* (rec
->counter
- 1) * 1000);
642 trace_print_graph_duration(rec
->time
, &s
);
643 trace_seq_puts(&s
, " ");
644 trace_print_graph_duration(avg
, &s
);
645 trace_seq_puts(&s
, " ");
646 trace_print_graph_duration(stddev
, &s
);
647 trace_print_seq(m
, &s
);
651 mutex_unlock(&ftrace_profile_lock
);
656 static void ftrace_profile_reset(struct ftrace_profile_stat
*stat
)
658 struct ftrace_profile_page
*pg
;
660 pg
= stat
->pages
= stat
->start
;
663 memset(pg
->records
, 0, PROFILE_RECORDS_SIZE
);
668 memset(stat
->hash
, 0,
669 FTRACE_PROFILE_HASH_SIZE
* sizeof(struct hlist_head
));
672 int ftrace_profile_pages_init(struct ftrace_profile_stat
*stat
)
674 struct ftrace_profile_page
*pg
;
679 /* If we already allocated, do nothing */
683 stat
->pages
= (void *)get_zeroed_page(GFP_KERNEL
);
687 #ifdef CONFIG_DYNAMIC_FTRACE
688 functions
= ftrace_update_tot_cnt
;
691 * We do not know the number of functions that exist because
692 * dynamic tracing is what counts them. With past experience
693 * we have around 20K functions. That should be more than enough.
694 * It is highly unlikely we will execute every function in
700 pg
= stat
->start
= stat
->pages
;
702 pages
= DIV_ROUND_UP(functions
, PROFILES_PER_PAGE
);
704 for (i
= 1; i
< pages
; i
++) {
705 pg
->next
= (void *)get_zeroed_page(GFP_KERNEL
);
716 unsigned long tmp
= (unsigned long)pg
;
728 static int ftrace_profile_init_cpu(int cpu
)
730 struct ftrace_profile_stat
*stat
;
733 stat
= &per_cpu(ftrace_profile_stats
, cpu
);
736 /* If the profile is already created, simply reset it */
737 ftrace_profile_reset(stat
);
742 * We are profiling all functions, but usually only a few thousand
743 * functions are hit. We'll make a hash of 1024 items.
745 size
= FTRACE_PROFILE_HASH_SIZE
;
747 stat
->hash
= kzalloc(sizeof(struct hlist_head
) * size
, GFP_KERNEL
);
752 /* Preallocate the function profiling pages */
753 if (ftrace_profile_pages_init(stat
) < 0) {
762 static int ftrace_profile_init(void)
767 for_each_possible_cpu(cpu
) {
768 ret
= ftrace_profile_init_cpu(cpu
);
776 /* interrupts must be disabled */
777 static struct ftrace_profile
*
778 ftrace_find_profiled_func(struct ftrace_profile_stat
*stat
, unsigned long ip
)
780 struct ftrace_profile
*rec
;
781 struct hlist_head
*hhd
;
784 key
= hash_long(ip
, FTRACE_PROFILE_HASH_BITS
);
785 hhd
= &stat
->hash
[key
];
787 if (hlist_empty(hhd
))
790 hlist_for_each_entry_rcu_notrace(rec
, hhd
, node
) {
798 static void ftrace_add_profile(struct ftrace_profile_stat
*stat
,
799 struct ftrace_profile
*rec
)
803 key
= hash_long(rec
->ip
, FTRACE_PROFILE_HASH_BITS
);
804 hlist_add_head_rcu(&rec
->node
, &stat
->hash
[key
]);
808 * The memory is already allocated, this simply finds a new record to use.
810 static struct ftrace_profile
*
811 ftrace_profile_alloc(struct ftrace_profile_stat
*stat
, unsigned long ip
)
813 struct ftrace_profile
*rec
= NULL
;
815 /* prevent recursion (from NMIs) */
816 if (atomic_inc_return(&stat
->disabled
) != 1)
820 * Try to find the function again since an NMI
821 * could have added it
823 rec
= ftrace_find_profiled_func(stat
, ip
);
827 if (stat
->pages
->index
== PROFILES_PER_PAGE
) {
828 if (!stat
->pages
->next
)
830 stat
->pages
= stat
->pages
->next
;
833 rec
= &stat
->pages
->records
[stat
->pages
->index
++];
835 ftrace_add_profile(stat
, rec
);
838 atomic_dec(&stat
->disabled
);
844 function_profile_call(unsigned long ip
, unsigned long parent_ip
,
845 struct ftrace_ops
*ops
, struct pt_regs
*regs
)
847 struct ftrace_profile_stat
*stat
;
848 struct ftrace_profile
*rec
;
851 if (!ftrace_profile_enabled
)
854 local_irq_save(flags
);
856 stat
= this_cpu_ptr(&ftrace_profile_stats
);
857 if (!stat
->hash
|| !ftrace_profile_enabled
)
860 rec
= ftrace_find_profiled_func(stat
, ip
);
862 rec
= ftrace_profile_alloc(stat
, ip
);
869 local_irq_restore(flags
);
872 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
873 static int profile_graph_entry(struct ftrace_graph_ent
*trace
)
875 function_profile_call(trace
->func
, 0, NULL
, NULL
);
879 static void profile_graph_return(struct ftrace_graph_ret
*trace
)
881 struct ftrace_profile_stat
*stat
;
882 unsigned long long calltime
;
883 struct ftrace_profile
*rec
;
886 local_irq_save(flags
);
887 stat
= this_cpu_ptr(&ftrace_profile_stats
);
888 if (!stat
->hash
|| !ftrace_profile_enabled
)
891 /* If the calltime was zero'd ignore it */
892 if (!trace
->calltime
)
895 calltime
= trace
->rettime
- trace
->calltime
;
897 if (!fgraph_graph_time
) {
900 index
= trace
->depth
;
902 /* Append this call time to the parent time to subtract */
904 current
->ret_stack
[index
- 1].subtime
+= calltime
;
906 if (current
->ret_stack
[index
].subtime
< calltime
)
907 calltime
-= current
->ret_stack
[index
].subtime
;
912 rec
= ftrace_find_profiled_func(stat
, trace
->func
);
914 rec
->time
+= calltime
;
915 rec
->time_squared
+= calltime
* calltime
;
919 local_irq_restore(flags
);
922 static int register_ftrace_profiler(void)
924 return register_ftrace_graph(&profile_graph_return
,
925 &profile_graph_entry
);
928 static void unregister_ftrace_profiler(void)
930 unregister_ftrace_graph();
933 static struct ftrace_ops ftrace_profile_ops __read_mostly
= {
934 .func
= function_profile_call
,
935 .flags
= FTRACE_OPS_FL_RECURSION_SAFE
| FTRACE_OPS_FL_INITIALIZED
,
936 INIT_OPS_HASH(ftrace_profile_ops
)
939 static int register_ftrace_profiler(void)
941 return register_ftrace_function(&ftrace_profile_ops
);
944 static void unregister_ftrace_profiler(void)
946 unregister_ftrace_function(&ftrace_profile_ops
);
948 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
951 ftrace_profile_write(struct file
*filp
, const char __user
*ubuf
,
952 size_t cnt
, loff_t
*ppos
)
957 ret
= kstrtoul_from_user(ubuf
, cnt
, 10, &val
);
963 mutex_lock(&ftrace_profile_lock
);
964 if (ftrace_profile_enabled
^ val
) {
966 ret
= ftrace_profile_init();
972 ret
= register_ftrace_profiler();
977 ftrace_profile_enabled
= 1;
979 ftrace_profile_enabled
= 0;
981 * unregister_ftrace_profiler calls stop_machine
982 * so this acts like an synchronize_sched.
984 unregister_ftrace_profiler();
988 mutex_unlock(&ftrace_profile_lock
);
996 ftrace_profile_read(struct file
*filp
, char __user
*ubuf
,
997 size_t cnt
, loff_t
*ppos
)
999 char buf
[64]; /* big enough to hold a number */
1002 r
= sprintf(buf
, "%u\n", ftrace_profile_enabled
);
1003 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
1006 static const struct file_operations ftrace_profile_fops
= {
1007 .open
= tracing_open_generic
,
1008 .read
= ftrace_profile_read
,
1009 .write
= ftrace_profile_write
,
1010 .llseek
= default_llseek
,
1013 /* used to initialize the real stat files */
1014 static struct tracer_stat function_stats __initdata
= {
1015 .name
= "functions",
1016 .stat_start
= function_stat_start
,
1017 .stat_next
= function_stat_next
,
1018 .stat_cmp
= function_stat_cmp
,
1019 .stat_headers
= function_stat_headers
,
1020 .stat_show
= function_stat_show
1023 static __init
void ftrace_profile_tracefs(struct dentry
*d_tracer
)
1025 struct ftrace_profile_stat
*stat
;
1026 struct dentry
*entry
;
1031 for_each_possible_cpu(cpu
) {
1032 stat
= &per_cpu(ftrace_profile_stats
, cpu
);
1034 name
= kasprintf(GFP_KERNEL
, "function%d", cpu
);
1037 * The files created are permanent, if something happens
1038 * we still do not free memory.
1041 "Could not allocate stat file for cpu %d\n",
1045 stat
->stat
= function_stats
;
1046 stat
->stat
.name
= name
;
1047 ret
= register_stat_tracer(&stat
->stat
);
1050 "Could not register function stat for cpu %d\n",
1057 entry
= tracefs_create_file("function_profile_enabled", 0644,
1058 d_tracer
, NULL
, &ftrace_profile_fops
);
1060 pr_warn("Could not create tracefs 'function_profile_enabled' entry\n");
1063 #else /* CONFIG_FUNCTION_PROFILER */
1064 static __init
void ftrace_profile_tracefs(struct dentry
*d_tracer
)
1067 #endif /* CONFIG_FUNCTION_PROFILER */
1069 static struct pid
* const ftrace_swapper_pid
= &init_struct_pid
;
1071 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1072 static int ftrace_graph_active
;
1074 # define ftrace_graph_active 0
1077 #ifdef CONFIG_DYNAMIC_FTRACE
1079 static struct ftrace_ops
*removed_ops
;
1082 * Set when doing a global update, like enabling all recs or disabling them.
1083 * It is not set when just updating a single ftrace_ops.
1085 static bool update_all_ops
;
1087 #ifndef CONFIG_FTRACE_MCOUNT_RECORD
1088 # error Dynamic ftrace depends on MCOUNT_RECORD
1091 static struct hlist_head ftrace_func_hash
[FTRACE_FUNC_HASHSIZE
] __read_mostly
;
1093 struct ftrace_func_probe
{
1094 struct hlist_node node
;
1095 struct ftrace_probe_ops
*ops
;
1096 unsigned long flags
;
1099 struct list_head free_list
;
1102 struct ftrace_func_entry
{
1103 struct hlist_node hlist
;
1107 struct ftrace_hash
{
1108 unsigned long size_bits
;
1109 struct hlist_head
*buckets
;
1110 unsigned long count
;
1111 struct rcu_head rcu
;
1115 * We make these constant because no one should touch them,
1116 * but they are used as the default "empty hash", to avoid allocating
1117 * it all the time. These are in a read only section such that if
1118 * anyone does try to modify it, it will cause an exception.
1120 static const struct hlist_head empty_buckets
[1];
1121 static const struct ftrace_hash empty_hash
= {
1122 .buckets
= (struct hlist_head
*)empty_buckets
,
1124 #define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
1126 static struct ftrace_ops global_ops
= {
1127 .func
= ftrace_stub
,
1128 .local_hash
.notrace_hash
= EMPTY_HASH
,
1129 .local_hash
.filter_hash
= EMPTY_HASH
,
1130 INIT_OPS_HASH(global_ops
)
1131 .flags
= FTRACE_OPS_FL_RECURSION_SAFE
|
1132 FTRACE_OPS_FL_INITIALIZED
|
1137 * This is used by __kernel_text_address() to return true if the
1138 * address is on a dynamically allocated trampoline that would
1139 * not return true for either core_kernel_text() or
1140 * is_module_text_address().
1142 bool is_ftrace_trampoline(unsigned long addr
)
1144 struct ftrace_ops
*op
;
1148 * Some of the ops may be dynamically allocated,
1149 * they are freed after a synchronize_sched().
1151 preempt_disable_notrace();
1153 do_for_each_ftrace_op(op
, ftrace_ops_list
) {
1155 * This is to check for dynamically allocated trampolines.
1156 * Trampolines that are in kernel text will have
1157 * core_kernel_text() return true.
1159 if (op
->trampoline
&& op
->trampoline_size
)
1160 if (addr
>= op
->trampoline
&&
1161 addr
< op
->trampoline
+ op
->trampoline_size
) {
1165 } while_for_each_ftrace_op(op
);
1168 preempt_enable_notrace();
1173 struct ftrace_page
{
1174 struct ftrace_page
*next
;
1175 struct dyn_ftrace
*records
;
1180 #define ENTRY_SIZE sizeof(struct dyn_ftrace)
1181 #define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
1183 /* estimate from running different kernels */
1184 #define NR_TO_INIT 10000
1186 static struct ftrace_page
*ftrace_pages_start
;
1187 static struct ftrace_page
*ftrace_pages
;
1189 static bool __always_inline
ftrace_hash_empty(struct ftrace_hash
*hash
)
1191 return !hash
|| !hash
->count
;
1194 static struct ftrace_func_entry
*
1195 ftrace_lookup_ip(struct ftrace_hash
*hash
, unsigned long ip
)
1198 struct ftrace_func_entry
*entry
;
1199 struct hlist_head
*hhd
;
1201 if (ftrace_hash_empty(hash
))
1204 if (hash
->size_bits
> 0)
1205 key
= hash_long(ip
, hash
->size_bits
);
1209 hhd
= &hash
->buckets
[key
];
1211 hlist_for_each_entry_rcu_notrace(entry
, hhd
, hlist
) {
1212 if (entry
->ip
== ip
)
1218 static void __add_hash_entry(struct ftrace_hash
*hash
,
1219 struct ftrace_func_entry
*entry
)
1221 struct hlist_head
*hhd
;
1224 if (hash
->size_bits
)
1225 key
= hash_long(entry
->ip
, hash
->size_bits
);
1229 hhd
= &hash
->buckets
[key
];
1230 hlist_add_head(&entry
->hlist
, hhd
);
1234 static int add_hash_entry(struct ftrace_hash
*hash
, unsigned long ip
)
1236 struct ftrace_func_entry
*entry
;
1238 entry
= kmalloc(sizeof(*entry
), GFP_KERNEL
);
1243 __add_hash_entry(hash
, entry
);
1249 free_hash_entry(struct ftrace_hash
*hash
,
1250 struct ftrace_func_entry
*entry
)
1252 hlist_del(&entry
->hlist
);
1258 remove_hash_entry(struct ftrace_hash
*hash
,
1259 struct ftrace_func_entry
*entry
)
1261 hlist_del(&entry
->hlist
);
1265 static void ftrace_hash_clear(struct ftrace_hash
*hash
)
1267 struct hlist_head
*hhd
;
1268 struct hlist_node
*tn
;
1269 struct ftrace_func_entry
*entry
;
1270 int size
= 1 << hash
->size_bits
;
1276 for (i
= 0; i
< size
; i
++) {
1277 hhd
= &hash
->buckets
[i
];
1278 hlist_for_each_entry_safe(entry
, tn
, hhd
, hlist
)
1279 free_hash_entry(hash
, entry
);
1281 FTRACE_WARN_ON(hash
->count
);
1284 static void free_ftrace_hash(struct ftrace_hash
*hash
)
1286 if (!hash
|| hash
== EMPTY_HASH
)
1288 ftrace_hash_clear(hash
);
1289 kfree(hash
->buckets
);
1293 static void __free_ftrace_hash_rcu(struct rcu_head
*rcu
)
1295 struct ftrace_hash
*hash
;
1297 hash
= container_of(rcu
, struct ftrace_hash
, rcu
);
1298 free_ftrace_hash(hash
);
1301 static void free_ftrace_hash_rcu(struct ftrace_hash
*hash
)
1303 if (!hash
|| hash
== EMPTY_HASH
)
1305 call_rcu_sched(&hash
->rcu
, __free_ftrace_hash_rcu
);
1308 void ftrace_free_filter(struct ftrace_ops
*ops
)
1310 ftrace_ops_init(ops
);
1311 free_ftrace_hash(ops
->func_hash
->filter_hash
);
1312 free_ftrace_hash(ops
->func_hash
->notrace_hash
);
1315 static struct ftrace_hash
*alloc_ftrace_hash(int size_bits
)
1317 struct ftrace_hash
*hash
;
1320 hash
= kzalloc(sizeof(*hash
), GFP_KERNEL
);
1324 size
= 1 << size_bits
;
1325 hash
->buckets
= kcalloc(size
, sizeof(*hash
->buckets
), GFP_KERNEL
);
1327 if (!hash
->buckets
) {
1332 hash
->size_bits
= size_bits
;
1337 static struct ftrace_hash
*
1338 alloc_and_copy_ftrace_hash(int size_bits
, struct ftrace_hash
*hash
)
1340 struct ftrace_func_entry
*entry
;
1341 struct ftrace_hash
*new_hash
;
1346 new_hash
= alloc_ftrace_hash(size_bits
);
1351 if (ftrace_hash_empty(hash
))
1354 size
= 1 << hash
->size_bits
;
1355 for (i
= 0; i
< size
; i
++) {
1356 hlist_for_each_entry(entry
, &hash
->buckets
[i
], hlist
) {
1357 ret
= add_hash_entry(new_hash
, entry
->ip
);
1363 FTRACE_WARN_ON(new_hash
->count
!= hash
->count
);
1368 free_ftrace_hash(new_hash
);
1373 ftrace_hash_rec_disable_modify(struct ftrace_ops
*ops
, int filter_hash
);
1375 ftrace_hash_rec_enable_modify(struct ftrace_ops
*ops
, int filter_hash
);
1377 static int ftrace_hash_ipmodify_update(struct ftrace_ops
*ops
,
1378 struct ftrace_hash
*new_hash
);
1381 ftrace_hash_move(struct ftrace_ops
*ops
, int enable
,
1382 struct ftrace_hash
**dst
, struct ftrace_hash
*src
)
1384 struct ftrace_func_entry
*entry
;
1385 struct hlist_node
*tn
;
1386 struct hlist_head
*hhd
;
1387 struct ftrace_hash
*new_hash
;
1388 int size
= src
->count
;
1393 /* Reject setting notrace hash on IPMODIFY ftrace_ops */
1394 if (ops
->flags
& FTRACE_OPS_FL_IPMODIFY
&& !enable
)
1398 * If the new source is empty, just free dst and assign it
1402 new_hash
= EMPTY_HASH
;
1407 * Make the hash size about 1/2 the # found
1409 for (size
/= 2; size
; size
>>= 1)
1412 /* Don't allocate too much */
1413 if (bits
> FTRACE_HASH_MAX_BITS
)
1414 bits
= FTRACE_HASH_MAX_BITS
;
1416 new_hash
= alloc_ftrace_hash(bits
);
1420 size
= 1 << src
->size_bits
;
1421 for (i
= 0; i
< size
; i
++) {
1422 hhd
= &src
->buckets
[i
];
1423 hlist_for_each_entry_safe(entry
, tn
, hhd
, hlist
) {
1424 remove_hash_entry(src
, entry
);
1425 __add_hash_entry(new_hash
, entry
);
1430 /* Make sure this can be applied if it is IPMODIFY ftrace_ops */
1432 /* IPMODIFY should be updated only when filter_hash updating */
1433 ret
= ftrace_hash_ipmodify_update(ops
, new_hash
);
1435 free_ftrace_hash(new_hash
);
1441 * Remove the current set, update the hash and add
1444 ftrace_hash_rec_disable_modify(ops
, enable
);
1446 rcu_assign_pointer(*dst
, new_hash
);
1448 ftrace_hash_rec_enable_modify(ops
, enable
);
1453 static bool hash_contains_ip(unsigned long ip
,
1454 struct ftrace_ops_hash
*hash
)
1457 * The function record is a match if it exists in the filter
1458 * hash and not in the notrace hash. Note, an emty hash is
1459 * considered a match for the filter hash, but an empty
1460 * notrace hash is considered not in the notrace hash.
1462 return (ftrace_hash_empty(hash
->filter_hash
) ||
1463 ftrace_lookup_ip(hash
->filter_hash
, ip
)) &&
1464 (ftrace_hash_empty(hash
->notrace_hash
) ||
1465 !ftrace_lookup_ip(hash
->notrace_hash
, ip
));
1469 * Test the hashes for this ops to see if we want to call
1470 * the ops->func or not.
1472 * It's a match if the ip is in the ops->filter_hash or
1473 * the filter_hash does not exist or is empty,
1475 * the ip is not in the ops->notrace_hash.
1477 * This needs to be called with preemption disabled as
1478 * the hashes are freed with call_rcu_sched().
1481 ftrace_ops_test(struct ftrace_ops
*ops
, unsigned long ip
, void *regs
)
1483 struct ftrace_ops_hash hash
;
1486 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1488 * There's a small race when adding ops that the ftrace handler
1489 * that wants regs, may be called without them. We can not
1490 * allow that handler to be called if regs is NULL.
1492 if (regs
== NULL
&& (ops
->flags
& FTRACE_OPS_FL_SAVE_REGS
))
1496 hash
.filter_hash
= rcu_dereference_raw_notrace(ops
->func_hash
->filter_hash
);
1497 hash
.notrace_hash
= rcu_dereference_raw_notrace(ops
->func_hash
->notrace_hash
);
1499 if (hash_contains_ip(ip
, &hash
))
1508 * This is a double for. Do not use 'break' to break out of the loop,
1509 * you must use a goto.
1511 #define do_for_each_ftrace_rec(pg, rec) \
1512 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1514 for (_____i = 0; _____i < pg->index; _____i++) { \
1515 rec = &pg->records[_____i];
1517 #define while_for_each_ftrace_rec() \
1522 static int ftrace_cmp_recs(const void *a
, const void *b
)
1524 const struct dyn_ftrace
*key
= a
;
1525 const struct dyn_ftrace
*rec
= b
;
1527 if (key
->flags
< rec
->ip
)
1529 if (key
->ip
>= rec
->ip
+ MCOUNT_INSN_SIZE
)
1535 * ftrace_location_range - return the first address of a traced location
1536 * if it touches the given ip range
1537 * @start: start of range to search.
1538 * @end: end of range to search (inclusive). @end points to the last byte
1541 * Returns rec->ip if the related ftrace location is a least partly within
1542 * the given address range. That is, the first address of the instruction
1543 * that is either a NOP or call to the function tracer. It checks the ftrace
1544 * internal tables to determine if the address belongs or not.
1546 unsigned long ftrace_location_range(unsigned long start
, unsigned long end
)
1548 struct ftrace_page
*pg
;
1549 struct dyn_ftrace
*rec
;
1550 struct dyn_ftrace key
;
1553 key
.flags
= end
; /* overload flags, as it is unsigned long */
1555 for (pg
= ftrace_pages_start
; pg
; pg
= pg
->next
) {
1556 if (end
< pg
->records
[0].ip
||
1557 start
>= (pg
->records
[pg
->index
- 1].ip
+ MCOUNT_INSN_SIZE
))
1559 rec
= bsearch(&key
, pg
->records
, pg
->index
,
1560 sizeof(struct dyn_ftrace
),
1570 * ftrace_location - return true if the ip giving is a traced location
1571 * @ip: the instruction pointer to check
1573 * Returns rec->ip if @ip given is a pointer to a ftrace location.
1574 * That is, the instruction that is either a NOP or call to
1575 * the function tracer. It checks the ftrace internal tables to
1576 * determine if the address belongs or not.
1578 unsigned long ftrace_location(unsigned long ip
)
1580 return ftrace_location_range(ip
, ip
);
1584 * ftrace_text_reserved - return true if range contains an ftrace location
1585 * @start: start of range to search
1586 * @end: end of range to search (inclusive). @end points to the last byte to check.
1588 * Returns 1 if @start and @end contains a ftrace location.
1589 * That is, the instruction that is either a NOP or call to
1590 * the function tracer. It checks the ftrace internal tables to
1591 * determine if the address belongs or not.
1593 int ftrace_text_reserved(const void *start
, const void *end
)
1597 ret
= ftrace_location_range((unsigned long)start
,
1598 (unsigned long)end
);
1603 /* Test if ops registered to this rec needs regs */
1604 static bool test_rec_ops_needs_regs(struct dyn_ftrace
*rec
)
1606 struct ftrace_ops
*ops
;
1607 bool keep_regs
= false;
1609 for (ops
= ftrace_ops_list
;
1610 ops
!= &ftrace_list_end
; ops
= ops
->next
) {
1611 /* pass rec in as regs to have non-NULL val */
1612 if (ftrace_ops_test(ops
, rec
->ip
, rec
)) {
1613 if (ops
->flags
& FTRACE_OPS_FL_SAVE_REGS
) {
1623 static bool __ftrace_hash_rec_update(struct ftrace_ops
*ops
,
1627 struct ftrace_hash
*hash
;
1628 struct ftrace_hash
*other_hash
;
1629 struct ftrace_page
*pg
;
1630 struct dyn_ftrace
*rec
;
1631 bool update
= false;
1635 /* Only update if the ops has been registered */
1636 if (!(ops
->flags
& FTRACE_OPS_FL_ENABLED
))
1640 * In the filter_hash case:
1641 * If the count is zero, we update all records.
1642 * Otherwise we just update the items in the hash.
1644 * In the notrace_hash case:
1645 * We enable the update in the hash.
1646 * As disabling notrace means enabling the tracing,
1647 * and enabling notrace means disabling, the inc variable
1651 hash
= ops
->func_hash
->filter_hash
;
1652 other_hash
= ops
->func_hash
->notrace_hash
;
1653 if (ftrace_hash_empty(hash
))
1657 hash
= ops
->func_hash
->notrace_hash
;
1658 other_hash
= ops
->func_hash
->filter_hash
;
1660 * If the notrace hash has no items,
1661 * then there's nothing to do.
1663 if (ftrace_hash_empty(hash
))
1667 do_for_each_ftrace_rec(pg
, rec
) {
1668 int in_other_hash
= 0;
1672 if (rec
->flags
& FTRACE_FL_DISABLED
)
1677 * Only the filter_hash affects all records.
1678 * Update if the record is not in the notrace hash.
1680 if (!other_hash
|| !ftrace_lookup_ip(other_hash
, rec
->ip
))
1683 in_hash
= !!ftrace_lookup_ip(hash
, rec
->ip
);
1684 in_other_hash
= !!ftrace_lookup_ip(other_hash
, rec
->ip
);
1687 * If filter_hash is set, we want to match all functions
1688 * that are in the hash but not in the other hash.
1690 * If filter_hash is not set, then we are decrementing.
1691 * That means we match anything that is in the hash
1692 * and also in the other_hash. That is, we need to turn
1693 * off functions in the other hash because they are disabled
1696 if (filter_hash
&& in_hash
&& !in_other_hash
)
1698 else if (!filter_hash
&& in_hash
&&
1699 (in_other_hash
|| ftrace_hash_empty(other_hash
)))
1707 if (FTRACE_WARN_ON(ftrace_rec_count(rec
) == FTRACE_REF_MAX
))
1711 * If there's only a single callback registered to a
1712 * function, and the ops has a trampoline registered
1713 * for it, then we can call it directly.
1715 if (ftrace_rec_count(rec
) == 1 && ops
->trampoline
)
1716 rec
->flags
|= FTRACE_FL_TRAMP
;
1719 * If we are adding another function callback
1720 * to this function, and the previous had a
1721 * custom trampoline in use, then we need to go
1722 * back to the default trampoline.
1724 rec
->flags
&= ~FTRACE_FL_TRAMP
;
1727 * If any ops wants regs saved for this function
1728 * then all ops will get saved regs.
1730 if (ops
->flags
& FTRACE_OPS_FL_SAVE_REGS
)
1731 rec
->flags
|= FTRACE_FL_REGS
;
1733 if (FTRACE_WARN_ON(ftrace_rec_count(rec
) == 0))
1738 * If the rec had REGS enabled and the ops that is
1739 * being removed had REGS set, then see if there is
1740 * still any ops for this record that wants regs.
1741 * If not, we can stop recording them.
1743 if (ftrace_rec_count(rec
) > 0 &&
1744 rec
->flags
& FTRACE_FL_REGS
&&
1745 ops
->flags
& FTRACE_OPS_FL_SAVE_REGS
) {
1746 if (!test_rec_ops_needs_regs(rec
))
1747 rec
->flags
&= ~FTRACE_FL_REGS
;
1751 * If the rec had TRAMP enabled, then it needs to
1752 * be cleared. As TRAMP can only be enabled iff
1753 * there is only a single ops attached to it.
1754 * In otherwords, always disable it on decrementing.
1755 * In the future, we may set it if rec count is
1756 * decremented to one, and the ops that is left
1759 rec
->flags
&= ~FTRACE_FL_TRAMP
;
1762 * flags will be cleared in ftrace_check_record()
1763 * if rec count is zero.
1768 /* Must match FTRACE_UPDATE_CALLS in ftrace_modify_all_code() */
1769 update
|= ftrace_test_record(rec
, 1) != FTRACE_UPDATE_IGNORE
;
1771 /* Shortcut, if we handled all records, we are done. */
1772 if (!all
&& count
== hash
->count
)
1774 } while_for_each_ftrace_rec();
1779 static bool ftrace_hash_rec_disable(struct ftrace_ops
*ops
,
1782 return __ftrace_hash_rec_update(ops
, filter_hash
, 0);
1785 static bool ftrace_hash_rec_enable(struct ftrace_ops
*ops
,
1788 return __ftrace_hash_rec_update(ops
, filter_hash
, 1);
1791 static void ftrace_hash_rec_update_modify(struct ftrace_ops
*ops
,
1792 int filter_hash
, int inc
)
1794 struct ftrace_ops
*op
;
1796 __ftrace_hash_rec_update(ops
, filter_hash
, inc
);
1798 if (ops
->func_hash
!= &global_ops
.local_hash
)
1802 * If the ops shares the global_ops hash, then we need to update
1803 * all ops that are enabled and use this hash.
1805 do_for_each_ftrace_op(op
, ftrace_ops_list
) {
1809 if (op
->func_hash
== &global_ops
.local_hash
)
1810 __ftrace_hash_rec_update(op
, filter_hash
, inc
);
1811 } while_for_each_ftrace_op(op
);
1814 static void ftrace_hash_rec_disable_modify(struct ftrace_ops
*ops
,
1817 ftrace_hash_rec_update_modify(ops
, filter_hash
, 0);
1820 static void ftrace_hash_rec_enable_modify(struct ftrace_ops
*ops
,
1823 ftrace_hash_rec_update_modify(ops
, filter_hash
, 1);
1827 * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK
1828 * or no-needed to update, -EBUSY if it detects a conflict of the flag
1829 * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs.
1830 * Note that old_hash and new_hash has below meanings
1831 * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected)
1832 * - If the hash is EMPTY_HASH, it hits nothing
1833 * - Anything else hits the recs which match the hash entries.
1835 static int __ftrace_hash_update_ipmodify(struct ftrace_ops
*ops
,
1836 struct ftrace_hash
*old_hash
,
1837 struct ftrace_hash
*new_hash
)
1839 struct ftrace_page
*pg
;
1840 struct dyn_ftrace
*rec
, *end
= NULL
;
1843 /* Only update if the ops has been registered */
1844 if (!(ops
->flags
& FTRACE_OPS_FL_ENABLED
))
1847 if (!(ops
->flags
& FTRACE_OPS_FL_IPMODIFY
))
1851 * Since the IPMODIFY is a very address sensitive action, we do not
1852 * allow ftrace_ops to set all functions to new hash.
1854 if (!new_hash
|| !old_hash
)
1857 /* Update rec->flags */
1858 do_for_each_ftrace_rec(pg
, rec
) {
1859 /* We need to update only differences of filter_hash */
1860 in_old
= !!ftrace_lookup_ip(old_hash
, rec
->ip
);
1861 in_new
= !!ftrace_lookup_ip(new_hash
, rec
->ip
);
1862 if (in_old
== in_new
)
1866 /* New entries must ensure no others are using it */
1867 if (rec
->flags
& FTRACE_FL_IPMODIFY
)
1869 rec
->flags
|= FTRACE_FL_IPMODIFY
;
1870 } else /* Removed entry */
1871 rec
->flags
&= ~FTRACE_FL_IPMODIFY
;
1872 } while_for_each_ftrace_rec();
1879 /* Roll back what we did above */
1880 do_for_each_ftrace_rec(pg
, rec
) {
1884 in_old
= !!ftrace_lookup_ip(old_hash
, rec
->ip
);
1885 in_new
= !!ftrace_lookup_ip(new_hash
, rec
->ip
);
1886 if (in_old
== in_new
)
1890 rec
->flags
&= ~FTRACE_FL_IPMODIFY
;
1892 rec
->flags
|= FTRACE_FL_IPMODIFY
;
1893 } while_for_each_ftrace_rec();
1899 static int ftrace_hash_ipmodify_enable(struct ftrace_ops
*ops
)
1901 struct ftrace_hash
*hash
= ops
->func_hash
->filter_hash
;
1903 if (ftrace_hash_empty(hash
))
1906 return __ftrace_hash_update_ipmodify(ops
, EMPTY_HASH
, hash
);
1909 /* Disabling always succeeds */
1910 static void ftrace_hash_ipmodify_disable(struct ftrace_ops
*ops
)
1912 struct ftrace_hash
*hash
= ops
->func_hash
->filter_hash
;
1914 if (ftrace_hash_empty(hash
))
1917 __ftrace_hash_update_ipmodify(ops
, hash
, EMPTY_HASH
);
1920 static int ftrace_hash_ipmodify_update(struct ftrace_ops
*ops
,
1921 struct ftrace_hash
*new_hash
)
1923 struct ftrace_hash
*old_hash
= ops
->func_hash
->filter_hash
;
1925 if (ftrace_hash_empty(old_hash
))
1928 if (ftrace_hash_empty(new_hash
))
1931 return __ftrace_hash_update_ipmodify(ops
, old_hash
, new_hash
);
1934 static void print_ip_ins(const char *fmt
, const unsigned char *p
)
1938 printk(KERN_CONT
"%s", fmt
);
1940 for (i
= 0; i
< MCOUNT_INSN_SIZE
; i
++)
1941 printk(KERN_CONT
"%s%02x", i
? ":" : "", p
[i
]);
1944 static struct ftrace_ops
*
1945 ftrace_find_tramp_ops_any(struct dyn_ftrace
*rec
);
1946 static struct ftrace_ops
*
1947 ftrace_find_tramp_ops_next(struct dyn_ftrace
*rec
, struct ftrace_ops
*ops
);
1949 enum ftrace_bug_type ftrace_bug_type
;
1950 const void *ftrace_expected
;
1952 static void print_bug_type(void)
1954 switch (ftrace_bug_type
) {
1955 case FTRACE_BUG_UNKNOWN
:
1957 case FTRACE_BUG_INIT
:
1958 pr_info("Initializing ftrace call sites\n");
1960 case FTRACE_BUG_NOP
:
1961 pr_info("Setting ftrace call site to NOP\n");
1963 case FTRACE_BUG_CALL
:
1964 pr_info("Setting ftrace call site to call ftrace function\n");
1966 case FTRACE_BUG_UPDATE
:
1967 pr_info("Updating ftrace call site to call a different ftrace function\n");
1973 * ftrace_bug - report and shutdown function tracer
1974 * @failed: The failed type (EFAULT, EINVAL, EPERM)
1975 * @rec: The record that failed
1977 * The arch code that enables or disables the function tracing
1978 * can call ftrace_bug() when it has detected a problem in
1979 * modifying the code. @failed should be one of either:
1980 * EFAULT - if the problem happens on reading the @ip address
1981 * EINVAL - if what is read at @ip is not what was expected
1982 * EPERM - if the problem happens on writting to the @ip address
1984 void ftrace_bug(int failed
, struct dyn_ftrace
*rec
)
1986 unsigned long ip
= rec
? rec
->ip
: 0;
1990 FTRACE_WARN_ON_ONCE(1);
1991 pr_info("ftrace faulted on modifying ");
1995 FTRACE_WARN_ON_ONCE(1);
1996 pr_info("ftrace failed to modify ");
1998 print_ip_ins(" actual: ", (unsigned char *)ip
);
2000 if (ftrace_expected
) {
2001 print_ip_ins(" expected: ", ftrace_expected
);
2006 FTRACE_WARN_ON_ONCE(1);
2007 pr_info("ftrace faulted on writing ");
2011 FTRACE_WARN_ON_ONCE(1);
2012 pr_info("ftrace faulted on unknown error ");
2017 struct ftrace_ops
*ops
= NULL
;
2019 pr_info("ftrace record flags: %lx\n", rec
->flags
);
2020 pr_cont(" (%ld)%s", ftrace_rec_count(rec
),
2021 rec
->flags
& FTRACE_FL_REGS
? " R" : " ");
2022 if (rec
->flags
& FTRACE_FL_TRAMP_EN
) {
2023 ops
= ftrace_find_tramp_ops_any(rec
);
2026 pr_cont("\ttramp: %pS (%pS)",
2027 (void *)ops
->trampoline
,
2029 ops
= ftrace_find_tramp_ops_next(rec
, ops
);
2032 pr_cont("\ttramp: ERROR!");
2035 ip
= ftrace_get_addr_curr(rec
);
2036 pr_cont("\n expected tramp: %lx\n", ip
);
2040 static int ftrace_check_record(struct dyn_ftrace
*rec
, int enable
, int update
)
2042 unsigned long flag
= 0UL;
2044 ftrace_bug_type
= FTRACE_BUG_UNKNOWN
;
2046 if (rec
->flags
& FTRACE_FL_DISABLED
)
2047 return FTRACE_UPDATE_IGNORE
;
2050 * If we are updating calls:
2052 * If the record has a ref count, then we need to enable it
2053 * because someone is using it.
2055 * Otherwise we make sure its disabled.
2057 * If we are disabling calls, then disable all records that
2060 if (enable
&& ftrace_rec_count(rec
))
2061 flag
= FTRACE_FL_ENABLED
;
2064 * If enabling and the REGS flag does not match the REGS_EN, or
2065 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
2066 * this record. Set flags to fail the compare against ENABLED.
2069 if (!(rec
->flags
& FTRACE_FL_REGS
) !=
2070 !(rec
->flags
& FTRACE_FL_REGS_EN
))
2071 flag
|= FTRACE_FL_REGS
;
2073 if (!(rec
->flags
& FTRACE_FL_TRAMP
) !=
2074 !(rec
->flags
& FTRACE_FL_TRAMP_EN
))
2075 flag
|= FTRACE_FL_TRAMP
;
2078 /* If the state of this record hasn't changed, then do nothing */
2079 if ((rec
->flags
& FTRACE_FL_ENABLED
) == flag
)
2080 return FTRACE_UPDATE_IGNORE
;
2083 /* Save off if rec is being enabled (for return value) */
2084 flag
^= rec
->flags
& FTRACE_FL_ENABLED
;
2087 rec
->flags
|= FTRACE_FL_ENABLED
;
2088 if (flag
& FTRACE_FL_REGS
) {
2089 if (rec
->flags
& FTRACE_FL_REGS
)
2090 rec
->flags
|= FTRACE_FL_REGS_EN
;
2092 rec
->flags
&= ~FTRACE_FL_REGS_EN
;
2094 if (flag
& FTRACE_FL_TRAMP
) {
2095 if (rec
->flags
& FTRACE_FL_TRAMP
)
2096 rec
->flags
|= FTRACE_FL_TRAMP_EN
;
2098 rec
->flags
&= ~FTRACE_FL_TRAMP_EN
;
2103 * If this record is being updated from a nop, then
2104 * return UPDATE_MAKE_CALL.
2106 * return UPDATE_MODIFY_CALL to tell the caller to convert
2107 * from the save regs, to a non-save regs function or
2108 * vice versa, or from a trampoline call.
2110 if (flag
& FTRACE_FL_ENABLED
) {
2111 ftrace_bug_type
= FTRACE_BUG_CALL
;
2112 return FTRACE_UPDATE_MAKE_CALL
;
2115 ftrace_bug_type
= FTRACE_BUG_UPDATE
;
2116 return FTRACE_UPDATE_MODIFY_CALL
;
2120 /* If there's no more users, clear all flags */
2121 if (!ftrace_rec_count(rec
))
2125 * Just disable the record, but keep the ops TRAMP
2126 * and REGS states. The _EN flags must be disabled though.
2128 rec
->flags
&= ~(FTRACE_FL_ENABLED
| FTRACE_FL_TRAMP_EN
|
2132 ftrace_bug_type
= FTRACE_BUG_NOP
;
2133 return FTRACE_UPDATE_MAKE_NOP
;
2137 * ftrace_update_record, set a record that now is tracing or not
2138 * @rec: the record to update
2139 * @enable: set to 1 if the record is tracing, zero to force disable
2141 * The records that represent all functions that can be traced need
2142 * to be updated when tracing has been enabled.
2144 int ftrace_update_record(struct dyn_ftrace
*rec
, int enable
)
2146 return ftrace_check_record(rec
, enable
, 1);
2150 * ftrace_test_record, check if the record has been enabled or not
2151 * @rec: the record to test
2152 * @enable: set to 1 to check if enabled, 0 if it is disabled
2154 * The arch code may need to test if a record is already set to
2155 * tracing to determine how to modify the function code that it
2158 int ftrace_test_record(struct dyn_ftrace
*rec
, int enable
)
2160 return ftrace_check_record(rec
, enable
, 0);
2163 static struct ftrace_ops
*
2164 ftrace_find_tramp_ops_any(struct dyn_ftrace
*rec
)
2166 struct ftrace_ops
*op
;
2167 unsigned long ip
= rec
->ip
;
2169 do_for_each_ftrace_op(op
, ftrace_ops_list
) {
2171 if (!op
->trampoline
)
2174 if (hash_contains_ip(ip
, op
->func_hash
))
2176 } while_for_each_ftrace_op(op
);
2181 static struct ftrace_ops
*
2182 ftrace_find_tramp_ops_next(struct dyn_ftrace
*rec
,
2183 struct ftrace_ops
*op
)
2185 unsigned long ip
= rec
->ip
;
2187 while_for_each_ftrace_op(op
) {
2189 if (!op
->trampoline
)
2192 if (hash_contains_ip(ip
, op
->func_hash
))
2199 static struct ftrace_ops
*
2200 ftrace_find_tramp_ops_curr(struct dyn_ftrace
*rec
)
2202 struct ftrace_ops
*op
;
2203 unsigned long ip
= rec
->ip
;
2206 * Need to check removed ops first.
2207 * If they are being removed, and this rec has a tramp,
2208 * and this rec is in the ops list, then it would be the
2209 * one with the tramp.
2212 if (hash_contains_ip(ip
, &removed_ops
->old_hash
))
2217 * Need to find the current trampoline for a rec.
2218 * Now, a trampoline is only attached to a rec if there
2219 * was a single 'ops' attached to it. But this can be called
2220 * when we are adding another op to the rec or removing the
2221 * current one. Thus, if the op is being added, we can
2222 * ignore it because it hasn't attached itself to the rec
2225 * If an ops is being modified (hooking to different functions)
2226 * then we don't care about the new functions that are being
2227 * added, just the old ones (that are probably being removed).
2229 * If we are adding an ops to a function that already is using
2230 * a trampoline, it needs to be removed (trampolines are only
2231 * for single ops connected), then an ops that is not being
2232 * modified also needs to be checked.
2234 do_for_each_ftrace_op(op
, ftrace_ops_list
) {
2236 if (!op
->trampoline
)
2240 * If the ops is being added, it hasn't gotten to
2241 * the point to be removed from this tree yet.
2243 if (op
->flags
& FTRACE_OPS_FL_ADDING
)
2248 * If the ops is being modified and is in the old
2249 * hash, then it is probably being removed from this
2252 if ((op
->flags
& FTRACE_OPS_FL_MODIFYING
) &&
2253 hash_contains_ip(ip
, &op
->old_hash
))
2256 * If the ops is not being added or modified, and it's
2257 * in its normal filter hash, then this must be the one
2260 if (!(op
->flags
& FTRACE_OPS_FL_MODIFYING
) &&
2261 hash_contains_ip(ip
, op
->func_hash
))
2264 } while_for_each_ftrace_op(op
);
2269 static struct ftrace_ops
*
2270 ftrace_find_tramp_ops_new(struct dyn_ftrace
*rec
)
2272 struct ftrace_ops
*op
;
2273 unsigned long ip
= rec
->ip
;
2275 do_for_each_ftrace_op(op
, ftrace_ops_list
) {
2276 /* pass rec in as regs to have non-NULL val */
2277 if (hash_contains_ip(ip
, op
->func_hash
))
2279 } while_for_each_ftrace_op(op
);
2285 * ftrace_get_addr_new - Get the call address to set to
2286 * @rec: The ftrace record descriptor
2288 * If the record has the FTRACE_FL_REGS set, that means that it
2289 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2290 * is not not set, then it wants to convert to the normal callback.
2292 * Returns the address of the trampoline to set to
2294 unsigned long ftrace_get_addr_new(struct dyn_ftrace
*rec
)
2296 struct ftrace_ops
*ops
;
2298 /* Trampolines take precedence over regs */
2299 if (rec
->flags
& FTRACE_FL_TRAMP
) {
2300 ops
= ftrace_find_tramp_ops_new(rec
);
2301 if (FTRACE_WARN_ON(!ops
|| !ops
->trampoline
)) {
2302 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2303 (void *)rec
->ip
, (void *)rec
->ip
, rec
->flags
);
2304 /* Ftrace is shutting down, return anything */
2305 return (unsigned long)FTRACE_ADDR
;
2307 return ops
->trampoline
;
2310 if (rec
->flags
& FTRACE_FL_REGS
)
2311 return (unsigned long)FTRACE_REGS_ADDR
;
2313 return (unsigned long)FTRACE_ADDR
;
2317 * ftrace_get_addr_curr - Get the call address that is already there
2318 * @rec: The ftrace record descriptor
2320 * The FTRACE_FL_REGS_EN is set when the record already points to
2321 * a function that saves all the regs. Basically the '_EN' version
2322 * represents the current state of the function.
2324 * Returns the address of the trampoline that is currently being called
2326 unsigned long ftrace_get_addr_curr(struct dyn_ftrace
*rec
)
2328 struct ftrace_ops
*ops
;
2330 /* Trampolines take precedence over regs */
2331 if (rec
->flags
& FTRACE_FL_TRAMP_EN
) {
2332 ops
= ftrace_find_tramp_ops_curr(rec
);
2333 if (FTRACE_WARN_ON(!ops
)) {
2334 pr_warn("Bad trampoline accounting at: %p (%pS)\n",
2335 (void *)rec
->ip
, (void *)rec
->ip
);
2336 /* Ftrace is shutting down, return anything */
2337 return (unsigned long)FTRACE_ADDR
;
2339 return ops
->trampoline
;
2342 if (rec
->flags
& FTRACE_FL_REGS_EN
)
2343 return (unsigned long)FTRACE_REGS_ADDR
;
2345 return (unsigned long)FTRACE_ADDR
;
2349 __ftrace_replace_code(struct dyn_ftrace
*rec
, int enable
)
2351 unsigned long ftrace_old_addr
;
2352 unsigned long ftrace_addr
;
2355 ftrace_addr
= ftrace_get_addr_new(rec
);
2357 /* This needs to be done before we call ftrace_update_record */
2358 ftrace_old_addr
= ftrace_get_addr_curr(rec
);
2360 ret
= ftrace_update_record(rec
, enable
);
2362 ftrace_bug_type
= FTRACE_BUG_UNKNOWN
;
2365 case FTRACE_UPDATE_IGNORE
:
2368 case FTRACE_UPDATE_MAKE_CALL
:
2369 ftrace_bug_type
= FTRACE_BUG_CALL
;
2370 return ftrace_make_call(rec
, ftrace_addr
);
2372 case FTRACE_UPDATE_MAKE_NOP
:
2373 ftrace_bug_type
= FTRACE_BUG_NOP
;
2374 return ftrace_make_nop(NULL
, rec
, ftrace_old_addr
);
2376 case FTRACE_UPDATE_MODIFY_CALL
:
2377 ftrace_bug_type
= FTRACE_BUG_UPDATE
;
2378 return ftrace_modify_call(rec
, ftrace_old_addr
, ftrace_addr
);
2381 return -1; /* unknow ftrace bug */
2384 void __weak
ftrace_replace_code(int enable
)
2386 struct dyn_ftrace
*rec
;
2387 struct ftrace_page
*pg
;
2390 if (unlikely(ftrace_disabled
))
2393 do_for_each_ftrace_rec(pg
, rec
) {
2394 failed
= __ftrace_replace_code(rec
, enable
);
2396 ftrace_bug(failed
, rec
);
2397 /* Stop processing */
2400 } while_for_each_ftrace_rec();
2403 struct ftrace_rec_iter
{
2404 struct ftrace_page
*pg
;
2409 * ftrace_rec_iter_start, start up iterating over traced functions
2411 * Returns an iterator handle that is used to iterate over all
2412 * the records that represent address locations where functions
2415 * May return NULL if no records are available.
2417 struct ftrace_rec_iter
*ftrace_rec_iter_start(void)
2420 * We only use a single iterator.
2421 * Protected by the ftrace_lock mutex.
2423 static struct ftrace_rec_iter ftrace_rec_iter
;
2424 struct ftrace_rec_iter
*iter
= &ftrace_rec_iter
;
2426 iter
->pg
= ftrace_pages_start
;
2429 /* Could have empty pages */
2430 while (iter
->pg
&& !iter
->pg
->index
)
2431 iter
->pg
= iter
->pg
->next
;
2440 * ftrace_rec_iter_next, get the next record to process.
2441 * @iter: The handle to the iterator.
2443 * Returns the next iterator after the given iterator @iter.
2445 struct ftrace_rec_iter
*ftrace_rec_iter_next(struct ftrace_rec_iter
*iter
)
2449 if (iter
->index
>= iter
->pg
->index
) {
2450 iter
->pg
= iter
->pg
->next
;
2453 /* Could have empty pages */
2454 while (iter
->pg
&& !iter
->pg
->index
)
2455 iter
->pg
= iter
->pg
->next
;
2465 * ftrace_rec_iter_record, get the record at the iterator location
2466 * @iter: The current iterator location
2468 * Returns the record that the current @iter is at.
2470 struct dyn_ftrace
*ftrace_rec_iter_record(struct ftrace_rec_iter
*iter
)
2472 return &iter
->pg
->records
[iter
->index
];
2476 ftrace_code_disable(struct module
*mod
, struct dyn_ftrace
*rec
)
2480 if (unlikely(ftrace_disabled
))
2483 ret
= ftrace_make_nop(mod
, rec
, MCOUNT_ADDR
);
2485 ftrace_bug_type
= FTRACE_BUG_INIT
;
2486 ftrace_bug(ret
, rec
);
2493 * archs can override this function if they must do something
2494 * before the modifying code is performed.
2496 int __weak
ftrace_arch_code_modify_prepare(void)
2502 * archs can override this function if they must do something
2503 * after the modifying code is performed.
2505 int __weak
ftrace_arch_code_modify_post_process(void)
2510 void ftrace_modify_all_code(int command
)
2512 int update
= command
& FTRACE_UPDATE_TRACE_FUNC
;
2516 * If the ftrace_caller calls a ftrace_ops func directly,
2517 * we need to make sure that it only traces functions it
2518 * expects to trace. When doing the switch of functions,
2519 * we need to update to the ftrace_ops_list_func first
2520 * before the transition between old and new calls are set,
2521 * as the ftrace_ops_list_func will check the ops hashes
2522 * to make sure the ops are having the right functions
2526 err
= ftrace_update_ftrace_func(ftrace_ops_list_func
);
2527 if (FTRACE_WARN_ON(err
))
2531 if (command
& FTRACE_UPDATE_CALLS
)
2532 ftrace_replace_code(1);
2533 else if (command
& FTRACE_DISABLE_CALLS
)
2534 ftrace_replace_code(0);
2536 if (update
&& ftrace_trace_function
!= ftrace_ops_list_func
) {
2537 function_trace_op
= set_function_trace_op
;
2539 /* If irqs are disabled, we are in stop machine */
2540 if (!irqs_disabled())
2541 smp_call_function(ftrace_sync_ipi
, NULL
, 1);
2542 err
= ftrace_update_ftrace_func(ftrace_trace_function
);
2543 if (FTRACE_WARN_ON(err
))
2547 if (command
& FTRACE_START_FUNC_RET
)
2548 err
= ftrace_enable_ftrace_graph_caller();
2549 else if (command
& FTRACE_STOP_FUNC_RET
)
2550 err
= ftrace_disable_ftrace_graph_caller();
2551 FTRACE_WARN_ON(err
);
2554 static int __ftrace_modify_code(void *data
)
2556 int *command
= data
;
2558 ftrace_modify_all_code(*command
);
2564 * ftrace_run_stop_machine, go back to the stop machine method
2565 * @command: The command to tell ftrace what to do
2567 * If an arch needs to fall back to the stop machine method, the
2568 * it can call this function.
2570 void ftrace_run_stop_machine(int command
)
2572 stop_machine(__ftrace_modify_code
, &command
, NULL
);
2576 * arch_ftrace_update_code, modify the code to trace or not trace
2577 * @command: The command that needs to be done
2579 * Archs can override this function if it does not need to
2580 * run stop_machine() to modify code.
2582 void __weak
arch_ftrace_update_code(int command
)
2584 ftrace_run_stop_machine(command
);
2587 static void ftrace_run_update_code(int command
)
2591 ret
= ftrace_arch_code_modify_prepare();
2592 FTRACE_WARN_ON(ret
);
2597 * By default we use stop_machine() to modify the code.
2598 * But archs can do what ever they want as long as it
2599 * is safe. The stop_machine() is the safest, but also
2600 * produces the most overhead.
2602 arch_ftrace_update_code(command
);
2604 ret
= ftrace_arch_code_modify_post_process();
2605 FTRACE_WARN_ON(ret
);
2608 static void ftrace_run_modify_code(struct ftrace_ops
*ops
, int command
,
2609 struct ftrace_ops_hash
*old_hash
)
2611 ops
->flags
|= FTRACE_OPS_FL_MODIFYING
;
2612 ops
->old_hash
.filter_hash
= old_hash
->filter_hash
;
2613 ops
->old_hash
.notrace_hash
= old_hash
->notrace_hash
;
2614 ftrace_run_update_code(command
);
2615 ops
->old_hash
.filter_hash
= NULL
;
2616 ops
->old_hash
.notrace_hash
= NULL
;
2617 ops
->flags
&= ~FTRACE_OPS_FL_MODIFYING
;
2620 static ftrace_func_t saved_ftrace_func
;
2621 static int ftrace_start_up
;
2623 void __weak
arch_ftrace_trampoline_free(struct ftrace_ops
*ops
)
2627 static void per_cpu_ops_free(struct ftrace_ops
*ops
)
2629 free_percpu(ops
->disabled
);
2632 static void ftrace_startup_enable(int command
)
2634 if (saved_ftrace_func
!= ftrace_trace_function
) {
2635 saved_ftrace_func
= ftrace_trace_function
;
2636 command
|= FTRACE_UPDATE_TRACE_FUNC
;
2639 if (!command
|| !ftrace_enabled
)
2642 ftrace_run_update_code(command
);
2645 static void ftrace_startup_all(int command
)
2647 update_all_ops
= true;
2648 ftrace_startup_enable(command
);
2649 update_all_ops
= false;
2652 static int ftrace_startup(struct ftrace_ops
*ops
, int command
)
2656 if (unlikely(ftrace_disabled
))
2659 ret
= __register_ftrace_function(ops
);
2666 * Note that ftrace probes uses this to start up
2667 * and modify functions it will probe. But we still
2668 * set the ADDING flag for modification, as probes
2669 * do not have trampolines. If they add them in the
2670 * future, then the probes will need to distinguish
2671 * between adding and updating probes.
2673 ops
->flags
|= FTRACE_OPS_FL_ENABLED
| FTRACE_OPS_FL_ADDING
;
2675 ret
= ftrace_hash_ipmodify_enable(ops
);
2677 /* Rollback registration process */
2678 __unregister_ftrace_function(ops
);
2680 ops
->flags
&= ~FTRACE_OPS_FL_ENABLED
;
2684 if (ftrace_hash_rec_enable(ops
, 1))
2685 command
|= FTRACE_UPDATE_CALLS
;
2687 ftrace_startup_enable(command
);
2689 ops
->flags
&= ~FTRACE_OPS_FL_ADDING
;
2694 static int ftrace_shutdown(struct ftrace_ops
*ops
, int command
)
2698 if (unlikely(ftrace_disabled
))
2701 ret
= __unregister_ftrace_function(ops
);
2707 * Just warn in case of unbalance, no need to kill ftrace, it's not
2708 * critical but the ftrace_call callers may be never nopped again after
2709 * further ftrace uses.
2711 WARN_ON_ONCE(ftrace_start_up
< 0);
2713 /* Disabling ipmodify never fails */
2714 ftrace_hash_ipmodify_disable(ops
);
2716 if (ftrace_hash_rec_disable(ops
, 1))
2717 command
|= FTRACE_UPDATE_CALLS
;
2719 ops
->flags
&= ~FTRACE_OPS_FL_ENABLED
;
2721 if (saved_ftrace_func
!= ftrace_trace_function
) {
2722 saved_ftrace_func
= ftrace_trace_function
;
2723 command
|= FTRACE_UPDATE_TRACE_FUNC
;
2726 if (!command
|| !ftrace_enabled
) {
2728 * If these are per_cpu ops, they still need their
2729 * per_cpu field freed. Since, function tracing is
2730 * not currently active, we can just free them
2731 * without synchronizing all CPUs.
2733 if (ops
->flags
& FTRACE_OPS_FL_PER_CPU
)
2734 per_cpu_ops_free(ops
);
2739 * If the ops uses a trampoline, then it needs to be
2740 * tested first on update.
2742 ops
->flags
|= FTRACE_OPS_FL_REMOVING
;
2745 /* The trampoline logic checks the old hashes */
2746 ops
->old_hash
.filter_hash
= ops
->func_hash
->filter_hash
;
2747 ops
->old_hash
.notrace_hash
= ops
->func_hash
->notrace_hash
;
2749 ftrace_run_update_code(command
);
2752 * If there's no more ops registered with ftrace, run a
2753 * sanity check to make sure all rec flags are cleared.
2755 if (ftrace_ops_list
== &ftrace_list_end
) {
2756 struct ftrace_page
*pg
;
2757 struct dyn_ftrace
*rec
;
2759 do_for_each_ftrace_rec(pg
, rec
) {
2760 if (FTRACE_WARN_ON_ONCE(rec
->flags
))
2761 pr_warn(" %pS flags:%lx\n",
2762 (void *)rec
->ip
, rec
->flags
);
2763 } while_for_each_ftrace_rec();
2766 ops
->old_hash
.filter_hash
= NULL
;
2767 ops
->old_hash
.notrace_hash
= NULL
;
2770 ops
->flags
&= ~FTRACE_OPS_FL_REMOVING
;
2773 * Dynamic ops may be freed, we must make sure that all
2774 * callers are done before leaving this function.
2775 * The same goes for freeing the per_cpu data of the per_cpu
2778 * Again, normal synchronize_sched() is not good enough.
2779 * We need to do a hard force of sched synchronization.
2780 * This is because we use preempt_disable() to do RCU, but
2781 * the function tracers can be called where RCU is not watching
2782 * (like before user_exit()). We can not rely on the RCU
2783 * infrastructure to do the synchronization, thus we must do it
2786 if (ops
->flags
& (FTRACE_OPS_FL_DYNAMIC
| FTRACE_OPS_FL_PER_CPU
)) {
2787 schedule_on_each_cpu(ftrace_sync
);
2789 arch_ftrace_trampoline_free(ops
);
2791 if (ops
->flags
& FTRACE_OPS_FL_PER_CPU
)
2792 per_cpu_ops_free(ops
);
2798 static void ftrace_startup_sysctl(void)
2802 if (unlikely(ftrace_disabled
))
2805 /* Force update next time */
2806 saved_ftrace_func
= NULL
;
2807 /* ftrace_start_up is true if we want ftrace running */
2808 if (ftrace_start_up
) {
2809 command
= FTRACE_UPDATE_CALLS
;
2810 if (ftrace_graph_active
)
2811 command
|= FTRACE_START_FUNC_RET
;
2812 ftrace_startup_enable(command
);
2816 static void ftrace_shutdown_sysctl(void)
2820 if (unlikely(ftrace_disabled
))
2823 /* ftrace_start_up is true if ftrace is running */
2824 if (ftrace_start_up
) {
2825 command
= FTRACE_DISABLE_CALLS
;
2826 if (ftrace_graph_active
)
2827 command
|= FTRACE_STOP_FUNC_RET
;
2828 ftrace_run_update_code(command
);
2832 static cycle_t ftrace_update_time
;
2833 unsigned long ftrace_update_tot_cnt
;
2835 static inline int ops_traces_mod(struct ftrace_ops
*ops
)
2838 * Filter_hash being empty will default to trace module.
2839 * But notrace hash requires a test of individual module functions.
2841 return ftrace_hash_empty(ops
->func_hash
->filter_hash
) &&
2842 ftrace_hash_empty(ops
->func_hash
->notrace_hash
);
2846 * Check if the current ops references the record.
2848 * If the ops traces all functions, then it was already accounted for.
2849 * If the ops does not trace the current record function, skip it.
2850 * If the ops ignores the function via notrace filter, skip it.
2853 ops_references_rec(struct ftrace_ops
*ops
, struct dyn_ftrace
*rec
)
2855 /* If ops isn't enabled, ignore it */
2856 if (!(ops
->flags
& FTRACE_OPS_FL_ENABLED
))
2859 /* If ops traces all then it includes this function */
2860 if (ops_traces_mod(ops
))
2863 /* The function must be in the filter */
2864 if (!ftrace_hash_empty(ops
->func_hash
->filter_hash
) &&
2865 !ftrace_lookup_ip(ops
->func_hash
->filter_hash
, rec
->ip
))
2868 /* If in notrace hash, we ignore it too */
2869 if (ftrace_lookup_ip(ops
->func_hash
->notrace_hash
, rec
->ip
))
2875 static int ftrace_update_code(struct module
*mod
, struct ftrace_page
*new_pgs
)
2877 struct ftrace_page
*pg
;
2878 struct dyn_ftrace
*p
;
2879 cycle_t start
, stop
;
2880 unsigned long update_cnt
= 0;
2881 unsigned long rec_flags
= 0;
2884 start
= ftrace_now(raw_smp_processor_id());
2887 * When a module is loaded, this function is called to convert
2888 * the calls to mcount in its text to nops, and also to create
2889 * an entry in the ftrace data. Now, if ftrace is activated
2890 * after this call, but before the module sets its text to
2891 * read-only, the modification of enabling ftrace can fail if
2892 * the read-only is done while ftrace is converting the calls.
2893 * To prevent this, the module's records are set as disabled
2894 * and will be enabled after the call to set the module's text
2898 rec_flags
|= FTRACE_FL_DISABLED
;
2900 for (pg
= new_pgs
; pg
; pg
= pg
->next
) {
2902 for (i
= 0; i
< pg
->index
; i
++) {
2904 /* If something went wrong, bail without enabling anything */
2905 if (unlikely(ftrace_disabled
))
2908 p
= &pg
->records
[i
];
2909 p
->flags
= rec_flags
;
2912 * Do the initial record conversion from mcount jump
2913 * to the NOP instructions.
2915 if (!ftrace_code_disable(mod
, p
))
2922 stop
= ftrace_now(raw_smp_processor_id());
2923 ftrace_update_time
= stop
- start
;
2924 ftrace_update_tot_cnt
+= update_cnt
;
2929 static int ftrace_allocate_records(struct ftrace_page
*pg
, int count
)
2934 if (WARN_ON(!count
))
2937 order
= get_count_order(DIV_ROUND_UP(count
, ENTRIES_PER_PAGE
));
2940 * We want to fill as much as possible. No more than a page
2943 while ((PAGE_SIZE
<< order
) / ENTRY_SIZE
>= count
+ ENTRIES_PER_PAGE
)
2947 pg
->records
= (void *)__get_free_pages(GFP_KERNEL
| __GFP_ZERO
, order
);
2950 /* if we can't allocate this size, try something smaller */
2957 cnt
= (PAGE_SIZE
<< order
) / ENTRY_SIZE
;
2966 static struct ftrace_page
*
2967 ftrace_allocate_pages(unsigned long num_to_init
)
2969 struct ftrace_page
*start_pg
;
2970 struct ftrace_page
*pg
;
2977 start_pg
= pg
= kzalloc(sizeof(*pg
), GFP_KERNEL
);
2982 * Try to allocate as much as possible in one continues
2983 * location that fills in all of the space. We want to
2984 * waste as little space as possible.
2987 cnt
= ftrace_allocate_records(pg
, num_to_init
);
2995 pg
->next
= kzalloc(sizeof(*pg
), GFP_KERNEL
);
3007 order
= get_count_order(pg
->size
/ ENTRIES_PER_PAGE
);
3008 free_pages((unsigned long)pg
->records
, order
);
3009 start_pg
= pg
->next
;
3013 pr_info("ftrace: FAILED to allocate memory for functions\n");
3017 #define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
3019 struct ftrace_iterator
{
3022 struct ftrace_page
*pg
;
3023 struct dyn_ftrace
*func
;
3024 struct ftrace_func_probe
*probe
;
3025 struct trace_parser parser
;
3026 struct ftrace_hash
*hash
;
3027 struct ftrace_ops
*ops
;
3034 t_hash_next(struct seq_file
*m
, loff_t
*pos
)
3036 struct ftrace_iterator
*iter
= m
->private;
3037 struct hlist_node
*hnd
= NULL
;
3038 struct hlist_head
*hhd
;
3044 hnd
= &iter
->probe
->node
;
3046 if (iter
->hidx
>= FTRACE_FUNC_HASHSIZE
)
3049 hhd
= &ftrace_func_hash
[iter
->hidx
];
3051 if (hlist_empty(hhd
)) {
3067 if (WARN_ON_ONCE(!hnd
))
3070 iter
->probe
= hlist_entry(hnd
, struct ftrace_func_probe
, node
);
3075 static void *t_hash_start(struct seq_file
*m
, loff_t
*pos
)
3077 struct ftrace_iterator
*iter
= m
->private;
3081 if (!(iter
->flags
& FTRACE_ITER_DO_HASH
))
3084 if (iter
->func_pos
> *pos
)
3088 for (l
= 0; l
<= (*pos
- iter
->func_pos
); ) {
3089 p
= t_hash_next(m
, &l
);
3096 /* Only set this if we have an item */
3097 iter
->flags
|= FTRACE_ITER_HASH
;
3103 t_hash_show(struct seq_file
*m
, struct ftrace_iterator
*iter
)
3105 struct ftrace_func_probe
*rec
;
3108 if (WARN_ON_ONCE(!rec
))
3111 if (rec
->ops
->print
)
3112 return rec
->ops
->print(m
, rec
->ip
, rec
->ops
, rec
->data
);
3114 seq_printf(m
, "%ps:%ps", (void *)rec
->ip
, (void *)rec
->ops
->func
);
3117 seq_printf(m
, ":%p", rec
->data
);
3124 t_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
3126 struct ftrace_iterator
*iter
= m
->private;
3127 struct ftrace_ops
*ops
= iter
->ops
;
3128 struct dyn_ftrace
*rec
= NULL
;
3130 if (unlikely(ftrace_disabled
))
3133 if (iter
->flags
& FTRACE_ITER_HASH
)
3134 return t_hash_next(m
, pos
);
3137 iter
->pos
= iter
->func_pos
= *pos
;
3139 if (iter
->flags
& FTRACE_ITER_PRINTALL
)
3140 return t_hash_start(m
, pos
);
3143 if (iter
->idx
>= iter
->pg
->index
) {
3144 if (iter
->pg
->next
) {
3145 iter
->pg
= iter
->pg
->next
;
3150 rec
= &iter
->pg
->records
[iter
->idx
++];
3151 if (((iter
->flags
& FTRACE_ITER_FILTER
) &&
3152 !(ftrace_lookup_ip(ops
->func_hash
->filter_hash
, rec
->ip
))) ||
3154 ((iter
->flags
& FTRACE_ITER_NOTRACE
) &&
3155 !ftrace_lookup_ip(ops
->func_hash
->notrace_hash
, rec
->ip
)) ||
3157 ((iter
->flags
& FTRACE_ITER_ENABLED
) &&
3158 !(rec
->flags
& FTRACE_FL_ENABLED
))) {
3166 return t_hash_start(m
, pos
);
3173 static void reset_iter_read(struct ftrace_iterator
*iter
)
3177 iter
->flags
&= ~(FTRACE_ITER_PRINTALL
| FTRACE_ITER_HASH
);
3180 static void *t_start(struct seq_file
*m
, loff_t
*pos
)
3182 struct ftrace_iterator
*iter
= m
->private;
3183 struct ftrace_ops
*ops
= iter
->ops
;
3187 mutex_lock(&ftrace_lock
);
3189 if (unlikely(ftrace_disabled
))
3193 * If an lseek was done, then reset and start from beginning.
3195 if (*pos
< iter
->pos
)
3196 reset_iter_read(iter
);
3199 * For set_ftrace_filter reading, if we have the filter
3200 * off, we can short cut and just print out that all
3201 * functions are enabled.
3203 if ((iter
->flags
& FTRACE_ITER_FILTER
&&
3204 ftrace_hash_empty(ops
->func_hash
->filter_hash
)) ||
3205 (iter
->flags
& FTRACE_ITER_NOTRACE
&&
3206 ftrace_hash_empty(ops
->func_hash
->notrace_hash
))) {
3208 return t_hash_start(m
, pos
);
3209 iter
->flags
|= FTRACE_ITER_PRINTALL
;
3210 /* reset in case of seek/pread */
3211 iter
->flags
&= ~FTRACE_ITER_HASH
;
3215 if (iter
->flags
& FTRACE_ITER_HASH
)
3216 return t_hash_start(m
, pos
);
3219 * Unfortunately, we need to restart at ftrace_pages_start
3220 * every time we let go of the ftrace_mutex. This is because
3221 * those pointers can change without the lock.
3223 iter
->pg
= ftrace_pages_start
;
3225 for (l
= 0; l
<= *pos
; ) {
3226 p
= t_next(m
, p
, &l
);
3232 return t_hash_start(m
, pos
);
3237 static void t_stop(struct seq_file
*m
, void *p
)
3239 mutex_unlock(&ftrace_lock
);
3243 arch_ftrace_trampoline_func(struct ftrace_ops
*ops
, struct dyn_ftrace
*rec
)
3248 static void add_trampoline_func(struct seq_file
*m
, struct ftrace_ops
*ops
,
3249 struct dyn_ftrace
*rec
)
3253 ptr
= arch_ftrace_trampoline_func(ops
, rec
);
3255 seq_printf(m
, " ->%pS", ptr
);
3258 static int t_show(struct seq_file
*m
, void *v
)
3260 struct ftrace_iterator
*iter
= m
->private;
3261 struct dyn_ftrace
*rec
;
3263 if (iter
->flags
& FTRACE_ITER_HASH
)
3264 return t_hash_show(m
, iter
);
3266 if (iter
->flags
& FTRACE_ITER_PRINTALL
) {
3267 if (iter
->flags
& FTRACE_ITER_NOTRACE
)
3268 seq_puts(m
, "#### no functions disabled ####\n");
3270 seq_puts(m
, "#### all functions enabled ####\n");
3279 seq_printf(m
, "%ps", (void *)rec
->ip
);
3280 if (iter
->flags
& FTRACE_ITER_ENABLED
) {
3281 struct ftrace_ops
*ops
;
3283 seq_printf(m
, " (%ld)%s%s",
3284 ftrace_rec_count(rec
),
3285 rec
->flags
& FTRACE_FL_REGS
? " R" : " ",
3286 rec
->flags
& FTRACE_FL_IPMODIFY
? " I" : " ");
3287 if (rec
->flags
& FTRACE_FL_TRAMP_EN
) {
3288 ops
= ftrace_find_tramp_ops_any(rec
);
3291 seq_printf(m
, "\ttramp: %pS (%pS)",
3292 (void *)ops
->trampoline
,
3294 add_trampoline_func(m
, ops
, rec
);
3295 ops
= ftrace_find_tramp_ops_next(rec
, ops
);
3298 seq_puts(m
, "\ttramp: ERROR!");
3300 add_trampoline_func(m
, NULL
, rec
);
3309 static const struct seq_operations show_ftrace_seq_ops
= {
3317 ftrace_avail_open(struct inode
*inode
, struct file
*file
)
3319 struct ftrace_iterator
*iter
;
3321 if (unlikely(ftrace_disabled
))
3324 iter
= __seq_open_private(file
, &show_ftrace_seq_ops
, sizeof(*iter
));
3326 iter
->pg
= ftrace_pages_start
;
3327 iter
->ops
= &global_ops
;
3330 return iter
? 0 : -ENOMEM
;
3334 ftrace_enabled_open(struct inode
*inode
, struct file
*file
)
3336 struct ftrace_iterator
*iter
;
3338 iter
= __seq_open_private(file
, &show_ftrace_seq_ops
, sizeof(*iter
));
3340 iter
->pg
= ftrace_pages_start
;
3341 iter
->flags
= FTRACE_ITER_ENABLED
;
3342 iter
->ops
= &global_ops
;
3345 return iter
? 0 : -ENOMEM
;
3349 * ftrace_regex_open - initialize function tracer filter files
3350 * @ops: The ftrace_ops that hold the hash filters
3351 * @flag: The type of filter to process
3352 * @inode: The inode, usually passed in to your open routine
3353 * @file: The file, usually passed in to your open routine
3355 * ftrace_regex_open() initializes the filter files for the
3356 * @ops. Depending on @flag it may process the filter hash or
3357 * the notrace hash of @ops. With this called from the open
3358 * routine, you can use ftrace_filter_write() for the write
3359 * routine if @flag has FTRACE_ITER_FILTER set, or
3360 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
3361 * tracing_lseek() should be used as the lseek routine, and
3362 * release must call ftrace_regex_release().
3365 ftrace_regex_open(struct ftrace_ops
*ops
, int flag
,
3366 struct inode
*inode
, struct file
*file
)
3368 struct ftrace_iterator
*iter
;
3369 struct ftrace_hash
*hash
;
3372 ftrace_ops_init(ops
);
3374 if (unlikely(ftrace_disabled
))
3377 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
3381 if (trace_parser_get_init(&iter
->parser
, FTRACE_BUFF_MAX
)) {
3389 mutex_lock(&ops
->func_hash
->regex_lock
);
3391 if (flag
& FTRACE_ITER_NOTRACE
)
3392 hash
= ops
->func_hash
->notrace_hash
;
3394 hash
= ops
->func_hash
->filter_hash
;
3396 if (file
->f_mode
& FMODE_WRITE
) {
3397 const int size_bits
= FTRACE_HASH_DEFAULT_BITS
;
3399 if (file
->f_flags
& O_TRUNC
)
3400 iter
->hash
= alloc_ftrace_hash(size_bits
);
3402 iter
->hash
= alloc_and_copy_ftrace_hash(size_bits
, hash
);
3405 trace_parser_put(&iter
->parser
);
3412 if (file
->f_mode
& FMODE_READ
) {
3413 iter
->pg
= ftrace_pages_start
;
3415 ret
= seq_open(file
, &show_ftrace_seq_ops
);
3417 struct seq_file
*m
= file
->private_data
;
3421 free_ftrace_hash(iter
->hash
);
3422 trace_parser_put(&iter
->parser
);
3426 file
->private_data
= iter
;
3429 mutex_unlock(&ops
->func_hash
->regex_lock
);
3435 ftrace_filter_open(struct inode
*inode
, struct file
*file
)
3437 struct ftrace_ops
*ops
= inode
->i_private
;
3439 return ftrace_regex_open(ops
,
3440 FTRACE_ITER_FILTER
| FTRACE_ITER_DO_HASH
,
3445 ftrace_notrace_open(struct inode
*inode
, struct file
*file
)
3447 struct ftrace_ops
*ops
= inode
->i_private
;
3449 return ftrace_regex_open(ops
, FTRACE_ITER_NOTRACE
,
3453 /* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */
3454 struct ftrace_glob
{
3461 * If symbols in an architecture don't correspond exactly to the user-visible
3462 * name of what they represent, it is possible to define this function to
3463 * perform the necessary adjustments.
3465 char * __weak
arch_ftrace_match_adjust(char *str
, const char *search
)
3470 static int ftrace_match(char *str
, struct ftrace_glob
*g
)
3475 str
= arch_ftrace_match_adjust(str
, g
->search
);
3479 if (strcmp(str
, g
->search
) == 0)
3482 case MATCH_FRONT_ONLY
:
3483 if (strncmp(str
, g
->search
, g
->len
) == 0)
3486 case MATCH_MIDDLE_ONLY
:
3487 if (strstr(str
, g
->search
))
3490 case MATCH_END_ONLY
:
3492 if (slen
>= g
->len
&&
3493 memcmp(str
+ slen
- g
->len
, g
->search
, g
->len
) == 0)
3502 enter_record(struct ftrace_hash
*hash
, struct dyn_ftrace
*rec
, int clear_filter
)
3504 struct ftrace_func_entry
*entry
;
3507 entry
= ftrace_lookup_ip(hash
, rec
->ip
);
3509 /* Do nothing if it doesn't exist */
3513 free_hash_entry(hash
, entry
);
3515 /* Do nothing if it exists */
3519 ret
= add_hash_entry(hash
, rec
->ip
);
3525 ftrace_match_record(struct dyn_ftrace
*rec
, struct ftrace_glob
*func_g
,
3526 struct ftrace_glob
*mod_g
, int exclude_mod
)
3528 char str
[KSYM_SYMBOL_LEN
];
3531 kallsyms_lookup(rec
->ip
, NULL
, NULL
, &modname
, str
);
3534 int mod_matches
= (modname
) ? ftrace_match(modname
, mod_g
) : 0;
3536 /* blank module name to match all modules */
3538 /* blank module globbing: modname xor exclude_mod */
3539 if ((!exclude_mod
) != (!modname
))
3544 /* not matching the module */
3545 if (!modname
|| !mod_matches
) {
3552 if (mod_matches
&& exclude_mod
)
3556 /* blank search means to match all funcs in the mod */
3561 return ftrace_match(str
, func_g
);
3565 match_records(struct ftrace_hash
*hash
, char *func
, int len
, char *mod
)
3567 struct ftrace_page
*pg
;
3568 struct dyn_ftrace
*rec
;
3569 struct ftrace_glob func_g
= { .type
= MATCH_FULL
};
3570 struct ftrace_glob mod_g
= { .type
= MATCH_FULL
};
3571 struct ftrace_glob
*mod_match
= (mod
) ? &mod_g
: NULL
;
3572 int exclude_mod
= 0;
3578 func_g
.type
= filter_parse_regex(func
, len
, &func_g
.search
,
3580 func_g
.len
= strlen(func_g
.search
);
3584 mod_g
.type
= filter_parse_regex(mod
, strlen(mod
),
3585 &mod_g
.search
, &exclude_mod
);
3586 mod_g
.len
= strlen(mod_g
.search
);
3589 mutex_lock(&ftrace_lock
);
3591 if (unlikely(ftrace_disabled
))
3594 do_for_each_ftrace_rec(pg
, rec
) {
3595 if (ftrace_match_record(rec
, &func_g
, mod_match
, exclude_mod
)) {
3596 ret
= enter_record(hash
, rec
, clear_filter
);
3603 } while_for_each_ftrace_rec();
3605 mutex_unlock(&ftrace_lock
);
3611 ftrace_match_records(struct ftrace_hash
*hash
, char *buff
, int len
)
3613 return match_records(hash
, buff
, len
, NULL
);
3618 * We register the module command as a template to show others how
3619 * to register the a command as well.
3623 ftrace_mod_callback(struct ftrace_hash
*hash
,
3624 char *func
, char *cmd
, char *module
, int enable
)
3629 * cmd == 'mod' because we only registered this func
3630 * for the 'mod' ftrace_func_command.
3631 * But if you register one func with multiple commands,
3632 * you can tell which command was used by the cmd
3635 ret
= match_records(hash
, func
, strlen(func
), module
);
3643 static struct ftrace_func_command ftrace_mod_cmd
= {
3645 .func
= ftrace_mod_callback
,
3648 static int __init
ftrace_mod_cmd_init(void)
3650 return register_ftrace_command(&ftrace_mod_cmd
);
3652 core_initcall(ftrace_mod_cmd_init
);
3654 static void function_trace_probe_call(unsigned long ip
, unsigned long parent_ip
,
3655 struct ftrace_ops
*op
, struct pt_regs
*pt_regs
)
3657 struct ftrace_func_probe
*entry
;
3658 struct hlist_head
*hhd
;
3661 key
= hash_long(ip
, FTRACE_HASH_BITS
);
3663 hhd
= &ftrace_func_hash
[key
];
3665 if (hlist_empty(hhd
))
3669 * Disable preemption for these calls to prevent a RCU grace
3670 * period. This syncs the hash iteration and freeing of items
3671 * on the hash. rcu_read_lock is too dangerous here.
3673 preempt_disable_notrace();
3674 hlist_for_each_entry_rcu_notrace(entry
, hhd
, node
) {
3675 if (entry
->ip
== ip
)
3676 entry
->ops
->func(ip
, parent_ip
, &entry
->data
);
3678 preempt_enable_notrace();
3681 static struct ftrace_ops trace_probe_ops __read_mostly
=
3683 .func
= function_trace_probe_call
,
3684 .flags
= FTRACE_OPS_FL_INITIALIZED
,
3685 INIT_OPS_HASH(trace_probe_ops
)
3688 static int ftrace_probe_registered
;
3690 static void __enable_ftrace_function_probe(struct ftrace_ops_hash
*old_hash
)
3695 if (ftrace_probe_registered
) {
3696 /* still need to update the function call sites */
3698 ftrace_run_modify_code(&trace_probe_ops
, FTRACE_UPDATE_CALLS
,
3703 for (i
= 0; i
< FTRACE_FUNC_HASHSIZE
; i
++) {
3704 struct hlist_head
*hhd
= &ftrace_func_hash
[i
];
3708 /* Nothing registered? */
3709 if (i
== FTRACE_FUNC_HASHSIZE
)
3712 ret
= ftrace_startup(&trace_probe_ops
, 0);
3714 ftrace_probe_registered
= 1;
3717 static void __disable_ftrace_function_probe(void)
3721 if (!ftrace_probe_registered
)
3724 for (i
= 0; i
< FTRACE_FUNC_HASHSIZE
; i
++) {
3725 struct hlist_head
*hhd
= &ftrace_func_hash
[i
];
3730 /* no more funcs left */
3731 ftrace_shutdown(&trace_probe_ops
, 0);
3733 ftrace_probe_registered
= 0;
3737 static void ftrace_free_entry(struct ftrace_func_probe
*entry
)
3739 if (entry
->ops
->free
)
3740 entry
->ops
->free(entry
->ops
, entry
->ip
, &entry
->data
);
3745 register_ftrace_function_probe(char *glob
, struct ftrace_probe_ops
*ops
,
3748 struct ftrace_ops_hash old_hash_ops
;
3749 struct ftrace_func_probe
*entry
;
3750 struct ftrace_glob func_g
;
3751 struct ftrace_hash
**orig_hash
= &trace_probe_ops
.func_hash
->filter_hash
;
3752 struct ftrace_hash
*old_hash
= *orig_hash
;
3753 struct ftrace_hash
*hash
;
3754 struct ftrace_page
*pg
;
3755 struct dyn_ftrace
*rec
;
3761 func_g
.type
= filter_parse_regex(glob
, strlen(glob
),
3762 &func_g
.search
, ¬);
3763 func_g
.len
= strlen(func_g
.search
);
3765 /* we do not support '!' for function probes */
3769 mutex_lock(&trace_probe_ops
.func_hash
->regex_lock
);
3771 old_hash_ops
.filter_hash
= old_hash
;
3772 /* Probes only have filters */
3773 old_hash_ops
.notrace_hash
= NULL
;
3775 hash
= alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS
, old_hash
);
3781 if (unlikely(ftrace_disabled
)) {
3786 mutex_lock(&ftrace_lock
);
3788 do_for_each_ftrace_rec(pg
, rec
) {
3790 if (!ftrace_match_record(rec
, &func_g
, NULL
, 0))
3793 entry
= kmalloc(sizeof(*entry
), GFP_KERNEL
);
3795 /* If we did not process any, then return error */
3806 * The caller might want to do something special
3807 * for each function we find. We call the callback
3808 * to give the caller an opportunity to do so.
3811 if (ops
->init(ops
, rec
->ip
, &entry
->data
) < 0) {
3812 /* caller does not like this func */
3818 ret
= enter_record(hash
, rec
, 0);
3826 entry
->ip
= rec
->ip
;
3828 key
= hash_long(entry
->ip
, FTRACE_HASH_BITS
);
3829 hlist_add_head_rcu(&entry
->node
, &ftrace_func_hash
[key
]);
3831 } while_for_each_ftrace_rec();
3833 ret
= ftrace_hash_move(&trace_probe_ops
, 1, orig_hash
, hash
);
3835 __enable_ftrace_function_probe(&old_hash_ops
);
3838 free_ftrace_hash_rcu(old_hash
);
3843 mutex_unlock(&ftrace_lock
);
3845 mutex_unlock(&trace_probe_ops
.func_hash
->regex_lock
);
3846 free_ftrace_hash(hash
);
3852 PROBE_TEST_FUNC
= 1,
3857 __unregister_ftrace_function_probe(char *glob
, struct ftrace_probe_ops
*ops
,
3858 void *data
, int flags
)
3860 struct ftrace_func_entry
*rec_entry
;
3861 struct ftrace_func_probe
*entry
;
3862 struct ftrace_func_probe
*p
;
3863 struct ftrace_glob func_g
;
3864 struct ftrace_hash
**orig_hash
= &trace_probe_ops
.func_hash
->filter_hash
;
3865 struct ftrace_hash
*old_hash
= *orig_hash
;
3866 struct list_head free_list
;
3867 struct ftrace_hash
*hash
;
3868 struct hlist_node
*tmp
;
3869 char str
[KSYM_SYMBOL_LEN
];
3872 if (glob
&& (strcmp(glob
, "*") == 0 || !strlen(glob
)))
3873 func_g
.search
= NULL
;
3877 func_g
.type
= filter_parse_regex(glob
, strlen(glob
),
3878 &func_g
.search
, ¬);
3879 func_g
.len
= strlen(func_g
.search
);
3880 func_g
.search
= glob
;
3882 /* we do not support '!' for function probes */
3887 mutex_lock(&trace_probe_ops
.func_hash
->regex_lock
);
3889 hash
= alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS
, *orig_hash
);
3891 /* Hmm, should report this somehow */
3894 INIT_LIST_HEAD(&free_list
);
3896 for (i
= 0; i
< FTRACE_FUNC_HASHSIZE
; i
++) {
3897 struct hlist_head
*hhd
= &ftrace_func_hash
[i
];
3899 hlist_for_each_entry_safe(entry
, tmp
, hhd
, node
) {
3901 /* break up if statements for readability */
3902 if ((flags
& PROBE_TEST_FUNC
) && entry
->ops
!= ops
)
3905 if ((flags
& PROBE_TEST_DATA
) && entry
->data
!= data
)
3908 /* do this last, since it is the most expensive */
3909 if (func_g
.search
) {
3910 kallsyms_lookup(entry
->ip
, NULL
, NULL
,
3912 if (!ftrace_match(str
, &func_g
))
3916 rec_entry
= ftrace_lookup_ip(hash
, entry
->ip
);
3917 /* It is possible more than one entry had this ip */
3919 free_hash_entry(hash
, rec_entry
);
3921 hlist_del_rcu(&entry
->node
);
3922 list_add(&entry
->free_list
, &free_list
);
3925 mutex_lock(&ftrace_lock
);
3926 __disable_ftrace_function_probe();
3928 * Remove after the disable is called. Otherwise, if the last
3929 * probe is removed, a null hash means *all enabled*.
3931 ret
= ftrace_hash_move(&trace_probe_ops
, 1, orig_hash
, hash
);
3932 synchronize_sched();
3934 free_ftrace_hash_rcu(old_hash
);
3936 list_for_each_entry_safe(entry
, p
, &free_list
, free_list
) {
3937 list_del(&entry
->free_list
);
3938 ftrace_free_entry(entry
);
3940 mutex_unlock(&ftrace_lock
);
3943 mutex_unlock(&trace_probe_ops
.func_hash
->regex_lock
);
3944 free_ftrace_hash(hash
);
3948 unregister_ftrace_function_probe(char *glob
, struct ftrace_probe_ops
*ops
,
3951 __unregister_ftrace_function_probe(glob
, ops
, data
,
3952 PROBE_TEST_FUNC
| PROBE_TEST_DATA
);
3956 unregister_ftrace_function_probe_func(char *glob
, struct ftrace_probe_ops
*ops
)
3958 __unregister_ftrace_function_probe(glob
, ops
, NULL
, PROBE_TEST_FUNC
);
3961 void unregister_ftrace_function_probe_all(char *glob
)
3963 __unregister_ftrace_function_probe(glob
, NULL
, NULL
, 0);
3966 static LIST_HEAD(ftrace_commands
);
3967 static DEFINE_MUTEX(ftrace_cmd_mutex
);
3970 * Currently we only register ftrace commands from __init, so mark this
3973 __init
int register_ftrace_command(struct ftrace_func_command
*cmd
)
3975 struct ftrace_func_command
*p
;
3978 mutex_lock(&ftrace_cmd_mutex
);
3979 list_for_each_entry(p
, &ftrace_commands
, list
) {
3980 if (strcmp(cmd
->name
, p
->name
) == 0) {
3985 list_add(&cmd
->list
, &ftrace_commands
);
3987 mutex_unlock(&ftrace_cmd_mutex
);
3993 * Currently we only unregister ftrace commands from __init, so mark
3996 __init
int unregister_ftrace_command(struct ftrace_func_command
*cmd
)
3998 struct ftrace_func_command
*p
, *n
;
4001 mutex_lock(&ftrace_cmd_mutex
);
4002 list_for_each_entry_safe(p
, n
, &ftrace_commands
, list
) {
4003 if (strcmp(cmd
->name
, p
->name
) == 0) {
4005 list_del_init(&p
->list
);
4010 mutex_unlock(&ftrace_cmd_mutex
);
4015 static int ftrace_process_regex(struct ftrace_hash
*hash
,
4016 char *buff
, int len
, int enable
)
4018 char *func
, *command
, *next
= buff
;
4019 struct ftrace_func_command
*p
;
4022 func
= strsep(&next
, ":");
4025 ret
= ftrace_match_records(hash
, func
, len
);
4035 command
= strsep(&next
, ":");
4037 mutex_lock(&ftrace_cmd_mutex
);
4038 list_for_each_entry(p
, &ftrace_commands
, list
) {
4039 if (strcmp(p
->name
, command
) == 0) {
4040 ret
= p
->func(hash
, func
, command
, next
, enable
);
4045 mutex_unlock(&ftrace_cmd_mutex
);
4051 ftrace_regex_write(struct file
*file
, const char __user
*ubuf
,
4052 size_t cnt
, loff_t
*ppos
, int enable
)
4054 struct ftrace_iterator
*iter
;
4055 struct trace_parser
*parser
;
4061 if (file
->f_mode
& FMODE_READ
) {
4062 struct seq_file
*m
= file
->private_data
;
4065 iter
= file
->private_data
;
4067 if (unlikely(ftrace_disabled
))
4070 /* iter->hash is a local copy, so we don't need regex_lock */
4072 parser
= &iter
->parser
;
4073 read
= trace_get_user(parser
, ubuf
, cnt
, ppos
);
4075 if (read
>= 0 && trace_parser_loaded(parser
) &&
4076 !trace_parser_cont(parser
)) {
4077 ret
= ftrace_process_regex(iter
->hash
, parser
->buffer
,
4078 parser
->idx
, enable
);
4079 trace_parser_clear(parser
);
4090 ftrace_filter_write(struct file
*file
, const char __user
*ubuf
,
4091 size_t cnt
, loff_t
*ppos
)
4093 return ftrace_regex_write(file
, ubuf
, cnt
, ppos
, 1);
4097 ftrace_notrace_write(struct file
*file
, const char __user
*ubuf
,
4098 size_t cnt
, loff_t
*ppos
)
4100 return ftrace_regex_write(file
, ubuf
, cnt
, ppos
, 0);
4104 ftrace_match_addr(struct ftrace_hash
*hash
, unsigned long ip
, int remove
)
4106 struct ftrace_func_entry
*entry
;
4108 if (!ftrace_location(ip
))
4112 entry
= ftrace_lookup_ip(hash
, ip
);
4115 free_hash_entry(hash
, entry
);
4119 return add_hash_entry(hash
, ip
);
4122 static void ftrace_ops_update_code(struct ftrace_ops
*ops
,
4123 struct ftrace_ops_hash
*old_hash
)
4125 struct ftrace_ops
*op
;
4127 if (!ftrace_enabled
)
4130 if (ops
->flags
& FTRACE_OPS_FL_ENABLED
) {
4131 ftrace_run_modify_code(ops
, FTRACE_UPDATE_CALLS
, old_hash
);
4136 * If this is the shared global_ops filter, then we need to
4137 * check if there is another ops that shares it, is enabled.
4138 * If so, we still need to run the modify code.
4140 if (ops
->func_hash
!= &global_ops
.local_hash
)
4143 do_for_each_ftrace_op(op
, ftrace_ops_list
) {
4144 if (op
->func_hash
== &global_ops
.local_hash
&&
4145 op
->flags
& FTRACE_OPS_FL_ENABLED
) {
4146 ftrace_run_modify_code(op
, FTRACE_UPDATE_CALLS
, old_hash
);
4147 /* Only need to do this once */
4150 } while_for_each_ftrace_op(op
);
4154 ftrace_set_hash(struct ftrace_ops
*ops
, unsigned char *buf
, int len
,
4155 unsigned long ip
, int remove
, int reset
, int enable
)
4157 struct ftrace_hash
**orig_hash
;
4158 struct ftrace_ops_hash old_hash_ops
;
4159 struct ftrace_hash
*old_hash
;
4160 struct ftrace_hash
*hash
;
4163 if (unlikely(ftrace_disabled
))
4166 mutex_lock(&ops
->func_hash
->regex_lock
);
4169 orig_hash
= &ops
->func_hash
->filter_hash
;
4171 orig_hash
= &ops
->func_hash
->notrace_hash
;
4174 hash
= alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS
);
4176 hash
= alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS
, *orig_hash
);
4180 goto out_regex_unlock
;
4183 if (buf
&& !ftrace_match_records(hash
, buf
, len
)) {
4185 goto out_regex_unlock
;
4188 ret
= ftrace_match_addr(hash
, ip
, remove
);
4190 goto out_regex_unlock
;
4193 mutex_lock(&ftrace_lock
);
4194 old_hash
= *orig_hash
;
4195 old_hash_ops
.filter_hash
= ops
->func_hash
->filter_hash
;
4196 old_hash_ops
.notrace_hash
= ops
->func_hash
->notrace_hash
;
4197 ret
= ftrace_hash_move(ops
, enable
, orig_hash
, hash
);
4199 ftrace_ops_update_code(ops
, &old_hash_ops
);
4200 free_ftrace_hash_rcu(old_hash
);
4202 mutex_unlock(&ftrace_lock
);
4205 mutex_unlock(&ops
->func_hash
->regex_lock
);
4207 free_ftrace_hash(hash
);
4212 ftrace_set_addr(struct ftrace_ops
*ops
, unsigned long ip
, int remove
,
4213 int reset
, int enable
)
4215 return ftrace_set_hash(ops
, 0, 0, ip
, remove
, reset
, enable
);
4219 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
4220 * @ops - the ops to set the filter with
4221 * @ip - the address to add to or remove from the filter.
4222 * @remove - non zero to remove the ip from the filter
4223 * @reset - non zero to reset all filters before applying this filter.
4225 * Filters denote which functions should be enabled when tracing is enabled
4226 * If @ip is NULL, it failes to update filter.
4228 int ftrace_set_filter_ip(struct ftrace_ops
*ops
, unsigned long ip
,
4229 int remove
, int reset
)
4231 ftrace_ops_init(ops
);
4232 return ftrace_set_addr(ops
, ip
, remove
, reset
, 1);
4234 EXPORT_SYMBOL_GPL(ftrace_set_filter_ip
);
4237 ftrace_set_regex(struct ftrace_ops
*ops
, unsigned char *buf
, int len
,
4238 int reset
, int enable
)
4240 return ftrace_set_hash(ops
, buf
, len
, 0, 0, reset
, enable
);
4244 * ftrace_set_filter - set a function to filter on in ftrace
4245 * @ops - the ops to set the filter with
4246 * @buf - the string that holds the function filter text.
4247 * @len - the length of the string.
4248 * @reset - non zero to reset all filters before applying this filter.
4250 * Filters denote which functions should be enabled when tracing is enabled.
4251 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4253 int ftrace_set_filter(struct ftrace_ops
*ops
, unsigned char *buf
,
4256 ftrace_ops_init(ops
);
4257 return ftrace_set_regex(ops
, buf
, len
, reset
, 1);
4259 EXPORT_SYMBOL_GPL(ftrace_set_filter
);
4262 * ftrace_set_notrace - set a function to not trace in ftrace
4263 * @ops - the ops to set the notrace filter with
4264 * @buf - the string that holds the function notrace text.
4265 * @len - the length of the string.
4266 * @reset - non zero to reset all filters before applying this filter.
4268 * Notrace Filters denote which functions should not be enabled when tracing
4269 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4272 int ftrace_set_notrace(struct ftrace_ops
*ops
, unsigned char *buf
,
4275 ftrace_ops_init(ops
);
4276 return ftrace_set_regex(ops
, buf
, len
, reset
, 0);
4278 EXPORT_SYMBOL_GPL(ftrace_set_notrace
);
4280 * ftrace_set_global_filter - set a function to filter on with global tracers
4281 * @buf - the string that holds the function filter text.
4282 * @len - the length of the string.
4283 * @reset - non zero to reset all filters before applying this filter.
4285 * Filters denote which functions should be enabled when tracing is enabled.
4286 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4288 void ftrace_set_global_filter(unsigned char *buf
, int len
, int reset
)
4290 ftrace_set_regex(&global_ops
, buf
, len
, reset
, 1);
4292 EXPORT_SYMBOL_GPL(ftrace_set_global_filter
);
4295 * ftrace_set_global_notrace - set a function to not trace with global tracers
4296 * @buf - the string that holds the function notrace text.
4297 * @len - the length of the string.
4298 * @reset - non zero to reset all filters before applying this filter.
4300 * Notrace Filters denote which functions should not be enabled when tracing
4301 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4304 void ftrace_set_global_notrace(unsigned char *buf
, int len
, int reset
)
4306 ftrace_set_regex(&global_ops
, buf
, len
, reset
, 0);
4308 EXPORT_SYMBOL_GPL(ftrace_set_global_notrace
);
4311 * command line interface to allow users to set filters on boot up.
4313 #define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
4314 static char ftrace_notrace_buf
[FTRACE_FILTER_SIZE
] __initdata
;
4315 static char ftrace_filter_buf
[FTRACE_FILTER_SIZE
] __initdata
;
4317 /* Used by function selftest to not test if filter is set */
4318 bool ftrace_filter_param __initdata
;
4320 static int __init
set_ftrace_notrace(char *str
)
4322 ftrace_filter_param
= true;
4323 strlcpy(ftrace_notrace_buf
, str
, FTRACE_FILTER_SIZE
);
4326 __setup("ftrace_notrace=", set_ftrace_notrace
);
4328 static int __init
set_ftrace_filter(char *str
)
4330 ftrace_filter_param
= true;
4331 strlcpy(ftrace_filter_buf
, str
, FTRACE_FILTER_SIZE
);
4334 __setup("ftrace_filter=", set_ftrace_filter
);
4336 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
4337 static char ftrace_graph_buf
[FTRACE_FILTER_SIZE
] __initdata
;
4338 static char ftrace_graph_notrace_buf
[FTRACE_FILTER_SIZE
] __initdata
;
4339 static int ftrace_set_func(unsigned long *array
, int *idx
, int size
, char *buffer
);
4341 static unsigned long save_global_trampoline
;
4342 static unsigned long save_global_flags
;
4344 static int __init
set_graph_function(char *str
)
4346 strlcpy(ftrace_graph_buf
, str
, FTRACE_FILTER_SIZE
);
4349 __setup("ftrace_graph_filter=", set_graph_function
);
4351 static int __init
set_graph_notrace_function(char *str
)
4353 strlcpy(ftrace_graph_notrace_buf
, str
, FTRACE_FILTER_SIZE
);
4356 __setup("ftrace_graph_notrace=", set_graph_notrace_function
);
4358 static void __init
set_ftrace_early_graph(char *buf
, int enable
)
4362 unsigned long *table
= ftrace_graph_funcs
;
4363 int *count
= &ftrace_graph_count
;
4366 table
= ftrace_graph_notrace_funcs
;
4367 count
= &ftrace_graph_notrace_count
;
4371 func
= strsep(&buf
, ",");
4372 /* we allow only one expression at a time */
4373 ret
= ftrace_set_func(table
, count
, FTRACE_GRAPH_MAX_FUNCS
, func
);
4375 printk(KERN_DEBUG
"ftrace: function %s not "
4376 "traceable\n", func
);
4379 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4382 ftrace_set_early_filter(struct ftrace_ops
*ops
, char *buf
, int enable
)
4386 ftrace_ops_init(ops
);
4389 func
= strsep(&buf
, ",");
4390 ftrace_set_regex(ops
, func
, strlen(func
), 0, enable
);
4394 static void __init
set_ftrace_early_filters(void)
4396 if (ftrace_filter_buf
[0])
4397 ftrace_set_early_filter(&global_ops
, ftrace_filter_buf
, 1);
4398 if (ftrace_notrace_buf
[0])
4399 ftrace_set_early_filter(&global_ops
, ftrace_notrace_buf
, 0);
4400 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
4401 if (ftrace_graph_buf
[0])
4402 set_ftrace_early_graph(ftrace_graph_buf
, 1);
4403 if (ftrace_graph_notrace_buf
[0])
4404 set_ftrace_early_graph(ftrace_graph_notrace_buf
, 0);
4405 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4408 int ftrace_regex_release(struct inode
*inode
, struct file
*file
)
4410 struct seq_file
*m
= (struct seq_file
*)file
->private_data
;
4411 struct ftrace_ops_hash old_hash_ops
;
4412 struct ftrace_iterator
*iter
;
4413 struct ftrace_hash
**orig_hash
;
4414 struct ftrace_hash
*old_hash
;
4415 struct trace_parser
*parser
;
4419 if (file
->f_mode
& FMODE_READ
) {
4421 seq_release(inode
, file
);
4423 iter
= file
->private_data
;
4425 parser
= &iter
->parser
;
4426 if (trace_parser_loaded(parser
)) {
4427 parser
->buffer
[parser
->idx
] = 0;
4428 ftrace_match_records(iter
->hash
, parser
->buffer
, parser
->idx
);
4431 trace_parser_put(parser
);
4433 mutex_lock(&iter
->ops
->func_hash
->regex_lock
);
4435 if (file
->f_mode
& FMODE_WRITE
) {
4436 filter_hash
= !!(iter
->flags
& FTRACE_ITER_FILTER
);
4439 orig_hash
= &iter
->ops
->func_hash
->filter_hash
;
4441 orig_hash
= &iter
->ops
->func_hash
->notrace_hash
;
4443 mutex_lock(&ftrace_lock
);
4444 old_hash
= *orig_hash
;
4445 old_hash_ops
.filter_hash
= iter
->ops
->func_hash
->filter_hash
;
4446 old_hash_ops
.notrace_hash
= iter
->ops
->func_hash
->notrace_hash
;
4447 ret
= ftrace_hash_move(iter
->ops
, filter_hash
,
4448 orig_hash
, iter
->hash
);
4450 ftrace_ops_update_code(iter
->ops
, &old_hash_ops
);
4451 free_ftrace_hash_rcu(old_hash
);
4453 mutex_unlock(&ftrace_lock
);
4456 mutex_unlock(&iter
->ops
->func_hash
->regex_lock
);
4457 free_ftrace_hash(iter
->hash
);
4463 static const struct file_operations ftrace_avail_fops
= {
4464 .open
= ftrace_avail_open
,
4466 .llseek
= seq_lseek
,
4467 .release
= seq_release_private
,
4470 static const struct file_operations ftrace_enabled_fops
= {
4471 .open
= ftrace_enabled_open
,
4473 .llseek
= seq_lseek
,
4474 .release
= seq_release_private
,
4477 static const struct file_operations ftrace_filter_fops
= {
4478 .open
= ftrace_filter_open
,
4480 .write
= ftrace_filter_write
,
4481 .llseek
= tracing_lseek
,
4482 .release
= ftrace_regex_release
,
4485 static const struct file_operations ftrace_notrace_fops
= {
4486 .open
= ftrace_notrace_open
,
4488 .write
= ftrace_notrace_write
,
4489 .llseek
= tracing_lseek
,
4490 .release
= ftrace_regex_release
,
4493 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
4495 static DEFINE_MUTEX(graph_lock
);
4497 int ftrace_graph_count
;
4498 int ftrace_graph_notrace_count
;
4499 unsigned long ftrace_graph_funcs
[FTRACE_GRAPH_MAX_FUNCS
] __read_mostly
;
4500 unsigned long ftrace_graph_notrace_funcs
[FTRACE_GRAPH_MAX_FUNCS
] __read_mostly
;
4502 struct ftrace_graph_data
{
4503 unsigned long *table
;
4506 const struct seq_operations
*seq_ops
;
4510 __g_next(struct seq_file
*m
, loff_t
*pos
)
4512 struct ftrace_graph_data
*fgd
= m
->private;
4514 if (*pos
>= *fgd
->count
)
4516 return &fgd
->table
[*pos
];
4520 g_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
4523 return __g_next(m
, pos
);
4526 static void *g_start(struct seq_file
*m
, loff_t
*pos
)
4528 struct ftrace_graph_data
*fgd
= m
->private;
4530 mutex_lock(&graph_lock
);
4532 /* Nothing, tell g_show to print all functions are enabled */
4533 if (!*fgd
->count
&& !*pos
)
4536 return __g_next(m
, pos
);
4539 static void g_stop(struct seq_file
*m
, void *p
)
4541 mutex_unlock(&graph_lock
);
4544 static int g_show(struct seq_file
*m
, void *v
)
4546 unsigned long *ptr
= v
;
4551 if (ptr
== (unsigned long *)1) {
4552 struct ftrace_graph_data
*fgd
= m
->private;
4554 if (fgd
->table
== ftrace_graph_funcs
)
4555 seq_puts(m
, "#### all functions enabled ####\n");
4557 seq_puts(m
, "#### no functions disabled ####\n");
4561 seq_printf(m
, "%ps\n", (void *)*ptr
);
4566 static const struct seq_operations ftrace_graph_seq_ops
= {
4574 __ftrace_graph_open(struct inode
*inode
, struct file
*file
,
4575 struct ftrace_graph_data
*fgd
)
4579 mutex_lock(&graph_lock
);
4580 if ((file
->f_mode
& FMODE_WRITE
) &&
4581 (file
->f_flags
& O_TRUNC
)) {
4583 memset(fgd
->table
, 0, fgd
->size
* sizeof(*fgd
->table
));
4585 mutex_unlock(&graph_lock
);
4587 if (file
->f_mode
& FMODE_READ
) {
4588 ret
= seq_open(file
, fgd
->seq_ops
);
4590 struct seq_file
*m
= file
->private_data
;
4594 file
->private_data
= fgd
;
4600 ftrace_graph_open(struct inode
*inode
, struct file
*file
)
4602 struct ftrace_graph_data
*fgd
;
4604 if (unlikely(ftrace_disabled
))
4607 fgd
= kmalloc(sizeof(*fgd
), GFP_KERNEL
);
4611 fgd
->table
= ftrace_graph_funcs
;
4612 fgd
->size
= FTRACE_GRAPH_MAX_FUNCS
;
4613 fgd
->count
= &ftrace_graph_count
;
4614 fgd
->seq_ops
= &ftrace_graph_seq_ops
;
4616 return __ftrace_graph_open(inode
, file
, fgd
);
4620 ftrace_graph_notrace_open(struct inode
*inode
, struct file
*file
)
4622 struct ftrace_graph_data
*fgd
;
4624 if (unlikely(ftrace_disabled
))
4627 fgd
= kmalloc(sizeof(*fgd
), GFP_KERNEL
);
4631 fgd
->table
= ftrace_graph_notrace_funcs
;
4632 fgd
->size
= FTRACE_GRAPH_MAX_FUNCS
;
4633 fgd
->count
= &ftrace_graph_notrace_count
;
4634 fgd
->seq_ops
= &ftrace_graph_seq_ops
;
4636 return __ftrace_graph_open(inode
, file
, fgd
);
4640 ftrace_graph_release(struct inode
*inode
, struct file
*file
)
4642 if (file
->f_mode
& FMODE_READ
) {
4643 struct seq_file
*m
= file
->private_data
;
4646 seq_release(inode
, file
);
4648 kfree(file
->private_data
);
4655 ftrace_set_func(unsigned long *array
, int *idx
, int size
, char *buffer
)
4657 struct ftrace_glob func_g
;
4658 struct dyn_ftrace
*rec
;
4659 struct ftrace_page
*pg
;
4666 func_g
.type
= filter_parse_regex(buffer
, strlen(buffer
),
4667 &func_g
.search
, ¬);
4668 if (!not && *idx
>= size
)
4671 func_g
.len
= strlen(func_g
.search
);
4673 mutex_lock(&ftrace_lock
);
4675 if (unlikely(ftrace_disabled
)) {
4676 mutex_unlock(&ftrace_lock
);
4680 do_for_each_ftrace_rec(pg
, rec
) {
4682 if (ftrace_match_record(rec
, &func_g
, NULL
, 0)) {
4683 /* if it is in the array */
4685 for (i
= 0; i
< *idx
; i
++) {
4686 if (array
[i
] == rec
->ip
) {
4695 array
[(*idx
)++] = rec
->ip
;
4701 array
[i
] = array
[--(*idx
)];
4707 } while_for_each_ftrace_rec();
4709 mutex_unlock(&ftrace_lock
);
4718 ftrace_graph_write(struct file
*file
, const char __user
*ubuf
,
4719 size_t cnt
, loff_t
*ppos
)
4721 struct trace_parser parser
;
4722 ssize_t read
, ret
= 0;
4723 struct ftrace_graph_data
*fgd
= file
->private_data
;
4728 if (trace_parser_get_init(&parser
, FTRACE_BUFF_MAX
))
4731 read
= trace_get_user(&parser
, ubuf
, cnt
, ppos
);
4733 if (read
>= 0 && trace_parser_loaded((&parser
))) {
4734 parser
.buffer
[parser
.idx
] = 0;
4736 mutex_lock(&graph_lock
);
4738 /* we allow only one expression at a time */
4739 ret
= ftrace_set_func(fgd
->table
, fgd
->count
, fgd
->size
,
4742 mutex_unlock(&graph_lock
);
4748 trace_parser_put(&parser
);
4753 static const struct file_operations ftrace_graph_fops
= {
4754 .open
= ftrace_graph_open
,
4756 .write
= ftrace_graph_write
,
4757 .llseek
= tracing_lseek
,
4758 .release
= ftrace_graph_release
,
4761 static const struct file_operations ftrace_graph_notrace_fops
= {
4762 .open
= ftrace_graph_notrace_open
,
4764 .write
= ftrace_graph_write
,
4765 .llseek
= tracing_lseek
,
4766 .release
= ftrace_graph_release
,
4768 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4770 void ftrace_create_filter_files(struct ftrace_ops
*ops
,
4771 struct dentry
*parent
)
4774 trace_create_file("set_ftrace_filter", 0644, parent
,
4775 ops
, &ftrace_filter_fops
);
4777 trace_create_file("set_ftrace_notrace", 0644, parent
,
4778 ops
, &ftrace_notrace_fops
);
4782 * The name "destroy_filter_files" is really a misnomer. Although
4783 * in the future, it may actualy delete the files, but this is
4784 * really intended to make sure the ops passed in are disabled
4785 * and that when this function returns, the caller is free to
4788 * The "destroy" name is only to match the "create" name that this
4789 * should be paired with.
4791 void ftrace_destroy_filter_files(struct ftrace_ops
*ops
)
4793 mutex_lock(&ftrace_lock
);
4794 if (ops
->flags
& FTRACE_OPS_FL_ENABLED
)
4795 ftrace_shutdown(ops
, 0);
4796 ops
->flags
|= FTRACE_OPS_FL_DELETED
;
4797 mutex_unlock(&ftrace_lock
);
4800 static __init
int ftrace_init_dyn_tracefs(struct dentry
*d_tracer
)
4803 trace_create_file("available_filter_functions", 0444,
4804 d_tracer
, NULL
, &ftrace_avail_fops
);
4806 trace_create_file("enabled_functions", 0444,
4807 d_tracer
, NULL
, &ftrace_enabled_fops
);
4809 ftrace_create_filter_files(&global_ops
, d_tracer
);
4811 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
4812 trace_create_file("set_graph_function", 0444, d_tracer
,
4814 &ftrace_graph_fops
);
4815 trace_create_file("set_graph_notrace", 0444, d_tracer
,
4817 &ftrace_graph_notrace_fops
);
4818 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4823 static int ftrace_cmp_ips(const void *a
, const void *b
)
4825 const unsigned long *ipa
= a
;
4826 const unsigned long *ipb
= b
;
4835 static int ftrace_process_locs(struct module
*mod
,
4836 unsigned long *start
,
4839 struct ftrace_page
*start_pg
;
4840 struct ftrace_page
*pg
;
4841 struct dyn_ftrace
*rec
;
4842 unsigned long count
;
4845 unsigned long flags
= 0; /* Shut up gcc */
4848 count
= end
- start
;
4853 sort(start
, count
, sizeof(*start
),
4854 ftrace_cmp_ips
, NULL
);
4856 start_pg
= ftrace_allocate_pages(count
);
4860 mutex_lock(&ftrace_lock
);
4863 * Core and each module needs their own pages, as
4864 * modules will free them when they are removed.
4865 * Force a new page to be allocated for modules.
4868 WARN_ON(ftrace_pages
|| ftrace_pages_start
);
4869 /* First initialization */
4870 ftrace_pages
= ftrace_pages_start
= start_pg
;
4875 if (WARN_ON(ftrace_pages
->next
)) {
4876 /* Hmm, we have free pages? */
4877 while (ftrace_pages
->next
)
4878 ftrace_pages
= ftrace_pages
->next
;
4881 ftrace_pages
->next
= start_pg
;
4887 addr
= ftrace_call_adjust(*p
++);
4889 * Some architecture linkers will pad between
4890 * the different mcount_loc sections of different
4891 * object files to satisfy alignments.
4892 * Skip any NULL pointers.
4897 if (pg
->index
== pg
->size
) {
4898 /* We should have allocated enough */
4899 if (WARN_ON(!pg
->next
))
4904 rec
= &pg
->records
[pg
->index
++];
4908 /* We should have used all pages */
4911 /* Assign the last page to ftrace_pages */
4915 * We only need to disable interrupts on start up
4916 * because we are modifying code that an interrupt
4917 * may execute, and the modification is not atomic.
4918 * But for modules, nothing runs the code we modify
4919 * until we are finished with it, and there's no
4920 * reason to cause large interrupt latencies while we do it.
4923 local_irq_save(flags
);
4924 ftrace_update_code(mod
, start_pg
);
4926 local_irq_restore(flags
);
4929 mutex_unlock(&ftrace_lock
);
4934 #ifdef CONFIG_MODULES
4936 #define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
4938 static int referenced_filters(struct dyn_ftrace
*rec
)
4940 struct ftrace_ops
*ops
;
4943 for (ops
= ftrace_ops_list
; ops
!= &ftrace_list_end
; ops
= ops
->next
) {
4944 if (ops_references_rec(ops
, rec
))
4951 void ftrace_release_mod(struct module
*mod
)
4953 struct dyn_ftrace
*rec
;
4954 struct ftrace_page
**last_pg
;
4955 struct ftrace_page
*pg
;
4958 mutex_lock(&ftrace_lock
);
4960 if (ftrace_disabled
)
4964 * Each module has its own ftrace_pages, remove
4965 * them from the list.
4967 last_pg
= &ftrace_pages_start
;
4968 for (pg
= ftrace_pages_start
; pg
; pg
= *last_pg
) {
4969 rec
= &pg
->records
[0];
4970 if (within_module_core(rec
->ip
, mod
)) {
4972 * As core pages are first, the first
4973 * page should never be a module page.
4975 if (WARN_ON(pg
== ftrace_pages_start
))
4978 /* Check if we are deleting the last page */
4979 if (pg
== ftrace_pages
)
4980 ftrace_pages
= next_to_ftrace_page(last_pg
);
4982 *last_pg
= pg
->next
;
4983 order
= get_count_order(pg
->size
/ ENTRIES_PER_PAGE
);
4984 free_pages((unsigned long)pg
->records
, order
);
4987 last_pg
= &pg
->next
;
4990 mutex_unlock(&ftrace_lock
);
4993 void ftrace_module_enable(struct module
*mod
)
4995 struct dyn_ftrace
*rec
;
4996 struct ftrace_page
*pg
;
4998 mutex_lock(&ftrace_lock
);
5000 if (ftrace_disabled
)
5004 * If the tracing is enabled, go ahead and enable the record.
5006 * The reason not to enable the record immediatelly is the
5007 * inherent check of ftrace_make_nop/ftrace_make_call for
5008 * correct previous instructions. Making first the NOP
5009 * conversion puts the module to the correct state, thus
5010 * passing the ftrace_make_call check.
5012 * We also delay this to after the module code already set the
5013 * text to read-only, as we now need to set it back to read-write
5014 * so that we can modify the text.
5016 if (ftrace_start_up
)
5017 ftrace_arch_code_modify_prepare();
5019 do_for_each_ftrace_rec(pg
, rec
) {
5022 * do_for_each_ftrace_rec() is a double loop.
5023 * module text shares the pg. If a record is
5024 * not part of this module, then skip this pg,
5025 * which the "break" will do.
5027 if (!within_module_core(rec
->ip
, mod
))
5033 * When adding a module, we need to check if tracers are
5034 * currently enabled and if they are, and can trace this record,
5035 * we need to enable the module functions as well as update the
5036 * reference counts for those function records.
5038 if (ftrace_start_up
)
5039 cnt
+= referenced_filters(rec
);
5041 /* This clears FTRACE_FL_DISABLED */
5044 if (ftrace_start_up
&& cnt
) {
5045 int failed
= __ftrace_replace_code(rec
, 1);
5047 ftrace_bug(failed
, rec
);
5052 } while_for_each_ftrace_rec();
5055 if (ftrace_start_up
)
5056 ftrace_arch_code_modify_post_process();
5059 mutex_unlock(&ftrace_lock
);
5062 void ftrace_module_init(struct module
*mod
)
5064 if (ftrace_disabled
|| !mod
->num_ftrace_callsites
)
5067 ftrace_process_locs(mod
, mod
->ftrace_callsites
,
5068 mod
->ftrace_callsites
+ mod
->num_ftrace_callsites
);
5070 #endif /* CONFIG_MODULES */
5072 void __init
ftrace_init(void)
5074 extern unsigned long __start_mcount_loc
[];
5075 extern unsigned long __stop_mcount_loc
[];
5076 unsigned long count
, flags
;
5079 local_irq_save(flags
);
5080 ret
= ftrace_dyn_arch_init();
5081 local_irq_restore(flags
);
5085 count
= __stop_mcount_loc
- __start_mcount_loc
;
5087 pr_info("ftrace: No functions to be traced?\n");
5091 pr_info("ftrace: allocating %ld entries in %ld pages\n",
5092 count
, count
/ ENTRIES_PER_PAGE
+ 1);
5094 last_ftrace_enabled
= ftrace_enabled
= 1;
5096 ret
= ftrace_process_locs(NULL
,
5100 set_ftrace_early_filters();
5104 ftrace_disabled
= 1;
5107 /* Do nothing if arch does not support this */
5108 void __weak
arch_ftrace_update_trampoline(struct ftrace_ops
*ops
)
5112 static void ftrace_update_trampoline(struct ftrace_ops
*ops
)
5116 * Currently there's no safe way to free a trampoline when the kernel
5117 * is configured with PREEMPT. That is because a task could be preempted
5118 * when it jumped to the trampoline, it may be preempted for a long time
5119 * depending on the system load, and currently there's no way to know
5120 * when it will be off the trampoline. If the trampoline is freed
5121 * too early, when the task runs again, it will be executing on freed
5124 #ifdef CONFIG_PREEMPT
5125 /* Currently, only non dynamic ops can have a trampoline */
5126 if (ops
->flags
& FTRACE_OPS_FL_DYNAMIC
)
5130 arch_ftrace_update_trampoline(ops
);
5135 static struct ftrace_ops global_ops
= {
5136 .func
= ftrace_stub
,
5137 .flags
= FTRACE_OPS_FL_RECURSION_SAFE
|
5138 FTRACE_OPS_FL_INITIALIZED
|
5142 static int __init
ftrace_nodyn_init(void)
5147 core_initcall(ftrace_nodyn_init
);
5149 static inline int ftrace_init_dyn_tracefs(struct dentry
*d_tracer
) { return 0; }
5150 static inline void ftrace_startup_enable(int command
) { }
5151 static inline void ftrace_startup_all(int command
) { }
5152 /* Keep as macros so we do not need to define the commands */
5153 # define ftrace_startup(ops, command) \
5155 int ___ret = __register_ftrace_function(ops); \
5157 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
5160 # define ftrace_shutdown(ops, command) \
5162 int ___ret = __unregister_ftrace_function(ops); \
5164 (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \
5168 # define ftrace_startup_sysctl() do { } while (0)
5169 # define ftrace_shutdown_sysctl() do { } while (0)
5172 ftrace_ops_test(struct ftrace_ops
*ops
, unsigned long ip
, void *regs
)
5177 static void ftrace_update_trampoline(struct ftrace_ops
*ops
)
5181 #endif /* CONFIG_DYNAMIC_FTRACE */
5183 __init
void ftrace_init_global_array_ops(struct trace_array
*tr
)
5185 tr
->ops
= &global_ops
;
5186 tr
->ops
->private = tr
;
5189 void ftrace_init_array_ops(struct trace_array
*tr
, ftrace_func_t func
)
5191 /* If we filter on pids, update to use the pid function */
5192 if (tr
->flags
& TRACE_ARRAY_FL_GLOBAL
) {
5193 if (WARN_ON(tr
->ops
->func
!= ftrace_stub
))
5194 printk("ftrace ops had %pS for function\n",
5197 tr
->ops
->func
= func
;
5198 tr
->ops
->private = tr
;
5201 void ftrace_reset_array_ops(struct trace_array
*tr
)
5203 tr
->ops
->func
= ftrace_stub
;
5207 __ftrace_ops_list_func(unsigned long ip
, unsigned long parent_ip
,
5208 struct ftrace_ops
*ignored
, struct pt_regs
*regs
)
5210 struct ftrace_ops
*op
;
5213 bit
= trace_test_and_set_recursion(TRACE_LIST_START
, TRACE_LIST_MAX
);
5218 * Some of the ops may be dynamically allocated,
5219 * they must be freed after a synchronize_sched().
5221 preempt_disable_notrace();
5223 do_for_each_ftrace_op(op
, ftrace_ops_list
) {
5225 * Check the following for each ops before calling their func:
5226 * if RCU flag is set, then rcu_is_watching() must be true
5227 * if PER_CPU is set, then ftrace_function_local_disable()
5229 * Otherwise test if the ip matches the ops filter
5231 * If any of the above fails then the op->func() is not executed.
5233 if ((!(op
->flags
& FTRACE_OPS_FL_RCU
) || rcu_is_watching()) &&
5234 (!(op
->flags
& FTRACE_OPS_FL_PER_CPU
) ||
5235 !ftrace_function_local_disabled(op
)) &&
5236 ftrace_ops_test(op
, ip
, regs
)) {
5238 if (FTRACE_WARN_ON(!op
->func
)) {
5239 pr_warn("op=%p %pS\n", op
, op
);
5242 op
->func(ip
, parent_ip
, op
, regs
);
5244 } while_for_each_ftrace_op(op
);
5246 preempt_enable_notrace();
5247 trace_clear_recursion(bit
);
5251 * Some archs only support passing ip and parent_ip. Even though
5252 * the list function ignores the op parameter, we do not want any
5253 * C side effects, where a function is called without the caller
5254 * sending a third parameter.
5255 * Archs are to support both the regs and ftrace_ops at the same time.
5256 * If they support ftrace_ops, it is assumed they support regs.
5257 * If call backs want to use regs, they must either check for regs
5258 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
5259 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
5260 * An architecture can pass partial regs with ftrace_ops and still
5261 * set the ARCH_SUPPORTS_FTRACE_OPS.
5263 #if ARCH_SUPPORTS_FTRACE_OPS
5264 static void ftrace_ops_list_func(unsigned long ip
, unsigned long parent_ip
,
5265 struct ftrace_ops
*op
, struct pt_regs
*regs
)
5267 __ftrace_ops_list_func(ip
, parent_ip
, NULL
, regs
);
5270 static void ftrace_ops_no_ops(unsigned long ip
, unsigned long parent_ip
)
5272 __ftrace_ops_list_func(ip
, parent_ip
, NULL
, NULL
);
5277 * If there's only one function registered but it does not support
5278 * recursion, needs RCU protection and/or requires per cpu handling, then
5279 * this function will be called by the mcount trampoline.
5281 static void ftrace_ops_assist_func(unsigned long ip
, unsigned long parent_ip
,
5282 struct ftrace_ops
*op
, struct pt_regs
*regs
)
5286 if ((op
->flags
& FTRACE_OPS_FL_RCU
) && !rcu_is_watching())
5289 bit
= trace_test_and_set_recursion(TRACE_LIST_START
, TRACE_LIST_MAX
);
5293 preempt_disable_notrace();
5295 if (!(op
->flags
& FTRACE_OPS_FL_PER_CPU
) ||
5296 !ftrace_function_local_disabled(op
)) {
5297 op
->func(ip
, parent_ip
, op
, regs
);
5300 preempt_enable_notrace();
5301 trace_clear_recursion(bit
);
5305 * ftrace_ops_get_func - get the function a trampoline should call
5306 * @ops: the ops to get the function for
5308 * Normally the mcount trampoline will call the ops->func, but there
5309 * are times that it should not. For example, if the ops does not
5310 * have its own recursion protection, then it should call the
5311 * ftrace_ops_recurs_func() instead.
5313 * Returns the function that the trampoline should call for @ops.
5315 ftrace_func_t
ftrace_ops_get_func(struct ftrace_ops
*ops
)
5318 * If the function does not handle recursion, needs to be RCU safe,
5319 * or does per cpu logic, then we need to call the assist handler.
5321 if (!(ops
->flags
& FTRACE_OPS_FL_RECURSION_SAFE
) ||
5322 ops
->flags
& (FTRACE_OPS_FL_RCU
| FTRACE_OPS_FL_PER_CPU
))
5323 return ftrace_ops_assist_func
;
5329 ftrace_filter_pid_sched_switch_probe(void *data
, bool preempt
,
5330 struct task_struct
*prev
, struct task_struct
*next
)
5332 struct trace_array
*tr
= data
;
5333 struct trace_pid_list
*pid_list
;
5335 pid_list
= rcu_dereference_sched(tr
->function_pids
);
5337 this_cpu_write(tr
->trace_buffer
.data
->ftrace_ignore_pid
,
5338 trace_ignore_this_task(pid_list
, next
));
5341 static void clear_ftrace_pids(struct trace_array
*tr
)
5343 struct trace_pid_list
*pid_list
;
5346 pid_list
= rcu_dereference_protected(tr
->function_pids
,
5347 lockdep_is_held(&ftrace_lock
));
5351 unregister_trace_sched_switch(ftrace_filter_pid_sched_switch_probe
, tr
);
5353 for_each_possible_cpu(cpu
)
5354 per_cpu_ptr(tr
->trace_buffer
.data
, cpu
)->ftrace_ignore_pid
= false;
5356 rcu_assign_pointer(tr
->function_pids
, NULL
);
5358 /* Wait till all users are no longer using pid filtering */
5359 synchronize_sched();
5361 trace_free_pid_list(pid_list
);
5364 static void ftrace_pid_reset(struct trace_array
*tr
)
5366 mutex_lock(&ftrace_lock
);
5367 clear_ftrace_pids(tr
);
5369 ftrace_update_pid_func();
5370 ftrace_startup_all(0);
5372 mutex_unlock(&ftrace_lock
);
5375 /* Greater than any max PID */
5376 #define FTRACE_NO_PIDS (void *)(PID_MAX_LIMIT + 1)
5378 static void *fpid_start(struct seq_file
*m
, loff_t
*pos
)
5381 struct trace_pid_list
*pid_list
;
5382 struct trace_array
*tr
= m
->private;
5384 mutex_lock(&ftrace_lock
);
5385 rcu_read_lock_sched();
5387 pid_list
= rcu_dereference_sched(tr
->function_pids
);
5390 return !(*pos
) ? FTRACE_NO_PIDS
: NULL
;
5392 return trace_pid_start(pid_list
, pos
);
5395 static void *fpid_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
5397 struct trace_array
*tr
= m
->private;
5398 struct trace_pid_list
*pid_list
= rcu_dereference_sched(tr
->function_pids
);
5400 if (v
== FTRACE_NO_PIDS
)
5403 return trace_pid_next(pid_list
, v
, pos
);
5406 static void fpid_stop(struct seq_file
*m
, void *p
)
5409 rcu_read_unlock_sched();
5410 mutex_unlock(&ftrace_lock
);
5413 static int fpid_show(struct seq_file
*m
, void *v
)
5415 if (v
== FTRACE_NO_PIDS
) {
5416 seq_puts(m
, "no pid\n");
5420 return trace_pid_show(m
, v
);
5423 static const struct seq_operations ftrace_pid_sops
= {
5424 .start
= fpid_start
,
5431 ftrace_pid_open(struct inode
*inode
, struct file
*file
)
5433 struct trace_array
*tr
= inode
->i_private
;
5437 if (trace_array_get(tr
) < 0)
5440 if ((file
->f_mode
& FMODE_WRITE
) &&
5441 (file
->f_flags
& O_TRUNC
))
5442 ftrace_pid_reset(tr
);
5444 ret
= seq_open(file
, &ftrace_pid_sops
);
5446 trace_array_put(tr
);
5448 m
= file
->private_data
;
5449 /* copy tr over to seq ops */
5456 static void ignore_task_cpu(void *data
)
5458 struct trace_array
*tr
= data
;
5459 struct trace_pid_list
*pid_list
;
5462 * This function is called by on_each_cpu() while the
5463 * event_mutex is held.
5465 pid_list
= rcu_dereference_protected(tr
->function_pids
,
5466 mutex_is_locked(&ftrace_lock
));
5468 this_cpu_write(tr
->trace_buffer
.data
->ftrace_ignore_pid
,
5469 trace_ignore_this_task(pid_list
, current
));
5473 ftrace_pid_write(struct file
*filp
, const char __user
*ubuf
,
5474 size_t cnt
, loff_t
*ppos
)
5476 struct seq_file
*m
= filp
->private_data
;
5477 struct trace_array
*tr
= m
->private;
5478 struct trace_pid_list
*filtered_pids
= NULL
;
5479 struct trace_pid_list
*pid_list
;
5485 mutex_lock(&ftrace_lock
);
5487 filtered_pids
= rcu_dereference_protected(tr
->function_pids
,
5488 lockdep_is_held(&ftrace_lock
));
5490 ret
= trace_pid_write(filtered_pids
, &pid_list
, ubuf
, cnt
);
5494 rcu_assign_pointer(tr
->function_pids
, pid_list
);
5496 if (filtered_pids
) {
5497 synchronize_sched();
5498 trace_free_pid_list(filtered_pids
);
5499 } else if (pid_list
) {
5500 /* Register a probe to set whether to ignore the tracing of a task */
5501 register_trace_sched_switch(ftrace_filter_pid_sched_switch_probe
, tr
);
5505 * Ignoring of pids is done at task switch. But we have to
5506 * check for those tasks that are currently running.
5507 * Always do this in case a pid was appended or removed.
5509 on_each_cpu(ignore_task_cpu
, tr
, 1);
5511 ftrace_update_pid_func();
5512 ftrace_startup_all(0);
5514 mutex_unlock(&ftrace_lock
);
5523 ftrace_pid_release(struct inode
*inode
, struct file
*file
)
5525 struct trace_array
*tr
= inode
->i_private
;
5527 trace_array_put(tr
);
5529 return seq_release(inode
, file
);
5532 static const struct file_operations ftrace_pid_fops
= {
5533 .open
= ftrace_pid_open
,
5534 .write
= ftrace_pid_write
,
5536 .llseek
= tracing_lseek
,
5537 .release
= ftrace_pid_release
,
5540 void ftrace_init_tracefs(struct trace_array
*tr
, struct dentry
*d_tracer
)
5542 trace_create_file("set_ftrace_pid", 0644, d_tracer
,
5543 tr
, &ftrace_pid_fops
);
5546 void __init
ftrace_init_tracefs_toplevel(struct trace_array
*tr
,
5547 struct dentry
*d_tracer
)
5549 /* Only the top level directory has the dyn_tracefs and profile */
5550 WARN_ON(!(tr
->flags
& TRACE_ARRAY_FL_GLOBAL
));
5552 ftrace_init_dyn_tracefs(d_tracer
);
5553 ftrace_profile_tracefs(d_tracer
);
5557 * ftrace_kill - kill ftrace
5559 * This function should be used by panic code. It stops ftrace
5560 * but in a not so nice way. If you need to simply kill ftrace
5561 * from a non-atomic section, use ftrace_kill.
5563 void ftrace_kill(void)
5565 ftrace_disabled
= 1;
5567 clear_ftrace_function();
5571 * Test if ftrace is dead or not.
5573 int ftrace_is_dead(void)
5575 return ftrace_disabled
;
5579 * register_ftrace_function - register a function for profiling
5580 * @ops - ops structure that holds the function for profiling.
5582 * Register a function to be called by all functions in the
5585 * Note: @ops->func and all the functions it calls must be labeled
5586 * with "notrace", otherwise it will go into a
5589 int register_ftrace_function(struct ftrace_ops
*ops
)
5593 ftrace_ops_init(ops
);
5595 mutex_lock(&ftrace_lock
);
5597 ret
= ftrace_startup(ops
, 0);
5599 mutex_unlock(&ftrace_lock
);
5603 EXPORT_SYMBOL_GPL(register_ftrace_function
);
5606 * unregister_ftrace_function - unregister a function for profiling.
5607 * @ops - ops structure that holds the function to unregister
5609 * Unregister a function that was added to be called by ftrace profiling.
5611 int unregister_ftrace_function(struct ftrace_ops
*ops
)
5615 mutex_lock(&ftrace_lock
);
5616 ret
= ftrace_shutdown(ops
, 0);
5617 mutex_unlock(&ftrace_lock
);
5621 EXPORT_SYMBOL_GPL(unregister_ftrace_function
);
5624 ftrace_enable_sysctl(struct ctl_table
*table
, int write
,
5625 void __user
*buffer
, size_t *lenp
,
5630 mutex_lock(&ftrace_lock
);
5632 if (unlikely(ftrace_disabled
))
5635 ret
= proc_dointvec(table
, write
, buffer
, lenp
, ppos
);
5637 if (ret
|| !write
|| (last_ftrace_enabled
== !!ftrace_enabled
))
5640 last_ftrace_enabled
= !!ftrace_enabled
;
5642 if (ftrace_enabled
) {
5644 /* we are starting ftrace again */
5645 if (ftrace_ops_list
!= &ftrace_list_end
)
5646 update_ftrace_function();
5648 ftrace_startup_sysctl();
5651 /* stopping ftrace calls (just send to ftrace_stub) */
5652 ftrace_trace_function
= ftrace_stub
;
5654 ftrace_shutdown_sysctl();
5658 mutex_unlock(&ftrace_lock
);
5662 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
5664 static struct ftrace_ops graph_ops
= {
5665 .func
= ftrace_stub
,
5666 .flags
= FTRACE_OPS_FL_RECURSION_SAFE
|
5667 FTRACE_OPS_FL_INITIALIZED
|
5670 #ifdef FTRACE_GRAPH_TRAMP_ADDR
5671 .trampoline
= FTRACE_GRAPH_TRAMP_ADDR
,
5672 /* trampoline_size is only needed for dynamically allocated tramps */
5674 ASSIGN_OPS_HASH(graph_ops
, &global_ops
.local_hash
)
5677 void ftrace_graph_sleep_time_control(bool enable
)
5679 fgraph_sleep_time
= enable
;
5682 void ftrace_graph_graph_time_control(bool enable
)
5684 fgraph_graph_time
= enable
;
5687 int ftrace_graph_entry_stub(struct ftrace_graph_ent
*trace
)
5692 /* The callbacks that hook a function */
5693 trace_func_graph_ret_t ftrace_graph_return
=
5694 (trace_func_graph_ret_t
)ftrace_stub
;
5695 trace_func_graph_ent_t ftrace_graph_entry
= ftrace_graph_entry_stub
;
5696 static trace_func_graph_ent_t __ftrace_graph_entry
= ftrace_graph_entry_stub
;
5698 /* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
5699 static int alloc_retstack_tasklist(struct ftrace_ret_stack
**ret_stack_list
)
5703 int start
= 0, end
= FTRACE_RETSTACK_ALLOC_SIZE
;
5704 struct task_struct
*g
, *t
;
5706 for (i
= 0; i
< FTRACE_RETSTACK_ALLOC_SIZE
; i
++) {
5707 ret_stack_list
[i
] = kmalloc(FTRACE_RETFUNC_DEPTH
5708 * sizeof(struct ftrace_ret_stack
),
5710 if (!ret_stack_list
[i
]) {
5718 read_lock(&tasklist_lock
);
5719 do_each_thread(g
, t
) {
5725 if (t
->ret_stack
== NULL
) {
5726 atomic_set(&t
->tracing_graph_pause
, 0);
5727 atomic_set(&t
->trace_overrun
, 0);
5728 t
->curr_ret_stack
= -1;
5729 /* Make sure the tasks see the -1 first: */
5731 t
->ret_stack
= ret_stack_list
[start
++];
5733 } while_each_thread(g
, t
);
5736 read_unlock(&tasklist_lock
);
5738 for (i
= start
; i
< end
; i
++)
5739 kfree(ret_stack_list
[i
]);
5744 ftrace_graph_probe_sched_switch(void *ignore
, bool preempt
,
5745 struct task_struct
*prev
, struct task_struct
*next
)
5747 unsigned long long timestamp
;
5751 * Does the user want to count the time a function was asleep.
5752 * If so, do not update the time stamps.
5754 if (fgraph_sleep_time
)
5757 timestamp
= trace_clock_local();
5759 prev
->ftrace_timestamp
= timestamp
;
5761 /* only process tasks that we timestamped */
5762 if (!next
->ftrace_timestamp
)
5766 * Update all the counters in next to make up for the
5767 * time next was sleeping.
5769 timestamp
-= next
->ftrace_timestamp
;
5771 for (index
= next
->curr_ret_stack
; index
>= 0; index
--)
5772 next
->ret_stack
[index
].calltime
+= timestamp
;
5775 /* Allocate a return stack for each task */
5776 static int start_graph_tracing(void)
5778 struct ftrace_ret_stack
**ret_stack_list
;
5781 ret_stack_list
= kmalloc(FTRACE_RETSTACK_ALLOC_SIZE
*
5782 sizeof(struct ftrace_ret_stack
*),
5785 if (!ret_stack_list
)
5788 /* The cpu_boot init_task->ret_stack will never be freed */
5789 for_each_online_cpu(cpu
) {
5790 if (!idle_task(cpu
)->ret_stack
)
5791 ftrace_graph_init_idle_task(idle_task(cpu
), cpu
);
5795 ret
= alloc_retstack_tasklist(ret_stack_list
);
5796 } while (ret
== -EAGAIN
);
5799 ret
= register_trace_sched_switch(ftrace_graph_probe_sched_switch
, NULL
);
5801 pr_info("ftrace_graph: Couldn't activate tracepoint"
5802 " probe to kernel_sched_switch\n");
5805 kfree(ret_stack_list
);
5810 * Hibernation protection.
5811 * The state of the current task is too much unstable during
5812 * suspend/restore to disk. We want to protect against that.
5815 ftrace_suspend_notifier_call(struct notifier_block
*bl
, unsigned long state
,
5819 case PM_HIBERNATION_PREPARE
:
5820 pause_graph_tracing();
5823 case PM_POST_HIBERNATION
:
5824 unpause_graph_tracing();
5830 static int ftrace_graph_entry_test(struct ftrace_graph_ent
*trace
)
5832 if (!ftrace_ops_test(&global_ops
, trace
->func
, NULL
))
5834 return __ftrace_graph_entry(trace
);
5838 * The function graph tracer should only trace the functions defined
5839 * by set_ftrace_filter and set_ftrace_notrace. If another function
5840 * tracer ops is registered, the graph tracer requires testing the
5841 * function against the global ops, and not just trace any function
5842 * that any ftrace_ops registered.
5844 static void update_function_graph_func(void)
5846 struct ftrace_ops
*op
;
5847 bool do_test
= false;
5850 * The graph and global ops share the same set of functions
5851 * to test. If any other ops is on the list, then
5852 * the graph tracing needs to test if its the function
5855 do_for_each_ftrace_op(op
, ftrace_ops_list
) {
5856 if (op
!= &global_ops
&& op
!= &graph_ops
&&
5857 op
!= &ftrace_list_end
) {
5859 /* in double loop, break out with goto */
5862 } while_for_each_ftrace_op(op
);
5865 ftrace_graph_entry
= ftrace_graph_entry_test
;
5867 ftrace_graph_entry
= __ftrace_graph_entry
;
5870 static struct notifier_block ftrace_suspend_notifier
= {
5871 .notifier_call
= ftrace_suspend_notifier_call
,
5874 int register_ftrace_graph(trace_func_graph_ret_t retfunc
,
5875 trace_func_graph_ent_t entryfunc
)
5879 mutex_lock(&ftrace_lock
);
5881 /* we currently allow only one tracer registered at a time */
5882 if (ftrace_graph_active
) {
5887 register_pm_notifier(&ftrace_suspend_notifier
);
5889 ftrace_graph_active
++;
5890 ret
= start_graph_tracing();
5892 ftrace_graph_active
--;
5896 ftrace_graph_return
= retfunc
;
5899 * Update the indirect function to the entryfunc, and the
5900 * function that gets called to the entry_test first. Then
5901 * call the update fgraph entry function to determine if
5902 * the entryfunc should be called directly or not.
5904 __ftrace_graph_entry
= entryfunc
;
5905 ftrace_graph_entry
= ftrace_graph_entry_test
;
5906 update_function_graph_func();
5908 ret
= ftrace_startup(&graph_ops
, FTRACE_START_FUNC_RET
);
5910 mutex_unlock(&ftrace_lock
);
5914 void unregister_ftrace_graph(void)
5916 mutex_lock(&ftrace_lock
);
5918 if (unlikely(!ftrace_graph_active
))
5921 ftrace_graph_active
--;
5922 ftrace_graph_return
= (trace_func_graph_ret_t
)ftrace_stub
;
5923 ftrace_graph_entry
= ftrace_graph_entry_stub
;
5924 __ftrace_graph_entry
= ftrace_graph_entry_stub
;
5925 ftrace_shutdown(&graph_ops
, FTRACE_STOP_FUNC_RET
);
5926 unregister_pm_notifier(&ftrace_suspend_notifier
);
5927 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch
, NULL
);
5929 #ifdef CONFIG_DYNAMIC_FTRACE
5931 * Function graph does not allocate the trampoline, but
5932 * other global_ops do. We need to reset the ALLOC_TRAMP flag
5935 global_ops
.trampoline
= save_global_trampoline
;
5936 if (save_global_flags
& FTRACE_OPS_FL_ALLOC_TRAMP
)
5937 global_ops
.flags
|= FTRACE_OPS_FL_ALLOC_TRAMP
;
5941 mutex_unlock(&ftrace_lock
);
5944 static DEFINE_PER_CPU(struct ftrace_ret_stack
*, idle_ret_stack
);
5947 graph_init_task(struct task_struct
*t
, struct ftrace_ret_stack
*ret_stack
)
5949 atomic_set(&t
->tracing_graph_pause
, 0);
5950 atomic_set(&t
->trace_overrun
, 0);
5951 t
->ftrace_timestamp
= 0;
5952 /* make curr_ret_stack visible before we add the ret_stack */
5954 t
->ret_stack
= ret_stack
;
5958 * Allocate a return stack for the idle task. May be the first
5959 * time through, or it may be done by CPU hotplug online.
5961 void ftrace_graph_init_idle_task(struct task_struct
*t
, int cpu
)
5963 t
->curr_ret_stack
= -1;
5965 * The idle task has no parent, it either has its own
5966 * stack or no stack at all.
5969 WARN_ON(t
->ret_stack
!= per_cpu(idle_ret_stack
, cpu
));
5971 if (ftrace_graph_active
) {
5972 struct ftrace_ret_stack
*ret_stack
;
5974 ret_stack
= per_cpu(idle_ret_stack
, cpu
);
5976 ret_stack
= kmalloc(FTRACE_RETFUNC_DEPTH
5977 * sizeof(struct ftrace_ret_stack
),
5981 per_cpu(idle_ret_stack
, cpu
) = ret_stack
;
5983 graph_init_task(t
, ret_stack
);
5987 /* Allocate a return stack for newly created task */
5988 void ftrace_graph_init_task(struct task_struct
*t
)
5990 /* Make sure we do not use the parent ret_stack */
5991 t
->ret_stack
= NULL
;
5992 t
->curr_ret_stack
= -1;
5994 if (ftrace_graph_active
) {
5995 struct ftrace_ret_stack
*ret_stack
;
5997 ret_stack
= kmalloc(FTRACE_RETFUNC_DEPTH
5998 * sizeof(struct ftrace_ret_stack
),
6002 graph_init_task(t
, ret_stack
);
6006 void ftrace_graph_exit_task(struct task_struct
*t
)
6008 struct ftrace_ret_stack
*ret_stack
= t
->ret_stack
;
6010 t
->ret_stack
= NULL
;
6011 /* NULL must become visible to IRQs before we free it: */