2 * Infrastructure for profiling code inserted by 'gcc -pg'.
7 * Originally ported from the -rt patch by:
10 * Based on code in the latency_tracer, that is:
12 * Copyright (C) 2004-2006 Ingo Molnar
13 * Copyright (C) 2004 William Lee Irwin III
16 #include <linux/stop_machine.h>
17 #include <linux/clocksource.h>
18 #include <linux/kallsyms.h>
19 #include <linux/seq_file.h>
20 #include <linux/suspend.h>
21 #include <linux/debugfs.h>
22 #include <linux/hardirq.h>
23 #include <linux/kthread.h>
24 #include <linux/uaccess.h>
25 #include <linux/ftrace.h>
26 #include <linux/sysctl.h>
27 #include <linux/slab.h>
28 #include <linux/ctype.h>
29 #include <linux/list.h>
30 #include <linux/hash.h>
31 #include <linux/rcupdate.h>
33 #include <trace/events/sched.h>
35 #include <asm/ftrace.h>
36 #include <asm/setup.h>
38 #include "trace_output.h"
39 #include "trace_stat.h"
41 #define FTRACE_WARN_ON(cond) \
47 #define FTRACE_WARN_ON_ONCE(cond) \
49 if (WARN_ON_ONCE(cond)) \
53 /* hash bits for specific function selection */
54 #define FTRACE_HASH_BITS 7
55 #define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
57 /* ftrace_enabled is a method to turn ftrace on or off */
58 int ftrace_enabled __read_mostly;
59 static int last_ftrace_enabled;
61 /* Quick disabling of function tracer. */
62 int function_trace_stop;
64 /* List for set_ftrace_pid's pids. */
65 LIST_HEAD(ftrace_pids);
67 struct list_head list;
72 * ftrace_disabled is set when an anomaly is discovered.
73 * ftrace_disabled is much stronger than ftrace_enabled.
75 static int ftrace_disabled __read_mostly;
77 static DEFINE_MUTEX(ftrace_lock);
79 static struct ftrace_ops ftrace_list_end __read_mostly =
84 static struct ftrace_ops *ftrace_list __read_mostly = &ftrace_list_end;
85 ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
86 ftrace_func_t __ftrace_trace_function __read_mostly = ftrace_stub;
87 ftrace_func_t ftrace_pid_function __read_mostly = ftrace_stub;
90 * Traverse the ftrace_list, invoking all entries. The reason that we
91 * can use rcu_dereference_raw() is that elements removed from this list
92 * are simply leaked, so there is no need to interact with a grace-period
93 * mechanism. The rcu_dereference_raw() calls are needed to handle
94 * concurrent insertions into the ftrace_list.
96 * Silly Alpha and silly pointer-speculation compiler optimizations!
98 static void ftrace_list_func(unsigned long ip, unsigned long parent_ip)
100 struct ftrace_ops *op = rcu_dereference_raw(ftrace_list); /*see above*/
102 while (op != &ftrace_list_end) {
103 op->func(ip, parent_ip);
104 op = rcu_dereference_raw(op->next); /*see above*/
108 static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip)
110 if (!test_tsk_trace_trace(current))
113 ftrace_pid_function(ip, parent_ip);
116 static void set_ftrace_pid_function(ftrace_func_t func)
118 /* do not set ftrace_pid_function to itself! */
119 if (func != ftrace_pid_func)
120 ftrace_pid_function = func;
124 * clear_ftrace_function - reset the ftrace function
126 * This NULLs the ftrace function and in essence stops
127 * tracing. There may be lag
129 void clear_ftrace_function(void)
131 ftrace_trace_function = ftrace_stub;
132 __ftrace_trace_function = ftrace_stub;
133 ftrace_pid_function = ftrace_stub;
136 #ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
138 * For those archs that do not test ftrace_trace_stop in their
139 * mcount call site, we need to do it from C.
141 static void ftrace_test_stop_func(unsigned long ip, unsigned long parent_ip)
143 if (function_trace_stop)
146 __ftrace_trace_function(ip, parent_ip);
150 static int __register_ftrace_function(struct ftrace_ops *ops)
152 ops->next = ftrace_list;
154 * We are entering ops into the ftrace_list but another
155 * CPU might be walking that list. We need to make sure
156 * the ops->next pointer is valid before another CPU sees
157 * the ops pointer included into the ftrace_list.
159 rcu_assign_pointer(ftrace_list, ops);
161 if (ftrace_enabled) {
164 if (ops->next == &ftrace_list_end)
167 func = ftrace_list_func;
169 if (!list_empty(&ftrace_pids)) {
170 set_ftrace_pid_function(func);
171 func = ftrace_pid_func;
175 * For one func, simply call it directly.
176 * For more than one func, call the chain.
178 #ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
179 ftrace_trace_function = func;
181 __ftrace_trace_function = func;
182 ftrace_trace_function = ftrace_test_stop_func;
189 static int __unregister_ftrace_function(struct ftrace_ops *ops)
191 struct ftrace_ops **p;
194 * If we are removing the last function, then simply point
195 * to the ftrace_stub.
197 if (ftrace_list == ops && ops->next == &ftrace_list_end) {
198 ftrace_trace_function = ftrace_stub;
199 ftrace_list = &ftrace_list_end;
203 for (p = &ftrace_list; *p != &ftrace_list_end; p = &(*p)->next)
212 if (ftrace_enabled) {
213 /* If we only have one func left, then call that directly */
214 if (ftrace_list->next == &ftrace_list_end) {
215 ftrace_func_t func = ftrace_list->func;
217 if (!list_empty(&ftrace_pids)) {
218 set_ftrace_pid_function(func);
219 func = ftrace_pid_func;
221 #ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
222 ftrace_trace_function = func;
224 __ftrace_trace_function = func;
232 static void ftrace_update_pid_func(void)
236 if (ftrace_trace_function == ftrace_stub)
239 #ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
240 func = ftrace_trace_function;
242 func = __ftrace_trace_function;
245 if (!list_empty(&ftrace_pids)) {
246 set_ftrace_pid_function(func);
247 func = ftrace_pid_func;
249 if (func == ftrace_pid_func)
250 func = ftrace_pid_function;
253 #ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
254 ftrace_trace_function = func;
256 __ftrace_trace_function = func;
260 #ifdef CONFIG_FUNCTION_PROFILER
261 struct ftrace_profile {
262 struct hlist_node node;
264 unsigned long counter;
265 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
266 unsigned long long time;
267 unsigned long long time_squared;
271 struct ftrace_profile_page {
272 struct ftrace_profile_page *next;
274 struct ftrace_profile records[];
277 struct ftrace_profile_stat {
279 struct hlist_head *hash;
280 struct ftrace_profile_page *pages;
281 struct ftrace_profile_page *start;
282 struct tracer_stat stat;
285 #define PROFILE_RECORDS_SIZE \
286 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
288 #define PROFILES_PER_PAGE \
289 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
291 static int ftrace_profile_bits __read_mostly;
292 static int ftrace_profile_enabled __read_mostly;
294 /* ftrace_profile_lock - synchronize the enable and disable of the profiler */
295 static DEFINE_MUTEX(ftrace_profile_lock);
297 static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
299 #define FTRACE_PROFILE_HASH_SIZE 1024 /* must be power of 2 */
302 function_stat_next(void *v, int idx)
304 struct ftrace_profile *rec = v;
305 struct ftrace_profile_page *pg;
307 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
313 if ((void *)rec >= (void *)&pg->records[pg->index]) {
317 rec = &pg->records[0];
325 static void *function_stat_start(struct tracer_stat *trace)
327 struct ftrace_profile_stat *stat =
328 container_of(trace, struct ftrace_profile_stat, stat);
330 if (!stat || !stat->start)
333 return function_stat_next(&stat->start->records[0], 0);
336 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
337 /* function graph compares on total time */
338 static int function_stat_cmp(void *p1, void *p2)
340 struct ftrace_profile *a = p1;
341 struct ftrace_profile *b = p2;
343 if (a->time < b->time)
345 if (a->time > b->time)
351 /* not function graph compares against hits */
352 static int function_stat_cmp(void *p1, void *p2)
354 struct ftrace_profile *a = p1;
355 struct ftrace_profile *b = p2;
357 if (a->counter < b->counter)
359 if (a->counter > b->counter)
366 static int function_stat_headers(struct seq_file *m)
368 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
369 seq_printf(m, " Function "
372 "--- ---- --- ---\n");
374 seq_printf(m, " Function Hit\n"
380 static int function_stat_show(struct seq_file *m, void *v)
382 struct ftrace_profile *rec = v;
383 char str[KSYM_SYMBOL_LEN];
385 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
386 static struct trace_seq s;
387 unsigned long long avg;
388 unsigned long long stddev;
390 mutex_lock(&ftrace_profile_lock);
392 /* we raced with function_profile_reset() */
393 if (unlikely(rec->counter == 0)) {
398 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
399 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
401 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
404 do_div(avg, rec->counter);
406 /* Sample standard deviation (s^2) */
407 if (rec->counter <= 1)
410 stddev = rec->time_squared - rec->counter * avg * avg;
412 * Divide only 1000 for ns^2 -> us^2 conversion.
413 * trace_print_graph_duration will divide 1000 again.
415 do_div(stddev, (rec->counter - 1) * 1000);
419 trace_print_graph_duration(rec->time, &s);
420 trace_seq_puts(&s, " ");
421 trace_print_graph_duration(avg, &s);
422 trace_seq_puts(&s, " ");
423 trace_print_graph_duration(stddev, &s);
424 trace_print_seq(m, &s);
428 mutex_unlock(&ftrace_profile_lock);
433 static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
435 struct ftrace_profile_page *pg;
437 pg = stat->pages = stat->start;
440 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
445 memset(stat->hash, 0,
446 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
449 int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
451 struct ftrace_profile_page *pg;
456 /* If we already allocated, do nothing */
460 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
464 #ifdef CONFIG_DYNAMIC_FTRACE
465 functions = ftrace_update_tot_cnt;
468 * We do not know the number of functions that exist because
469 * dynamic tracing is what counts them. With past experience
470 * we have around 20K functions. That should be more than enough.
471 * It is highly unlikely we will execute every function in
477 pg = stat->start = stat->pages;
479 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
481 for (i = 0; i < pages; i++) {
482 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
493 unsigned long tmp = (unsigned long)pg;
499 free_page((unsigned long)stat->pages);
506 static int ftrace_profile_init_cpu(int cpu)
508 struct ftrace_profile_stat *stat;
511 stat = &per_cpu(ftrace_profile_stats, cpu);
514 /* If the profile is already created, simply reset it */
515 ftrace_profile_reset(stat);
520 * We are profiling all functions, but usually only a few thousand
521 * functions are hit. We'll make a hash of 1024 items.
523 size = FTRACE_PROFILE_HASH_SIZE;
525 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
530 if (!ftrace_profile_bits) {
533 for (; size; size >>= 1)
534 ftrace_profile_bits++;
537 /* Preallocate the function profiling pages */
538 if (ftrace_profile_pages_init(stat) < 0) {
547 static int ftrace_profile_init(void)
552 for_each_online_cpu(cpu) {
553 ret = ftrace_profile_init_cpu(cpu);
561 /* interrupts must be disabled */
562 static struct ftrace_profile *
563 ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
565 struct ftrace_profile *rec;
566 struct hlist_head *hhd;
567 struct hlist_node *n;
570 key = hash_long(ip, ftrace_profile_bits);
571 hhd = &stat->hash[key];
573 if (hlist_empty(hhd))
576 hlist_for_each_entry_rcu(rec, n, hhd, node) {
584 static void ftrace_add_profile(struct ftrace_profile_stat *stat,
585 struct ftrace_profile *rec)
589 key = hash_long(rec->ip, ftrace_profile_bits);
590 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
594 * The memory is already allocated, this simply finds a new record to use.
596 static struct ftrace_profile *
597 ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
599 struct ftrace_profile *rec = NULL;
601 /* prevent recursion (from NMIs) */
602 if (atomic_inc_return(&stat->disabled) != 1)
606 * Try to find the function again since an NMI
607 * could have added it
609 rec = ftrace_find_profiled_func(stat, ip);
613 if (stat->pages->index == PROFILES_PER_PAGE) {
614 if (!stat->pages->next)
616 stat->pages = stat->pages->next;
619 rec = &stat->pages->records[stat->pages->index++];
621 ftrace_add_profile(stat, rec);
624 atomic_dec(&stat->disabled);
630 function_profile_call(unsigned long ip, unsigned long parent_ip)
632 struct ftrace_profile_stat *stat;
633 struct ftrace_profile *rec;
636 if (!ftrace_profile_enabled)
639 local_irq_save(flags);
641 stat = &__get_cpu_var(ftrace_profile_stats);
642 if (!stat->hash || !ftrace_profile_enabled)
645 rec = ftrace_find_profiled_func(stat, ip);
647 rec = ftrace_profile_alloc(stat, ip);
654 local_irq_restore(flags);
657 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
658 static int profile_graph_entry(struct ftrace_graph_ent *trace)
660 function_profile_call(trace->func, 0);
664 static void profile_graph_return(struct ftrace_graph_ret *trace)
666 struct ftrace_profile_stat *stat;
667 unsigned long long calltime;
668 struct ftrace_profile *rec;
671 local_irq_save(flags);
672 stat = &__get_cpu_var(ftrace_profile_stats);
673 if (!stat->hash || !ftrace_profile_enabled)
676 /* If the calltime was zero'd ignore it */
677 if (!trace->calltime)
680 calltime = trace->rettime - trace->calltime;
682 if (!(trace_flags & TRACE_ITER_GRAPH_TIME)) {
685 index = trace->depth;
687 /* Append this call time to the parent time to subtract */
689 current->ret_stack[index - 1].subtime += calltime;
691 if (current->ret_stack[index].subtime < calltime)
692 calltime -= current->ret_stack[index].subtime;
697 rec = ftrace_find_profiled_func(stat, trace->func);
699 rec->time += calltime;
700 rec->time_squared += calltime * calltime;
704 local_irq_restore(flags);
707 static int register_ftrace_profiler(void)
709 return register_ftrace_graph(&profile_graph_return,
710 &profile_graph_entry);
713 static void unregister_ftrace_profiler(void)
715 unregister_ftrace_graph();
718 static struct ftrace_ops ftrace_profile_ops __read_mostly =
720 .func = function_profile_call,
723 static int register_ftrace_profiler(void)
725 return register_ftrace_function(&ftrace_profile_ops);
728 static void unregister_ftrace_profiler(void)
730 unregister_ftrace_function(&ftrace_profile_ops);
732 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
735 ftrace_profile_write(struct file *filp, const char __user *ubuf,
736 size_t cnt, loff_t *ppos)
739 char buf[64]; /* big enough to hold a number */
742 if (cnt >= sizeof(buf))
745 if (copy_from_user(&buf, ubuf, cnt))
750 ret = strict_strtoul(buf, 10, &val);
756 mutex_lock(&ftrace_profile_lock);
757 if (ftrace_profile_enabled ^ val) {
759 ret = ftrace_profile_init();
765 ret = register_ftrace_profiler();
770 ftrace_profile_enabled = 1;
772 ftrace_profile_enabled = 0;
774 * unregister_ftrace_profiler calls stop_machine
775 * so this acts like an synchronize_sched.
777 unregister_ftrace_profiler();
781 mutex_unlock(&ftrace_profile_lock);
789 ftrace_profile_read(struct file *filp, char __user *ubuf,
790 size_t cnt, loff_t *ppos)
792 char buf[64]; /* big enough to hold a number */
795 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
796 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
799 static const struct file_operations ftrace_profile_fops = {
800 .open = tracing_open_generic,
801 .read = ftrace_profile_read,
802 .write = ftrace_profile_write,
805 /* used to initialize the real stat files */
806 static struct tracer_stat function_stats __initdata = {
808 .stat_start = function_stat_start,
809 .stat_next = function_stat_next,
810 .stat_cmp = function_stat_cmp,
811 .stat_headers = function_stat_headers,
812 .stat_show = function_stat_show
815 static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
817 struct ftrace_profile_stat *stat;
818 struct dentry *entry;
823 for_each_possible_cpu(cpu) {
824 stat = &per_cpu(ftrace_profile_stats, cpu);
826 /* allocate enough for function name + cpu number */
827 name = kmalloc(32, GFP_KERNEL);
830 * The files created are permanent, if something happens
831 * we still do not free memory.
834 "Could not allocate stat file for cpu %d\n",
838 stat->stat = function_stats;
839 snprintf(name, 32, "function%d", cpu);
840 stat->stat.name = name;
841 ret = register_stat_tracer(&stat->stat);
844 "Could not register function stat for cpu %d\n",
851 entry = debugfs_create_file("function_profile_enabled", 0644,
852 d_tracer, NULL, &ftrace_profile_fops);
854 pr_warning("Could not create debugfs "
855 "'function_profile_enabled' entry\n");
858 #else /* CONFIG_FUNCTION_PROFILER */
859 static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
862 #endif /* CONFIG_FUNCTION_PROFILER */
864 static struct pid * const ftrace_swapper_pid = &init_struct_pid;
866 #ifdef CONFIG_DYNAMIC_FTRACE
868 #ifndef CONFIG_FTRACE_MCOUNT_RECORD
869 # error Dynamic ftrace depends on MCOUNT_RECORD
872 static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
874 struct ftrace_func_probe {
875 struct hlist_node node;
876 struct ftrace_probe_ops *ops;
884 FTRACE_ENABLE_CALLS = (1 << 0),
885 FTRACE_DISABLE_CALLS = (1 << 1),
886 FTRACE_UPDATE_TRACE_FUNC = (1 << 2),
887 FTRACE_ENABLE_MCOUNT = (1 << 3),
888 FTRACE_DISABLE_MCOUNT = (1 << 4),
889 FTRACE_START_FUNC_RET = (1 << 5),
890 FTRACE_STOP_FUNC_RET = (1 << 6),
893 static int ftrace_filtered;
895 static struct dyn_ftrace *ftrace_new_addrs;
897 static DEFINE_MUTEX(ftrace_regex_lock);
900 struct ftrace_page *next;
902 struct dyn_ftrace records[];
905 #define ENTRIES_PER_PAGE \
906 ((PAGE_SIZE - sizeof(struct ftrace_page)) / sizeof(struct dyn_ftrace))
908 /* estimate from running different kernels */
909 #define NR_TO_INIT 10000
911 static struct ftrace_page *ftrace_pages_start;
912 static struct ftrace_page *ftrace_pages;
914 static struct dyn_ftrace *ftrace_free_records;
917 * This is a double for. Do not use 'break' to break out of the loop,
918 * you must use a goto.
920 #define do_for_each_ftrace_rec(pg, rec) \
921 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
923 for (_____i = 0; _____i < pg->index; _____i++) { \
924 rec = &pg->records[_____i];
926 #define while_for_each_ftrace_rec() \
930 static void ftrace_free_rec(struct dyn_ftrace *rec)
932 rec->freelist = ftrace_free_records;
933 ftrace_free_records = rec;
934 rec->flags |= FTRACE_FL_FREE;
937 static struct dyn_ftrace *ftrace_alloc_dyn_node(unsigned long ip)
939 struct dyn_ftrace *rec;
941 /* First check for freed records */
942 if (ftrace_free_records) {
943 rec = ftrace_free_records;
945 if (unlikely(!(rec->flags & FTRACE_FL_FREE))) {
946 FTRACE_WARN_ON_ONCE(1);
947 ftrace_free_records = NULL;
951 ftrace_free_records = rec->freelist;
952 memset(rec, 0, sizeof(*rec));
956 if (ftrace_pages->index == ENTRIES_PER_PAGE) {
957 if (!ftrace_pages->next) {
958 /* allocate another page */
960 (void *)get_zeroed_page(GFP_KERNEL);
961 if (!ftrace_pages->next)
964 ftrace_pages = ftrace_pages->next;
967 return &ftrace_pages->records[ftrace_pages->index++];
970 static struct dyn_ftrace *
971 ftrace_record_ip(unsigned long ip)
973 struct dyn_ftrace *rec;
978 rec = ftrace_alloc_dyn_node(ip);
983 rec->newlist = ftrace_new_addrs;
984 ftrace_new_addrs = rec;
989 static void print_ip_ins(const char *fmt, unsigned char *p)
993 printk(KERN_CONT "%s", fmt);
995 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
996 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
999 static void ftrace_bug(int failed, unsigned long ip)
1003 FTRACE_WARN_ON_ONCE(1);
1004 pr_info("ftrace faulted on modifying ");
1008 FTRACE_WARN_ON_ONCE(1);
1009 pr_info("ftrace failed to modify ");
1011 print_ip_ins(" actual: ", (unsigned char *)ip);
1012 printk(KERN_CONT "\n");
1015 FTRACE_WARN_ON_ONCE(1);
1016 pr_info("ftrace faulted on writing ");
1020 FTRACE_WARN_ON_ONCE(1);
1021 pr_info("ftrace faulted on unknown error ");
1027 /* Return 1 if the address range is reserved for ftrace */
1028 int ftrace_text_reserved(void *start, void *end)
1030 struct dyn_ftrace *rec;
1031 struct ftrace_page *pg;
1033 do_for_each_ftrace_rec(pg, rec) {
1034 if (rec->ip <= (unsigned long)end &&
1035 rec->ip + MCOUNT_INSN_SIZE > (unsigned long)start)
1037 } while_for_each_ftrace_rec();
1043 __ftrace_replace_code(struct dyn_ftrace *rec, int enable)
1045 unsigned long ftrace_addr;
1046 unsigned long flag = 0UL;
1048 ftrace_addr = (unsigned long)FTRACE_ADDR;
1051 * If this record is not to be traced or we want to disable it,
1054 * If we want to enable it and filtering is off, then enable it.
1056 * If we want to enable it and filtering is on, enable it only if
1059 if (enable && !(rec->flags & FTRACE_FL_NOTRACE)) {
1060 if (!ftrace_filtered || (rec->flags & FTRACE_FL_FILTER))
1061 flag = FTRACE_FL_ENABLED;
1064 /* If the state of this record hasn't changed, then do nothing */
1065 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
1069 rec->flags |= FTRACE_FL_ENABLED;
1070 return ftrace_make_call(rec, ftrace_addr);
1073 rec->flags &= ~FTRACE_FL_ENABLED;
1074 return ftrace_make_nop(NULL, rec, ftrace_addr);
1077 static void ftrace_replace_code(int enable)
1079 struct dyn_ftrace *rec;
1080 struct ftrace_page *pg;
1083 do_for_each_ftrace_rec(pg, rec) {
1085 * Skip over free records, records that have
1086 * failed and not converted.
1088 if (rec->flags & FTRACE_FL_FREE ||
1089 rec->flags & FTRACE_FL_FAILED ||
1090 !(rec->flags & FTRACE_FL_CONVERTED))
1093 failed = __ftrace_replace_code(rec, enable);
1095 rec->flags |= FTRACE_FL_FAILED;
1096 ftrace_bug(failed, rec->ip);
1097 /* Stop processing */
1100 } while_for_each_ftrace_rec();
1104 ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
1111 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
1113 ftrace_bug(ret, ip);
1114 rec->flags |= FTRACE_FL_FAILED;
1121 * archs can override this function if they must do something
1122 * before the modifying code is performed.
1124 int __weak ftrace_arch_code_modify_prepare(void)
1130 * archs can override this function if they must do something
1131 * after the modifying code is performed.
1133 int __weak ftrace_arch_code_modify_post_process(void)
1138 static int __ftrace_modify_code(void *data)
1140 int *command = data;
1142 if (*command & FTRACE_ENABLE_CALLS)
1143 ftrace_replace_code(1);
1144 else if (*command & FTRACE_DISABLE_CALLS)
1145 ftrace_replace_code(0);
1147 if (*command & FTRACE_UPDATE_TRACE_FUNC)
1148 ftrace_update_ftrace_func(ftrace_trace_function);
1150 if (*command & FTRACE_START_FUNC_RET)
1151 ftrace_enable_ftrace_graph_caller();
1152 else if (*command & FTRACE_STOP_FUNC_RET)
1153 ftrace_disable_ftrace_graph_caller();
1158 static void ftrace_run_update_code(int command)
1162 ret = ftrace_arch_code_modify_prepare();
1163 FTRACE_WARN_ON(ret);
1167 stop_machine(__ftrace_modify_code, &command, NULL);
1169 ret = ftrace_arch_code_modify_post_process();
1170 FTRACE_WARN_ON(ret);
1173 static ftrace_func_t saved_ftrace_func;
1174 static int ftrace_start_up;
1176 static void ftrace_startup_enable(int command)
1178 if (saved_ftrace_func != ftrace_trace_function) {
1179 saved_ftrace_func = ftrace_trace_function;
1180 command |= FTRACE_UPDATE_TRACE_FUNC;
1183 if (!command || !ftrace_enabled)
1186 ftrace_run_update_code(command);
1189 static void ftrace_startup(int command)
1191 if (unlikely(ftrace_disabled))
1195 command |= FTRACE_ENABLE_CALLS;
1197 ftrace_startup_enable(command);
1200 static void ftrace_shutdown(int command)
1202 if (unlikely(ftrace_disabled))
1207 * Just warn in case of unbalance, no need to kill ftrace, it's not
1208 * critical but the ftrace_call callers may be never nopped again after
1209 * further ftrace uses.
1211 WARN_ON_ONCE(ftrace_start_up < 0);
1213 if (!ftrace_start_up)
1214 command |= FTRACE_DISABLE_CALLS;
1216 if (saved_ftrace_func != ftrace_trace_function) {
1217 saved_ftrace_func = ftrace_trace_function;
1218 command |= FTRACE_UPDATE_TRACE_FUNC;
1221 if (!command || !ftrace_enabled)
1224 ftrace_run_update_code(command);
1227 static void ftrace_startup_sysctl(void)
1229 int command = FTRACE_ENABLE_MCOUNT;
1231 if (unlikely(ftrace_disabled))
1234 /* Force update next time */
1235 saved_ftrace_func = NULL;
1236 /* ftrace_start_up is true if we want ftrace running */
1237 if (ftrace_start_up)
1238 command |= FTRACE_ENABLE_CALLS;
1240 ftrace_run_update_code(command);
1243 static void ftrace_shutdown_sysctl(void)
1245 int command = FTRACE_DISABLE_MCOUNT;
1247 if (unlikely(ftrace_disabled))
1250 /* ftrace_start_up is true if ftrace is running */
1251 if (ftrace_start_up)
1252 command |= FTRACE_DISABLE_CALLS;
1254 ftrace_run_update_code(command);
1257 static cycle_t ftrace_update_time;
1258 static unsigned long ftrace_update_cnt;
1259 unsigned long ftrace_update_tot_cnt;
1261 static int ftrace_update_code(struct module *mod)
1263 struct dyn_ftrace *p;
1264 cycle_t start, stop;
1266 start = ftrace_now(raw_smp_processor_id());
1267 ftrace_update_cnt = 0;
1269 while (ftrace_new_addrs) {
1271 /* If something went wrong, bail without enabling anything */
1272 if (unlikely(ftrace_disabled))
1275 p = ftrace_new_addrs;
1276 ftrace_new_addrs = p->newlist;
1280 * Do the initial record convertion from mcount jump
1281 * to the NOP instructions.
1283 if (!ftrace_code_disable(mod, p)) {
1288 p->flags |= FTRACE_FL_CONVERTED;
1289 ftrace_update_cnt++;
1292 * If the tracing is enabled, go ahead and enable the record.
1294 * The reason not to enable the record immediatelly is the
1295 * inherent check of ftrace_make_nop/ftrace_make_call for
1296 * correct previous instructions. Making first the NOP
1297 * conversion puts the module to the correct state, thus
1298 * passing the ftrace_make_call check.
1300 if (ftrace_start_up) {
1301 int failed = __ftrace_replace_code(p, 1);
1303 ftrace_bug(failed, p->ip);
1309 stop = ftrace_now(raw_smp_processor_id());
1310 ftrace_update_time = stop - start;
1311 ftrace_update_tot_cnt += ftrace_update_cnt;
1316 static int __init ftrace_dyn_table_alloc(unsigned long num_to_init)
1318 struct ftrace_page *pg;
1322 /* allocate a few pages */
1323 ftrace_pages_start = (void *)get_zeroed_page(GFP_KERNEL);
1324 if (!ftrace_pages_start)
1328 * Allocate a few more pages.
1330 * TODO: have some parser search vmlinux before
1331 * final linking to find all calls to ftrace.
1333 * a) know how many pages to allocate.
1335 * b) set up the table then.
1337 * The dynamic code is still necessary for
1341 pg = ftrace_pages = ftrace_pages_start;
1343 cnt = num_to_init / ENTRIES_PER_PAGE;
1344 pr_info("ftrace: allocating %ld entries in %d pages\n",
1345 num_to_init, cnt + 1);
1347 for (i = 0; i < cnt; i++) {
1348 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
1350 /* If we fail, we'll try later anyway */
1361 FTRACE_ITER_FILTER = (1 << 0),
1362 FTRACE_ITER_NOTRACE = (1 << 1),
1363 FTRACE_ITER_FAILURES = (1 << 2),
1364 FTRACE_ITER_PRINTALL = (1 << 3),
1365 FTRACE_ITER_HASH = (1 << 4),
1368 #define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
1370 struct ftrace_iterator {
1371 struct ftrace_page *pg;
1375 struct trace_parser parser;
1379 t_hash_next(struct seq_file *m, void *v, loff_t *pos)
1381 struct ftrace_iterator *iter = m->private;
1382 struct hlist_node *hnd = v;
1383 struct hlist_head *hhd;
1385 WARN_ON(!(iter->flags & FTRACE_ITER_HASH));
1390 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
1393 hhd = &ftrace_func_hash[iter->hidx];
1395 if (hlist_empty(hhd)) {
1414 static void *t_hash_start(struct seq_file *m, loff_t *pos)
1416 struct ftrace_iterator *iter = m->private;
1420 if (!(iter->flags & FTRACE_ITER_HASH))
1423 iter->flags |= FTRACE_ITER_HASH;
1426 for (l = 0; l <= *pos; ) {
1427 p = t_hash_next(m, p, &l);
1434 static int t_hash_show(struct seq_file *m, void *v)
1436 struct ftrace_func_probe *rec;
1437 struct hlist_node *hnd = v;
1439 rec = hlist_entry(hnd, struct ftrace_func_probe, node);
1441 if (rec->ops->print)
1442 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
1444 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
1447 seq_printf(m, ":%p", rec->data);
1454 t_next(struct seq_file *m, void *v, loff_t *pos)
1456 struct ftrace_iterator *iter = m->private;
1457 struct dyn_ftrace *rec = NULL;
1459 if (iter->flags & FTRACE_ITER_HASH)
1460 return t_hash_next(m, v, pos);
1464 if (iter->flags & FTRACE_ITER_PRINTALL)
1468 if (iter->idx >= iter->pg->index) {
1469 if (iter->pg->next) {
1470 iter->pg = iter->pg->next;
1475 rec = &iter->pg->records[iter->idx++];
1476 if ((rec->flags & FTRACE_FL_FREE) ||
1478 (!(iter->flags & FTRACE_ITER_FAILURES) &&
1479 (rec->flags & FTRACE_FL_FAILED)) ||
1481 ((iter->flags & FTRACE_ITER_FAILURES) &&
1482 !(rec->flags & FTRACE_FL_FAILED)) ||
1484 ((iter->flags & FTRACE_ITER_FILTER) &&
1485 !(rec->flags & FTRACE_FL_FILTER)) ||
1487 ((iter->flags & FTRACE_ITER_NOTRACE) &&
1488 !(rec->flags & FTRACE_FL_NOTRACE))) {
1497 static void *t_start(struct seq_file *m, loff_t *pos)
1499 struct ftrace_iterator *iter = m->private;
1503 mutex_lock(&ftrace_lock);
1505 * For set_ftrace_filter reading, if we have the filter
1506 * off, we can short cut and just print out that all
1507 * functions are enabled.
1509 if (iter->flags & FTRACE_ITER_FILTER && !ftrace_filtered) {
1511 return t_hash_start(m, pos);
1512 iter->flags |= FTRACE_ITER_PRINTALL;
1516 if (iter->flags & FTRACE_ITER_HASH)
1517 return t_hash_start(m, pos);
1519 iter->pg = ftrace_pages_start;
1521 for (l = 0; l <= *pos; ) {
1522 p = t_next(m, p, &l);
1527 if (!p && iter->flags & FTRACE_ITER_FILTER)
1528 return t_hash_start(m, pos);
1533 static void t_stop(struct seq_file *m, void *p)
1535 mutex_unlock(&ftrace_lock);
1538 static int t_show(struct seq_file *m, void *v)
1540 struct ftrace_iterator *iter = m->private;
1541 struct dyn_ftrace *rec = v;
1543 if (iter->flags & FTRACE_ITER_HASH)
1544 return t_hash_show(m, v);
1546 if (iter->flags & FTRACE_ITER_PRINTALL) {
1547 seq_printf(m, "#### all functions enabled ####\n");
1554 seq_printf(m, "%ps\n", (void *)rec->ip);
1559 static const struct seq_operations show_ftrace_seq_ops = {
1567 ftrace_avail_open(struct inode *inode, struct file *file)
1569 struct ftrace_iterator *iter;
1572 if (unlikely(ftrace_disabled))
1575 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1579 iter->pg = ftrace_pages_start;
1581 ret = seq_open(file, &show_ftrace_seq_ops);
1583 struct seq_file *m = file->private_data;
1594 ftrace_failures_open(struct inode *inode, struct file *file)
1598 struct ftrace_iterator *iter;
1600 ret = ftrace_avail_open(inode, file);
1602 m = (struct seq_file *)file->private_data;
1603 iter = (struct ftrace_iterator *)m->private;
1604 iter->flags = FTRACE_ITER_FAILURES;
1611 static void ftrace_filter_reset(int enable)
1613 struct ftrace_page *pg;
1614 struct dyn_ftrace *rec;
1615 unsigned long type = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
1617 mutex_lock(&ftrace_lock);
1619 ftrace_filtered = 0;
1620 do_for_each_ftrace_rec(pg, rec) {
1621 if (rec->flags & FTRACE_FL_FAILED)
1623 rec->flags &= ~type;
1624 } while_for_each_ftrace_rec();
1625 mutex_unlock(&ftrace_lock);
1629 ftrace_regex_open(struct inode *inode, struct file *file, int enable)
1631 struct ftrace_iterator *iter;
1634 if (unlikely(ftrace_disabled))
1637 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1641 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
1646 mutex_lock(&ftrace_regex_lock);
1647 if ((file->f_mode & FMODE_WRITE) &&
1648 (file->f_flags & O_TRUNC))
1649 ftrace_filter_reset(enable);
1651 if (file->f_mode & FMODE_READ) {
1652 iter->pg = ftrace_pages_start;
1653 iter->flags = enable ? FTRACE_ITER_FILTER :
1654 FTRACE_ITER_NOTRACE;
1656 ret = seq_open(file, &show_ftrace_seq_ops);
1658 struct seq_file *m = file->private_data;
1661 trace_parser_put(&iter->parser);
1665 file->private_data = iter;
1666 mutex_unlock(&ftrace_regex_lock);
1672 ftrace_filter_open(struct inode *inode, struct file *file)
1674 return ftrace_regex_open(inode, file, 1);
1678 ftrace_notrace_open(struct inode *inode, struct file *file)
1680 return ftrace_regex_open(inode, file, 0);
1684 ftrace_regex_lseek(struct file *file, loff_t offset, int origin)
1688 if (file->f_mode & FMODE_READ)
1689 ret = seq_lseek(file, offset, origin);
1691 file->f_pos = ret = 1;
1696 static int ftrace_match(char *str, char *regex, int len, int type)
1703 if (strcmp(str, regex) == 0)
1706 case MATCH_FRONT_ONLY:
1707 if (strncmp(str, regex, len) == 0)
1710 case MATCH_MIDDLE_ONLY:
1711 if (strstr(str, regex))
1714 case MATCH_END_ONLY:
1716 if (slen >= len && memcmp(str + slen - len, regex, len) == 0)
1725 ftrace_match_record(struct dyn_ftrace *rec, char *regex, int len, int type)
1727 char str[KSYM_SYMBOL_LEN];
1729 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
1730 return ftrace_match(str, regex, len, type);
1733 static int ftrace_match_records(char *buff, int len, int enable)
1735 unsigned int search_len;
1736 struct ftrace_page *pg;
1737 struct dyn_ftrace *rec;
1744 flag = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
1745 type = filter_parse_regex(buff, len, &search, ¬);
1747 search_len = strlen(search);
1749 mutex_lock(&ftrace_lock);
1750 do_for_each_ftrace_rec(pg, rec) {
1752 if (rec->flags & FTRACE_FL_FAILED)
1755 if (ftrace_match_record(rec, search, search_len, type)) {
1757 rec->flags &= ~flag;
1763 * Only enable filtering if we have a function that
1766 if (enable && (rec->flags & FTRACE_FL_FILTER))
1767 ftrace_filtered = 1;
1768 } while_for_each_ftrace_rec();
1769 mutex_unlock(&ftrace_lock);
1775 ftrace_match_module_record(struct dyn_ftrace *rec, char *mod,
1776 char *regex, int len, int type)
1778 char str[KSYM_SYMBOL_LEN];
1781 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
1783 if (!modname || strcmp(modname, mod))
1786 /* blank search means to match all funcs in the mod */
1788 return ftrace_match(str, regex, len, type);
1793 static int ftrace_match_module_records(char *buff, char *mod, int enable)
1795 unsigned search_len = 0;
1796 struct ftrace_page *pg;
1797 struct dyn_ftrace *rec;
1798 int type = MATCH_FULL;
1799 char *search = buff;
1804 flag = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
1806 /* blank or '*' mean the same */
1807 if (strcmp(buff, "*") == 0)
1810 /* handle the case of 'dont filter this module' */
1811 if (strcmp(buff, "!") == 0 || strcmp(buff, "!*") == 0) {
1817 type = filter_parse_regex(buff, strlen(buff), &search, ¬);
1818 search_len = strlen(search);
1821 mutex_lock(&ftrace_lock);
1822 do_for_each_ftrace_rec(pg, rec) {
1824 if (rec->flags & FTRACE_FL_FAILED)
1827 if (ftrace_match_module_record(rec, mod,
1828 search, search_len, type)) {
1830 rec->flags &= ~flag;
1835 if (enable && (rec->flags & FTRACE_FL_FILTER))
1836 ftrace_filtered = 1;
1838 } while_for_each_ftrace_rec();
1839 mutex_unlock(&ftrace_lock);
1845 * We register the module command as a template to show others how
1846 * to register the a command as well.
1850 ftrace_mod_callback(char *func, char *cmd, char *param, int enable)
1855 * cmd == 'mod' because we only registered this func
1856 * for the 'mod' ftrace_func_command.
1857 * But if you register one func with multiple commands,
1858 * you can tell which command was used by the cmd
1862 /* we must have a module name */
1866 mod = strsep(¶m, ":");
1870 if (ftrace_match_module_records(func, mod, enable))
1875 static struct ftrace_func_command ftrace_mod_cmd = {
1877 .func = ftrace_mod_callback,
1880 static int __init ftrace_mod_cmd_init(void)
1882 return register_ftrace_command(&ftrace_mod_cmd);
1884 device_initcall(ftrace_mod_cmd_init);
1887 function_trace_probe_call(unsigned long ip, unsigned long parent_ip)
1889 struct ftrace_func_probe *entry;
1890 struct hlist_head *hhd;
1891 struct hlist_node *n;
1894 key = hash_long(ip, FTRACE_HASH_BITS);
1896 hhd = &ftrace_func_hash[key];
1898 if (hlist_empty(hhd))
1902 * Disable preemption for these calls to prevent a RCU grace
1903 * period. This syncs the hash iteration and freeing of items
1904 * on the hash. rcu_read_lock is too dangerous here.
1906 preempt_disable_notrace();
1907 hlist_for_each_entry_rcu(entry, n, hhd, node) {
1908 if (entry->ip == ip)
1909 entry->ops->func(ip, parent_ip, &entry->data);
1911 preempt_enable_notrace();
1914 static struct ftrace_ops trace_probe_ops __read_mostly =
1916 .func = function_trace_probe_call,
1919 static int ftrace_probe_registered;
1921 static void __enable_ftrace_function_probe(void)
1925 if (ftrace_probe_registered)
1928 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
1929 struct hlist_head *hhd = &ftrace_func_hash[i];
1933 /* Nothing registered? */
1934 if (i == FTRACE_FUNC_HASHSIZE)
1937 __register_ftrace_function(&trace_probe_ops);
1939 ftrace_probe_registered = 1;
1942 static void __disable_ftrace_function_probe(void)
1946 if (!ftrace_probe_registered)
1949 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
1950 struct hlist_head *hhd = &ftrace_func_hash[i];
1955 /* no more funcs left */
1956 __unregister_ftrace_function(&trace_probe_ops);
1958 ftrace_probe_registered = 0;
1962 static void ftrace_free_entry_rcu(struct rcu_head *rhp)
1964 struct ftrace_func_probe *entry =
1965 container_of(rhp, struct ftrace_func_probe, rcu);
1967 if (entry->ops->free)
1968 entry->ops->free(&entry->data);
1974 register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
1977 struct ftrace_func_probe *entry;
1978 struct ftrace_page *pg;
1979 struct dyn_ftrace *rec;
1985 type = filter_parse_regex(glob, strlen(glob), &search, ¬);
1986 len = strlen(search);
1988 /* we do not support '!' for function probes */
1992 mutex_lock(&ftrace_lock);
1993 do_for_each_ftrace_rec(pg, rec) {
1995 if (rec->flags & FTRACE_FL_FAILED)
1998 if (!ftrace_match_record(rec, search, len, type))
2001 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
2003 /* If we did not process any, then return error */
2014 * The caller might want to do something special
2015 * for each function we find. We call the callback
2016 * to give the caller an opportunity to do so.
2018 if (ops->callback) {
2019 if (ops->callback(rec->ip, &entry->data) < 0) {
2020 /* caller does not like this func */
2027 entry->ip = rec->ip;
2029 key = hash_long(entry->ip, FTRACE_HASH_BITS);
2030 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
2032 } while_for_each_ftrace_rec();
2033 __enable_ftrace_function_probe();
2036 mutex_unlock(&ftrace_lock);
2042 PROBE_TEST_FUNC = 1,
2047 __unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
2048 void *data, int flags)
2050 struct ftrace_func_probe *entry;
2051 struct hlist_node *n, *tmp;
2052 char str[KSYM_SYMBOL_LEN];
2053 int type = MATCH_FULL;
2057 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
2062 type = filter_parse_regex(glob, strlen(glob), &search, ¬);
2063 len = strlen(search);
2065 /* we do not support '!' for function probes */
2070 mutex_lock(&ftrace_lock);
2071 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2072 struct hlist_head *hhd = &ftrace_func_hash[i];
2074 hlist_for_each_entry_safe(entry, n, tmp, hhd, node) {
2076 /* break up if statements for readability */
2077 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
2080 if ((flags & PROBE_TEST_DATA) && entry->data != data)
2083 /* do this last, since it is the most expensive */
2085 kallsyms_lookup(entry->ip, NULL, NULL,
2087 if (!ftrace_match(str, glob, len, type))
2091 hlist_del(&entry->node);
2092 call_rcu(&entry->rcu, ftrace_free_entry_rcu);
2095 __disable_ftrace_function_probe();
2096 mutex_unlock(&ftrace_lock);
2100 unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
2103 __unregister_ftrace_function_probe(glob, ops, data,
2104 PROBE_TEST_FUNC | PROBE_TEST_DATA);
2108 unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
2110 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
2113 void unregister_ftrace_function_probe_all(char *glob)
2115 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
2118 static LIST_HEAD(ftrace_commands);
2119 static DEFINE_MUTEX(ftrace_cmd_mutex);
2121 int register_ftrace_command(struct ftrace_func_command *cmd)
2123 struct ftrace_func_command *p;
2126 mutex_lock(&ftrace_cmd_mutex);
2127 list_for_each_entry(p, &ftrace_commands, list) {
2128 if (strcmp(cmd->name, p->name) == 0) {
2133 list_add(&cmd->list, &ftrace_commands);
2135 mutex_unlock(&ftrace_cmd_mutex);
2140 int unregister_ftrace_command(struct ftrace_func_command *cmd)
2142 struct ftrace_func_command *p, *n;
2145 mutex_lock(&ftrace_cmd_mutex);
2146 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
2147 if (strcmp(cmd->name, p->name) == 0) {
2149 list_del_init(&p->list);
2154 mutex_unlock(&ftrace_cmd_mutex);
2159 static int ftrace_process_regex(char *buff, int len, int enable)
2161 char *func, *command, *next = buff;
2162 struct ftrace_func_command *p;
2165 func = strsep(&next, ":");
2168 if (ftrace_match_records(func, len, enable))
2175 command = strsep(&next, ":");
2177 mutex_lock(&ftrace_cmd_mutex);
2178 list_for_each_entry(p, &ftrace_commands, list) {
2179 if (strcmp(p->name, command) == 0) {
2180 ret = p->func(func, command, next, enable);
2185 mutex_unlock(&ftrace_cmd_mutex);
2191 ftrace_regex_write(struct file *file, const char __user *ubuf,
2192 size_t cnt, loff_t *ppos, int enable)
2194 struct ftrace_iterator *iter;
2195 struct trace_parser *parser;
2201 mutex_lock(&ftrace_regex_lock);
2203 if (file->f_mode & FMODE_READ) {
2204 struct seq_file *m = file->private_data;
2207 iter = file->private_data;
2209 parser = &iter->parser;
2210 read = trace_get_user(parser, ubuf, cnt, ppos);
2212 if (read >= 0 && trace_parser_loaded(parser) &&
2213 !trace_parser_cont(parser)) {
2214 ret = ftrace_process_regex(parser->buffer,
2215 parser->idx, enable);
2216 trace_parser_clear(parser);
2223 mutex_unlock(&ftrace_regex_lock);
2229 ftrace_filter_write(struct file *file, const char __user *ubuf,
2230 size_t cnt, loff_t *ppos)
2232 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
2236 ftrace_notrace_write(struct file *file, const char __user *ubuf,
2237 size_t cnt, loff_t *ppos)
2239 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
2243 ftrace_set_regex(unsigned char *buf, int len, int reset, int enable)
2245 if (unlikely(ftrace_disabled))
2248 mutex_lock(&ftrace_regex_lock);
2250 ftrace_filter_reset(enable);
2252 ftrace_match_records(buf, len, enable);
2253 mutex_unlock(&ftrace_regex_lock);
2257 * ftrace_set_filter - set a function to filter on in ftrace
2258 * @buf - the string that holds the function filter text.
2259 * @len - the length of the string.
2260 * @reset - non zero to reset all filters before applying this filter.
2262 * Filters denote which functions should be enabled when tracing is enabled.
2263 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
2265 void ftrace_set_filter(unsigned char *buf, int len, int reset)
2267 ftrace_set_regex(buf, len, reset, 1);
2271 * ftrace_set_notrace - set a function to not trace in ftrace
2272 * @buf - the string that holds the function notrace text.
2273 * @len - the length of the string.
2274 * @reset - non zero to reset all filters before applying this filter.
2276 * Notrace Filters denote which functions should not be enabled when tracing
2277 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
2280 void ftrace_set_notrace(unsigned char *buf, int len, int reset)
2282 ftrace_set_regex(buf, len, reset, 0);
2286 * command line interface to allow users to set filters on boot up.
2288 #define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
2289 static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
2290 static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
2292 static int __init set_ftrace_notrace(char *str)
2294 strncpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
2297 __setup("ftrace_notrace=", set_ftrace_notrace);
2299 static int __init set_ftrace_filter(char *str)
2301 strncpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
2304 __setup("ftrace_filter=", set_ftrace_filter);
2306 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
2307 static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
2308 static int ftrace_set_func(unsigned long *array, int *idx, char *buffer);
2310 static int __init set_graph_function(char *str)
2312 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
2315 __setup("ftrace_graph_filter=", set_graph_function);
2317 static void __init set_ftrace_early_graph(char *buf)
2323 func = strsep(&buf, ",");
2324 /* we allow only one expression at a time */
2325 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
2328 printk(KERN_DEBUG "ftrace: function %s not "
2329 "traceable\n", func);
2332 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2334 static void __init set_ftrace_early_filter(char *buf, int enable)
2339 func = strsep(&buf, ",");
2340 ftrace_set_regex(func, strlen(func), 0, enable);
2344 static void __init set_ftrace_early_filters(void)
2346 if (ftrace_filter_buf[0])
2347 set_ftrace_early_filter(ftrace_filter_buf, 1);
2348 if (ftrace_notrace_buf[0])
2349 set_ftrace_early_filter(ftrace_notrace_buf, 0);
2350 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
2351 if (ftrace_graph_buf[0])
2352 set_ftrace_early_graph(ftrace_graph_buf);
2353 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2357 ftrace_regex_release(struct inode *inode, struct file *file, int enable)
2359 struct seq_file *m = (struct seq_file *)file->private_data;
2360 struct ftrace_iterator *iter;
2361 struct trace_parser *parser;
2363 mutex_lock(&ftrace_regex_lock);
2364 if (file->f_mode & FMODE_READ) {
2367 seq_release(inode, file);
2369 iter = file->private_data;
2371 parser = &iter->parser;
2372 if (trace_parser_loaded(parser)) {
2373 parser->buffer[parser->idx] = 0;
2374 ftrace_match_records(parser->buffer, parser->idx, enable);
2377 mutex_lock(&ftrace_lock);
2378 if (ftrace_start_up && ftrace_enabled)
2379 ftrace_run_update_code(FTRACE_ENABLE_CALLS);
2380 mutex_unlock(&ftrace_lock);
2382 trace_parser_put(parser);
2385 mutex_unlock(&ftrace_regex_lock);
2390 ftrace_filter_release(struct inode *inode, struct file *file)
2392 return ftrace_regex_release(inode, file, 1);
2396 ftrace_notrace_release(struct inode *inode, struct file *file)
2398 return ftrace_regex_release(inode, file, 0);
2401 static const struct file_operations ftrace_avail_fops = {
2402 .open = ftrace_avail_open,
2404 .llseek = seq_lseek,
2405 .release = seq_release_private,
2408 static const struct file_operations ftrace_failures_fops = {
2409 .open = ftrace_failures_open,
2411 .llseek = seq_lseek,
2412 .release = seq_release_private,
2415 static const struct file_operations ftrace_filter_fops = {
2416 .open = ftrace_filter_open,
2418 .write = ftrace_filter_write,
2419 .llseek = ftrace_regex_lseek,
2420 .release = ftrace_filter_release,
2423 static const struct file_operations ftrace_notrace_fops = {
2424 .open = ftrace_notrace_open,
2426 .write = ftrace_notrace_write,
2427 .llseek = ftrace_regex_lseek,
2428 .release = ftrace_notrace_release,
2431 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
2433 static DEFINE_MUTEX(graph_lock);
2435 int ftrace_graph_count;
2436 int ftrace_graph_filter_enabled;
2437 unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
2440 __g_next(struct seq_file *m, loff_t *pos)
2442 if (*pos >= ftrace_graph_count)
2444 return &ftrace_graph_funcs[*pos];
2448 g_next(struct seq_file *m, void *v, loff_t *pos)
2451 return __g_next(m, pos);
2454 static void *g_start(struct seq_file *m, loff_t *pos)
2456 mutex_lock(&graph_lock);
2458 /* Nothing, tell g_show to print all functions are enabled */
2459 if (!ftrace_graph_filter_enabled && !*pos)
2462 return __g_next(m, pos);
2465 static void g_stop(struct seq_file *m, void *p)
2467 mutex_unlock(&graph_lock);
2470 static int g_show(struct seq_file *m, void *v)
2472 unsigned long *ptr = v;
2477 if (ptr == (unsigned long *)1) {
2478 seq_printf(m, "#### all functions enabled ####\n");
2482 seq_printf(m, "%ps\n", (void *)*ptr);
2487 static const struct seq_operations ftrace_graph_seq_ops = {
2495 ftrace_graph_open(struct inode *inode, struct file *file)
2499 if (unlikely(ftrace_disabled))
2502 mutex_lock(&graph_lock);
2503 if ((file->f_mode & FMODE_WRITE) &&
2504 (file->f_flags & O_TRUNC)) {
2505 ftrace_graph_filter_enabled = 0;
2506 ftrace_graph_count = 0;
2507 memset(ftrace_graph_funcs, 0, sizeof(ftrace_graph_funcs));
2509 mutex_unlock(&graph_lock);
2511 if (file->f_mode & FMODE_READ)
2512 ret = seq_open(file, &ftrace_graph_seq_ops);
2518 ftrace_graph_release(struct inode *inode, struct file *file)
2520 if (file->f_mode & FMODE_READ)
2521 seq_release(inode, file);
2526 ftrace_set_func(unsigned long *array, int *idx, char *buffer)
2528 struct dyn_ftrace *rec;
2529 struct ftrace_page *pg;
2537 if (ftrace_disabled)
2541 type = filter_parse_regex(buffer, strlen(buffer), &search, ¬);
2542 if (!not && *idx >= FTRACE_GRAPH_MAX_FUNCS)
2545 search_len = strlen(search);
2547 mutex_lock(&ftrace_lock);
2548 do_for_each_ftrace_rec(pg, rec) {
2550 if (rec->flags & (FTRACE_FL_FAILED | FTRACE_FL_FREE))
2553 if (ftrace_match_record(rec, search, search_len, type)) {
2554 /* if it is in the array */
2556 for (i = 0; i < *idx; i++) {
2557 if (array[i] == rec->ip) {
2566 array[(*idx)++] = rec->ip;
2567 if (*idx >= FTRACE_GRAPH_MAX_FUNCS)
2572 array[i] = array[--(*idx)];
2578 } while_for_each_ftrace_rec();
2580 mutex_unlock(&ftrace_lock);
2585 ftrace_graph_filter_enabled = 1;
2590 ftrace_graph_write(struct file *file, const char __user *ubuf,
2591 size_t cnt, loff_t *ppos)
2593 struct trace_parser parser;
2599 mutex_lock(&graph_lock);
2601 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX)) {
2606 read = trace_get_user(&parser, ubuf, cnt, ppos);
2608 if (read >= 0 && trace_parser_loaded((&parser))) {
2609 parser.buffer[parser.idx] = 0;
2611 /* we allow only one expression at a time */
2612 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
2621 trace_parser_put(&parser);
2623 mutex_unlock(&graph_lock);
2628 static const struct file_operations ftrace_graph_fops = {
2629 .open = ftrace_graph_open,
2631 .write = ftrace_graph_write,
2632 .release = ftrace_graph_release,
2634 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2636 static __init int ftrace_init_dyn_debugfs(struct dentry *d_tracer)
2639 trace_create_file("available_filter_functions", 0444,
2640 d_tracer, NULL, &ftrace_avail_fops);
2642 trace_create_file("failures", 0444,
2643 d_tracer, NULL, &ftrace_failures_fops);
2645 trace_create_file("set_ftrace_filter", 0644, d_tracer,
2646 NULL, &ftrace_filter_fops);
2648 trace_create_file("set_ftrace_notrace", 0644, d_tracer,
2649 NULL, &ftrace_notrace_fops);
2651 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
2652 trace_create_file("set_graph_function", 0444, d_tracer,
2654 &ftrace_graph_fops);
2655 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2660 static int ftrace_process_locs(struct module *mod,
2661 unsigned long *start,
2666 unsigned long flags;
2668 mutex_lock(&ftrace_lock);
2671 addr = ftrace_call_adjust(*p++);
2673 * Some architecture linkers will pad between
2674 * the different mcount_loc sections of different
2675 * object files to satisfy alignments.
2676 * Skip any NULL pointers.
2680 ftrace_record_ip(addr);
2683 /* disable interrupts to prevent kstop machine */
2684 local_irq_save(flags);
2685 ftrace_update_code(mod);
2686 local_irq_restore(flags);
2687 mutex_unlock(&ftrace_lock);
2692 #ifdef CONFIG_MODULES
2693 void ftrace_release_mod(struct module *mod)
2695 struct dyn_ftrace *rec;
2696 struct ftrace_page *pg;
2698 if (ftrace_disabled)
2701 mutex_lock(&ftrace_lock);
2702 do_for_each_ftrace_rec(pg, rec) {
2703 if (within_module_core(rec->ip, mod)) {
2705 * rec->ip is changed in ftrace_free_rec()
2706 * It should not between s and e if record was freed.
2708 FTRACE_WARN_ON(rec->flags & FTRACE_FL_FREE);
2709 ftrace_free_rec(rec);
2711 } while_for_each_ftrace_rec();
2712 mutex_unlock(&ftrace_lock);
2715 static void ftrace_init_module(struct module *mod,
2716 unsigned long *start, unsigned long *end)
2718 if (ftrace_disabled || start == end)
2720 ftrace_process_locs(mod, start, end);
2723 static int ftrace_module_notify(struct notifier_block *self,
2724 unsigned long val, void *data)
2726 struct module *mod = data;
2729 case MODULE_STATE_COMING:
2730 ftrace_init_module(mod, mod->ftrace_callsites,
2731 mod->ftrace_callsites +
2732 mod->num_ftrace_callsites);
2734 case MODULE_STATE_GOING:
2735 ftrace_release_mod(mod);
2742 static int ftrace_module_notify(struct notifier_block *self,
2743 unsigned long val, void *data)
2747 #endif /* CONFIG_MODULES */
2749 struct notifier_block ftrace_module_nb = {
2750 .notifier_call = ftrace_module_notify,
2754 extern unsigned long __start_mcount_loc[];
2755 extern unsigned long __stop_mcount_loc[];
2757 void __init ftrace_init(void)
2759 unsigned long count, addr, flags;
2762 /* Keep the ftrace pointer to the stub */
2763 addr = (unsigned long)ftrace_stub;
2765 local_irq_save(flags);
2766 ftrace_dyn_arch_init(&addr);
2767 local_irq_restore(flags);
2769 /* ftrace_dyn_arch_init places the return code in addr */
2773 count = __stop_mcount_loc - __start_mcount_loc;
2775 ret = ftrace_dyn_table_alloc(count);
2779 last_ftrace_enabled = ftrace_enabled = 1;
2781 ret = ftrace_process_locs(NULL,
2785 ret = register_module_notifier(&ftrace_module_nb);
2787 pr_warning("Failed to register trace ftrace module notifier\n");
2789 set_ftrace_early_filters();
2793 ftrace_disabled = 1;
2798 static int __init ftrace_nodyn_init(void)
2803 device_initcall(ftrace_nodyn_init);
2805 static inline int ftrace_init_dyn_debugfs(struct dentry *d_tracer) { return 0; }
2806 static inline void ftrace_startup_enable(int command) { }
2807 /* Keep as macros so we do not need to define the commands */
2808 # define ftrace_startup(command) do { } while (0)
2809 # define ftrace_shutdown(command) do { } while (0)
2810 # define ftrace_startup_sysctl() do { } while (0)
2811 # define ftrace_shutdown_sysctl() do { } while (0)
2812 #endif /* CONFIG_DYNAMIC_FTRACE */
2814 static void clear_ftrace_swapper(void)
2816 struct task_struct *p;
2820 for_each_online_cpu(cpu) {
2822 clear_tsk_trace_trace(p);
2827 static void set_ftrace_swapper(void)
2829 struct task_struct *p;
2833 for_each_online_cpu(cpu) {
2835 set_tsk_trace_trace(p);
2840 static void clear_ftrace_pid(struct pid *pid)
2842 struct task_struct *p;
2845 do_each_pid_task(pid, PIDTYPE_PID, p) {
2846 clear_tsk_trace_trace(p);
2847 } while_each_pid_task(pid, PIDTYPE_PID, p);
2853 static void set_ftrace_pid(struct pid *pid)
2855 struct task_struct *p;
2858 do_each_pid_task(pid, PIDTYPE_PID, p) {
2859 set_tsk_trace_trace(p);
2860 } while_each_pid_task(pid, PIDTYPE_PID, p);
2864 static void clear_ftrace_pid_task(struct pid *pid)
2866 if (pid == ftrace_swapper_pid)
2867 clear_ftrace_swapper();
2869 clear_ftrace_pid(pid);
2872 static void set_ftrace_pid_task(struct pid *pid)
2874 if (pid == ftrace_swapper_pid)
2875 set_ftrace_swapper();
2877 set_ftrace_pid(pid);
2880 static int ftrace_pid_add(int p)
2883 struct ftrace_pid *fpid;
2886 mutex_lock(&ftrace_lock);
2889 pid = ftrace_swapper_pid;
2891 pid = find_get_pid(p);
2898 list_for_each_entry(fpid, &ftrace_pids, list)
2899 if (fpid->pid == pid)
2904 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
2908 list_add(&fpid->list, &ftrace_pids);
2911 set_ftrace_pid_task(pid);
2913 ftrace_update_pid_func();
2914 ftrace_startup_enable(0);
2916 mutex_unlock(&ftrace_lock);
2920 if (pid != ftrace_swapper_pid)
2924 mutex_unlock(&ftrace_lock);
2928 static void ftrace_pid_reset(void)
2930 struct ftrace_pid *fpid, *safe;
2932 mutex_lock(&ftrace_lock);
2933 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
2934 struct pid *pid = fpid->pid;
2936 clear_ftrace_pid_task(pid);
2938 list_del(&fpid->list);
2942 ftrace_update_pid_func();
2943 ftrace_startup_enable(0);
2945 mutex_unlock(&ftrace_lock);
2948 static void *fpid_start(struct seq_file *m, loff_t *pos)
2950 mutex_lock(&ftrace_lock);
2952 if (list_empty(&ftrace_pids) && (!*pos))
2955 return seq_list_start(&ftrace_pids, *pos);
2958 static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
2963 return seq_list_next(v, &ftrace_pids, pos);
2966 static void fpid_stop(struct seq_file *m, void *p)
2968 mutex_unlock(&ftrace_lock);
2971 static int fpid_show(struct seq_file *m, void *v)
2973 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
2975 if (v == (void *)1) {
2976 seq_printf(m, "no pid\n");
2980 if (fpid->pid == ftrace_swapper_pid)
2981 seq_printf(m, "swapper tasks\n");
2983 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
2988 static const struct seq_operations ftrace_pid_sops = {
2989 .start = fpid_start,
2996 ftrace_pid_open(struct inode *inode, struct file *file)
3000 if ((file->f_mode & FMODE_WRITE) &&
3001 (file->f_flags & O_TRUNC))
3004 if (file->f_mode & FMODE_READ)
3005 ret = seq_open(file, &ftrace_pid_sops);
3011 ftrace_pid_write(struct file *filp, const char __user *ubuf,
3012 size_t cnt, loff_t *ppos)
3018 if (cnt >= sizeof(buf))
3021 if (copy_from_user(&buf, ubuf, cnt))
3027 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
3028 * to clean the filter quietly.
3030 tmp = strstrip(buf);
3031 if (strlen(tmp) == 0)
3034 ret = strict_strtol(tmp, 10, &val);
3038 ret = ftrace_pid_add(val);
3040 return ret ? ret : cnt;
3044 ftrace_pid_release(struct inode *inode, struct file *file)
3046 if (file->f_mode & FMODE_READ)
3047 seq_release(inode, file);
3052 static const struct file_operations ftrace_pid_fops = {
3053 .open = ftrace_pid_open,
3054 .write = ftrace_pid_write,
3056 .llseek = seq_lseek,
3057 .release = ftrace_pid_release,
3060 static __init int ftrace_init_debugfs(void)
3062 struct dentry *d_tracer;
3064 d_tracer = tracing_init_dentry();
3068 ftrace_init_dyn_debugfs(d_tracer);
3070 trace_create_file("set_ftrace_pid", 0644, d_tracer,
3071 NULL, &ftrace_pid_fops);
3073 ftrace_profile_debugfs(d_tracer);
3077 fs_initcall(ftrace_init_debugfs);
3080 * ftrace_kill - kill ftrace
3082 * This function should be used by panic code. It stops ftrace
3083 * but in a not so nice way. If you need to simply kill ftrace
3084 * from a non-atomic section, use ftrace_kill.
3086 void ftrace_kill(void)
3088 ftrace_disabled = 1;
3090 clear_ftrace_function();
3094 * register_ftrace_function - register a function for profiling
3095 * @ops - ops structure that holds the function for profiling.
3097 * Register a function to be called by all functions in the
3100 * Note: @ops->func and all the functions it calls must be labeled
3101 * with "notrace", otherwise it will go into a
3104 int register_ftrace_function(struct ftrace_ops *ops)
3108 if (unlikely(ftrace_disabled))
3111 mutex_lock(&ftrace_lock);
3113 ret = __register_ftrace_function(ops);
3116 mutex_unlock(&ftrace_lock);
3121 * unregister_ftrace_function - unregister a function for profiling.
3122 * @ops - ops structure that holds the function to unregister
3124 * Unregister a function that was added to be called by ftrace profiling.
3126 int unregister_ftrace_function(struct ftrace_ops *ops)
3130 mutex_lock(&ftrace_lock);
3131 ret = __unregister_ftrace_function(ops);
3133 mutex_unlock(&ftrace_lock);
3139 ftrace_enable_sysctl(struct ctl_table *table, int write,
3140 void __user *buffer, size_t *lenp,
3145 if (unlikely(ftrace_disabled))
3148 mutex_lock(&ftrace_lock);
3150 ret = proc_dointvec(table, write, buffer, lenp, ppos);
3152 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
3155 last_ftrace_enabled = !!ftrace_enabled;
3157 if (ftrace_enabled) {
3159 ftrace_startup_sysctl();
3161 /* we are starting ftrace again */
3162 if (ftrace_list != &ftrace_list_end) {
3163 if (ftrace_list->next == &ftrace_list_end)
3164 ftrace_trace_function = ftrace_list->func;
3166 ftrace_trace_function = ftrace_list_func;
3170 /* stopping ftrace calls (just send to ftrace_stub) */
3171 ftrace_trace_function = ftrace_stub;
3173 ftrace_shutdown_sysctl();
3177 mutex_unlock(&ftrace_lock);
3181 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3183 static int ftrace_graph_active;
3184 static struct notifier_block ftrace_suspend_notifier;
3186 int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
3191 /* The callbacks that hook a function */
3192 trace_func_graph_ret_t ftrace_graph_return =
3193 (trace_func_graph_ret_t)ftrace_stub;
3194 trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
3196 /* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
3197 static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
3201 unsigned long flags;
3202 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
3203 struct task_struct *g, *t;
3205 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
3206 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
3207 * sizeof(struct ftrace_ret_stack),
3209 if (!ret_stack_list[i]) {
3217 read_lock_irqsave(&tasklist_lock, flags);
3218 do_each_thread(g, t) {
3224 if (t->ret_stack == NULL) {
3225 atomic_set(&t->tracing_graph_pause, 0);
3226 atomic_set(&t->trace_overrun, 0);
3227 t->curr_ret_stack = -1;
3228 /* Make sure the tasks see the -1 first: */
3230 t->ret_stack = ret_stack_list[start++];
3232 } while_each_thread(g, t);
3235 read_unlock_irqrestore(&tasklist_lock, flags);
3237 for (i = start; i < end; i++)
3238 kfree(ret_stack_list[i]);
3243 ftrace_graph_probe_sched_switch(void *ignore,
3244 struct task_struct *prev, struct task_struct *next)
3246 unsigned long long timestamp;
3250 * Does the user want to count the time a function was asleep.
3251 * If so, do not update the time stamps.
3253 if (trace_flags & TRACE_ITER_SLEEP_TIME)
3256 timestamp = trace_clock_local();
3258 prev->ftrace_timestamp = timestamp;
3260 /* only process tasks that we timestamped */
3261 if (!next->ftrace_timestamp)
3265 * Update all the counters in next to make up for the
3266 * time next was sleeping.
3268 timestamp -= next->ftrace_timestamp;
3270 for (index = next->curr_ret_stack; index >= 0; index--)
3271 next->ret_stack[index].calltime += timestamp;
3274 /* Allocate a return stack for each task */
3275 static int start_graph_tracing(void)
3277 struct ftrace_ret_stack **ret_stack_list;
3280 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
3281 sizeof(struct ftrace_ret_stack *),
3284 if (!ret_stack_list)
3287 /* The cpu_boot init_task->ret_stack will never be freed */
3288 for_each_online_cpu(cpu) {
3289 if (!idle_task(cpu)->ret_stack)
3290 ftrace_graph_init_task(idle_task(cpu));
3294 ret = alloc_retstack_tasklist(ret_stack_list);
3295 } while (ret == -EAGAIN);
3298 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
3300 pr_info("ftrace_graph: Couldn't activate tracepoint"
3301 " probe to kernel_sched_switch\n");
3304 kfree(ret_stack_list);
3309 * Hibernation protection.
3310 * The state of the current task is too much unstable during
3311 * suspend/restore to disk. We want to protect against that.
3314 ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
3318 case PM_HIBERNATION_PREPARE:
3319 pause_graph_tracing();
3322 case PM_POST_HIBERNATION:
3323 unpause_graph_tracing();
3329 int register_ftrace_graph(trace_func_graph_ret_t retfunc,
3330 trace_func_graph_ent_t entryfunc)
3334 mutex_lock(&ftrace_lock);
3336 /* we currently allow only one tracer registered at a time */
3337 if (ftrace_graph_active) {
3342 ftrace_suspend_notifier.notifier_call = ftrace_suspend_notifier_call;
3343 register_pm_notifier(&ftrace_suspend_notifier);
3345 ftrace_graph_active++;
3346 ret = start_graph_tracing();
3348 ftrace_graph_active--;
3352 ftrace_graph_return = retfunc;
3353 ftrace_graph_entry = entryfunc;
3355 ftrace_startup(FTRACE_START_FUNC_RET);
3358 mutex_unlock(&ftrace_lock);
3362 void unregister_ftrace_graph(void)
3364 mutex_lock(&ftrace_lock);
3366 if (unlikely(!ftrace_graph_active))
3369 ftrace_graph_active--;
3370 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
3371 ftrace_graph_entry = ftrace_graph_entry_stub;
3372 ftrace_shutdown(FTRACE_STOP_FUNC_RET);
3373 unregister_pm_notifier(&ftrace_suspend_notifier);
3374 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
3377 mutex_unlock(&ftrace_lock);
3380 /* Allocate a return stack for newly created task */
3381 void ftrace_graph_init_task(struct task_struct *t)
3383 /* Make sure we do not use the parent ret_stack */
3384 t->ret_stack = NULL;
3385 t->curr_ret_stack = -1;
3387 if (ftrace_graph_active) {
3388 struct ftrace_ret_stack *ret_stack;
3390 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
3391 * sizeof(struct ftrace_ret_stack),
3395 atomic_set(&t->tracing_graph_pause, 0);
3396 atomic_set(&t->trace_overrun, 0);
3397 t->ftrace_timestamp = 0;
3398 /* make curr_ret_stack visable before we add the ret_stack */
3400 t->ret_stack = ret_stack;
3404 void ftrace_graph_exit_task(struct task_struct *t)
3406 struct ftrace_ret_stack *ret_stack = t->ret_stack;
3408 t->ret_stack = NULL;
3409 /* NULL must become visible to IRQs before we free it: */
3415 void ftrace_graph_stop(void)