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_warning("Could not create tracefs "
1062 "'function_profile_enabled' entry\n");
1065 #else /* CONFIG_FUNCTION_PROFILER */
1066 static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
1069 #endif /* CONFIG_FUNCTION_PROFILER */
1071 static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1073 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1074 static int ftrace_graph_active;
1076 # define ftrace_graph_active 0
1079 #ifdef CONFIG_DYNAMIC_FTRACE
1081 static struct ftrace_ops *removed_ops;
1084 * Set when doing a global update, like enabling all recs or disabling them.
1085 * It is not set when just updating a single ftrace_ops.
1087 static bool update_all_ops;
1089 #ifndef CONFIG_FTRACE_MCOUNT_RECORD
1090 # error Dynamic ftrace depends on MCOUNT_RECORD
1093 static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
1095 struct ftrace_func_probe {
1096 struct hlist_node node;
1097 struct ftrace_probe_ops *ops;
1098 unsigned long flags;
1101 struct list_head free_list;
1104 struct ftrace_func_entry {
1105 struct hlist_node hlist;
1109 struct ftrace_hash {
1110 unsigned long size_bits;
1111 struct hlist_head *buckets;
1112 unsigned long count;
1113 struct rcu_head rcu;
1117 * We make these constant because no one should touch them,
1118 * but they are used as the default "empty hash", to avoid allocating
1119 * it all the time. These are in a read only section such that if
1120 * anyone does try to modify it, it will cause an exception.
1122 static const struct hlist_head empty_buckets[1];
1123 static const struct ftrace_hash empty_hash = {
1124 .buckets = (struct hlist_head *)empty_buckets,
1126 #define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
1128 static struct ftrace_ops global_ops = {
1129 .func = ftrace_stub,
1130 .local_hash.notrace_hash = EMPTY_HASH,
1131 .local_hash.filter_hash = EMPTY_HASH,
1132 INIT_OPS_HASH(global_ops)
1133 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
1134 FTRACE_OPS_FL_INITIALIZED |
1139 * This is used by __kernel_text_address() to return true if the
1140 * address is on a dynamically allocated trampoline that would
1141 * not return true for either core_kernel_text() or
1142 * is_module_text_address().
1144 bool is_ftrace_trampoline(unsigned long addr)
1146 struct ftrace_ops *op;
1150 * Some of the ops may be dynamically allocated,
1151 * they are freed after a synchronize_sched().
1153 preempt_disable_notrace();
1155 do_for_each_ftrace_op(op, ftrace_ops_list) {
1157 * This is to check for dynamically allocated trampolines.
1158 * Trampolines that are in kernel text will have
1159 * core_kernel_text() return true.
1161 if (op->trampoline && op->trampoline_size)
1162 if (addr >= op->trampoline &&
1163 addr < op->trampoline + op->trampoline_size) {
1167 } while_for_each_ftrace_op(op);
1170 preempt_enable_notrace();
1175 struct ftrace_page {
1176 struct ftrace_page *next;
1177 struct dyn_ftrace *records;
1182 #define ENTRY_SIZE sizeof(struct dyn_ftrace)
1183 #define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
1185 /* estimate from running different kernels */
1186 #define NR_TO_INIT 10000
1188 static struct ftrace_page *ftrace_pages_start;
1189 static struct ftrace_page *ftrace_pages;
1191 static bool __always_inline ftrace_hash_empty(struct ftrace_hash *hash)
1193 return !hash || !hash->count;
1196 static struct ftrace_func_entry *
1197 ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1200 struct ftrace_func_entry *entry;
1201 struct hlist_head *hhd;
1203 if (ftrace_hash_empty(hash))
1206 if (hash->size_bits > 0)
1207 key = hash_long(ip, hash->size_bits);
1211 hhd = &hash->buckets[key];
1213 hlist_for_each_entry_rcu_notrace(entry, hhd, hlist) {
1214 if (entry->ip == ip)
1220 static void __add_hash_entry(struct ftrace_hash *hash,
1221 struct ftrace_func_entry *entry)
1223 struct hlist_head *hhd;
1226 if (hash->size_bits)
1227 key = hash_long(entry->ip, hash->size_bits);
1231 hhd = &hash->buckets[key];
1232 hlist_add_head(&entry->hlist, hhd);
1236 static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1238 struct ftrace_func_entry *entry;
1240 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1245 __add_hash_entry(hash, entry);
1251 free_hash_entry(struct ftrace_hash *hash,
1252 struct ftrace_func_entry *entry)
1254 hlist_del(&entry->hlist);
1260 remove_hash_entry(struct ftrace_hash *hash,
1261 struct ftrace_func_entry *entry)
1263 hlist_del(&entry->hlist);
1267 static void ftrace_hash_clear(struct ftrace_hash *hash)
1269 struct hlist_head *hhd;
1270 struct hlist_node *tn;
1271 struct ftrace_func_entry *entry;
1272 int size = 1 << hash->size_bits;
1278 for (i = 0; i < size; i++) {
1279 hhd = &hash->buckets[i];
1280 hlist_for_each_entry_safe(entry, tn, hhd, hlist)
1281 free_hash_entry(hash, entry);
1283 FTRACE_WARN_ON(hash->count);
1286 static void free_ftrace_hash(struct ftrace_hash *hash)
1288 if (!hash || hash == EMPTY_HASH)
1290 ftrace_hash_clear(hash);
1291 kfree(hash->buckets);
1295 static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1297 struct ftrace_hash *hash;
1299 hash = container_of(rcu, struct ftrace_hash, rcu);
1300 free_ftrace_hash(hash);
1303 static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1305 if (!hash || hash == EMPTY_HASH)
1307 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1310 void ftrace_free_filter(struct ftrace_ops *ops)
1312 ftrace_ops_init(ops);
1313 free_ftrace_hash(ops->func_hash->filter_hash);
1314 free_ftrace_hash(ops->func_hash->notrace_hash);
1317 static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1319 struct ftrace_hash *hash;
1322 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1326 size = 1 << size_bits;
1327 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
1329 if (!hash->buckets) {
1334 hash->size_bits = size_bits;
1339 static struct ftrace_hash *
1340 alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1342 struct ftrace_func_entry *entry;
1343 struct ftrace_hash *new_hash;
1348 new_hash = alloc_ftrace_hash(size_bits);
1353 if (ftrace_hash_empty(hash))
1356 size = 1 << hash->size_bits;
1357 for (i = 0; i < size; i++) {
1358 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
1359 ret = add_hash_entry(new_hash, entry->ip);
1365 FTRACE_WARN_ON(new_hash->count != hash->count);
1370 free_ftrace_hash(new_hash);
1375 ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash);
1377 ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash);
1379 static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1380 struct ftrace_hash *new_hash);
1383 ftrace_hash_move(struct ftrace_ops *ops, int enable,
1384 struct ftrace_hash **dst, struct ftrace_hash *src)
1386 struct ftrace_func_entry *entry;
1387 struct hlist_node *tn;
1388 struct hlist_head *hhd;
1389 struct ftrace_hash *new_hash;
1390 int size = src->count;
1395 /* Reject setting notrace hash on IPMODIFY ftrace_ops */
1396 if (ops->flags & FTRACE_OPS_FL_IPMODIFY && !enable)
1400 * If the new source is empty, just free dst and assign it
1404 new_hash = EMPTY_HASH;
1409 * Make the hash size about 1/2 the # found
1411 for (size /= 2; size; size >>= 1)
1414 /* Don't allocate too much */
1415 if (bits > FTRACE_HASH_MAX_BITS)
1416 bits = FTRACE_HASH_MAX_BITS;
1418 new_hash = alloc_ftrace_hash(bits);
1422 size = 1 << src->size_bits;
1423 for (i = 0; i < size; i++) {
1424 hhd = &src->buckets[i];
1425 hlist_for_each_entry_safe(entry, tn, hhd, hlist) {
1426 remove_hash_entry(src, entry);
1427 __add_hash_entry(new_hash, entry);
1432 /* Make sure this can be applied if it is IPMODIFY ftrace_ops */
1434 /* IPMODIFY should be updated only when filter_hash updating */
1435 ret = ftrace_hash_ipmodify_update(ops, new_hash);
1437 free_ftrace_hash(new_hash);
1443 * Remove the current set, update the hash and add
1446 ftrace_hash_rec_disable_modify(ops, enable);
1448 rcu_assign_pointer(*dst, new_hash);
1450 ftrace_hash_rec_enable_modify(ops, enable);
1455 static bool hash_contains_ip(unsigned long ip,
1456 struct ftrace_ops_hash *hash)
1459 * The function record is a match if it exists in the filter
1460 * hash and not in the notrace hash. Note, an emty hash is
1461 * considered a match for the filter hash, but an empty
1462 * notrace hash is considered not in the notrace hash.
1464 return (ftrace_hash_empty(hash->filter_hash) ||
1465 ftrace_lookup_ip(hash->filter_hash, ip)) &&
1466 (ftrace_hash_empty(hash->notrace_hash) ||
1467 !ftrace_lookup_ip(hash->notrace_hash, ip));
1471 * Test the hashes for this ops to see if we want to call
1472 * the ops->func or not.
1474 * It's a match if the ip is in the ops->filter_hash or
1475 * the filter_hash does not exist or is empty,
1477 * the ip is not in the ops->notrace_hash.
1479 * This needs to be called with preemption disabled as
1480 * the hashes are freed with call_rcu_sched().
1483 ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
1485 struct ftrace_ops_hash hash;
1488 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1490 * There's a small race when adding ops that the ftrace handler
1491 * that wants regs, may be called without them. We can not
1492 * allow that handler to be called if regs is NULL.
1494 if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS))
1498 hash.filter_hash = rcu_dereference_raw_notrace(ops->func_hash->filter_hash);
1499 hash.notrace_hash = rcu_dereference_raw_notrace(ops->func_hash->notrace_hash);
1501 if (hash_contains_ip(ip, &hash))
1510 * This is a double for. Do not use 'break' to break out of the loop,
1511 * you must use a goto.
1513 #define do_for_each_ftrace_rec(pg, rec) \
1514 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1516 for (_____i = 0; _____i < pg->index; _____i++) { \
1517 rec = &pg->records[_____i];
1519 #define while_for_each_ftrace_rec() \
1524 static int ftrace_cmp_recs(const void *a, const void *b)
1526 const struct dyn_ftrace *key = a;
1527 const struct dyn_ftrace *rec = b;
1529 if (key->flags < rec->ip)
1531 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1536 static unsigned long ftrace_location_range(unsigned long start, unsigned long end)
1538 struct ftrace_page *pg;
1539 struct dyn_ftrace *rec;
1540 struct dyn_ftrace key;
1543 key.flags = end; /* overload flags, as it is unsigned long */
1545 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1546 if (end < pg->records[0].ip ||
1547 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1549 rec = bsearch(&key, pg->records, pg->index,
1550 sizeof(struct dyn_ftrace),
1560 * ftrace_location - return true if the ip giving is a traced location
1561 * @ip: the instruction pointer to check
1563 * Returns rec->ip if @ip given is a pointer to a ftrace location.
1564 * That is, the instruction that is either a NOP or call to
1565 * the function tracer. It checks the ftrace internal tables to
1566 * determine if the address belongs or not.
1568 unsigned long ftrace_location(unsigned long ip)
1570 return ftrace_location_range(ip, ip);
1574 * ftrace_text_reserved - return true if range contains an ftrace location
1575 * @start: start of range to search
1576 * @end: end of range to search (inclusive). @end points to the last byte to check.
1578 * Returns 1 if @start and @end contains a ftrace location.
1579 * That is, the instruction that is either a NOP or call to
1580 * the function tracer. It checks the ftrace internal tables to
1581 * determine if the address belongs or not.
1583 int ftrace_text_reserved(const void *start, const void *end)
1587 ret = ftrace_location_range((unsigned long)start,
1588 (unsigned long)end);
1593 /* Test if ops registered to this rec needs regs */
1594 static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec)
1596 struct ftrace_ops *ops;
1597 bool keep_regs = false;
1599 for (ops = ftrace_ops_list;
1600 ops != &ftrace_list_end; ops = ops->next) {
1601 /* pass rec in as regs to have non-NULL val */
1602 if (ftrace_ops_test(ops, rec->ip, rec)) {
1603 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1613 static void __ftrace_hash_rec_update(struct ftrace_ops *ops,
1617 struct ftrace_hash *hash;
1618 struct ftrace_hash *other_hash;
1619 struct ftrace_page *pg;
1620 struct dyn_ftrace *rec;
1624 /* Only update if the ops has been registered */
1625 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1629 * In the filter_hash case:
1630 * If the count is zero, we update all records.
1631 * Otherwise we just update the items in the hash.
1633 * In the notrace_hash case:
1634 * We enable the update in the hash.
1635 * As disabling notrace means enabling the tracing,
1636 * and enabling notrace means disabling, the inc variable
1640 hash = ops->func_hash->filter_hash;
1641 other_hash = ops->func_hash->notrace_hash;
1642 if (ftrace_hash_empty(hash))
1646 hash = ops->func_hash->notrace_hash;
1647 other_hash = ops->func_hash->filter_hash;
1649 * If the notrace hash has no items,
1650 * then there's nothing to do.
1652 if (ftrace_hash_empty(hash))
1656 do_for_each_ftrace_rec(pg, rec) {
1657 int in_other_hash = 0;
1661 if (rec->flags & FTRACE_FL_DISABLED)
1666 * Only the filter_hash affects all records.
1667 * Update if the record is not in the notrace hash.
1669 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
1672 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1673 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
1676 * If filter_hash is set, we want to match all functions
1677 * that are in the hash but not in the other hash.
1679 * If filter_hash is not set, then we are decrementing.
1680 * That means we match anything that is in the hash
1681 * and also in the other_hash. That is, we need to turn
1682 * off functions in the other hash because they are disabled
1685 if (filter_hash && in_hash && !in_other_hash)
1687 else if (!filter_hash && in_hash &&
1688 (in_other_hash || ftrace_hash_empty(other_hash)))
1696 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX))
1700 * If there's only a single callback registered to a
1701 * function, and the ops has a trampoline registered
1702 * for it, then we can call it directly.
1704 if (ftrace_rec_count(rec) == 1 && ops->trampoline)
1705 rec->flags |= FTRACE_FL_TRAMP;
1708 * If we are adding another function callback
1709 * to this function, and the previous had a
1710 * custom trampoline in use, then we need to go
1711 * back to the default trampoline.
1713 rec->flags &= ~FTRACE_FL_TRAMP;
1716 * If any ops wants regs saved for this function
1717 * then all ops will get saved regs.
1719 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1720 rec->flags |= FTRACE_FL_REGS;
1722 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0))
1727 * If the rec had REGS enabled and the ops that is
1728 * being removed had REGS set, then see if there is
1729 * still any ops for this record that wants regs.
1730 * If not, we can stop recording them.
1732 if (ftrace_rec_count(rec) > 0 &&
1733 rec->flags & FTRACE_FL_REGS &&
1734 ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1735 if (!test_rec_ops_needs_regs(rec))
1736 rec->flags &= ~FTRACE_FL_REGS;
1740 * If the rec had TRAMP enabled, then it needs to
1741 * be cleared. As TRAMP can only be enabled iff
1742 * there is only a single ops attached to it.
1743 * In otherwords, always disable it on decrementing.
1744 * In the future, we may set it if rec count is
1745 * decremented to one, and the ops that is left
1748 rec->flags &= ~FTRACE_FL_TRAMP;
1751 * flags will be cleared in ftrace_check_record()
1752 * if rec count is zero.
1756 /* Shortcut, if we handled all records, we are done. */
1757 if (!all && count == hash->count)
1759 } while_for_each_ftrace_rec();
1762 static void ftrace_hash_rec_disable(struct ftrace_ops *ops,
1765 __ftrace_hash_rec_update(ops, filter_hash, 0);
1768 static void ftrace_hash_rec_enable(struct ftrace_ops *ops,
1771 __ftrace_hash_rec_update(ops, filter_hash, 1);
1774 static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops,
1775 int filter_hash, int inc)
1777 struct ftrace_ops *op;
1779 __ftrace_hash_rec_update(ops, filter_hash, inc);
1781 if (ops->func_hash != &global_ops.local_hash)
1785 * If the ops shares the global_ops hash, then we need to update
1786 * all ops that are enabled and use this hash.
1788 do_for_each_ftrace_op(op, ftrace_ops_list) {
1792 if (op->func_hash == &global_ops.local_hash)
1793 __ftrace_hash_rec_update(op, filter_hash, inc);
1794 } while_for_each_ftrace_op(op);
1797 static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops,
1800 ftrace_hash_rec_update_modify(ops, filter_hash, 0);
1803 static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops,
1806 ftrace_hash_rec_update_modify(ops, filter_hash, 1);
1810 * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK
1811 * or no-needed to update, -EBUSY if it detects a conflict of the flag
1812 * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs.
1813 * Note that old_hash and new_hash has below meanings
1814 * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected)
1815 * - If the hash is EMPTY_HASH, it hits nothing
1816 * - Anything else hits the recs which match the hash entries.
1818 static int __ftrace_hash_update_ipmodify(struct ftrace_ops *ops,
1819 struct ftrace_hash *old_hash,
1820 struct ftrace_hash *new_hash)
1822 struct ftrace_page *pg;
1823 struct dyn_ftrace *rec, *end = NULL;
1826 /* Only update if the ops has been registered */
1827 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1830 if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY))
1834 * Since the IPMODIFY is a very address sensitive action, we do not
1835 * allow ftrace_ops to set all functions to new hash.
1837 if (!new_hash || !old_hash)
1840 /* Update rec->flags */
1841 do_for_each_ftrace_rec(pg, rec) {
1842 /* We need to update only differences of filter_hash */
1843 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1844 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1845 if (in_old == in_new)
1849 /* New entries must ensure no others are using it */
1850 if (rec->flags & FTRACE_FL_IPMODIFY)
1852 rec->flags |= FTRACE_FL_IPMODIFY;
1853 } else /* Removed entry */
1854 rec->flags &= ~FTRACE_FL_IPMODIFY;
1855 } while_for_each_ftrace_rec();
1862 /* Roll back what we did above */
1863 do_for_each_ftrace_rec(pg, rec) {
1867 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1868 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1869 if (in_old == in_new)
1873 rec->flags &= ~FTRACE_FL_IPMODIFY;
1875 rec->flags |= FTRACE_FL_IPMODIFY;
1876 } while_for_each_ftrace_rec();
1882 static int ftrace_hash_ipmodify_enable(struct ftrace_ops *ops)
1884 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1886 if (ftrace_hash_empty(hash))
1889 return __ftrace_hash_update_ipmodify(ops, EMPTY_HASH, hash);
1892 /* Disabling always succeeds */
1893 static void ftrace_hash_ipmodify_disable(struct ftrace_ops *ops)
1895 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1897 if (ftrace_hash_empty(hash))
1900 __ftrace_hash_update_ipmodify(ops, hash, EMPTY_HASH);
1903 static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1904 struct ftrace_hash *new_hash)
1906 struct ftrace_hash *old_hash = ops->func_hash->filter_hash;
1908 if (ftrace_hash_empty(old_hash))
1911 if (ftrace_hash_empty(new_hash))
1914 return __ftrace_hash_update_ipmodify(ops, old_hash, new_hash);
1917 static void print_ip_ins(const char *fmt, const unsigned char *p)
1921 printk(KERN_CONT "%s", fmt);
1923 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1924 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1927 static struct ftrace_ops *
1928 ftrace_find_tramp_ops_any(struct dyn_ftrace *rec);
1929 static struct ftrace_ops *
1930 ftrace_find_tramp_ops_next(struct dyn_ftrace *rec, struct ftrace_ops *ops);
1932 enum ftrace_bug_type ftrace_bug_type;
1933 const void *ftrace_expected;
1935 static void print_bug_type(void)
1937 switch (ftrace_bug_type) {
1938 case FTRACE_BUG_UNKNOWN:
1940 case FTRACE_BUG_INIT:
1941 pr_info("Initializing ftrace call sites\n");
1943 case FTRACE_BUG_NOP:
1944 pr_info("Setting ftrace call site to NOP\n");
1946 case FTRACE_BUG_CALL:
1947 pr_info("Setting ftrace call site to call ftrace function\n");
1949 case FTRACE_BUG_UPDATE:
1950 pr_info("Updating ftrace call site to call a different ftrace function\n");
1956 * ftrace_bug - report and shutdown function tracer
1957 * @failed: The failed type (EFAULT, EINVAL, EPERM)
1958 * @rec: The record that failed
1960 * The arch code that enables or disables the function tracing
1961 * can call ftrace_bug() when it has detected a problem in
1962 * modifying the code. @failed should be one of either:
1963 * EFAULT - if the problem happens on reading the @ip address
1964 * EINVAL - if what is read at @ip is not what was expected
1965 * EPERM - if the problem happens on writting to the @ip address
1967 void ftrace_bug(int failed, struct dyn_ftrace *rec)
1969 unsigned long ip = rec ? rec->ip : 0;
1973 FTRACE_WARN_ON_ONCE(1);
1974 pr_info("ftrace faulted on modifying ");
1978 FTRACE_WARN_ON_ONCE(1);
1979 pr_info("ftrace failed to modify ");
1981 print_ip_ins(" actual: ", (unsigned char *)ip);
1983 if (ftrace_expected) {
1984 print_ip_ins(" expected: ", ftrace_expected);
1989 FTRACE_WARN_ON_ONCE(1);
1990 pr_info("ftrace faulted on writing ");
1994 FTRACE_WARN_ON_ONCE(1);
1995 pr_info("ftrace faulted on unknown error ");
2000 struct ftrace_ops *ops = NULL;
2002 pr_info("ftrace record flags: %lx\n", rec->flags);
2003 pr_cont(" (%ld)%s", ftrace_rec_count(rec),
2004 rec->flags & FTRACE_FL_REGS ? " R" : " ");
2005 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2006 ops = ftrace_find_tramp_ops_any(rec);
2009 pr_cont("\ttramp: %pS (%pS)",
2010 (void *)ops->trampoline,
2012 ops = ftrace_find_tramp_ops_next(rec, ops);
2015 pr_cont("\ttramp: ERROR!");
2018 ip = ftrace_get_addr_curr(rec);
2019 pr_cont("\n expected tramp: %lx\n", ip);
2023 static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
2025 unsigned long flag = 0UL;
2027 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2029 if (rec->flags & FTRACE_FL_DISABLED)
2030 return FTRACE_UPDATE_IGNORE;
2033 * If we are updating calls:
2035 * If the record has a ref count, then we need to enable it
2036 * because someone is using it.
2038 * Otherwise we make sure its disabled.
2040 * If we are disabling calls, then disable all records that
2043 if (enable && ftrace_rec_count(rec))
2044 flag = FTRACE_FL_ENABLED;
2047 * If enabling and the REGS flag does not match the REGS_EN, or
2048 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
2049 * this record. Set flags to fail the compare against ENABLED.
2052 if (!(rec->flags & FTRACE_FL_REGS) !=
2053 !(rec->flags & FTRACE_FL_REGS_EN))
2054 flag |= FTRACE_FL_REGS;
2056 if (!(rec->flags & FTRACE_FL_TRAMP) !=
2057 !(rec->flags & FTRACE_FL_TRAMP_EN))
2058 flag |= FTRACE_FL_TRAMP;
2061 /* If the state of this record hasn't changed, then do nothing */
2062 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
2063 return FTRACE_UPDATE_IGNORE;
2066 /* Save off if rec is being enabled (for return value) */
2067 flag ^= rec->flags & FTRACE_FL_ENABLED;
2070 rec->flags |= FTRACE_FL_ENABLED;
2071 if (flag & FTRACE_FL_REGS) {
2072 if (rec->flags & FTRACE_FL_REGS)
2073 rec->flags |= FTRACE_FL_REGS_EN;
2075 rec->flags &= ~FTRACE_FL_REGS_EN;
2077 if (flag & FTRACE_FL_TRAMP) {
2078 if (rec->flags & FTRACE_FL_TRAMP)
2079 rec->flags |= FTRACE_FL_TRAMP_EN;
2081 rec->flags &= ~FTRACE_FL_TRAMP_EN;
2086 * If this record is being updated from a nop, then
2087 * return UPDATE_MAKE_CALL.
2089 * return UPDATE_MODIFY_CALL to tell the caller to convert
2090 * from the save regs, to a non-save regs function or
2091 * vice versa, or from a trampoline call.
2093 if (flag & FTRACE_FL_ENABLED) {
2094 ftrace_bug_type = FTRACE_BUG_CALL;
2095 return FTRACE_UPDATE_MAKE_CALL;
2098 ftrace_bug_type = FTRACE_BUG_UPDATE;
2099 return FTRACE_UPDATE_MODIFY_CALL;
2103 /* If there's no more users, clear all flags */
2104 if (!ftrace_rec_count(rec))
2108 * Just disable the record, but keep the ops TRAMP
2109 * and REGS states. The _EN flags must be disabled though.
2111 rec->flags &= ~(FTRACE_FL_ENABLED | FTRACE_FL_TRAMP_EN |
2115 ftrace_bug_type = FTRACE_BUG_NOP;
2116 return FTRACE_UPDATE_MAKE_NOP;
2120 * ftrace_update_record, set a record that now is tracing or not
2121 * @rec: the record to update
2122 * @enable: set to 1 if the record is tracing, zero to force disable
2124 * The records that represent all functions that can be traced need
2125 * to be updated when tracing has been enabled.
2127 int ftrace_update_record(struct dyn_ftrace *rec, int enable)
2129 return ftrace_check_record(rec, enable, 1);
2133 * ftrace_test_record, check if the record has been enabled or not
2134 * @rec: the record to test
2135 * @enable: set to 1 to check if enabled, 0 if it is disabled
2137 * The arch code may need to test if a record is already set to
2138 * tracing to determine how to modify the function code that it
2141 int ftrace_test_record(struct dyn_ftrace *rec, int enable)
2143 return ftrace_check_record(rec, enable, 0);
2146 static struct ftrace_ops *
2147 ftrace_find_tramp_ops_any(struct dyn_ftrace *rec)
2149 struct ftrace_ops *op;
2150 unsigned long ip = rec->ip;
2152 do_for_each_ftrace_op(op, ftrace_ops_list) {
2154 if (!op->trampoline)
2157 if (hash_contains_ip(ip, op->func_hash))
2159 } while_for_each_ftrace_op(op);
2164 static struct ftrace_ops *
2165 ftrace_find_tramp_ops_next(struct dyn_ftrace *rec,
2166 struct ftrace_ops *op)
2168 unsigned long ip = rec->ip;
2170 while_for_each_ftrace_op(op) {
2172 if (!op->trampoline)
2175 if (hash_contains_ip(ip, op->func_hash))
2182 static struct ftrace_ops *
2183 ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec)
2185 struct ftrace_ops *op;
2186 unsigned long ip = rec->ip;
2189 * Need to check removed ops first.
2190 * If they are being removed, and this rec has a tramp,
2191 * and this rec is in the ops list, then it would be the
2192 * one with the tramp.
2195 if (hash_contains_ip(ip, &removed_ops->old_hash))
2200 * Need to find the current trampoline for a rec.
2201 * Now, a trampoline is only attached to a rec if there
2202 * was a single 'ops' attached to it. But this can be called
2203 * when we are adding another op to the rec or removing the
2204 * current one. Thus, if the op is being added, we can
2205 * ignore it because it hasn't attached itself to the rec
2208 * If an ops is being modified (hooking to different functions)
2209 * then we don't care about the new functions that are being
2210 * added, just the old ones (that are probably being removed).
2212 * If we are adding an ops to a function that already is using
2213 * a trampoline, it needs to be removed (trampolines are only
2214 * for single ops connected), then an ops that is not being
2215 * modified also needs to be checked.
2217 do_for_each_ftrace_op(op, ftrace_ops_list) {
2219 if (!op->trampoline)
2223 * If the ops is being added, it hasn't gotten to
2224 * the point to be removed from this tree yet.
2226 if (op->flags & FTRACE_OPS_FL_ADDING)
2231 * If the ops is being modified and is in the old
2232 * hash, then it is probably being removed from this
2235 if ((op->flags & FTRACE_OPS_FL_MODIFYING) &&
2236 hash_contains_ip(ip, &op->old_hash))
2239 * If the ops is not being added or modified, and it's
2240 * in its normal filter hash, then this must be the one
2243 if (!(op->flags & FTRACE_OPS_FL_MODIFYING) &&
2244 hash_contains_ip(ip, op->func_hash))
2247 } while_for_each_ftrace_op(op);
2252 static struct ftrace_ops *
2253 ftrace_find_tramp_ops_new(struct dyn_ftrace *rec)
2255 struct ftrace_ops *op;
2256 unsigned long ip = rec->ip;
2258 do_for_each_ftrace_op(op, ftrace_ops_list) {
2259 /* pass rec in as regs to have non-NULL val */
2260 if (hash_contains_ip(ip, op->func_hash))
2262 } while_for_each_ftrace_op(op);
2268 * ftrace_get_addr_new - Get the call address to set to
2269 * @rec: The ftrace record descriptor
2271 * If the record has the FTRACE_FL_REGS set, that means that it
2272 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2273 * is not not set, then it wants to convert to the normal callback.
2275 * Returns the address of the trampoline to set to
2277 unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec)
2279 struct ftrace_ops *ops;
2281 /* Trampolines take precedence over regs */
2282 if (rec->flags & FTRACE_FL_TRAMP) {
2283 ops = ftrace_find_tramp_ops_new(rec);
2284 if (FTRACE_WARN_ON(!ops || !ops->trampoline)) {
2285 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2286 (void *)rec->ip, (void *)rec->ip, rec->flags);
2287 /* Ftrace is shutting down, return anything */
2288 return (unsigned long)FTRACE_ADDR;
2290 return ops->trampoline;
2293 if (rec->flags & FTRACE_FL_REGS)
2294 return (unsigned long)FTRACE_REGS_ADDR;
2296 return (unsigned long)FTRACE_ADDR;
2300 * ftrace_get_addr_curr - Get the call address that is already there
2301 * @rec: The ftrace record descriptor
2303 * The FTRACE_FL_REGS_EN is set when the record already points to
2304 * a function that saves all the regs. Basically the '_EN' version
2305 * represents the current state of the function.
2307 * Returns the address of the trampoline that is currently being called
2309 unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec)
2311 struct ftrace_ops *ops;
2313 /* Trampolines take precedence over regs */
2314 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2315 ops = ftrace_find_tramp_ops_curr(rec);
2316 if (FTRACE_WARN_ON(!ops)) {
2317 pr_warning("Bad trampoline accounting at: %p (%pS)\n",
2318 (void *)rec->ip, (void *)rec->ip);
2319 /* Ftrace is shutting down, return anything */
2320 return (unsigned long)FTRACE_ADDR;
2322 return ops->trampoline;
2325 if (rec->flags & FTRACE_FL_REGS_EN)
2326 return (unsigned long)FTRACE_REGS_ADDR;
2328 return (unsigned long)FTRACE_ADDR;
2332 __ftrace_replace_code(struct dyn_ftrace *rec, int enable)
2334 unsigned long ftrace_old_addr;
2335 unsigned long ftrace_addr;
2338 ftrace_addr = ftrace_get_addr_new(rec);
2340 /* This needs to be done before we call ftrace_update_record */
2341 ftrace_old_addr = ftrace_get_addr_curr(rec);
2343 ret = ftrace_update_record(rec, enable);
2345 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2348 case FTRACE_UPDATE_IGNORE:
2351 case FTRACE_UPDATE_MAKE_CALL:
2352 ftrace_bug_type = FTRACE_BUG_CALL;
2353 return ftrace_make_call(rec, ftrace_addr);
2355 case FTRACE_UPDATE_MAKE_NOP:
2356 ftrace_bug_type = FTRACE_BUG_NOP;
2357 return ftrace_make_nop(NULL, rec, ftrace_old_addr);
2359 case FTRACE_UPDATE_MODIFY_CALL:
2360 ftrace_bug_type = FTRACE_BUG_UPDATE;
2361 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
2364 return -1; /* unknow ftrace bug */
2367 void __weak ftrace_replace_code(int enable)
2369 struct dyn_ftrace *rec;
2370 struct ftrace_page *pg;
2373 if (unlikely(ftrace_disabled))
2376 do_for_each_ftrace_rec(pg, rec) {
2377 failed = __ftrace_replace_code(rec, enable);
2379 ftrace_bug(failed, rec);
2380 /* Stop processing */
2383 } while_for_each_ftrace_rec();
2386 struct ftrace_rec_iter {
2387 struct ftrace_page *pg;
2392 * ftrace_rec_iter_start, start up iterating over traced functions
2394 * Returns an iterator handle that is used to iterate over all
2395 * the records that represent address locations where functions
2398 * May return NULL if no records are available.
2400 struct ftrace_rec_iter *ftrace_rec_iter_start(void)
2403 * We only use a single iterator.
2404 * Protected by the ftrace_lock mutex.
2406 static struct ftrace_rec_iter ftrace_rec_iter;
2407 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
2409 iter->pg = ftrace_pages_start;
2412 /* Could have empty pages */
2413 while (iter->pg && !iter->pg->index)
2414 iter->pg = iter->pg->next;
2423 * ftrace_rec_iter_next, get the next record to process.
2424 * @iter: The handle to the iterator.
2426 * Returns the next iterator after the given iterator @iter.
2428 struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
2432 if (iter->index >= iter->pg->index) {
2433 iter->pg = iter->pg->next;
2436 /* Could have empty pages */
2437 while (iter->pg && !iter->pg->index)
2438 iter->pg = iter->pg->next;
2448 * ftrace_rec_iter_record, get the record at the iterator location
2449 * @iter: The current iterator location
2451 * Returns the record that the current @iter is at.
2453 struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
2455 return &iter->pg->records[iter->index];
2459 ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
2463 if (unlikely(ftrace_disabled))
2466 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
2468 ftrace_bug_type = FTRACE_BUG_INIT;
2469 ftrace_bug(ret, rec);
2476 * archs can override this function if they must do something
2477 * before the modifying code is performed.
2479 int __weak ftrace_arch_code_modify_prepare(void)
2485 * archs can override this function if they must do something
2486 * after the modifying code is performed.
2488 int __weak ftrace_arch_code_modify_post_process(void)
2493 void ftrace_modify_all_code(int command)
2495 int update = command & FTRACE_UPDATE_TRACE_FUNC;
2499 * If the ftrace_caller calls a ftrace_ops func directly,
2500 * we need to make sure that it only traces functions it
2501 * expects to trace. When doing the switch of functions,
2502 * we need to update to the ftrace_ops_list_func first
2503 * before the transition between old and new calls are set,
2504 * as the ftrace_ops_list_func will check the ops hashes
2505 * to make sure the ops are having the right functions
2509 err = ftrace_update_ftrace_func(ftrace_ops_list_func);
2510 if (FTRACE_WARN_ON(err))
2514 if (command & FTRACE_UPDATE_CALLS)
2515 ftrace_replace_code(1);
2516 else if (command & FTRACE_DISABLE_CALLS)
2517 ftrace_replace_code(0);
2519 if (update && ftrace_trace_function != ftrace_ops_list_func) {
2520 function_trace_op = set_function_trace_op;
2522 /* If irqs are disabled, we are in stop machine */
2523 if (!irqs_disabled())
2524 smp_call_function(ftrace_sync_ipi, NULL, 1);
2525 err = ftrace_update_ftrace_func(ftrace_trace_function);
2526 if (FTRACE_WARN_ON(err))
2530 if (command & FTRACE_START_FUNC_RET)
2531 err = ftrace_enable_ftrace_graph_caller();
2532 else if (command & FTRACE_STOP_FUNC_RET)
2533 err = ftrace_disable_ftrace_graph_caller();
2534 FTRACE_WARN_ON(err);
2537 static int __ftrace_modify_code(void *data)
2539 int *command = data;
2541 ftrace_modify_all_code(*command);
2547 * ftrace_run_stop_machine, go back to the stop machine method
2548 * @command: The command to tell ftrace what to do
2550 * If an arch needs to fall back to the stop machine method, the
2551 * it can call this function.
2553 void ftrace_run_stop_machine(int command)
2555 stop_machine(__ftrace_modify_code, &command, NULL);
2559 * arch_ftrace_update_code, modify the code to trace or not trace
2560 * @command: The command that needs to be done
2562 * Archs can override this function if it does not need to
2563 * run stop_machine() to modify code.
2565 void __weak arch_ftrace_update_code(int command)
2567 ftrace_run_stop_machine(command);
2570 static void ftrace_run_update_code(int command)
2574 ret = ftrace_arch_code_modify_prepare();
2575 FTRACE_WARN_ON(ret);
2580 * By default we use stop_machine() to modify the code.
2581 * But archs can do what ever they want as long as it
2582 * is safe. The stop_machine() is the safest, but also
2583 * produces the most overhead.
2585 arch_ftrace_update_code(command);
2587 ret = ftrace_arch_code_modify_post_process();
2588 FTRACE_WARN_ON(ret);
2591 static void ftrace_run_modify_code(struct ftrace_ops *ops, int command,
2592 struct ftrace_ops_hash *old_hash)
2594 ops->flags |= FTRACE_OPS_FL_MODIFYING;
2595 ops->old_hash.filter_hash = old_hash->filter_hash;
2596 ops->old_hash.notrace_hash = old_hash->notrace_hash;
2597 ftrace_run_update_code(command);
2598 ops->old_hash.filter_hash = NULL;
2599 ops->old_hash.notrace_hash = NULL;
2600 ops->flags &= ~FTRACE_OPS_FL_MODIFYING;
2603 static ftrace_func_t saved_ftrace_func;
2604 static int ftrace_start_up;
2606 void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops)
2610 static void per_cpu_ops_free(struct ftrace_ops *ops)
2612 free_percpu(ops->disabled);
2615 static void ftrace_startup_enable(int command)
2617 if (saved_ftrace_func != ftrace_trace_function) {
2618 saved_ftrace_func = ftrace_trace_function;
2619 command |= FTRACE_UPDATE_TRACE_FUNC;
2622 if (!command || !ftrace_enabled)
2625 ftrace_run_update_code(command);
2628 static void ftrace_startup_all(int command)
2630 update_all_ops = true;
2631 ftrace_startup_enable(command);
2632 update_all_ops = false;
2635 static int ftrace_startup(struct ftrace_ops *ops, int command)
2639 if (unlikely(ftrace_disabled))
2642 ret = __register_ftrace_function(ops);
2647 command |= FTRACE_UPDATE_CALLS;
2650 * Note that ftrace probes uses this to start up
2651 * and modify functions it will probe. But we still
2652 * set the ADDING flag for modification, as probes
2653 * do not have trampolines. If they add them in the
2654 * future, then the probes will need to distinguish
2655 * between adding and updating probes.
2657 ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING;
2659 ret = ftrace_hash_ipmodify_enable(ops);
2661 /* Rollback registration process */
2662 __unregister_ftrace_function(ops);
2664 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2668 ftrace_hash_rec_enable(ops, 1);
2670 ftrace_startup_enable(command);
2672 ops->flags &= ~FTRACE_OPS_FL_ADDING;
2677 static int ftrace_shutdown(struct ftrace_ops *ops, int command)
2681 if (unlikely(ftrace_disabled))
2684 ret = __unregister_ftrace_function(ops);
2690 * Just warn in case of unbalance, no need to kill ftrace, it's not
2691 * critical but the ftrace_call callers may be never nopped again after
2692 * further ftrace uses.
2694 WARN_ON_ONCE(ftrace_start_up < 0);
2696 /* Disabling ipmodify never fails */
2697 ftrace_hash_ipmodify_disable(ops);
2698 ftrace_hash_rec_disable(ops, 1);
2700 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2702 command |= FTRACE_UPDATE_CALLS;
2704 if (saved_ftrace_func != ftrace_trace_function) {
2705 saved_ftrace_func = ftrace_trace_function;
2706 command |= FTRACE_UPDATE_TRACE_FUNC;
2709 if (!command || !ftrace_enabled) {
2711 * If these are per_cpu ops, they still need their
2712 * per_cpu field freed. Since, function tracing is
2713 * not currently active, we can just free them
2714 * without synchronizing all CPUs.
2716 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2717 per_cpu_ops_free(ops);
2722 * If the ops uses a trampoline, then it needs to be
2723 * tested first on update.
2725 ops->flags |= FTRACE_OPS_FL_REMOVING;
2728 /* The trampoline logic checks the old hashes */
2729 ops->old_hash.filter_hash = ops->func_hash->filter_hash;
2730 ops->old_hash.notrace_hash = ops->func_hash->notrace_hash;
2732 ftrace_run_update_code(command);
2735 * If there's no more ops registered with ftrace, run a
2736 * sanity check to make sure all rec flags are cleared.
2738 if (ftrace_ops_list == &ftrace_list_end) {
2739 struct ftrace_page *pg;
2740 struct dyn_ftrace *rec;
2742 do_for_each_ftrace_rec(pg, rec) {
2743 if (FTRACE_WARN_ON_ONCE(rec->flags))
2744 pr_warn(" %pS flags:%lx\n",
2745 (void *)rec->ip, rec->flags);
2746 } while_for_each_ftrace_rec();
2749 ops->old_hash.filter_hash = NULL;
2750 ops->old_hash.notrace_hash = NULL;
2753 ops->flags &= ~FTRACE_OPS_FL_REMOVING;
2756 * Dynamic ops may be freed, we must make sure that all
2757 * callers are done before leaving this function.
2758 * The same goes for freeing the per_cpu data of the per_cpu
2761 * Again, normal synchronize_sched() is not good enough.
2762 * We need to do a hard force of sched synchronization.
2763 * This is because we use preempt_disable() to do RCU, but
2764 * the function tracers can be called where RCU is not watching
2765 * (like before user_exit()). We can not rely on the RCU
2766 * infrastructure to do the synchronization, thus we must do it
2769 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_PER_CPU)) {
2770 schedule_on_each_cpu(ftrace_sync);
2772 arch_ftrace_trampoline_free(ops);
2774 if (ops->flags & FTRACE_OPS_FL_PER_CPU)
2775 per_cpu_ops_free(ops);
2781 static void ftrace_startup_sysctl(void)
2785 if (unlikely(ftrace_disabled))
2788 /* Force update next time */
2789 saved_ftrace_func = NULL;
2790 /* ftrace_start_up is true if we want ftrace running */
2791 if (ftrace_start_up) {
2792 command = FTRACE_UPDATE_CALLS;
2793 if (ftrace_graph_active)
2794 command |= FTRACE_START_FUNC_RET;
2795 ftrace_startup_enable(command);
2799 static void ftrace_shutdown_sysctl(void)
2803 if (unlikely(ftrace_disabled))
2806 /* ftrace_start_up is true if ftrace is running */
2807 if (ftrace_start_up) {
2808 command = FTRACE_DISABLE_CALLS;
2809 if (ftrace_graph_active)
2810 command |= FTRACE_STOP_FUNC_RET;
2811 ftrace_run_update_code(command);
2815 static cycle_t ftrace_update_time;
2816 unsigned long ftrace_update_tot_cnt;
2818 static inline int ops_traces_mod(struct ftrace_ops *ops)
2821 * Filter_hash being empty will default to trace module.
2822 * But notrace hash requires a test of individual module functions.
2824 return ftrace_hash_empty(ops->func_hash->filter_hash) &&
2825 ftrace_hash_empty(ops->func_hash->notrace_hash);
2829 * Check if the current ops references the record.
2831 * If the ops traces all functions, then it was already accounted for.
2832 * If the ops does not trace the current record function, skip it.
2833 * If the ops ignores the function via notrace filter, skip it.
2836 ops_references_rec(struct ftrace_ops *ops, struct dyn_ftrace *rec)
2838 /* If ops isn't enabled, ignore it */
2839 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
2842 /* If ops traces all then it includes this function */
2843 if (ops_traces_mod(ops))
2846 /* The function must be in the filter */
2847 if (!ftrace_hash_empty(ops->func_hash->filter_hash) &&
2848 !ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))
2851 /* If in notrace hash, we ignore it too */
2852 if (ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip))
2858 static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs)
2860 struct ftrace_page *pg;
2861 struct dyn_ftrace *p;
2862 cycle_t start, stop;
2863 unsigned long update_cnt = 0;
2864 unsigned long rec_flags = 0;
2867 start = ftrace_now(raw_smp_processor_id());
2870 * When a module is loaded, this function is called to convert
2871 * the calls to mcount in its text to nops, and also to create
2872 * an entry in the ftrace data. Now, if ftrace is activated
2873 * after this call, but before the module sets its text to
2874 * read-only, the modification of enabling ftrace can fail if
2875 * the read-only is done while ftrace is converting the calls.
2876 * To prevent this, the module's records are set as disabled
2877 * and will be enabled after the call to set the module's text
2881 rec_flags |= FTRACE_FL_DISABLED;
2883 for (pg = new_pgs; pg; pg = pg->next) {
2885 for (i = 0; i < pg->index; i++) {
2887 /* If something went wrong, bail without enabling anything */
2888 if (unlikely(ftrace_disabled))
2891 p = &pg->records[i];
2892 p->flags = rec_flags;
2895 * Do the initial record conversion from mcount jump
2896 * to the NOP instructions.
2898 if (!ftrace_code_disable(mod, p))
2905 stop = ftrace_now(raw_smp_processor_id());
2906 ftrace_update_time = stop - start;
2907 ftrace_update_tot_cnt += update_cnt;
2912 static int ftrace_allocate_records(struct ftrace_page *pg, int count)
2917 if (WARN_ON(!count))
2920 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
2923 * We want to fill as much as possible. No more than a page
2926 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2930 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
2933 /* if we can't allocate this size, try something smaller */
2940 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
2949 static struct ftrace_page *
2950 ftrace_allocate_pages(unsigned long num_to_init)
2952 struct ftrace_page *start_pg;
2953 struct ftrace_page *pg;
2960 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
2965 * Try to allocate as much as possible in one continues
2966 * location that fills in all of the space. We want to
2967 * waste as little space as possible.
2970 cnt = ftrace_allocate_records(pg, num_to_init);
2978 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
2990 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
2991 free_pages((unsigned long)pg->records, order);
2992 start_pg = pg->next;
2996 pr_info("ftrace: FAILED to allocate memory for functions\n");
3000 #define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
3002 struct ftrace_iterator {
3005 struct ftrace_page *pg;
3006 struct dyn_ftrace *func;
3007 struct ftrace_func_probe *probe;
3008 struct trace_parser parser;
3009 struct ftrace_hash *hash;
3010 struct ftrace_ops *ops;
3017 t_hash_next(struct seq_file *m, loff_t *pos)
3019 struct ftrace_iterator *iter = m->private;
3020 struct hlist_node *hnd = NULL;
3021 struct hlist_head *hhd;
3027 hnd = &iter->probe->node;
3029 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
3032 hhd = &ftrace_func_hash[iter->hidx];
3034 if (hlist_empty(hhd)) {
3050 if (WARN_ON_ONCE(!hnd))
3053 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
3058 static void *t_hash_start(struct seq_file *m, loff_t *pos)
3060 struct ftrace_iterator *iter = m->private;
3064 if (!(iter->flags & FTRACE_ITER_DO_HASH))
3067 if (iter->func_pos > *pos)
3071 for (l = 0; l <= (*pos - iter->func_pos); ) {
3072 p = t_hash_next(m, &l);
3079 /* Only set this if we have an item */
3080 iter->flags |= FTRACE_ITER_HASH;
3086 t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
3088 struct ftrace_func_probe *rec;
3091 if (WARN_ON_ONCE(!rec))
3094 if (rec->ops->print)
3095 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
3097 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
3100 seq_printf(m, ":%p", rec->data);
3107 t_next(struct seq_file *m, void *v, loff_t *pos)
3109 struct ftrace_iterator *iter = m->private;
3110 struct ftrace_ops *ops = iter->ops;
3111 struct dyn_ftrace *rec = NULL;
3113 if (unlikely(ftrace_disabled))
3116 if (iter->flags & FTRACE_ITER_HASH)
3117 return t_hash_next(m, pos);
3120 iter->pos = iter->func_pos = *pos;
3122 if (iter->flags & FTRACE_ITER_PRINTALL)
3123 return t_hash_start(m, pos);
3126 if (iter->idx >= iter->pg->index) {
3127 if (iter->pg->next) {
3128 iter->pg = iter->pg->next;
3133 rec = &iter->pg->records[iter->idx++];
3134 if (((iter->flags & FTRACE_ITER_FILTER) &&
3135 !(ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))) ||
3137 ((iter->flags & FTRACE_ITER_NOTRACE) &&
3138 !ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip)) ||
3140 ((iter->flags & FTRACE_ITER_ENABLED) &&
3141 !(rec->flags & FTRACE_FL_ENABLED))) {
3149 return t_hash_start(m, pos);
3156 static void reset_iter_read(struct ftrace_iterator *iter)
3160 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_HASH);
3163 static void *t_start(struct seq_file *m, loff_t *pos)
3165 struct ftrace_iterator *iter = m->private;
3166 struct ftrace_ops *ops = iter->ops;
3170 mutex_lock(&ftrace_lock);
3172 if (unlikely(ftrace_disabled))
3176 * If an lseek was done, then reset and start from beginning.
3178 if (*pos < iter->pos)
3179 reset_iter_read(iter);
3182 * For set_ftrace_filter reading, if we have the filter
3183 * off, we can short cut and just print out that all
3184 * functions are enabled.
3186 if ((iter->flags & FTRACE_ITER_FILTER &&
3187 ftrace_hash_empty(ops->func_hash->filter_hash)) ||
3188 (iter->flags & FTRACE_ITER_NOTRACE &&
3189 ftrace_hash_empty(ops->func_hash->notrace_hash))) {
3191 return t_hash_start(m, pos);
3192 iter->flags |= FTRACE_ITER_PRINTALL;
3193 /* reset in case of seek/pread */
3194 iter->flags &= ~FTRACE_ITER_HASH;
3198 if (iter->flags & FTRACE_ITER_HASH)
3199 return t_hash_start(m, pos);
3202 * Unfortunately, we need to restart at ftrace_pages_start
3203 * every time we let go of the ftrace_mutex. This is because
3204 * those pointers can change without the lock.
3206 iter->pg = ftrace_pages_start;
3208 for (l = 0; l <= *pos; ) {
3209 p = t_next(m, p, &l);
3215 return t_hash_start(m, pos);
3220 static void t_stop(struct seq_file *m, void *p)
3222 mutex_unlock(&ftrace_lock);
3226 arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec)
3231 static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops,
3232 struct dyn_ftrace *rec)
3236 ptr = arch_ftrace_trampoline_func(ops, rec);
3238 seq_printf(m, " ->%pS", ptr);
3241 static int t_show(struct seq_file *m, void *v)
3243 struct ftrace_iterator *iter = m->private;
3244 struct dyn_ftrace *rec;
3246 if (iter->flags & FTRACE_ITER_HASH)
3247 return t_hash_show(m, iter);
3249 if (iter->flags & FTRACE_ITER_PRINTALL) {
3250 if (iter->flags & FTRACE_ITER_NOTRACE)
3251 seq_puts(m, "#### no functions disabled ####\n");
3253 seq_puts(m, "#### all functions enabled ####\n");
3262 seq_printf(m, "%ps", (void *)rec->ip);
3263 if (iter->flags & FTRACE_ITER_ENABLED) {
3264 struct ftrace_ops *ops;
3266 seq_printf(m, " (%ld)%s%s",
3267 ftrace_rec_count(rec),
3268 rec->flags & FTRACE_FL_REGS ? " R" : " ",
3269 rec->flags & FTRACE_FL_IPMODIFY ? " I" : " ");
3270 if (rec->flags & FTRACE_FL_TRAMP_EN) {
3271 ops = ftrace_find_tramp_ops_any(rec);
3274 seq_printf(m, "\ttramp: %pS (%pS)",
3275 (void *)ops->trampoline,
3277 add_trampoline_func(m, ops, rec);
3278 ops = ftrace_find_tramp_ops_next(rec, ops);
3281 seq_puts(m, "\ttramp: ERROR!");
3283 add_trampoline_func(m, NULL, rec);
3292 static const struct seq_operations show_ftrace_seq_ops = {
3300 ftrace_avail_open(struct inode *inode, struct file *file)
3302 struct ftrace_iterator *iter;
3304 if (unlikely(ftrace_disabled))
3307 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3309 iter->pg = ftrace_pages_start;
3310 iter->ops = &global_ops;
3313 return iter ? 0 : -ENOMEM;
3317 ftrace_enabled_open(struct inode *inode, struct file *file)
3319 struct ftrace_iterator *iter;
3321 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3323 iter->pg = ftrace_pages_start;
3324 iter->flags = FTRACE_ITER_ENABLED;
3325 iter->ops = &global_ops;
3328 return iter ? 0 : -ENOMEM;
3332 * ftrace_regex_open - initialize function tracer filter files
3333 * @ops: The ftrace_ops that hold the hash filters
3334 * @flag: The type of filter to process
3335 * @inode: The inode, usually passed in to your open routine
3336 * @file: The file, usually passed in to your open routine
3338 * ftrace_regex_open() initializes the filter files for the
3339 * @ops. Depending on @flag it may process the filter hash or
3340 * the notrace hash of @ops. With this called from the open
3341 * routine, you can use ftrace_filter_write() for the write
3342 * routine if @flag has FTRACE_ITER_FILTER set, or
3343 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
3344 * tracing_lseek() should be used as the lseek routine, and
3345 * release must call ftrace_regex_release().
3348 ftrace_regex_open(struct ftrace_ops *ops, int flag,
3349 struct inode *inode, struct file *file)
3351 struct ftrace_iterator *iter;
3352 struct ftrace_hash *hash;
3355 ftrace_ops_init(ops);
3357 if (unlikely(ftrace_disabled))
3360 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3364 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
3372 mutex_lock(&ops->func_hash->regex_lock);
3374 if (flag & FTRACE_ITER_NOTRACE)
3375 hash = ops->func_hash->notrace_hash;
3377 hash = ops->func_hash->filter_hash;
3379 if (file->f_mode & FMODE_WRITE) {
3380 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
3382 if (file->f_flags & O_TRUNC)
3383 iter->hash = alloc_ftrace_hash(size_bits);
3385 iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash);
3388 trace_parser_put(&iter->parser);
3395 if (file->f_mode & FMODE_READ) {
3396 iter->pg = ftrace_pages_start;
3398 ret = seq_open(file, &show_ftrace_seq_ops);
3400 struct seq_file *m = file->private_data;
3404 free_ftrace_hash(iter->hash);
3405 trace_parser_put(&iter->parser);
3409 file->private_data = iter;
3412 mutex_unlock(&ops->func_hash->regex_lock);
3418 ftrace_filter_open(struct inode *inode, struct file *file)
3420 struct ftrace_ops *ops = inode->i_private;
3422 return ftrace_regex_open(ops,
3423 FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH,
3428 ftrace_notrace_open(struct inode *inode, struct file *file)
3430 struct ftrace_ops *ops = inode->i_private;
3432 return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
3436 /* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */
3437 struct ftrace_glob {
3443 static int ftrace_match(char *str, struct ftrace_glob *g)
3450 if (strcmp(str, g->search) == 0)
3453 case MATCH_FRONT_ONLY:
3454 if (strncmp(str, g->search, g->len) == 0)
3457 case MATCH_MIDDLE_ONLY:
3458 if (strstr(str, g->search))
3461 case MATCH_END_ONLY:
3463 if (slen >= g->len &&
3464 memcmp(str + slen - g->len, g->search, g->len) == 0)
3473 enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int clear_filter)
3475 struct ftrace_func_entry *entry;
3478 entry = ftrace_lookup_ip(hash, rec->ip);
3480 /* Do nothing if it doesn't exist */
3484 free_hash_entry(hash, entry);
3486 /* Do nothing if it exists */
3490 ret = add_hash_entry(hash, rec->ip);
3496 ftrace_match_record(struct dyn_ftrace *rec, struct ftrace_glob *func_g,
3497 struct ftrace_glob *mod_g, int exclude_mod)
3499 char str[KSYM_SYMBOL_LEN];
3502 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
3505 int mod_matches = (modname) ? ftrace_match(modname, mod_g) : 0;
3507 /* blank module name to match all modules */
3509 /* blank module globbing: modname xor exclude_mod */
3510 if ((!exclude_mod) != (!modname))
3515 /* not matching the module */
3516 if (!modname || !mod_matches) {
3523 if (mod_matches && exclude_mod)
3527 /* blank search means to match all funcs in the mod */
3532 return ftrace_match(str, func_g);
3536 match_records(struct ftrace_hash *hash, char *func, int len, char *mod)
3538 struct ftrace_page *pg;
3539 struct dyn_ftrace *rec;
3540 struct ftrace_glob func_g = { .type = MATCH_FULL };
3541 struct ftrace_glob mod_g = { .type = MATCH_FULL };
3542 struct ftrace_glob *mod_match = (mod) ? &mod_g : NULL;
3543 int exclude_mod = 0;
3549 func_g.type = filter_parse_regex(func, len, &func_g.search,
3551 func_g.len = strlen(func_g.search);
3555 mod_g.type = filter_parse_regex(mod, strlen(mod),
3556 &mod_g.search, &exclude_mod);
3557 mod_g.len = strlen(mod_g.search);
3560 mutex_lock(&ftrace_lock);
3562 if (unlikely(ftrace_disabled))
3565 do_for_each_ftrace_rec(pg, rec) {
3566 if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) {
3567 ret = enter_record(hash, rec, clear_filter);
3574 } while_for_each_ftrace_rec();
3576 mutex_unlock(&ftrace_lock);
3582 ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
3584 return match_records(hash, buff, len, NULL);
3589 * We register the module command as a template to show others how
3590 * to register the a command as well.
3594 ftrace_mod_callback(struct ftrace_hash *hash,
3595 char *func, char *cmd, char *module, int enable)
3600 * cmd == 'mod' because we only registered this func
3601 * for the 'mod' ftrace_func_command.
3602 * But if you register one func with multiple commands,
3603 * you can tell which command was used by the cmd
3606 ret = match_records(hash, func, strlen(func), module);
3614 static struct ftrace_func_command ftrace_mod_cmd = {
3616 .func = ftrace_mod_callback,
3619 static int __init ftrace_mod_cmd_init(void)
3621 return register_ftrace_command(&ftrace_mod_cmd);
3623 core_initcall(ftrace_mod_cmd_init);
3625 static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
3626 struct ftrace_ops *op, struct pt_regs *pt_regs)
3628 struct ftrace_func_probe *entry;
3629 struct hlist_head *hhd;
3632 key = hash_long(ip, FTRACE_HASH_BITS);
3634 hhd = &ftrace_func_hash[key];
3636 if (hlist_empty(hhd))
3640 * Disable preemption for these calls to prevent a RCU grace
3641 * period. This syncs the hash iteration and freeing of items
3642 * on the hash. rcu_read_lock is too dangerous here.
3644 preempt_disable_notrace();
3645 hlist_for_each_entry_rcu_notrace(entry, hhd, node) {
3646 if (entry->ip == ip)
3647 entry->ops->func(ip, parent_ip, &entry->data);
3649 preempt_enable_notrace();
3652 static struct ftrace_ops trace_probe_ops __read_mostly =
3654 .func = function_trace_probe_call,
3655 .flags = FTRACE_OPS_FL_INITIALIZED,
3656 INIT_OPS_HASH(trace_probe_ops)
3659 static int ftrace_probe_registered;
3661 static void __enable_ftrace_function_probe(struct ftrace_ops_hash *old_hash)
3666 if (ftrace_probe_registered) {
3667 /* still need to update the function call sites */
3669 ftrace_run_modify_code(&trace_probe_ops, FTRACE_UPDATE_CALLS,
3674 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3675 struct hlist_head *hhd = &ftrace_func_hash[i];
3679 /* Nothing registered? */
3680 if (i == FTRACE_FUNC_HASHSIZE)
3683 ret = ftrace_startup(&trace_probe_ops, 0);
3685 ftrace_probe_registered = 1;
3688 static void __disable_ftrace_function_probe(void)
3692 if (!ftrace_probe_registered)
3695 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3696 struct hlist_head *hhd = &ftrace_func_hash[i];
3701 /* no more funcs left */
3702 ftrace_shutdown(&trace_probe_ops, 0);
3704 ftrace_probe_registered = 0;
3708 static void ftrace_free_entry(struct ftrace_func_probe *entry)
3710 if (entry->ops->free)
3711 entry->ops->free(entry->ops, entry->ip, &entry->data);
3716 register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
3719 struct ftrace_ops_hash old_hash_ops;
3720 struct ftrace_func_probe *entry;
3721 struct ftrace_glob func_g;
3722 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
3723 struct ftrace_hash *old_hash = *orig_hash;
3724 struct ftrace_hash *hash;
3725 struct ftrace_page *pg;
3726 struct dyn_ftrace *rec;
3732 func_g.type = filter_parse_regex(glob, strlen(glob),
3733 &func_g.search, ¬);
3734 func_g.len = strlen(func_g.search);
3736 /* we do not support '!' for function probes */
3740 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
3742 old_hash_ops.filter_hash = old_hash;
3743 /* Probes only have filters */
3744 old_hash_ops.notrace_hash = NULL;
3746 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
3752 if (unlikely(ftrace_disabled)) {
3757 mutex_lock(&ftrace_lock);
3759 do_for_each_ftrace_rec(pg, rec) {
3761 if (!ftrace_match_record(rec, &func_g, NULL, 0))
3764 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
3766 /* If we did not process any, then return error */
3777 * The caller might want to do something special
3778 * for each function we find. We call the callback
3779 * to give the caller an opportunity to do so.
3782 if (ops->init(ops, rec->ip, &entry->data) < 0) {
3783 /* caller does not like this func */
3789 ret = enter_record(hash, rec, 0);
3797 entry->ip = rec->ip;
3799 key = hash_long(entry->ip, FTRACE_HASH_BITS);
3800 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
3802 } while_for_each_ftrace_rec();
3804 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
3806 __enable_ftrace_function_probe(&old_hash_ops);
3809 free_ftrace_hash_rcu(old_hash);
3814 mutex_unlock(&ftrace_lock);
3816 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
3817 free_ftrace_hash(hash);
3823 PROBE_TEST_FUNC = 1,
3828 __unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
3829 void *data, int flags)
3831 struct ftrace_func_entry *rec_entry;
3832 struct ftrace_func_probe *entry;
3833 struct ftrace_func_probe *p;
3834 struct ftrace_glob func_g;
3835 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
3836 struct ftrace_hash *old_hash = *orig_hash;
3837 struct list_head free_list;
3838 struct ftrace_hash *hash;
3839 struct hlist_node *tmp;
3840 char str[KSYM_SYMBOL_LEN];
3843 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
3844 func_g.search = NULL;
3848 func_g.type = filter_parse_regex(glob, strlen(glob),
3849 &func_g.search, ¬);
3850 func_g.len = strlen(func_g.search);
3851 func_g.search = glob;
3853 /* we do not support '!' for function probes */
3858 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
3860 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3862 /* Hmm, should report this somehow */
3865 INIT_LIST_HEAD(&free_list);
3867 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3868 struct hlist_head *hhd = &ftrace_func_hash[i];
3870 hlist_for_each_entry_safe(entry, tmp, hhd, node) {
3872 /* break up if statements for readability */
3873 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
3876 if ((flags & PROBE_TEST_DATA) && entry->data != data)
3879 /* do this last, since it is the most expensive */
3880 if (func_g.search) {
3881 kallsyms_lookup(entry->ip, NULL, NULL,
3883 if (!ftrace_match(str, &func_g))
3887 rec_entry = ftrace_lookup_ip(hash, entry->ip);
3888 /* It is possible more than one entry had this ip */
3890 free_hash_entry(hash, rec_entry);
3892 hlist_del_rcu(&entry->node);
3893 list_add(&entry->free_list, &free_list);
3896 mutex_lock(&ftrace_lock);
3897 __disable_ftrace_function_probe();
3899 * Remove after the disable is called. Otherwise, if the last
3900 * probe is removed, a null hash means *all enabled*.
3902 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
3903 synchronize_sched();
3905 free_ftrace_hash_rcu(old_hash);
3907 list_for_each_entry_safe(entry, p, &free_list, free_list) {
3908 list_del(&entry->free_list);
3909 ftrace_free_entry(entry);
3911 mutex_unlock(&ftrace_lock);
3914 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
3915 free_ftrace_hash(hash);
3919 unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
3922 __unregister_ftrace_function_probe(glob, ops, data,
3923 PROBE_TEST_FUNC | PROBE_TEST_DATA);
3927 unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
3929 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
3932 void unregister_ftrace_function_probe_all(char *glob)
3934 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
3937 static LIST_HEAD(ftrace_commands);
3938 static DEFINE_MUTEX(ftrace_cmd_mutex);
3941 * Currently we only register ftrace commands from __init, so mark this
3944 __init int register_ftrace_command(struct ftrace_func_command *cmd)
3946 struct ftrace_func_command *p;
3949 mutex_lock(&ftrace_cmd_mutex);
3950 list_for_each_entry(p, &ftrace_commands, list) {
3951 if (strcmp(cmd->name, p->name) == 0) {
3956 list_add(&cmd->list, &ftrace_commands);
3958 mutex_unlock(&ftrace_cmd_mutex);
3964 * Currently we only unregister ftrace commands from __init, so mark
3967 __init int unregister_ftrace_command(struct ftrace_func_command *cmd)
3969 struct ftrace_func_command *p, *n;
3972 mutex_lock(&ftrace_cmd_mutex);
3973 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
3974 if (strcmp(cmd->name, p->name) == 0) {
3976 list_del_init(&p->list);
3981 mutex_unlock(&ftrace_cmd_mutex);
3986 static int ftrace_process_regex(struct ftrace_hash *hash,
3987 char *buff, int len, int enable)
3989 char *func, *command, *next = buff;
3990 struct ftrace_func_command *p;
3993 func = strsep(&next, ":");
3996 ret = ftrace_match_records(hash, func, len);
4006 command = strsep(&next, ":");
4008 mutex_lock(&ftrace_cmd_mutex);
4009 list_for_each_entry(p, &ftrace_commands, list) {
4010 if (strcmp(p->name, command) == 0) {
4011 ret = p->func(hash, func, command, next, enable);
4016 mutex_unlock(&ftrace_cmd_mutex);
4022 ftrace_regex_write(struct file *file, const char __user *ubuf,
4023 size_t cnt, loff_t *ppos, int enable)
4025 struct ftrace_iterator *iter;
4026 struct trace_parser *parser;
4032 if (file->f_mode & FMODE_READ) {
4033 struct seq_file *m = file->private_data;
4036 iter = file->private_data;
4038 if (unlikely(ftrace_disabled))
4041 /* iter->hash is a local copy, so we don't need regex_lock */
4043 parser = &iter->parser;
4044 read = trace_get_user(parser, ubuf, cnt, ppos);
4046 if (read >= 0 && trace_parser_loaded(parser) &&
4047 !trace_parser_cont(parser)) {
4048 ret = ftrace_process_regex(iter->hash, parser->buffer,
4049 parser->idx, enable);
4050 trace_parser_clear(parser);
4061 ftrace_filter_write(struct file *file, const char __user *ubuf,
4062 size_t cnt, loff_t *ppos)
4064 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
4068 ftrace_notrace_write(struct file *file, const char __user *ubuf,
4069 size_t cnt, loff_t *ppos)
4071 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
4075 ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
4077 struct ftrace_func_entry *entry;
4079 if (!ftrace_location(ip))
4083 entry = ftrace_lookup_ip(hash, ip);
4086 free_hash_entry(hash, entry);
4090 return add_hash_entry(hash, ip);
4093 static void ftrace_ops_update_code(struct ftrace_ops *ops,
4094 struct ftrace_ops_hash *old_hash)
4096 struct ftrace_ops *op;
4098 if (!ftrace_enabled)
4101 if (ops->flags & FTRACE_OPS_FL_ENABLED) {
4102 ftrace_run_modify_code(ops, FTRACE_UPDATE_CALLS, old_hash);
4107 * If this is the shared global_ops filter, then we need to
4108 * check if there is another ops that shares it, is enabled.
4109 * If so, we still need to run the modify code.
4111 if (ops->func_hash != &global_ops.local_hash)
4114 do_for_each_ftrace_op(op, ftrace_ops_list) {
4115 if (op->func_hash == &global_ops.local_hash &&
4116 op->flags & FTRACE_OPS_FL_ENABLED) {
4117 ftrace_run_modify_code(op, FTRACE_UPDATE_CALLS, old_hash);
4118 /* Only need to do this once */
4121 } while_for_each_ftrace_op(op);
4125 ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
4126 unsigned long ip, int remove, int reset, int enable)
4128 struct ftrace_hash **orig_hash;
4129 struct ftrace_ops_hash old_hash_ops;
4130 struct ftrace_hash *old_hash;
4131 struct ftrace_hash *hash;
4134 if (unlikely(ftrace_disabled))
4137 mutex_lock(&ops->func_hash->regex_lock);
4140 orig_hash = &ops->func_hash->filter_hash;
4142 orig_hash = &ops->func_hash->notrace_hash;
4145 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4147 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
4151 goto out_regex_unlock;
4154 if (buf && !ftrace_match_records(hash, buf, len)) {
4156 goto out_regex_unlock;
4159 ret = ftrace_match_addr(hash, ip, remove);
4161 goto out_regex_unlock;
4164 mutex_lock(&ftrace_lock);
4165 old_hash = *orig_hash;
4166 old_hash_ops.filter_hash = ops->func_hash->filter_hash;
4167 old_hash_ops.notrace_hash = ops->func_hash->notrace_hash;
4168 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
4170 ftrace_ops_update_code(ops, &old_hash_ops);
4171 free_ftrace_hash_rcu(old_hash);
4173 mutex_unlock(&ftrace_lock);
4176 mutex_unlock(&ops->func_hash->regex_lock);
4178 free_ftrace_hash(hash);
4183 ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove,
4184 int reset, int enable)
4186 return ftrace_set_hash(ops, 0, 0, ip, remove, reset, enable);
4190 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
4191 * @ops - the ops to set the filter with
4192 * @ip - the address to add to or remove from the filter.
4193 * @remove - non zero to remove the ip from the filter
4194 * @reset - non zero to reset all filters before applying this filter.
4196 * Filters denote which functions should be enabled when tracing is enabled
4197 * If @ip is NULL, it failes to update filter.
4199 int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
4200 int remove, int reset)
4202 ftrace_ops_init(ops);
4203 return ftrace_set_addr(ops, ip, remove, reset, 1);
4205 EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
4208 ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
4209 int reset, int enable)
4211 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
4215 * ftrace_set_filter - set a function to filter on in ftrace
4216 * @ops - the ops to set the filter with
4217 * @buf - the string that holds the function filter text.
4218 * @len - the length of the string.
4219 * @reset - non zero to reset all filters before applying this filter.
4221 * Filters denote which functions should be enabled when tracing is enabled.
4222 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4224 int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
4227 ftrace_ops_init(ops);
4228 return ftrace_set_regex(ops, buf, len, reset, 1);
4230 EXPORT_SYMBOL_GPL(ftrace_set_filter);
4233 * ftrace_set_notrace - set a function to not trace in ftrace
4234 * @ops - the ops to set the notrace filter with
4235 * @buf - the string that holds the function notrace text.
4236 * @len - the length of the string.
4237 * @reset - non zero to reset all filters before applying this filter.
4239 * Notrace Filters denote which functions should not be enabled when tracing
4240 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4243 int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
4246 ftrace_ops_init(ops);
4247 return ftrace_set_regex(ops, buf, len, reset, 0);
4249 EXPORT_SYMBOL_GPL(ftrace_set_notrace);
4251 * ftrace_set_global_filter - set a function to filter on with global tracers
4252 * @buf - the string that holds the function filter text.
4253 * @len - the length of the string.
4254 * @reset - non zero to reset all filters before applying this filter.
4256 * Filters denote which functions should be enabled when tracing is enabled.
4257 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4259 void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
4261 ftrace_set_regex(&global_ops, buf, len, reset, 1);
4263 EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
4266 * ftrace_set_global_notrace - set a function to not trace with global tracers
4267 * @buf - the string that holds the function notrace text.
4268 * @len - the length of the string.
4269 * @reset - non zero to reset all filters before applying this filter.
4271 * Notrace Filters denote which functions should not be enabled when tracing
4272 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4275 void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
4277 ftrace_set_regex(&global_ops, buf, len, reset, 0);
4279 EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
4282 * command line interface to allow users to set filters on boot up.
4284 #define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
4285 static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4286 static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
4288 /* Used by function selftest to not test if filter is set */
4289 bool ftrace_filter_param __initdata;
4291 static int __init set_ftrace_notrace(char *str)
4293 ftrace_filter_param = true;
4294 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
4297 __setup("ftrace_notrace=", set_ftrace_notrace);
4299 static int __init set_ftrace_filter(char *str)
4301 ftrace_filter_param = true;
4302 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
4305 __setup("ftrace_filter=", set_ftrace_filter);
4307 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
4308 static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
4309 static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4310 static int ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer);
4312 static unsigned long save_global_trampoline;
4313 static unsigned long save_global_flags;
4315 static int __init set_graph_function(char *str)
4317 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
4320 __setup("ftrace_graph_filter=", set_graph_function);
4322 static int __init set_graph_notrace_function(char *str)
4324 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
4327 __setup("ftrace_graph_notrace=", set_graph_notrace_function);
4329 static void __init set_ftrace_early_graph(char *buf, int enable)
4333 unsigned long *table = ftrace_graph_funcs;
4334 int *count = &ftrace_graph_count;
4337 table = ftrace_graph_notrace_funcs;
4338 count = &ftrace_graph_notrace_count;
4342 func = strsep(&buf, ",");
4343 /* we allow only one expression at a time */
4344 ret = ftrace_set_func(table, count, FTRACE_GRAPH_MAX_FUNCS, func);
4346 printk(KERN_DEBUG "ftrace: function %s not "
4347 "traceable\n", func);
4350 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4353 ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
4357 ftrace_ops_init(ops);
4360 func = strsep(&buf, ",");
4361 ftrace_set_regex(ops, func, strlen(func), 0, enable);
4365 static void __init set_ftrace_early_filters(void)
4367 if (ftrace_filter_buf[0])
4368 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
4369 if (ftrace_notrace_buf[0])
4370 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
4371 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
4372 if (ftrace_graph_buf[0])
4373 set_ftrace_early_graph(ftrace_graph_buf, 1);
4374 if (ftrace_graph_notrace_buf[0])
4375 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
4376 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4379 int ftrace_regex_release(struct inode *inode, struct file *file)
4381 struct seq_file *m = (struct seq_file *)file->private_data;
4382 struct ftrace_ops_hash old_hash_ops;
4383 struct ftrace_iterator *iter;
4384 struct ftrace_hash **orig_hash;
4385 struct ftrace_hash *old_hash;
4386 struct trace_parser *parser;
4390 if (file->f_mode & FMODE_READ) {
4392 seq_release(inode, file);
4394 iter = file->private_data;
4396 parser = &iter->parser;
4397 if (trace_parser_loaded(parser)) {
4398 parser->buffer[parser->idx] = 0;
4399 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
4402 trace_parser_put(parser);
4404 mutex_lock(&iter->ops->func_hash->regex_lock);
4406 if (file->f_mode & FMODE_WRITE) {
4407 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
4410 orig_hash = &iter->ops->func_hash->filter_hash;
4412 orig_hash = &iter->ops->func_hash->notrace_hash;
4414 mutex_lock(&ftrace_lock);
4415 old_hash = *orig_hash;
4416 old_hash_ops.filter_hash = iter->ops->func_hash->filter_hash;
4417 old_hash_ops.notrace_hash = iter->ops->func_hash->notrace_hash;
4418 ret = ftrace_hash_move(iter->ops, filter_hash,
4419 orig_hash, iter->hash);
4421 ftrace_ops_update_code(iter->ops, &old_hash_ops);
4422 free_ftrace_hash_rcu(old_hash);
4424 mutex_unlock(&ftrace_lock);
4427 mutex_unlock(&iter->ops->func_hash->regex_lock);
4428 free_ftrace_hash(iter->hash);
4434 static const struct file_operations ftrace_avail_fops = {
4435 .open = ftrace_avail_open,
4437 .llseek = seq_lseek,
4438 .release = seq_release_private,
4441 static const struct file_operations ftrace_enabled_fops = {
4442 .open = ftrace_enabled_open,
4444 .llseek = seq_lseek,
4445 .release = seq_release_private,
4448 static const struct file_operations ftrace_filter_fops = {
4449 .open = ftrace_filter_open,
4451 .write = ftrace_filter_write,
4452 .llseek = tracing_lseek,
4453 .release = ftrace_regex_release,
4456 static const struct file_operations ftrace_notrace_fops = {
4457 .open = ftrace_notrace_open,
4459 .write = ftrace_notrace_write,
4460 .llseek = tracing_lseek,
4461 .release = ftrace_regex_release,
4464 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
4466 static DEFINE_MUTEX(graph_lock);
4468 int ftrace_graph_count;
4469 int ftrace_graph_notrace_count;
4470 unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
4471 unsigned long ftrace_graph_notrace_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
4473 struct ftrace_graph_data {
4474 unsigned long *table;
4477 const struct seq_operations *seq_ops;
4481 __g_next(struct seq_file *m, loff_t *pos)
4483 struct ftrace_graph_data *fgd = m->private;
4485 if (*pos >= *fgd->count)
4487 return &fgd->table[*pos];
4491 g_next(struct seq_file *m, void *v, loff_t *pos)
4494 return __g_next(m, pos);
4497 static void *g_start(struct seq_file *m, loff_t *pos)
4499 struct ftrace_graph_data *fgd = m->private;
4501 mutex_lock(&graph_lock);
4503 /* Nothing, tell g_show to print all functions are enabled */
4504 if (!*fgd->count && !*pos)
4507 return __g_next(m, pos);
4510 static void g_stop(struct seq_file *m, void *p)
4512 mutex_unlock(&graph_lock);
4515 static int g_show(struct seq_file *m, void *v)
4517 unsigned long *ptr = v;
4522 if (ptr == (unsigned long *)1) {
4523 struct ftrace_graph_data *fgd = m->private;
4525 if (fgd->table == ftrace_graph_funcs)
4526 seq_puts(m, "#### all functions enabled ####\n");
4528 seq_puts(m, "#### no functions disabled ####\n");
4532 seq_printf(m, "%ps\n", (void *)*ptr);
4537 static const struct seq_operations ftrace_graph_seq_ops = {
4545 __ftrace_graph_open(struct inode *inode, struct file *file,
4546 struct ftrace_graph_data *fgd)
4550 mutex_lock(&graph_lock);
4551 if ((file->f_mode & FMODE_WRITE) &&
4552 (file->f_flags & O_TRUNC)) {
4554 memset(fgd->table, 0, fgd->size * sizeof(*fgd->table));
4556 mutex_unlock(&graph_lock);
4558 if (file->f_mode & FMODE_READ) {
4559 ret = seq_open(file, fgd->seq_ops);
4561 struct seq_file *m = file->private_data;
4565 file->private_data = fgd;
4571 ftrace_graph_open(struct inode *inode, struct file *file)
4573 struct ftrace_graph_data *fgd;
4575 if (unlikely(ftrace_disabled))
4578 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4582 fgd->table = ftrace_graph_funcs;
4583 fgd->size = FTRACE_GRAPH_MAX_FUNCS;
4584 fgd->count = &ftrace_graph_count;
4585 fgd->seq_ops = &ftrace_graph_seq_ops;
4587 return __ftrace_graph_open(inode, file, fgd);
4591 ftrace_graph_notrace_open(struct inode *inode, struct file *file)
4593 struct ftrace_graph_data *fgd;
4595 if (unlikely(ftrace_disabled))
4598 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4602 fgd->table = ftrace_graph_notrace_funcs;
4603 fgd->size = FTRACE_GRAPH_MAX_FUNCS;
4604 fgd->count = &ftrace_graph_notrace_count;
4605 fgd->seq_ops = &ftrace_graph_seq_ops;
4607 return __ftrace_graph_open(inode, file, fgd);
4611 ftrace_graph_release(struct inode *inode, struct file *file)
4613 if (file->f_mode & FMODE_READ) {
4614 struct seq_file *m = file->private_data;
4617 seq_release(inode, file);
4619 kfree(file->private_data);
4626 ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer)
4628 struct ftrace_glob func_g;
4629 struct dyn_ftrace *rec;
4630 struct ftrace_page *pg;
4637 func_g.type = filter_parse_regex(buffer, strlen(buffer),
4638 &func_g.search, ¬);
4639 if (!not && *idx >= size)
4642 func_g.len = strlen(func_g.search);
4644 mutex_lock(&ftrace_lock);
4646 if (unlikely(ftrace_disabled)) {
4647 mutex_unlock(&ftrace_lock);
4651 do_for_each_ftrace_rec(pg, rec) {
4653 if (ftrace_match_record(rec, &func_g, NULL, 0)) {
4654 /* if it is in the array */
4656 for (i = 0; i < *idx; i++) {
4657 if (array[i] == rec->ip) {
4666 array[(*idx)++] = rec->ip;
4672 array[i] = array[--(*idx)];
4678 } while_for_each_ftrace_rec();
4680 mutex_unlock(&ftrace_lock);
4689 ftrace_graph_write(struct file *file, const char __user *ubuf,
4690 size_t cnt, loff_t *ppos)
4692 struct trace_parser parser;
4693 ssize_t read, ret = 0;
4694 struct ftrace_graph_data *fgd = file->private_data;
4699 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX))
4702 read = trace_get_user(&parser, ubuf, cnt, ppos);
4704 if (read >= 0 && trace_parser_loaded((&parser))) {
4705 parser.buffer[parser.idx] = 0;
4707 mutex_lock(&graph_lock);
4709 /* we allow only one expression at a time */
4710 ret = ftrace_set_func(fgd->table, fgd->count, fgd->size,
4713 mutex_unlock(&graph_lock);
4719 trace_parser_put(&parser);
4724 static const struct file_operations ftrace_graph_fops = {
4725 .open = ftrace_graph_open,
4727 .write = ftrace_graph_write,
4728 .llseek = tracing_lseek,
4729 .release = ftrace_graph_release,
4732 static const struct file_operations ftrace_graph_notrace_fops = {
4733 .open = ftrace_graph_notrace_open,
4735 .write = ftrace_graph_write,
4736 .llseek = tracing_lseek,
4737 .release = ftrace_graph_release,
4739 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4741 void ftrace_create_filter_files(struct ftrace_ops *ops,
4742 struct dentry *parent)
4745 trace_create_file("set_ftrace_filter", 0644, parent,
4746 ops, &ftrace_filter_fops);
4748 trace_create_file("set_ftrace_notrace", 0644, parent,
4749 ops, &ftrace_notrace_fops);
4753 * The name "destroy_filter_files" is really a misnomer. Although
4754 * in the future, it may actualy delete the files, but this is
4755 * really intended to make sure the ops passed in are disabled
4756 * and that when this function returns, the caller is free to
4759 * The "destroy" name is only to match the "create" name that this
4760 * should be paired with.
4762 void ftrace_destroy_filter_files(struct ftrace_ops *ops)
4764 mutex_lock(&ftrace_lock);
4765 if (ops->flags & FTRACE_OPS_FL_ENABLED)
4766 ftrace_shutdown(ops, 0);
4767 ops->flags |= FTRACE_OPS_FL_DELETED;
4768 mutex_unlock(&ftrace_lock);
4771 static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer)
4774 trace_create_file("available_filter_functions", 0444,
4775 d_tracer, NULL, &ftrace_avail_fops);
4777 trace_create_file("enabled_functions", 0444,
4778 d_tracer, NULL, &ftrace_enabled_fops);
4780 ftrace_create_filter_files(&global_ops, d_tracer);
4782 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
4783 trace_create_file("set_graph_function", 0444, d_tracer,
4785 &ftrace_graph_fops);
4786 trace_create_file("set_graph_notrace", 0444, d_tracer,
4788 &ftrace_graph_notrace_fops);
4789 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4794 static int ftrace_cmp_ips(const void *a, const void *b)
4796 const unsigned long *ipa = a;
4797 const unsigned long *ipb = b;
4806 static int ftrace_process_locs(struct module *mod,
4807 unsigned long *start,
4810 struct ftrace_page *start_pg;
4811 struct ftrace_page *pg;
4812 struct dyn_ftrace *rec;
4813 unsigned long count;
4816 unsigned long flags = 0; /* Shut up gcc */
4819 count = end - start;
4824 sort(start, count, sizeof(*start),
4825 ftrace_cmp_ips, NULL);
4827 start_pg = ftrace_allocate_pages(count);
4831 mutex_lock(&ftrace_lock);
4834 * Core and each module needs their own pages, as
4835 * modules will free them when they are removed.
4836 * Force a new page to be allocated for modules.
4839 WARN_ON(ftrace_pages || ftrace_pages_start);
4840 /* First initialization */
4841 ftrace_pages = ftrace_pages_start = start_pg;
4846 if (WARN_ON(ftrace_pages->next)) {
4847 /* Hmm, we have free pages? */
4848 while (ftrace_pages->next)
4849 ftrace_pages = ftrace_pages->next;
4852 ftrace_pages->next = start_pg;
4858 addr = ftrace_call_adjust(*p++);
4860 * Some architecture linkers will pad between
4861 * the different mcount_loc sections of different
4862 * object files to satisfy alignments.
4863 * Skip any NULL pointers.
4868 if (pg->index == pg->size) {
4869 /* We should have allocated enough */
4870 if (WARN_ON(!pg->next))
4875 rec = &pg->records[pg->index++];
4879 /* We should have used all pages */
4882 /* Assign the last page to ftrace_pages */
4886 * We only need to disable interrupts on start up
4887 * because we are modifying code that an interrupt
4888 * may execute, and the modification is not atomic.
4889 * But for modules, nothing runs the code we modify
4890 * until we are finished with it, and there's no
4891 * reason to cause large interrupt latencies while we do it.
4894 local_irq_save(flags);
4895 ftrace_update_code(mod, start_pg);
4897 local_irq_restore(flags);
4900 mutex_unlock(&ftrace_lock);
4905 #ifdef CONFIG_MODULES
4907 #define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
4909 static int referenced_filters(struct dyn_ftrace *rec)
4911 struct ftrace_ops *ops;
4914 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
4915 if (ops_references_rec(ops, rec))
4922 void ftrace_release_mod(struct module *mod)
4924 struct dyn_ftrace *rec;
4925 struct ftrace_page **last_pg;
4926 struct ftrace_page *pg;
4929 mutex_lock(&ftrace_lock);
4931 if (ftrace_disabled)
4935 * Each module has its own ftrace_pages, remove
4936 * them from the list.
4938 last_pg = &ftrace_pages_start;
4939 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
4940 rec = &pg->records[0];
4941 if (within_module_core(rec->ip, mod)) {
4943 * As core pages are first, the first
4944 * page should never be a module page.
4946 if (WARN_ON(pg == ftrace_pages_start))
4949 /* Check if we are deleting the last page */
4950 if (pg == ftrace_pages)
4951 ftrace_pages = next_to_ftrace_page(last_pg);
4953 *last_pg = pg->next;
4954 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
4955 free_pages((unsigned long)pg->records, order);
4958 last_pg = &pg->next;
4961 mutex_unlock(&ftrace_lock);
4964 void ftrace_module_enable(struct module *mod)
4966 struct dyn_ftrace *rec;
4967 struct ftrace_page *pg;
4969 mutex_lock(&ftrace_lock);
4971 if (ftrace_disabled)
4975 * If the tracing is enabled, go ahead and enable the record.
4977 * The reason not to enable the record immediatelly is the
4978 * inherent check of ftrace_make_nop/ftrace_make_call for
4979 * correct previous instructions. Making first the NOP
4980 * conversion puts the module to the correct state, thus
4981 * passing the ftrace_make_call check.
4983 * We also delay this to after the module code already set the
4984 * text to read-only, as we now need to set it back to read-write
4985 * so that we can modify the text.
4987 if (ftrace_start_up)
4988 ftrace_arch_code_modify_prepare();
4990 do_for_each_ftrace_rec(pg, rec) {
4993 * do_for_each_ftrace_rec() is a double loop.
4994 * module text shares the pg. If a record is
4995 * not part of this module, then skip this pg,
4996 * which the "break" will do.
4998 if (!within_module_core(rec->ip, mod))
5004 * When adding a module, we need to check if tracers are
5005 * currently enabled and if they are, and can trace this record,
5006 * we need to enable the module functions as well as update the
5007 * reference counts for those function records.
5009 if (ftrace_start_up)
5010 cnt += referenced_filters(rec);
5012 /* This clears FTRACE_FL_DISABLED */
5015 if (ftrace_start_up && cnt) {
5016 int failed = __ftrace_replace_code(rec, 1);
5018 ftrace_bug(failed, rec);
5023 } while_for_each_ftrace_rec();
5026 if (ftrace_start_up)
5027 ftrace_arch_code_modify_post_process();
5030 mutex_unlock(&ftrace_lock);
5033 void ftrace_module_init(struct module *mod)
5035 if (ftrace_disabled || !mod->num_ftrace_callsites)
5038 ftrace_process_locs(mod, mod->ftrace_callsites,
5039 mod->ftrace_callsites + mod->num_ftrace_callsites);
5041 #endif /* CONFIG_MODULES */
5043 void __init ftrace_init(void)
5045 extern unsigned long __start_mcount_loc[];
5046 extern unsigned long __stop_mcount_loc[];
5047 unsigned long count, flags;
5050 local_irq_save(flags);
5051 ret = ftrace_dyn_arch_init();
5052 local_irq_restore(flags);
5056 count = __stop_mcount_loc - __start_mcount_loc;
5058 pr_info("ftrace: No functions to be traced?\n");
5062 pr_info("ftrace: allocating %ld entries in %ld pages\n",
5063 count, count / ENTRIES_PER_PAGE + 1);
5065 last_ftrace_enabled = ftrace_enabled = 1;
5067 ret = ftrace_process_locs(NULL,
5071 set_ftrace_early_filters();
5075 ftrace_disabled = 1;
5078 /* Do nothing if arch does not support this */
5079 void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
5083 static void ftrace_update_trampoline(struct ftrace_ops *ops)
5087 * Currently there's no safe way to free a trampoline when the kernel
5088 * is configured with PREEMPT. That is because a task could be preempted
5089 * when it jumped to the trampoline, it may be preempted for a long time
5090 * depending on the system load, and currently there's no way to know
5091 * when it will be off the trampoline. If the trampoline is freed
5092 * too early, when the task runs again, it will be executing on freed
5095 #ifdef CONFIG_PREEMPT
5096 /* Currently, only non dynamic ops can have a trampoline */
5097 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
5101 arch_ftrace_update_trampoline(ops);
5106 static struct ftrace_ops global_ops = {
5107 .func = ftrace_stub,
5108 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5109 FTRACE_OPS_FL_INITIALIZED |
5113 static int __init ftrace_nodyn_init(void)
5118 core_initcall(ftrace_nodyn_init);
5120 static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; }
5121 static inline void ftrace_startup_enable(int command) { }
5122 static inline void ftrace_startup_all(int command) { }
5123 /* Keep as macros so we do not need to define the commands */
5124 # define ftrace_startup(ops, command) \
5126 int ___ret = __register_ftrace_function(ops); \
5128 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
5131 # define ftrace_shutdown(ops, command) \
5133 int ___ret = __unregister_ftrace_function(ops); \
5135 (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \
5139 # define ftrace_startup_sysctl() do { } while (0)
5140 # define ftrace_shutdown_sysctl() do { } while (0)
5143 ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
5148 static void ftrace_update_trampoline(struct ftrace_ops *ops)
5152 #endif /* CONFIG_DYNAMIC_FTRACE */
5154 __init void ftrace_init_global_array_ops(struct trace_array *tr)
5156 tr->ops = &global_ops;
5157 tr->ops->private = tr;
5160 void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
5162 /* If we filter on pids, update to use the pid function */
5163 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
5164 if (WARN_ON(tr->ops->func != ftrace_stub))
5165 printk("ftrace ops had %pS for function\n",
5168 tr->ops->func = func;
5169 tr->ops->private = tr;
5172 void ftrace_reset_array_ops(struct trace_array *tr)
5174 tr->ops->func = ftrace_stub;
5178 __ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
5179 struct ftrace_ops *ignored, struct pt_regs *regs)
5181 struct ftrace_ops *op;
5184 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5189 * Some of the ops may be dynamically allocated,
5190 * they must be freed after a synchronize_sched().
5192 preempt_disable_notrace();
5194 do_for_each_ftrace_op(op, ftrace_ops_list) {
5196 * Check the following for each ops before calling their func:
5197 * if RCU flag is set, then rcu_is_watching() must be true
5198 * if PER_CPU is set, then ftrace_function_local_disable()
5200 * Otherwise test if the ip matches the ops filter
5202 * If any of the above fails then the op->func() is not executed.
5204 if ((!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching()) &&
5205 (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5206 !ftrace_function_local_disabled(op)) &&
5207 ftrace_ops_test(op, ip, regs)) {
5209 if (FTRACE_WARN_ON(!op->func)) {
5210 pr_warn("op=%p %pS\n", op, op);
5213 op->func(ip, parent_ip, op, regs);
5215 } while_for_each_ftrace_op(op);
5217 preempt_enable_notrace();
5218 trace_clear_recursion(bit);
5222 * Some archs only support passing ip and parent_ip. Even though
5223 * the list function ignores the op parameter, we do not want any
5224 * C side effects, where a function is called without the caller
5225 * sending a third parameter.
5226 * Archs are to support both the regs and ftrace_ops at the same time.
5227 * If they support ftrace_ops, it is assumed they support regs.
5228 * If call backs want to use regs, they must either check for regs
5229 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
5230 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
5231 * An architecture can pass partial regs with ftrace_ops and still
5232 * set the ARCH_SUPPORTS_FTRACE_OPS.
5234 #if ARCH_SUPPORTS_FTRACE_OPS
5235 static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
5236 struct ftrace_ops *op, struct pt_regs *regs)
5238 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
5241 static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip)
5243 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
5248 * If there's only one function registered but it does not support
5249 * recursion, needs RCU protection and/or requires per cpu handling, then
5250 * this function will be called by the mcount trampoline.
5252 static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
5253 struct ftrace_ops *op, struct pt_regs *regs)
5257 if ((op->flags & FTRACE_OPS_FL_RCU) && !rcu_is_watching())
5260 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5264 preempt_disable_notrace();
5266 if (!(op->flags & FTRACE_OPS_FL_PER_CPU) ||
5267 !ftrace_function_local_disabled(op)) {
5268 op->func(ip, parent_ip, op, regs);
5271 preempt_enable_notrace();
5272 trace_clear_recursion(bit);
5276 * ftrace_ops_get_func - get the function a trampoline should call
5277 * @ops: the ops to get the function for
5279 * Normally the mcount trampoline will call the ops->func, but there
5280 * are times that it should not. For example, if the ops does not
5281 * have its own recursion protection, then it should call the
5282 * ftrace_ops_recurs_func() instead.
5284 * Returns the function that the trampoline should call for @ops.
5286 ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
5289 * If the function does not handle recursion, needs to be RCU safe,
5290 * or does per cpu logic, then we need to call the assist handler.
5292 if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE) ||
5293 ops->flags & (FTRACE_OPS_FL_RCU | FTRACE_OPS_FL_PER_CPU))
5294 return ftrace_ops_assist_func;
5299 static void clear_ftrace_swapper(void)
5301 struct task_struct *p;
5305 for_each_online_cpu(cpu) {
5307 clear_tsk_trace_trace(p);
5312 static void set_ftrace_swapper(void)
5314 struct task_struct *p;
5318 for_each_online_cpu(cpu) {
5320 set_tsk_trace_trace(p);
5325 static void clear_ftrace_pid(struct pid *pid)
5327 struct task_struct *p;
5330 do_each_pid_task(pid, PIDTYPE_PID, p) {
5331 clear_tsk_trace_trace(p);
5332 } while_each_pid_task(pid, PIDTYPE_PID, p);
5338 static void set_ftrace_pid(struct pid *pid)
5340 struct task_struct *p;
5343 do_each_pid_task(pid, PIDTYPE_PID, p) {
5344 set_tsk_trace_trace(p);
5345 } while_each_pid_task(pid, PIDTYPE_PID, p);
5349 static void clear_ftrace_pid_task(struct pid *pid)
5351 if (pid == ftrace_swapper_pid)
5352 clear_ftrace_swapper();
5354 clear_ftrace_pid(pid);
5357 static void set_ftrace_pid_task(struct pid *pid)
5359 if (pid == ftrace_swapper_pid)
5360 set_ftrace_swapper();
5362 set_ftrace_pid(pid);
5365 static int ftrace_pid_add(int p)
5368 struct ftrace_pid *fpid;
5371 mutex_lock(&ftrace_lock);
5374 pid = ftrace_swapper_pid;
5376 pid = find_get_pid(p);
5383 list_for_each_entry(fpid, &ftrace_pids, list)
5384 if (fpid->pid == pid)
5389 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
5393 list_add(&fpid->list, &ftrace_pids);
5396 set_ftrace_pid_task(pid);
5398 ftrace_update_pid_func();
5400 ftrace_startup_all(0);
5402 mutex_unlock(&ftrace_lock);
5406 if (pid != ftrace_swapper_pid)
5410 mutex_unlock(&ftrace_lock);
5414 static void ftrace_pid_reset(void)
5416 struct ftrace_pid *fpid, *safe;
5418 mutex_lock(&ftrace_lock);
5419 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
5420 struct pid *pid = fpid->pid;
5422 clear_ftrace_pid_task(pid);
5424 list_del(&fpid->list);
5428 ftrace_update_pid_func();
5429 ftrace_startup_all(0);
5431 mutex_unlock(&ftrace_lock);
5434 static void *fpid_start(struct seq_file *m, loff_t *pos)
5436 mutex_lock(&ftrace_lock);
5438 if (!ftrace_pids_enabled() && (!*pos))
5441 return seq_list_start(&ftrace_pids, *pos);
5444 static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
5449 return seq_list_next(v, &ftrace_pids, pos);
5452 static void fpid_stop(struct seq_file *m, void *p)
5454 mutex_unlock(&ftrace_lock);
5457 static int fpid_show(struct seq_file *m, void *v)
5459 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
5461 if (v == (void *)1) {
5462 seq_puts(m, "no pid\n");
5466 if (fpid->pid == ftrace_swapper_pid)
5467 seq_puts(m, "swapper tasks\n");
5469 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
5474 static const struct seq_operations ftrace_pid_sops = {
5475 .start = fpid_start,
5482 ftrace_pid_open(struct inode *inode, struct file *file)
5486 if ((file->f_mode & FMODE_WRITE) &&
5487 (file->f_flags & O_TRUNC))
5490 if (file->f_mode & FMODE_READ)
5491 ret = seq_open(file, &ftrace_pid_sops);
5497 ftrace_pid_write(struct file *filp, const char __user *ubuf,
5498 size_t cnt, loff_t *ppos)
5504 if (cnt >= sizeof(buf))
5507 if (copy_from_user(&buf, ubuf, cnt))
5513 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
5514 * to clean the filter quietly.
5516 tmp = strstrip(buf);
5517 if (strlen(tmp) == 0)
5520 ret = kstrtol(tmp, 10, &val);
5524 ret = ftrace_pid_add(val);
5526 return ret ? ret : cnt;
5530 ftrace_pid_release(struct inode *inode, struct file *file)
5532 if (file->f_mode & FMODE_READ)
5533 seq_release(inode, file);
5538 static const struct file_operations ftrace_pid_fops = {
5539 .open = ftrace_pid_open,
5540 .write = ftrace_pid_write,
5542 .llseek = tracing_lseek,
5543 .release = ftrace_pid_release,
5546 static __init int ftrace_init_tracefs(void)
5548 struct dentry *d_tracer;
5550 d_tracer = tracing_init_dentry();
5551 if (IS_ERR(d_tracer))
5554 ftrace_init_dyn_tracefs(d_tracer);
5556 trace_create_file("set_ftrace_pid", 0644, d_tracer,
5557 NULL, &ftrace_pid_fops);
5559 ftrace_profile_tracefs(d_tracer);
5563 fs_initcall(ftrace_init_tracefs);
5566 * ftrace_kill - kill ftrace
5568 * This function should be used by panic code. It stops ftrace
5569 * but in a not so nice way. If you need to simply kill ftrace
5570 * from a non-atomic section, use ftrace_kill.
5572 void ftrace_kill(void)
5574 ftrace_disabled = 1;
5576 clear_ftrace_function();
5580 * Test if ftrace is dead or not.
5582 int ftrace_is_dead(void)
5584 return ftrace_disabled;
5588 * register_ftrace_function - register a function for profiling
5589 * @ops - ops structure that holds the function for profiling.
5591 * Register a function to be called by all functions in the
5594 * Note: @ops->func and all the functions it calls must be labeled
5595 * with "notrace", otherwise it will go into a
5598 int register_ftrace_function(struct ftrace_ops *ops)
5602 ftrace_ops_init(ops);
5604 mutex_lock(&ftrace_lock);
5606 ret = ftrace_startup(ops, 0);
5608 mutex_unlock(&ftrace_lock);
5612 EXPORT_SYMBOL_GPL(register_ftrace_function);
5615 * unregister_ftrace_function - unregister a function for profiling.
5616 * @ops - ops structure that holds the function to unregister
5618 * Unregister a function that was added to be called by ftrace profiling.
5620 int unregister_ftrace_function(struct ftrace_ops *ops)
5624 mutex_lock(&ftrace_lock);
5625 ret = ftrace_shutdown(ops, 0);
5626 mutex_unlock(&ftrace_lock);
5630 EXPORT_SYMBOL_GPL(unregister_ftrace_function);
5633 ftrace_enable_sysctl(struct ctl_table *table, int write,
5634 void __user *buffer, size_t *lenp,
5639 mutex_lock(&ftrace_lock);
5641 if (unlikely(ftrace_disabled))
5644 ret = proc_dointvec(table, write, buffer, lenp, ppos);
5646 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
5649 last_ftrace_enabled = !!ftrace_enabled;
5651 if (ftrace_enabled) {
5653 /* we are starting ftrace again */
5654 if (ftrace_ops_list != &ftrace_list_end)
5655 update_ftrace_function();
5657 ftrace_startup_sysctl();
5660 /* stopping ftrace calls (just send to ftrace_stub) */
5661 ftrace_trace_function = ftrace_stub;
5663 ftrace_shutdown_sysctl();
5667 mutex_unlock(&ftrace_lock);
5671 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
5673 static struct ftrace_ops graph_ops = {
5674 .func = ftrace_stub,
5675 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5676 FTRACE_OPS_FL_INITIALIZED |
5679 #ifdef FTRACE_GRAPH_TRAMP_ADDR
5680 .trampoline = FTRACE_GRAPH_TRAMP_ADDR,
5681 /* trampoline_size is only needed for dynamically allocated tramps */
5683 ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash)
5686 void ftrace_graph_sleep_time_control(bool enable)
5688 fgraph_sleep_time = enable;
5691 void ftrace_graph_graph_time_control(bool enable)
5693 fgraph_graph_time = enable;
5696 int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
5701 /* The callbacks that hook a function */
5702 trace_func_graph_ret_t ftrace_graph_return =
5703 (trace_func_graph_ret_t)ftrace_stub;
5704 trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
5705 static trace_func_graph_ent_t __ftrace_graph_entry = ftrace_graph_entry_stub;
5707 /* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
5708 static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
5712 unsigned long flags;
5713 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
5714 struct task_struct *g, *t;
5716 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
5717 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
5718 * sizeof(struct ftrace_ret_stack),
5720 if (!ret_stack_list[i]) {
5728 read_lock_irqsave(&tasklist_lock, flags);
5729 do_each_thread(g, t) {
5735 if (t->ret_stack == NULL) {
5736 atomic_set(&t->tracing_graph_pause, 0);
5737 atomic_set(&t->trace_overrun, 0);
5738 t->curr_ret_stack = -1;
5739 /* Make sure the tasks see the -1 first: */
5741 t->ret_stack = ret_stack_list[start++];
5743 } while_each_thread(g, t);
5746 read_unlock_irqrestore(&tasklist_lock, flags);
5748 for (i = start; i < end; i++)
5749 kfree(ret_stack_list[i]);
5754 ftrace_graph_probe_sched_switch(void *ignore, bool preempt,
5755 struct task_struct *prev, struct task_struct *next)
5757 unsigned long long timestamp;
5761 * Does the user want to count the time a function was asleep.
5762 * If so, do not update the time stamps.
5764 if (fgraph_sleep_time)
5767 timestamp = trace_clock_local();
5769 prev->ftrace_timestamp = timestamp;
5771 /* only process tasks that we timestamped */
5772 if (!next->ftrace_timestamp)
5776 * Update all the counters in next to make up for the
5777 * time next was sleeping.
5779 timestamp -= next->ftrace_timestamp;
5781 for (index = next->curr_ret_stack; index >= 0; index--)
5782 next->ret_stack[index].calltime += timestamp;
5785 /* Allocate a return stack for each task */
5786 static int start_graph_tracing(void)
5788 struct ftrace_ret_stack **ret_stack_list;
5791 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
5792 sizeof(struct ftrace_ret_stack *),
5795 if (!ret_stack_list)
5798 /* The cpu_boot init_task->ret_stack will never be freed */
5799 for_each_online_cpu(cpu) {
5800 if (!idle_task(cpu)->ret_stack)
5801 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
5805 ret = alloc_retstack_tasklist(ret_stack_list);
5806 } while (ret == -EAGAIN);
5809 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
5811 pr_info("ftrace_graph: Couldn't activate tracepoint"
5812 " probe to kernel_sched_switch\n");
5815 kfree(ret_stack_list);
5820 * Hibernation protection.
5821 * The state of the current task is too much unstable during
5822 * suspend/restore to disk. We want to protect against that.
5825 ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
5829 case PM_HIBERNATION_PREPARE:
5830 pause_graph_tracing();
5833 case PM_POST_HIBERNATION:
5834 unpause_graph_tracing();
5840 static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace)
5842 if (!ftrace_ops_test(&global_ops, trace->func, NULL))
5844 return __ftrace_graph_entry(trace);
5848 * The function graph tracer should only trace the functions defined
5849 * by set_ftrace_filter and set_ftrace_notrace. If another function
5850 * tracer ops is registered, the graph tracer requires testing the
5851 * function against the global ops, and not just trace any function
5852 * that any ftrace_ops registered.
5854 static void update_function_graph_func(void)
5856 struct ftrace_ops *op;
5857 bool do_test = false;
5860 * The graph and global ops share the same set of functions
5861 * to test. If any other ops is on the list, then
5862 * the graph tracing needs to test if its the function
5865 do_for_each_ftrace_op(op, ftrace_ops_list) {
5866 if (op != &global_ops && op != &graph_ops &&
5867 op != &ftrace_list_end) {
5869 /* in double loop, break out with goto */
5872 } while_for_each_ftrace_op(op);
5875 ftrace_graph_entry = ftrace_graph_entry_test;
5877 ftrace_graph_entry = __ftrace_graph_entry;
5880 static struct notifier_block ftrace_suspend_notifier = {
5881 .notifier_call = ftrace_suspend_notifier_call,
5884 int register_ftrace_graph(trace_func_graph_ret_t retfunc,
5885 trace_func_graph_ent_t entryfunc)
5889 mutex_lock(&ftrace_lock);
5891 /* we currently allow only one tracer registered at a time */
5892 if (ftrace_graph_active) {
5897 register_pm_notifier(&ftrace_suspend_notifier);
5899 ftrace_graph_active++;
5900 ret = start_graph_tracing();
5902 ftrace_graph_active--;
5906 ftrace_graph_return = retfunc;
5909 * Update the indirect function to the entryfunc, and the
5910 * function that gets called to the entry_test first. Then
5911 * call the update fgraph entry function to determine if
5912 * the entryfunc should be called directly or not.
5914 __ftrace_graph_entry = entryfunc;
5915 ftrace_graph_entry = ftrace_graph_entry_test;
5916 update_function_graph_func();
5918 ret = ftrace_startup(&graph_ops, FTRACE_START_FUNC_RET);
5920 mutex_unlock(&ftrace_lock);
5924 void unregister_ftrace_graph(void)
5926 mutex_lock(&ftrace_lock);
5928 if (unlikely(!ftrace_graph_active))
5931 ftrace_graph_active--;
5932 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
5933 ftrace_graph_entry = ftrace_graph_entry_stub;
5934 __ftrace_graph_entry = ftrace_graph_entry_stub;
5935 ftrace_shutdown(&graph_ops, FTRACE_STOP_FUNC_RET);
5936 unregister_pm_notifier(&ftrace_suspend_notifier);
5937 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
5939 #ifdef CONFIG_DYNAMIC_FTRACE
5941 * Function graph does not allocate the trampoline, but
5942 * other global_ops do. We need to reset the ALLOC_TRAMP flag
5945 global_ops.trampoline = save_global_trampoline;
5946 if (save_global_flags & FTRACE_OPS_FL_ALLOC_TRAMP)
5947 global_ops.flags |= FTRACE_OPS_FL_ALLOC_TRAMP;
5951 mutex_unlock(&ftrace_lock);
5954 static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
5957 graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
5959 atomic_set(&t->tracing_graph_pause, 0);
5960 atomic_set(&t->trace_overrun, 0);
5961 t->ftrace_timestamp = 0;
5962 /* make curr_ret_stack visible before we add the ret_stack */
5964 t->ret_stack = ret_stack;
5968 * Allocate a return stack for the idle task. May be the first
5969 * time through, or it may be done by CPU hotplug online.
5971 void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
5973 t->curr_ret_stack = -1;
5975 * The idle task has no parent, it either has its own
5976 * stack or no stack at all.
5979 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
5981 if (ftrace_graph_active) {
5982 struct ftrace_ret_stack *ret_stack;
5984 ret_stack = per_cpu(idle_ret_stack, cpu);
5986 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
5987 * sizeof(struct ftrace_ret_stack),
5991 per_cpu(idle_ret_stack, cpu) = ret_stack;
5993 graph_init_task(t, ret_stack);
5997 /* Allocate a return stack for newly created task */
5998 void ftrace_graph_init_task(struct task_struct *t)
6000 /* Make sure we do not use the parent ret_stack */
6001 t->ret_stack = NULL;
6002 t->curr_ret_stack = -1;
6004 if (ftrace_graph_active) {
6005 struct ftrace_ret_stack *ret_stack;
6007 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
6008 * sizeof(struct ftrace_ret_stack),
6012 graph_init_task(t, ret_stack);
6016 void ftrace_graph_exit_task(struct task_struct *t)
6018 struct ftrace_ret_stack *ret_stack = t->ret_stack;
6020 t->ret_stack = NULL;
6021 /* NULL must become visible to IRQs before we free it: */