2 * Infrastructure for profiling code inserted by 'gcc -pg'.
7 * Originally ported from the -rt patch by:
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 /* List for set_ftrace_pid's pids. */
93 LIST_HEAD(ftrace_pids);
95 struct list_head list;
99 static bool ftrace_pids_enabled(void)
101 return !list_empty(&ftrace_pids);
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 if (!test_tsk_trace_trace(current))
185 op->saved_func(ip, parent_ip, op, regs);
189 * clear_ftrace_function - reset the ftrace function
191 * This NULLs the ftrace function and in essence stops
192 * tracing. There may be lag
194 void clear_ftrace_function(void)
196 ftrace_trace_function = ftrace_stub;
199 static void per_cpu_ops_disable_all(struct ftrace_ops *ops)
203 for_each_possible_cpu(cpu)
204 *per_cpu_ptr(ops->disabled, cpu) = 1;
207 static int per_cpu_ops_alloc(struct ftrace_ops *ops)
209 int __percpu *disabled;
211 if (WARN_ON_ONCE(!(ops->flags & FTRACE_OPS_FL_PER_CPU)))
214 disabled = alloc_percpu(int);
218 ops->disabled = disabled;
219 per_cpu_ops_disable_all(ops);
223 static void ftrace_sync(struct work_struct *work)
226 * This function is just a stub to implement a hard force
227 * of synchronize_sched(). This requires synchronizing
228 * tasks even in userspace and idle.
230 * Yes, function tracing is rude.
234 static void ftrace_sync_ipi(void *data)
236 /* Probably not needed, but do it anyway */
240 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
241 static void update_function_graph_func(void);
243 /* Both enabled by default (can be cleared by function_graph tracer flags */
244 static bool fgraph_sleep_time = true;
245 static bool fgraph_graph_time = true;
248 static inline void update_function_graph_func(void) { }
252 static ftrace_func_t ftrace_ops_get_list_func(struct ftrace_ops *ops)
255 * If this is a dynamic, RCU, or per CPU ops, or we force list func,
256 * then it needs to call the list anyway.
258 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU |
259 FTRACE_OPS_FL_RCU) || FTRACE_FORCE_LIST_FUNC)
260 return ftrace_ops_list_func;
262 return ftrace_ops_get_func(ops);
265 static void update_ftrace_function(void)
270 * Prepare the ftrace_ops that the arch callback will use.
271 * If there's only one ftrace_ops registered, the ftrace_ops_list
272 * will point to the ops we want.
274 set_function_trace_op = ftrace_ops_list;
276 /* If there's no ftrace_ops registered, just call the stub function */
277 if (ftrace_ops_list == &ftrace_list_end) {
281 * If we are at the end of the list and this ops is
282 * recursion safe and not dynamic and the arch supports passing ops,
283 * then have the mcount trampoline call the function directly.
285 } else if (ftrace_ops_list->next == &ftrace_list_end) {
286 func = ftrace_ops_get_list_func(ftrace_ops_list);
289 /* Just use the default ftrace_ops */
290 set_function_trace_op = &ftrace_list_end;
291 func = ftrace_ops_list_func;
294 update_function_graph_func();
296 /* If there's no change, then do nothing more here */
297 if (ftrace_trace_function == func)
301 * If we are using the list function, it doesn't care
302 * about the function_trace_ops.
304 if (func == ftrace_ops_list_func) {
305 ftrace_trace_function = func;
307 * Don't even bother setting function_trace_ops,
308 * it would be racy to do so anyway.
313 #ifndef CONFIG_DYNAMIC_FTRACE
315 * For static tracing, we need to be a bit more careful.
316 * The function change takes affect immediately. Thus,
317 * we need to coorditate the setting of the function_trace_ops
318 * with the setting of the ftrace_trace_function.
320 * Set the function to the list ops, which will call the
321 * function we want, albeit indirectly, but it handles the
322 * ftrace_ops and doesn't depend on function_trace_op.
324 ftrace_trace_function = ftrace_ops_list_func;
326 * Make sure all CPUs see this. Yes this is slow, but static
327 * tracing is slow and nasty to have enabled.
329 schedule_on_each_cpu(ftrace_sync);
330 /* Now all cpus are using the list ops. */
331 function_trace_op = set_function_trace_op;
332 /* Make sure the function_trace_op is visible on all CPUs */
334 /* Nasty way to force a rmb on all cpus */
335 smp_call_function(ftrace_sync_ipi, NULL, 1);
336 /* OK, we are all set to update the ftrace_trace_function now! */
337 #endif /* !CONFIG_DYNAMIC_FTRACE */
339 ftrace_trace_function = func;
342 int using_ftrace_ops_list_func(void)
344 return ftrace_trace_function == ftrace_ops_list_func;
347 static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
351 * We are entering ops into the list but another
352 * CPU might be walking that list. We need to make sure
353 * the ops->next pointer is valid before another CPU sees
354 * the ops pointer included into the list.
356 rcu_assign_pointer(*list, ops);
359 static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
361 struct ftrace_ops **p;
364 * If we are removing the last function, then simply point
365 * to the ftrace_stub.
367 if (*list == ops && ops->next == &ftrace_list_end) {
368 *list = &ftrace_list_end;
372 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
383 static void ftrace_update_trampoline(struct ftrace_ops *ops);
385 static int __register_ftrace_function(struct ftrace_ops *ops)
387 if (ops->flags & FTRACE_OPS_FL_DELETED)
390 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
393 #ifndef CONFIG_DYNAMIC_FTRACE_WITH_REGS
395 * If the ftrace_ops specifies SAVE_REGS, then it only can be used
396 * if the arch supports it, or SAVE_REGS_IF_SUPPORTED is also set.
397 * Setting SAVE_REGS_IF_SUPPORTED makes SAVE_REGS irrelevant.
399 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS &&
400 !(ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED))
403 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED)
404 ops->flags |= FTRACE_OPS_FL_SAVE_REGS;
407 if (!core_kernel_data((unsigned long)ops))
408 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
410 if (ops->flags & FTRACE_OPS_FL_PER_CPU) {
411 if (per_cpu_ops_alloc(ops))
415 add_ftrace_ops(&ftrace_ops_list, ops);
417 /* Always save the function, and reset at unregistering */
418 ops->saved_func = ops->func;
420 if (ops->flags & FTRACE_OPS_FL_PID && ftrace_pids_enabled())
421 ops->func = ftrace_pid_func;
423 ftrace_update_trampoline(ops);
426 update_ftrace_function();
431 static int __unregister_ftrace_function(struct ftrace_ops *ops)
435 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
438 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
444 update_ftrace_function();
446 ops->func = ops->saved_func;
451 static void ftrace_update_pid_func(void)
453 bool enabled = ftrace_pids_enabled();
454 struct ftrace_ops *op;
456 /* Only do something if we are tracing something */
457 if (ftrace_trace_function == ftrace_stub)
460 do_for_each_ftrace_op(op, ftrace_ops_list) {
461 if (op->flags & FTRACE_OPS_FL_PID) {
462 op->func = enabled ? ftrace_pid_func :
464 ftrace_update_trampoline(op);
466 } while_for_each_ftrace_op(op);
468 update_ftrace_function();
471 #ifdef CONFIG_FUNCTION_PROFILER
472 struct ftrace_profile {
473 struct hlist_node node;
475 unsigned long counter;
476 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
477 unsigned long long time;
478 unsigned long long time_squared;
482 struct ftrace_profile_page {
483 struct ftrace_profile_page *next;
485 struct ftrace_profile records[];
488 struct ftrace_profile_stat {
490 struct hlist_head *hash;
491 struct ftrace_profile_page *pages;
492 struct ftrace_profile_page *start;
493 struct tracer_stat stat;
496 #define PROFILE_RECORDS_SIZE \
497 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
499 #define PROFILES_PER_PAGE \
500 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
502 static int ftrace_profile_enabled __read_mostly;
504 /* ftrace_profile_lock - synchronize the enable and disable of the profiler */
505 static DEFINE_MUTEX(ftrace_profile_lock);
507 static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
509 #define FTRACE_PROFILE_HASH_BITS 10
510 #define FTRACE_PROFILE_HASH_SIZE (1 << FTRACE_PROFILE_HASH_BITS)
513 function_stat_next(void *v, int idx)
515 struct ftrace_profile *rec = v;
516 struct ftrace_profile_page *pg;
518 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
524 if ((void *)rec >= (void *)&pg->records[pg->index]) {
528 rec = &pg->records[0];
536 static void *function_stat_start(struct tracer_stat *trace)
538 struct ftrace_profile_stat *stat =
539 container_of(trace, struct ftrace_profile_stat, stat);
541 if (!stat || !stat->start)
544 return function_stat_next(&stat->start->records[0], 0);
547 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
548 /* function graph compares on total time */
549 static int function_stat_cmp(void *p1, void *p2)
551 struct ftrace_profile *a = p1;
552 struct ftrace_profile *b = p2;
554 if (a->time < b->time)
556 if (a->time > b->time)
562 /* not function graph compares against hits */
563 static int function_stat_cmp(void *p1, void *p2)
565 struct ftrace_profile *a = p1;
566 struct ftrace_profile *b = p2;
568 if (a->counter < b->counter)
570 if (a->counter > b->counter)
577 static int function_stat_headers(struct seq_file *m)
579 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
580 seq_puts(m, " Function "
583 "--- ---- --- ---\n");
585 seq_puts(m, " Function Hit\n"
591 static int function_stat_show(struct seq_file *m, void *v)
593 struct ftrace_profile *rec = v;
594 char str[KSYM_SYMBOL_LEN];
596 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
597 static struct trace_seq s;
598 unsigned long long avg;
599 unsigned long long stddev;
601 mutex_lock(&ftrace_profile_lock);
603 /* we raced with function_profile_reset() */
604 if (unlikely(rec->counter == 0)) {
609 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
611 do_div(avg, rec->counter);
612 if (tracing_thresh && (avg < tracing_thresh))
616 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
617 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
619 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
622 /* Sample standard deviation (s^2) */
623 if (rec->counter <= 1)
627 * Apply Welford's method:
628 * s^2 = 1 / (n * (n-1)) * (n * \Sum (x_i)^2 - (\Sum x_i)^2)
630 stddev = rec->counter * rec->time_squared -
631 rec->time * rec->time;
634 * Divide only 1000 for ns^2 -> us^2 conversion.
635 * trace_print_graph_duration will divide 1000 again.
637 do_div(stddev, rec->counter * (rec->counter - 1) * 1000);
641 trace_print_graph_duration(rec->time, &s);
642 trace_seq_puts(&s, " ");
643 trace_print_graph_duration(avg, &s);
644 trace_seq_puts(&s, " ");
645 trace_print_graph_duration(stddev, &s);
646 trace_print_seq(m, &s);
650 mutex_unlock(&ftrace_profile_lock);
655 static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
657 struct ftrace_profile_page *pg;
659 pg = stat->pages = stat->start;
662 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
667 memset(stat->hash, 0,
668 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
671 int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
673 struct ftrace_profile_page *pg;
678 /* If we already allocated, do nothing */
682 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
686 #ifdef CONFIG_DYNAMIC_FTRACE
687 functions = ftrace_update_tot_cnt;
690 * We do not know the number of functions that exist because
691 * dynamic tracing is what counts them. With past experience
692 * we have around 20K functions. That should be more than enough.
693 * It is highly unlikely we will execute every function in
699 pg = stat->start = stat->pages;
701 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
703 for (i = 1; i < pages; i++) {
704 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
715 unsigned long tmp = (unsigned long)pg;
727 static int ftrace_profile_init_cpu(int cpu)
729 struct ftrace_profile_stat *stat;
732 stat = &per_cpu(ftrace_profile_stats, cpu);
735 /* If the profile is already created, simply reset it */
736 ftrace_profile_reset(stat);
741 * We are profiling all functions, but usually only a few thousand
742 * functions are hit. We'll make a hash of 1024 items.
744 size = FTRACE_PROFILE_HASH_SIZE;
746 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
751 /* Preallocate the function profiling pages */
752 if (ftrace_profile_pages_init(stat) < 0) {
761 static int ftrace_profile_init(void)
766 for_each_possible_cpu(cpu) {
767 ret = ftrace_profile_init_cpu(cpu);
775 /* interrupts must be disabled */
776 static struct ftrace_profile *
777 ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
779 struct ftrace_profile *rec;
780 struct hlist_head *hhd;
783 key = hash_long(ip, FTRACE_PROFILE_HASH_BITS);
784 hhd = &stat->hash[key];
786 if (hlist_empty(hhd))
789 hlist_for_each_entry_rcu_notrace(rec, hhd, node) {
797 static void ftrace_add_profile(struct ftrace_profile_stat *stat,
798 struct ftrace_profile *rec)
802 key = hash_long(rec->ip, FTRACE_PROFILE_HASH_BITS);
803 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
807 * The memory is already allocated, this simply finds a new record to use.
809 static struct ftrace_profile *
810 ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
812 struct ftrace_profile *rec = NULL;
814 /* prevent recursion (from NMIs) */
815 if (atomic_inc_return(&stat->disabled) != 1)
819 * Try to find the function again since an NMI
820 * could have added it
822 rec = ftrace_find_profiled_func(stat, ip);
826 if (stat->pages->index == PROFILES_PER_PAGE) {
827 if (!stat->pages->next)
829 stat->pages = stat->pages->next;
832 rec = &stat->pages->records[stat->pages->index++];
834 ftrace_add_profile(stat, rec);
837 atomic_dec(&stat->disabled);
843 function_profile_call(unsigned long ip, unsigned long parent_ip,
844 struct ftrace_ops *ops, struct pt_regs *regs)
846 struct ftrace_profile_stat *stat;
847 struct ftrace_profile *rec;
850 if (!ftrace_profile_enabled)
853 local_irq_save(flags);
855 stat = this_cpu_ptr(&ftrace_profile_stats);
856 if (!stat->hash || !ftrace_profile_enabled)
859 rec = ftrace_find_profiled_func(stat, ip);
861 rec = ftrace_profile_alloc(stat, ip);
868 local_irq_restore(flags);
871 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
872 static int profile_graph_entry(struct ftrace_graph_ent *trace)
874 function_profile_call(trace->func, 0, NULL, NULL);
878 static void profile_graph_return(struct ftrace_graph_ret *trace)
880 struct ftrace_profile_stat *stat;
881 unsigned long long calltime;
882 struct ftrace_profile *rec;
885 local_irq_save(flags);
886 stat = this_cpu_ptr(&ftrace_profile_stats);
887 if (!stat->hash || !ftrace_profile_enabled)
890 /* If the calltime was zero'd ignore it */
891 if (!trace->calltime)
894 calltime = trace->rettime - trace->calltime;
896 if (!fgraph_graph_time) {
899 index = trace->depth;
901 /* Append this call time to the parent time to subtract */
903 current->ret_stack[index - 1].subtime += calltime;
905 if (current->ret_stack[index].subtime < calltime)
906 calltime -= current->ret_stack[index].subtime;
911 rec = ftrace_find_profiled_func(stat, trace->func);
913 rec->time += calltime;
914 rec->time_squared += calltime * calltime;
918 local_irq_restore(flags);
921 static int register_ftrace_profiler(void)
923 return register_ftrace_graph(&profile_graph_return,
924 &profile_graph_entry);
927 static void unregister_ftrace_profiler(void)
929 unregister_ftrace_graph();
932 static struct ftrace_ops ftrace_profile_ops __read_mostly = {
933 .func = function_profile_call,
934 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED,
935 INIT_OPS_HASH(ftrace_profile_ops)
938 static int register_ftrace_profiler(void)
940 return register_ftrace_function(&ftrace_profile_ops);
943 static void unregister_ftrace_profiler(void)
945 unregister_ftrace_function(&ftrace_profile_ops);
947 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
950 ftrace_profile_write(struct file *filp, const char __user *ubuf,
951 size_t cnt, loff_t *ppos)
956 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
962 mutex_lock(&ftrace_profile_lock);
963 if (ftrace_profile_enabled ^ val) {
965 ret = ftrace_profile_init();
971 ret = register_ftrace_profiler();
976 ftrace_profile_enabled = 1;
978 ftrace_profile_enabled = 0;
980 * unregister_ftrace_profiler calls stop_machine
981 * so this acts like an synchronize_sched.
983 unregister_ftrace_profiler();
987 mutex_unlock(&ftrace_profile_lock);
995 ftrace_profile_read(struct file *filp, char __user *ubuf,
996 size_t cnt, loff_t *ppos)
998 char buf[64]; /* big enough to hold a number */
1001 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
1002 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
1005 static const struct file_operations ftrace_profile_fops = {
1006 .open = tracing_open_generic,
1007 .read = ftrace_profile_read,
1008 .write = ftrace_profile_write,
1009 .llseek = default_llseek,
1012 /* used to initialize the real stat files */
1013 static struct tracer_stat function_stats __initdata = {
1014 .name = "functions",
1015 .stat_start = function_stat_start,
1016 .stat_next = function_stat_next,
1017 .stat_cmp = function_stat_cmp,
1018 .stat_headers = function_stat_headers,
1019 .stat_show = function_stat_show
1022 static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
1024 struct ftrace_profile_stat *stat;
1025 struct dentry *entry;
1030 for_each_possible_cpu(cpu) {
1031 stat = &per_cpu(ftrace_profile_stats, cpu);
1033 /* allocate enough for function name + cpu number */
1034 name = kmalloc(32, GFP_KERNEL);
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 snprintf(name, 32, "function%d", cpu);
1047 stat->stat.name = name;
1048 ret = register_stat_tracer(&stat->stat);
1051 "Could not register function stat for cpu %d\n",
1058 entry = tracefs_create_file("function_profile_enabled", 0644,
1059 d_tracer, NULL, &ftrace_profile_fops);
1061 pr_warn("Could not create tracefs 'function_profile_enabled' entry\n");
1064 #else /* CONFIG_FUNCTION_PROFILER */
1065 static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
1068 #endif /* CONFIG_FUNCTION_PROFILER */
1070 static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1072 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1073 static int ftrace_graph_active;
1075 # define ftrace_graph_active 0
1078 #ifdef CONFIG_DYNAMIC_FTRACE
1080 static struct ftrace_ops *removed_ops;
1083 * Set when doing a global update, like enabling all recs or disabling them.
1084 * It is not set when just updating a single ftrace_ops.
1086 static bool update_all_ops;
1088 #ifndef CONFIG_FTRACE_MCOUNT_RECORD
1089 # error Dynamic ftrace depends on MCOUNT_RECORD
1092 static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
1094 struct ftrace_func_probe {
1095 struct hlist_node node;
1096 struct ftrace_probe_ops *ops;
1097 unsigned long flags;
1100 struct list_head free_list;
1103 struct ftrace_func_entry {
1104 struct hlist_node hlist;
1108 struct ftrace_hash {
1109 unsigned long size_bits;
1110 struct hlist_head *buckets;
1111 unsigned long count;
1112 struct rcu_head rcu;
1116 * We make these constant because no one should touch them,
1117 * but they are used as the default "empty hash", to avoid allocating
1118 * it all the time. These are in a read only section such that if
1119 * anyone does try to modify it, it will cause an exception.
1121 static const struct hlist_head empty_buckets[1];
1122 static const struct ftrace_hash empty_hash = {
1123 .buckets = (struct hlist_head *)empty_buckets,
1125 #define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
1127 static struct ftrace_ops global_ops = {
1128 .func = ftrace_stub,
1129 .local_hash.notrace_hash = EMPTY_HASH,
1130 .local_hash.filter_hash = EMPTY_HASH,
1131 INIT_OPS_HASH(global_ops)
1132 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
1133 FTRACE_OPS_FL_INITIALIZED |
1138 * This is used by __kernel_text_address() to return true if the
1139 * address is on a dynamically allocated trampoline that would
1140 * not return true for either core_kernel_text() or
1141 * is_module_text_address().
1143 bool is_ftrace_trampoline(unsigned long addr)
1145 struct ftrace_ops *op;
1149 * Some of the ops may be dynamically allocated,
1150 * they are freed after a synchronize_sched().
1152 preempt_disable_notrace();
1154 do_for_each_ftrace_op(op, ftrace_ops_list) {
1156 * This is to check for dynamically allocated trampolines.
1157 * Trampolines that are in kernel text will have
1158 * core_kernel_text() return true.
1160 if (op->trampoline && op->trampoline_size)
1161 if (addr >= op->trampoline &&
1162 addr < op->trampoline + op->trampoline_size) {
1166 } while_for_each_ftrace_op(op);
1169 preempt_enable_notrace();
1174 struct ftrace_page {
1175 struct ftrace_page *next;
1176 struct dyn_ftrace *records;
1181 #define ENTRY_SIZE sizeof(struct dyn_ftrace)
1182 #define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
1184 /* estimate from running different kernels */
1185 #define NR_TO_INIT 10000
1187 static struct ftrace_page *ftrace_pages_start;
1188 static struct ftrace_page *ftrace_pages;
1190 static bool __always_inline ftrace_hash_empty(struct ftrace_hash *hash)
1192 return !hash || !hash->count;
1195 static struct ftrace_func_entry *
1196 ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1199 struct ftrace_func_entry *entry;
1200 struct hlist_head *hhd;
1202 if (ftrace_hash_empty(hash))
1205 if (hash->size_bits > 0)
1206 key = hash_long(ip, hash->size_bits);
1210 hhd = &hash->buckets[key];
1212 hlist_for_each_entry_rcu_notrace(entry, hhd, hlist) {
1213 if (entry->ip == ip)
1219 static void __add_hash_entry(struct ftrace_hash *hash,
1220 struct ftrace_func_entry *entry)
1222 struct hlist_head *hhd;
1225 if (hash->size_bits)
1226 key = hash_long(entry->ip, hash->size_bits);
1230 hhd = &hash->buckets[key];
1231 hlist_add_head(&entry->hlist, hhd);
1235 static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1237 struct ftrace_func_entry *entry;
1239 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1244 __add_hash_entry(hash, entry);
1250 free_hash_entry(struct ftrace_hash *hash,
1251 struct ftrace_func_entry *entry)
1253 hlist_del(&entry->hlist);
1259 remove_hash_entry(struct ftrace_hash *hash,
1260 struct ftrace_func_entry *entry)
1262 hlist_del(&entry->hlist);
1266 static void ftrace_hash_clear(struct ftrace_hash *hash)
1268 struct hlist_head *hhd;
1269 struct hlist_node *tn;
1270 struct ftrace_func_entry *entry;
1271 int size = 1 << hash->size_bits;
1277 for (i = 0; i < size; i++) {
1278 hhd = &hash->buckets[i];
1279 hlist_for_each_entry_safe(entry, tn, hhd, hlist)
1280 free_hash_entry(hash, entry);
1282 FTRACE_WARN_ON(hash->count);
1285 static void free_ftrace_hash(struct ftrace_hash *hash)
1287 if (!hash || hash == EMPTY_HASH)
1289 ftrace_hash_clear(hash);
1290 kfree(hash->buckets);
1294 static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1296 struct ftrace_hash *hash;
1298 hash = container_of(rcu, struct ftrace_hash, rcu);
1299 free_ftrace_hash(hash);
1302 static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1304 if (!hash || hash == EMPTY_HASH)
1306 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1309 void ftrace_free_filter(struct ftrace_ops *ops)
1311 ftrace_ops_init(ops);
1312 free_ftrace_hash(ops->func_hash->filter_hash);
1313 free_ftrace_hash(ops->func_hash->notrace_hash);
1316 static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1318 struct ftrace_hash *hash;
1321 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1325 size = 1 << size_bits;
1326 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
1328 if (!hash->buckets) {
1333 hash->size_bits = size_bits;
1338 static struct ftrace_hash *
1339 alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1341 struct ftrace_func_entry *entry;
1342 struct ftrace_hash *new_hash;
1347 new_hash = alloc_ftrace_hash(size_bits);
1352 if (ftrace_hash_empty(hash))
1355 size = 1 << hash->size_bits;
1356 for (i = 0; i < size; i++) {
1357 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
1358 ret = add_hash_entry(new_hash, entry->ip);
1364 FTRACE_WARN_ON(new_hash->count != hash->count);
1369 free_ftrace_hash(new_hash);
1374 ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash);
1376 ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash);
1378 static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1379 struct ftrace_hash *new_hash);
1382 ftrace_hash_move(struct ftrace_ops *ops, int enable,
1383 struct ftrace_hash **dst, struct ftrace_hash *src)
1385 struct ftrace_func_entry *entry;
1386 struct hlist_node *tn;
1387 struct hlist_head *hhd;
1388 struct ftrace_hash *new_hash;
1389 int size = src->count;
1394 /* Reject setting notrace hash on IPMODIFY ftrace_ops */
1395 if (ops->flags & FTRACE_OPS_FL_IPMODIFY && !enable)
1399 * If the new source is empty, just free dst and assign it
1403 new_hash = EMPTY_HASH;
1408 * Make the hash size about 1/2 the # found
1410 for (size /= 2; size; size >>= 1)
1413 /* Don't allocate too much */
1414 if (bits > FTRACE_HASH_MAX_BITS)
1415 bits = FTRACE_HASH_MAX_BITS;
1417 new_hash = alloc_ftrace_hash(bits);
1421 size = 1 << src->size_bits;
1422 for (i = 0; i < size; i++) {
1423 hhd = &src->buckets[i];
1424 hlist_for_each_entry_safe(entry, tn, hhd, hlist) {
1425 remove_hash_entry(src, entry);
1426 __add_hash_entry(new_hash, entry);
1431 /* Make sure this can be applied if it is IPMODIFY ftrace_ops */
1433 /* IPMODIFY should be updated only when filter_hash updating */
1434 ret = ftrace_hash_ipmodify_update(ops, new_hash);
1436 free_ftrace_hash(new_hash);
1442 * Remove the current set, update the hash and add
1445 ftrace_hash_rec_disable_modify(ops, enable);
1447 rcu_assign_pointer(*dst, new_hash);
1449 ftrace_hash_rec_enable_modify(ops, enable);
1454 static bool hash_contains_ip(unsigned long ip,
1455 struct ftrace_ops_hash *hash)
1458 * The function record is a match if it exists in the filter
1459 * hash and not in the notrace hash. Note, an emty hash is
1460 * considered a match for the filter hash, but an empty
1461 * notrace hash is considered not in the notrace hash.
1463 return (ftrace_hash_empty(hash->filter_hash) ||
1464 ftrace_lookup_ip(hash->filter_hash, ip)) &&
1465 (ftrace_hash_empty(hash->notrace_hash) ||
1466 !ftrace_lookup_ip(hash->notrace_hash, ip));
1470 * Test the hashes for this ops to see if we want to call
1471 * the ops->func or not.
1473 * It's a match if the ip is in the ops->filter_hash or
1474 * the filter_hash does not exist or is empty,
1476 * the ip is not in the ops->notrace_hash.
1478 * This needs to be called with preemption disabled as
1479 * the hashes are freed with call_rcu_sched().
1482 ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
1484 struct ftrace_ops_hash hash;
1487 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1489 * There's a small race when adding ops that the ftrace handler
1490 * that wants regs, may be called without them. We can not
1491 * allow that handler to be called if regs is NULL.
1493 if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS))
1497 hash.filter_hash = rcu_dereference_raw_notrace(ops->func_hash->filter_hash);
1498 hash.notrace_hash = rcu_dereference_raw_notrace(ops->func_hash->notrace_hash);
1500 if (hash_contains_ip(ip, &hash))
1509 * This is a double for. Do not use 'break' to break out of the loop,
1510 * you must use a goto.
1512 #define do_for_each_ftrace_rec(pg, rec) \
1513 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1515 for (_____i = 0; _____i < pg->index; _____i++) { \
1516 rec = &pg->records[_____i];
1518 #define while_for_each_ftrace_rec() \
1523 static int ftrace_cmp_recs(const void *a, const void *b)
1525 const struct dyn_ftrace *key = a;
1526 const struct dyn_ftrace *rec = b;
1528 if (key->flags < rec->ip)
1530 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1535 static unsigned long ftrace_location_range(unsigned long start, unsigned long end)
1537 struct ftrace_page *pg;
1538 struct dyn_ftrace *rec;
1539 struct dyn_ftrace key;
1542 key.flags = end; /* overload flags, as it is unsigned long */
1544 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1545 if (end < pg->records[0].ip ||
1546 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1548 rec = bsearch(&key, pg->records, pg->index,
1549 sizeof(struct dyn_ftrace),
1559 * ftrace_location - return true if the ip giving is a traced location
1560 * @ip: the instruction pointer to check
1562 * Returns rec->ip if @ip given is a pointer to a ftrace location.
1563 * That is, the instruction that is either a NOP or call to
1564 * the function tracer. It checks the ftrace internal tables to
1565 * determine if the address belongs or not.
1567 unsigned long ftrace_location(unsigned long ip)
1569 return ftrace_location_range(ip, ip);
1573 * ftrace_text_reserved - return true if range contains an ftrace location
1574 * @start: start of range to search
1575 * @end: end of range to search (inclusive). @end points to the last byte to check.
1577 * Returns 1 if @start and @end contains a ftrace location.
1578 * That is, the instruction that is either a NOP or call to
1579 * the function tracer. It checks the ftrace internal tables to
1580 * determine if the address belongs or not.
1582 int ftrace_text_reserved(const void *start, const void *end)
1586 ret = ftrace_location_range((unsigned long)start,
1587 (unsigned long)end);
1592 /* Test if ops registered to this rec needs regs */
1593 static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec)
1595 struct ftrace_ops *ops;
1596 bool keep_regs = false;
1598 for (ops = ftrace_ops_list;
1599 ops != &ftrace_list_end; ops = ops->next) {
1600 /* pass rec in as regs to have non-NULL val */
1601 if (ftrace_ops_test(ops, rec->ip, rec)) {
1602 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1612 static void __ftrace_hash_rec_update(struct ftrace_ops *ops,
1616 struct ftrace_hash *hash;
1617 struct ftrace_hash *other_hash;
1618 struct ftrace_page *pg;
1619 struct dyn_ftrace *rec;
1623 /* Only update if the ops has been registered */
1624 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1628 * In the filter_hash case:
1629 * If the count is zero, we update all records.
1630 * Otherwise we just update the items in the hash.
1632 * In the notrace_hash case:
1633 * We enable the update in the hash.
1634 * As disabling notrace means enabling the tracing,
1635 * and enabling notrace means disabling, the inc variable
1639 hash = ops->func_hash->filter_hash;
1640 other_hash = ops->func_hash->notrace_hash;
1641 if (ftrace_hash_empty(hash))
1645 hash = ops->func_hash->notrace_hash;
1646 other_hash = ops->func_hash->filter_hash;
1648 * If the notrace hash has no items,
1649 * then there's nothing to do.
1651 if (ftrace_hash_empty(hash))
1655 do_for_each_ftrace_rec(pg, rec) {
1656 int in_other_hash = 0;
1660 if (rec->flags & FTRACE_FL_DISABLED)
1665 * Only the filter_hash affects all records.
1666 * Update if the record is not in the notrace hash.
1668 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
1671 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1672 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
1675 * If filter_hash is set, we want to match all functions
1676 * that are in the hash but not in the other hash.
1678 * If filter_hash is not set, then we are decrementing.
1679 * That means we match anything that is in the hash
1680 * and also in the other_hash. That is, we need to turn
1681 * off functions in the other hash because they are disabled
1684 if (filter_hash && in_hash && !in_other_hash)
1686 else if (!filter_hash && in_hash &&
1687 (in_other_hash || ftrace_hash_empty(other_hash)))
1695 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX))
1699 * If there's only a single callback registered to a
1700 * function, and the ops has a trampoline registered
1701 * for it, then we can call it directly.
1703 if (ftrace_rec_count(rec) == 1 && ops->trampoline)
1704 rec->flags |= FTRACE_FL_TRAMP;
1707 * If we are adding another function callback
1708 * to this function, and the previous had a
1709 * custom trampoline in use, then we need to go
1710 * back to the default trampoline.
1712 rec->flags &= ~FTRACE_FL_TRAMP;
1715 * If any ops wants regs saved for this function
1716 * then all ops will get saved regs.
1718 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1719 rec->flags |= FTRACE_FL_REGS;
1721 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0))
1726 * If the rec had REGS enabled and the ops that is
1727 * being removed had REGS set, then see if there is
1728 * still any ops for this record that wants regs.
1729 * If not, we can stop recording them.
1731 if (ftrace_rec_count(rec) > 0 &&
1732 rec->flags & FTRACE_FL_REGS &&
1733 ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1734 if (!test_rec_ops_needs_regs(rec))
1735 rec->flags &= ~FTRACE_FL_REGS;
1739 * If the rec had TRAMP enabled, then it needs to
1740 * be cleared. As TRAMP can only be enabled iff
1741 * there is only a single ops attached to it.
1742 * In otherwords, always disable it on decrementing.
1743 * In the future, we may set it if rec count is
1744 * decremented to one, and the ops that is left
1747 rec->flags &= ~FTRACE_FL_TRAMP;
1750 * flags will be cleared in ftrace_check_record()
1751 * if rec count is zero.
1755 /* Shortcut, if we handled all records, we are done. */
1756 if (!all && count == hash->count)
1758 } while_for_each_ftrace_rec();
1761 static void ftrace_hash_rec_disable(struct ftrace_ops *ops,
1764 __ftrace_hash_rec_update(ops, filter_hash, 0);
1767 static void ftrace_hash_rec_enable(struct ftrace_ops *ops,
1770 __ftrace_hash_rec_update(ops, filter_hash, 1);
1773 static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops,
1774 int filter_hash, int inc)
1776 struct ftrace_ops *op;
1778 __ftrace_hash_rec_update(ops, filter_hash, inc);
1780 if (ops->func_hash != &global_ops.local_hash)
1784 * If the ops shares the global_ops hash, then we need to update
1785 * all ops that are enabled and use this hash.
1787 do_for_each_ftrace_op(op, ftrace_ops_list) {
1791 if (op->func_hash == &global_ops.local_hash)
1792 __ftrace_hash_rec_update(op, filter_hash, inc);
1793 } while_for_each_ftrace_op(op);
1796 static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops,
1799 ftrace_hash_rec_update_modify(ops, filter_hash, 0);
1802 static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops,
1805 ftrace_hash_rec_update_modify(ops, filter_hash, 1);
1809 * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK
1810 * or no-needed to update, -EBUSY if it detects a conflict of the flag
1811 * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs.
1812 * Note that old_hash and new_hash has below meanings
1813 * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected)
1814 * - If the hash is EMPTY_HASH, it hits nothing
1815 * - Anything else hits the recs which match the hash entries.
1817 static int __ftrace_hash_update_ipmodify(struct ftrace_ops *ops,
1818 struct ftrace_hash *old_hash,
1819 struct ftrace_hash *new_hash)
1821 struct ftrace_page *pg;
1822 struct dyn_ftrace *rec, *end = NULL;
1825 /* Only update if the ops has been registered */
1826 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1829 if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY))
1833 * Since the IPMODIFY is a very address sensitive action, we do not
1834 * allow ftrace_ops to set all functions to new hash.
1836 if (!new_hash || !old_hash)
1839 /* Update rec->flags */
1840 do_for_each_ftrace_rec(pg, rec) {
1841 /* We need to update only differences of filter_hash */
1842 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1843 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1844 if (in_old == in_new)
1848 /* New entries must ensure no others are using it */
1849 if (rec->flags & FTRACE_FL_IPMODIFY)
1851 rec->flags |= FTRACE_FL_IPMODIFY;
1852 } else /* Removed entry */
1853 rec->flags &= ~FTRACE_FL_IPMODIFY;
1854 } while_for_each_ftrace_rec();
1861 /* Roll back what we did above */
1862 do_for_each_ftrace_rec(pg, rec) {
1866 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1867 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1868 if (in_old == in_new)
1872 rec->flags &= ~FTRACE_FL_IPMODIFY;
1874 rec->flags |= FTRACE_FL_IPMODIFY;
1875 } while_for_each_ftrace_rec();
1881 static int ftrace_hash_ipmodify_enable(struct ftrace_ops *ops)
1883 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1885 if (ftrace_hash_empty(hash))
1888 return __ftrace_hash_update_ipmodify(ops, EMPTY_HASH, hash);
1891 /* Disabling always succeeds */
1892 static void ftrace_hash_ipmodify_disable(struct ftrace_ops *ops)
1894 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1896 if (ftrace_hash_empty(hash))
1899 __ftrace_hash_update_ipmodify(ops, hash, EMPTY_HASH);
1902 static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1903 struct ftrace_hash *new_hash)
1905 struct ftrace_hash *old_hash = ops->func_hash->filter_hash;
1907 if (ftrace_hash_empty(old_hash))
1910 if (ftrace_hash_empty(new_hash))
1913 return __ftrace_hash_update_ipmodify(ops, old_hash, new_hash);
1916 static void print_ip_ins(const char *fmt, const unsigned char *p)
1920 printk(KERN_CONT "%s", fmt);
1922 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1923 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1926 static struct ftrace_ops *
1927 ftrace_find_tramp_ops_any(struct dyn_ftrace *rec);
1928 static struct ftrace_ops *
1929 ftrace_find_tramp_ops_next(struct dyn_ftrace *rec, struct ftrace_ops *ops);
1931 enum ftrace_bug_type ftrace_bug_type;
1932 const void *ftrace_expected;
1934 static void print_bug_type(void)
1936 switch (ftrace_bug_type) {
1937 case FTRACE_BUG_UNKNOWN:
1939 case FTRACE_BUG_INIT:
1940 pr_info("Initializing ftrace call sites\n");
1942 case FTRACE_BUG_NOP:
1943 pr_info("Setting ftrace call site to NOP\n");
1945 case FTRACE_BUG_CALL:
1946 pr_info("Setting ftrace call site to call ftrace function\n");
1948 case FTRACE_BUG_UPDATE:
1949 pr_info("Updating ftrace call site to call a different ftrace function\n");
1955 * ftrace_bug - report and shutdown function tracer
1956 * @failed: The failed type (EFAULT, EINVAL, EPERM)
1957 * @rec: The record that failed
1959 * The arch code that enables or disables the function tracing
1960 * can call ftrace_bug() when it has detected a problem in
1961 * modifying the code. @failed should be one of either:
1962 * EFAULT - if the problem happens on reading the @ip address
1963 * EINVAL - if what is read at @ip is not what was expected
1964 * EPERM - if the problem happens on writting to the @ip address
1966 void ftrace_bug(int failed, struct dyn_ftrace *rec)
1968 unsigned long ip = rec ? rec->ip : 0;
1972 FTRACE_WARN_ON_ONCE(1);
1973 pr_info("ftrace faulted on modifying ");
1977 FTRACE_WARN_ON_ONCE(1);
1978 pr_info("ftrace failed to modify ");
1980 print_ip_ins(" actual: ", (unsigned char *)ip);
1982 if (ftrace_expected) {
1983 print_ip_ins(" expected: ", ftrace_expected);
1988 FTRACE_WARN_ON_ONCE(1);
1989 pr_info("ftrace faulted on writing ");
1993 FTRACE_WARN_ON_ONCE(1);
1994 pr_info("ftrace faulted on unknown error ");
1999 struct ftrace_ops *ops = NULL;
2001 pr_info("ftrace record flags: %lx\n", rec->flags);
2002 pr_cont(" (%ld)%s", ftrace_rec_count(rec),
2003 rec->flags & FTRACE_FL_REGS ? " R" : " ");
2004 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2005 ops = ftrace_find_tramp_ops_any(rec);
2008 pr_cont("\ttramp: %pS (%pS)",
2009 (void *)ops->trampoline,
2011 ops = ftrace_find_tramp_ops_next(rec, ops);
2014 pr_cont("\ttramp: ERROR!");
2017 ip = ftrace_get_addr_curr(rec);
2018 pr_cont("\n expected tramp: %lx\n", ip);
2022 static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
2024 unsigned long flag = 0UL;
2026 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2028 if (rec->flags & FTRACE_FL_DISABLED)
2029 return FTRACE_UPDATE_IGNORE;
2032 * If we are updating calls:
2034 * If the record has a ref count, then we need to enable it
2035 * because someone is using it.
2037 * Otherwise we make sure its disabled.
2039 * If we are disabling calls, then disable all records that
2042 if (enable && ftrace_rec_count(rec))
2043 flag = FTRACE_FL_ENABLED;
2046 * If enabling and the REGS flag does not match the REGS_EN, or
2047 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
2048 * this record. Set flags to fail the compare against ENABLED.
2051 if (!(rec->flags & FTRACE_FL_REGS) !=
2052 !(rec->flags & FTRACE_FL_REGS_EN))
2053 flag |= FTRACE_FL_REGS;
2055 if (!(rec->flags & FTRACE_FL_TRAMP) !=
2056 !(rec->flags & FTRACE_FL_TRAMP_EN))
2057 flag |= FTRACE_FL_TRAMP;
2060 /* If the state of this record hasn't changed, then do nothing */
2061 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
2062 return FTRACE_UPDATE_IGNORE;
2065 /* Save off if rec is being enabled (for return value) */
2066 flag ^= rec->flags & FTRACE_FL_ENABLED;
2069 rec->flags |= FTRACE_FL_ENABLED;
2070 if (flag & FTRACE_FL_REGS) {
2071 if (rec->flags & FTRACE_FL_REGS)
2072 rec->flags |= FTRACE_FL_REGS_EN;
2074 rec->flags &= ~FTRACE_FL_REGS_EN;
2076 if (flag & FTRACE_FL_TRAMP) {
2077 if (rec->flags & FTRACE_FL_TRAMP)
2078 rec->flags |= FTRACE_FL_TRAMP_EN;
2080 rec->flags &= ~FTRACE_FL_TRAMP_EN;
2085 * If this record is being updated from a nop, then
2086 * return UPDATE_MAKE_CALL.
2088 * return UPDATE_MODIFY_CALL to tell the caller to convert
2089 * from the save regs, to a non-save regs function or
2090 * vice versa, or from a trampoline call.
2092 if (flag & FTRACE_FL_ENABLED) {
2093 ftrace_bug_type = FTRACE_BUG_CALL;
2094 return FTRACE_UPDATE_MAKE_CALL;
2097 ftrace_bug_type = FTRACE_BUG_UPDATE;
2098 return FTRACE_UPDATE_MODIFY_CALL;
2102 /* If there's no more users, clear all flags */
2103 if (!ftrace_rec_count(rec))
2107 * Just disable the record, but keep the ops TRAMP
2108 * and REGS states. The _EN flags must be disabled though.
2110 rec->flags &= ~(FTRACE_FL_ENABLED | FTRACE_FL_TRAMP_EN |
2114 ftrace_bug_type = FTRACE_BUG_NOP;
2115 return FTRACE_UPDATE_MAKE_NOP;
2119 * ftrace_update_record, set a record that now is tracing or not
2120 * @rec: the record to update
2121 * @enable: set to 1 if the record is tracing, zero to force disable
2123 * The records that represent all functions that can be traced need
2124 * to be updated when tracing has been enabled.
2126 int ftrace_update_record(struct dyn_ftrace *rec, int enable)
2128 return ftrace_check_record(rec, enable, 1);
2132 * ftrace_test_record, check if the record has been enabled or not
2133 * @rec: the record to test
2134 * @enable: set to 1 to check if enabled, 0 if it is disabled
2136 * The arch code may need to test if a record is already set to
2137 * tracing to determine how to modify the function code that it
2140 int ftrace_test_record(struct dyn_ftrace *rec, int enable)
2142 return ftrace_check_record(rec, enable, 0);
2145 static struct ftrace_ops *
2146 ftrace_find_tramp_ops_any(struct dyn_ftrace *rec)
2148 struct ftrace_ops *op;
2149 unsigned long ip = rec->ip;
2151 do_for_each_ftrace_op(op, ftrace_ops_list) {
2153 if (!op->trampoline)
2156 if (hash_contains_ip(ip, op->func_hash))
2158 } while_for_each_ftrace_op(op);
2163 static struct ftrace_ops *
2164 ftrace_find_tramp_ops_next(struct dyn_ftrace *rec,
2165 struct ftrace_ops *op)
2167 unsigned long ip = rec->ip;
2169 while_for_each_ftrace_op(op) {
2171 if (!op->trampoline)
2174 if (hash_contains_ip(ip, op->func_hash))
2181 static struct ftrace_ops *
2182 ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec)
2184 struct ftrace_ops *op;
2185 unsigned long ip = rec->ip;
2188 * Need to check removed ops first.
2189 * If they are being removed, and this rec has a tramp,
2190 * and this rec is in the ops list, then it would be the
2191 * one with the tramp.
2194 if (hash_contains_ip(ip, &removed_ops->old_hash))
2199 * Need to find the current trampoline for a rec.
2200 * Now, a trampoline is only attached to a rec if there
2201 * was a single 'ops' attached to it. But this can be called
2202 * when we are adding another op to the rec or removing the
2203 * current one. Thus, if the op is being added, we can
2204 * ignore it because it hasn't attached itself to the rec
2207 * If an ops is being modified (hooking to different functions)
2208 * then we don't care about the new functions that are being
2209 * added, just the old ones (that are probably being removed).
2211 * If we are adding an ops to a function that already is using
2212 * a trampoline, it needs to be removed (trampolines are only
2213 * for single ops connected), then an ops that is not being
2214 * modified also needs to be checked.
2216 do_for_each_ftrace_op(op, ftrace_ops_list) {
2218 if (!op->trampoline)
2222 * If the ops is being added, it hasn't gotten to
2223 * the point to be removed from this tree yet.
2225 if (op->flags & FTRACE_OPS_FL_ADDING)
2230 * If the ops is being modified and is in the old
2231 * hash, then it is probably being removed from this
2234 if ((op->flags & FTRACE_OPS_FL_MODIFYING) &&
2235 hash_contains_ip(ip, &op->old_hash))
2238 * If the ops is not being added or modified, and it's
2239 * in its normal filter hash, then this must be the one
2242 if (!(op->flags & FTRACE_OPS_FL_MODIFYING) &&
2243 hash_contains_ip(ip, op->func_hash))
2246 } while_for_each_ftrace_op(op);
2251 static struct ftrace_ops *
2252 ftrace_find_tramp_ops_new(struct dyn_ftrace *rec)
2254 struct ftrace_ops *op;
2255 unsigned long ip = rec->ip;
2257 do_for_each_ftrace_op(op, ftrace_ops_list) {
2258 /* pass rec in as regs to have non-NULL val */
2259 if (hash_contains_ip(ip, op->func_hash))
2261 } while_for_each_ftrace_op(op);
2267 * ftrace_get_addr_new - Get the call address to set to
2268 * @rec: The ftrace record descriptor
2270 * If the record has the FTRACE_FL_REGS set, that means that it
2271 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2272 * is not not set, then it wants to convert to the normal callback.
2274 * Returns the address of the trampoline to set to
2276 unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec)
2278 struct ftrace_ops *ops;
2280 /* Trampolines take precedence over regs */
2281 if (rec->flags & FTRACE_FL_TRAMP) {
2282 ops = ftrace_find_tramp_ops_new(rec);
2283 if (FTRACE_WARN_ON(!ops || !ops->trampoline)) {
2284 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2285 (void *)rec->ip, (void *)rec->ip, rec->flags);
2286 /* Ftrace is shutting down, return anything */
2287 return (unsigned long)FTRACE_ADDR;
2289 return ops->trampoline;
2292 if (rec->flags & FTRACE_FL_REGS)
2293 return (unsigned long)FTRACE_REGS_ADDR;
2295 return (unsigned long)FTRACE_ADDR;
2299 * ftrace_get_addr_curr - Get the call address that is already there
2300 * @rec: The ftrace record descriptor
2302 * The FTRACE_FL_REGS_EN is set when the record already points to
2303 * a function that saves all the regs. Basically the '_EN' version
2304 * represents the current state of the function.
2306 * Returns the address of the trampoline that is currently being called
2308 unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec)
2310 struct ftrace_ops *ops;
2312 /* Trampolines take precedence over regs */
2313 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2314 ops = ftrace_find_tramp_ops_curr(rec);
2315 if (FTRACE_WARN_ON(!ops)) {
2316 pr_warn("Bad trampoline accounting at: %p (%pS)\n",
2317 (void *)rec->ip, (void *)rec->ip);
2318 /* Ftrace is shutting down, return anything */
2319 return (unsigned long)FTRACE_ADDR;
2321 return ops->trampoline;
2324 if (rec->flags & FTRACE_FL_REGS_EN)
2325 return (unsigned long)FTRACE_REGS_ADDR;
2327 return (unsigned long)FTRACE_ADDR;
2331 __ftrace_replace_code(struct dyn_ftrace *rec, int enable)
2333 unsigned long ftrace_old_addr;
2334 unsigned long ftrace_addr;
2337 ftrace_addr = ftrace_get_addr_new(rec);
2339 /* This needs to be done before we call ftrace_update_record */
2340 ftrace_old_addr = ftrace_get_addr_curr(rec);
2342 ret = ftrace_update_record(rec, enable);
2344 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2347 case FTRACE_UPDATE_IGNORE:
2350 case FTRACE_UPDATE_MAKE_CALL:
2351 ftrace_bug_type = FTRACE_BUG_CALL;
2352 return ftrace_make_call(rec, ftrace_addr);
2354 case FTRACE_UPDATE_MAKE_NOP:
2355 ftrace_bug_type = FTRACE_BUG_NOP;
2356 return ftrace_make_nop(NULL, rec, ftrace_old_addr);
2358 case FTRACE_UPDATE_MODIFY_CALL:
2359 ftrace_bug_type = FTRACE_BUG_UPDATE;
2360 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
2363 return -1; /* unknow ftrace bug */
2366 void __weak ftrace_replace_code(int enable)
2368 struct dyn_ftrace *rec;
2369 struct ftrace_page *pg;
2372 if (unlikely(ftrace_disabled))
2375 do_for_each_ftrace_rec(pg, rec) {
2376 failed = __ftrace_replace_code(rec, enable);
2378 ftrace_bug(failed, rec);
2379 /* Stop processing */
2382 } while_for_each_ftrace_rec();
2385 struct ftrace_rec_iter {
2386 struct ftrace_page *pg;
2391 * ftrace_rec_iter_start, start up iterating over traced functions
2393 * Returns an iterator handle that is used to iterate over all
2394 * the records that represent address locations where functions
2397 * May return NULL if no records are available.
2399 struct ftrace_rec_iter *ftrace_rec_iter_start(void)
2402 * We only use a single iterator.
2403 * Protected by the ftrace_lock mutex.
2405 static struct ftrace_rec_iter ftrace_rec_iter;
2406 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
2408 iter->pg = ftrace_pages_start;
2411 /* Could have empty pages */
2412 while (iter->pg && !iter->pg->index)
2413 iter->pg = iter->pg->next;
2422 * ftrace_rec_iter_next, get the next record to process.
2423 * @iter: The handle to the iterator.
2425 * Returns the next iterator after the given iterator @iter.
2427 struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
2431 if (iter->index >= iter->pg->index) {
2432 iter->pg = iter->pg->next;
2435 /* Could have empty pages */
2436 while (iter->pg && !iter->pg->index)
2437 iter->pg = iter->pg->next;
2447 * ftrace_rec_iter_record, get the record at the iterator location
2448 * @iter: The current iterator location
2450 * Returns the record that the current @iter is at.
2452 struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
2454 return &iter->pg->records[iter->index];
2458 ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
2462 if (unlikely(ftrace_disabled))
2465 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
2467 ftrace_bug_type = FTRACE_BUG_INIT;
2468 ftrace_bug(ret, rec);
2475 * archs can override this function if they must do something
2476 * before the modifying code is performed.
2478 int __weak ftrace_arch_code_modify_prepare(void)
2484 * archs can override this function if they must do something
2485 * after the modifying code is performed.
2487 int __weak ftrace_arch_code_modify_post_process(void)
2492 void ftrace_modify_all_code(int command)
2494 int update = command & FTRACE_UPDATE_TRACE_FUNC;
2498 * If the ftrace_caller calls a ftrace_ops func directly,
2499 * we need to make sure that it only traces functions it
2500 * expects to trace. When doing the switch of functions,
2501 * we need to update to the ftrace_ops_list_func first
2502 * before the transition between old and new calls are set,
2503 * as the ftrace_ops_list_func will check the ops hashes
2504 * to make sure the ops are having the right functions
2508 err = ftrace_update_ftrace_func(ftrace_ops_list_func);
2509 if (FTRACE_WARN_ON(err))
2513 if (command & FTRACE_UPDATE_CALLS)
2514 ftrace_replace_code(1);
2515 else if (command & FTRACE_DISABLE_CALLS)
2516 ftrace_replace_code(0);
2518 if (update && ftrace_trace_function != ftrace_ops_list_func) {
2519 function_trace_op = set_function_trace_op;
2521 /* If irqs are disabled, we are in stop machine */
2522 if (!irqs_disabled())
2523 smp_call_function(ftrace_sync_ipi, NULL, 1);
2524 err = ftrace_update_ftrace_func(ftrace_trace_function);
2525 if (FTRACE_WARN_ON(err))
2529 if (command & FTRACE_START_FUNC_RET)
2530 err = ftrace_enable_ftrace_graph_caller();
2531 else if (command & FTRACE_STOP_FUNC_RET)
2532 err = ftrace_disable_ftrace_graph_caller();
2533 FTRACE_WARN_ON(err);
2536 static int __ftrace_modify_code(void *data)
2538 int *command = data;
2540 ftrace_modify_all_code(*command);
2546 * ftrace_run_stop_machine, go back to the stop machine method
2547 * @command: The command to tell ftrace what to do
2549 * If an arch needs to fall back to the stop machine method, the
2550 * it can call this function.
2552 void ftrace_run_stop_machine(int command)
2554 stop_machine(__ftrace_modify_code, &command, NULL);
2558 * arch_ftrace_update_code, modify the code to trace or not trace
2559 * @command: The command that needs to be done
2561 * Archs can override this function if it does not need to
2562 * run stop_machine() to modify code.
2564 void __weak arch_ftrace_update_code(int command)
2566 ftrace_run_stop_machine(command);
2569 static void ftrace_run_update_code(int command)
2573 ret = ftrace_arch_code_modify_prepare();
2574 FTRACE_WARN_ON(ret);
2579 * By default we use stop_machine() to modify the code.
2580 * But archs can do what ever they want as long as it
2581 * is safe. The stop_machine() is the safest, but also
2582 * produces the most overhead.
2584 arch_ftrace_update_code(command);
2586 ret = ftrace_arch_code_modify_post_process();
2587 FTRACE_WARN_ON(ret);
2590 static void ftrace_run_modify_code(struct ftrace_ops *ops, int command,
2591 struct ftrace_ops_hash *old_hash)
2593 ops->flags |= FTRACE_OPS_FL_MODIFYING;
2594 ops->old_hash.filter_hash = old_hash->filter_hash;
2595 ops->old_hash.notrace_hash = old_hash->notrace_hash;
2596 ftrace_run_update_code(command);
2597 ops->old_hash.filter_hash = NULL;
2598 ops->old_hash.notrace_hash = NULL;
2599 ops->flags &= ~FTRACE_OPS_FL_MODIFYING;
2602 static ftrace_func_t saved_ftrace_func;
2603 static int ftrace_start_up;
2605 void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops)
2609 static void per_cpu_ops_free(struct ftrace_ops *ops)
2611 free_percpu(ops->disabled);
2614 static void ftrace_startup_enable(int command)
2616 if (saved_ftrace_func != ftrace_trace_function) {
2617 saved_ftrace_func = ftrace_trace_function;
2618 command |= FTRACE_UPDATE_TRACE_FUNC;
2621 if (!command || !ftrace_enabled)
2624 ftrace_run_update_code(command);
2627 static void ftrace_startup_all(int command)
2629 update_all_ops = true;
2630 ftrace_startup_enable(command);
2631 update_all_ops = false;
2634 static int ftrace_startup(struct ftrace_ops *ops, int command)
2638 if (unlikely(ftrace_disabled))
2641 ret = __register_ftrace_function(ops);
2646 command |= FTRACE_UPDATE_CALLS;
2649 * Note that ftrace probes uses this to start up
2650 * and modify functions it will probe. But we still
2651 * set the ADDING flag for modification, as probes
2652 * do not have trampolines. If they add them in the
2653 * future, then the probes will need to distinguish
2654 * between adding and updating probes.
2656 ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING;
2658 ret = ftrace_hash_ipmodify_enable(ops);
2660 /* Rollback registration process */
2661 __unregister_ftrace_function(ops);
2663 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2667 ftrace_hash_rec_enable(ops, 1);
2669 ftrace_startup_enable(command);
2671 ops->flags &= ~FTRACE_OPS_FL_ADDING;
2676 static int ftrace_shutdown(struct ftrace_ops *ops, int command)
2680 if (unlikely(ftrace_disabled))
2683 ret = __unregister_ftrace_function(ops);
2689 * Just warn in case of unbalance, no need to kill ftrace, it's not
2690 * critical but the ftrace_call callers may be never nopped again after
2691 * further ftrace uses.
2693 WARN_ON_ONCE(ftrace_start_up < 0);
2695 /* Disabling ipmodify never fails */
2696 ftrace_hash_ipmodify_disable(ops);
2697 ftrace_hash_rec_disable(ops, 1);
2699 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2701 command |= FTRACE_UPDATE_CALLS;
2703 if (saved_ftrace_func != ftrace_trace_function) {
2704 saved_ftrace_func = ftrace_trace_function;
2705 command |= FTRACE_UPDATE_TRACE_FUNC;
2708 if (!command || !ftrace_enabled) {
2710 * If these are per_cpu ops, they still need their
2711 * per_cpu field freed. Since, function tracing is
2712 * not currently active, we can just free them
2713 * without synchronizing all CPUs.
2715 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2716 per_cpu_ops_free(ops);
2721 * If the ops uses a trampoline, then it needs to be
2722 * tested first on update.
2724 ops->flags |= FTRACE_OPS_FL_REMOVING;
2727 /* The trampoline logic checks the old hashes */
2728 ops->old_hash.filter_hash = ops->func_hash->filter_hash;
2729 ops->old_hash.notrace_hash = ops->func_hash->notrace_hash;
2731 ftrace_run_update_code(command);
2734 * If there's no more ops registered with ftrace, run a
2735 * sanity check to make sure all rec flags are cleared.
2737 if (ftrace_ops_list == &ftrace_list_end) {
2738 struct ftrace_page *pg;
2739 struct dyn_ftrace *rec;
2741 do_for_each_ftrace_rec(pg, rec) {
2742 if (FTRACE_WARN_ON_ONCE(rec->flags))
2743 pr_warn(" %pS flags:%lx\n",
2744 (void *)rec->ip, rec->flags);
2745 } while_for_each_ftrace_rec();
2748 ops->old_hash.filter_hash = NULL;
2749 ops->old_hash.notrace_hash = NULL;
2752 ops->flags &= ~FTRACE_OPS_FL_REMOVING;
2755 * Dynamic ops may be freed, we must make sure that all
2756 * callers are done before leaving this function.
2757 * The same goes for freeing the per_cpu data of the per_cpu
2760 * Again, normal synchronize_sched() is not good enough.
2761 * We need to do a hard force of sched synchronization.
2762 * This is because we use preempt_disable() to do RCU, but
2763 * the function tracers can be called where RCU is not watching
2764 * (like before user_exit()). We can not rely on the RCU
2765 * infrastructure to do the synchronization, thus we must do it
2768 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU)) {
2769 schedule_on_each_cpu(ftrace_sync);
2771 arch_ftrace_trampoline_free(ops);
2773 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2774 per_cpu_ops_free(ops);
2780 static void ftrace_startup_sysctl(void)
2784 if (unlikely(ftrace_disabled))
2787 /* Force update next time */
2788 saved_ftrace_func = NULL;
2789 /* ftrace_start_up is true if we want ftrace running */
2790 if (ftrace_start_up) {
2791 command = FTRACE_UPDATE_CALLS;
2792 if (ftrace_graph_active)
2793 command |= FTRACE_START_FUNC_RET;
2794 ftrace_startup_enable(command);
2798 static void ftrace_shutdown_sysctl(void)
2802 if (unlikely(ftrace_disabled))
2805 /* ftrace_start_up is true if ftrace is running */
2806 if (ftrace_start_up) {
2807 command = FTRACE_DISABLE_CALLS;
2808 if (ftrace_graph_active)
2809 command |= FTRACE_STOP_FUNC_RET;
2810 ftrace_run_update_code(command);
2814 static cycle_t ftrace_update_time;
2815 unsigned long ftrace_update_tot_cnt;
2817 static inline int ops_traces_mod(struct ftrace_ops *ops)
2820 * Filter_hash being empty will default to trace module.
2821 * But notrace hash requires a test of individual module functions.
2823 return ftrace_hash_empty(ops->func_hash->filter_hash) &&
2824 ftrace_hash_empty(ops->func_hash->notrace_hash);
2828 * Check if the current ops references the record.
2830 * If the ops traces all functions, then it was already accounted for.
2831 * If the ops does not trace the current record function, skip it.
2832 * If the ops ignores the function via notrace filter, skip it.
2835 ops_references_rec(struct ftrace_ops *ops, struct dyn_ftrace *rec)
2837 /* If ops isn't enabled, ignore it */
2838 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
2841 /* If ops traces all then it includes this function */
2842 if (ops_traces_mod(ops))
2845 /* The function must be in the filter */
2846 if (!ftrace_hash_empty(ops->func_hash->filter_hash) &&
2847 !ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))
2850 /* If in notrace hash, we ignore it too */
2851 if (ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip))
2857 static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs)
2859 struct ftrace_page *pg;
2860 struct dyn_ftrace *p;
2861 cycle_t start, stop;
2862 unsigned long update_cnt = 0;
2863 unsigned long rec_flags = 0;
2866 start = ftrace_now(raw_smp_processor_id());
2869 * When a module is loaded, this function is called to convert
2870 * the calls to mcount in its text to nops, and also to create
2871 * an entry in the ftrace data. Now, if ftrace is activated
2872 * after this call, but before the module sets its text to
2873 * read-only, the modification of enabling ftrace can fail if
2874 * the read-only is done while ftrace is converting the calls.
2875 * To prevent this, the module's records are set as disabled
2876 * and will be enabled after the call to set the module's text
2880 rec_flags |= FTRACE_FL_DISABLED;
2882 for (pg = new_pgs; pg; pg = pg->next) {
2884 for (i = 0; i < pg->index; i++) {
2886 /* If something went wrong, bail without enabling anything */
2887 if (unlikely(ftrace_disabled))
2890 p = &pg->records[i];
2891 p->flags = rec_flags;
2894 * Do the initial record conversion from mcount jump
2895 * to the NOP instructions.
2897 if (!ftrace_code_disable(mod, p))
2904 stop = ftrace_now(raw_smp_processor_id());
2905 ftrace_update_time = stop - start;
2906 ftrace_update_tot_cnt += update_cnt;
2911 static int ftrace_allocate_records(struct ftrace_page *pg, int count)
2916 if (WARN_ON(!count))
2919 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
2922 * We want to fill as much as possible. No more than a page
2925 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2929 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
2932 /* if we can't allocate this size, try something smaller */
2939 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
2948 static struct ftrace_page *
2949 ftrace_allocate_pages(unsigned long num_to_init)
2951 struct ftrace_page *start_pg;
2952 struct ftrace_page *pg;
2959 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
2964 * Try to allocate as much as possible in one continues
2965 * location that fills in all of the space. We want to
2966 * waste as little space as possible.
2969 cnt = ftrace_allocate_records(pg, num_to_init);
2977 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
2989 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
2990 free_pages((unsigned long)pg->records, order);
2991 start_pg = pg->next;
2995 pr_info("ftrace: FAILED to allocate memory for functions\n");
2999 #define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
3001 struct ftrace_iterator {
3004 struct ftrace_page *pg;
3005 struct dyn_ftrace *func;
3006 struct ftrace_func_probe *probe;
3007 struct trace_parser parser;
3008 struct ftrace_hash *hash;
3009 struct ftrace_ops *ops;
3016 t_hash_next(struct seq_file *m, loff_t *pos)
3018 struct ftrace_iterator *iter = m->private;
3019 struct hlist_node *hnd = NULL;
3020 struct hlist_head *hhd;
3026 hnd = &iter->probe->node;
3028 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
3031 hhd = &ftrace_func_hash[iter->hidx];
3033 if (hlist_empty(hhd)) {
3049 if (WARN_ON_ONCE(!hnd))
3052 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
3057 static void *t_hash_start(struct seq_file *m, loff_t *pos)
3059 struct ftrace_iterator *iter = m->private;
3063 if (!(iter->flags & FTRACE_ITER_DO_HASH))
3066 if (iter->func_pos > *pos)
3070 for (l = 0; l <= (*pos - iter->func_pos); ) {
3071 p = t_hash_next(m, &l);
3078 /* Only set this if we have an item */
3079 iter->flags |= FTRACE_ITER_HASH;
3085 t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
3087 struct ftrace_func_probe *rec;
3090 if (WARN_ON_ONCE(!rec))
3093 if (rec->ops->print)
3094 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
3096 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
3099 seq_printf(m, ":%p", rec->data);
3106 t_next(struct seq_file *m, void *v, loff_t *pos)
3108 struct ftrace_iterator *iter = m->private;
3109 struct ftrace_ops *ops = iter->ops;
3110 struct dyn_ftrace *rec = NULL;
3112 if (unlikely(ftrace_disabled))
3115 if (iter->flags & FTRACE_ITER_HASH)
3116 return t_hash_next(m, pos);
3119 iter->pos = iter->func_pos = *pos;
3121 if (iter->flags & FTRACE_ITER_PRINTALL)
3122 return t_hash_start(m, pos);
3125 if (iter->idx >= iter->pg->index) {
3126 if (iter->pg->next) {
3127 iter->pg = iter->pg->next;
3132 rec = &iter->pg->records[iter->idx++];
3133 if (((iter->flags & FTRACE_ITER_FILTER) &&
3134 !(ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))) ||
3136 ((iter->flags & FTRACE_ITER_NOTRACE) &&
3137 !ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip)) ||
3139 ((iter->flags & FTRACE_ITER_ENABLED) &&
3140 !(rec->flags & FTRACE_FL_ENABLED))) {
3148 return t_hash_start(m, pos);
3155 static void reset_iter_read(struct ftrace_iterator *iter)
3159 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_HASH);
3162 static void *t_start(struct seq_file *m, loff_t *pos)
3164 struct ftrace_iterator *iter = m->private;
3165 struct ftrace_ops *ops = iter->ops;
3169 mutex_lock(&ftrace_lock);
3171 if (unlikely(ftrace_disabled))
3175 * If an lseek was done, then reset and start from beginning.
3177 if (*pos < iter->pos)
3178 reset_iter_read(iter);
3181 * For set_ftrace_filter reading, if we have the filter
3182 * off, we can short cut and just print out that all
3183 * functions are enabled.
3185 if ((iter->flags & FTRACE_ITER_FILTER &&
3186 ftrace_hash_empty(ops->func_hash->filter_hash)) ||
3187 (iter->flags & FTRACE_ITER_NOTRACE &&
3188 ftrace_hash_empty(ops->func_hash->notrace_hash))) {
3190 return t_hash_start(m, pos);
3191 iter->flags |= FTRACE_ITER_PRINTALL;
3192 /* reset in case of seek/pread */
3193 iter->flags &= ~FTRACE_ITER_HASH;
3197 if (iter->flags & FTRACE_ITER_HASH)
3198 return t_hash_start(m, pos);
3201 * Unfortunately, we need to restart at ftrace_pages_start
3202 * every time we let go of the ftrace_mutex. This is because
3203 * those pointers can change without the lock.
3205 iter->pg = ftrace_pages_start;
3207 for (l = 0; l <= *pos; ) {
3208 p = t_next(m, p, &l);
3214 return t_hash_start(m, pos);
3219 static void t_stop(struct seq_file *m, void *p)
3221 mutex_unlock(&ftrace_lock);
3225 arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec)
3230 static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops,
3231 struct dyn_ftrace *rec)
3235 ptr = arch_ftrace_trampoline_func(ops, rec);
3237 seq_printf(m, " ->%pS", ptr);
3240 static int t_show(struct seq_file *m, void *v)
3242 struct ftrace_iterator *iter = m->private;
3243 struct dyn_ftrace *rec;
3245 if (iter->flags & FTRACE_ITER_HASH)
3246 return t_hash_show(m, iter);
3248 if (iter->flags & FTRACE_ITER_PRINTALL) {
3249 if (iter->flags & FTRACE_ITER_NOTRACE)
3250 seq_puts(m, "#### no functions disabled ####\n");
3252 seq_puts(m, "#### all functions enabled ####\n");
3261 seq_printf(m, "%ps", (void *)rec->ip);
3262 if (iter->flags & FTRACE_ITER_ENABLED) {
3263 struct ftrace_ops *ops;
3265 seq_printf(m, " (%ld)%s%s",
3266 ftrace_rec_count(rec),
3267 rec->flags & FTRACE_FL_REGS ? " R" : " ",
3268 rec->flags & FTRACE_FL_IPMODIFY ? " I" : " ");
3269 if (rec->flags & FTRACE_FL_TRAMP_EN) {
3270 ops = ftrace_find_tramp_ops_any(rec);
3273 seq_printf(m, "\ttramp: %pS (%pS)",
3274 (void *)ops->trampoline,
3276 add_trampoline_func(m, ops, rec);
3277 ops = ftrace_find_tramp_ops_next(rec, ops);
3280 seq_puts(m, "\ttramp: ERROR!");
3282 add_trampoline_func(m, NULL, rec);
3291 static const struct seq_operations show_ftrace_seq_ops = {
3299 ftrace_avail_open(struct inode *inode, struct file *file)
3301 struct ftrace_iterator *iter;
3303 if (unlikely(ftrace_disabled))
3306 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3308 iter->pg = ftrace_pages_start;
3309 iter->ops = &global_ops;
3312 return iter ? 0 : -ENOMEM;
3316 ftrace_enabled_open(struct inode *inode, struct file *file)
3318 struct ftrace_iterator *iter;
3320 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3322 iter->pg = ftrace_pages_start;
3323 iter->flags = FTRACE_ITER_ENABLED;
3324 iter->ops = &global_ops;
3327 return iter ? 0 : -ENOMEM;
3331 * ftrace_regex_open - initialize function tracer filter files
3332 * @ops: The ftrace_ops that hold the hash filters
3333 * @flag: The type of filter to process
3334 * @inode: The inode, usually passed in to your open routine
3335 * @file: The file, usually passed in to your open routine
3337 * ftrace_regex_open() initializes the filter files for the
3338 * @ops. Depending on @flag it may process the filter hash or
3339 * the notrace hash of @ops. With this called from the open
3340 * routine, you can use ftrace_filter_write() for the write
3341 * routine if @flag has FTRACE_ITER_FILTER set, or
3342 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
3343 * tracing_lseek() should be used as the lseek routine, and
3344 * release must call ftrace_regex_release().
3347 ftrace_regex_open(struct ftrace_ops *ops, int flag,
3348 struct inode *inode, struct file *file)
3350 struct ftrace_iterator *iter;
3351 struct ftrace_hash *hash;
3354 ftrace_ops_init(ops);
3356 if (unlikely(ftrace_disabled))
3359 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3363 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
3371 mutex_lock(&ops->func_hash->regex_lock);
3373 if (flag & FTRACE_ITER_NOTRACE)
3374 hash = ops->func_hash->notrace_hash;
3376 hash = ops->func_hash->filter_hash;
3378 if (file->f_mode & FMODE_WRITE) {
3379 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
3381 if (file->f_flags & O_TRUNC)
3382 iter->hash = alloc_ftrace_hash(size_bits);
3384 iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash);
3387 trace_parser_put(&iter->parser);
3394 if (file->f_mode & FMODE_READ) {
3395 iter->pg = ftrace_pages_start;
3397 ret = seq_open(file, &show_ftrace_seq_ops);
3399 struct seq_file *m = file->private_data;
3403 free_ftrace_hash(iter->hash);
3404 trace_parser_put(&iter->parser);
3408 file->private_data = iter;
3411 mutex_unlock(&ops->func_hash->regex_lock);
3417 ftrace_filter_open(struct inode *inode, struct file *file)
3419 struct ftrace_ops *ops = inode->i_private;
3421 return ftrace_regex_open(ops,
3422 FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH,
3427 ftrace_notrace_open(struct inode *inode, struct file *file)
3429 struct ftrace_ops *ops = inode->i_private;
3431 return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
3435 /* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */
3436 struct ftrace_glob {
3442 static int ftrace_match(char *str, struct ftrace_glob *g)
3449 if (strcmp(str, g->search) == 0)
3452 case MATCH_FRONT_ONLY:
3453 if (strncmp(str, g->search, g->len) == 0)
3456 case MATCH_MIDDLE_ONLY:
3457 if (strstr(str, g->search))
3460 case MATCH_END_ONLY:
3462 if (slen >= g->len &&
3463 memcmp(str + slen - g->len, g->search, g->len) == 0)
3472 enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int clear_filter)
3474 struct ftrace_func_entry *entry;
3477 entry = ftrace_lookup_ip(hash, rec->ip);
3479 /* Do nothing if it doesn't exist */
3483 free_hash_entry(hash, entry);
3485 /* Do nothing if it exists */
3489 ret = add_hash_entry(hash, rec->ip);
3495 ftrace_match_record(struct dyn_ftrace *rec, struct ftrace_glob *func_g,
3496 struct ftrace_glob *mod_g, int exclude_mod)
3498 char str[KSYM_SYMBOL_LEN];
3501 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
3504 int mod_matches = (modname) ? ftrace_match(modname, mod_g) : 0;
3506 /* blank module name to match all modules */
3508 /* blank module globbing: modname xor exclude_mod */
3509 if ((!exclude_mod) != (!modname))
3514 /* not matching the module */
3515 if (!modname || !mod_matches) {
3522 if (mod_matches && exclude_mod)
3526 /* blank search means to match all funcs in the mod */
3531 return ftrace_match(str, func_g);
3535 match_records(struct ftrace_hash *hash, char *func, int len, char *mod)
3537 struct ftrace_page *pg;
3538 struct dyn_ftrace *rec;
3539 struct ftrace_glob func_g = { .type = MATCH_FULL };
3540 struct ftrace_glob mod_g = { .type = MATCH_FULL };
3541 struct ftrace_glob *mod_match = (mod) ? &mod_g : NULL;
3542 int exclude_mod = 0;
3548 func_g.type = filter_parse_regex(func, len, &func_g.search,
3550 func_g.len = strlen(func_g.search);
3554 mod_g.type = filter_parse_regex(mod, strlen(mod),
3555 &mod_g.search, &exclude_mod);
3556 mod_g.len = strlen(mod_g.search);
3559 mutex_lock(&ftrace_lock);
3561 if (unlikely(ftrace_disabled))
3564 do_for_each_ftrace_rec(pg, rec) {
3565 if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) {
3566 ret = enter_record(hash, rec, clear_filter);
3573 } while_for_each_ftrace_rec();
3575 mutex_unlock(&ftrace_lock);
3581 ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
3583 return match_records(hash, buff, len, NULL);
3588 * We register the module command as a template to show others how
3589 * to register the a command as well.
3593 ftrace_mod_callback(struct ftrace_hash *hash,
3594 char *func, char *cmd, char *module, int enable)
3599 * cmd == 'mod' because we only registered this func
3600 * for the 'mod' ftrace_func_command.
3601 * But if you register one func with multiple commands,
3602 * you can tell which command was used by the cmd
3605 ret = match_records(hash, func, strlen(func), module);
3613 static struct ftrace_func_command ftrace_mod_cmd = {
3615 .func = ftrace_mod_callback,
3618 static int __init ftrace_mod_cmd_init(void)
3620 return register_ftrace_command(&ftrace_mod_cmd);
3622 core_initcall(ftrace_mod_cmd_init);
3624 static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
3625 struct ftrace_ops *op, struct pt_regs *pt_regs)
3627 struct ftrace_func_probe *entry;
3628 struct hlist_head *hhd;
3631 key = hash_long(ip, FTRACE_HASH_BITS);
3633 hhd = &ftrace_func_hash[key];
3635 if (hlist_empty(hhd))
3639 * Disable preemption for these calls to prevent a RCU grace
3640 * period. This syncs the hash iteration and freeing of items
3641 * on the hash. rcu_read_lock is too dangerous here.
3643 preempt_disable_notrace();
3644 hlist_for_each_entry_rcu_notrace(entry, hhd, node) {
3645 if (entry->ip == ip)
3646 entry->ops->func(ip, parent_ip, &entry->data);
3648 preempt_enable_notrace();
3651 static struct ftrace_ops trace_probe_ops __read_mostly =
3653 .func = function_trace_probe_call,
3654 .flags = FTRACE_OPS_FL_INITIALIZED,
3655 INIT_OPS_HASH(trace_probe_ops)
3658 static int ftrace_probe_registered;
3660 static void __enable_ftrace_function_probe(struct ftrace_ops_hash *old_hash)
3665 if (ftrace_probe_registered) {
3666 /* still need to update the function call sites */
3668 ftrace_run_modify_code(&trace_probe_ops, FTRACE_UPDATE_CALLS,
3673 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3674 struct hlist_head *hhd = &ftrace_func_hash[i];
3678 /* Nothing registered? */
3679 if (i == FTRACE_FUNC_HASHSIZE)
3682 ret = ftrace_startup(&trace_probe_ops, 0);
3684 ftrace_probe_registered = 1;
3687 static void __disable_ftrace_function_probe(void)
3691 if (!ftrace_probe_registered)
3694 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3695 struct hlist_head *hhd = &ftrace_func_hash[i];
3700 /* no more funcs left */
3701 ftrace_shutdown(&trace_probe_ops, 0);
3703 ftrace_probe_registered = 0;
3707 static void ftrace_free_entry(struct ftrace_func_probe *entry)
3709 if (entry->ops->free)
3710 entry->ops->free(entry->ops, entry->ip, &entry->data);
3715 register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
3718 struct ftrace_ops_hash old_hash_ops;
3719 struct ftrace_func_probe *entry;
3720 struct ftrace_glob func_g;
3721 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
3722 struct ftrace_hash *old_hash = *orig_hash;
3723 struct ftrace_hash *hash;
3724 struct ftrace_page *pg;
3725 struct dyn_ftrace *rec;
3731 func_g.type = filter_parse_regex(glob, strlen(glob),
3732 &func_g.search, ¬);
3733 func_g.len = strlen(func_g.search);
3735 /* we do not support '!' for function probes */
3739 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
3741 old_hash_ops.filter_hash = old_hash;
3742 /* Probes only have filters */
3743 old_hash_ops.notrace_hash = NULL;
3745 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
3751 if (unlikely(ftrace_disabled)) {
3756 mutex_lock(&ftrace_lock);
3758 do_for_each_ftrace_rec(pg, rec) {
3760 if (!ftrace_match_record(rec, &func_g, NULL, 0))
3763 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
3765 /* If we did not process any, then return error */
3776 * The caller might want to do something special
3777 * for each function we find. We call the callback
3778 * to give the caller an opportunity to do so.
3781 if (ops->init(ops, rec->ip, &entry->data) < 0) {
3782 /* caller does not like this func */
3788 ret = enter_record(hash, rec, 0);
3796 entry->ip = rec->ip;
3798 key = hash_long(entry->ip, FTRACE_HASH_BITS);
3799 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
3801 } while_for_each_ftrace_rec();
3803 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
3805 __enable_ftrace_function_probe(&old_hash_ops);
3808 free_ftrace_hash_rcu(old_hash);
3813 mutex_unlock(&ftrace_lock);
3815 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
3816 free_ftrace_hash(hash);
3822 PROBE_TEST_FUNC = 1,
3827 __unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
3828 void *data, int flags)
3830 struct ftrace_func_entry *rec_entry;
3831 struct ftrace_func_probe *entry;
3832 struct ftrace_func_probe *p;
3833 struct ftrace_glob func_g;
3834 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
3835 struct ftrace_hash *old_hash = *orig_hash;
3836 struct list_head free_list;
3837 struct ftrace_hash *hash;
3838 struct hlist_node *tmp;
3839 char str[KSYM_SYMBOL_LEN];
3842 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
3843 func_g.search = NULL;
3847 func_g.type = filter_parse_regex(glob, strlen(glob),
3848 &func_g.search, ¬);
3849 func_g.len = strlen(func_g.search);
3850 func_g.search = glob;
3852 /* we do not support '!' for function probes */
3857 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
3859 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3861 /* Hmm, should report this somehow */
3864 INIT_LIST_HEAD(&free_list);
3866 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3867 struct hlist_head *hhd = &ftrace_func_hash[i];
3869 hlist_for_each_entry_safe(entry, tmp, hhd, node) {
3871 /* break up if statements for readability */
3872 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
3875 if ((flags & PROBE_TEST_DATA) && entry->data != data)
3878 /* do this last, since it is the most expensive */
3879 if (func_g.search) {
3880 kallsyms_lookup(entry->ip, NULL, NULL,
3882 if (!ftrace_match(str, &func_g))
3886 rec_entry = ftrace_lookup_ip(hash, entry->ip);
3887 /* It is possible more than one entry had this ip */
3889 free_hash_entry(hash, rec_entry);
3891 hlist_del_rcu(&entry->node);
3892 list_add(&entry->free_list, &free_list);
3895 mutex_lock(&ftrace_lock);
3896 __disable_ftrace_function_probe();
3898 * Remove after the disable is called. Otherwise, if the last
3899 * probe is removed, a null hash means *all enabled*.
3901 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
3902 synchronize_sched();
3904 free_ftrace_hash_rcu(old_hash);
3906 list_for_each_entry_safe(entry, p, &free_list, free_list) {
3907 list_del(&entry->free_list);
3908 ftrace_free_entry(entry);
3910 mutex_unlock(&ftrace_lock);
3913 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
3914 free_ftrace_hash(hash);
3918 unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
3921 __unregister_ftrace_function_probe(glob, ops, data,
3922 PROBE_TEST_FUNC | PROBE_TEST_DATA);
3926 unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
3928 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
3931 void unregister_ftrace_function_probe_all(char *glob)
3933 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
3936 static LIST_HEAD(ftrace_commands);
3937 static DEFINE_MUTEX(ftrace_cmd_mutex);
3940 * Currently we only register ftrace commands from __init, so mark this
3943 __init int register_ftrace_command(struct ftrace_func_command *cmd)
3945 struct ftrace_func_command *p;
3948 mutex_lock(&ftrace_cmd_mutex);
3949 list_for_each_entry(p, &ftrace_commands, list) {
3950 if (strcmp(cmd->name, p->name) == 0) {
3955 list_add(&cmd->list, &ftrace_commands);
3957 mutex_unlock(&ftrace_cmd_mutex);
3963 * Currently we only unregister ftrace commands from __init, so mark
3966 __init int unregister_ftrace_command(struct ftrace_func_command *cmd)
3968 struct ftrace_func_command *p, *n;
3971 mutex_lock(&ftrace_cmd_mutex);
3972 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
3973 if (strcmp(cmd->name, p->name) == 0) {
3975 list_del_init(&p->list);
3980 mutex_unlock(&ftrace_cmd_mutex);
3985 static int ftrace_process_regex(struct ftrace_hash *hash,
3986 char *buff, int len, int enable)
3988 char *func, *command, *next = buff;
3989 struct ftrace_func_command *p;
3992 func = strsep(&next, ":");
3995 ret = ftrace_match_records(hash, func, len);
4005 command = strsep(&next, ":");
4007 mutex_lock(&ftrace_cmd_mutex);
4008 list_for_each_entry(p, &ftrace_commands, list) {
4009 if (strcmp(p->name, command) == 0) {
4010 ret = p->func(hash, func, command, next, enable);
4015 mutex_unlock(&ftrace_cmd_mutex);
4021 ftrace_regex_write(struct file *file, const char __user *ubuf,
4022 size_t cnt, loff_t *ppos, int enable)
4024 struct ftrace_iterator *iter;
4025 struct trace_parser *parser;
4031 if (file->f_mode & FMODE_READ) {
4032 struct seq_file *m = file->private_data;
4035 iter = file->private_data;
4037 if (unlikely(ftrace_disabled))
4040 /* iter->hash is a local copy, so we don't need regex_lock */
4042 parser = &iter->parser;
4043 read = trace_get_user(parser, ubuf, cnt, ppos);
4045 if (read >= 0 && trace_parser_loaded(parser) &&
4046 !trace_parser_cont(parser)) {
4047 ret = ftrace_process_regex(iter->hash, parser->buffer,
4048 parser->idx, enable);
4049 trace_parser_clear(parser);
4060 ftrace_filter_write(struct file *file, const char __user *ubuf,
4061 size_t cnt, loff_t *ppos)
4063 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
4067 ftrace_notrace_write(struct file *file, const char __user *ubuf,
4068 size_t cnt, loff_t *ppos)
4070 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
4074 ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
4076 struct ftrace_func_entry *entry;
4078 if (!ftrace_location(ip))
4082 entry = ftrace_lookup_ip(hash, ip);
4085 free_hash_entry(hash, entry);
4089 return add_hash_entry(hash, ip);
4092 static void ftrace_ops_update_code(struct ftrace_ops *ops,
4093 struct ftrace_ops_hash *old_hash)
4095 struct ftrace_ops *op;
4097 if (!ftrace_enabled)
4100 if (ops->flags & FTRACE_OPS_FL_ENABLED) {
4101 ftrace_run_modify_code(ops, FTRACE_UPDATE_CALLS, old_hash);
4106 * If this is the shared global_ops filter, then we need to
4107 * check if there is another ops that shares it, is enabled.
4108 * If so, we still need to run the modify code.
4110 if (ops->func_hash != &global_ops.local_hash)
4113 do_for_each_ftrace_op(op, ftrace_ops_list) {
4114 if (op->func_hash == &global_ops.local_hash &&
4115 op->flags & FTRACE_OPS_FL_ENABLED) {
4116 ftrace_run_modify_code(op, FTRACE_UPDATE_CALLS, old_hash);
4117 /* Only need to do this once */
4120 } while_for_each_ftrace_op(op);
4124 ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
4125 unsigned long ip, int remove, int reset, int enable)
4127 struct ftrace_hash **orig_hash;
4128 struct ftrace_ops_hash old_hash_ops;
4129 struct ftrace_hash *old_hash;
4130 struct ftrace_hash *hash;
4133 if (unlikely(ftrace_disabled))
4136 mutex_lock(&ops->func_hash->regex_lock);
4139 orig_hash = &ops->func_hash->filter_hash;
4141 orig_hash = &ops->func_hash->notrace_hash;
4144 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4146 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
4150 goto out_regex_unlock;
4153 if (buf && !ftrace_match_records(hash, buf, len)) {
4155 goto out_regex_unlock;
4158 ret = ftrace_match_addr(hash, ip, remove);
4160 goto out_regex_unlock;
4163 mutex_lock(&ftrace_lock);
4164 old_hash = *orig_hash;
4165 old_hash_ops.filter_hash = ops->func_hash->filter_hash;
4166 old_hash_ops.notrace_hash = ops->func_hash->notrace_hash;
4167 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
4169 ftrace_ops_update_code(ops, &old_hash_ops);
4170 free_ftrace_hash_rcu(old_hash);
4172 mutex_unlock(&ftrace_lock);
4175 mutex_unlock(&ops->func_hash->regex_lock);
4177 free_ftrace_hash(hash);
4182 ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove,
4183 int reset, int enable)
4185 return ftrace_set_hash(ops, 0, 0, ip, remove, reset, enable);
4189 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
4190 * @ops - the ops to set the filter with
4191 * @ip - the address to add to or remove from the filter.
4192 * @remove - non zero to remove the ip from the filter
4193 * @reset - non zero to reset all filters before applying this filter.
4195 * Filters denote which functions should be enabled when tracing is enabled
4196 * If @ip is NULL, it failes to update filter.
4198 int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
4199 int remove, int reset)
4201 ftrace_ops_init(ops);
4202 return ftrace_set_addr(ops, ip, remove, reset, 1);
4204 EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
4207 ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
4208 int reset, int enable)
4210 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
4214 * ftrace_set_filter - set a function to filter on in ftrace
4215 * @ops - the ops to set the filter with
4216 * @buf - the string that holds the function filter text.
4217 * @len - the length of the string.
4218 * @reset - non zero to reset all filters before applying this filter.
4220 * Filters denote which functions should be enabled when tracing is enabled.
4221 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4223 int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
4226 ftrace_ops_init(ops);
4227 return ftrace_set_regex(ops, buf, len, reset, 1);
4229 EXPORT_SYMBOL_GPL(ftrace_set_filter);
4232 * ftrace_set_notrace - set a function to not trace in ftrace
4233 * @ops - the ops to set the notrace filter with
4234 * @buf - the string that holds the function notrace text.
4235 * @len - the length of the string.
4236 * @reset - non zero to reset all filters before applying this filter.
4238 * Notrace Filters denote which functions should not be enabled when tracing
4239 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4242 int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
4245 ftrace_ops_init(ops);
4246 return ftrace_set_regex(ops, buf, len, reset, 0);
4248 EXPORT_SYMBOL_GPL(ftrace_set_notrace);
4250 * ftrace_set_global_filter - set a function to filter on with global tracers
4251 * @buf - the string that holds the function filter text.
4252 * @len - the length of the string.
4253 * @reset - non zero to reset all filters before applying this filter.
4255 * Filters denote which functions should be enabled when tracing is enabled.
4256 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4258 void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
4260 ftrace_set_regex(&global_ops, buf, len, reset, 1);
4262 EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
4265 * ftrace_set_global_notrace - set a function to not trace with global tracers
4266 * @buf - the string that holds the function notrace text.
4267 * @len - the length of the string.
4268 * @reset - non zero to reset all filters before applying this filter.
4270 * Notrace Filters denote which functions should not be enabled when tracing
4271 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4274 void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
4276 ftrace_set_regex(&global_ops, buf, len, reset, 0);
4278 EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
4281 * command line interface to allow users to set filters on boot up.
4283 #define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
4284 static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4285 static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
4287 /* Used by function selftest to not test if filter is set */
4288 bool ftrace_filter_param __initdata;
4290 static int __init set_ftrace_notrace(char *str)
4292 ftrace_filter_param = true;
4293 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
4296 __setup("ftrace_notrace=", set_ftrace_notrace);
4298 static int __init set_ftrace_filter(char *str)
4300 ftrace_filter_param = true;
4301 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
4304 __setup("ftrace_filter=", set_ftrace_filter);
4306 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
4307 static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
4308 static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4309 static int ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer);
4311 static unsigned long save_global_trampoline;
4312 static unsigned long save_global_flags;
4314 static int __init set_graph_function(char *str)
4316 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
4319 __setup("ftrace_graph_filter=", set_graph_function);
4321 static int __init set_graph_notrace_function(char *str)
4323 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
4326 __setup("ftrace_graph_notrace=", set_graph_notrace_function);
4328 static void __init set_ftrace_early_graph(char *buf, int enable)
4332 unsigned long *table = ftrace_graph_funcs;
4333 int *count = &ftrace_graph_count;
4336 table = ftrace_graph_notrace_funcs;
4337 count = &ftrace_graph_notrace_count;
4341 func = strsep(&buf, ",");
4342 /* we allow only one expression at a time */
4343 ret = ftrace_set_func(table, count, FTRACE_GRAPH_MAX_FUNCS, func);
4345 printk(KERN_DEBUG "ftrace: function %s not "
4346 "traceable\n", func);
4349 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4352 ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
4356 ftrace_ops_init(ops);
4359 func = strsep(&buf, ",");
4360 ftrace_set_regex(ops, func, strlen(func), 0, enable);
4364 static void __init set_ftrace_early_filters(void)
4366 if (ftrace_filter_buf[0])
4367 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
4368 if (ftrace_notrace_buf[0])
4369 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
4370 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
4371 if (ftrace_graph_buf[0])
4372 set_ftrace_early_graph(ftrace_graph_buf, 1);
4373 if (ftrace_graph_notrace_buf[0])
4374 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
4375 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4378 int ftrace_regex_release(struct inode *inode, struct file *file)
4380 struct seq_file *m = (struct seq_file *)file->private_data;
4381 struct ftrace_ops_hash old_hash_ops;
4382 struct ftrace_iterator *iter;
4383 struct ftrace_hash **orig_hash;
4384 struct ftrace_hash *old_hash;
4385 struct trace_parser *parser;
4389 if (file->f_mode & FMODE_READ) {
4391 seq_release(inode, file);
4393 iter = file->private_data;
4395 parser = &iter->parser;
4396 if (trace_parser_loaded(parser)) {
4397 parser->buffer[parser->idx] = 0;
4398 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
4401 trace_parser_put(parser);
4403 mutex_lock(&iter->ops->func_hash->regex_lock);
4405 if (file->f_mode & FMODE_WRITE) {
4406 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
4409 orig_hash = &iter->ops->func_hash->filter_hash;
4411 orig_hash = &iter->ops->func_hash->notrace_hash;
4413 mutex_lock(&ftrace_lock);
4414 old_hash = *orig_hash;
4415 old_hash_ops.filter_hash = iter->ops->func_hash->filter_hash;
4416 old_hash_ops.notrace_hash = iter->ops->func_hash->notrace_hash;
4417 ret = ftrace_hash_move(iter->ops, filter_hash,
4418 orig_hash, iter->hash);
4420 ftrace_ops_update_code(iter->ops, &old_hash_ops);
4421 free_ftrace_hash_rcu(old_hash);
4423 mutex_unlock(&ftrace_lock);
4426 mutex_unlock(&iter->ops->func_hash->regex_lock);
4427 free_ftrace_hash(iter->hash);
4433 static const struct file_operations ftrace_avail_fops = {
4434 .open = ftrace_avail_open,
4436 .llseek = seq_lseek,
4437 .release = seq_release_private,
4440 static const struct file_operations ftrace_enabled_fops = {
4441 .open = ftrace_enabled_open,
4443 .llseek = seq_lseek,
4444 .release = seq_release_private,
4447 static const struct file_operations ftrace_filter_fops = {
4448 .open = ftrace_filter_open,
4450 .write = ftrace_filter_write,
4451 .llseek = tracing_lseek,
4452 .release = ftrace_regex_release,
4455 static const struct file_operations ftrace_notrace_fops = {
4456 .open = ftrace_notrace_open,
4458 .write = ftrace_notrace_write,
4459 .llseek = tracing_lseek,
4460 .release = ftrace_regex_release,
4463 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
4465 static DEFINE_MUTEX(graph_lock);
4467 int ftrace_graph_count;
4468 int ftrace_graph_notrace_count;
4469 unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
4470 unsigned long ftrace_graph_notrace_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
4472 struct ftrace_graph_data {
4473 unsigned long *table;
4476 const struct seq_operations *seq_ops;
4480 __g_next(struct seq_file *m, loff_t *pos)
4482 struct ftrace_graph_data *fgd = m->private;
4484 if (*pos >= *fgd->count)
4486 return &fgd->table[*pos];
4490 g_next(struct seq_file *m, void *v, loff_t *pos)
4493 return __g_next(m, pos);
4496 static void *g_start(struct seq_file *m, loff_t *pos)
4498 struct ftrace_graph_data *fgd = m->private;
4500 mutex_lock(&graph_lock);
4502 /* Nothing, tell g_show to print all functions are enabled */
4503 if (!*fgd->count && !*pos)
4506 return __g_next(m, pos);
4509 static void g_stop(struct seq_file *m, void *p)
4511 mutex_unlock(&graph_lock);
4514 static int g_show(struct seq_file *m, void *v)
4516 unsigned long *ptr = v;
4521 if (ptr == (unsigned long *)1) {
4522 struct ftrace_graph_data *fgd = m->private;
4524 if (fgd->table == ftrace_graph_funcs)
4525 seq_puts(m, "#### all functions enabled ####\n");
4527 seq_puts(m, "#### no functions disabled ####\n");
4531 seq_printf(m, "%ps\n", (void *)*ptr);
4536 static const struct seq_operations ftrace_graph_seq_ops = {
4544 __ftrace_graph_open(struct inode *inode, struct file *file,
4545 struct ftrace_graph_data *fgd)
4549 mutex_lock(&graph_lock);
4550 if ((file->f_mode & FMODE_WRITE) &&
4551 (file->f_flags & O_TRUNC)) {
4553 memset(fgd->table, 0, fgd->size * sizeof(*fgd->table));
4555 mutex_unlock(&graph_lock);
4557 if (file->f_mode & FMODE_READ) {
4558 ret = seq_open(file, fgd->seq_ops);
4560 struct seq_file *m = file->private_data;
4564 file->private_data = fgd;
4570 ftrace_graph_open(struct inode *inode, struct file *file)
4572 struct ftrace_graph_data *fgd;
4574 if (unlikely(ftrace_disabled))
4577 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4581 fgd->table = ftrace_graph_funcs;
4582 fgd->size = FTRACE_GRAPH_MAX_FUNCS;
4583 fgd->count = &ftrace_graph_count;
4584 fgd->seq_ops = &ftrace_graph_seq_ops;
4586 return __ftrace_graph_open(inode, file, fgd);
4590 ftrace_graph_notrace_open(struct inode *inode, struct file *file)
4592 struct ftrace_graph_data *fgd;
4594 if (unlikely(ftrace_disabled))
4597 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4601 fgd->table = ftrace_graph_notrace_funcs;
4602 fgd->size = FTRACE_GRAPH_MAX_FUNCS;
4603 fgd->count = &ftrace_graph_notrace_count;
4604 fgd->seq_ops = &ftrace_graph_seq_ops;
4606 return __ftrace_graph_open(inode, file, fgd);
4610 ftrace_graph_release(struct inode *inode, struct file *file)
4612 if (file->f_mode & FMODE_READ) {
4613 struct seq_file *m = file->private_data;
4616 seq_release(inode, file);
4618 kfree(file->private_data);
4625 ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer)
4627 struct ftrace_glob func_g;
4628 struct dyn_ftrace *rec;
4629 struct ftrace_page *pg;
4636 func_g.type = filter_parse_regex(buffer, strlen(buffer),
4637 &func_g.search, ¬);
4638 if (!not && *idx >= size)
4641 func_g.len = strlen(func_g.search);
4643 mutex_lock(&ftrace_lock);
4645 if (unlikely(ftrace_disabled)) {
4646 mutex_unlock(&ftrace_lock);
4650 do_for_each_ftrace_rec(pg, rec) {
4652 if (ftrace_match_record(rec, &func_g, NULL, 0)) {
4653 /* if it is in the array */
4655 for (i = 0; i < *idx; i++) {
4656 if (array[i] == rec->ip) {
4665 array[(*idx)++] = rec->ip;
4671 array[i] = array[--(*idx)];
4677 } while_for_each_ftrace_rec();
4679 mutex_unlock(&ftrace_lock);
4688 ftrace_graph_write(struct file *file, const char __user *ubuf,
4689 size_t cnt, loff_t *ppos)
4691 struct trace_parser parser;
4692 ssize_t read, ret = 0;
4693 struct ftrace_graph_data *fgd = file->private_data;
4698 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX))
4701 read = trace_get_user(&parser, ubuf, cnt, ppos);
4703 if (read >= 0 && trace_parser_loaded((&parser))) {
4704 parser.buffer[parser.idx] = 0;
4706 mutex_lock(&graph_lock);
4708 /* we allow only one expression at a time */
4709 ret = ftrace_set_func(fgd->table, fgd->count, fgd->size,
4712 mutex_unlock(&graph_lock);
4718 trace_parser_put(&parser);
4723 static const struct file_operations ftrace_graph_fops = {
4724 .open = ftrace_graph_open,
4726 .write = ftrace_graph_write,
4727 .llseek = tracing_lseek,
4728 .release = ftrace_graph_release,
4731 static const struct file_operations ftrace_graph_notrace_fops = {
4732 .open = ftrace_graph_notrace_open,
4734 .write = ftrace_graph_write,
4735 .llseek = tracing_lseek,
4736 .release = ftrace_graph_release,
4738 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4740 void ftrace_create_filter_files(struct ftrace_ops *ops,
4741 struct dentry *parent)
4744 trace_create_file("set_ftrace_filter", 0644, parent,
4745 ops, &ftrace_filter_fops);
4747 trace_create_file("set_ftrace_notrace", 0644, parent,
4748 ops, &ftrace_notrace_fops);
4752 * The name "destroy_filter_files" is really a misnomer. Although
4753 * in the future, it may actualy delete the files, but this is
4754 * really intended to make sure the ops passed in are disabled
4755 * and that when this function returns, the caller is free to
4758 * The "destroy" name is only to match the "create" name that this
4759 * should be paired with.
4761 void ftrace_destroy_filter_files(struct ftrace_ops *ops)
4763 mutex_lock(&ftrace_lock);
4764 if (ops->flags & FTRACE_OPS_FL_ENABLED)
4765 ftrace_shutdown(ops, 0);
4766 ops->flags |= FTRACE_OPS_FL_DELETED;
4767 mutex_unlock(&ftrace_lock);
4770 static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer)
4773 trace_create_file("available_filter_functions", 0444,
4774 d_tracer, NULL, &ftrace_avail_fops);
4776 trace_create_file("enabled_functions", 0444,
4777 d_tracer, NULL, &ftrace_enabled_fops);
4779 ftrace_create_filter_files(&global_ops, d_tracer);
4781 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
4782 trace_create_file("set_graph_function", 0444, d_tracer,
4784 &ftrace_graph_fops);
4785 trace_create_file("set_graph_notrace", 0444, d_tracer,
4787 &ftrace_graph_notrace_fops);
4788 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4793 static int ftrace_cmp_ips(const void *a, const void *b)
4795 const unsigned long *ipa = a;
4796 const unsigned long *ipb = b;
4805 static int ftrace_process_locs(struct module *mod,
4806 unsigned long *start,
4809 struct ftrace_page *start_pg;
4810 struct ftrace_page *pg;
4811 struct dyn_ftrace *rec;
4812 unsigned long count;
4815 unsigned long flags = 0; /* Shut up gcc */
4818 count = end - start;
4823 sort(start, count, sizeof(*start),
4824 ftrace_cmp_ips, NULL);
4826 start_pg = ftrace_allocate_pages(count);
4830 mutex_lock(&ftrace_lock);
4833 * Core and each module needs their own pages, as
4834 * modules will free them when they are removed.
4835 * Force a new page to be allocated for modules.
4838 WARN_ON(ftrace_pages || ftrace_pages_start);
4839 /* First initialization */
4840 ftrace_pages = ftrace_pages_start = start_pg;
4845 if (WARN_ON(ftrace_pages->next)) {
4846 /* Hmm, we have free pages? */
4847 while (ftrace_pages->next)
4848 ftrace_pages = ftrace_pages->next;
4851 ftrace_pages->next = start_pg;
4857 addr = ftrace_call_adjust(*p++);
4859 * Some architecture linkers will pad between
4860 * the different mcount_loc sections of different
4861 * object files to satisfy alignments.
4862 * Skip any NULL pointers.
4867 if (pg->index == pg->size) {
4868 /* We should have allocated enough */
4869 if (WARN_ON(!pg->next))
4874 rec = &pg->records[pg->index++];
4878 /* We should have used all pages */
4881 /* Assign the last page to ftrace_pages */
4885 * We only need to disable interrupts on start up
4886 * because we are modifying code that an interrupt
4887 * may execute, and the modification is not atomic.
4888 * But for modules, nothing runs the code we modify
4889 * until we are finished with it, and there's no
4890 * reason to cause large interrupt latencies while we do it.
4893 local_irq_save(flags);
4894 ftrace_update_code(mod, start_pg);
4896 local_irq_restore(flags);
4899 mutex_unlock(&ftrace_lock);
4904 #ifdef CONFIG_MODULES
4906 #define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
4908 static int referenced_filters(struct dyn_ftrace *rec)
4910 struct ftrace_ops *ops;
4913 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
4914 if (ops_references_rec(ops, rec))
4921 void ftrace_release_mod(struct module *mod)
4923 struct dyn_ftrace *rec;
4924 struct ftrace_page **last_pg;
4925 struct ftrace_page *pg;
4928 mutex_lock(&ftrace_lock);
4930 if (ftrace_disabled)
4934 * Each module has its own ftrace_pages, remove
4935 * them from the list.
4937 last_pg = &ftrace_pages_start;
4938 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
4939 rec = &pg->records[0];
4940 if (within_module_core(rec->ip, mod)) {
4942 * As core pages are first, the first
4943 * page should never be a module page.
4945 if (WARN_ON(pg == ftrace_pages_start))
4948 /* Check if we are deleting the last page */
4949 if (pg == ftrace_pages)
4950 ftrace_pages = next_to_ftrace_page(last_pg);
4952 *last_pg = pg->next;
4953 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
4954 free_pages((unsigned long)pg->records, order);
4957 last_pg = &pg->next;
4960 mutex_unlock(&ftrace_lock);
4963 void ftrace_module_enable(struct module *mod)
4965 struct dyn_ftrace *rec;
4966 struct ftrace_page *pg;
4968 mutex_lock(&ftrace_lock);
4970 if (ftrace_disabled)
4974 * If the tracing is enabled, go ahead and enable the record.
4976 * The reason not to enable the record immediatelly is the
4977 * inherent check of ftrace_make_nop/ftrace_make_call for
4978 * correct previous instructions. Making first the NOP
4979 * conversion puts the module to the correct state, thus
4980 * passing the ftrace_make_call check.
4982 * We also delay this to after the module code already set the
4983 * text to read-only, as we now need to set it back to read-write
4984 * so that we can modify the text.
4986 if (ftrace_start_up)
4987 ftrace_arch_code_modify_prepare();
4989 do_for_each_ftrace_rec(pg, rec) {
4992 * do_for_each_ftrace_rec() is a double loop.
4993 * module text shares the pg. If a record is
4994 * not part of this module, then skip this pg,
4995 * which the "break" will do.
4997 if (!within_module_core(rec->ip, mod))
5003 * When adding a module, we need to check if tracers are
5004 * currently enabled and if they are, and can trace this record,
5005 * we need to enable the module functions as well as update the
5006 * reference counts for those function records.
5008 if (ftrace_start_up)
5009 cnt += referenced_filters(rec);
5011 /* This clears FTRACE_FL_DISABLED */
5014 if (ftrace_start_up && cnt) {
5015 int failed = __ftrace_replace_code(rec, 1);
5017 ftrace_bug(failed, rec);
5022 } while_for_each_ftrace_rec();
5025 if (ftrace_start_up)
5026 ftrace_arch_code_modify_post_process();
5029 mutex_unlock(&ftrace_lock);
5032 void ftrace_module_init(struct module *mod)
5034 if (ftrace_disabled || !mod->num_ftrace_callsites)
5037 ftrace_process_locs(mod, mod->ftrace_callsites,
5038 mod->ftrace_callsites + mod->num_ftrace_callsites);
5040 #endif /* CONFIG_MODULES */
5042 void __init ftrace_init(void)
5044 extern unsigned long __start_mcount_loc[];
5045 extern unsigned long __stop_mcount_loc[];
5046 unsigned long count, flags;
5049 local_irq_save(flags);
5050 ret = ftrace_dyn_arch_init();
5051 local_irq_restore(flags);
5055 count = __stop_mcount_loc - __start_mcount_loc;
5057 pr_info("ftrace: No functions to be traced?\n");
5061 pr_info("ftrace: allocating %ld entries in %ld pages\n",
5062 count, count / ENTRIES_PER_PAGE + 1);
5064 last_ftrace_enabled = ftrace_enabled = 1;
5066 ret = ftrace_process_locs(NULL,
5070 set_ftrace_early_filters();
5074 ftrace_disabled = 1;
5077 /* Do nothing if arch does not support this */
5078 void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
5082 static void ftrace_update_trampoline(struct ftrace_ops *ops)
5086 * Currently there's no safe way to free a trampoline when the kernel
5087 * is configured with PREEMPT. That is because a task could be preempted
5088 * when it jumped to the trampoline, it may be preempted for a long time
5089 * depending on the system load, and currently there's no way to know
5090 * when it will be off the trampoline. If the trampoline is freed
5091 * too early, when the task runs again, it will be executing on freed
5094 #ifdef CONFIG_PREEMPT
5095 /* Currently, only non dynamic ops can have a trampoline */
5096 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
5100 arch_ftrace_update_trampoline(ops);
5105 static struct ftrace_ops global_ops = {
5106 .func = ftrace_stub,
5107 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5108 FTRACE_OPS_FL_INITIALIZED |
5112 static int __init ftrace_nodyn_init(void)
5117 core_initcall(ftrace_nodyn_init);
5119 static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; }
5120 static inline void ftrace_startup_enable(int command) { }
5121 static inline void ftrace_startup_all(int command) { }
5122 /* Keep as macros so we do not need to define the commands */
5123 # define ftrace_startup(ops, command) \
5125 int ___ret = __register_ftrace_function(ops); \
5127 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
5130 # define ftrace_shutdown(ops, command) \
5132 int ___ret = __unregister_ftrace_function(ops); \
5134 (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \
5138 # define ftrace_startup_sysctl() do { } while (0)
5139 # define ftrace_shutdown_sysctl() do { } while (0)
5142 ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
5147 static void ftrace_update_trampoline(struct ftrace_ops *ops)
5151 #endif /* CONFIG_DYNAMIC_FTRACE */
5153 __init void ftrace_init_global_array_ops(struct trace_array *tr)
5155 tr->ops = &global_ops;
5156 tr->ops->private = tr;
5159 void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
5161 /* If we filter on pids, update to use the pid function */
5162 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
5163 if (WARN_ON(tr->ops->func != ftrace_stub))
5164 printk("ftrace ops had %pS for function\n",
5167 tr->ops->func = func;
5168 tr->ops->private = tr;
5171 void ftrace_reset_array_ops(struct trace_array *tr)
5173 tr->ops->func = ftrace_stub;
5177 __ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
5178 struct ftrace_ops *ignored, struct pt_regs *regs)
5180 struct ftrace_ops *op;
5183 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5188 * Some of the ops may be dynamically allocated,
5189 * they must be freed after a synchronize_sched().
5191 preempt_disable_notrace();
5193 do_for_each_ftrace_op(op, ftrace_ops_list) {
5195 * Check the following for each ops before calling their func:
5196 * if RCU flag is set, then rcu_is_watching() must be true
5197 * if PER_CPU is set, then ftrace_function_local_disable()
5199 * Otherwise test if the ip matches the ops filter
5201 * If any of the above fails then the op->func() is not executed.
5203 if ((!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching()) &&
5204 (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5205 !ftrace_function_local_disabled(op)) &&
5206 ftrace_ops_test(op, ip, regs)) {
5208 if (FTRACE_WARN_ON(!op->func)) {
5209 pr_warn("op=%p %pS\n", op, op);
5212 op->func(ip, parent_ip, op, regs);
5214 } while_for_each_ftrace_op(op);
5216 preempt_enable_notrace();
5217 trace_clear_recursion(bit);
5221 * Some archs only support passing ip and parent_ip. Even though
5222 * the list function ignores the op parameter, we do not want any
5223 * C side effects, where a function is called without the caller
5224 * sending a third parameter.
5225 * Archs are to support both the regs and ftrace_ops at the same time.
5226 * If they support ftrace_ops, it is assumed they support regs.
5227 * If call backs want to use regs, they must either check for regs
5228 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
5229 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
5230 * An architecture can pass partial regs with ftrace_ops and still
5231 * set the ARCH_SUPPORTS_FTRACE_OPS.
5233 #if ARCH_SUPPORTS_FTRACE_OPS
5234 static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
5235 struct ftrace_ops *op, struct pt_regs *regs)
5237 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
5240 static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip)
5242 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
5247 * If there's only one function registered but it does not support
5248 * recursion, needs RCU protection and/or requires per cpu handling, then
5249 * this function will be called by the mcount trampoline.
5251 static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
5252 struct ftrace_ops *op, struct pt_regs *regs)
5256 if ((op->flags & FTRACE_OPS_FL_RCU) && !rcu_is_watching())
5259 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5263 preempt_disable_notrace();
5265 if (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5266 !ftrace_function_local_disabled(op)) {
5267 op->func(ip, parent_ip, op, regs);
5270 preempt_enable_notrace();
5271 trace_clear_recursion(bit);
5275 * ftrace_ops_get_func - get the function a trampoline should call
5276 * @ops: the ops to get the function for
5278 * Normally the mcount trampoline will call the ops->func, but there
5279 * are times that it should not. For example, if the ops does not
5280 * have its own recursion protection, then it should call the
5281 * ftrace_ops_recurs_func() instead.
5283 * Returns the function that the trampoline should call for @ops.
5285 ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
5288 * If the function does not handle recursion, needs to be RCU safe,
5289 * or does per cpu logic, then we need to call the assist handler.
5291 if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE) ||
5292 ops->flags & (FTRACE_OPS_FL_RCU | FTRACE_OPS_FL_PER_CPU))
5293 return ftrace_ops_assist_func;
5298 static void clear_ftrace_swapper(void)
5300 struct task_struct *p;
5304 for_each_online_cpu(cpu) {
5306 clear_tsk_trace_trace(p);
5311 static void set_ftrace_swapper(void)
5313 struct task_struct *p;
5317 for_each_online_cpu(cpu) {
5319 set_tsk_trace_trace(p);
5324 static void clear_ftrace_pid(struct pid *pid)
5326 struct task_struct *p;
5329 do_each_pid_task(pid, PIDTYPE_PID, p) {
5330 clear_tsk_trace_trace(p);
5331 } while_each_pid_task(pid, PIDTYPE_PID, p);
5337 static void set_ftrace_pid(struct pid *pid)
5339 struct task_struct *p;
5342 do_each_pid_task(pid, PIDTYPE_PID, p) {
5343 set_tsk_trace_trace(p);
5344 } while_each_pid_task(pid, PIDTYPE_PID, p);
5348 static void clear_ftrace_pid_task(struct pid *pid)
5350 if (pid == ftrace_swapper_pid)
5351 clear_ftrace_swapper();
5353 clear_ftrace_pid(pid);
5356 static void set_ftrace_pid_task(struct pid *pid)
5358 if (pid == ftrace_swapper_pid)
5359 set_ftrace_swapper();
5361 set_ftrace_pid(pid);
5364 static int ftrace_pid_add(int p)
5367 struct ftrace_pid *fpid;
5370 mutex_lock(&ftrace_lock);
5373 pid = ftrace_swapper_pid;
5375 pid = find_get_pid(p);
5382 list_for_each_entry(fpid, &ftrace_pids, list)
5383 if (fpid->pid == pid)
5388 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
5392 list_add(&fpid->list, &ftrace_pids);
5395 set_ftrace_pid_task(pid);
5397 ftrace_update_pid_func();
5399 ftrace_startup_all(0);
5401 mutex_unlock(&ftrace_lock);
5405 if (pid != ftrace_swapper_pid)
5409 mutex_unlock(&ftrace_lock);
5413 static void ftrace_pid_reset(void)
5415 struct ftrace_pid *fpid, *safe;
5417 mutex_lock(&ftrace_lock);
5418 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
5419 struct pid *pid = fpid->pid;
5421 clear_ftrace_pid_task(pid);
5423 list_del(&fpid->list);
5427 ftrace_update_pid_func();
5428 ftrace_startup_all(0);
5430 mutex_unlock(&ftrace_lock);
5433 static void *fpid_start(struct seq_file *m, loff_t *pos)
5435 mutex_lock(&ftrace_lock);
5437 if (!ftrace_pids_enabled() && (!*pos))
5440 return seq_list_start(&ftrace_pids, *pos);
5443 static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
5448 return seq_list_next(v, &ftrace_pids, pos);
5451 static void fpid_stop(struct seq_file *m, void *p)
5453 mutex_unlock(&ftrace_lock);
5456 static int fpid_show(struct seq_file *m, void *v)
5458 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
5460 if (v == (void *)1) {
5461 seq_puts(m, "no pid\n");
5465 if (fpid->pid == ftrace_swapper_pid)
5466 seq_puts(m, "swapper tasks\n");
5468 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
5473 static const struct seq_operations ftrace_pid_sops = {
5474 .start = fpid_start,
5481 ftrace_pid_open(struct inode *inode, struct file *file)
5485 if ((file->f_mode & FMODE_WRITE) &&
5486 (file->f_flags & O_TRUNC))
5489 if (file->f_mode & FMODE_READ)
5490 ret = seq_open(file, &ftrace_pid_sops);
5496 ftrace_pid_write(struct file *filp, const char __user *ubuf,
5497 size_t cnt, loff_t *ppos)
5503 if (cnt >= sizeof(buf))
5506 if (copy_from_user(&buf, ubuf, cnt))
5512 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
5513 * to clean the filter quietly.
5515 tmp = strstrip(buf);
5516 if (strlen(tmp) == 0)
5519 ret = kstrtol(tmp, 10, &val);
5523 ret = ftrace_pid_add(val);
5525 return ret ? ret : cnt;
5529 ftrace_pid_release(struct inode *inode, struct file *file)
5531 if (file->f_mode & FMODE_READ)
5532 seq_release(inode, file);
5537 static const struct file_operations ftrace_pid_fops = {
5538 .open = ftrace_pid_open,
5539 .write = ftrace_pid_write,
5541 .llseek = tracing_lseek,
5542 .release = ftrace_pid_release,
5545 static __init int ftrace_init_tracefs(void)
5547 struct dentry *d_tracer;
5549 d_tracer = tracing_init_dentry();
5550 if (IS_ERR(d_tracer))
5553 ftrace_init_dyn_tracefs(d_tracer);
5555 trace_create_file("set_ftrace_pid", 0644, d_tracer,
5556 NULL, &ftrace_pid_fops);
5558 ftrace_profile_tracefs(d_tracer);
5562 fs_initcall(ftrace_init_tracefs);
5565 * ftrace_kill - kill ftrace
5567 * This function should be used by panic code. It stops ftrace
5568 * but in a not so nice way. If you need to simply kill ftrace
5569 * from a non-atomic section, use ftrace_kill.
5571 void ftrace_kill(void)
5573 ftrace_disabled = 1;
5575 clear_ftrace_function();
5579 * Test if ftrace is dead or not.
5581 int ftrace_is_dead(void)
5583 return ftrace_disabled;
5587 * register_ftrace_function - register a function for profiling
5588 * @ops - ops structure that holds the function for profiling.
5590 * Register a function to be called by all functions in the
5593 * Note: @ops->func and all the functions it calls must be labeled
5594 * with "notrace", otherwise it will go into a
5597 int register_ftrace_function(struct ftrace_ops *ops)
5601 ftrace_ops_init(ops);
5603 mutex_lock(&ftrace_lock);
5605 ret = ftrace_startup(ops, 0);
5607 mutex_unlock(&ftrace_lock);
5611 EXPORT_SYMBOL_GPL(register_ftrace_function);
5614 * unregister_ftrace_function - unregister a function for profiling.
5615 * @ops - ops structure that holds the function to unregister
5617 * Unregister a function that was added to be called by ftrace profiling.
5619 int unregister_ftrace_function(struct ftrace_ops *ops)
5623 mutex_lock(&ftrace_lock);
5624 ret = ftrace_shutdown(ops, 0);
5625 mutex_unlock(&ftrace_lock);
5629 EXPORT_SYMBOL_GPL(unregister_ftrace_function);
5632 ftrace_enable_sysctl(struct ctl_table *table, int write,
5633 void __user *buffer, size_t *lenp,
5638 mutex_lock(&ftrace_lock);
5640 if (unlikely(ftrace_disabled))
5643 ret = proc_dointvec(table, write, buffer, lenp, ppos);
5645 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
5648 last_ftrace_enabled = !!ftrace_enabled;
5650 if (ftrace_enabled) {
5652 /* we are starting ftrace again */
5653 if (ftrace_ops_list != &ftrace_list_end)
5654 update_ftrace_function();
5656 ftrace_startup_sysctl();
5659 /* stopping ftrace calls (just send to ftrace_stub) */
5660 ftrace_trace_function = ftrace_stub;
5662 ftrace_shutdown_sysctl();
5666 mutex_unlock(&ftrace_lock);
5670 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
5672 static struct ftrace_ops graph_ops = {
5673 .func = ftrace_stub,
5674 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5675 FTRACE_OPS_FL_INITIALIZED |
5678 #ifdef FTRACE_GRAPH_TRAMP_ADDR
5679 .trampoline = FTRACE_GRAPH_TRAMP_ADDR,
5680 /* trampoline_size is only needed for dynamically allocated tramps */
5682 ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash)
5685 void ftrace_graph_sleep_time_control(bool enable)
5687 fgraph_sleep_time = enable;
5690 void ftrace_graph_graph_time_control(bool enable)
5692 fgraph_graph_time = enable;
5695 int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
5700 /* The callbacks that hook a function */
5701 trace_func_graph_ret_t ftrace_graph_return =
5702 (trace_func_graph_ret_t)ftrace_stub;
5703 trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
5704 static trace_func_graph_ent_t __ftrace_graph_entry = ftrace_graph_entry_stub;
5706 /* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
5707 static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
5711 unsigned long flags;
5712 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
5713 struct task_struct *g, *t;
5715 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
5716 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
5717 * sizeof(struct ftrace_ret_stack),
5719 if (!ret_stack_list[i]) {
5727 read_lock_irqsave(&tasklist_lock, flags);
5728 do_each_thread(g, t) {
5734 if (t->ret_stack == NULL) {
5735 atomic_set(&t->tracing_graph_pause, 0);
5736 atomic_set(&t->trace_overrun, 0);
5737 t->curr_ret_stack = -1;
5738 /* Make sure the tasks see the -1 first: */
5740 t->ret_stack = ret_stack_list[start++];
5742 } while_each_thread(g, t);
5745 read_unlock_irqrestore(&tasklist_lock, flags);
5747 for (i = start; i < end; i++)
5748 kfree(ret_stack_list[i]);
5753 ftrace_graph_probe_sched_switch(void *ignore, bool preempt,
5754 struct task_struct *prev, struct task_struct *next)
5756 unsigned long long timestamp;
5760 * Does the user want to count the time a function was asleep.
5761 * If so, do not update the time stamps.
5763 if (fgraph_sleep_time)
5766 timestamp = trace_clock_local();
5768 prev->ftrace_timestamp = timestamp;
5770 /* only process tasks that we timestamped */
5771 if (!next->ftrace_timestamp)
5775 * Update all the counters in next to make up for the
5776 * time next was sleeping.
5778 timestamp -= next->ftrace_timestamp;
5780 for (index = next->curr_ret_stack; index >= 0; index--)
5781 next->ret_stack[index].calltime += timestamp;
5784 /* Allocate a return stack for each task */
5785 static int start_graph_tracing(void)
5787 struct ftrace_ret_stack **ret_stack_list;
5790 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
5791 sizeof(struct ftrace_ret_stack *),
5794 if (!ret_stack_list)
5797 /* The cpu_boot init_task->ret_stack will never be freed */
5798 for_each_online_cpu(cpu) {
5799 if (!idle_task(cpu)->ret_stack)
5800 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
5804 ret = alloc_retstack_tasklist(ret_stack_list);
5805 } while (ret == -EAGAIN);
5808 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
5810 pr_info("ftrace_graph: Couldn't activate tracepoint"
5811 " probe to kernel_sched_switch\n");
5814 kfree(ret_stack_list);
5819 * Hibernation protection.
5820 * The state of the current task is too much unstable during
5821 * suspend/restore to disk. We want to protect against that.
5824 ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
5828 case PM_HIBERNATION_PREPARE:
5829 pause_graph_tracing();
5832 case PM_POST_HIBERNATION:
5833 unpause_graph_tracing();
5839 static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace)
5841 if (!ftrace_ops_test(&global_ops, trace->func, NULL))
5843 return __ftrace_graph_entry(trace);
5847 * The function graph tracer should only trace the functions defined
5848 * by set_ftrace_filter and set_ftrace_notrace. If another function
5849 * tracer ops is registered, the graph tracer requires testing the
5850 * function against the global ops, and not just trace any function
5851 * that any ftrace_ops registered.
5853 static void update_function_graph_func(void)
5855 struct ftrace_ops *op;
5856 bool do_test = false;
5859 * The graph and global ops share the same set of functions
5860 * to test. If any other ops is on the list, then
5861 * the graph tracing needs to test if its the function
5864 do_for_each_ftrace_op(op, ftrace_ops_list) {
5865 if (op != &global_ops && op != &graph_ops &&
5866 op != &ftrace_list_end) {
5868 /* in double loop, break out with goto */
5871 } while_for_each_ftrace_op(op);
5874 ftrace_graph_entry = ftrace_graph_entry_test;
5876 ftrace_graph_entry = __ftrace_graph_entry;
5879 static struct notifier_block ftrace_suspend_notifier = {
5880 .notifier_call = ftrace_suspend_notifier_call,
5883 int register_ftrace_graph(trace_func_graph_ret_t retfunc,
5884 trace_func_graph_ent_t entryfunc)
5888 mutex_lock(&ftrace_lock);
5890 /* we currently allow only one tracer registered at a time */
5891 if (ftrace_graph_active) {
5896 register_pm_notifier(&ftrace_suspend_notifier);
5898 ftrace_graph_active++;
5899 ret = start_graph_tracing();
5901 ftrace_graph_active--;
5905 ftrace_graph_return = retfunc;
5908 * Update the indirect function to the entryfunc, and the
5909 * function that gets called to the entry_test first. Then
5910 * call the update fgraph entry function to determine if
5911 * the entryfunc should be called directly or not.
5913 __ftrace_graph_entry = entryfunc;
5914 ftrace_graph_entry = ftrace_graph_entry_test;
5915 update_function_graph_func();
5917 ret = ftrace_startup(&graph_ops, FTRACE_START_FUNC_RET);
5919 mutex_unlock(&ftrace_lock);
5923 void unregister_ftrace_graph(void)
5925 mutex_lock(&ftrace_lock);
5927 if (unlikely(!ftrace_graph_active))
5930 ftrace_graph_active--;
5931 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
5932 ftrace_graph_entry = ftrace_graph_entry_stub;
5933 __ftrace_graph_entry = ftrace_graph_entry_stub;
5934 ftrace_shutdown(&graph_ops, FTRACE_STOP_FUNC_RET);
5935 unregister_pm_notifier(&ftrace_suspend_notifier);
5936 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
5938 #ifdef CONFIG_DYNAMIC_FTRACE
5940 * Function graph does not allocate the trampoline, but
5941 * other global_ops do. We need to reset the ALLOC_TRAMP flag
5944 global_ops.trampoline = save_global_trampoline;
5945 if (save_global_flags & FTRACE_OPS_FL_ALLOC_TRAMP)
5946 global_ops.flags |= FTRACE_OPS_FL_ALLOC_TRAMP;
5950 mutex_unlock(&ftrace_lock);
5953 static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
5956 graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
5958 atomic_set(&t->tracing_graph_pause, 0);
5959 atomic_set(&t->trace_overrun, 0);
5960 t->ftrace_timestamp = 0;
5961 /* make curr_ret_stack visible before we add the ret_stack */
5963 t->ret_stack = ret_stack;
5967 * Allocate a return stack for the idle task. May be the first
5968 * time through, or it may be done by CPU hotplug online.
5970 void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
5972 t->curr_ret_stack = -1;
5974 * The idle task has no parent, it either has its own
5975 * stack or no stack at all.
5978 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
5980 if (ftrace_graph_active) {
5981 struct ftrace_ret_stack *ret_stack;
5983 ret_stack = per_cpu(idle_ret_stack, cpu);
5985 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
5986 * sizeof(struct ftrace_ret_stack),
5990 per_cpu(idle_ret_stack, cpu) = ret_stack;
5992 graph_init_task(t, ret_stack);
5996 /* Allocate a return stack for newly created task */
5997 void ftrace_graph_init_task(struct task_struct *t)
5999 /* Make sure we do not use the parent ret_stack */
6000 t->ret_stack = NULL;
6001 t->curr_ret_stack = -1;
6003 if (ftrace_graph_active) {
6004 struct ftrace_ret_stack *ret_stack;
6006 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
6007 * sizeof(struct ftrace_ret_stack),
6011 graph_init_task(t, ret_stack);
6015 void ftrace_graph_exit_task(struct task_struct *t)
6017 struct ftrace_ret_stack *ret_stack = t->ret_stack;
6019 t->ret_stack = NULL;
6020 /* NULL must become visible to IRQs before we free it: */