1 // SPDX-License-Identifier: GPL-2.0
3 * Infrastructure for profiling code inserted by 'gcc -pg'.
5 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
6 * Copyright (C) 2004-2008 Ingo Molnar <mingo@redhat.com>
8 * Originally ported from the -rt patch by:
9 * Copyright (C) 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
11 * Based on code in the latency_tracer, that is:
13 * Copyright (C) 2004-2006 Ingo Molnar
14 * Copyright (C) 2004 Nadia Yvette Chambers
17 #include <linux/stop_machine.h>
18 #include <linux/clocksource.h>
19 #include <linux/sched/task.h>
20 #include <linux/kallsyms.h>
21 #include <linux/security.h>
22 #include <linux/seq_file.h>
23 #include <linux/tracefs.h>
24 #include <linux/hardirq.h>
25 #include <linux/kthread.h>
26 #include <linux/uaccess.h>
27 #include <linux/bsearch.h>
28 #include <linux/module.h>
29 #include <linux/ftrace.h>
30 #include <linux/sysctl.h>
31 #include <linux/slab.h>
32 #include <linux/ctype.h>
33 #include <linux/sort.h>
34 #include <linux/list.h>
35 #include <linux/hash.h>
36 #include <linux/rcupdate.h>
37 #include <linux/kprobes.h>
39 #include <trace/events/sched.h>
41 #include <asm/sections.h>
42 #include <asm/setup.h>
44 #include "ftrace_internal.h"
45 #include "trace_output.h"
46 #include "trace_stat.h"
48 #define FTRACE_INVALID_FUNCTION "__ftrace_invalid_address__"
50 #define FTRACE_WARN_ON(cond) \
58 #define FTRACE_WARN_ON_ONCE(cond) \
61 if (WARN_ON_ONCE(___r)) \
66 /* hash bits for specific function selection */
67 #define FTRACE_HASH_DEFAULT_BITS 10
68 #define FTRACE_HASH_MAX_BITS 12
70 #ifdef CONFIG_DYNAMIC_FTRACE
71 #define INIT_OPS_HASH(opsname) \
72 .func_hash = &opsname.local_hash, \
73 .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock),
75 #define INIT_OPS_HASH(opsname)
79 FTRACE_MODIFY_ENABLE_FL = (1 << 0),
80 FTRACE_MODIFY_MAY_SLEEP_FL = (1 << 1),
83 struct ftrace_ops ftrace_list_end __read_mostly = {
85 .flags = FTRACE_OPS_FL_STUB,
86 INIT_OPS_HASH(ftrace_list_end)
89 /* ftrace_enabled is a method to turn ftrace on or off */
90 int ftrace_enabled __read_mostly;
91 static int __maybe_unused last_ftrace_enabled;
93 /* Current function tracing op */
94 struct ftrace_ops *function_trace_op __read_mostly = &ftrace_list_end;
95 /* What to set function_trace_op to */
96 static struct ftrace_ops *set_function_trace_op;
98 static bool ftrace_pids_enabled(struct ftrace_ops *ops)
100 struct trace_array *tr;
102 if (!(ops->flags & FTRACE_OPS_FL_PID) || !ops->private)
107 return tr->function_pids != NULL || tr->function_no_pids != NULL;
110 static void ftrace_update_trampoline(struct ftrace_ops *ops);
113 * ftrace_disabled is set when an anomaly is discovered.
114 * ftrace_disabled is much stronger than ftrace_enabled.
116 static int ftrace_disabled __read_mostly;
118 DEFINE_MUTEX(ftrace_lock);
120 struct ftrace_ops __rcu *ftrace_ops_list __read_mostly = &ftrace_list_end;
121 ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
122 struct ftrace_ops global_ops;
124 /* Defined by vmlinux.lds.h see the comment above arch_ftrace_ops_list_func for details */
125 void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
126 struct ftrace_ops *op, struct ftrace_regs *fregs);
128 static inline void ftrace_ops_init(struct ftrace_ops *ops)
130 #ifdef CONFIG_DYNAMIC_FTRACE
131 if (!(ops->flags & FTRACE_OPS_FL_INITIALIZED)) {
132 mutex_init(&ops->local_hash.regex_lock);
133 ops->func_hash = &ops->local_hash;
134 ops->flags |= FTRACE_OPS_FL_INITIALIZED;
139 static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip,
140 struct ftrace_ops *op, struct ftrace_regs *fregs)
142 struct trace_array *tr = op->private;
146 pid = this_cpu_read(tr->array_buffer.data->ftrace_ignore_pid);
147 if (pid == FTRACE_PID_IGNORE)
149 if (pid != FTRACE_PID_TRACE &&
154 op->saved_func(ip, parent_ip, op, fregs);
157 static void ftrace_sync_ipi(void *data)
159 /* Probably not needed, but do it anyway */
163 static ftrace_func_t ftrace_ops_get_list_func(struct ftrace_ops *ops)
166 * If this is a dynamic, RCU, or per CPU ops, or we force list func,
167 * then it needs to call the list anyway.
169 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_RCU) ||
170 FTRACE_FORCE_LIST_FUNC)
171 return ftrace_ops_list_func;
173 return ftrace_ops_get_func(ops);
176 static void update_ftrace_function(void)
181 * Prepare the ftrace_ops that the arch callback will use.
182 * If there's only one ftrace_ops registered, the ftrace_ops_list
183 * will point to the ops we want.
185 set_function_trace_op = rcu_dereference_protected(ftrace_ops_list,
186 lockdep_is_held(&ftrace_lock));
188 /* If there's no ftrace_ops registered, just call the stub function */
189 if (set_function_trace_op == &ftrace_list_end) {
193 * If we are at the end of the list and this ops is
194 * recursion safe and not dynamic and the arch supports passing ops,
195 * then have the mcount trampoline call the function directly.
197 } else if (rcu_dereference_protected(ftrace_ops_list->next,
198 lockdep_is_held(&ftrace_lock)) == &ftrace_list_end) {
199 func = ftrace_ops_get_list_func(ftrace_ops_list);
202 /* Just use the default ftrace_ops */
203 set_function_trace_op = &ftrace_list_end;
204 func = ftrace_ops_list_func;
207 update_function_graph_func();
209 /* If there's no change, then do nothing more here */
210 if (ftrace_trace_function == func)
214 * If we are using the list function, it doesn't care
215 * about the function_trace_ops.
217 if (func == ftrace_ops_list_func) {
218 ftrace_trace_function = func;
220 * Don't even bother setting function_trace_ops,
221 * it would be racy to do so anyway.
226 #ifndef CONFIG_DYNAMIC_FTRACE
228 * For static tracing, we need to be a bit more careful.
229 * The function change takes affect immediately. Thus,
230 * we need to coordinate the setting of the function_trace_ops
231 * with the setting of the ftrace_trace_function.
233 * Set the function to the list ops, which will call the
234 * function we want, albeit indirectly, but it handles the
235 * ftrace_ops and doesn't depend on function_trace_op.
237 ftrace_trace_function = ftrace_ops_list_func;
239 * Make sure all CPUs see this. Yes this is slow, but static
240 * tracing is slow and nasty to have enabled.
242 synchronize_rcu_tasks_rude();
243 /* Now all cpus are using the list ops. */
244 function_trace_op = set_function_trace_op;
245 /* Make sure the function_trace_op is visible on all CPUs */
247 /* Nasty way to force a rmb on all cpus */
248 smp_call_function(ftrace_sync_ipi, NULL, 1);
249 /* OK, we are all set to update the ftrace_trace_function now! */
250 #endif /* !CONFIG_DYNAMIC_FTRACE */
252 ftrace_trace_function = func;
255 static void add_ftrace_ops(struct ftrace_ops __rcu **list,
256 struct ftrace_ops *ops)
258 rcu_assign_pointer(ops->next, *list);
261 * We are entering ops into the list but another
262 * CPU might be walking that list. We need to make sure
263 * the ops->next pointer is valid before another CPU sees
264 * the ops pointer included into the list.
266 rcu_assign_pointer(*list, ops);
269 static int remove_ftrace_ops(struct ftrace_ops __rcu **list,
270 struct ftrace_ops *ops)
272 struct ftrace_ops **p;
275 * If we are removing the last function, then simply point
276 * to the ftrace_stub.
278 if (rcu_dereference_protected(*list,
279 lockdep_is_held(&ftrace_lock)) == ops &&
280 rcu_dereference_protected(ops->next,
281 lockdep_is_held(&ftrace_lock)) == &ftrace_list_end) {
282 *list = &ftrace_list_end;
286 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
297 static void ftrace_update_trampoline(struct ftrace_ops *ops);
299 int __register_ftrace_function(struct ftrace_ops *ops)
301 if (ops->flags & FTRACE_OPS_FL_DELETED)
304 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
307 #ifndef CONFIG_DYNAMIC_FTRACE_WITH_REGS
309 * If the ftrace_ops specifies SAVE_REGS, then it only can be used
310 * if the arch supports it, or SAVE_REGS_IF_SUPPORTED is also set.
311 * Setting SAVE_REGS_IF_SUPPORTED makes SAVE_REGS irrelevant.
313 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS &&
314 !(ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED))
317 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED)
318 ops->flags |= FTRACE_OPS_FL_SAVE_REGS;
320 if (!ftrace_enabled && (ops->flags & FTRACE_OPS_FL_PERMANENT))
323 if (!is_kernel_core_data((unsigned long)ops))
324 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
326 add_ftrace_ops(&ftrace_ops_list, ops);
328 /* Always save the function, and reset at unregistering */
329 ops->saved_func = ops->func;
331 if (ftrace_pids_enabled(ops))
332 ops->func = ftrace_pid_func;
334 ftrace_update_trampoline(ops);
337 update_ftrace_function();
342 int __unregister_ftrace_function(struct ftrace_ops *ops)
346 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
349 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
355 update_ftrace_function();
357 ops->func = ops->saved_func;
362 static void ftrace_update_pid_func(void)
364 struct ftrace_ops *op;
366 /* Only do something if we are tracing something */
367 if (ftrace_trace_function == ftrace_stub)
370 do_for_each_ftrace_op(op, ftrace_ops_list) {
371 if (op->flags & FTRACE_OPS_FL_PID) {
372 op->func = ftrace_pids_enabled(op) ?
373 ftrace_pid_func : op->saved_func;
374 ftrace_update_trampoline(op);
376 } while_for_each_ftrace_op(op);
378 update_ftrace_function();
381 #ifdef CONFIG_FUNCTION_PROFILER
382 struct ftrace_profile {
383 struct hlist_node node;
385 unsigned long counter;
386 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
387 unsigned long long time;
388 unsigned long long time_squared;
392 struct ftrace_profile_page {
393 struct ftrace_profile_page *next;
395 struct ftrace_profile records[];
398 struct ftrace_profile_stat {
400 struct hlist_head *hash;
401 struct ftrace_profile_page *pages;
402 struct ftrace_profile_page *start;
403 struct tracer_stat stat;
406 #define PROFILE_RECORDS_SIZE \
407 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
409 #define PROFILES_PER_PAGE \
410 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
412 static int ftrace_profile_enabled __read_mostly;
414 /* ftrace_profile_lock - synchronize the enable and disable of the profiler */
415 static DEFINE_MUTEX(ftrace_profile_lock);
417 static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
419 #define FTRACE_PROFILE_HASH_BITS 10
420 #define FTRACE_PROFILE_HASH_SIZE (1 << FTRACE_PROFILE_HASH_BITS)
423 function_stat_next(void *v, int idx)
425 struct ftrace_profile *rec = v;
426 struct ftrace_profile_page *pg;
428 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
434 if ((void *)rec >= (void *)&pg->records[pg->index]) {
438 rec = &pg->records[0];
446 static void *function_stat_start(struct tracer_stat *trace)
448 struct ftrace_profile_stat *stat =
449 container_of(trace, struct ftrace_profile_stat, stat);
451 if (!stat || !stat->start)
454 return function_stat_next(&stat->start->records[0], 0);
457 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
458 /* function graph compares on total time */
459 static int function_stat_cmp(const void *p1, const void *p2)
461 const struct ftrace_profile *a = p1;
462 const struct ftrace_profile *b = p2;
464 if (a->time < b->time)
466 if (a->time > b->time)
472 /* not function graph compares against hits */
473 static int function_stat_cmp(const void *p1, const void *p2)
475 const struct ftrace_profile *a = p1;
476 const struct ftrace_profile *b = p2;
478 if (a->counter < b->counter)
480 if (a->counter > b->counter)
487 static int function_stat_headers(struct seq_file *m)
489 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
490 seq_puts(m, " Function "
493 "--- ---- --- ---\n");
495 seq_puts(m, " Function Hit\n"
501 static int function_stat_show(struct seq_file *m, void *v)
503 struct ftrace_profile *rec = v;
504 char str[KSYM_SYMBOL_LEN];
506 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
507 static struct trace_seq s;
508 unsigned long long avg;
509 unsigned long long stddev;
511 mutex_lock(&ftrace_profile_lock);
513 /* we raced with function_profile_reset() */
514 if (unlikely(rec->counter == 0)) {
519 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
520 avg = div64_ul(rec->time, rec->counter);
521 if (tracing_thresh && (avg < tracing_thresh))
525 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
526 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
528 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
531 /* Sample standard deviation (s^2) */
532 if (rec->counter <= 1)
536 * Apply Welford's method:
537 * s^2 = 1 / (n * (n-1)) * (n * \Sum (x_i)^2 - (\Sum x_i)^2)
539 stddev = rec->counter * rec->time_squared -
540 rec->time * rec->time;
543 * Divide only 1000 for ns^2 -> us^2 conversion.
544 * trace_print_graph_duration will divide 1000 again.
546 stddev = div64_ul(stddev,
547 rec->counter * (rec->counter - 1) * 1000);
551 trace_print_graph_duration(rec->time, &s);
552 trace_seq_puts(&s, " ");
553 trace_print_graph_duration(avg, &s);
554 trace_seq_puts(&s, " ");
555 trace_print_graph_duration(stddev, &s);
556 trace_print_seq(m, &s);
560 mutex_unlock(&ftrace_profile_lock);
565 static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
567 struct ftrace_profile_page *pg;
569 pg = stat->pages = stat->start;
572 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
577 memset(stat->hash, 0,
578 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
581 static int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
583 struct ftrace_profile_page *pg;
588 /* If we already allocated, do nothing */
592 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
596 #ifdef CONFIG_DYNAMIC_FTRACE
597 functions = ftrace_update_tot_cnt;
600 * We do not know the number of functions that exist because
601 * dynamic tracing is what counts them. With past experience
602 * we have around 20K functions. That should be more than enough.
603 * It is highly unlikely we will execute every function in
609 pg = stat->start = stat->pages;
611 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
613 for (i = 1; i < pages; i++) {
614 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
625 unsigned long tmp = (unsigned long)pg;
637 static int ftrace_profile_init_cpu(int cpu)
639 struct ftrace_profile_stat *stat;
642 stat = &per_cpu(ftrace_profile_stats, cpu);
645 /* If the profile is already created, simply reset it */
646 ftrace_profile_reset(stat);
651 * We are profiling all functions, but usually only a few thousand
652 * functions are hit. We'll make a hash of 1024 items.
654 size = FTRACE_PROFILE_HASH_SIZE;
656 stat->hash = kcalloc(size, sizeof(struct hlist_head), GFP_KERNEL);
661 /* Preallocate the function profiling pages */
662 if (ftrace_profile_pages_init(stat) < 0) {
671 static int ftrace_profile_init(void)
676 for_each_possible_cpu(cpu) {
677 ret = ftrace_profile_init_cpu(cpu);
685 /* interrupts must be disabled */
686 static struct ftrace_profile *
687 ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
689 struct ftrace_profile *rec;
690 struct hlist_head *hhd;
693 key = hash_long(ip, FTRACE_PROFILE_HASH_BITS);
694 hhd = &stat->hash[key];
696 if (hlist_empty(hhd))
699 hlist_for_each_entry_rcu_notrace(rec, hhd, node) {
707 static void ftrace_add_profile(struct ftrace_profile_stat *stat,
708 struct ftrace_profile *rec)
712 key = hash_long(rec->ip, FTRACE_PROFILE_HASH_BITS);
713 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
717 * The memory is already allocated, this simply finds a new record to use.
719 static struct ftrace_profile *
720 ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
722 struct ftrace_profile *rec = NULL;
724 /* prevent recursion (from NMIs) */
725 if (atomic_inc_return(&stat->disabled) != 1)
729 * Try to find the function again since an NMI
730 * could have added it
732 rec = ftrace_find_profiled_func(stat, ip);
736 if (stat->pages->index == PROFILES_PER_PAGE) {
737 if (!stat->pages->next)
739 stat->pages = stat->pages->next;
742 rec = &stat->pages->records[stat->pages->index++];
744 ftrace_add_profile(stat, rec);
747 atomic_dec(&stat->disabled);
753 function_profile_call(unsigned long ip, unsigned long parent_ip,
754 struct ftrace_ops *ops, struct ftrace_regs *fregs)
756 struct ftrace_profile_stat *stat;
757 struct ftrace_profile *rec;
760 if (!ftrace_profile_enabled)
763 local_irq_save(flags);
765 stat = this_cpu_ptr(&ftrace_profile_stats);
766 if (!stat->hash || !ftrace_profile_enabled)
769 rec = ftrace_find_profiled_func(stat, ip);
771 rec = ftrace_profile_alloc(stat, ip);
778 local_irq_restore(flags);
781 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
782 static bool fgraph_graph_time = true;
784 void ftrace_graph_graph_time_control(bool enable)
786 fgraph_graph_time = enable;
789 static int profile_graph_entry(struct ftrace_graph_ent *trace)
791 struct ftrace_ret_stack *ret_stack;
793 function_profile_call(trace->func, 0, NULL, NULL);
795 /* If function graph is shutting down, ret_stack can be NULL */
796 if (!current->ret_stack)
799 ret_stack = ftrace_graph_get_ret_stack(current, 0);
801 ret_stack->subtime = 0;
806 static void profile_graph_return(struct ftrace_graph_ret *trace)
808 struct ftrace_ret_stack *ret_stack;
809 struct ftrace_profile_stat *stat;
810 unsigned long long calltime;
811 struct ftrace_profile *rec;
814 local_irq_save(flags);
815 stat = this_cpu_ptr(&ftrace_profile_stats);
816 if (!stat->hash || !ftrace_profile_enabled)
819 /* If the calltime was zero'd ignore it */
820 if (!trace->calltime)
823 calltime = trace->rettime - trace->calltime;
825 if (!fgraph_graph_time) {
827 /* Append this call time to the parent time to subtract */
828 ret_stack = ftrace_graph_get_ret_stack(current, 1);
830 ret_stack->subtime += calltime;
832 ret_stack = ftrace_graph_get_ret_stack(current, 0);
833 if (ret_stack && ret_stack->subtime < calltime)
834 calltime -= ret_stack->subtime;
839 rec = ftrace_find_profiled_func(stat, trace->func);
841 rec->time += calltime;
842 rec->time_squared += calltime * calltime;
846 local_irq_restore(flags);
849 static struct fgraph_ops fprofiler_ops = {
850 .entryfunc = &profile_graph_entry,
851 .retfunc = &profile_graph_return,
854 static int register_ftrace_profiler(void)
856 return register_ftrace_graph(&fprofiler_ops);
859 static void unregister_ftrace_profiler(void)
861 unregister_ftrace_graph(&fprofiler_ops);
864 static struct ftrace_ops ftrace_profile_ops __read_mostly = {
865 .func = function_profile_call,
866 .flags = FTRACE_OPS_FL_INITIALIZED,
867 INIT_OPS_HASH(ftrace_profile_ops)
870 static int register_ftrace_profiler(void)
872 return register_ftrace_function(&ftrace_profile_ops);
875 static void unregister_ftrace_profiler(void)
877 unregister_ftrace_function(&ftrace_profile_ops);
879 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
882 ftrace_profile_write(struct file *filp, const char __user *ubuf,
883 size_t cnt, loff_t *ppos)
888 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
894 mutex_lock(&ftrace_profile_lock);
895 if (ftrace_profile_enabled ^ val) {
897 ret = ftrace_profile_init();
903 ret = register_ftrace_profiler();
908 ftrace_profile_enabled = 1;
910 ftrace_profile_enabled = 0;
912 * unregister_ftrace_profiler calls stop_machine
913 * so this acts like an synchronize_rcu.
915 unregister_ftrace_profiler();
919 mutex_unlock(&ftrace_profile_lock);
927 ftrace_profile_read(struct file *filp, char __user *ubuf,
928 size_t cnt, loff_t *ppos)
930 char buf[64]; /* big enough to hold a number */
933 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
934 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
937 static const struct file_operations ftrace_profile_fops = {
938 .open = tracing_open_generic,
939 .read = ftrace_profile_read,
940 .write = ftrace_profile_write,
941 .llseek = default_llseek,
944 /* used to initialize the real stat files */
945 static struct tracer_stat function_stats __initdata = {
947 .stat_start = function_stat_start,
948 .stat_next = function_stat_next,
949 .stat_cmp = function_stat_cmp,
950 .stat_headers = function_stat_headers,
951 .stat_show = function_stat_show
954 static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
956 struct ftrace_profile_stat *stat;
961 for_each_possible_cpu(cpu) {
962 stat = &per_cpu(ftrace_profile_stats, cpu);
964 name = kasprintf(GFP_KERNEL, "function%d", cpu);
967 * The files created are permanent, if something happens
968 * we still do not free memory.
971 "Could not allocate stat file for cpu %d\n",
975 stat->stat = function_stats;
976 stat->stat.name = name;
977 ret = register_stat_tracer(&stat->stat);
980 "Could not register function stat for cpu %d\n",
987 trace_create_file("function_profile_enabled",
988 TRACE_MODE_WRITE, d_tracer, NULL,
989 &ftrace_profile_fops);
992 #else /* CONFIG_FUNCTION_PROFILER */
993 static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
996 #endif /* CONFIG_FUNCTION_PROFILER */
998 #ifdef CONFIG_DYNAMIC_FTRACE
1000 static struct ftrace_ops *removed_ops;
1003 * Set when doing a global update, like enabling all recs or disabling them.
1004 * It is not set when just updating a single ftrace_ops.
1006 static bool update_all_ops;
1008 #ifndef CONFIG_FTRACE_MCOUNT_RECORD
1009 # error Dynamic ftrace depends on MCOUNT_RECORD
1012 struct ftrace_func_probe {
1013 struct ftrace_probe_ops *probe_ops;
1014 struct ftrace_ops ops;
1015 struct trace_array *tr;
1016 struct list_head list;
1022 * We make these constant because no one should touch them,
1023 * but they are used as the default "empty hash", to avoid allocating
1024 * it all the time. These are in a read only section such that if
1025 * anyone does try to modify it, it will cause an exception.
1027 static const struct hlist_head empty_buckets[1];
1028 static const struct ftrace_hash empty_hash = {
1029 .buckets = (struct hlist_head *)empty_buckets,
1031 #define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
1033 struct ftrace_ops global_ops = {
1034 .func = ftrace_stub,
1035 .local_hash.notrace_hash = EMPTY_HASH,
1036 .local_hash.filter_hash = EMPTY_HASH,
1037 INIT_OPS_HASH(global_ops)
1038 .flags = FTRACE_OPS_FL_INITIALIZED |
1043 * Used by the stack unwinder to know about dynamic ftrace trampolines.
1045 struct ftrace_ops *ftrace_ops_trampoline(unsigned long addr)
1047 struct ftrace_ops *op = NULL;
1050 * Some of the ops may be dynamically allocated,
1051 * they are freed after a synchronize_rcu().
1053 preempt_disable_notrace();
1055 do_for_each_ftrace_op(op, ftrace_ops_list) {
1057 * This is to check for dynamically allocated trampolines.
1058 * Trampolines that are in kernel text will have
1059 * core_kernel_text() return true.
1061 if (op->trampoline && op->trampoline_size)
1062 if (addr >= op->trampoline &&
1063 addr < op->trampoline + op->trampoline_size) {
1064 preempt_enable_notrace();
1067 } while_for_each_ftrace_op(op);
1068 preempt_enable_notrace();
1074 * This is used by __kernel_text_address() to return true if the
1075 * address is on a dynamically allocated trampoline that would
1076 * not return true for either core_kernel_text() or
1077 * is_module_text_address().
1079 bool is_ftrace_trampoline(unsigned long addr)
1081 return ftrace_ops_trampoline(addr) != NULL;
1084 struct ftrace_page {
1085 struct ftrace_page *next;
1086 struct dyn_ftrace *records;
1091 #define ENTRY_SIZE sizeof(struct dyn_ftrace)
1092 #define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
1094 static struct ftrace_page *ftrace_pages_start;
1095 static struct ftrace_page *ftrace_pages;
1097 static __always_inline unsigned long
1098 ftrace_hash_key(struct ftrace_hash *hash, unsigned long ip)
1100 if (hash->size_bits > 0)
1101 return hash_long(ip, hash->size_bits);
1106 /* Only use this function if ftrace_hash_empty() has already been tested */
1107 static __always_inline struct ftrace_func_entry *
1108 __ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1111 struct ftrace_func_entry *entry;
1112 struct hlist_head *hhd;
1114 key = ftrace_hash_key(hash, ip);
1115 hhd = &hash->buckets[key];
1117 hlist_for_each_entry_rcu_notrace(entry, hhd, hlist) {
1118 if (entry->ip == ip)
1125 * ftrace_lookup_ip - Test to see if an ip exists in an ftrace_hash
1126 * @hash: The hash to look at
1127 * @ip: The instruction pointer to test
1129 * Search a given @hash to see if a given instruction pointer (@ip)
1132 * Returns the entry that holds the @ip if found. NULL otherwise.
1134 struct ftrace_func_entry *
1135 ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1137 if (ftrace_hash_empty(hash))
1140 return __ftrace_lookup_ip(hash, ip);
1143 static void __add_hash_entry(struct ftrace_hash *hash,
1144 struct ftrace_func_entry *entry)
1146 struct hlist_head *hhd;
1149 key = ftrace_hash_key(hash, entry->ip);
1150 hhd = &hash->buckets[key];
1151 hlist_add_head(&entry->hlist, hhd);
1155 static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1157 struct ftrace_func_entry *entry;
1159 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1164 __add_hash_entry(hash, entry);
1170 free_hash_entry(struct ftrace_hash *hash,
1171 struct ftrace_func_entry *entry)
1173 hlist_del(&entry->hlist);
1179 remove_hash_entry(struct ftrace_hash *hash,
1180 struct ftrace_func_entry *entry)
1182 hlist_del_rcu(&entry->hlist);
1186 static void ftrace_hash_clear(struct ftrace_hash *hash)
1188 struct hlist_head *hhd;
1189 struct hlist_node *tn;
1190 struct ftrace_func_entry *entry;
1191 int size = 1 << hash->size_bits;
1197 for (i = 0; i < size; i++) {
1198 hhd = &hash->buckets[i];
1199 hlist_for_each_entry_safe(entry, tn, hhd, hlist)
1200 free_hash_entry(hash, entry);
1202 FTRACE_WARN_ON(hash->count);
1205 static void free_ftrace_mod(struct ftrace_mod_load *ftrace_mod)
1207 list_del(&ftrace_mod->list);
1208 kfree(ftrace_mod->module);
1209 kfree(ftrace_mod->func);
1213 static void clear_ftrace_mod_list(struct list_head *head)
1215 struct ftrace_mod_load *p, *n;
1217 /* stack tracer isn't supported yet */
1221 mutex_lock(&ftrace_lock);
1222 list_for_each_entry_safe(p, n, head, list)
1224 mutex_unlock(&ftrace_lock);
1227 static void free_ftrace_hash(struct ftrace_hash *hash)
1229 if (!hash || hash == EMPTY_HASH)
1231 ftrace_hash_clear(hash);
1232 kfree(hash->buckets);
1236 static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1238 struct ftrace_hash *hash;
1240 hash = container_of(rcu, struct ftrace_hash, rcu);
1241 free_ftrace_hash(hash);
1244 static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1246 if (!hash || hash == EMPTY_HASH)
1248 call_rcu(&hash->rcu, __free_ftrace_hash_rcu);
1251 void ftrace_free_filter(struct ftrace_ops *ops)
1253 ftrace_ops_init(ops);
1254 free_ftrace_hash(ops->func_hash->filter_hash);
1255 free_ftrace_hash(ops->func_hash->notrace_hash);
1258 static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1260 struct ftrace_hash *hash;
1263 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1267 size = 1 << size_bits;
1268 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
1270 if (!hash->buckets) {
1275 hash->size_bits = size_bits;
1281 static int ftrace_add_mod(struct trace_array *tr,
1282 const char *func, const char *module,
1285 struct ftrace_mod_load *ftrace_mod;
1286 struct list_head *mod_head = enable ? &tr->mod_trace : &tr->mod_notrace;
1288 ftrace_mod = kzalloc(sizeof(*ftrace_mod), GFP_KERNEL);
1292 ftrace_mod->func = kstrdup(func, GFP_KERNEL);
1293 ftrace_mod->module = kstrdup(module, GFP_KERNEL);
1294 ftrace_mod->enable = enable;
1296 if (!ftrace_mod->func || !ftrace_mod->module)
1299 list_add(&ftrace_mod->list, mod_head);
1304 free_ftrace_mod(ftrace_mod);
1309 static struct ftrace_hash *
1310 alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1312 struct ftrace_func_entry *entry;
1313 struct ftrace_hash *new_hash;
1318 new_hash = alloc_ftrace_hash(size_bits);
1323 new_hash->flags = hash->flags;
1326 if (ftrace_hash_empty(hash))
1329 size = 1 << hash->size_bits;
1330 for (i = 0; i < size; i++) {
1331 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
1332 ret = add_hash_entry(new_hash, entry->ip);
1338 FTRACE_WARN_ON(new_hash->count != hash->count);
1343 free_ftrace_hash(new_hash);
1348 ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash);
1350 ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash);
1352 static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1353 struct ftrace_hash *new_hash);
1355 static struct ftrace_hash *dup_hash(struct ftrace_hash *src, int size)
1357 struct ftrace_func_entry *entry;
1358 struct ftrace_hash *new_hash;
1359 struct hlist_head *hhd;
1360 struct hlist_node *tn;
1365 * Use around half the size (max bit of it), but
1366 * a minimum of 2 is fine (as size of 0 or 1 both give 1 for bits).
1368 bits = fls(size / 2);
1370 /* Don't allocate too much */
1371 if (bits > FTRACE_HASH_MAX_BITS)
1372 bits = FTRACE_HASH_MAX_BITS;
1374 new_hash = alloc_ftrace_hash(bits);
1378 new_hash->flags = src->flags;
1380 size = 1 << src->size_bits;
1381 for (i = 0; i < size; i++) {
1382 hhd = &src->buckets[i];
1383 hlist_for_each_entry_safe(entry, tn, hhd, hlist) {
1384 remove_hash_entry(src, entry);
1385 __add_hash_entry(new_hash, entry);
1391 static struct ftrace_hash *
1392 __ftrace_hash_move(struct ftrace_hash *src)
1394 int size = src->count;
1397 * If the new source is empty, just return the empty_hash.
1399 if (ftrace_hash_empty(src))
1402 return dup_hash(src, size);
1406 ftrace_hash_move(struct ftrace_ops *ops, int enable,
1407 struct ftrace_hash **dst, struct ftrace_hash *src)
1409 struct ftrace_hash *new_hash;
1412 /* Reject setting notrace hash on IPMODIFY ftrace_ops */
1413 if (ops->flags & FTRACE_OPS_FL_IPMODIFY && !enable)
1416 new_hash = __ftrace_hash_move(src);
1420 /* Make sure this can be applied if it is IPMODIFY ftrace_ops */
1422 /* IPMODIFY should be updated only when filter_hash updating */
1423 ret = ftrace_hash_ipmodify_update(ops, new_hash);
1425 free_ftrace_hash(new_hash);
1431 * Remove the current set, update the hash and add
1434 ftrace_hash_rec_disable_modify(ops, enable);
1436 rcu_assign_pointer(*dst, new_hash);
1438 ftrace_hash_rec_enable_modify(ops, enable);
1443 static bool hash_contains_ip(unsigned long ip,
1444 struct ftrace_ops_hash *hash)
1447 * The function record is a match if it exists in the filter
1448 * hash and not in the notrace hash. Note, an empty hash is
1449 * considered a match for the filter hash, but an empty
1450 * notrace hash is considered not in the notrace hash.
1452 return (ftrace_hash_empty(hash->filter_hash) ||
1453 __ftrace_lookup_ip(hash->filter_hash, ip)) &&
1454 (ftrace_hash_empty(hash->notrace_hash) ||
1455 !__ftrace_lookup_ip(hash->notrace_hash, ip));
1459 * Test the hashes for this ops to see if we want to call
1460 * the ops->func or not.
1462 * It's a match if the ip is in the ops->filter_hash or
1463 * the filter_hash does not exist or is empty,
1465 * the ip is not in the ops->notrace_hash.
1467 * This needs to be called with preemption disabled as
1468 * the hashes are freed with call_rcu().
1471 ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
1473 struct ftrace_ops_hash hash;
1476 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1478 * There's a small race when adding ops that the ftrace handler
1479 * that wants regs, may be called without them. We can not
1480 * allow that handler to be called if regs is NULL.
1482 if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS))
1486 rcu_assign_pointer(hash.filter_hash, ops->func_hash->filter_hash);
1487 rcu_assign_pointer(hash.notrace_hash, ops->func_hash->notrace_hash);
1489 if (hash_contains_ip(ip, &hash))
1498 * This is a double for. Do not use 'break' to break out of the loop,
1499 * you must use a goto.
1501 #define do_for_each_ftrace_rec(pg, rec) \
1502 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1504 for (_____i = 0; _____i < pg->index; _____i++) { \
1505 rec = &pg->records[_____i];
1507 #define while_for_each_ftrace_rec() \
1512 static int ftrace_cmp_recs(const void *a, const void *b)
1514 const struct dyn_ftrace *key = a;
1515 const struct dyn_ftrace *rec = b;
1517 if (key->flags < rec->ip)
1519 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1524 static struct dyn_ftrace *lookup_rec(unsigned long start, unsigned long end)
1526 struct ftrace_page *pg;
1527 struct dyn_ftrace *rec = NULL;
1528 struct dyn_ftrace key;
1531 key.flags = end; /* overload flags, as it is unsigned long */
1533 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1534 if (end < pg->records[0].ip ||
1535 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1537 rec = bsearch(&key, pg->records, pg->index,
1538 sizeof(struct dyn_ftrace),
1547 * ftrace_location_range - return the first address of a traced location
1548 * if it touches the given ip range
1549 * @start: start of range to search.
1550 * @end: end of range to search (inclusive). @end points to the last byte
1553 * Returns rec->ip if the related ftrace location is a least partly within
1554 * the given address range. That is, the first address of the instruction
1555 * that is either a NOP or call to the function tracer. It checks the ftrace
1556 * internal tables to determine if the address belongs or not.
1558 unsigned long ftrace_location_range(unsigned long start, unsigned long end)
1560 struct dyn_ftrace *rec;
1562 rec = lookup_rec(start, end);
1570 * ftrace_location - return the ftrace location
1571 * @ip: the instruction pointer to check
1573 * If @ip matches the ftrace location, return @ip.
1574 * If @ip matches sym+0, return sym's ftrace location.
1575 * Otherwise, return 0.
1577 unsigned long ftrace_location(unsigned long ip)
1579 struct dyn_ftrace *rec;
1580 unsigned long offset;
1583 rec = lookup_rec(ip, ip);
1585 if (!kallsyms_lookup_size_offset(ip, &size, &offset))
1588 /* map sym+0 to __fentry__ */
1590 rec = lookup_rec(ip, ip + size - 1);
1601 * ftrace_text_reserved - return true if range contains an ftrace location
1602 * @start: start of range to search
1603 * @end: end of range to search (inclusive). @end points to the last byte to check.
1605 * Returns 1 if @start and @end contains a ftrace location.
1606 * That is, the instruction that is either a NOP or call to
1607 * the function tracer. It checks the ftrace internal tables to
1608 * determine if the address belongs or not.
1610 int ftrace_text_reserved(const void *start, const void *end)
1614 ret = ftrace_location_range((unsigned long)start,
1615 (unsigned long)end);
1620 /* Test if ops registered to this rec needs regs */
1621 static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec)
1623 struct ftrace_ops *ops;
1624 bool keep_regs = false;
1626 for (ops = ftrace_ops_list;
1627 ops != &ftrace_list_end; ops = ops->next) {
1628 /* pass rec in as regs to have non-NULL val */
1629 if (ftrace_ops_test(ops, rec->ip, rec)) {
1630 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1640 static struct ftrace_ops *
1641 ftrace_find_tramp_ops_any(struct dyn_ftrace *rec);
1642 static struct ftrace_ops *
1643 ftrace_find_tramp_ops_any_other(struct dyn_ftrace *rec, struct ftrace_ops *op_exclude);
1644 static struct ftrace_ops *
1645 ftrace_find_tramp_ops_next(struct dyn_ftrace *rec, struct ftrace_ops *ops);
1647 static bool __ftrace_hash_rec_update(struct ftrace_ops *ops,
1651 struct ftrace_hash *hash;
1652 struct ftrace_hash *other_hash;
1653 struct ftrace_page *pg;
1654 struct dyn_ftrace *rec;
1655 bool update = false;
1659 /* Only update if the ops has been registered */
1660 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1664 * In the filter_hash case:
1665 * If the count is zero, we update all records.
1666 * Otherwise we just update the items in the hash.
1668 * In the notrace_hash case:
1669 * We enable the update in the hash.
1670 * As disabling notrace means enabling the tracing,
1671 * and enabling notrace means disabling, the inc variable
1675 hash = ops->func_hash->filter_hash;
1676 other_hash = ops->func_hash->notrace_hash;
1677 if (ftrace_hash_empty(hash))
1681 hash = ops->func_hash->notrace_hash;
1682 other_hash = ops->func_hash->filter_hash;
1684 * If the notrace hash has no items,
1685 * then there's nothing to do.
1687 if (ftrace_hash_empty(hash))
1691 do_for_each_ftrace_rec(pg, rec) {
1692 int in_other_hash = 0;
1696 if (rec->flags & FTRACE_FL_DISABLED)
1701 * Only the filter_hash affects all records.
1702 * Update if the record is not in the notrace hash.
1704 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
1707 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1708 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
1711 * If filter_hash is set, we want to match all functions
1712 * that are in the hash but not in the other hash.
1714 * If filter_hash is not set, then we are decrementing.
1715 * That means we match anything that is in the hash
1716 * and also in the other_hash. That is, we need to turn
1717 * off functions in the other hash because they are disabled
1720 if (filter_hash && in_hash && !in_other_hash)
1722 else if (!filter_hash && in_hash &&
1723 (in_other_hash || ftrace_hash_empty(other_hash)))
1731 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX))
1734 if (ops->flags & FTRACE_OPS_FL_DIRECT)
1735 rec->flags |= FTRACE_FL_DIRECT;
1738 * If there's only a single callback registered to a
1739 * function, and the ops has a trampoline registered
1740 * for it, then we can call it directly.
1742 if (ftrace_rec_count(rec) == 1 && ops->trampoline)
1743 rec->flags |= FTRACE_FL_TRAMP;
1746 * If we are adding another function callback
1747 * to this function, and the previous had a
1748 * custom trampoline in use, then we need to go
1749 * back to the default trampoline.
1751 rec->flags &= ~FTRACE_FL_TRAMP;
1754 * If any ops wants regs saved for this function
1755 * then all ops will get saved regs.
1757 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1758 rec->flags |= FTRACE_FL_REGS;
1760 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0))
1765 * Only the internal direct_ops should have the
1766 * DIRECT flag set. Thus, if it is removing a
1767 * function, then that function should no longer
1770 if (ops->flags & FTRACE_OPS_FL_DIRECT)
1771 rec->flags &= ~FTRACE_FL_DIRECT;
1774 * If the rec had REGS enabled and the ops that is
1775 * being removed had REGS set, then see if there is
1776 * still any ops for this record that wants regs.
1777 * If not, we can stop recording them.
1779 if (ftrace_rec_count(rec) > 0 &&
1780 rec->flags & FTRACE_FL_REGS &&
1781 ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1782 if (!test_rec_ops_needs_regs(rec))
1783 rec->flags &= ~FTRACE_FL_REGS;
1787 * The TRAMP needs to be set only if rec count
1788 * is decremented to one, and the ops that is
1789 * left has a trampoline. As TRAMP can only be
1790 * enabled if there is only a single ops attached
1793 if (ftrace_rec_count(rec) == 1 &&
1794 ftrace_find_tramp_ops_any_other(rec, ops))
1795 rec->flags |= FTRACE_FL_TRAMP;
1797 rec->flags &= ~FTRACE_FL_TRAMP;
1800 * flags will be cleared in ftrace_check_record()
1801 * if rec count is zero.
1806 /* Must match FTRACE_UPDATE_CALLS in ftrace_modify_all_code() */
1807 update |= ftrace_test_record(rec, true) != FTRACE_UPDATE_IGNORE;
1809 /* Shortcut, if we handled all records, we are done. */
1810 if (!all && count == hash->count)
1812 } while_for_each_ftrace_rec();
1817 static bool ftrace_hash_rec_disable(struct ftrace_ops *ops,
1820 return __ftrace_hash_rec_update(ops, filter_hash, 0);
1823 static bool ftrace_hash_rec_enable(struct ftrace_ops *ops,
1826 return __ftrace_hash_rec_update(ops, filter_hash, 1);
1829 static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops,
1830 int filter_hash, int inc)
1832 struct ftrace_ops *op;
1834 __ftrace_hash_rec_update(ops, filter_hash, inc);
1836 if (ops->func_hash != &global_ops.local_hash)
1840 * If the ops shares the global_ops hash, then we need to update
1841 * all ops that are enabled and use this hash.
1843 do_for_each_ftrace_op(op, ftrace_ops_list) {
1847 if (op->func_hash == &global_ops.local_hash)
1848 __ftrace_hash_rec_update(op, filter_hash, inc);
1849 } while_for_each_ftrace_op(op);
1852 static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops,
1855 ftrace_hash_rec_update_modify(ops, filter_hash, 0);
1858 static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops,
1861 ftrace_hash_rec_update_modify(ops, filter_hash, 1);
1865 * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK
1866 * or no-needed to update, -EBUSY if it detects a conflict of the flag
1867 * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs.
1868 * Note that old_hash and new_hash has below meanings
1869 * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected)
1870 * - If the hash is EMPTY_HASH, it hits nothing
1871 * - Anything else hits the recs which match the hash entries.
1873 * DIRECT ops does not have IPMODIFY flag, but we still need to check it
1874 * against functions with FTRACE_FL_IPMODIFY. If there is any overlap, call
1875 * ops_func(SHARE_IPMODIFY_SELF) to make sure current ops can share with
1876 * IPMODIFY. If ops_func(SHARE_IPMODIFY_SELF) returns non-zero, propagate
1877 * the return value to the caller and eventually to the owner of the DIRECT
1880 static int __ftrace_hash_update_ipmodify(struct ftrace_ops *ops,
1881 struct ftrace_hash *old_hash,
1882 struct ftrace_hash *new_hash)
1884 struct ftrace_page *pg;
1885 struct dyn_ftrace *rec, *end = NULL;
1887 bool is_ipmodify, is_direct;
1889 /* Only update if the ops has been registered */
1890 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1893 is_ipmodify = ops->flags & FTRACE_OPS_FL_IPMODIFY;
1894 is_direct = ops->flags & FTRACE_OPS_FL_DIRECT;
1896 /* neither IPMODIFY nor DIRECT, skip */
1897 if (!is_ipmodify && !is_direct)
1900 if (WARN_ON_ONCE(is_ipmodify && is_direct))
1904 * Since the IPMODIFY and DIRECT are very address sensitive
1905 * actions, we do not allow ftrace_ops to set all functions to new
1908 if (!new_hash || !old_hash)
1911 /* Update rec->flags */
1912 do_for_each_ftrace_rec(pg, rec) {
1914 if (rec->flags & FTRACE_FL_DISABLED)
1917 /* We need to update only differences of filter_hash */
1918 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1919 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1920 if (in_old == in_new)
1924 if (rec->flags & FTRACE_FL_IPMODIFY) {
1927 /* Cannot have two ipmodify on same rec */
1931 FTRACE_WARN_ON(rec->flags & FTRACE_FL_DIRECT);
1934 * Another ops with IPMODIFY is already
1935 * attached. We are now attaching a direct
1936 * ops. Run SHARE_IPMODIFY_SELF, to check
1937 * whether sharing is supported.
1941 ret = ops->ops_func(ops, FTRACE_OPS_CMD_ENABLE_SHARE_IPMODIFY_SELF);
1944 } else if (is_ipmodify) {
1945 rec->flags |= FTRACE_FL_IPMODIFY;
1947 } else if (is_ipmodify) {
1948 rec->flags &= ~FTRACE_FL_IPMODIFY;
1950 } while_for_each_ftrace_rec();
1957 /* Roll back what we did above */
1958 do_for_each_ftrace_rec(pg, rec) {
1960 if (rec->flags & FTRACE_FL_DISABLED)
1966 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1967 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1968 if (in_old == in_new)
1972 rec->flags &= ~FTRACE_FL_IPMODIFY;
1974 rec->flags |= FTRACE_FL_IPMODIFY;
1975 } while_for_each_ftrace_rec();
1981 static int ftrace_hash_ipmodify_enable(struct ftrace_ops *ops)
1983 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1985 if (ftrace_hash_empty(hash))
1988 return __ftrace_hash_update_ipmodify(ops, EMPTY_HASH, hash);
1991 /* Disabling always succeeds */
1992 static void ftrace_hash_ipmodify_disable(struct ftrace_ops *ops)
1994 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1996 if (ftrace_hash_empty(hash))
1999 __ftrace_hash_update_ipmodify(ops, hash, EMPTY_HASH);
2002 static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
2003 struct ftrace_hash *new_hash)
2005 struct ftrace_hash *old_hash = ops->func_hash->filter_hash;
2007 if (ftrace_hash_empty(old_hash))
2010 if (ftrace_hash_empty(new_hash))
2013 return __ftrace_hash_update_ipmodify(ops, old_hash, new_hash);
2016 static void print_ip_ins(const char *fmt, const unsigned char *p)
2018 char ins[MCOUNT_INSN_SIZE];
2021 if (copy_from_kernel_nofault(ins, p, MCOUNT_INSN_SIZE)) {
2022 printk(KERN_CONT "%s[FAULT] %px\n", fmt, p);
2026 printk(KERN_CONT "%s", fmt);
2028 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
2029 printk(KERN_CONT "%s%02x", i ? ":" : "", ins[i]);
2032 enum ftrace_bug_type ftrace_bug_type;
2033 const void *ftrace_expected;
2035 static void print_bug_type(void)
2037 switch (ftrace_bug_type) {
2038 case FTRACE_BUG_UNKNOWN:
2040 case FTRACE_BUG_INIT:
2041 pr_info("Initializing ftrace call sites\n");
2043 case FTRACE_BUG_NOP:
2044 pr_info("Setting ftrace call site to NOP\n");
2046 case FTRACE_BUG_CALL:
2047 pr_info("Setting ftrace call site to call ftrace function\n");
2049 case FTRACE_BUG_UPDATE:
2050 pr_info("Updating ftrace call site to call a different ftrace function\n");
2056 * ftrace_bug - report and shutdown function tracer
2057 * @failed: The failed type (EFAULT, EINVAL, EPERM)
2058 * @rec: The record that failed
2060 * The arch code that enables or disables the function tracing
2061 * can call ftrace_bug() when it has detected a problem in
2062 * modifying the code. @failed should be one of either:
2063 * EFAULT - if the problem happens on reading the @ip address
2064 * EINVAL - if what is read at @ip is not what was expected
2065 * EPERM - if the problem happens on writing to the @ip address
2067 void ftrace_bug(int failed, struct dyn_ftrace *rec)
2069 unsigned long ip = rec ? rec->ip : 0;
2071 pr_info("------------[ ftrace bug ]------------\n");
2075 pr_info("ftrace faulted on modifying ");
2076 print_ip_sym(KERN_INFO, ip);
2079 pr_info("ftrace failed to modify ");
2080 print_ip_sym(KERN_INFO, ip);
2081 print_ip_ins(" actual: ", (unsigned char *)ip);
2083 if (ftrace_expected) {
2084 print_ip_ins(" expected: ", ftrace_expected);
2089 pr_info("ftrace faulted on writing ");
2090 print_ip_sym(KERN_INFO, ip);
2093 pr_info("ftrace faulted on unknown error ");
2094 print_ip_sym(KERN_INFO, ip);
2098 struct ftrace_ops *ops = NULL;
2100 pr_info("ftrace record flags: %lx\n", rec->flags);
2101 pr_cont(" (%ld)%s", ftrace_rec_count(rec),
2102 rec->flags & FTRACE_FL_REGS ? " R" : " ");
2103 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2104 ops = ftrace_find_tramp_ops_any(rec);
2107 pr_cont("\ttramp: %pS (%pS)",
2108 (void *)ops->trampoline,
2110 ops = ftrace_find_tramp_ops_next(rec, ops);
2113 pr_cont("\ttramp: ERROR!");
2116 ip = ftrace_get_addr_curr(rec);
2117 pr_cont("\n expected tramp: %lx\n", ip);
2120 FTRACE_WARN_ON_ONCE(1);
2123 static int ftrace_check_record(struct dyn_ftrace *rec, bool enable, bool update)
2125 unsigned long flag = 0UL;
2127 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2129 if (rec->flags & FTRACE_FL_DISABLED)
2130 return FTRACE_UPDATE_IGNORE;
2133 * If we are updating calls:
2135 * If the record has a ref count, then we need to enable it
2136 * because someone is using it.
2138 * Otherwise we make sure its disabled.
2140 * If we are disabling calls, then disable all records that
2143 if (enable && ftrace_rec_count(rec))
2144 flag = FTRACE_FL_ENABLED;
2147 * If enabling and the REGS flag does not match the REGS_EN, or
2148 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
2149 * this record. Set flags to fail the compare against ENABLED.
2150 * Same for direct calls.
2153 if (!(rec->flags & FTRACE_FL_REGS) !=
2154 !(rec->flags & FTRACE_FL_REGS_EN))
2155 flag |= FTRACE_FL_REGS;
2157 if (!(rec->flags & FTRACE_FL_TRAMP) !=
2158 !(rec->flags & FTRACE_FL_TRAMP_EN))
2159 flag |= FTRACE_FL_TRAMP;
2162 * Direct calls are special, as count matters.
2163 * We must test the record for direct, if the
2164 * DIRECT and DIRECT_EN do not match, but only
2165 * if the count is 1. That's because, if the
2166 * count is something other than one, we do not
2167 * want the direct enabled (it will be done via the
2168 * direct helper). But if DIRECT_EN is set, and
2169 * the count is not one, we need to clear it.
2171 if (ftrace_rec_count(rec) == 1) {
2172 if (!(rec->flags & FTRACE_FL_DIRECT) !=
2173 !(rec->flags & FTRACE_FL_DIRECT_EN))
2174 flag |= FTRACE_FL_DIRECT;
2175 } else if (rec->flags & FTRACE_FL_DIRECT_EN) {
2176 flag |= FTRACE_FL_DIRECT;
2180 /* If the state of this record hasn't changed, then do nothing */
2181 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
2182 return FTRACE_UPDATE_IGNORE;
2185 /* Save off if rec is being enabled (for return value) */
2186 flag ^= rec->flags & FTRACE_FL_ENABLED;
2189 rec->flags |= FTRACE_FL_ENABLED;
2190 if (flag & FTRACE_FL_REGS) {
2191 if (rec->flags & FTRACE_FL_REGS)
2192 rec->flags |= FTRACE_FL_REGS_EN;
2194 rec->flags &= ~FTRACE_FL_REGS_EN;
2196 if (flag & FTRACE_FL_TRAMP) {
2197 if (rec->flags & FTRACE_FL_TRAMP)
2198 rec->flags |= FTRACE_FL_TRAMP_EN;
2200 rec->flags &= ~FTRACE_FL_TRAMP_EN;
2203 if (flag & FTRACE_FL_DIRECT) {
2205 * If there's only one user (direct_ops helper)
2206 * then we can call the direct function
2207 * directly (no ftrace trampoline).
2209 if (ftrace_rec_count(rec) == 1) {
2210 if (rec->flags & FTRACE_FL_DIRECT)
2211 rec->flags |= FTRACE_FL_DIRECT_EN;
2213 rec->flags &= ~FTRACE_FL_DIRECT_EN;
2216 * Can only call directly if there's
2217 * only one callback to the function.
2219 rec->flags &= ~FTRACE_FL_DIRECT_EN;
2225 * If this record is being updated from a nop, then
2226 * return UPDATE_MAKE_CALL.
2228 * return UPDATE_MODIFY_CALL to tell the caller to convert
2229 * from the save regs, to a non-save regs function or
2230 * vice versa, or from a trampoline call.
2232 if (flag & FTRACE_FL_ENABLED) {
2233 ftrace_bug_type = FTRACE_BUG_CALL;
2234 return FTRACE_UPDATE_MAKE_CALL;
2237 ftrace_bug_type = FTRACE_BUG_UPDATE;
2238 return FTRACE_UPDATE_MODIFY_CALL;
2242 /* If there's no more users, clear all flags */
2243 if (!ftrace_rec_count(rec))
2247 * Just disable the record, but keep the ops TRAMP
2248 * and REGS states. The _EN flags must be disabled though.
2250 rec->flags &= ~(FTRACE_FL_ENABLED | FTRACE_FL_TRAMP_EN |
2251 FTRACE_FL_REGS_EN | FTRACE_FL_DIRECT_EN);
2254 ftrace_bug_type = FTRACE_BUG_NOP;
2255 return FTRACE_UPDATE_MAKE_NOP;
2259 * ftrace_update_record - set a record that now is tracing or not
2260 * @rec: the record to update
2261 * @enable: set to true if the record is tracing, false to force disable
2263 * The records that represent all functions that can be traced need
2264 * to be updated when tracing has been enabled.
2266 int ftrace_update_record(struct dyn_ftrace *rec, bool enable)
2268 return ftrace_check_record(rec, enable, true);
2272 * ftrace_test_record - check if the record has been enabled or not
2273 * @rec: the record to test
2274 * @enable: set to true to check if enabled, false if it is disabled
2276 * The arch code may need to test if a record is already set to
2277 * tracing to determine how to modify the function code that it
2280 int ftrace_test_record(struct dyn_ftrace *rec, bool enable)
2282 return ftrace_check_record(rec, enable, false);
2285 static struct ftrace_ops *
2286 ftrace_find_tramp_ops_any(struct dyn_ftrace *rec)
2288 struct ftrace_ops *op;
2289 unsigned long ip = rec->ip;
2291 do_for_each_ftrace_op(op, ftrace_ops_list) {
2293 if (!op->trampoline)
2296 if (hash_contains_ip(ip, op->func_hash))
2298 } while_for_each_ftrace_op(op);
2303 static struct ftrace_ops *
2304 ftrace_find_tramp_ops_any_other(struct dyn_ftrace *rec, struct ftrace_ops *op_exclude)
2306 struct ftrace_ops *op;
2307 unsigned long ip = rec->ip;
2309 do_for_each_ftrace_op(op, ftrace_ops_list) {
2311 if (op == op_exclude || !op->trampoline)
2314 if (hash_contains_ip(ip, op->func_hash))
2316 } while_for_each_ftrace_op(op);
2321 static struct ftrace_ops *
2322 ftrace_find_tramp_ops_next(struct dyn_ftrace *rec,
2323 struct ftrace_ops *op)
2325 unsigned long ip = rec->ip;
2327 while_for_each_ftrace_op(op) {
2329 if (!op->trampoline)
2332 if (hash_contains_ip(ip, op->func_hash))
2339 static struct ftrace_ops *
2340 ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec)
2342 struct ftrace_ops *op;
2343 unsigned long ip = rec->ip;
2346 * Need to check removed ops first.
2347 * If they are being removed, and this rec has a tramp,
2348 * and this rec is in the ops list, then it would be the
2349 * one with the tramp.
2352 if (hash_contains_ip(ip, &removed_ops->old_hash))
2357 * Need to find the current trampoline for a rec.
2358 * Now, a trampoline is only attached to a rec if there
2359 * was a single 'ops' attached to it. But this can be called
2360 * when we are adding another op to the rec or removing the
2361 * current one. Thus, if the op is being added, we can
2362 * ignore it because it hasn't attached itself to the rec
2365 * If an ops is being modified (hooking to different functions)
2366 * then we don't care about the new functions that are being
2367 * added, just the old ones (that are probably being removed).
2369 * If we are adding an ops to a function that already is using
2370 * a trampoline, it needs to be removed (trampolines are only
2371 * for single ops connected), then an ops that is not being
2372 * modified also needs to be checked.
2374 do_for_each_ftrace_op(op, ftrace_ops_list) {
2376 if (!op->trampoline)
2380 * If the ops is being added, it hasn't gotten to
2381 * the point to be removed from this tree yet.
2383 if (op->flags & FTRACE_OPS_FL_ADDING)
2388 * If the ops is being modified and is in the old
2389 * hash, then it is probably being removed from this
2392 if ((op->flags & FTRACE_OPS_FL_MODIFYING) &&
2393 hash_contains_ip(ip, &op->old_hash))
2396 * If the ops is not being added or modified, and it's
2397 * in its normal filter hash, then this must be the one
2400 if (!(op->flags & FTRACE_OPS_FL_MODIFYING) &&
2401 hash_contains_ip(ip, op->func_hash))
2404 } while_for_each_ftrace_op(op);
2409 static struct ftrace_ops *
2410 ftrace_find_tramp_ops_new(struct dyn_ftrace *rec)
2412 struct ftrace_ops *op;
2413 unsigned long ip = rec->ip;
2415 do_for_each_ftrace_op(op, ftrace_ops_list) {
2416 /* pass rec in as regs to have non-NULL val */
2417 if (hash_contains_ip(ip, op->func_hash))
2419 } while_for_each_ftrace_op(op);
2424 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS
2425 /* Protected by rcu_tasks for reading, and direct_mutex for writing */
2426 static struct ftrace_hash *direct_functions = EMPTY_HASH;
2427 static DEFINE_MUTEX(direct_mutex);
2428 int ftrace_direct_func_count;
2431 * Search the direct_functions hash to see if the given instruction pointer
2432 * has a direct caller attached to it.
2434 unsigned long ftrace_find_rec_direct(unsigned long ip)
2436 struct ftrace_func_entry *entry;
2438 entry = __ftrace_lookup_ip(direct_functions, ip);
2442 return entry->direct;
2445 static struct ftrace_func_entry*
2446 ftrace_add_rec_direct(unsigned long ip, unsigned long addr,
2447 struct ftrace_hash **free_hash)
2449 struct ftrace_func_entry *entry;
2451 if (ftrace_hash_empty(direct_functions) ||
2452 direct_functions->count > 2 * (1 << direct_functions->size_bits)) {
2453 struct ftrace_hash *new_hash;
2454 int size = ftrace_hash_empty(direct_functions) ? 0 :
2455 direct_functions->count + 1;
2460 new_hash = dup_hash(direct_functions, size);
2464 *free_hash = direct_functions;
2465 direct_functions = new_hash;
2468 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
2473 entry->direct = addr;
2474 __add_hash_entry(direct_functions, entry);
2478 static void call_direct_funcs(unsigned long ip, unsigned long pip,
2479 struct ftrace_ops *ops, struct ftrace_regs *fregs)
2481 struct pt_regs *regs = ftrace_get_regs(fregs);
2484 addr = ftrace_find_rec_direct(ip);
2488 arch_ftrace_set_direct_caller(regs, addr);
2491 struct ftrace_ops direct_ops = {
2492 .func = call_direct_funcs,
2493 .flags = FTRACE_OPS_FL_DIRECT | FTRACE_OPS_FL_SAVE_REGS
2494 | FTRACE_OPS_FL_PERMANENT,
2496 * By declaring the main trampoline as this trampoline
2497 * it will never have one allocated for it. Allocated
2498 * trampolines should not call direct functions.
2499 * The direct_ops should only be called by the builtin
2500 * ftrace_regs_caller trampoline.
2502 .trampoline = FTRACE_REGS_ADDR,
2504 #endif /* CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS */
2507 * ftrace_get_addr_new - Get the call address to set to
2508 * @rec: The ftrace record descriptor
2510 * If the record has the FTRACE_FL_REGS set, that means that it
2511 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2512 * is not set, then it wants to convert to the normal callback.
2514 * Returns the address of the trampoline to set to
2516 unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec)
2518 struct ftrace_ops *ops;
2521 if ((rec->flags & FTRACE_FL_DIRECT) &&
2522 (ftrace_rec_count(rec) == 1)) {
2523 addr = ftrace_find_rec_direct(rec->ip);
2529 /* Trampolines take precedence over regs */
2530 if (rec->flags & FTRACE_FL_TRAMP) {
2531 ops = ftrace_find_tramp_ops_new(rec);
2532 if (FTRACE_WARN_ON(!ops || !ops->trampoline)) {
2533 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2534 (void *)rec->ip, (void *)rec->ip, rec->flags);
2535 /* Ftrace is shutting down, return anything */
2536 return (unsigned long)FTRACE_ADDR;
2538 return ops->trampoline;
2541 if (rec->flags & FTRACE_FL_REGS)
2542 return (unsigned long)FTRACE_REGS_ADDR;
2544 return (unsigned long)FTRACE_ADDR;
2548 * ftrace_get_addr_curr - Get the call address that is already there
2549 * @rec: The ftrace record descriptor
2551 * The FTRACE_FL_REGS_EN is set when the record already points to
2552 * a function that saves all the regs. Basically the '_EN' version
2553 * represents the current state of the function.
2555 * Returns the address of the trampoline that is currently being called
2557 unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec)
2559 struct ftrace_ops *ops;
2562 /* Direct calls take precedence over trampolines */
2563 if (rec->flags & FTRACE_FL_DIRECT_EN) {
2564 addr = ftrace_find_rec_direct(rec->ip);
2570 /* Trampolines take precedence over regs */
2571 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2572 ops = ftrace_find_tramp_ops_curr(rec);
2573 if (FTRACE_WARN_ON(!ops)) {
2574 pr_warn("Bad trampoline accounting at: %p (%pS)\n",
2575 (void *)rec->ip, (void *)rec->ip);
2576 /* Ftrace is shutting down, return anything */
2577 return (unsigned long)FTRACE_ADDR;
2579 return ops->trampoline;
2582 if (rec->flags & FTRACE_FL_REGS_EN)
2583 return (unsigned long)FTRACE_REGS_ADDR;
2585 return (unsigned long)FTRACE_ADDR;
2589 __ftrace_replace_code(struct dyn_ftrace *rec, bool enable)
2591 unsigned long ftrace_old_addr;
2592 unsigned long ftrace_addr;
2595 ftrace_addr = ftrace_get_addr_new(rec);
2597 /* This needs to be done before we call ftrace_update_record */
2598 ftrace_old_addr = ftrace_get_addr_curr(rec);
2600 ret = ftrace_update_record(rec, enable);
2602 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2605 case FTRACE_UPDATE_IGNORE:
2608 case FTRACE_UPDATE_MAKE_CALL:
2609 ftrace_bug_type = FTRACE_BUG_CALL;
2610 return ftrace_make_call(rec, ftrace_addr);
2612 case FTRACE_UPDATE_MAKE_NOP:
2613 ftrace_bug_type = FTRACE_BUG_NOP;
2614 return ftrace_make_nop(NULL, rec, ftrace_old_addr);
2616 case FTRACE_UPDATE_MODIFY_CALL:
2617 ftrace_bug_type = FTRACE_BUG_UPDATE;
2618 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
2621 return -1; /* unknown ftrace bug */
2624 void __weak ftrace_replace_code(int mod_flags)
2626 struct dyn_ftrace *rec;
2627 struct ftrace_page *pg;
2628 bool enable = mod_flags & FTRACE_MODIFY_ENABLE_FL;
2629 int schedulable = mod_flags & FTRACE_MODIFY_MAY_SLEEP_FL;
2632 if (unlikely(ftrace_disabled))
2635 do_for_each_ftrace_rec(pg, rec) {
2637 if (rec->flags & FTRACE_FL_DISABLED)
2640 failed = __ftrace_replace_code(rec, enable);
2642 ftrace_bug(failed, rec);
2643 /* Stop processing */
2648 } while_for_each_ftrace_rec();
2651 struct ftrace_rec_iter {
2652 struct ftrace_page *pg;
2657 * ftrace_rec_iter_start - start up iterating over traced functions
2659 * Returns an iterator handle that is used to iterate over all
2660 * the records that represent address locations where functions
2663 * May return NULL if no records are available.
2665 struct ftrace_rec_iter *ftrace_rec_iter_start(void)
2668 * We only use a single iterator.
2669 * Protected by the ftrace_lock mutex.
2671 static struct ftrace_rec_iter ftrace_rec_iter;
2672 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
2674 iter->pg = ftrace_pages_start;
2677 /* Could have empty pages */
2678 while (iter->pg && !iter->pg->index)
2679 iter->pg = iter->pg->next;
2688 * ftrace_rec_iter_next - get the next record to process.
2689 * @iter: The handle to the iterator.
2691 * Returns the next iterator after the given iterator @iter.
2693 struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
2697 if (iter->index >= iter->pg->index) {
2698 iter->pg = iter->pg->next;
2701 /* Could have empty pages */
2702 while (iter->pg && !iter->pg->index)
2703 iter->pg = iter->pg->next;
2713 * ftrace_rec_iter_record - get the record at the iterator location
2714 * @iter: The current iterator location
2716 * Returns the record that the current @iter is at.
2718 struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
2720 return &iter->pg->records[iter->index];
2724 ftrace_nop_initialize(struct module *mod, struct dyn_ftrace *rec)
2728 if (unlikely(ftrace_disabled))
2731 ret = ftrace_init_nop(mod, rec);
2733 ftrace_bug_type = FTRACE_BUG_INIT;
2734 ftrace_bug(ret, rec);
2741 * archs can override this function if they must do something
2742 * before the modifying code is performed.
2744 void __weak ftrace_arch_code_modify_prepare(void)
2749 * archs can override this function if they must do something
2750 * after the modifying code is performed.
2752 void __weak ftrace_arch_code_modify_post_process(void)
2756 void ftrace_modify_all_code(int command)
2758 int update = command & FTRACE_UPDATE_TRACE_FUNC;
2762 if (command & FTRACE_MAY_SLEEP)
2763 mod_flags = FTRACE_MODIFY_MAY_SLEEP_FL;
2766 * If the ftrace_caller calls a ftrace_ops func directly,
2767 * we need to make sure that it only traces functions it
2768 * expects to trace. When doing the switch of functions,
2769 * we need to update to the ftrace_ops_list_func first
2770 * before the transition between old and new calls are set,
2771 * as the ftrace_ops_list_func will check the ops hashes
2772 * to make sure the ops are having the right functions
2776 err = ftrace_update_ftrace_func(ftrace_ops_list_func);
2777 if (FTRACE_WARN_ON(err))
2781 if (command & FTRACE_UPDATE_CALLS)
2782 ftrace_replace_code(mod_flags | FTRACE_MODIFY_ENABLE_FL);
2783 else if (command & FTRACE_DISABLE_CALLS)
2784 ftrace_replace_code(mod_flags);
2786 if (update && ftrace_trace_function != ftrace_ops_list_func) {
2787 function_trace_op = set_function_trace_op;
2789 /* If irqs are disabled, we are in stop machine */
2790 if (!irqs_disabled())
2791 smp_call_function(ftrace_sync_ipi, NULL, 1);
2792 err = ftrace_update_ftrace_func(ftrace_trace_function);
2793 if (FTRACE_WARN_ON(err))
2797 if (command & FTRACE_START_FUNC_RET)
2798 err = ftrace_enable_ftrace_graph_caller();
2799 else if (command & FTRACE_STOP_FUNC_RET)
2800 err = ftrace_disable_ftrace_graph_caller();
2801 FTRACE_WARN_ON(err);
2804 static int __ftrace_modify_code(void *data)
2806 int *command = data;
2808 ftrace_modify_all_code(*command);
2814 * ftrace_run_stop_machine - go back to the stop machine method
2815 * @command: The command to tell ftrace what to do
2817 * If an arch needs to fall back to the stop machine method, the
2818 * it can call this function.
2820 void ftrace_run_stop_machine(int command)
2822 stop_machine(__ftrace_modify_code, &command, NULL);
2826 * arch_ftrace_update_code - modify the code to trace or not trace
2827 * @command: The command that needs to be done
2829 * Archs can override this function if it does not need to
2830 * run stop_machine() to modify code.
2832 void __weak arch_ftrace_update_code(int command)
2834 ftrace_run_stop_machine(command);
2837 static void ftrace_run_update_code(int command)
2839 ftrace_arch_code_modify_prepare();
2842 * By default we use stop_machine() to modify the code.
2843 * But archs can do what ever they want as long as it
2844 * is safe. The stop_machine() is the safest, but also
2845 * produces the most overhead.
2847 arch_ftrace_update_code(command);
2849 ftrace_arch_code_modify_post_process();
2852 static void ftrace_run_modify_code(struct ftrace_ops *ops, int command,
2853 struct ftrace_ops_hash *old_hash)
2855 ops->flags |= FTRACE_OPS_FL_MODIFYING;
2856 ops->old_hash.filter_hash = old_hash->filter_hash;
2857 ops->old_hash.notrace_hash = old_hash->notrace_hash;
2858 ftrace_run_update_code(command);
2859 ops->old_hash.filter_hash = NULL;
2860 ops->old_hash.notrace_hash = NULL;
2861 ops->flags &= ~FTRACE_OPS_FL_MODIFYING;
2864 static ftrace_func_t saved_ftrace_func;
2865 static int ftrace_start_up;
2867 void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops)
2871 /* List of trace_ops that have allocated trampolines */
2872 static LIST_HEAD(ftrace_ops_trampoline_list);
2874 static void ftrace_add_trampoline_to_kallsyms(struct ftrace_ops *ops)
2876 lockdep_assert_held(&ftrace_lock);
2877 list_add_rcu(&ops->list, &ftrace_ops_trampoline_list);
2880 static void ftrace_remove_trampoline_from_kallsyms(struct ftrace_ops *ops)
2882 lockdep_assert_held(&ftrace_lock);
2883 list_del_rcu(&ops->list);
2888 * "__builtin__ftrace" is used as a module name in /proc/kallsyms for symbols
2889 * for pages allocated for ftrace purposes, even though "__builtin__ftrace" is
2892 #define FTRACE_TRAMPOLINE_MOD "__builtin__ftrace"
2893 #define FTRACE_TRAMPOLINE_SYM "ftrace_trampoline"
2895 static void ftrace_trampoline_free(struct ftrace_ops *ops)
2897 if (ops && (ops->flags & FTRACE_OPS_FL_ALLOC_TRAMP) &&
2900 * Record the text poke event before the ksymbol unregister
2903 perf_event_text_poke((void *)ops->trampoline,
2904 (void *)ops->trampoline,
2905 ops->trampoline_size, NULL, 0);
2906 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_OOL,
2907 ops->trampoline, ops->trampoline_size,
2908 true, FTRACE_TRAMPOLINE_SYM);
2909 /* Remove from kallsyms after the perf events */
2910 ftrace_remove_trampoline_from_kallsyms(ops);
2913 arch_ftrace_trampoline_free(ops);
2916 static void ftrace_startup_enable(int command)
2918 if (saved_ftrace_func != ftrace_trace_function) {
2919 saved_ftrace_func = ftrace_trace_function;
2920 command |= FTRACE_UPDATE_TRACE_FUNC;
2923 if (!command || !ftrace_enabled)
2926 ftrace_run_update_code(command);
2929 static void ftrace_startup_all(int command)
2931 update_all_ops = true;
2932 ftrace_startup_enable(command);
2933 update_all_ops = false;
2936 int ftrace_startup(struct ftrace_ops *ops, int command)
2940 if (unlikely(ftrace_disabled))
2943 ret = __register_ftrace_function(ops);
2950 * Note that ftrace probes uses this to start up
2951 * and modify functions it will probe. But we still
2952 * set the ADDING flag for modification, as probes
2953 * do not have trampolines. If they add them in the
2954 * future, then the probes will need to distinguish
2955 * between adding and updating probes.
2957 ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING;
2959 ret = ftrace_hash_ipmodify_enable(ops);
2961 /* Rollback registration process */
2962 __unregister_ftrace_function(ops);
2964 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2965 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
2966 ftrace_trampoline_free(ops);
2970 if (ftrace_hash_rec_enable(ops, 1))
2971 command |= FTRACE_UPDATE_CALLS;
2973 ftrace_startup_enable(command);
2976 * If ftrace is in an undefined state, we just remove ops from list
2977 * to prevent the NULL pointer, instead of totally rolling it back and
2978 * free trampoline, because those actions could cause further damage.
2980 if (unlikely(ftrace_disabled)) {
2981 __unregister_ftrace_function(ops);
2985 ops->flags &= ~FTRACE_OPS_FL_ADDING;
2990 int ftrace_shutdown(struct ftrace_ops *ops, int command)
2994 if (unlikely(ftrace_disabled))
2997 ret = __unregister_ftrace_function(ops);
3003 * Just warn in case of unbalance, no need to kill ftrace, it's not
3004 * critical but the ftrace_call callers may be never nopped again after
3005 * further ftrace uses.
3007 WARN_ON_ONCE(ftrace_start_up < 0);
3009 /* Disabling ipmodify never fails */
3010 ftrace_hash_ipmodify_disable(ops);
3012 if (ftrace_hash_rec_disable(ops, 1))
3013 command |= FTRACE_UPDATE_CALLS;
3015 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
3017 if (saved_ftrace_func != ftrace_trace_function) {
3018 saved_ftrace_func = ftrace_trace_function;
3019 command |= FTRACE_UPDATE_TRACE_FUNC;
3022 if (!command || !ftrace_enabled) {
3024 * If these are dynamic or per_cpu ops, they still
3025 * need their data freed. Since, function tracing is
3026 * not currently active, we can just free them
3027 * without synchronizing all CPUs.
3029 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
3036 * If the ops uses a trampoline, then it needs to be
3037 * tested first on update.
3039 ops->flags |= FTRACE_OPS_FL_REMOVING;
3042 /* The trampoline logic checks the old hashes */
3043 ops->old_hash.filter_hash = ops->func_hash->filter_hash;
3044 ops->old_hash.notrace_hash = ops->func_hash->notrace_hash;
3046 ftrace_run_update_code(command);
3049 * If there's no more ops registered with ftrace, run a
3050 * sanity check to make sure all rec flags are cleared.
3052 if (rcu_dereference_protected(ftrace_ops_list,
3053 lockdep_is_held(&ftrace_lock)) == &ftrace_list_end) {
3054 struct ftrace_page *pg;
3055 struct dyn_ftrace *rec;
3057 do_for_each_ftrace_rec(pg, rec) {
3058 if (FTRACE_WARN_ON_ONCE(rec->flags & ~FTRACE_FL_DISABLED))
3059 pr_warn(" %pS flags:%lx\n",
3060 (void *)rec->ip, rec->flags);
3061 } while_for_each_ftrace_rec();
3064 ops->old_hash.filter_hash = NULL;
3065 ops->old_hash.notrace_hash = NULL;
3068 ops->flags &= ~FTRACE_OPS_FL_REMOVING;
3071 * Dynamic ops may be freed, we must make sure that all
3072 * callers are done before leaving this function.
3073 * The same goes for freeing the per_cpu data of the per_cpu
3076 if (ops->flags & FTRACE_OPS_FL_DYNAMIC) {
3078 * We need to do a hard force of sched synchronization.
3079 * This is because we use preempt_disable() to do RCU, but
3080 * the function tracers can be called where RCU is not watching
3081 * (like before user_exit()). We can not rely on the RCU
3082 * infrastructure to do the synchronization, thus we must do it
3085 synchronize_rcu_tasks_rude();
3088 * When the kernel is preemptive, tasks can be preempted
3089 * while on a ftrace trampoline. Just scheduling a task on
3090 * a CPU is not good enough to flush them. Calling
3091 * synchronize_rcu_tasks() will wait for those tasks to
3092 * execute and either schedule voluntarily or enter user space.
3094 if (IS_ENABLED(CONFIG_PREEMPTION))
3095 synchronize_rcu_tasks();
3098 ftrace_trampoline_free(ops);
3104 static u64 ftrace_update_time;
3105 unsigned long ftrace_update_tot_cnt;
3106 unsigned long ftrace_number_of_pages;
3107 unsigned long ftrace_number_of_groups;
3109 static inline int ops_traces_mod(struct ftrace_ops *ops)
3112 * Filter_hash being empty will default to trace module.
3113 * But notrace hash requires a test of individual module functions.
3115 return ftrace_hash_empty(ops->func_hash->filter_hash) &&
3116 ftrace_hash_empty(ops->func_hash->notrace_hash);
3119 static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs)
3121 bool init_nop = ftrace_need_init_nop();
3122 struct ftrace_page *pg;
3123 struct dyn_ftrace *p;
3125 unsigned long update_cnt = 0;
3126 unsigned long rec_flags = 0;
3129 start = ftrace_now(raw_smp_processor_id());
3132 * When a module is loaded, this function is called to convert
3133 * the calls to mcount in its text to nops, and also to create
3134 * an entry in the ftrace data. Now, if ftrace is activated
3135 * after this call, but before the module sets its text to
3136 * read-only, the modification of enabling ftrace can fail if
3137 * the read-only is done while ftrace is converting the calls.
3138 * To prevent this, the module's records are set as disabled
3139 * and will be enabled after the call to set the module's text
3143 rec_flags |= FTRACE_FL_DISABLED;
3145 for (pg = new_pgs; pg; pg = pg->next) {
3147 for (i = 0; i < pg->index; i++) {
3149 /* If something went wrong, bail without enabling anything */
3150 if (unlikely(ftrace_disabled))
3153 p = &pg->records[i];
3154 p->flags = rec_flags;
3157 * Do the initial record conversion from mcount jump
3158 * to the NOP instructions.
3160 if (init_nop && !ftrace_nop_initialize(mod, p))
3167 stop = ftrace_now(raw_smp_processor_id());
3168 ftrace_update_time = stop - start;
3169 ftrace_update_tot_cnt += update_cnt;
3174 static int ftrace_allocate_records(struct ftrace_page *pg, int count)
3180 if (WARN_ON(!count))
3183 /* We want to fill as much as possible, with no empty pages */
3184 pages = DIV_ROUND_UP(count, ENTRIES_PER_PAGE);
3185 order = fls(pages) - 1;
3188 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
3191 /* if we can't allocate this size, try something smaller */
3198 ftrace_number_of_pages += 1 << order;
3199 ftrace_number_of_groups++;
3201 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
3210 static struct ftrace_page *
3211 ftrace_allocate_pages(unsigned long num_to_init)
3213 struct ftrace_page *start_pg;
3214 struct ftrace_page *pg;
3220 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
3225 * Try to allocate as much as possible in one continues
3226 * location that fills in all of the space. We want to
3227 * waste as little space as possible.
3230 cnt = ftrace_allocate_records(pg, num_to_init);
3238 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
3251 free_pages((unsigned long)pg->records, pg->order);
3252 ftrace_number_of_pages -= 1 << pg->order;
3254 start_pg = pg->next;
3257 ftrace_number_of_groups--;
3259 pr_info("ftrace: FAILED to allocate memory for functions\n");
3263 #define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
3265 struct ftrace_iterator {
3269 struct ftrace_page *pg;
3270 struct dyn_ftrace *func;
3271 struct ftrace_func_probe *probe;
3272 struct ftrace_func_entry *probe_entry;
3273 struct trace_parser parser;
3274 struct ftrace_hash *hash;
3275 struct ftrace_ops *ops;
3276 struct trace_array *tr;
3277 struct list_head *mod_list;
3284 t_probe_next(struct seq_file *m, loff_t *pos)
3286 struct ftrace_iterator *iter = m->private;
3287 struct trace_array *tr = iter->ops->private;
3288 struct list_head *func_probes;
3289 struct ftrace_hash *hash;
3290 struct list_head *next;
3291 struct hlist_node *hnd = NULL;
3292 struct hlist_head *hhd;
3301 func_probes = &tr->func_probes;
3302 if (list_empty(func_probes))
3306 next = func_probes->next;
3307 iter->probe = list_entry(next, struct ftrace_func_probe, list);
3310 if (iter->probe_entry)
3311 hnd = &iter->probe_entry->hlist;
3313 hash = iter->probe->ops.func_hash->filter_hash;
3316 * A probe being registered may temporarily have an empty hash
3317 * and it's at the end of the func_probes list.
3319 if (!hash || hash == EMPTY_HASH)
3322 size = 1 << hash->size_bits;
3325 if (iter->pidx >= size) {
3326 if (iter->probe->list.next == func_probes)
3328 next = iter->probe->list.next;
3329 iter->probe = list_entry(next, struct ftrace_func_probe, list);
3330 hash = iter->probe->ops.func_hash->filter_hash;
3331 size = 1 << hash->size_bits;
3335 hhd = &hash->buckets[iter->pidx];
3337 if (hlist_empty(hhd)) {
3353 if (WARN_ON_ONCE(!hnd))
3356 iter->probe_entry = hlist_entry(hnd, struct ftrace_func_entry, hlist);
3361 static void *t_probe_start(struct seq_file *m, loff_t *pos)
3363 struct ftrace_iterator *iter = m->private;
3367 if (!(iter->flags & FTRACE_ITER_DO_PROBES))
3370 if (iter->mod_pos > *pos)
3374 iter->probe_entry = NULL;
3376 for (l = 0; l <= (*pos - iter->mod_pos); ) {
3377 p = t_probe_next(m, &l);
3384 /* Only set this if we have an item */
3385 iter->flags |= FTRACE_ITER_PROBE;
3391 t_probe_show(struct seq_file *m, struct ftrace_iterator *iter)
3393 struct ftrace_func_entry *probe_entry;
3394 struct ftrace_probe_ops *probe_ops;
3395 struct ftrace_func_probe *probe;
3397 probe = iter->probe;
3398 probe_entry = iter->probe_entry;
3400 if (WARN_ON_ONCE(!probe || !probe_entry))
3403 probe_ops = probe->probe_ops;
3405 if (probe_ops->print)
3406 return probe_ops->print(m, probe_entry->ip, probe_ops, probe->data);
3408 seq_printf(m, "%ps:%ps\n", (void *)probe_entry->ip,
3409 (void *)probe_ops->func);
3415 t_mod_next(struct seq_file *m, loff_t *pos)
3417 struct ftrace_iterator *iter = m->private;
3418 struct trace_array *tr = iter->tr;
3423 iter->mod_list = iter->mod_list->next;
3425 if (iter->mod_list == &tr->mod_trace ||
3426 iter->mod_list == &tr->mod_notrace) {
3427 iter->flags &= ~FTRACE_ITER_MOD;
3431 iter->mod_pos = *pos;
3436 static void *t_mod_start(struct seq_file *m, loff_t *pos)
3438 struct ftrace_iterator *iter = m->private;
3442 if (iter->func_pos > *pos)
3445 iter->mod_pos = iter->func_pos;
3447 /* probes are only available if tr is set */
3451 for (l = 0; l <= (*pos - iter->func_pos); ) {
3452 p = t_mod_next(m, &l);
3457 iter->flags &= ~FTRACE_ITER_MOD;
3458 return t_probe_start(m, pos);
3461 /* Only set this if we have an item */
3462 iter->flags |= FTRACE_ITER_MOD;
3468 t_mod_show(struct seq_file *m, struct ftrace_iterator *iter)
3470 struct ftrace_mod_load *ftrace_mod;
3471 struct trace_array *tr = iter->tr;
3473 if (WARN_ON_ONCE(!iter->mod_list) ||
3474 iter->mod_list == &tr->mod_trace ||
3475 iter->mod_list == &tr->mod_notrace)
3478 ftrace_mod = list_entry(iter->mod_list, struct ftrace_mod_load, list);
3480 if (ftrace_mod->func)
3481 seq_printf(m, "%s", ftrace_mod->func);
3485 seq_printf(m, ":mod:%s\n", ftrace_mod->module);
3491 t_func_next(struct seq_file *m, loff_t *pos)
3493 struct ftrace_iterator *iter = m->private;
3494 struct dyn_ftrace *rec = NULL;
3499 if (iter->idx >= iter->pg->index) {
3500 if (iter->pg->next) {
3501 iter->pg = iter->pg->next;
3506 rec = &iter->pg->records[iter->idx++];
3507 if (((iter->flags & (FTRACE_ITER_FILTER | FTRACE_ITER_NOTRACE)) &&
3508 !ftrace_lookup_ip(iter->hash, rec->ip)) ||
3510 ((iter->flags & FTRACE_ITER_ENABLED) &&
3511 !(rec->flags & FTRACE_FL_ENABLED))) {
3521 iter->pos = iter->func_pos = *pos;
3528 t_next(struct seq_file *m, void *v, loff_t *pos)
3530 struct ftrace_iterator *iter = m->private;
3531 loff_t l = *pos; /* t_probe_start() must use original pos */
3534 if (unlikely(ftrace_disabled))
3537 if (iter->flags & FTRACE_ITER_PROBE)
3538 return t_probe_next(m, pos);
3540 if (iter->flags & FTRACE_ITER_MOD)
3541 return t_mod_next(m, pos);
3543 if (iter->flags & FTRACE_ITER_PRINTALL) {
3544 /* next must increment pos, and t_probe_start does not */
3546 return t_mod_start(m, &l);
3549 ret = t_func_next(m, pos);
3552 return t_mod_start(m, &l);
3557 static void reset_iter_read(struct ftrace_iterator *iter)
3561 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_PROBE | FTRACE_ITER_MOD);
3564 static void *t_start(struct seq_file *m, loff_t *pos)
3566 struct ftrace_iterator *iter = m->private;
3570 mutex_lock(&ftrace_lock);
3572 if (unlikely(ftrace_disabled))
3576 * If an lseek was done, then reset and start from beginning.
3578 if (*pos < iter->pos)
3579 reset_iter_read(iter);
3582 * For set_ftrace_filter reading, if we have the filter
3583 * off, we can short cut and just print out that all
3584 * functions are enabled.
3586 if ((iter->flags & (FTRACE_ITER_FILTER | FTRACE_ITER_NOTRACE)) &&
3587 ftrace_hash_empty(iter->hash)) {
3588 iter->func_pos = 1; /* Account for the message */
3590 return t_mod_start(m, pos);
3591 iter->flags |= FTRACE_ITER_PRINTALL;
3592 /* reset in case of seek/pread */
3593 iter->flags &= ~FTRACE_ITER_PROBE;
3597 if (iter->flags & FTRACE_ITER_MOD)
3598 return t_mod_start(m, pos);
3601 * Unfortunately, we need to restart at ftrace_pages_start
3602 * every time we let go of the ftrace_mutex. This is because
3603 * those pointers can change without the lock.
3605 iter->pg = ftrace_pages_start;
3607 for (l = 0; l <= *pos; ) {
3608 p = t_func_next(m, &l);
3614 return t_mod_start(m, pos);
3619 static void t_stop(struct seq_file *m, void *p)
3621 mutex_unlock(&ftrace_lock);
3625 arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec)
3630 static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops,
3631 struct dyn_ftrace *rec)
3635 ptr = arch_ftrace_trampoline_func(ops, rec);
3637 seq_printf(m, " ->%pS", ptr);
3640 #ifdef FTRACE_MCOUNT_MAX_OFFSET
3642 * Weak functions can still have an mcount/fentry that is saved in
3643 * the __mcount_loc section. These can be detected by having a
3644 * symbol offset of greater than FTRACE_MCOUNT_MAX_OFFSET, as the
3645 * symbol found by kallsyms is not the function that the mcount/fentry
3646 * is part of. The offset is much greater in these cases.
3648 * Test the record to make sure that the ip points to a valid kallsyms
3649 * and if not, mark it disabled.
3651 static int test_for_valid_rec(struct dyn_ftrace *rec)
3653 char str[KSYM_SYMBOL_LEN];
3654 unsigned long offset;
3657 ret = kallsyms_lookup(rec->ip, NULL, &offset, NULL, str);
3659 /* Weak functions can cause invalid addresses */
3660 if (!ret || offset > FTRACE_MCOUNT_MAX_OFFSET) {
3661 rec->flags |= FTRACE_FL_DISABLED;
3667 static struct workqueue_struct *ftrace_check_wq __initdata;
3668 static struct work_struct ftrace_check_work __initdata;
3671 * Scan all the mcount/fentry entries to make sure they are valid.
3673 static __init void ftrace_check_work_func(struct work_struct *work)
3675 struct ftrace_page *pg;
3676 struct dyn_ftrace *rec;
3678 mutex_lock(&ftrace_lock);
3679 do_for_each_ftrace_rec(pg, rec) {
3680 test_for_valid_rec(rec);
3681 } while_for_each_ftrace_rec();
3682 mutex_unlock(&ftrace_lock);
3685 static int __init ftrace_check_for_weak_functions(void)
3687 INIT_WORK(&ftrace_check_work, ftrace_check_work_func);
3689 ftrace_check_wq = alloc_workqueue("ftrace_check_wq", WQ_UNBOUND, 0);
3691 queue_work(ftrace_check_wq, &ftrace_check_work);
3695 static int __init ftrace_check_sync(void)
3697 /* Make sure the ftrace_check updates are finished */
3698 if (ftrace_check_wq)
3699 destroy_workqueue(ftrace_check_wq);
3703 late_initcall_sync(ftrace_check_sync);
3704 subsys_initcall(ftrace_check_for_weak_functions);
3706 static int print_rec(struct seq_file *m, unsigned long ip)
3708 unsigned long offset;
3709 char str[KSYM_SYMBOL_LEN];
3713 ret = kallsyms_lookup(ip, NULL, &offset, &modname, str);
3714 /* Weak functions can cause invalid addresses */
3715 if (!ret || offset > FTRACE_MCOUNT_MAX_OFFSET) {
3716 snprintf(str, KSYM_SYMBOL_LEN, "%s_%ld",
3717 FTRACE_INVALID_FUNCTION, offset);
3723 seq_printf(m, " [%s]", modname);
3724 return ret == NULL ? -1 : 0;
3727 static inline int test_for_valid_rec(struct dyn_ftrace *rec)
3732 static inline int print_rec(struct seq_file *m, unsigned long ip)
3734 seq_printf(m, "%ps", (void *)ip);
3739 static int t_show(struct seq_file *m, void *v)
3741 struct ftrace_iterator *iter = m->private;
3742 struct dyn_ftrace *rec;
3744 if (iter->flags & FTRACE_ITER_PROBE)
3745 return t_probe_show(m, iter);
3747 if (iter->flags & FTRACE_ITER_MOD)
3748 return t_mod_show(m, iter);
3750 if (iter->flags & FTRACE_ITER_PRINTALL) {
3751 if (iter->flags & FTRACE_ITER_NOTRACE)
3752 seq_puts(m, "#### no functions disabled ####\n");
3754 seq_puts(m, "#### all functions enabled ####\n");
3763 if (print_rec(m, rec->ip)) {
3764 /* This should only happen when a rec is disabled */
3765 WARN_ON_ONCE(!(rec->flags & FTRACE_FL_DISABLED));
3770 if (iter->flags & FTRACE_ITER_ENABLED) {
3771 struct ftrace_ops *ops;
3773 seq_printf(m, " (%ld)%s%s%s",
3774 ftrace_rec_count(rec),
3775 rec->flags & FTRACE_FL_REGS ? " R" : " ",
3776 rec->flags & FTRACE_FL_IPMODIFY ? " I" : " ",
3777 rec->flags & FTRACE_FL_DIRECT ? " D" : " ");
3778 if (rec->flags & FTRACE_FL_TRAMP_EN) {
3779 ops = ftrace_find_tramp_ops_any(rec);
3782 seq_printf(m, "\ttramp: %pS (%pS)",
3783 (void *)ops->trampoline,
3785 add_trampoline_func(m, ops, rec);
3786 ops = ftrace_find_tramp_ops_next(rec, ops);
3789 seq_puts(m, "\ttramp: ERROR!");
3791 add_trampoline_func(m, NULL, rec);
3793 if (rec->flags & FTRACE_FL_DIRECT) {
3794 unsigned long direct;
3796 direct = ftrace_find_rec_direct(rec->ip);
3798 seq_printf(m, "\n\tdirect-->%pS", (void *)direct);
3807 static const struct seq_operations show_ftrace_seq_ops = {
3815 ftrace_avail_open(struct inode *inode, struct file *file)
3817 struct ftrace_iterator *iter;
3820 ret = security_locked_down(LOCKDOWN_TRACEFS);
3824 if (unlikely(ftrace_disabled))
3827 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3831 iter->pg = ftrace_pages_start;
3832 iter->ops = &global_ops;
3838 ftrace_enabled_open(struct inode *inode, struct file *file)
3840 struct ftrace_iterator *iter;
3843 * This shows us what functions are currently being
3844 * traced and by what. Not sure if we want lockdown
3845 * to hide such critical information for an admin.
3846 * Although, perhaps it can show information we don't
3847 * want people to see, but if something is tracing
3848 * something, we probably want to know about it.
3851 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3855 iter->pg = ftrace_pages_start;
3856 iter->flags = FTRACE_ITER_ENABLED;
3857 iter->ops = &global_ops;
3863 * ftrace_regex_open - initialize function tracer filter files
3864 * @ops: The ftrace_ops that hold the hash filters
3865 * @flag: The type of filter to process
3866 * @inode: The inode, usually passed in to your open routine
3867 * @file: The file, usually passed in to your open routine
3869 * ftrace_regex_open() initializes the filter files for the
3870 * @ops. Depending on @flag it may process the filter hash or
3871 * the notrace hash of @ops. With this called from the open
3872 * routine, you can use ftrace_filter_write() for the write
3873 * routine if @flag has FTRACE_ITER_FILTER set, or
3874 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
3875 * tracing_lseek() should be used as the lseek routine, and
3876 * release must call ftrace_regex_release().
3879 ftrace_regex_open(struct ftrace_ops *ops, int flag,
3880 struct inode *inode, struct file *file)
3882 struct ftrace_iterator *iter;
3883 struct ftrace_hash *hash;
3884 struct list_head *mod_head;
3885 struct trace_array *tr = ops->private;
3888 ftrace_ops_init(ops);
3890 if (unlikely(ftrace_disabled))
3893 if (tracing_check_open_get_tr(tr))
3896 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3900 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX))
3907 mutex_lock(&ops->func_hash->regex_lock);
3909 if (flag & FTRACE_ITER_NOTRACE) {
3910 hash = ops->func_hash->notrace_hash;
3911 mod_head = tr ? &tr->mod_notrace : NULL;
3913 hash = ops->func_hash->filter_hash;
3914 mod_head = tr ? &tr->mod_trace : NULL;
3917 iter->mod_list = mod_head;
3919 if (file->f_mode & FMODE_WRITE) {
3920 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
3922 if (file->f_flags & O_TRUNC) {
3923 iter->hash = alloc_ftrace_hash(size_bits);
3924 clear_ftrace_mod_list(mod_head);
3926 iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash);
3930 trace_parser_put(&iter->parser);
3938 if (file->f_mode & FMODE_READ) {
3939 iter->pg = ftrace_pages_start;
3941 ret = seq_open(file, &show_ftrace_seq_ops);
3943 struct seq_file *m = file->private_data;
3947 free_ftrace_hash(iter->hash);
3948 trace_parser_put(&iter->parser);
3951 file->private_data = iter;
3954 mutex_unlock(&ops->func_hash->regex_lock);
3960 trace_array_put(tr);
3967 ftrace_filter_open(struct inode *inode, struct file *file)
3969 struct ftrace_ops *ops = inode->i_private;
3971 /* Checks for tracefs lockdown */
3972 return ftrace_regex_open(ops,
3973 FTRACE_ITER_FILTER | FTRACE_ITER_DO_PROBES,
3978 ftrace_notrace_open(struct inode *inode, struct file *file)
3980 struct ftrace_ops *ops = inode->i_private;
3982 /* Checks for tracefs lockdown */
3983 return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
3987 /* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */
3988 struct ftrace_glob {
3995 * If symbols in an architecture don't correspond exactly to the user-visible
3996 * name of what they represent, it is possible to define this function to
3997 * perform the necessary adjustments.
3999 char * __weak arch_ftrace_match_adjust(char *str, const char *search)
4004 static int ftrace_match(char *str, struct ftrace_glob *g)
4009 str = arch_ftrace_match_adjust(str, g->search);
4013 if (strcmp(str, g->search) == 0)
4016 case MATCH_FRONT_ONLY:
4017 if (strncmp(str, g->search, g->len) == 0)
4020 case MATCH_MIDDLE_ONLY:
4021 if (strstr(str, g->search))
4024 case MATCH_END_ONLY:
4026 if (slen >= g->len &&
4027 memcmp(str + slen - g->len, g->search, g->len) == 0)
4031 if (glob_match(g->search, str))
4040 enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int clear_filter)
4042 struct ftrace_func_entry *entry;
4045 entry = ftrace_lookup_ip(hash, rec->ip);
4047 /* Do nothing if it doesn't exist */
4051 free_hash_entry(hash, entry);
4053 /* Do nothing if it exists */
4057 ret = add_hash_entry(hash, rec->ip);
4063 add_rec_by_index(struct ftrace_hash *hash, struct ftrace_glob *func_g,
4066 long index = simple_strtoul(func_g->search, NULL, 0);
4067 struct ftrace_page *pg;
4068 struct dyn_ftrace *rec;
4070 /* The index starts at 1 */
4074 do_for_each_ftrace_rec(pg, rec) {
4075 if (pg->index <= index) {
4077 /* this is a double loop, break goes to the next page */
4080 rec = &pg->records[index];
4081 enter_record(hash, rec, clear_filter);
4083 } while_for_each_ftrace_rec();
4087 #ifdef FTRACE_MCOUNT_MAX_OFFSET
4088 static int lookup_ip(unsigned long ip, char **modname, char *str)
4090 unsigned long offset;
4092 kallsyms_lookup(ip, NULL, &offset, modname, str);
4093 if (offset > FTRACE_MCOUNT_MAX_OFFSET)
4098 static int lookup_ip(unsigned long ip, char **modname, char *str)
4100 kallsyms_lookup(ip, NULL, NULL, modname, str);
4106 ftrace_match_record(struct dyn_ftrace *rec, struct ftrace_glob *func_g,
4107 struct ftrace_glob *mod_g, int exclude_mod)
4109 char str[KSYM_SYMBOL_LEN];
4112 if (lookup_ip(rec->ip, &modname, str)) {
4113 /* This should only happen when a rec is disabled */
4114 WARN_ON_ONCE(system_state == SYSTEM_RUNNING &&
4115 !(rec->flags & FTRACE_FL_DISABLED));
4120 int mod_matches = (modname) ? ftrace_match(modname, mod_g) : 0;
4122 /* blank module name to match all modules */
4124 /* blank module globbing: modname xor exclude_mod */
4125 if (!exclude_mod != !modname)
4131 * exclude_mod is set to trace everything but the given
4132 * module. If it is set and the module matches, then
4133 * return 0. If it is not set, and the module doesn't match
4134 * also return 0. Otherwise, check the function to see if
4137 if (!mod_matches == !exclude_mod)
4140 /* blank search means to match all funcs in the mod */
4145 return ftrace_match(str, func_g);
4149 match_records(struct ftrace_hash *hash, char *func, int len, char *mod)
4151 struct ftrace_page *pg;
4152 struct dyn_ftrace *rec;
4153 struct ftrace_glob func_g = { .type = MATCH_FULL };
4154 struct ftrace_glob mod_g = { .type = MATCH_FULL };
4155 struct ftrace_glob *mod_match = (mod) ? &mod_g : NULL;
4156 int exclude_mod = 0;
4159 int clear_filter = 0;
4162 func_g.type = filter_parse_regex(func, len, &func_g.search,
4164 func_g.len = strlen(func_g.search);
4168 mod_g.type = filter_parse_regex(mod, strlen(mod),
4169 &mod_g.search, &exclude_mod);
4170 mod_g.len = strlen(mod_g.search);
4173 mutex_lock(&ftrace_lock);
4175 if (unlikely(ftrace_disabled))
4178 if (func_g.type == MATCH_INDEX) {
4179 found = add_rec_by_index(hash, &func_g, clear_filter);
4183 do_for_each_ftrace_rec(pg, rec) {
4185 if (rec->flags & FTRACE_FL_DISABLED)
4188 if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) {
4189 ret = enter_record(hash, rec, clear_filter);
4196 } while_for_each_ftrace_rec();
4198 mutex_unlock(&ftrace_lock);
4204 ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
4206 return match_records(hash, buff, len, NULL);
4209 static void ftrace_ops_update_code(struct ftrace_ops *ops,
4210 struct ftrace_ops_hash *old_hash)
4212 struct ftrace_ops *op;
4214 if (!ftrace_enabled)
4217 if (ops->flags & FTRACE_OPS_FL_ENABLED) {
4218 ftrace_run_modify_code(ops, FTRACE_UPDATE_CALLS, old_hash);
4223 * If this is the shared global_ops filter, then we need to
4224 * check if there is another ops that shares it, is enabled.
4225 * If so, we still need to run the modify code.
4227 if (ops->func_hash != &global_ops.local_hash)
4230 do_for_each_ftrace_op(op, ftrace_ops_list) {
4231 if (op->func_hash == &global_ops.local_hash &&
4232 op->flags & FTRACE_OPS_FL_ENABLED) {
4233 ftrace_run_modify_code(op, FTRACE_UPDATE_CALLS, old_hash);
4234 /* Only need to do this once */
4237 } while_for_each_ftrace_op(op);
4240 static int ftrace_hash_move_and_update_ops(struct ftrace_ops *ops,
4241 struct ftrace_hash **orig_hash,
4242 struct ftrace_hash *hash,
4245 struct ftrace_ops_hash old_hash_ops;
4246 struct ftrace_hash *old_hash;
4249 old_hash = *orig_hash;
4250 old_hash_ops.filter_hash = ops->func_hash->filter_hash;
4251 old_hash_ops.notrace_hash = ops->func_hash->notrace_hash;
4252 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
4254 ftrace_ops_update_code(ops, &old_hash_ops);
4255 free_ftrace_hash_rcu(old_hash);
4260 static bool module_exists(const char *module)
4262 /* All modules have the symbol __this_module */
4263 static const char this_mod[] = "__this_module";
4264 char modname[MAX_PARAM_PREFIX_LEN + sizeof(this_mod) + 2];
4268 n = snprintf(modname, sizeof(modname), "%s:%s", module, this_mod);
4270 if (n > sizeof(modname) - 1)
4273 val = module_kallsyms_lookup_name(modname);
4277 static int cache_mod(struct trace_array *tr,
4278 const char *func, char *module, int enable)
4280 struct ftrace_mod_load *ftrace_mod, *n;
4281 struct list_head *head = enable ? &tr->mod_trace : &tr->mod_notrace;
4284 mutex_lock(&ftrace_lock);
4286 /* We do not cache inverse filters */
4287 if (func[0] == '!') {
4291 /* Look to remove this hash */
4292 list_for_each_entry_safe(ftrace_mod, n, head, list) {
4293 if (strcmp(ftrace_mod->module, module) != 0)
4296 /* no func matches all */
4297 if (strcmp(func, "*") == 0 ||
4298 (ftrace_mod->func &&
4299 strcmp(ftrace_mod->func, func) == 0)) {
4301 free_ftrace_mod(ftrace_mod);
4309 /* We only care about modules that have not been loaded yet */
4310 if (module_exists(module))
4313 /* Save this string off, and execute it when the module is loaded */
4314 ret = ftrace_add_mod(tr, func, module, enable);
4316 mutex_unlock(&ftrace_lock);
4322 ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
4323 int reset, int enable);
4325 #ifdef CONFIG_MODULES
4326 static void process_mod_list(struct list_head *head, struct ftrace_ops *ops,
4327 char *mod, bool enable)
4329 struct ftrace_mod_load *ftrace_mod, *n;
4330 struct ftrace_hash **orig_hash, *new_hash;
4331 LIST_HEAD(process_mods);
4334 mutex_lock(&ops->func_hash->regex_lock);
4337 orig_hash = &ops->func_hash->filter_hash;
4339 orig_hash = &ops->func_hash->notrace_hash;
4341 new_hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS,
4344 goto out; /* warn? */
4346 mutex_lock(&ftrace_lock);
4348 list_for_each_entry_safe(ftrace_mod, n, head, list) {
4350 if (strcmp(ftrace_mod->module, mod) != 0)
4353 if (ftrace_mod->func)
4354 func = kstrdup(ftrace_mod->func, GFP_KERNEL);
4356 func = kstrdup("*", GFP_KERNEL);
4358 if (!func) /* warn? */
4361 list_move(&ftrace_mod->list, &process_mods);
4363 /* Use the newly allocated func, as it may be "*" */
4364 kfree(ftrace_mod->func);
4365 ftrace_mod->func = func;
4368 mutex_unlock(&ftrace_lock);
4370 list_for_each_entry_safe(ftrace_mod, n, &process_mods, list) {
4372 func = ftrace_mod->func;
4374 /* Grabs ftrace_lock, which is why we have this extra step */
4375 match_records(new_hash, func, strlen(func), mod);
4376 free_ftrace_mod(ftrace_mod);
4379 if (enable && list_empty(head))
4380 new_hash->flags &= ~FTRACE_HASH_FL_MOD;
4382 mutex_lock(&ftrace_lock);
4384 ftrace_hash_move_and_update_ops(ops, orig_hash,
4386 mutex_unlock(&ftrace_lock);
4389 mutex_unlock(&ops->func_hash->regex_lock);
4391 free_ftrace_hash(new_hash);
4394 static void process_cached_mods(const char *mod_name)
4396 struct trace_array *tr;
4399 mod = kstrdup(mod_name, GFP_KERNEL);
4403 mutex_lock(&trace_types_lock);
4404 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
4405 if (!list_empty(&tr->mod_trace))
4406 process_mod_list(&tr->mod_trace, tr->ops, mod, true);
4407 if (!list_empty(&tr->mod_notrace))
4408 process_mod_list(&tr->mod_notrace, tr->ops, mod, false);
4410 mutex_unlock(&trace_types_lock);
4417 * We register the module command as a template to show others how
4418 * to register the a command as well.
4422 ftrace_mod_callback(struct trace_array *tr, struct ftrace_hash *hash,
4423 char *func_orig, char *cmd, char *module, int enable)
4428 /* match_records() modifies func, and we need the original */
4429 func = kstrdup(func_orig, GFP_KERNEL);
4434 * cmd == 'mod' because we only registered this func
4435 * for the 'mod' ftrace_func_command.
4436 * But if you register one func with multiple commands,
4437 * you can tell which command was used by the cmd
4440 ret = match_records(hash, func, strlen(func), module);
4444 return cache_mod(tr, func_orig, module, enable);
4450 static struct ftrace_func_command ftrace_mod_cmd = {
4452 .func = ftrace_mod_callback,
4455 static int __init ftrace_mod_cmd_init(void)
4457 return register_ftrace_command(&ftrace_mod_cmd);
4459 core_initcall(ftrace_mod_cmd_init);
4461 static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
4462 struct ftrace_ops *op, struct ftrace_regs *fregs)
4464 struct ftrace_probe_ops *probe_ops;
4465 struct ftrace_func_probe *probe;
4467 probe = container_of(op, struct ftrace_func_probe, ops);
4468 probe_ops = probe->probe_ops;
4471 * Disable preemption for these calls to prevent a RCU grace
4472 * period. This syncs the hash iteration and freeing of items
4473 * on the hash. rcu_read_lock is too dangerous here.
4475 preempt_disable_notrace();
4476 probe_ops->func(ip, parent_ip, probe->tr, probe_ops, probe->data);
4477 preempt_enable_notrace();
4480 struct ftrace_func_map {
4481 struct ftrace_func_entry entry;
4485 struct ftrace_func_mapper {
4486 struct ftrace_hash hash;
4490 * allocate_ftrace_func_mapper - allocate a new ftrace_func_mapper
4492 * Returns a ftrace_func_mapper descriptor that can be used to map ips to data.
4494 struct ftrace_func_mapper *allocate_ftrace_func_mapper(void)
4496 struct ftrace_hash *hash;
4499 * The mapper is simply a ftrace_hash, but since the entries
4500 * in the hash are not ftrace_func_entry type, we define it
4501 * as a separate structure.
4503 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4504 return (struct ftrace_func_mapper *)hash;
4508 * ftrace_func_mapper_find_ip - Find some data mapped to an ip
4509 * @mapper: The mapper that has the ip maps
4510 * @ip: the instruction pointer to find the data for
4512 * Returns the data mapped to @ip if found otherwise NULL. The return
4513 * is actually the address of the mapper data pointer. The address is
4514 * returned for use cases where the data is no bigger than a long, and
4515 * the user can use the data pointer as its data instead of having to
4516 * allocate more memory for the reference.
4518 void **ftrace_func_mapper_find_ip(struct ftrace_func_mapper *mapper,
4521 struct ftrace_func_entry *entry;
4522 struct ftrace_func_map *map;
4524 entry = ftrace_lookup_ip(&mapper->hash, ip);
4528 map = (struct ftrace_func_map *)entry;
4533 * ftrace_func_mapper_add_ip - Map some data to an ip
4534 * @mapper: The mapper that has the ip maps
4535 * @ip: The instruction pointer address to map @data to
4536 * @data: The data to map to @ip
4538 * Returns 0 on success otherwise an error.
4540 int ftrace_func_mapper_add_ip(struct ftrace_func_mapper *mapper,
4541 unsigned long ip, void *data)
4543 struct ftrace_func_entry *entry;
4544 struct ftrace_func_map *map;
4546 entry = ftrace_lookup_ip(&mapper->hash, ip);
4550 map = kmalloc(sizeof(*map), GFP_KERNEL);
4557 __add_hash_entry(&mapper->hash, &map->entry);
4563 * ftrace_func_mapper_remove_ip - Remove an ip from the mapping
4564 * @mapper: The mapper that has the ip maps
4565 * @ip: The instruction pointer address to remove the data from
4567 * Returns the data if it is found, otherwise NULL.
4568 * Note, if the data pointer is used as the data itself, (see
4569 * ftrace_func_mapper_find_ip(), then the return value may be meaningless,
4570 * if the data pointer was set to zero.
4572 void *ftrace_func_mapper_remove_ip(struct ftrace_func_mapper *mapper,
4575 struct ftrace_func_entry *entry;
4576 struct ftrace_func_map *map;
4579 entry = ftrace_lookup_ip(&mapper->hash, ip);
4583 map = (struct ftrace_func_map *)entry;
4586 remove_hash_entry(&mapper->hash, entry);
4593 * free_ftrace_func_mapper - free a mapping of ips and data
4594 * @mapper: The mapper that has the ip maps
4595 * @free_func: A function to be called on each data item.
4597 * This is used to free the function mapper. The @free_func is optional
4598 * and can be used if the data needs to be freed as well.
4600 void free_ftrace_func_mapper(struct ftrace_func_mapper *mapper,
4601 ftrace_mapper_func free_func)
4603 struct ftrace_func_entry *entry;
4604 struct ftrace_func_map *map;
4605 struct hlist_head *hhd;
4611 if (free_func && mapper->hash.count) {
4612 size = 1 << mapper->hash.size_bits;
4613 for (i = 0; i < size; i++) {
4614 hhd = &mapper->hash.buckets[i];
4615 hlist_for_each_entry(entry, hhd, hlist) {
4616 map = (struct ftrace_func_map *)entry;
4621 free_ftrace_hash(&mapper->hash);
4624 static void release_probe(struct ftrace_func_probe *probe)
4626 struct ftrace_probe_ops *probe_ops;
4628 mutex_lock(&ftrace_lock);
4630 WARN_ON(probe->ref <= 0);
4632 /* Subtract the ref that was used to protect this instance */
4636 probe_ops = probe->probe_ops;
4638 * Sending zero as ip tells probe_ops to free
4639 * the probe->data itself
4641 if (probe_ops->free)
4642 probe_ops->free(probe_ops, probe->tr, 0, probe->data);
4643 list_del(&probe->list);
4646 mutex_unlock(&ftrace_lock);
4649 static void acquire_probe_locked(struct ftrace_func_probe *probe)
4652 * Add one ref to keep it from being freed when releasing the
4653 * ftrace_lock mutex.
4659 register_ftrace_function_probe(char *glob, struct trace_array *tr,
4660 struct ftrace_probe_ops *probe_ops,
4663 struct ftrace_func_probe *probe = NULL, *iter;
4664 struct ftrace_func_entry *entry;
4665 struct ftrace_hash **orig_hash;
4666 struct ftrace_hash *old_hash;
4667 struct ftrace_hash *hash;
4676 /* We do not support '!' for function probes */
4677 if (WARN_ON(glob[0] == '!'))
4681 mutex_lock(&ftrace_lock);
4682 /* Check if the probe_ops is already registered */
4683 list_for_each_entry(iter, &tr->func_probes, list) {
4684 if (iter->probe_ops == probe_ops) {
4690 probe = kzalloc(sizeof(*probe), GFP_KERNEL);
4692 mutex_unlock(&ftrace_lock);
4695 probe->probe_ops = probe_ops;
4696 probe->ops.func = function_trace_probe_call;
4698 ftrace_ops_init(&probe->ops);
4699 list_add(&probe->list, &tr->func_probes);
4702 acquire_probe_locked(probe);
4704 mutex_unlock(&ftrace_lock);
4707 * Note, there's a small window here that the func_hash->filter_hash
4708 * may be NULL or empty. Need to be careful when reading the loop.
4710 mutex_lock(&probe->ops.func_hash->regex_lock);
4712 orig_hash = &probe->ops.func_hash->filter_hash;
4713 old_hash = *orig_hash;
4714 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
4721 ret = ftrace_match_records(hash, glob, strlen(glob));
4723 /* Nothing found? */
4730 size = 1 << hash->size_bits;
4731 for (i = 0; i < size; i++) {
4732 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
4733 if (ftrace_lookup_ip(old_hash, entry->ip))
4736 * The caller might want to do something special
4737 * for each function we find. We call the callback
4738 * to give the caller an opportunity to do so.
4740 if (probe_ops->init) {
4741 ret = probe_ops->init(probe_ops, tr,
4745 if (probe_ops->free && count)
4746 probe_ops->free(probe_ops, tr,
4756 mutex_lock(&ftrace_lock);
4759 /* Nothing was added? */
4764 ret = ftrace_hash_move_and_update_ops(&probe->ops, orig_hash,
4769 /* One ref for each new function traced */
4770 probe->ref += count;
4772 if (!(probe->ops.flags & FTRACE_OPS_FL_ENABLED))
4773 ret = ftrace_startup(&probe->ops, 0);
4776 mutex_unlock(&ftrace_lock);
4781 mutex_unlock(&probe->ops.func_hash->regex_lock);
4782 free_ftrace_hash(hash);
4784 release_probe(probe);
4789 if (!probe_ops->free || !count)
4792 /* Failed to do the move, need to call the free functions */
4793 for (i = 0; i < size; i++) {
4794 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
4795 if (ftrace_lookup_ip(old_hash, entry->ip))
4797 probe_ops->free(probe_ops, tr, entry->ip, probe->data);
4804 unregister_ftrace_function_probe_func(char *glob, struct trace_array *tr,
4805 struct ftrace_probe_ops *probe_ops)
4807 struct ftrace_func_probe *probe = NULL, *iter;
4808 struct ftrace_ops_hash old_hash_ops;
4809 struct ftrace_func_entry *entry;
4810 struct ftrace_glob func_g;
4811 struct ftrace_hash **orig_hash;
4812 struct ftrace_hash *old_hash;
4813 struct ftrace_hash *hash = NULL;
4814 struct hlist_node *tmp;
4815 struct hlist_head hhd;
4816 char str[KSYM_SYMBOL_LEN];
4818 int i, ret = -ENODEV;
4821 if (!glob || !strlen(glob) || !strcmp(glob, "*"))
4822 func_g.search = NULL;
4826 func_g.type = filter_parse_regex(glob, strlen(glob),
4827 &func_g.search, ¬);
4828 func_g.len = strlen(func_g.search);
4830 /* we do not support '!' for function probes */
4835 mutex_lock(&ftrace_lock);
4836 /* Check if the probe_ops is already registered */
4837 list_for_each_entry(iter, &tr->func_probes, list) {
4838 if (iter->probe_ops == probe_ops) {
4844 goto err_unlock_ftrace;
4847 if (!(probe->ops.flags & FTRACE_OPS_FL_INITIALIZED))
4848 goto err_unlock_ftrace;
4850 acquire_probe_locked(probe);
4852 mutex_unlock(&ftrace_lock);
4854 mutex_lock(&probe->ops.func_hash->regex_lock);
4856 orig_hash = &probe->ops.func_hash->filter_hash;
4857 old_hash = *orig_hash;
4859 if (ftrace_hash_empty(old_hash))
4862 old_hash_ops.filter_hash = old_hash;
4863 /* Probes only have filters */
4864 old_hash_ops.notrace_hash = NULL;
4867 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
4871 INIT_HLIST_HEAD(&hhd);
4873 size = 1 << hash->size_bits;
4874 for (i = 0; i < size; i++) {
4875 hlist_for_each_entry_safe(entry, tmp, &hash->buckets[i], hlist) {
4877 if (func_g.search) {
4878 kallsyms_lookup(entry->ip, NULL, NULL,
4880 if (!ftrace_match(str, &func_g))
4884 remove_hash_entry(hash, entry);
4885 hlist_add_head(&entry->hlist, &hhd);
4889 /* Nothing found? */
4895 mutex_lock(&ftrace_lock);
4897 WARN_ON(probe->ref < count);
4899 probe->ref -= count;
4901 if (ftrace_hash_empty(hash))
4902 ftrace_shutdown(&probe->ops, 0);
4904 ret = ftrace_hash_move_and_update_ops(&probe->ops, orig_hash,
4907 /* still need to update the function call sites */
4908 if (ftrace_enabled && !ftrace_hash_empty(hash))
4909 ftrace_run_modify_code(&probe->ops, FTRACE_UPDATE_CALLS,
4913 hlist_for_each_entry_safe(entry, tmp, &hhd, hlist) {
4914 hlist_del(&entry->hlist);
4915 if (probe_ops->free)
4916 probe_ops->free(probe_ops, tr, entry->ip, probe->data);
4919 mutex_unlock(&ftrace_lock);
4922 mutex_unlock(&probe->ops.func_hash->regex_lock);
4923 free_ftrace_hash(hash);
4925 release_probe(probe);
4930 mutex_unlock(&ftrace_lock);
4934 void clear_ftrace_function_probes(struct trace_array *tr)
4936 struct ftrace_func_probe *probe, *n;
4938 list_for_each_entry_safe(probe, n, &tr->func_probes, list)
4939 unregister_ftrace_function_probe_func(NULL, tr, probe->probe_ops);
4942 static LIST_HEAD(ftrace_commands);
4943 static DEFINE_MUTEX(ftrace_cmd_mutex);
4946 * Currently we only register ftrace commands from __init, so mark this
4949 __init int register_ftrace_command(struct ftrace_func_command *cmd)
4951 struct ftrace_func_command *p;
4954 mutex_lock(&ftrace_cmd_mutex);
4955 list_for_each_entry(p, &ftrace_commands, list) {
4956 if (strcmp(cmd->name, p->name) == 0) {
4961 list_add(&cmd->list, &ftrace_commands);
4963 mutex_unlock(&ftrace_cmd_mutex);
4969 * Currently we only unregister ftrace commands from __init, so mark
4972 __init int unregister_ftrace_command(struct ftrace_func_command *cmd)
4974 struct ftrace_func_command *p, *n;
4977 mutex_lock(&ftrace_cmd_mutex);
4978 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
4979 if (strcmp(cmd->name, p->name) == 0) {
4981 list_del_init(&p->list);
4986 mutex_unlock(&ftrace_cmd_mutex);
4991 static int ftrace_process_regex(struct ftrace_iterator *iter,
4992 char *buff, int len, int enable)
4994 struct ftrace_hash *hash = iter->hash;
4995 struct trace_array *tr = iter->ops->private;
4996 char *func, *command, *next = buff;
4997 struct ftrace_func_command *p;
5000 func = strsep(&next, ":");
5003 ret = ftrace_match_records(hash, func, len);
5013 command = strsep(&next, ":");
5015 mutex_lock(&ftrace_cmd_mutex);
5016 list_for_each_entry(p, &ftrace_commands, list) {
5017 if (strcmp(p->name, command) == 0) {
5018 ret = p->func(tr, hash, func, command, next, enable);
5023 mutex_unlock(&ftrace_cmd_mutex);
5029 ftrace_regex_write(struct file *file, const char __user *ubuf,
5030 size_t cnt, loff_t *ppos, int enable)
5032 struct ftrace_iterator *iter;
5033 struct trace_parser *parser;
5039 if (file->f_mode & FMODE_READ) {
5040 struct seq_file *m = file->private_data;
5043 iter = file->private_data;
5045 if (unlikely(ftrace_disabled))
5048 /* iter->hash is a local copy, so we don't need regex_lock */
5050 parser = &iter->parser;
5051 read = trace_get_user(parser, ubuf, cnt, ppos);
5053 if (read >= 0 && trace_parser_loaded(parser) &&
5054 !trace_parser_cont(parser)) {
5055 ret = ftrace_process_regex(iter, parser->buffer,
5056 parser->idx, enable);
5057 trace_parser_clear(parser);
5068 ftrace_filter_write(struct file *file, const char __user *ubuf,
5069 size_t cnt, loff_t *ppos)
5071 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
5075 ftrace_notrace_write(struct file *file, const char __user *ubuf,
5076 size_t cnt, loff_t *ppos)
5078 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
5082 __ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
5084 struct ftrace_func_entry *entry;
5086 ip = ftrace_location(ip);
5091 entry = ftrace_lookup_ip(hash, ip);
5094 free_hash_entry(hash, entry);
5098 return add_hash_entry(hash, ip);
5102 ftrace_match_addr(struct ftrace_hash *hash, unsigned long *ips,
5103 unsigned int cnt, int remove)
5108 for (i = 0; i < cnt; i++) {
5109 err = __ftrace_match_addr(hash, ips[i], remove);
5112 * This expects the @hash is a temporary hash and if this
5113 * fails the caller must free the @hash.
5122 ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
5123 unsigned long *ips, unsigned int cnt,
5124 int remove, int reset, int enable)
5126 struct ftrace_hash **orig_hash;
5127 struct ftrace_hash *hash;
5130 if (unlikely(ftrace_disabled))
5133 mutex_lock(&ops->func_hash->regex_lock);
5136 orig_hash = &ops->func_hash->filter_hash;
5138 orig_hash = &ops->func_hash->notrace_hash;
5141 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
5143 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
5147 goto out_regex_unlock;
5150 if (buf && !ftrace_match_records(hash, buf, len)) {
5152 goto out_regex_unlock;
5155 ret = ftrace_match_addr(hash, ips, cnt, remove);
5157 goto out_regex_unlock;
5160 mutex_lock(&ftrace_lock);
5161 ret = ftrace_hash_move_and_update_ops(ops, orig_hash, hash, enable);
5162 mutex_unlock(&ftrace_lock);
5165 mutex_unlock(&ops->func_hash->regex_lock);
5167 free_ftrace_hash(hash);
5172 ftrace_set_addr(struct ftrace_ops *ops, unsigned long *ips, unsigned int cnt,
5173 int remove, int reset, int enable)
5175 return ftrace_set_hash(ops, NULL, 0, ips, cnt, remove, reset, enable);
5178 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS
5180 struct ftrace_direct_func {
5181 struct list_head next;
5186 static LIST_HEAD(ftrace_direct_funcs);
5189 * ftrace_find_direct_func - test an address if it is a registered direct caller
5190 * @addr: The address of a registered direct caller
5192 * This searches to see if a ftrace direct caller has been registered
5193 * at a specific address, and if so, it returns a descriptor for it.
5195 * This can be used by architecture code to see if an address is
5196 * a direct caller (trampoline) attached to a fentry/mcount location.
5197 * This is useful for the function_graph tracer, as it may need to
5198 * do adjustments if it traced a location that also has a direct
5199 * trampoline attached to it.
5201 struct ftrace_direct_func *ftrace_find_direct_func(unsigned long addr)
5203 struct ftrace_direct_func *entry;
5206 /* May be called by fgraph trampoline (protected by rcu tasks) */
5207 list_for_each_entry_rcu(entry, &ftrace_direct_funcs, next) {
5208 if (entry->addr == addr) {
5219 static struct ftrace_direct_func *ftrace_alloc_direct_func(unsigned long addr)
5221 struct ftrace_direct_func *direct;
5223 direct = kmalloc(sizeof(*direct), GFP_KERNEL);
5226 direct->addr = addr;
5228 list_add_rcu(&direct->next, &ftrace_direct_funcs);
5229 ftrace_direct_func_count++;
5233 static int register_ftrace_function_nolock(struct ftrace_ops *ops);
5236 * register_ftrace_direct - Call a custom trampoline directly
5237 * @ip: The address of the nop at the beginning of a function
5238 * @addr: The address of the trampoline to call at @ip
5240 * This is used to connect a direct call from the nop location (@ip)
5241 * at the start of ftrace traced functions. The location that it calls
5242 * (@addr) must be able to handle a direct call, and save the parameters
5243 * of the function being traced, and restore them (or inject new ones
5244 * if needed), before returning.
5248 * -EBUSY - Another direct function is already attached (there can be only one)
5249 * -ENODEV - @ip does not point to a ftrace nop location (or not supported)
5250 * -ENOMEM - There was an allocation failure.
5252 int register_ftrace_direct(unsigned long ip, unsigned long addr)
5254 struct ftrace_direct_func *direct;
5255 struct ftrace_func_entry *entry;
5256 struct ftrace_hash *free_hash = NULL;
5257 struct dyn_ftrace *rec;
5260 mutex_lock(&direct_mutex);
5262 ip = ftrace_location(ip);
5266 /* See if there's a direct function at @ip already */
5268 if (ftrace_find_rec_direct(ip))
5272 rec = lookup_rec(ip, ip);
5277 * Check if the rec says it has a direct call but we didn't
5280 if (WARN_ON(rec->flags & FTRACE_FL_DIRECT))
5283 /* Make sure the ip points to the exact record */
5284 if (ip != rec->ip) {
5286 /* Need to check this ip for a direct. */
5287 if (ftrace_find_rec_direct(ip))
5292 direct = ftrace_find_direct_func(addr);
5294 direct = ftrace_alloc_direct_func(addr);
5299 entry = ftrace_add_rec_direct(ip, addr, &free_hash);
5303 ret = ftrace_set_filter_ip(&direct_ops, ip, 0, 0);
5305 if (!ret && !(direct_ops.flags & FTRACE_OPS_FL_ENABLED)) {
5306 ret = register_ftrace_function_nolock(&direct_ops);
5308 ftrace_set_filter_ip(&direct_ops, ip, 1, 0);
5312 remove_hash_entry(direct_functions, entry);
5314 if (!direct->count) {
5315 list_del_rcu(&direct->next);
5316 synchronize_rcu_tasks();
5319 free_ftrace_hash(free_hash);
5321 ftrace_direct_func_count--;
5327 mutex_unlock(&direct_mutex);
5330 synchronize_rcu_tasks();
5331 free_ftrace_hash(free_hash);
5336 EXPORT_SYMBOL_GPL(register_ftrace_direct);
5338 static struct ftrace_func_entry *find_direct_entry(unsigned long *ip,
5339 struct dyn_ftrace **recp)
5341 struct ftrace_func_entry *entry;
5342 struct dyn_ftrace *rec;
5344 rec = lookup_rec(*ip, *ip);
5348 entry = __ftrace_lookup_ip(direct_functions, rec->ip);
5350 WARN_ON(rec->flags & FTRACE_FL_DIRECT);
5354 WARN_ON(!(rec->flags & FTRACE_FL_DIRECT));
5356 /* Passed in ip just needs to be on the call site */
5365 int unregister_ftrace_direct(unsigned long ip, unsigned long addr)
5367 struct ftrace_direct_func *direct;
5368 struct ftrace_func_entry *entry;
5369 struct ftrace_hash *hash;
5372 mutex_lock(&direct_mutex);
5374 ip = ftrace_location(ip);
5378 entry = find_direct_entry(&ip, NULL);
5382 hash = direct_ops.func_hash->filter_hash;
5383 if (hash->count == 1)
5384 unregister_ftrace_function(&direct_ops);
5386 ret = ftrace_set_filter_ip(&direct_ops, ip, 1, 0);
5390 remove_hash_entry(direct_functions, entry);
5392 direct = ftrace_find_direct_func(addr);
5393 if (!WARN_ON(!direct)) {
5394 /* This is the good path (see the ! before WARN) */
5396 WARN_ON(direct->count < 0);
5397 if (!direct->count) {
5398 list_del_rcu(&direct->next);
5399 synchronize_rcu_tasks();
5402 ftrace_direct_func_count--;
5406 mutex_unlock(&direct_mutex);
5410 EXPORT_SYMBOL_GPL(unregister_ftrace_direct);
5412 static struct ftrace_ops stub_ops = {
5413 .func = ftrace_stub,
5417 * ftrace_modify_direct_caller - modify ftrace nop directly
5418 * @entry: The ftrace hash entry of the direct helper for @rec
5419 * @rec: The record representing the function site to patch
5420 * @old_addr: The location that the site at @rec->ip currently calls
5421 * @new_addr: The location that the site at @rec->ip should call
5423 * An architecture may overwrite this function to optimize the
5424 * changing of the direct callback on an ftrace nop location.
5425 * This is called with the ftrace_lock mutex held, and no other
5426 * ftrace callbacks are on the associated record (@rec). Thus,
5427 * it is safe to modify the ftrace record, where it should be
5428 * currently calling @old_addr directly, to call @new_addr.
5430 * Safety checks should be made to make sure that the code at
5431 * @rec->ip is currently calling @old_addr. And this must
5432 * also update entry->direct to @new_addr.
5434 int __weak ftrace_modify_direct_caller(struct ftrace_func_entry *entry,
5435 struct dyn_ftrace *rec,
5436 unsigned long old_addr,
5437 unsigned long new_addr)
5439 unsigned long ip = rec->ip;
5443 * The ftrace_lock was used to determine if the record
5444 * had more than one registered user to it. If it did,
5445 * we needed to prevent that from changing to do the quick
5446 * switch. But if it did not (only a direct caller was attached)
5447 * then this function is called. But this function can deal
5448 * with attached callers to the rec that we care about, and
5449 * since this function uses standard ftrace calls that take
5450 * the ftrace_lock mutex, we need to release it.
5452 mutex_unlock(&ftrace_lock);
5455 * By setting a stub function at the same address, we force
5456 * the code to call the iterator and the direct_ops helper.
5457 * This means that @ip does not call the direct call, and
5458 * we can simply modify it.
5460 ret = ftrace_set_filter_ip(&stub_ops, ip, 0, 0);
5464 ret = register_ftrace_function(&stub_ops);
5466 ftrace_set_filter_ip(&stub_ops, ip, 1, 0);
5470 entry->direct = new_addr;
5473 * By removing the stub, we put back the direct call, calling
5476 unregister_ftrace_function(&stub_ops);
5477 ftrace_set_filter_ip(&stub_ops, ip, 1, 0);
5480 mutex_lock(&ftrace_lock);
5486 * modify_ftrace_direct - Modify an existing direct call to call something else
5487 * @ip: The instruction pointer to modify
5488 * @old_addr: The address that the current @ip calls directly
5489 * @new_addr: The address that the @ip should call
5491 * This modifies a ftrace direct caller at an instruction pointer without
5492 * having to disable it first. The direct call will switch over to the
5493 * @new_addr without missing anything.
5495 * Returns: zero on success. Non zero on error, which includes:
5496 * -ENODEV : the @ip given has no direct caller attached
5497 * -EINVAL : the @old_addr does not match the current direct caller
5499 int modify_ftrace_direct(unsigned long ip,
5500 unsigned long old_addr, unsigned long new_addr)
5502 struct ftrace_direct_func *direct, *new_direct = NULL;
5503 struct ftrace_func_entry *entry;
5504 struct dyn_ftrace *rec;
5507 mutex_lock(&direct_mutex);
5509 mutex_lock(&ftrace_lock);
5511 ip = ftrace_location(ip);
5515 entry = find_direct_entry(&ip, &rec);
5520 if (entry->direct != old_addr)
5523 direct = ftrace_find_direct_func(old_addr);
5524 if (WARN_ON(!direct))
5526 if (direct->count > 1) {
5528 new_direct = ftrace_alloc_direct_func(new_addr);
5532 new_direct->count++;
5534 direct->addr = new_addr;
5538 * If there's no other ftrace callback on the rec->ip location,
5539 * then it can be changed directly by the architecture.
5540 * If there is another caller, then we just need to change the
5541 * direct caller helper to point to @new_addr.
5543 if (ftrace_rec_count(rec) == 1) {
5544 ret = ftrace_modify_direct_caller(entry, rec, old_addr, new_addr);
5546 entry->direct = new_addr;
5550 if (unlikely(ret && new_direct)) {
5552 list_del_rcu(&new_direct->next);
5553 synchronize_rcu_tasks();
5555 ftrace_direct_func_count--;
5559 mutex_unlock(&ftrace_lock);
5560 mutex_unlock(&direct_mutex);
5563 EXPORT_SYMBOL_GPL(modify_ftrace_direct);
5565 #define MULTI_FLAGS (FTRACE_OPS_FL_DIRECT | FTRACE_OPS_FL_SAVE_REGS)
5567 static int check_direct_multi(struct ftrace_ops *ops)
5569 if (!(ops->flags & FTRACE_OPS_FL_INITIALIZED))
5571 if ((ops->flags & MULTI_FLAGS) != MULTI_FLAGS)
5576 static void remove_direct_functions_hash(struct ftrace_hash *hash, unsigned long addr)
5578 struct ftrace_func_entry *entry, *del;
5581 size = 1 << hash->size_bits;
5582 for (i = 0; i < size; i++) {
5583 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
5584 del = __ftrace_lookup_ip(direct_functions, entry->ip);
5585 if (del && del->direct == addr) {
5586 remove_hash_entry(direct_functions, del);
5594 * register_ftrace_direct_multi - Call a custom trampoline directly
5595 * for multiple functions registered in @ops
5596 * @ops: The address of the struct ftrace_ops object
5597 * @addr: The address of the trampoline to call at @ops functions
5599 * This is used to connect a direct calls to @addr from the nop locations
5600 * of the functions registered in @ops (with by ftrace_set_filter_ip
5603 * The location that it calls (@addr) must be able to handle a direct call,
5604 * and save the parameters of the function being traced, and restore them
5605 * (or inject new ones if needed), before returning.
5609 * -EINVAL - The @ops object was already registered with this call or
5610 * when there are no functions in @ops object.
5611 * -EBUSY - Another direct function is already attached (there can be only one)
5612 * -ENODEV - @ip does not point to a ftrace nop location (or not supported)
5613 * -ENOMEM - There was an allocation failure.
5615 int register_ftrace_direct_multi(struct ftrace_ops *ops, unsigned long addr)
5617 struct ftrace_hash *hash, *free_hash = NULL;
5618 struct ftrace_func_entry *entry, *new;
5619 int err = -EBUSY, size, i;
5621 if (ops->func || ops->trampoline)
5623 if (!(ops->flags & FTRACE_OPS_FL_INITIALIZED))
5625 if (ops->flags & FTRACE_OPS_FL_ENABLED)
5628 hash = ops->func_hash->filter_hash;
5629 if (ftrace_hash_empty(hash))
5632 mutex_lock(&direct_mutex);
5634 /* Make sure requested entries are not already registered.. */
5635 size = 1 << hash->size_bits;
5636 for (i = 0; i < size; i++) {
5637 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
5638 if (ftrace_find_rec_direct(entry->ip))
5643 /* ... and insert them to direct_functions hash. */
5645 for (i = 0; i < size; i++) {
5646 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
5647 new = ftrace_add_rec_direct(entry->ip, addr, &free_hash);
5650 entry->direct = addr;
5654 ops->func = call_direct_funcs;
5655 ops->flags = MULTI_FLAGS;
5656 ops->trampoline = FTRACE_REGS_ADDR;
5658 err = register_ftrace_function_nolock(ops);
5662 remove_direct_functions_hash(hash, addr);
5665 mutex_unlock(&direct_mutex);
5668 synchronize_rcu_tasks();
5669 free_ftrace_hash(free_hash);
5673 EXPORT_SYMBOL_GPL(register_ftrace_direct_multi);
5676 * unregister_ftrace_direct_multi - Remove calls to custom trampoline
5677 * previously registered by register_ftrace_direct_multi for @ops object.
5678 * @ops: The address of the struct ftrace_ops object
5680 * This is used to remove a direct calls to @addr from the nop locations
5681 * of the functions registered in @ops (with by ftrace_set_filter_ip
5686 * -EINVAL - The @ops object was not properly registered.
5688 int unregister_ftrace_direct_multi(struct ftrace_ops *ops, unsigned long addr)
5690 struct ftrace_hash *hash = ops->func_hash->filter_hash;
5693 if (check_direct_multi(ops))
5695 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
5698 mutex_lock(&direct_mutex);
5699 err = unregister_ftrace_function(ops);
5700 remove_direct_functions_hash(hash, addr);
5701 mutex_unlock(&direct_mutex);
5703 /* cleanup for possible another register call */
5705 ops->trampoline = 0;
5708 EXPORT_SYMBOL_GPL(unregister_ftrace_direct_multi);
5711 __modify_ftrace_direct_multi(struct ftrace_ops *ops, unsigned long addr)
5713 struct ftrace_hash *hash;
5714 struct ftrace_func_entry *entry, *iter;
5715 static struct ftrace_ops tmp_ops = {
5716 .func = ftrace_stub,
5717 .flags = FTRACE_OPS_FL_STUB,
5722 lockdep_assert_held_once(&direct_mutex);
5724 /* Enable the tmp_ops to have the same functions as the direct ops */
5725 ftrace_ops_init(&tmp_ops);
5726 tmp_ops.func_hash = ops->func_hash;
5728 err = register_ftrace_function_nolock(&tmp_ops);
5733 * Now the ftrace_ops_list_func() is called to do the direct callers.
5734 * We can safely change the direct functions attached to each entry.
5736 mutex_lock(&ftrace_lock);
5738 hash = ops->func_hash->filter_hash;
5739 size = 1 << hash->size_bits;
5740 for (i = 0; i < size; i++) {
5741 hlist_for_each_entry(iter, &hash->buckets[i], hlist) {
5742 entry = __ftrace_lookup_ip(direct_functions, iter->ip);
5745 entry->direct = addr;
5749 mutex_unlock(&ftrace_lock);
5751 /* Removing the tmp_ops will add the updated direct callers to the functions */
5752 unregister_ftrace_function(&tmp_ops);
5758 * modify_ftrace_direct_multi_nolock - Modify an existing direct 'multi' call
5759 * to call something else
5760 * @ops: The address of the struct ftrace_ops object
5761 * @addr: The address of the new trampoline to call at @ops functions
5763 * This is used to unregister currently registered direct caller and
5764 * register new one @addr on functions registered in @ops object.
5766 * Note there's window between ftrace_shutdown and ftrace_startup calls
5767 * where there will be no callbacks called.
5769 * Caller should already have direct_mutex locked, so we don't lock
5770 * direct_mutex here.
5772 * Returns: zero on success. Non zero on error, which includes:
5773 * -EINVAL - The @ops object was not properly registered.
5775 int modify_ftrace_direct_multi_nolock(struct ftrace_ops *ops, unsigned long addr)
5777 if (check_direct_multi(ops))
5779 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
5782 return __modify_ftrace_direct_multi(ops, addr);
5784 EXPORT_SYMBOL_GPL(modify_ftrace_direct_multi_nolock);
5787 * modify_ftrace_direct_multi - Modify an existing direct 'multi' call
5788 * to call something else
5789 * @ops: The address of the struct ftrace_ops object
5790 * @addr: The address of the new trampoline to call at @ops functions
5792 * This is used to unregister currently registered direct caller and
5793 * register new one @addr on functions registered in @ops object.
5795 * Note there's window between ftrace_shutdown and ftrace_startup calls
5796 * where there will be no callbacks called.
5798 * Returns: zero on success. Non zero on error, which includes:
5799 * -EINVAL - The @ops object was not properly registered.
5801 int modify_ftrace_direct_multi(struct ftrace_ops *ops, unsigned long addr)
5805 if (check_direct_multi(ops))
5807 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
5810 mutex_lock(&direct_mutex);
5811 err = __modify_ftrace_direct_multi(ops, addr);
5812 mutex_unlock(&direct_mutex);
5815 EXPORT_SYMBOL_GPL(modify_ftrace_direct_multi);
5816 #endif /* CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS */
5819 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
5820 * @ops - the ops to set the filter with
5821 * @ip - the address to add to or remove from the filter.
5822 * @remove - non zero to remove the ip from the filter
5823 * @reset - non zero to reset all filters before applying this filter.
5825 * Filters denote which functions should be enabled when tracing is enabled
5826 * If @ip is NULL, it fails to update filter.
5828 int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
5829 int remove, int reset)
5831 ftrace_ops_init(ops);
5832 return ftrace_set_addr(ops, &ip, 1, remove, reset, 1);
5834 EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
5837 * ftrace_set_filter_ips - set functions to filter on in ftrace by addresses
5838 * @ops - the ops to set the filter with
5839 * @ips - the array of addresses to add to or remove from the filter.
5840 * @cnt - the number of addresses in @ips
5841 * @remove - non zero to remove ips from the filter
5842 * @reset - non zero to reset all filters before applying this filter.
5844 * Filters denote which functions should be enabled when tracing is enabled
5845 * If @ips array or any ip specified within is NULL , it fails to update filter.
5847 int ftrace_set_filter_ips(struct ftrace_ops *ops, unsigned long *ips,
5848 unsigned int cnt, int remove, int reset)
5850 ftrace_ops_init(ops);
5851 return ftrace_set_addr(ops, ips, cnt, remove, reset, 1);
5853 EXPORT_SYMBOL_GPL(ftrace_set_filter_ips);
5856 * ftrace_ops_set_global_filter - setup ops to use global filters
5857 * @ops - the ops which will use the global filters
5859 * ftrace users who need global function trace filtering should call this.
5860 * It can set the global filter only if ops were not initialized before.
5862 void ftrace_ops_set_global_filter(struct ftrace_ops *ops)
5864 if (ops->flags & FTRACE_OPS_FL_INITIALIZED)
5867 ftrace_ops_init(ops);
5868 ops->func_hash = &global_ops.local_hash;
5870 EXPORT_SYMBOL_GPL(ftrace_ops_set_global_filter);
5873 ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
5874 int reset, int enable)
5876 return ftrace_set_hash(ops, buf, len, NULL, 0, 0, reset, enable);
5880 * ftrace_set_filter - set a function to filter on in ftrace
5881 * @ops - the ops to set the filter with
5882 * @buf - the string that holds the function filter text.
5883 * @len - the length of the string.
5884 * @reset - non zero to reset all filters before applying this filter.
5886 * Filters denote which functions should be enabled when tracing is enabled.
5887 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
5889 int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
5892 ftrace_ops_init(ops);
5893 return ftrace_set_regex(ops, buf, len, reset, 1);
5895 EXPORT_SYMBOL_GPL(ftrace_set_filter);
5898 * ftrace_set_notrace - set a function to not trace in ftrace
5899 * @ops - the ops to set the notrace filter with
5900 * @buf - the string that holds the function notrace text.
5901 * @len - the length of the string.
5902 * @reset - non zero to reset all filters before applying this filter.
5904 * Notrace Filters denote which functions should not be enabled when tracing
5905 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
5908 int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
5911 ftrace_ops_init(ops);
5912 return ftrace_set_regex(ops, buf, len, reset, 0);
5914 EXPORT_SYMBOL_GPL(ftrace_set_notrace);
5916 * ftrace_set_global_filter - set a function to filter on with global tracers
5917 * @buf - the string that holds the function filter text.
5918 * @len - the length of the string.
5919 * @reset - non zero to reset all filters before applying this filter.
5921 * Filters denote which functions should be enabled when tracing is enabled.
5922 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
5924 void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
5926 ftrace_set_regex(&global_ops, buf, len, reset, 1);
5928 EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
5931 * ftrace_set_global_notrace - set a function to not trace with global tracers
5932 * @buf - the string that holds the function notrace text.
5933 * @len - the length of the string.
5934 * @reset - non zero to reset all filters before applying this filter.
5936 * Notrace Filters denote which functions should not be enabled when tracing
5937 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
5940 void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
5942 ftrace_set_regex(&global_ops, buf, len, reset, 0);
5944 EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
5947 * command line interface to allow users to set filters on boot up.
5949 #define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
5950 static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
5951 static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
5953 /* Used by function selftest to not test if filter is set */
5954 bool ftrace_filter_param __initdata;
5956 static int __init set_ftrace_notrace(char *str)
5958 ftrace_filter_param = true;
5959 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
5962 __setup("ftrace_notrace=", set_ftrace_notrace);
5964 static int __init set_ftrace_filter(char *str)
5966 ftrace_filter_param = true;
5967 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
5970 __setup("ftrace_filter=", set_ftrace_filter);
5972 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
5973 static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
5974 static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
5975 static int ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer);
5977 static int __init set_graph_function(char *str)
5979 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
5982 __setup("ftrace_graph_filter=", set_graph_function);
5984 static int __init set_graph_notrace_function(char *str)
5986 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
5989 __setup("ftrace_graph_notrace=", set_graph_notrace_function);
5991 static int __init set_graph_max_depth_function(char *str)
5995 fgraph_max_depth = simple_strtoul(str, NULL, 0);
5998 __setup("ftrace_graph_max_depth=", set_graph_max_depth_function);
6000 static void __init set_ftrace_early_graph(char *buf, int enable)
6004 struct ftrace_hash *hash;
6006 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
6007 if (MEM_FAIL(!hash, "Failed to allocate hash\n"))
6011 func = strsep(&buf, ",");
6012 /* we allow only one expression at a time */
6013 ret = ftrace_graph_set_hash(hash, func);
6015 printk(KERN_DEBUG "ftrace: function %s not "
6016 "traceable\n", func);
6020 ftrace_graph_hash = hash;
6022 ftrace_graph_notrace_hash = hash;
6024 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
6027 ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
6031 ftrace_ops_init(ops);
6034 func = strsep(&buf, ",");
6035 ftrace_set_regex(ops, func, strlen(func), 0, enable);
6039 static void __init set_ftrace_early_filters(void)
6041 if (ftrace_filter_buf[0])
6042 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
6043 if (ftrace_notrace_buf[0])
6044 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
6045 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
6046 if (ftrace_graph_buf[0])
6047 set_ftrace_early_graph(ftrace_graph_buf, 1);
6048 if (ftrace_graph_notrace_buf[0])
6049 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
6050 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
6053 int ftrace_regex_release(struct inode *inode, struct file *file)
6055 struct seq_file *m = (struct seq_file *)file->private_data;
6056 struct ftrace_iterator *iter;
6057 struct ftrace_hash **orig_hash;
6058 struct trace_parser *parser;
6061 if (file->f_mode & FMODE_READ) {
6063 seq_release(inode, file);
6065 iter = file->private_data;
6067 parser = &iter->parser;
6068 if (trace_parser_loaded(parser)) {
6069 int enable = !(iter->flags & FTRACE_ITER_NOTRACE);
6071 ftrace_process_regex(iter, parser->buffer,
6072 parser->idx, enable);
6075 trace_parser_put(parser);
6077 mutex_lock(&iter->ops->func_hash->regex_lock);
6079 if (file->f_mode & FMODE_WRITE) {
6080 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
6083 orig_hash = &iter->ops->func_hash->filter_hash;
6084 if (iter->tr && !list_empty(&iter->tr->mod_trace))
6085 iter->hash->flags |= FTRACE_HASH_FL_MOD;
6087 orig_hash = &iter->ops->func_hash->notrace_hash;
6089 mutex_lock(&ftrace_lock);
6090 ftrace_hash_move_and_update_ops(iter->ops, orig_hash,
6091 iter->hash, filter_hash);
6092 mutex_unlock(&ftrace_lock);
6094 /* For read only, the hash is the ops hash */
6098 mutex_unlock(&iter->ops->func_hash->regex_lock);
6099 free_ftrace_hash(iter->hash);
6101 trace_array_put(iter->tr);
6107 static const struct file_operations ftrace_avail_fops = {
6108 .open = ftrace_avail_open,
6110 .llseek = seq_lseek,
6111 .release = seq_release_private,
6114 static const struct file_operations ftrace_enabled_fops = {
6115 .open = ftrace_enabled_open,
6117 .llseek = seq_lseek,
6118 .release = seq_release_private,
6121 static const struct file_operations ftrace_filter_fops = {
6122 .open = ftrace_filter_open,
6124 .write = ftrace_filter_write,
6125 .llseek = tracing_lseek,
6126 .release = ftrace_regex_release,
6129 static const struct file_operations ftrace_notrace_fops = {
6130 .open = ftrace_notrace_open,
6132 .write = ftrace_notrace_write,
6133 .llseek = tracing_lseek,
6134 .release = ftrace_regex_release,
6137 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
6139 static DEFINE_MUTEX(graph_lock);
6141 struct ftrace_hash __rcu *ftrace_graph_hash = EMPTY_HASH;
6142 struct ftrace_hash __rcu *ftrace_graph_notrace_hash = EMPTY_HASH;
6144 enum graph_filter_type {
6145 GRAPH_FILTER_NOTRACE = 0,
6146 GRAPH_FILTER_FUNCTION,
6149 #define FTRACE_GRAPH_EMPTY ((void *)1)
6151 struct ftrace_graph_data {
6152 struct ftrace_hash *hash;
6153 struct ftrace_func_entry *entry;
6154 int idx; /* for hash table iteration */
6155 enum graph_filter_type type;
6156 struct ftrace_hash *new_hash;
6157 const struct seq_operations *seq_ops;
6158 struct trace_parser parser;
6162 __g_next(struct seq_file *m, loff_t *pos)
6164 struct ftrace_graph_data *fgd = m->private;
6165 struct ftrace_func_entry *entry = fgd->entry;
6166 struct hlist_head *head;
6167 int i, idx = fgd->idx;
6169 if (*pos >= fgd->hash->count)
6173 hlist_for_each_entry_continue(entry, hlist) {
6181 for (i = idx; i < 1 << fgd->hash->size_bits; i++) {
6182 head = &fgd->hash->buckets[i];
6183 hlist_for_each_entry(entry, head, hlist) {
6193 g_next(struct seq_file *m, void *v, loff_t *pos)
6196 return __g_next(m, pos);
6199 static void *g_start(struct seq_file *m, loff_t *pos)
6201 struct ftrace_graph_data *fgd = m->private;
6203 mutex_lock(&graph_lock);
6205 if (fgd->type == GRAPH_FILTER_FUNCTION)
6206 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
6207 lockdep_is_held(&graph_lock));
6209 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
6210 lockdep_is_held(&graph_lock));
6212 /* Nothing, tell g_show to print all functions are enabled */
6213 if (ftrace_hash_empty(fgd->hash) && !*pos)
6214 return FTRACE_GRAPH_EMPTY;
6218 return __g_next(m, pos);
6221 static void g_stop(struct seq_file *m, void *p)
6223 mutex_unlock(&graph_lock);
6226 static int g_show(struct seq_file *m, void *v)
6228 struct ftrace_func_entry *entry = v;
6233 if (entry == FTRACE_GRAPH_EMPTY) {
6234 struct ftrace_graph_data *fgd = m->private;
6236 if (fgd->type == GRAPH_FILTER_FUNCTION)
6237 seq_puts(m, "#### all functions enabled ####\n");
6239 seq_puts(m, "#### no functions disabled ####\n");
6243 seq_printf(m, "%ps\n", (void *)entry->ip);
6248 static const struct seq_operations ftrace_graph_seq_ops = {
6256 __ftrace_graph_open(struct inode *inode, struct file *file,
6257 struct ftrace_graph_data *fgd)
6260 struct ftrace_hash *new_hash = NULL;
6262 ret = security_locked_down(LOCKDOWN_TRACEFS);
6266 if (file->f_mode & FMODE_WRITE) {
6267 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
6269 if (trace_parser_get_init(&fgd->parser, FTRACE_BUFF_MAX))
6272 if (file->f_flags & O_TRUNC)
6273 new_hash = alloc_ftrace_hash(size_bits);
6275 new_hash = alloc_and_copy_ftrace_hash(size_bits,
6283 if (file->f_mode & FMODE_READ) {
6284 ret = seq_open(file, &ftrace_graph_seq_ops);
6286 struct seq_file *m = file->private_data;
6290 free_ftrace_hash(new_hash);
6294 file->private_data = fgd;
6297 if (ret < 0 && file->f_mode & FMODE_WRITE)
6298 trace_parser_put(&fgd->parser);
6300 fgd->new_hash = new_hash;
6303 * All uses of fgd->hash must be taken with the graph_lock
6304 * held. The graph_lock is going to be released, so force
6305 * fgd->hash to be reinitialized when it is taken again.
6313 ftrace_graph_open(struct inode *inode, struct file *file)
6315 struct ftrace_graph_data *fgd;
6318 if (unlikely(ftrace_disabled))
6321 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
6325 mutex_lock(&graph_lock);
6327 fgd->hash = rcu_dereference_protected(ftrace_graph_hash,
6328 lockdep_is_held(&graph_lock));
6329 fgd->type = GRAPH_FILTER_FUNCTION;
6330 fgd->seq_ops = &ftrace_graph_seq_ops;
6332 ret = __ftrace_graph_open(inode, file, fgd);
6336 mutex_unlock(&graph_lock);
6341 ftrace_graph_notrace_open(struct inode *inode, struct file *file)
6343 struct ftrace_graph_data *fgd;
6346 if (unlikely(ftrace_disabled))
6349 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
6353 mutex_lock(&graph_lock);
6355 fgd->hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
6356 lockdep_is_held(&graph_lock));
6357 fgd->type = GRAPH_FILTER_NOTRACE;
6358 fgd->seq_ops = &ftrace_graph_seq_ops;
6360 ret = __ftrace_graph_open(inode, file, fgd);
6364 mutex_unlock(&graph_lock);
6369 ftrace_graph_release(struct inode *inode, struct file *file)
6371 struct ftrace_graph_data *fgd;
6372 struct ftrace_hash *old_hash, *new_hash;
6373 struct trace_parser *parser;
6376 if (file->f_mode & FMODE_READ) {
6377 struct seq_file *m = file->private_data;
6380 seq_release(inode, file);
6382 fgd = file->private_data;
6386 if (file->f_mode & FMODE_WRITE) {
6388 parser = &fgd->parser;
6390 if (trace_parser_loaded((parser))) {
6391 ret = ftrace_graph_set_hash(fgd->new_hash,
6395 trace_parser_put(parser);
6397 new_hash = __ftrace_hash_move(fgd->new_hash);
6403 mutex_lock(&graph_lock);
6405 if (fgd->type == GRAPH_FILTER_FUNCTION) {
6406 old_hash = rcu_dereference_protected(ftrace_graph_hash,
6407 lockdep_is_held(&graph_lock));
6408 rcu_assign_pointer(ftrace_graph_hash, new_hash);
6410 old_hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
6411 lockdep_is_held(&graph_lock));
6412 rcu_assign_pointer(ftrace_graph_notrace_hash, new_hash);
6415 mutex_unlock(&graph_lock);
6418 * We need to do a hard force of sched synchronization.
6419 * This is because we use preempt_disable() to do RCU, but
6420 * the function tracers can be called where RCU is not watching
6421 * (like before user_exit()). We can not rely on the RCU
6422 * infrastructure to do the synchronization, thus we must do it
6425 if (old_hash != EMPTY_HASH)
6426 synchronize_rcu_tasks_rude();
6428 free_ftrace_hash(old_hash);
6432 free_ftrace_hash(fgd->new_hash);
6439 ftrace_graph_set_hash(struct ftrace_hash *hash, char *buffer)
6441 struct ftrace_glob func_g;
6442 struct dyn_ftrace *rec;
6443 struct ftrace_page *pg;
6444 struct ftrace_func_entry *entry;
6449 func_g.type = filter_parse_regex(buffer, strlen(buffer),
6450 &func_g.search, ¬);
6452 func_g.len = strlen(func_g.search);
6454 mutex_lock(&ftrace_lock);
6456 if (unlikely(ftrace_disabled)) {
6457 mutex_unlock(&ftrace_lock);
6461 do_for_each_ftrace_rec(pg, rec) {
6463 if (rec->flags & FTRACE_FL_DISABLED)
6466 if (ftrace_match_record(rec, &func_g, NULL, 0)) {
6467 entry = ftrace_lookup_ip(hash, rec->ip);
6474 if (add_hash_entry(hash, rec->ip) < 0)
6478 free_hash_entry(hash, entry);
6483 } while_for_each_ftrace_rec();
6485 mutex_unlock(&ftrace_lock);
6494 ftrace_graph_write(struct file *file, const char __user *ubuf,
6495 size_t cnt, loff_t *ppos)
6497 ssize_t read, ret = 0;
6498 struct ftrace_graph_data *fgd = file->private_data;
6499 struct trace_parser *parser;
6504 /* Read mode uses seq functions */
6505 if (file->f_mode & FMODE_READ) {
6506 struct seq_file *m = file->private_data;
6510 parser = &fgd->parser;
6512 read = trace_get_user(parser, ubuf, cnt, ppos);
6514 if (read >= 0 && trace_parser_loaded(parser) &&
6515 !trace_parser_cont(parser)) {
6517 ret = ftrace_graph_set_hash(fgd->new_hash,
6519 trace_parser_clear(parser);
6528 static const struct file_operations ftrace_graph_fops = {
6529 .open = ftrace_graph_open,
6531 .write = ftrace_graph_write,
6532 .llseek = tracing_lseek,
6533 .release = ftrace_graph_release,
6536 static const struct file_operations ftrace_graph_notrace_fops = {
6537 .open = ftrace_graph_notrace_open,
6539 .write = ftrace_graph_write,
6540 .llseek = tracing_lseek,
6541 .release = ftrace_graph_release,
6543 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
6545 void ftrace_create_filter_files(struct ftrace_ops *ops,
6546 struct dentry *parent)
6549 trace_create_file("set_ftrace_filter", TRACE_MODE_WRITE, parent,
6550 ops, &ftrace_filter_fops);
6552 trace_create_file("set_ftrace_notrace", TRACE_MODE_WRITE, parent,
6553 ops, &ftrace_notrace_fops);
6557 * The name "destroy_filter_files" is really a misnomer. Although
6558 * in the future, it may actually delete the files, but this is
6559 * really intended to make sure the ops passed in are disabled
6560 * and that when this function returns, the caller is free to
6563 * The "destroy" name is only to match the "create" name that this
6564 * should be paired with.
6566 void ftrace_destroy_filter_files(struct ftrace_ops *ops)
6568 mutex_lock(&ftrace_lock);
6569 if (ops->flags & FTRACE_OPS_FL_ENABLED)
6570 ftrace_shutdown(ops, 0);
6571 ops->flags |= FTRACE_OPS_FL_DELETED;
6572 ftrace_free_filter(ops);
6573 mutex_unlock(&ftrace_lock);
6576 static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer)
6579 trace_create_file("available_filter_functions", TRACE_MODE_READ,
6580 d_tracer, NULL, &ftrace_avail_fops);
6582 trace_create_file("enabled_functions", TRACE_MODE_READ,
6583 d_tracer, NULL, &ftrace_enabled_fops);
6585 ftrace_create_filter_files(&global_ops, d_tracer);
6587 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
6588 trace_create_file("set_graph_function", TRACE_MODE_WRITE, d_tracer,
6590 &ftrace_graph_fops);
6591 trace_create_file("set_graph_notrace", TRACE_MODE_WRITE, d_tracer,
6593 &ftrace_graph_notrace_fops);
6594 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
6599 static int ftrace_cmp_ips(const void *a, const void *b)
6601 const unsigned long *ipa = a;
6602 const unsigned long *ipb = b;
6611 #ifdef CONFIG_FTRACE_SORT_STARTUP_TEST
6612 static void test_is_sorted(unsigned long *start, unsigned long count)
6616 for (i = 1; i < count; i++) {
6617 if (WARN(start[i - 1] > start[i],
6618 "[%d] %pS at %lx is not sorted with %pS at %lx\n", i,
6619 (void *)start[i - 1], start[i - 1],
6620 (void *)start[i], start[i]))
6624 pr_info("ftrace section at %px sorted properly\n", start);
6627 static void test_is_sorted(unsigned long *start, unsigned long count)
6632 static int ftrace_process_locs(struct module *mod,
6633 unsigned long *start,
6636 struct ftrace_page *start_pg;
6637 struct ftrace_page *pg;
6638 struct dyn_ftrace *rec;
6639 unsigned long count;
6642 unsigned long flags = 0; /* Shut up gcc */
6645 count = end - start;
6651 * Sorting mcount in vmlinux at build time depend on
6652 * CONFIG_BUILDTIME_MCOUNT_SORT, while mcount loc in
6653 * modules can not be sorted at build time.
6655 if (!IS_ENABLED(CONFIG_BUILDTIME_MCOUNT_SORT) || mod) {
6656 sort(start, count, sizeof(*start),
6657 ftrace_cmp_ips, NULL);
6659 test_is_sorted(start, count);
6662 start_pg = ftrace_allocate_pages(count);
6666 mutex_lock(&ftrace_lock);
6669 * Core and each module needs their own pages, as
6670 * modules will free them when they are removed.
6671 * Force a new page to be allocated for modules.
6674 WARN_ON(ftrace_pages || ftrace_pages_start);
6675 /* First initialization */
6676 ftrace_pages = ftrace_pages_start = start_pg;
6681 if (WARN_ON(ftrace_pages->next)) {
6682 /* Hmm, we have free pages? */
6683 while (ftrace_pages->next)
6684 ftrace_pages = ftrace_pages->next;
6687 ftrace_pages->next = start_pg;
6693 unsigned long end_offset;
6694 addr = ftrace_call_adjust(*p++);
6696 * Some architecture linkers will pad between
6697 * the different mcount_loc sections of different
6698 * object files to satisfy alignments.
6699 * Skip any NULL pointers.
6704 end_offset = (pg->index+1) * sizeof(pg->records[0]);
6705 if (end_offset > PAGE_SIZE << pg->order) {
6706 /* We should have allocated enough */
6707 if (WARN_ON(!pg->next))
6712 rec = &pg->records[pg->index++];
6716 /* We should have used all pages */
6719 /* Assign the last page to ftrace_pages */
6723 * We only need to disable interrupts on start up
6724 * because we are modifying code that an interrupt
6725 * may execute, and the modification is not atomic.
6726 * But for modules, nothing runs the code we modify
6727 * until we are finished with it, and there's no
6728 * reason to cause large interrupt latencies while we do it.
6731 local_irq_save(flags);
6732 ftrace_update_code(mod, start_pg);
6734 local_irq_restore(flags);
6737 mutex_unlock(&ftrace_lock);
6742 struct ftrace_mod_func {
6743 struct list_head list;
6749 struct ftrace_mod_map {
6750 struct rcu_head rcu;
6751 struct list_head list;
6753 unsigned long start_addr;
6754 unsigned long end_addr;
6755 struct list_head funcs;
6756 unsigned int num_funcs;
6759 static int ftrace_get_trampoline_kallsym(unsigned int symnum,
6760 unsigned long *value, char *type,
6761 char *name, char *module_name,
6764 struct ftrace_ops *op;
6766 list_for_each_entry_rcu(op, &ftrace_ops_trampoline_list, list) {
6767 if (!op->trampoline || symnum--)
6769 *value = op->trampoline;
6771 strlcpy(name, FTRACE_TRAMPOLINE_SYM, KSYM_NAME_LEN);
6772 strlcpy(module_name, FTRACE_TRAMPOLINE_MOD, MODULE_NAME_LEN);
6780 #if defined(CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS) || defined(CONFIG_MODULES)
6782 * Check if the current ops references the given ip.
6784 * If the ops traces all functions, then it was already accounted for.
6785 * If the ops does not trace the current record function, skip it.
6786 * If the ops ignores the function via notrace filter, skip it.
6789 ops_references_ip(struct ftrace_ops *ops, unsigned long ip)
6791 /* If ops isn't enabled, ignore it */
6792 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
6795 /* If ops traces all then it includes this function */
6796 if (ops_traces_mod(ops))
6799 /* The function must be in the filter */
6800 if (!ftrace_hash_empty(ops->func_hash->filter_hash) &&
6801 !__ftrace_lookup_ip(ops->func_hash->filter_hash, ip))
6804 /* If in notrace hash, we ignore it too */
6805 if (ftrace_lookup_ip(ops->func_hash->notrace_hash, ip))
6812 #ifdef CONFIG_MODULES
6814 #define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
6816 static LIST_HEAD(ftrace_mod_maps);
6818 static int referenced_filters(struct dyn_ftrace *rec)
6820 struct ftrace_ops *ops;
6823 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
6824 if (ops_references_ip(ops, rec->ip)) {
6825 if (WARN_ON_ONCE(ops->flags & FTRACE_OPS_FL_DIRECT))
6827 if (WARN_ON_ONCE(ops->flags & FTRACE_OPS_FL_IPMODIFY))
6830 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
6831 rec->flags |= FTRACE_FL_REGS;
6832 if (cnt == 1 && ops->trampoline)
6833 rec->flags |= FTRACE_FL_TRAMP;
6835 rec->flags &= ~FTRACE_FL_TRAMP;
6843 clear_mod_from_hash(struct ftrace_page *pg, struct ftrace_hash *hash)
6845 struct ftrace_func_entry *entry;
6846 struct dyn_ftrace *rec;
6849 if (ftrace_hash_empty(hash))
6852 for (i = 0; i < pg->index; i++) {
6853 rec = &pg->records[i];
6854 entry = __ftrace_lookup_ip(hash, rec->ip);
6856 * Do not allow this rec to match again.
6857 * Yeah, it may waste some memory, but will be removed
6858 * if/when the hash is modified again.
6865 /* Clear any records from hashes */
6866 static void clear_mod_from_hashes(struct ftrace_page *pg)
6868 struct trace_array *tr;
6870 mutex_lock(&trace_types_lock);
6871 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
6872 if (!tr->ops || !tr->ops->func_hash)
6874 mutex_lock(&tr->ops->func_hash->regex_lock);
6875 clear_mod_from_hash(pg, tr->ops->func_hash->filter_hash);
6876 clear_mod_from_hash(pg, tr->ops->func_hash->notrace_hash);
6877 mutex_unlock(&tr->ops->func_hash->regex_lock);
6879 mutex_unlock(&trace_types_lock);
6882 static void ftrace_free_mod_map(struct rcu_head *rcu)
6884 struct ftrace_mod_map *mod_map = container_of(rcu, struct ftrace_mod_map, rcu);
6885 struct ftrace_mod_func *mod_func;
6886 struct ftrace_mod_func *n;
6888 /* All the contents of mod_map are now not visible to readers */
6889 list_for_each_entry_safe(mod_func, n, &mod_map->funcs, list) {
6890 kfree(mod_func->name);
6891 list_del(&mod_func->list);
6898 void ftrace_release_mod(struct module *mod)
6900 struct ftrace_mod_map *mod_map;
6901 struct ftrace_mod_map *n;
6902 struct dyn_ftrace *rec;
6903 struct ftrace_page **last_pg;
6904 struct ftrace_page *tmp_page = NULL;
6905 struct ftrace_page *pg;
6907 mutex_lock(&ftrace_lock);
6909 if (ftrace_disabled)
6912 list_for_each_entry_safe(mod_map, n, &ftrace_mod_maps, list) {
6913 if (mod_map->mod == mod) {
6914 list_del_rcu(&mod_map->list);
6915 call_rcu(&mod_map->rcu, ftrace_free_mod_map);
6921 * Each module has its own ftrace_pages, remove
6922 * them from the list.
6924 last_pg = &ftrace_pages_start;
6925 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
6926 rec = &pg->records[0];
6927 if (within_module_core(rec->ip, mod) ||
6928 within_module_init(rec->ip, mod)) {
6930 * As core pages are first, the first
6931 * page should never be a module page.
6933 if (WARN_ON(pg == ftrace_pages_start))
6936 /* Check if we are deleting the last page */
6937 if (pg == ftrace_pages)
6938 ftrace_pages = next_to_ftrace_page(last_pg);
6940 ftrace_update_tot_cnt -= pg->index;
6941 *last_pg = pg->next;
6943 pg->next = tmp_page;
6946 last_pg = &pg->next;
6949 mutex_unlock(&ftrace_lock);
6951 for (pg = tmp_page; pg; pg = tmp_page) {
6953 /* Needs to be called outside of ftrace_lock */
6954 clear_mod_from_hashes(pg);
6957 free_pages((unsigned long)pg->records, pg->order);
6958 ftrace_number_of_pages -= 1 << pg->order;
6960 tmp_page = pg->next;
6962 ftrace_number_of_groups--;
6966 void ftrace_module_enable(struct module *mod)
6968 struct dyn_ftrace *rec;
6969 struct ftrace_page *pg;
6971 mutex_lock(&ftrace_lock);
6973 if (ftrace_disabled)
6977 * If the tracing is enabled, go ahead and enable the record.
6979 * The reason not to enable the record immediately is the
6980 * inherent check of ftrace_make_nop/ftrace_make_call for
6981 * correct previous instructions. Making first the NOP
6982 * conversion puts the module to the correct state, thus
6983 * passing the ftrace_make_call check.
6985 * We also delay this to after the module code already set the
6986 * text to read-only, as we now need to set it back to read-write
6987 * so that we can modify the text.
6989 if (ftrace_start_up)
6990 ftrace_arch_code_modify_prepare();
6992 do_for_each_ftrace_rec(pg, rec) {
6995 * do_for_each_ftrace_rec() is a double loop.
6996 * module text shares the pg. If a record is
6997 * not part of this module, then skip this pg,
6998 * which the "break" will do.
7000 if (!within_module_core(rec->ip, mod) &&
7001 !within_module_init(rec->ip, mod))
7004 /* Weak functions should still be ignored */
7005 if (!test_for_valid_rec(rec)) {
7006 /* Clear all other flags. Should not be enabled anyway */
7007 rec->flags = FTRACE_FL_DISABLED;
7014 * When adding a module, we need to check if tracers are
7015 * currently enabled and if they are, and can trace this record,
7016 * we need to enable the module functions as well as update the
7017 * reference counts for those function records.
7019 if (ftrace_start_up)
7020 cnt += referenced_filters(rec);
7022 rec->flags &= ~FTRACE_FL_DISABLED;
7025 if (ftrace_start_up && cnt) {
7026 int failed = __ftrace_replace_code(rec, 1);
7028 ftrace_bug(failed, rec);
7033 } while_for_each_ftrace_rec();
7036 if (ftrace_start_up)
7037 ftrace_arch_code_modify_post_process();
7040 mutex_unlock(&ftrace_lock);
7042 process_cached_mods(mod->name);
7045 void ftrace_module_init(struct module *mod)
7049 if (ftrace_disabled || !mod->num_ftrace_callsites)
7052 ret = ftrace_process_locs(mod, mod->ftrace_callsites,
7053 mod->ftrace_callsites + mod->num_ftrace_callsites);
7055 pr_warn("ftrace: failed to allocate entries for module '%s' functions\n",
7059 static void save_ftrace_mod_rec(struct ftrace_mod_map *mod_map,
7060 struct dyn_ftrace *rec)
7062 struct ftrace_mod_func *mod_func;
7063 unsigned long symsize;
7064 unsigned long offset;
7065 char str[KSYM_SYMBOL_LEN];
7069 ret = kallsyms_lookup(rec->ip, &symsize, &offset, &modname, str);
7073 mod_func = kmalloc(sizeof(*mod_func), GFP_KERNEL);
7077 mod_func->name = kstrdup(str, GFP_KERNEL);
7078 if (!mod_func->name) {
7083 mod_func->ip = rec->ip - offset;
7084 mod_func->size = symsize;
7086 mod_map->num_funcs++;
7088 list_add_rcu(&mod_func->list, &mod_map->funcs);
7091 static struct ftrace_mod_map *
7092 allocate_ftrace_mod_map(struct module *mod,
7093 unsigned long start, unsigned long end)
7095 struct ftrace_mod_map *mod_map;
7097 mod_map = kmalloc(sizeof(*mod_map), GFP_KERNEL);
7102 mod_map->start_addr = start;
7103 mod_map->end_addr = end;
7104 mod_map->num_funcs = 0;
7106 INIT_LIST_HEAD_RCU(&mod_map->funcs);
7108 list_add_rcu(&mod_map->list, &ftrace_mod_maps);
7114 ftrace_func_address_lookup(struct ftrace_mod_map *mod_map,
7115 unsigned long addr, unsigned long *size,
7116 unsigned long *off, char *sym)
7118 struct ftrace_mod_func *found_func = NULL;
7119 struct ftrace_mod_func *mod_func;
7121 list_for_each_entry_rcu(mod_func, &mod_map->funcs, list) {
7122 if (addr >= mod_func->ip &&
7123 addr < mod_func->ip + mod_func->size) {
7124 found_func = mod_func;
7131 *size = found_func->size;
7133 *off = addr - found_func->ip;
7135 strlcpy(sym, found_func->name, KSYM_NAME_LEN);
7137 return found_func->name;
7144 ftrace_mod_address_lookup(unsigned long addr, unsigned long *size,
7145 unsigned long *off, char **modname, char *sym)
7147 struct ftrace_mod_map *mod_map;
7148 const char *ret = NULL;
7150 /* mod_map is freed via call_rcu() */
7152 list_for_each_entry_rcu(mod_map, &ftrace_mod_maps, list) {
7153 ret = ftrace_func_address_lookup(mod_map, addr, size, off, sym);
7156 *modname = mod_map->mod->name;
7165 int ftrace_mod_get_kallsym(unsigned int symnum, unsigned long *value,
7166 char *type, char *name,
7167 char *module_name, int *exported)
7169 struct ftrace_mod_map *mod_map;
7170 struct ftrace_mod_func *mod_func;
7174 list_for_each_entry_rcu(mod_map, &ftrace_mod_maps, list) {
7176 if (symnum >= mod_map->num_funcs) {
7177 symnum -= mod_map->num_funcs;
7181 list_for_each_entry_rcu(mod_func, &mod_map->funcs, list) {
7187 *value = mod_func->ip;
7189 strlcpy(name, mod_func->name, KSYM_NAME_LEN);
7190 strlcpy(module_name, mod_map->mod->name, MODULE_NAME_LEN);
7198 ret = ftrace_get_trampoline_kallsym(symnum, value, type, name,
7199 module_name, exported);
7205 static void save_ftrace_mod_rec(struct ftrace_mod_map *mod_map,
7206 struct dyn_ftrace *rec) { }
7207 static inline struct ftrace_mod_map *
7208 allocate_ftrace_mod_map(struct module *mod,
7209 unsigned long start, unsigned long end)
7213 int ftrace_mod_get_kallsym(unsigned int symnum, unsigned long *value,
7214 char *type, char *name, char *module_name,
7220 ret = ftrace_get_trampoline_kallsym(symnum, value, type, name,
7221 module_name, exported);
7225 #endif /* CONFIG_MODULES */
7227 struct ftrace_init_func {
7228 struct list_head list;
7232 /* Clear any init ips from hashes */
7234 clear_func_from_hash(struct ftrace_init_func *func, struct ftrace_hash *hash)
7236 struct ftrace_func_entry *entry;
7238 entry = ftrace_lookup_ip(hash, func->ip);
7240 * Do not allow this rec to match again.
7241 * Yeah, it may waste some memory, but will be removed
7242 * if/when the hash is modified again.
7249 clear_func_from_hashes(struct ftrace_init_func *func)
7251 struct trace_array *tr;
7253 mutex_lock(&trace_types_lock);
7254 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
7255 if (!tr->ops || !tr->ops->func_hash)
7257 mutex_lock(&tr->ops->func_hash->regex_lock);
7258 clear_func_from_hash(func, tr->ops->func_hash->filter_hash);
7259 clear_func_from_hash(func, tr->ops->func_hash->notrace_hash);
7260 mutex_unlock(&tr->ops->func_hash->regex_lock);
7262 mutex_unlock(&trace_types_lock);
7265 static void add_to_clear_hash_list(struct list_head *clear_list,
7266 struct dyn_ftrace *rec)
7268 struct ftrace_init_func *func;
7270 func = kmalloc(sizeof(*func), GFP_KERNEL);
7272 MEM_FAIL(1, "alloc failure, ftrace filter could be stale\n");
7277 list_add(&func->list, clear_list);
7280 void ftrace_free_mem(struct module *mod, void *start_ptr, void *end_ptr)
7282 unsigned long start = (unsigned long)(start_ptr);
7283 unsigned long end = (unsigned long)(end_ptr);
7284 struct ftrace_page **last_pg = &ftrace_pages_start;
7285 struct ftrace_page *pg;
7286 struct dyn_ftrace *rec;
7287 struct dyn_ftrace key;
7288 struct ftrace_mod_map *mod_map = NULL;
7289 struct ftrace_init_func *func, *func_next;
7290 struct list_head clear_hash;
7292 INIT_LIST_HEAD(&clear_hash);
7295 key.flags = end; /* overload flags, as it is unsigned long */
7297 mutex_lock(&ftrace_lock);
7300 * If we are freeing module init memory, then check if
7301 * any tracer is active. If so, we need to save a mapping of
7302 * the module functions being freed with the address.
7304 if (mod && ftrace_ops_list != &ftrace_list_end)
7305 mod_map = allocate_ftrace_mod_map(mod, start, end);
7307 for (pg = ftrace_pages_start; pg; last_pg = &pg->next, pg = *last_pg) {
7308 if (end < pg->records[0].ip ||
7309 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
7312 rec = bsearch(&key, pg->records, pg->index,
7313 sizeof(struct dyn_ftrace),
7318 /* rec will be cleared from hashes after ftrace_lock unlock */
7319 add_to_clear_hash_list(&clear_hash, rec);
7322 save_ftrace_mod_rec(mod_map, rec);
7325 ftrace_update_tot_cnt--;
7327 *last_pg = pg->next;
7329 free_pages((unsigned long)pg->records, pg->order);
7330 ftrace_number_of_pages -= 1 << pg->order;
7332 ftrace_number_of_groups--;
7334 pg = container_of(last_pg, struct ftrace_page, next);
7339 memmove(rec, rec + 1,
7340 (pg->index - (rec - pg->records)) * sizeof(*rec));
7341 /* More than one function may be in this block */
7344 mutex_unlock(&ftrace_lock);
7346 list_for_each_entry_safe(func, func_next, &clear_hash, list) {
7347 clear_func_from_hashes(func);
7352 void __init ftrace_free_init_mem(void)
7354 void *start = (void *)(&__init_begin);
7355 void *end = (void *)(&__init_end);
7357 ftrace_boot_snapshot();
7359 ftrace_free_mem(NULL, start, end);
7362 int __init __weak ftrace_dyn_arch_init(void)
7367 void __init ftrace_init(void)
7369 extern unsigned long __start_mcount_loc[];
7370 extern unsigned long __stop_mcount_loc[];
7371 unsigned long count, flags;
7374 local_irq_save(flags);
7375 ret = ftrace_dyn_arch_init();
7376 local_irq_restore(flags);
7380 count = __stop_mcount_loc - __start_mcount_loc;
7382 pr_info("ftrace: No functions to be traced?\n");
7386 pr_info("ftrace: allocating %ld entries in %ld pages\n",
7387 count, count / ENTRIES_PER_PAGE + 1);
7389 ret = ftrace_process_locs(NULL,
7393 pr_warn("ftrace: failed to allocate entries for functions\n");
7397 pr_info("ftrace: allocated %ld pages with %ld groups\n",
7398 ftrace_number_of_pages, ftrace_number_of_groups);
7400 last_ftrace_enabled = ftrace_enabled = 1;
7402 set_ftrace_early_filters();
7406 ftrace_disabled = 1;
7409 /* Do nothing if arch does not support this */
7410 void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
7414 static void ftrace_update_trampoline(struct ftrace_ops *ops)
7416 unsigned long trampoline = ops->trampoline;
7418 arch_ftrace_update_trampoline(ops);
7419 if (ops->trampoline && ops->trampoline != trampoline &&
7420 (ops->flags & FTRACE_OPS_FL_ALLOC_TRAMP)) {
7421 /* Add to kallsyms before the perf events */
7422 ftrace_add_trampoline_to_kallsyms(ops);
7423 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_OOL,
7424 ops->trampoline, ops->trampoline_size, false,
7425 FTRACE_TRAMPOLINE_SYM);
7427 * Record the perf text poke event after the ksymbol register
7430 perf_event_text_poke((void *)ops->trampoline, NULL, 0,
7431 (void *)ops->trampoline,
7432 ops->trampoline_size);
7436 void ftrace_init_trace_array(struct trace_array *tr)
7438 INIT_LIST_HEAD(&tr->func_probes);
7439 INIT_LIST_HEAD(&tr->mod_trace);
7440 INIT_LIST_HEAD(&tr->mod_notrace);
7444 struct ftrace_ops global_ops = {
7445 .func = ftrace_stub,
7446 .flags = FTRACE_OPS_FL_INITIALIZED |
7450 static int __init ftrace_nodyn_init(void)
7455 core_initcall(ftrace_nodyn_init);
7457 static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; }
7458 static inline void ftrace_startup_all(int command) { }
7460 static void ftrace_update_trampoline(struct ftrace_ops *ops)
7464 #endif /* CONFIG_DYNAMIC_FTRACE */
7466 __init void ftrace_init_global_array_ops(struct trace_array *tr)
7468 tr->ops = &global_ops;
7469 tr->ops->private = tr;
7470 ftrace_init_trace_array(tr);
7473 void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
7475 /* If we filter on pids, update to use the pid function */
7476 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
7477 if (WARN_ON(tr->ops->func != ftrace_stub))
7478 printk("ftrace ops had %pS for function\n",
7481 tr->ops->func = func;
7482 tr->ops->private = tr;
7485 void ftrace_reset_array_ops(struct trace_array *tr)
7487 tr->ops->func = ftrace_stub;
7490 static nokprobe_inline void
7491 __ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
7492 struct ftrace_ops *ignored, struct ftrace_regs *fregs)
7494 struct pt_regs *regs = ftrace_get_regs(fregs);
7495 struct ftrace_ops *op;
7499 * The ftrace_test_and_set_recursion() will disable preemption,
7500 * which is required since some of the ops may be dynamically
7501 * allocated, they must be freed after a synchronize_rcu().
7503 bit = trace_test_and_set_recursion(ip, parent_ip, TRACE_LIST_START);
7507 do_for_each_ftrace_op(op, ftrace_ops_list) {
7508 /* Stub functions don't need to be called nor tested */
7509 if (op->flags & FTRACE_OPS_FL_STUB)
7512 * Check the following for each ops before calling their func:
7513 * if RCU flag is set, then rcu_is_watching() must be true
7514 * if PER_CPU is set, then ftrace_function_local_disable()
7516 * Otherwise test if the ip matches the ops filter
7518 * If any of the above fails then the op->func() is not executed.
7520 if ((!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching()) &&
7521 ftrace_ops_test(op, ip, regs)) {
7522 if (FTRACE_WARN_ON(!op->func)) {
7523 pr_warn("op=%p %pS\n", op, op);
7526 op->func(ip, parent_ip, op, fregs);
7528 } while_for_each_ftrace_op(op);
7530 trace_clear_recursion(bit);
7534 * Some archs only support passing ip and parent_ip. Even though
7535 * the list function ignores the op parameter, we do not want any
7536 * C side effects, where a function is called without the caller
7537 * sending a third parameter.
7538 * Archs are to support both the regs and ftrace_ops at the same time.
7539 * If they support ftrace_ops, it is assumed they support regs.
7540 * If call backs want to use regs, they must either check for regs
7541 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
7542 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
7543 * An architecture can pass partial regs with ftrace_ops and still
7544 * set the ARCH_SUPPORTS_FTRACE_OPS.
7546 * In vmlinux.lds.h, ftrace_ops_list_func() is defined to be
7547 * arch_ftrace_ops_list_func.
7549 #if ARCH_SUPPORTS_FTRACE_OPS
7550 void arch_ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
7551 struct ftrace_ops *op, struct ftrace_regs *fregs)
7553 __ftrace_ops_list_func(ip, parent_ip, NULL, fregs);
7556 void arch_ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip)
7558 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
7561 NOKPROBE_SYMBOL(arch_ftrace_ops_list_func);
7564 * If there's only one function registered but it does not support
7565 * recursion, needs RCU protection and/or requires per cpu handling, then
7566 * this function will be called by the mcount trampoline.
7568 static void ftrace_ops_assist_func(unsigned long ip, unsigned long parent_ip,
7569 struct ftrace_ops *op, struct ftrace_regs *fregs)
7573 bit = trace_test_and_set_recursion(ip, parent_ip, TRACE_LIST_START);
7577 if (!(op->flags & FTRACE_OPS_FL_RCU) || rcu_is_watching())
7578 op->func(ip, parent_ip, op, fregs);
7580 trace_clear_recursion(bit);
7582 NOKPROBE_SYMBOL(ftrace_ops_assist_func);
7585 * ftrace_ops_get_func - get the function a trampoline should call
7586 * @ops: the ops to get the function for
7588 * Normally the mcount trampoline will call the ops->func, but there
7589 * are times that it should not. For example, if the ops does not
7590 * have its own recursion protection, then it should call the
7591 * ftrace_ops_assist_func() instead.
7593 * Returns the function that the trampoline should call for @ops.
7595 ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
7598 * If the function does not handle recursion or needs to be RCU safe,
7599 * then we need to call the assist handler.
7601 if (ops->flags & (FTRACE_OPS_FL_RECURSION |
7603 return ftrace_ops_assist_func;
7609 ftrace_filter_pid_sched_switch_probe(void *data, bool preempt,
7610 struct task_struct *prev,
7611 struct task_struct *next,
7612 unsigned int prev_state)
7614 struct trace_array *tr = data;
7615 struct trace_pid_list *pid_list;
7616 struct trace_pid_list *no_pid_list;
7618 pid_list = rcu_dereference_sched(tr->function_pids);
7619 no_pid_list = rcu_dereference_sched(tr->function_no_pids);
7621 if (trace_ignore_this_task(pid_list, no_pid_list, next))
7622 this_cpu_write(tr->array_buffer.data->ftrace_ignore_pid,
7625 this_cpu_write(tr->array_buffer.data->ftrace_ignore_pid,
7630 ftrace_pid_follow_sched_process_fork(void *data,
7631 struct task_struct *self,
7632 struct task_struct *task)
7634 struct trace_pid_list *pid_list;
7635 struct trace_array *tr = data;
7637 pid_list = rcu_dereference_sched(tr->function_pids);
7638 trace_filter_add_remove_task(pid_list, self, task);
7640 pid_list = rcu_dereference_sched(tr->function_no_pids);
7641 trace_filter_add_remove_task(pid_list, self, task);
7645 ftrace_pid_follow_sched_process_exit(void *data, struct task_struct *task)
7647 struct trace_pid_list *pid_list;
7648 struct trace_array *tr = data;
7650 pid_list = rcu_dereference_sched(tr->function_pids);
7651 trace_filter_add_remove_task(pid_list, NULL, task);
7653 pid_list = rcu_dereference_sched(tr->function_no_pids);
7654 trace_filter_add_remove_task(pid_list, NULL, task);
7657 void ftrace_pid_follow_fork(struct trace_array *tr, bool enable)
7660 register_trace_sched_process_fork(ftrace_pid_follow_sched_process_fork,
7662 register_trace_sched_process_free(ftrace_pid_follow_sched_process_exit,
7665 unregister_trace_sched_process_fork(ftrace_pid_follow_sched_process_fork,
7667 unregister_trace_sched_process_free(ftrace_pid_follow_sched_process_exit,
7672 static void clear_ftrace_pids(struct trace_array *tr, int type)
7674 struct trace_pid_list *pid_list;
7675 struct trace_pid_list *no_pid_list;
7678 pid_list = rcu_dereference_protected(tr->function_pids,
7679 lockdep_is_held(&ftrace_lock));
7680 no_pid_list = rcu_dereference_protected(tr->function_no_pids,
7681 lockdep_is_held(&ftrace_lock));
7683 /* Make sure there's something to do */
7684 if (!pid_type_enabled(type, pid_list, no_pid_list))
7687 /* See if the pids still need to be checked after this */
7688 if (!still_need_pid_events(type, pid_list, no_pid_list)) {
7689 unregister_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
7690 for_each_possible_cpu(cpu)
7691 per_cpu_ptr(tr->array_buffer.data, cpu)->ftrace_ignore_pid = FTRACE_PID_TRACE;
7694 if (type & TRACE_PIDS)
7695 rcu_assign_pointer(tr->function_pids, NULL);
7697 if (type & TRACE_NO_PIDS)
7698 rcu_assign_pointer(tr->function_no_pids, NULL);
7700 /* Wait till all users are no longer using pid filtering */
7703 if ((type & TRACE_PIDS) && pid_list)
7704 trace_pid_list_free(pid_list);
7706 if ((type & TRACE_NO_PIDS) && no_pid_list)
7707 trace_pid_list_free(no_pid_list);
7710 void ftrace_clear_pids(struct trace_array *tr)
7712 mutex_lock(&ftrace_lock);
7714 clear_ftrace_pids(tr, TRACE_PIDS | TRACE_NO_PIDS);
7716 mutex_unlock(&ftrace_lock);
7719 static void ftrace_pid_reset(struct trace_array *tr, int type)
7721 mutex_lock(&ftrace_lock);
7722 clear_ftrace_pids(tr, type);
7724 ftrace_update_pid_func();
7725 ftrace_startup_all(0);
7727 mutex_unlock(&ftrace_lock);
7730 /* Greater than any max PID */
7731 #define FTRACE_NO_PIDS (void *)(PID_MAX_LIMIT + 1)
7733 static void *fpid_start(struct seq_file *m, loff_t *pos)
7736 struct trace_pid_list *pid_list;
7737 struct trace_array *tr = m->private;
7739 mutex_lock(&ftrace_lock);
7740 rcu_read_lock_sched();
7742 pid_list = rcu_dereference_sched(tr->function_pids);
7745 return !(*pos) ? FTRACE_NO_PIDS : NULL;
7747 return trace_pid_start(pid_list, pos);
7750 static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
7752 struct trace_array *tr = m->private;
7753 struct trace_pid_list *pid_list = rcu_dereference_sched(tr->function_pids);
7755 if (v == FTRACE_NO_PIDS) {
7759 return trace_pid_next(pid_list, v, pos);
7762 static void fpid_stop(struct seq_file *m, void *p)
7765 rcu_read_unlock_sched();
7766 mutex_unlock(&ftrace_lock);
7769 static int fpid_show(struct seq_file *m, void *v)
7771 if (v == FTRACE_NO_PIDS) {
7772 seq_puts(m, "no pid\n");
7776 return trace_pid_show(m, v);
7779 static const struct seq_operations ftrace_pid_sops = {
7780 .start = fpid_start,
7786 static void *fnpid_start(struct seq_file *m, loff_t *pos)
7789 struct trace_pid_list *pid_list;
7790 struct trace_array *tr = m->private;
7792 mutex_lock(&ftrace_lock);
7793 rcu_read_lock_sched();
7795 pid_list = rcu_dereference_sched(tr->function_no_pids);
7798 return !(*pos) ? FTRACE_NO_PIDS : NULL;
7800 return trace_pid_start(pid_list, pos);
7803 static void *fnpid_next(struct seq_file *m, void *v, loff_t *pos)
7805 struct trace_array *tr = m->private;
7806 struct trace_pid_list *pid_list = rcu_dereference_sched(tr->function_no_pids);
7808 if (v == FTRACE_NO_PIDS) {
7812 return trace_pid_next(pid_list, v, pos);
7815 static const struct seq_operations ftrace_no_pid_sops = {
7816 .start = fnpid_start,
7822 static int pid_open(struct inode *inode, struct file *file, int type)
7824 const struct seq_operations *seq_ops;
7825 struct trace_array *tr = inode->i_private;
7829 ret = tracing_check_open_get_tr(tr);
7833 if ((file->f_mode & FMODE_WRITE) &&
7834 (file->f_flags & O_TRUNC))
7835 ftrace_pid_reset(tr, type);
7839 seq_ops = &ftrace_pid_sops;
7842 seq_ops = &ftrace_no_pid_sops;
7845 trace_array_put(tr);
7850 ret = seq_open(file, seq_ops);
7852 trace_array_put(tr);
7854 m = file->private_data;
7855 /* copy tr over to seq ops */
7863 ftrace_pid_open(struct inode *inode, struct file *file)
7865 return pid_open(inode, file, TRACE_PIDS);
7869 ftrace_no_pid_open(struct inode *inode, struct file *file)
7871 return pid_open(inode, file, TRACE_NO_PIDS);
7874 static void ignore_task_cpu(void *data)
7876 struct trace_array *tr = data;
7877 struct trace_pid_list *pid_list;
7878 struct trace_pid_list *no_pid_list;
7881 * This function is called by on_each_cpu() while the
7882 * event_mutex is held.
7884 pid_list = rcu_dereference_protected(tr->function_pids,
7885 mutex_is_locked(&ftrace_lock));
7886 no_pid_list = rcu_dereference_protected(tr->function_no_pids,
7887 mutex_is_locked(&ftrace_lock));
7889 if (trace_ignore_this_task(pid_list, no_pid_list, current))
7890 this_cpu_write(tr->array_buffer.data->ftrace_ignore_pid,
7893 this_cpu_write(tr->array_buffer.data->ftrace_ignore_pid,
7898 pid_write(struct file *filp, const char __user *ubuf,
7899 size_t cnt, loff_t *ppos, int type)
7901 struct seq_file *m = filp->private_data;
7902 struct trace_array *tr = m->private;
7903 struct trace_pid_list *filtered_pids;
7904 struct trace_pid_list *other_pids;
7905 struct trace_pid_list *pid_list;
7911 mutex_lock(&ftrace_lock);
7915 filtered_pids = rcu_dereference_protected(tr->function_pids,
7916 lockdep_is_held(&ftrace_lock));
7917 other_pids = rcu_dereference_protected(tr->function_no_pids,
7918 lockdep_is_held(&ftrace_lock));
7921 filtered_pids = rcu_dereference_protected(tr->function_no_pids,
7922 lockdep_is_held(&ftrace_lock));
7923 other_pids = rcu_dereference_protected(tr->function_pids,
7924 lockdep_is_held(&ftrace_lock));
7932 ret = trace_pid_write(filtered_pids, &pid_list, ubuf, cnt);
7938 rcu_assign_pointer(tr->function_pids, pid_list);
7941 rcu_assign_pointer(tr->function_no_pids, pid_list);
7946 if (filtered_pids) {
7948 trace_pid_list_free(filtered_pids);
7949 } else if (pid_list && !other_pids) {
7950 /* Register a probe to set whether to ignore the tracing of a task */
7951 register_trace_sched_switch(ftrace_filter_pid_sched_switch_probe, tr);
7955 * Ignoring of pids is done at task switch. But we have to
7956 * check for those tasks that are currently running.
7957 * Always do this in case a pid was appended or removed.
7959 on_each_cpu(ignore_task_cpu, tr, 1);
7961 ftrace_update_pid_func();
7962 ftrace_startup_all(0);
7964 mutex_unlock(&ftrace_lock);
7973 ftrace_pid_write(struct file *filp, const char __user *ubuf,
7974 size_t cnt, loff_t *ppos)
7976 return pid_write(filp, ubuf, cnt, ppos, TRACE_PIDS);
7980 ftrace_no_pid_write(struct file *filp, const char __user *ubuf,
7981 size_t cnt, loff_t *ppos)
7983 return pid_write(filp, ubuf, cnt, ppos, TRACE_NO_PIDS);
7987 ftrace_pid_release(struct inode *inode, struct file *file)
7989 struct trace_array *tr = inode->i_private;
7991 trace_array_put(tr);
7993 return seq_release(inode, file);
7996 static const struct file_operations ftrace_pid_fops = {
7997 .open = ftrace_pid_open,
7998 .write = ftrace_pid_write,
8000 .llseek = tracing_lseek,
8001 .release = ftrace_pid_release,
8004 static const struct file_operations ftrace_no_pid_fops = {
8005 .open = ftrace_no_pid_open,
8006 .write = ftrace_no_pid_write,
8008 .llseek = tracing_lseek,
8009 .release = ftrace_pid_release,
8012 void ftrace_init_tracefs(struct trace_array *tr, struct dentry *d_tracer)
8014 trace_create_file("set_ftrace_pid", TRACE_MODE_WRITE, d_tracer,
8015 tr, &ftrace_pid_fops);
8016 trace_create_file("set_ftrace_notrace_pid", TRACE_MODE_WRITE,
8017 d_tracer, tr, &ftrace_no_pid_fops);
8020 void __init ftrace_init_tracefs_toplevel(struct trace_array *tr,
8021 struct dentry *d_tracer)
8023 /* Only the top level directory has the dyn_tracefs and profile */
8024 WARN_ON(!(tr->flags & TRACE_ARRAY_FL_GLOBAL));
8026 ftrace_init_dyn_tracefs(d_tracer);
8027 ftrace_profile_tracefs(d_tracer);
8031 * ftrace_kill - kill ftrace
8033 * This function should be used by panic code. It stops ftrace
8034 * but in a not so nice way. If you need to simply kill ftrace
8035 * from a non-atomic section, use ftrace_kill.
8037 void ftrace_kill(void)
8039 ftrace_disabled = 1;
8041 ftrace_trace_function = ftrace_stub;
8045 * ftrace_is_dead - Test if ftrace is dead or not.
8047 * Returns 1 if ftrace is "dead", zero otherwise.
8049 int ftrace_is_dead(void)
8051 return ftrace_disabled;
8054 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS
8056 * When registering ftrace_ops with IPMODIFY, it is necessary to make sure
8057 * it doesn't conflict with any direct ftrace_ops. If there is existing
8058 * direct ftrace_ops on a kernel function being patched, call
8059 * FTRACE_OPS_CMD_ENABLE_SHARE_IPMODIFY_PEER on it to enable sharing.
8061 * @ops: ftrace_ops being registered.
8065 * Negative on failure.
8067 static int prepare_direct_functions_for_ipmodify(struct ftrace_ops *ops)
8069 struct ftrace_func_entry *entry;
8070 struct ftrace_hash *hash;
8071 struct ftrace_ops *op;
8074 lockdep_assert_held_once(&direct_mutex);
8076 if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY))
8079 hash = ops->func_hash->filter_hash;
8080 size = 1 << hash->size_bits;
8081 for (i = 0; i < size; i++) {
8082 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
8083 unsigned long ip = entry->ip;
8084 bool found_op = false;
8086 mutex_lock(&ftrace_lock);
8087 do_for_each_ftrace_op(op, ftrace_ops_list) {
8088 if (!(op->flags & FTRACE_OPS_FL_DIRECT))
8090 if (ops_references_ip(op, ip)) {
8094 } while_for_each_ftrace_op(op);
8095 mutex_unlock(&ftrace_lock);
8101 ret = op->ops_func(op, FTRACE_OPS_CMD_ENABLE_SHARE_IPMODIFY_PEER);
8112 * Similar to prepare_direct_functions_for_ipmodify, clean up after ops
8113 * with IPMODIFY is unregistered. The cleanup is optional for most DIRECT
8116 static void cleanup_direct_functions_after_ipmodify(struct ftrace_ops *ops)
8118 struct ftrace_func_entry *entry;
8119 struct ftrace_hash *hash;
8120 struct ftrace_ops *op;
8123 if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY))
8126 mutex_lock(&direct_mutex);
8128 hash = ops->func_hash->filter_hash;
8129 size = 1 << hash->size_bits;
8130 for (i = 0; i < size; i++) {
8131 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
8132 unsigned long ip = entry->ip;
8133 bool found_op = false;
8135 mutex_lock(&ftrace_lock);
8136 do_for_each_ftrace_op(op, ftrace_ops_list) {
8137 if (!(op->flags & FTRACE_OPS_FL_DIRECT))
8139 if (ops_references_ip(op, ip)) {
8143 } while_for_each_ftrace_op(op);
8144 mutex_unlock(&ftrace_lock);
8146 /* The cleanup is optional, ignore any errors */
8147 if (found_op && op->ops_func)
8148 op->ops_func(op, FTRACE_OPS_CMD_DISABLE_SHARE_IPMODIFY_PEER);
8151 mutex_unlock(&direct_mutex);
8154 #define lock_direct_mutex() mutex_lock(&direct_mutex)
8155 #define unlock_direct_mutex() mutex_unlock(&direct_mutex)
8157 #else /* CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS */
8159 static int prepare_direct_functions_for_ipmodify(struct ftrace_ops *ops)
8164 static void cleanup_direct_functions_after_ipmodify(struct ftrace_ops *ops)
8168 #define lock_direct_mutex() do { } while (0)
8169 #define unlock_direct_mutex() do { } while (0)
8171 #endif /* CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS */
8174 * Similar to register_ftrace_function, except we don't lock direct_mutex.
8176 static int register_ftrace_function_nolock(struct ftrace_ops *ops)
8180 ftrace_ops_init(ops);
8182 mutex_lock(&ftrace_lock);
8184 ret = ftrace_startup(ops, 0);
8186 mutex_unlock(&ftrace_lock);
8192 * register_ftrace_function - register a function for profiling
8193 * @ops: ops structure that holds the function for profiling.
8195 * Register a function to be called by all functions in the
8198 * Note: @ops->func and all the functions it calls must be labeled
8199 * with "notrace", otherwise it will go into a
8202 int register_ftrace_function(struct ftrace_ops *ops)
8206 lock_direct_mutex();
8207 ret = prepare_direct_functions_for_ipmodify(ops);
8211 ret = register_ftrace_function_nolock(ops);
8214 unlock_direct_mutex();
8217 EXPORT_SYMBOL_GPL(register_ftrace_function);
8220 * unregister_ftrace_function - unregister a function for profiling.
8221 * @ops: ops structure that holds the function to unregister
8223 * Unregister a function that was added to be called by ftrace profiling.
8225 int unregister_ftrace_function(struct ftrace_ops *ops)
8229 mutex_lock(&ftrace_lock);
8230 ret = ftrace_shutdown(ops, 0);
8231 mutex_unlock(&ftrace_lock);
8233 cleanup_direct_functions_after_ipmodify(ops);
8236 EXPORT_SYMBOL_GPL(unregister_ftrace_function);
8238 static int symbols_cmp(const void *a, const void *b)
8240 const char **str_a = (const char **) a;
8241 const char **str_b = (const char **) b;
8243 return strcmp(*str_a, *str_b);
8246 struct kallsyms_data {
8247 unsigned long *addrs;
8253 static int kallsyms_callback(void *data, const char *name,
8254 struct module *mod, unsigned long addr)
8256 struct kallsyms_data *args = data;
8260 sym = bsearch(&name, args->syms, args->cnt, sizeof(*args->syms), symbols_cmp);
8264 idx = sym - args->syms;
8265 if (args->addrs[idx])
8268 if (!ftrace_location(addr))
8271 args->addrs[idx] = addr;
8273 return args->found == args->cnt ? 1 : 0;
8277 * ftrace_lookup_symbols - Lookup addresses for array of symbols
8279 * @sorted_syms: array of symbols pointers symbols to resolve,
8280 * must be alphabetically sorted
8281 * @cnt: number of symbols/addresses in @syms/@addrs arrays
8282 * @addrs: array for storing resulting addresses
8284 * This function looks up addresses for array of symbols provided in
8285 * @syms array (must be alphabetically sorted) and stores them in
8286 * @addrs array, which needs to be big enough to store at least @cnt
8289 * This function returns 0 if all provided symbols are found,
8292 int ftrace_lookup_symbols(const char **sorted_syms, size_t cnt, unsigned long *addrs)
8294 struct kallsyms_data args;
8297 memset(addrs, 0, sizeof(*addrs) * cnt);
8299 args.syms = sorted_syms;
8302 err = kallsyms_on_each_symbol(kallsyms_callback, &args);
8305 return args.found == args.cnt ? 0 : -ESRCH;
8308 #ifdef CONFIG_SYSCTL
8310 #ifdef CONFIG_DYNAMIC_FTRACE
8311 static void ftrace_startup_sysctl(void)
8315 if (unlikely(ftrace_disabled))
8318 /* Force update next time */
8319 saved_ftrace_func = NULL;
8320 /* ftrace_start_up is true if we want ftrace running */
8321 if (ftrace_start_up) {
8322 command = FTRACE_UPDATE_CALLS;
8323 if (ftrace_graph_active)
8324 command |= FTRACE_START_FUNC_RET;
8325 ftrace_startup_enable(command);
8329 static void ftrace_shutdown_sysctl(void)
8333 if (unlikely(ftrace_disabled))
8336 /* ftrace_start_up is true if ftrace is running */
8337 if (ftrace_start_up) {
8338 command = FTRACE_DISABLE_CALLS;
8339 if (ftrace_graph_active)
8340 command |= FTRACE_STOP_FUNC_RET;
8341 ftrace_run_update_code(command);
8345 # define ftrace_startup_sysctl() do { } while (0)
8346 # define ftrace_shutdown_sysctl() do { } while (0)
8347 #endif /* CONFIG_DYNAMIC_FTRACE */
8349 static bool is_permanent_ops_registered(void)
8351 struct ftrace_ops *op;
8353 do_for_each_ftrace_op(op, ftrace_ops_list) {
8354 if (op->flags & FTRACE_OPS_FL_PERMANENT)
8356 } while_for_each_ftrace_op(op);
8362 ftrace_enable_sysctl(struct ctl_table *table, int write,
8363 void *buffer, size_t *lenp, loff_t *ppos)
8367 mutex_lock(&ftrace_lock);
8369 if (unlikely(ftrace_disabled))
8372 ret = proc_dointvec(table, write, buffer, lenp, ppos);
8374 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
8377 if (ftrace_enabled) {
8379 /* we are starting ftrace again */
8380 if (rcu_dereference_protected(ftrace_ops_list,
8381 lockdep_is_held(&ftrace_lock)) != &ftrace_list_end)
8382 update_ftrace_function();
8384 ftrace_startup_sysctl();
8387 if (is_permanent_ops_registered()) {
8388 ftrace_enabled = true;
8393 /* stopping ftrace calls (just send to ftrace_stub) */
8394 ftrace_trace_function = ftrace_stub;
8396 ftrace_shutdown_sysctl();
8399 last_ftrace_enabled = !!ftrace_enabled;
8401 mutex_unlock(&ftrace_lock);
8405 static struct ctl_table ftrace_sysctls[] = {
8407 .procname = "ftrace_enabled",
8408 .data = &ftrace_enabled,
8409 .maxlen = sizeof(int),
8411 .proc_handler = ftrace_enable_sysctl,
8416 static int __init ftrace_sysctl_init(void)
8418 register_sysctl_init("kernel", ftrace_sysctls);
8421 late_initcall(ftrace_sysctl_init);