2 * Infrastructure for profiling code inserted by 'gcc -pg'.
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2004-2008 Ingo Molnar <mingo@redhat.com>
7 * Originally ported from the -rt patch by:
8 * Copyright (C) 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
10 * Based on code in the latency_tracer, that is:
12 * Copyright (C) 2004-2006 Ingo Molnar
13 * Copyright (C) 2004 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/kprobes.h>
26 #include <linux/ftrace.h>
27 #include <linux/sysctl.h>
28 #include <linux/ctype.h>
29 #include <linux/list.h>
30 #include <linux/hash.h>
32 #include <trace/events/sched.h>
34 #include <asm/ftrace.h>
35 #include <asm/setup.h>
37 #include "trace_output.h"
38 #include "trace_stat.h"
40 #define FTRACE_WARN_ON(cond) \
46 #define FTRACE_WARN_ON_ONCE(cond) \
48 if (WARN_ON_ONCE(cond)) \
52 /* hash bits for specific function selection */
53 #define FTRACE_HASH_BITS 7
54 #define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
56 /* ftrace_enabled is a method to turn ftrace on or off */
57 int ftrace_enabled __read_mostly;
58 static int last_ftrace_enabled;
60 /* Quick disabling of function tracer. */
61 int function_trace_stop;
64 * ftrace_disabled is set when an anomaly is discovered.
65 * ftrace_disabled is much stronger than ftrace_enabled.
67 static int ftrace_disabled __read_mostly;
69 static DEFINE_MUTEX(ftrace_lock);
71 static struct ftrace_ops ftrace_list_end __read_mostly =
76 static struct ftrace_ops *ftrace_list __read_mostly = &ftrace_list_end;
77 ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
78 ftrace_func_t __ftrace_trace_function __read_mostly = ftrace_stub;
79 ftrace_func_t ftrace_pid_function __read_mostly = ftrace_stub;
81 static void ftrace_list_func(unsigned long ip, unsigned long parent_ip)
83 struct ftrace_ops *op = ftrace_list;
85 /* in case someone actually ports this to alpha! */
86 read_barrier_depends();
88 while (op != &ftrace_list_end) {
90 read_barrier_depends();
91 op->func(ip, parent_ip);
96 static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip)
98 if (!test_tsk_trace_trace(current))
101 ftrace_pid_function(ip, parent_ip);
104 static void set_ftrace_pid_function(ftrace_func_t func)
106 /* do not set ftrace_pid_function to itself! */
107 if (func != ftrace_pid_func)
108 ftrace_pid_function = func;
112 * clear_ftrace_function - reset the ftrace function
114 * This NULLs the ftrace function and in essence stops
115 * tracing. There may be lag
117 void clear_ftrace_function(void)
119 ftrace_trace_function = ftrace_stub;
120 __ftrace_trace_function = ftrace_stub;
121 ftrace_pid_function = ftrace_stub;
124 #ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
126 * For those archs that do not test ftrace_trace_stop in their
127 * mcount call site, we need to do it from C.
129 static void ftrace_test_stop_func(unsigned long ip, unsigned long parent_ip)
131 if (function_trace_stop)
134 __ftrace_trace_function(ip, parent_ip);
138 static int __register_ftrace_function(struct ftrace_ops *ops)
140 ops->next = ftrace_list;
142 * We are entering ops into the ftrace_list but another
143 * CPU might be walking that list. We need to make sure
144 * the ops->next pointer is valid before another CPU sees
145 * the ops pointer included into the ftrace_list.
150 if (ftrace_enabled) {
153 if (ops->next == &ftrace_list_end)
156 func = ftrace_list_func;
158 if (ftrace_pid_trace) {
159 set_ftrace_pid_function(func);
160 func = ftrace_pid_func;
164 * For one func, simply call it directly.
165 * For more than one func, call the chain.
167 #ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
168 ftrace_trace_function = func;
170 __ftrace_trace_function = func;
171 ftrace_trace_function = ftrace_test_stop_func;
178 static int __unregister_ftrace_function(struct ftrace_ops *ops)
180 struct ftrace_ops **p;
183 * If we are removing the last function, then simply point
184 * to the ftrace_stub.
186 if (ftrace_list == ops && ops->next == &ftrace_list_end) {
187 ftrace_trace_function = ftrace_stub;
188 ftrace_list = &ftrace_list_end;
192 for (p = &ftrace_list; *p != &ftrace_list_end; p = &(*p)->next)
201 if (ftrace_enabled) {
202 /* If we only have one func left, then call that directly */
203 if (ftrace_list->next == &ftrace_list_end) {
204 ftrace_func_t func = ftrace_list->func;
206 if (ftrace_pid_trace) {
207 set_ftrace_pid_function(func);
208 func = ftrace_pid_func;
210 #ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
211 ftrace_trace_function = func;
213 __ftrace_trace_function = func;
221 static void ftrace_update_pid_func(void)
225 if (ftrace_trace_function == ftrace_stub)
228 func = ftrace_trace_function;
230 if (ftrace_pid_trace) {
231 set_ftrace_pid_function(func);
232 func = ftrace_pid_func;
234 if (func == ftrace_pid_func)
235 func = ftrace_pid_function;
238 #ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
239 ftrace_trace_function = func;
241 __ftrace_trace_function = func;
245 #ifdef CONFIG_FUNCTION_PROFILER
246 struct ftrace_profile {
247 struct hlist_node node;
249 unsigned long counter;
250 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
251 unsigned long long time;
255 struct ftrace_profile_page {
256 struct ftrace_profile_page *next;
258 struct ftrace_profile records[];
261 struct ftrace_profile_stat {
263 struct hlist_head *hash;
264 struct ftrace_profile_page *pages;
265 struct ftrace_profile_page *start;
266 struct tracer_stat stat;
269 #define PROFILE_RECORDS_SIZE \
270 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
272 #define PROFILES_PER_PAGE \
273 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
275 static int ftrace_profile_bits __read_mostly;
276 static int ftrace_profile_enabled __read_mostly;
278 /* ftrace_profile_lock - synchronize the enable and disable of the profiler */
279 static DEFINE_MUTEX(ftrace_profile_lock);
281 static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
283 #define FTRACE_PROFILE_HASH_SIZE 1024 /* must be power of 2 */
286 function_stat_next(void *v, int idx)
288 struct ftrace_profile *rec = v;
289 struct ftrace_profile_page *pg;
291 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
295 if ((void *)rec >= (void *)&pg->records[pg->index]) {
299 rec = &pg->records[0];
307 static void *function_stat_start(struct tracer_stat *trace)
309 struct ftrace_profile_stat *stat =
310 container_of(trace, struct ftrace_profile_stat, stat);
312 if (!stat || !stat->start)
315 return function_stat_next(&stat->start->records[0], 0);
318 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
319 /* function graph compares on total time */
320 static int function_stat_cmp(void *p1, void *p2)
322 struct ftrace_profile *a = p1;
323 struct ftrace_profile *b = p2;
325 if (a->time < b->time)
327 if (a->time > b->time)
333 /* not function graph compares against hits */
334 static int function_stat_cmp(void *p1, void *p2)
336 struct ftrace_profile *a = p1;
337 struct ftrace_profile *b = p2;
339 if (a->counter < b->counter)
341 if (a->counter > b->counter)
348 static int function_stat_headers(struct seq_file *m)
350 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
351 seq_printf(m, " Function "
356 seq_printf(m, " Function Hit\n"
362 static int function_stat_show(struct seq_file *m, void *v)
364 struct ftrace_profile *rec = v;
365 char str[KSYM_SYMBOL_LEN];
366 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
367 static DEFINE_MUTEX(mutex);
368 static struct trace_seq s;
369 unsigned long long avg;
372 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
373 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
375 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
378 do_div(avg, rec->counter);
382 trace_print_graph_duration(rec->time, &s);
383 trace_seq_puts(&s, " ");
384 trace_print_graph_duration(avg, &s);
385 trace_print_seq(m, &s);
386 mutex_unlock(&mutex);
393 static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
395 struct ftrace_profile_page *pg;
397 pg = stat->pages = stat->start;
400 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
405 memset(stat->hash, 0,
406 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
409 int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
411 struct ftrace_profile_page *pg;
416 /* If we already allocated, do nothing */
420 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
424 #ifdef CONFIG_DYNAMIC_FTRACE
425 functions = ftrace_update_tot_cnt;
428 * We do not know the number of functions that exist because
429 * dynamic tracing is what counts them. With past experience
430 * we have around 20K functions. That should be more than enough.
431 * It is highly unlikely we will execute every function in
437 pg = stat->start = stat->pages;
439 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
441 for (i = 0; i < pages; i++) {
442 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
453 unsigned long tmp = (unsigned long)pg;
459 free_page((unsigned long)stat->pages);
466 static int ftrace_profile_init_cpu(int cpu)
468 struct ftrace_profile_stat *stat;
471 stat = &per_cpu(ftrace_profile_stats, cpu);
474 /* If the profile is already created, simply reset it */
475 ftrace_profile_reset(stat);
480 * We are profiling all functions, but usually only a few thousand
481 * functions are hit. We'll make a hash of 1024 items.
483 size = FTRACE_PROFILE_HASH_SIZE;
485 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
490 if (!ftrace_profile_bits) {
493 for (; size; size >>= 1)
494 ftrace_profile_bits++;
497 /* Preallocate the function profiling pages */
498 if (ftrace_profile_pages_init(stat) < 0) {
507 static int ftrace_profile_init(void)
512 for_each_online_cpu(cpu) {
513 ret = ftrace_profile_init_cpu(cpu);
521 /* interrupts must be disabled */
522 static struct ftrace_profile *
523 ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
525 struct ftrace_profile *rec;
526 struct hlist_head *hhd;
527 struct hlist_node *n;
530 key = hash_long(ip, ftrace_profile_bits);
531 hhd = &stat->hash[key];
533 if (hlist_empty(hhd))
536 hlist_for_each_entry_rcu(rec, n, hhd, node) {
544 static void ftrace_add_profile(struct ftrace_profile_stat *stat,
545 struct ftrace_profile *rec)
549 key = hash_long(rec->ip, ftrace_profile_bits);
550 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
554 * The memory is already allocated, this simply finds a new record to use.
556 static struct ftrace_profile *
557 ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
559 struct ftrace_profile *rec = NULL;
561 /* prevent recursion (from NMIs) */
562 if (atomic_inc_return(&stat->disabled) != 1)
566 * Try to find the function again since an NMI
567 * could have added it
569 rec = ftrace_find_profiled_func(stat, ip);
573 if (stat->pages->index == PROFILES_PER_PAGE) {
574 if (!stat->pages->next)
576 stat->pages = stat->pages->next;
579 rec = &stat->pages->records[stat->pages->index++];
581 ftrace_add_profile(stat, rec);
584 atomic_dec(&stat->disabled);
590 function_profile_call(unsigned long ip, unsigned long parent_ip)
592 struct ftrace_profile_stat *stat;
593 struct ftrace_profile *rec;
596 if (!ftrace_profile_enabled)
599 local_irq_save(flags);
601 stat = &__get_cpu_var(ftrace_profile_stats);
602 if (!stat->hash || !ftrace_profile_enabled)
605 rec = ftrace_find_profiled_func(stat, ip);
607 rec = ftrace_profile_alloc(stat, ip);
614 local_irq_restore(flags);
617 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
618 static int profile_graph_entry(struct ftrace_graph_ent *trace)
620 function_profile_call(trace->func, 0);
624 static void profile_graph_return(struct ftrace_graph_ret *trace)
626 struct ftrace_profile_stat *stat;
627 unsigned long long calltime;
628 struct ftrace_profile *rec;
631 local_irq_save(flags);
632 stat = &__get_cpu_var(ftrace_profile_stats);
633 if (!stat->hash || !ftrace_profile_enabled)
636 calltime = trace->rettime - trace->calltime;
638 if (!(trace_flags & TRACE_ITER_GRAPH_TIME)) {
641 index = trace->depth;
643 /* Append this call time to the parent time to subtract */
645 current->ret_stack[index - 1].subtime += calltime;
647 if (current->ret_stack[index].subtime < calltime)
648 calltime -= current->ret_stack[index].subtime;
653 rec = ftrace_find_profiled_func(stat, trace->func);
655 rec->time += calltime;
658 local_irq_restore(flags);
661 static int register_ftrace_profiler(void)
663 return register_ftrace_graph(&profile_graph_return,
664 &profile_graph_entry);
667 static void unregister_ftrace_profiler(void)
669 unregister_ftrace_graph();
672 static struct ftrace_ops ftrace_profile_ops __read_mostly =
674 .func = function_profile_call,
677 static int register_ftrace_profiler(void)
679 return register_ftrace_function(&ftrace_profile_ops);
682 static void unregister_ftrace_profiler(void)
684 unregister_ftrace_function(&ftrace_profile_ops);
686 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
689 ftrace_profile_write(struct file *filp, const char __user *ubuf,
690 size_t cnt, loff_t *ppos)
693 char buf[64]; /* big enough to hold a number */
696 if (cnt >= sizeof(buf))
699 if (copy_from_user(&buf, ubuf, cnt))
704 ret = strict_strtoul(buf, 10, &val);
710 mutex_lock(&ftrace_profile_lock);
711 if (ftrace_profile_enabled ^ val) {
713 ret = ftrace_profile_init();
719 ret = register_ftrace_profiler();
724 ftrace_profile_enabled = 1;
726 ftrace_profile_enabled = 0;
728 * unregister_ftrace_profiler calls stop_machine
729 * so this acts like an synchronize_sched.
731 unregister_ftrace_profiler();
735 mutex_unlock(&ftrace_profile_lock);
743 ftrace_profile_read(struct file *filp, char __user *ubuf,
744 size_t cnt, loff_t *ppos)
746 char buf[64]; /* big enough to hold a number */
749 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
750 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
753 static const struct file_operations ftrace_profile_fops = {
754 .open = tracing_open_generic,
755 .read = ftrace_profile_read,
756 .write = ftrace_profile_write,
759 /* used to initialize the real stat files */
760 static struct tracer_stat function_stats __initdata = {
762 .stat_start = function_stat_start,
763 .stat_next = function_stat_next,
764 .stat_cmp = function_stat_cmp,
765 .stat_headers = function_stat_headers,
766 .stat_show = function_stat_show
769 static void ftrace_profile_debugfs(struct dentry *d_tracer)
771 struct ftrace_profile_stat *stat;
772 struct dentry *entry;
777 for_each_possible_cpu(cpu) {
778 stat = &per_cpu(ftrace_profile_stats, cpu);
780 /* allocate enough for function name + cpu number */
781 name = kmalloc(32, GFP_KERNEL);
784 * The files created are permanent, if something happens
785 * we still do not free memory.
789 "Could not allocate stat file for cpu %d\n",
793 stat->stat = function_stats;
794 snprintf(name, 32, "function%d", cpu);
795 stat->stat.name = name;
796 ret = register_stat_tracer(&stat->stat);
799 "Could not register function stat for cpu %d\n",
806 entry = debugfs_create_file("function_profile_enabled", 0644,
807 d_tracer, NULL, &ftrace_profile_fops);
809 pr_warning("Could not create debugfs "
810 "'function_profile_enabled' entry\n");
813 #else /* CONFIG_FUNCTION_PROFILER */
814 static void ftrace_profile_debugfs(struct dentry *d_tracer)
817 #endif /* CONFIG_FUNCTION_PROFILER */
819 /* set when tracing only a pid */
820 struct pid *ftrace_pid_trace;
821 static struct pid * const ftrace_swapper_pid = &init_struct_pid;
823 #ifdef CONFIG_DYNAMIC_FTRACE
825 #ifndef CONFIG_FTRACE_MCOUNT_RECORD
826 # error Dynamic ftrace depends on MCOUNT_RECORD
829 static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
831 struct ftrace_func_probe {
832 struct hlist_node node;
833 struct ftrace_probe_ops *ops;
841 FTRACE_ENABLE_CALLS = (1 << 0),
842 FTRACE_DISABLE_CALLS = (1 << 1),
843 FTRACE_UPDATE_TRACE_FUNC = (1 << 2),
844 FTRACE_ENABLE_MCOUNT = (1 << 3),
845 FTRACE_DISABLE_MCOUNT = (1 << 4),
846 FTRACE_START_FUNC_RET = (1 << 5),
847 FTRACE_STOP_FUNC_RET = (1 << 6),
850 static int ftrace_filtered;
852 static struct dyn_ftrace *ftrace_new_addrs;
854 static DEFINE_MUTEX(ftrace_regex_lock);
857 struct ftrace_page *next;
859 struct dyn_ftrace records[];
862 #define ENTRIES_PER_PAGE \
863 ((PAGE_SIZE - sizeof(struct ftrace_page)) / sizeof(struct dyn_ftrace))
865 /* estimate from running different kernels */
866 #define NR_TO_INIT 10000
868 static struct ftrace_page *ftrace_pages_start;
869 static struct ftrace_page *ftrace_pages;
871 static struct dyn_ftrace *ftrace_free_records;
874 * This is a double for. Do not use 'break' to break out of the loop,
875 * you must use a goto.
877 #define do_for_each_ftrace_rec(pg, rec) \
878 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
880 for (_____i = 0; _____i < pg->index; _____i++) { \
881 rec = &pg->records[_____i];
883 #define while_for_each_ftrace_rec() \
887 #ifdef CONFIG_KPROBES
889 static int frozen_record_count;
891 static inline void freeze_record(struct dyn_ftrace *rec)
893 if (!(rec->flags & FTRACE_FL_FROZEN)) {
894 rec->flags |= FTRACE_FL_FROZEN;
895 frozen_record_count++;
899 static inline void unfreeze_record(struct dyn_ftrace *rec)
901 if (rec->flags & FTRACE_FL_FROZEN) {
902 rec->flags &= ~FTRACE_FL_FROZEN;
903 frozen_record_count--;
907 static inline int record_frozen(struct dyn_ftrace *rec)
909 return rec->flags & FTRACE_FL_FROZEN;
912 # define freeze_record(rec) ({ 0; })
913 # define unfreeze_record(rec) ({ 0; })
914 # define record_frozen(rec) ({ 0; })
915 #endif /* CONFIG_KPROBES */
917 static void ftrace_free_rec(struct dyn_ftrace *rec)
919 rec->freelist = ftrace_free_records;
920 ftrace_free_records = rec;
921 rec->flags |= FTRACE_FL_FREE;
924 static struct dyn_ftrace *ftrace_alloc_dyn_node(unsigned long ip)
926 struct dyn_ftrace *rec;
928 /* First check for freed records */
929 if (ftrace_free_records) {
930 rec = ftrace_free_records;
932 if (unlikely(!(rec->flags & FTRACE_FL_FREE))) {
933 FTRACE_WARN_ON_ONCE(1);
934 ftrace_free_records = NULL;
938 ftrace_free_records = rec->freelist;
939 memset(rec, 0, sizeof(*rec));
943 if (ftrace_pages->index == ENTRIES_PER_PAGE) {
944 if (!ftrace_pages->next) {
945 /* allocate another page */
947 (void *)get_zeroed_page(GFP_KERNEL);
948 if (!ftrace_pages->next)
951 ftrace_pages = ftrace_pages->next;
954 return &ftrace_pages->records[ftrace_pages->index++];
957 static struct dyn_ftrace *
958 ftrace_record_ip(unsigned long ip)
960 struct dyn_ftrace *rec;
965 rec = ftrace_alloc_dyn_node(ip);
970 rec->newlist = ftrace_new_addrs;
971 ftrace_new_addrs = rec;
976 static void print_ip_ins(const char *fmt, unsigned char *p)
980 printk(KERN_CONT "%s", fmt);
982 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
983 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
986 static void ftrace_bug(int failed, unsigned long ip)
990 FTRACE_WARN_ON_ONCE(1);
991 pr_info("ftrace faulted on modifying ");
995 FTRACE_WARN_ON_ONCE(1);
996 pr_info("ftrace failed to modify ");
998 print_ip_ins(" actual: ", (unsigned char *)ip);
999 printk(KERN_CONT "\n");
1002 FTRACE_WARN_ON_ONCE(1);
1003 pr_info("ftrace faulted on writing ");
1007 FTRACE_WARN_ON_ONCE(1);
1008 pr_info("ftrace faulted on unknown error ");
1015 __ftrace_replace_code(struct dyn_ftrace *rec, int enable)
1017 unsigned long ftrace_addr;
1018 unsigned long ip, fl;
1020 ftrace_addr = (unsigned long)FTRACE_ADDR;
1025 * If this record is not to be traced and
1026 * it is not enabled then do nothing.
1028 * If this record is not to be traced and
1029 * it is enabled then disable it.
1032 if (rec->flags & FTRACE_FL_NOTRACE) {
1033 if (rec->flags & FTRACE_FL_ENABLED)
1034 rec->flags &= ~FTRACE_FL_ENABLED;
1038 } else if (ftrace_filtered && enable) {
1043 fl = rec->flags & (FTRACE_FL_FILTER | FTRACE_FL_ENABLED);
1045 /* Record is filtered and enabled, do nothing */
1046 if (fl == (FTRACE_FL_FILTER | FTRACE_FL_ENABLED))
1049 /* Record is not filtered or enabled, do nothing */
1053 /* Record is not filtered but enabled, disable it */
1054 if (fl == FTRACE_FL_ENABLED)
1055 rec->flags &= ~FTRACE_FL_ENABLED;
1057 /* Otherwise record is filtered but not enabled, enable it */
1058 rec->flags |= FTRACE_FL_ENABLED;
1060 /* Disable or not filtered */
1063 /* if record is enabled, do nothing */
1064 if (rec->flags & FTRACE_FL_ENABLED)
1067 rec->flags |= FTRACE_FL_ENABLED;
1071 /* if record is not enabled, do nothing */
1072 if (!(rec->flags & FTRACE_FL_ENABLED))
1075 rec->flags &= ~FTRACE_FL_ENABLED;
1079 if (rec->flags & FTRACE_FL_ENABLED)
1080 return ftrace_make_call(rec, ftrace_addr);
1082 return ftrace_make_nop(NULL, rec, ftrace_addr);
1085 static void ftrace_replace_code(int enable)
1087 struct dyn_ftrace *rec;
1088 struct ftrace_page *pg;
1091 do_for_each_ftrace_rec(pg, rec) {
1093 * Skip over free records, records that have
1094 * failed and not converted.
1096 if (rec->flags & FTRACE_FL_FREE ||
1097 rec->flags & FTRACE_FL_FAILED ||
1098 !(rec->flags & FTRACE_FL_CONVERTED))
1101 /* ignore updates to this record's mcount site */
1102 if (get_kprobe((void *)rec->ip)) {
1106 unfreeze_record(rec);
1109 failed = __ftrace_replace_code(rec, enable);
1111 rec->flags |= FTRACE_FL_FAILED;
1112 if ((system_state == SYSTEM_BOOTING) ||
1113 !core_kernel_text(rec->ip)) {
1114 ftrace_free_rec(rec);
1116 ftrace_bug(failed, rec->ip);
1117 /* Stop processing */
1121 } while_for_each_ftrace_rec();
1125 ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
1132 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
1134 ftrace_bug(ret, ip);
1135 rec->flags |= FTRACE_FL_FAILED;
1142 * archs can override this function if they must do something
1143 * before the modifying code is performed.
1145 int __weak ftrace_arch_code_modify_prepare(void)
1151 * archs can override this function if they must do something
1152 * after the modifying code is performed.
1154 int __weak ftrace_arch_code_modify_post_process(void)
1159 static int __ftrace_modify_code(void *data)
1161 int *command = data;
1163 if (*command & FTRACE_ENABLE_CALLS)
1164 ftrace_replace_code(1);
1165 else if (*command & FTRACE_DISABLE_CALLS)
1166 ftrace_replace_code(0);
1168 if (*command & FTRACE_UPDATE_TRACE_FUNC)
1169 ftrace_update_ftrace_func(ftrace_trace_function);
1171 if (*command & FTRACE_START_FUNC_RET)
1172 ftrace_enable_ftrace_graph_caller();
1173 else if (*command & FTRACE_STOP_FUNC_RET)
1174 ftrace_disable_ftrace_graph_caller();
1179 static void ftrace_run_update_code(int command)
1183 ret = ftrace_arch_code_modify_prepare();
1184 FTRACE_WARN_ON(ret);
1188 stop_machine(__ftrace_modify_code, &command, NULL);
1190 ret = ftrace_arch_code_modify_post_process();
1191 FTRACE_WARN_ON(ret);
1194 static ftrace_func_t saved_ftrace_func;
1195 static int ftrace_start_up;
1197 static void ftrace_startup_enable(int command)
1199 if (saved_ftrace_func != ftrace_trace_function) {
1200 saved_ftrace_func = ftrace_trace_function;
1201 command |= FTRACE_UPDATE_TRACE_FUNC;
1204 if (!command || !ftrace_enabled)
1207 ftrace_run_update_code(command);
1210 static void ftrace_startup(int command)
1212 if (unlikely(ftrace_disabled))
1216 command |= FTRACE_ENABLE_CALLS;
1218 ftrace_startup_enable(command);
1221 static void ftrace_shutdown(int command)
1223 if (unlikely(ftrace_disabled))
1227 if (!ftrace_start_up)
1228 command |= FTRACE_DISABLE_CALLS;
1230 if (saved_ftrace_func != ftrace_trace_function) {
1231 saved_ftrace_func = ftrace_trace_function;
1232 command |= FTRACE_UPDATE_TRACE_FUNC;
1235 if (!command || !ftrace_enabled)
1238 ftrace_run_update_code(command);
1241 static void ftrace_startup_sysctl(void)
1243 int command = FTRACE_ENABLE_MCOUNT;
1245 if (unlikely(ftrace_disabled))
1248 /* Force update next time */
1249 saved_ftrace_func = NULL;
1250 /* ftrace_start_up is true if we want ftrace running */
1251 if (ftrace_start_up)
1252 command |= FTRACE_ENABLE_CALLS;
1254 ftrace_run_update_code(command);
1257 static void ftrace_shutdown_sysctl(void)
1259 int command = FTRACE_DISABLE_MCOUNT;
1261 if (unlikely(ftrace_disabled))
1264 /* ftrace_start_up is true if ftrace is running */
1265 if (ftrace_start_up)
1266 command |= FTRACE_DISABLE_CALLS;
1268 ftrace_run_update_code(command);
1271 static cycle_t ftrace_update_time;
1272 static unsigned long ftrace_update_cnt;
1273 unsigned long ftrace_update_tot_cnt;
1275 static int ftrace_update_code(struct module *mod)
1277 struct dyn_ftrace *p;
1278 cycle_t start, stop;
1280 start = ftrace_now(raw_smp_processor_id());
1281 ftrace_update_cnt = 0;
1283 while (ftrace_new_addrs) {
1285 /* If something went wrong, bail without enabling anything */
1286 if (unlikely(ftrace_disabled))
1289 p = ftrace_new_addrs;
1290 ftrace_new_addrs = p->newlist;
1293 /* convert record (i.e, patch mcount-call with NOP) */
1294 if (ftrace_code_disable(mod, p)) {
1295 p->flags |= FTRACE_FL_CONVERTED;
1296 ftrace_update_cnt++;
1301 stop = ftrace_now(raw_smp_processor_id());
1302 ftrace_update_time = stop - start;
1303 ftrace_update_tot_cnt += ftrace_update_cnt;
1308 static int __init ftrace_dyn_table_alloc(unsigned long num_to_init)
1310 struct ftrace_page *pg;
1314 /* allocate a few pages */
1315 ftrace_pages_start = (void *)get_zeroed_page(GFP_KERNEL);
1316 if (!ftrace_pages_start)
1320 * Allocate a few more pages.
1322 * TODO: have some parser search vmlinux before
1323 * final linking to find all calls to ftrace.
1325 * a) know how many pages to allocate.
1327 * b) set up the table then.
1329 * The dynamic code is still necessary for
1333 pg = ftrace_pages = ftrace_pages_start;
1335 cnt = num_to_init / ENTRIES_PER_PAGE;
1336 pr_info("ftrace: allocating %ld entries in %d pages\n",
1337 num_to_init, cnt + 1);
1339 for (i = 0; i < cnt; i++) {
1340 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
1342 /* If we fail, we'll try later anyway */
1353 FTRACE_ITER_FILTER = (1 << 0),
1354 FTRACE_ITER_CONT = (1 << 1),
1355 FTRACE_ITER_NOTRACE = (1 << 2),
1356 FTRACE_ITER_FAILURES = (1 << 3),
1357 FTRACE_ITER_PRINTALL = (1 << 4),
1358 FTRACE_ITER_HASH = (1 << 5),
1361 #define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
1363 struct ftrace_iterator {
1364 struct ftrace_page *pg;
1368 unsigned char buffer[FTRACE_BUFF_MAX+1];
1369 unsigned buffer_idx;
1374 t_hash_next(struct seq_file *m, void *v, loff_t *pos)
1376 struct ftrace_iterator *iter = m->private;
1377 struct hlist_node *hnd = v;
1378 struct hlist_head *hhd;
1380 WARN_ON(!(iter->flags & FTRACE_ITER_HASH));
1385 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
1388 hhd = &ftrace_func_hash[iter->hidx];
1390 if (hlist_empty(hhd)) {
1409 static void *t_hash_start(struct seq_file *m, loff_t *pos)
1411 struct ftrace_iterator *iter = m->private;
1414 iter->flags |= FTRACE_ITER_HASH;
1416 return t_hash_next(m, p, pos);
1419 static int t_hash_show(struct seq_file *m, void *v)
1421 struct ftrace_func_probe *rec;
1422 struct hlist_node *hnd = v;
1423 char str[KSYM_SYMBOL_LEN];
1425 rec = hlist_entry(hnd, struct ftrace_func_probe, node);
1427 if (rec->ops->print)
1428 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
1430 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
1431 seq_printf(m, "%s:", str);
1433 kallsyms_lookup((unsigned long)rec->ops->func, NULL, NULL, NULL, str);
1434 seq_printf(m, "%s", str);
1437 seq_printf(m, ":%p", rec->data);
1444 t_next(struct seq_file *m, void *v, loff_t *pos)
1446 struct ftrace_iterator *iter = m->private;
1447 struct dyn_ftrace *rec = NULL;
1449 if (iter->flags & FTRACE_ITER_HASH)
1450 return t_hash_next(m, v, pos);
1454 if (iter->flags & FTRACE_ITER_PRINTALL)
1458 if (iter->idx >= iter->pg->index) {
1459 if (iter->pg->next) {
1460 iter->pg = iter->pg->next;
1467 rec = &iter->pg->records[iter->idx++];
1468 if ((rec->flags & FTRACE_FL_FREE) ||
1470 (!(iter->flags & FTRACE_ITER_FAILURES) &&
1471 (rec->flags & FTRACE_FL_FAILED)) ||
1473 ((iter->flags & FTRACE_ITER_FAILURES) &&
1474 !(rec->flags & FTRACE_FL_FAILED)) ||
1476 ((iter->flags & FTRACE_ITER_FILTER) &&
1477 !(rec->flags & FTRACE_FL_FILTER)) ||
1479 ((iter->flags & FTRACE_ITER_NOTRACE) &&
1480 !(rec->flags & FTRACE_FL_NOTRACE))) {
1489 static void *t_start(struct seq_file *m, loff_t *pos)
1491 struct ftrace_iterator *iter = m->private;
1494 mutex_lock(&ftrace_lock);
1496 * For set_ftrace_filter reading, if we have the filter
1497 * off, we can short cut and just print out that all
1498 * functions are enabled.
1500 if (iter->flags & FTRACE_ITER_FILTER && !ftrace_filtered) {
1502 return t_hash_start(m, pos);
1503 iter->flags |= FTRACE_ITER_PRINTALL;
1508 if (iter->flags & FTRACE_ITER_HASH)
1509 return t_hash_start(m, pos);
1518 p = t_next(m, p, pos);
1521 return t_hash_start(m, pos);
1526 static void t_stop(struct seq_file *m, void *p)
1528 mutex_unlock(&ftrace_lock);
1531 static int t_show(struct seq_file *m, void *v)
1533 struct ftrace_iterator *iter = m->private;
1534 struct dyn_ftrace *rec = v;
1535 char str[KSYM_SYMBOL_LEN];
1537 if (iter->flags & FTRACE_ITER_HASH)
1538 return t_hash_show(m, v);
1540 if (iter->flags & FTRACE_ITER_PRINTALL) {
1541 seq_printf(m, "#### all functions enabled ####\n");
1548 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
1550 seq_printf(m, "%s\n", str);
1555 static struct seq_operations show_ftrace_seq_ops = {
1563 ftrace_avail_open(struct inode *inode, struct file *file)
1565 struct ftrace_iterator *iter;
1568 if (unlikely(ftrace_disabled))
1571 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1575 iter->pg = ftrace_pages_start;
1577 ret = seq_open(file, &show_ftrace_seq_ops);
1579 struct seq_file *m = file->private_data;
1589 int ftrace_avail_release(struct inode *inode, struct file *file)
1591 struct seq_file *m = (struct seq_file *)file->private_data;
1592 struct ftrace_iterator *iter = m->private;
1594 seq_release(inode, file);
1601 ftrace_failures_open(struct inode *inode, struct file *file)
1605 struct ftrace_iterator *iter;
1607 ret = ftrace_avail_open(inode, file);
1609 m = (struct seq_file *)file->private_data;
1610 iter = (struct ftrace_iterator *)m->private;
1611 iter->flags = FTRACE_ITER_FAILURES;
1618 static void ftrace_filter_reset(int enable)
1620 struct ftrace_page *pg;
1621 struct dyn_ftrace *rec;
1622 unsigned long type = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
1624 mutex_lock(&ftrace_lock);
1626 ftrace_filtered = 0;
1627 do_for_each_ftrace_rec(pg, rec) {
1628 if (rec->flags & FTRACE_FL_FAILED)
1630 rec->flags &= ~type;
1631 } while_for_each_ftrace_rec();
1632 mutex_unlock(&ftrace_lock);
1636 ftrace_regex_open(struct inode *inode, struct file *file, int enable)
1638 struct ftrace_iterator *iter;
1641 if (unlikely(ftrace_disabled))
1644 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1648 mutex_lock(&ftrace_regex_lock);
1649 if ((file->f_mode & FMODE_WRITE) &&
1650 !(file->f_flags & O_APPEND))
1651 ftrace_filter_reset(enable);
1653 if (file->f_mode & FMODE_READ) {
1654 iter->pg = ftrace_pages_start;
1655 iter->flags = enable ? FTRACE_ITER_FILTER :
1656 FTRACE_ITER_NOTRACE;
1658 ret = seq_open(file, &show_ftrace_seq_ops);
1660 struct seq_file *m = file->private_data;
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;
1704 * (static function - no need for kernel doc)
1706 * Pass in a buffer containing a glob and this function will
1707 * set search to point to the search part of the buffer and
1708 * return the type of search it is (see enum above).
1709 * This does modify buff.
1711 * Returns enum type.
1712 * search returns the pointer to use for comparison.
1713 * not returns 1 if buff started with a '!'
1717 ftrace_setup_glob(char *buff, int len, char **search, int *not)
1719 int type = MATCH_FULL;
1722 if (buff[0] == '!') {
1731 for (i = 0; i < len; i++) {
1732 if (buff[i] == '*') {
1735 type = MATCH_END_ONLY;
1737 if (type == MATCH_END_ONLY)
1738 type = MATCH_MIDDLE_ONLY;
1740 type = MATCH_FRONT_ONLY;
1750 static int ftrace_match(char *str, char *regex, int len, int type)
1757 if (strcmp(str, regex) == 0)
1760 case MATCH_FRONT_ONLY:
1761 if (strncmp(str, regex, len) == 0)
1764 case MATCH_MIDDLE_ONLY:
1765 if (strstr(str, regex))
1768 case MATCH_END_ONLY:
1769 ptr = strstr(str, regex);
1770 if (ptr && (ptr[len] == 0))
1779 ftrace_match_record(struct dyn_ftrace *rec, char *regex, int len, int type)
1781 char str[KSYM_SYMBOL_LEN];
1783 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
1784 return ftrace_match(str, regex, len, type);
1787 static void ftrace_match_records(char *buff, int len, int enable)
1789 unsigned int search_len;
1790 struct ftrace_page *pg;
1791 struct dyn_ftrace *rec;
1797 flag = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
1798 type = ftrace_setup_glob(buff, len, &search, ¬);
1800 search_len = strlen(search);
1802 mutex_lock(&ftrace_lock);
1803 do_for_each_ftrace_rec(pg, rec) {
1805 if (rec->flags & FTRACE_FL_FAILED)
1808 if (ftrace_match_record(rec, search, search_len, type)) {
1810 rec->flags &= ~flag;
1815 * Only enable filtering if we have a function that
1818 if (enable && (rec->flags & FTRACE_FL_FILTER))
1819 ftrace_filtered = 1;
1820 } while_for_each_ftrace_rec();
1821 mutex_unlock(&ftrace_lock);
1825 ftrace_match_module_record(struct dyn_ftrace *rec, char *mod,
1826 char *regex, int len, int type)
1828 char str[KSYM_SYMBOL_LEN];
1831 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
1833 if (!modname || strcmp(modname, mod))
1836 /* blank search means to match all funcs in the mod */
1838 return ftrace_match(str, regex, len, type);
1843 static void ftrace_match_module_records(char *buff, char *mod, int enable)
1845 unsigned search_len = 0;
1846 struct ftrace_page *pg;
1847 struct dyn_ftrace *rec;
1848 int type = MATCH_FULL;
1849 char *search = buff;
1853 flag = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
1855 /* blank or '*' mean the same */
1856 if (strcmp(buff, "*") == 0)
1859 /* handle the case of 'dont filter this module' */
1860 if (strcmp(buff, "!") == 0 || strcmp(buff, "!*") == 0) {
1866 type = ftrace_setup_glob(buff, strlen(buff), &search, ¬);
1867 search_len = strlen(search);
1870 mutex_lock(&ftrace_lock);
1871 do_for_each_ftrace_rec(pg, rec) {
1873 if (rec->flags & FTRACE_FL_FAILED)
1876 if (ftrace_match_module_record(rec, mod,
1877 search, search_len, type)) {
1879 rec->flags &= ~flag;
1883 if (enable && (rec->flags & FTRACE_FL_FILTER))
1884 ftrace_filtered = 1;
1886 } while_for_each_ftrace_rec();
1887 mutex_unlock(&ftrace_lock);
1891 * We register the module command as a template to show others how
1892 * to register the a command as well.
1896 ftrace_mod_callback(char *func, char *cmd, char *param, int enable)
1901 * cmd == 'mod' because we only registered this func
1902 * for the 'mod' ftrace_func_command.
1903 * But if you register one func with multiple commands,
1904 * you can tell which command was used by the cmd
1908 /* we must have a module name */
1912 mod = strsep(¶m, ":");
1916 ftrace_match_module_records(func, mod, enable);
1920 static struct ftrace_func_command ftrace_mod_cmd = {
1922 .func = ftrace_mod_callback,
1925 static int __init ftrace_mod_cmd_init(void)
1927 return register_ftrace_command(&ftrace_mod_cmd);
1929 device_initcall(ftrace_mod_cmd_init);
1932 function_trace_probe_call(unsigned long ip, unsigned long parent_ip)
1934 struct ftrace_func_probe *entry;
1935 struct hlist_head *hhd;
1936 struct hlist_node *n;
1940 key = hash_long(ip, FTRACE_HASH_BITS);
1942 hhd = &ftrace_func_hash[key];
1944 if (hlist_empty(hhd))
1948 * Disable preemption for these calls to prevent a RCU grace
1949 * period. This syncs the hash iteration and freeing of items
1950 * on the hash. rcu_read_lock is too dangerous here.
1952 resched = ftrace_preempt_disable();
1953 hlist_for_each_entry_rcu(entry, n, hhd, node) {
1954 if (entry->ip == ip)
1955 entry->ops->func(ip, parent_ip, &entry->data);
1957 ftrace_preempt_enable(resched);
1960 static struct ftrace_ops trace_probe_ops __read_mostly =
1962 .func = function_trace_probe_call,
1965 static int ftrace_probe_registered;
1967 static void __enable_ftrace_function_probe(void)
1971 if (ftrace_probe_registered)
1974 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
1975 struct hlist_head *hhd = &ftrace_func_hash[i];
1979 /* Nothing registered? */
1980 if (i == FTRACE_FUNC_HASHSIZE)
1983 __register_ftrace_function(&trace_probe_ops);
1985 ftrace_probe_registered = 1;
1988 static void __disable_ftrace_function_probe(void)
1992 if (!ftrace_probe_registered)
1995 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
1996 struct hlist_head *hhd = &ftrace_func_hash[i];
2001 /* no more funcs left */
2002 __unregister_ftrace_function(&trace_probe_ops);
2004 ftrace_probe_registered = 0;
2008 static void ftrace_free_entry_rcu(struct rcu_head *rhp)
2010 struct ftrace_func_probe *entry =
2011 container_of(rhp, struct ftrace_func_probe, rcu);
2013 if (entry->ops->free)
2014 entry->ops->free(&entry->data);
2020 register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
2023 struct ftrace_func_probe *entry;
2024 struct ftrace_page *pg;
2025 struct dyn_ftrace *rec;
2031 type = ftrace_setup_glob(glob, strlen(glob), &search, ¬);
2032 len = strlen(search);
2034 /* we do not support '!' for function probes */
2038 mutex_lock(&ftrace_lock);
2039 do_for_each_ftrace_rec(pg, rec) {
2041 if (rec->flags & FTRACE_FL_FAILED)
2044 if (!ftrace_match_record(rec, search, len, type))
2047 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
2049 /* If we did not process any, then return error */
2060 * The caller might want to do something special
2061 * for each function we find. We call the callback
2062 * to give the caller an opportunity to do so.
2064 if (ops->callback) {
2065 if (ops->callback(rec->ip, &entry->data) < 0) {
2066 /* caller does not like this func */
2073 entry->ip = rec->ip;
2075 key = hash_long(entry->ip, FTRACE_HASH_BITS);
2076 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
2078 } while_for_each_ftrace_rec();
2079 __enable_ftrace_function_probe();
2082 mutex_unlock(&ftrace_lock);
2088 PROBE_TEST_FUNC = 1,
2093 __unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
2094 void *data, int flags)
2096 struct ftrace_func_probe *entry;
2097 struct hlist_node *n, *tmp;
2098 char str[KSYM_SYMBOL_LEN];
2099 int type = MATCH_FULL;
2103 if (glob && (strcmp(glob, "*") || !strlen(glob)))
2108 type = ftrace_setup_glob(glob, strlen(glob), &search, ¬);
2109 len = strlen(search);
2111 /* we do not support '!' for function probes */
2116 mutex_lock(&ftrace_lock);
2117 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2118 struct hlist_head *hhd = &ftrace_func_hash[i];
2120 hlist_for_each_entry_safe(entry, n, tmp, hhd, node) {
2122 /* break up if statements for readability */
2123 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
2126 if ((flags & PROBE_TEST_DATA) && entry->data != data)
2129 /* do this last, since it is the most expensive */
2131 kallsyms_lookup(entry->ip, NULL, NULL,
2133 if (!ftrace_match(str, glob, len, type))
2137 hlist_del(&entry->node);
2138 call_rcu(&entry->rcu, ftrace_free_entry_rcu);
2141 __disable_ftrace_function_probe();
2142 mutex_unlock(&ftrace_lock);
2146 unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
2149 __unregister_ftrace_function_probe(glob, ops, data,
2150 PROBE_TEST_FUNC | PROBE_TEST_DATA);
2154 unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
2156 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
2159 void unregister_ftrace_function_probe_all(char *glob)
2161 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
2164 static LIST_HEAD(ftrace_commands);
2165 static DEFINE_MUTEX(ftrace_cmd_mutex);
2167 int register_ftrace_command(struct ftrace_func_command *cmd)
2169 struct ftrace_func_command *p;
2172 mutex_lock(&ftrace_cmd_mutex);
2173 list_for_each_entry(p, &ftrace_commands, list) {
2174 if (strcmp(cmd->name, p->name) == 0) {
2179 list_add(&cmd->list, &ftrace_commands);
2181 mutex_unlock(&ftrace_cmd_mutex);
2186 int unregister_ftrace_command(struct ftrace_func_command *cmd)
2188 struct ftrace_func_command *p, *n;
2191 mutex_lock(&ftrace_cmd_mutex);
2192 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
2193 if (strcmp(cmd->name, p->name) == 0) {
2195 list_del_init(&p->list);
2200 mutex_unlock(&ftrace_cmd_mutex);
2205 static int ftrace_process_regex(char *buff, int len, int enable)
2207 char *func, *command, *next = buff;
2208 struct ftrace_func_command *p;
2211 func = strsep(&next, ":");
2214 ftrace_match_records(func, len, enable);
2220 command = strsep(&next, ":");
2222 mutex_lock(&ftrace_cmd_mutex);
2223 list_for_each_entry(p, &ftrace_commands, list) {
2224 if (strcmp(p->name, command) == 0) {
2225 ret = p->func(func, command, next, enable);
2230 mutex_unlock(&ftrace_cmd_mutex);
2236 ftrace_regex_write(struct file *file, const char __user *ubuf,
2237 size_t cnt, loff_t *ppos, int enable)
2239 struct ftrace_iterator *iter;
2244 if (!cnt || cnt < 0)
2247 mutex_lock(&ftrace_regex_lock);
2249 if (file->f_mode & FMODE_READ) {
2250 struct seq_file *m = file->private_data;
2253 iter = file->private_data;
2256 iter->flags &= ~FTRACE_ITER_CONT;
2257 iter->buffer_idx = 0;
2260 ret = get_user(ch, ubuf++);
2266 if (!(iter->flags & ~FTRACE_ITER_CONT)) {
2267 /* skip white space */
2268 while (cnt && isspace(ch)) {
2269 ret = get_user(ch, ubuf++);
2277 file->f_pos += read;
2282 iter->buffer_idx = 0;
2285 while (cnt && !isspace(ch)) {
2286 if (iter->buffer_idx < FTRACE_BUFF_MAX)
2287 iter->buffer[iter->buffer_idx++] = ch;
2292 ret = get_user(ch, ubuf++);
2301 iter->buffer[iter->buffer_idx] = 0;
2302 ret = ftrace_process_regex(iter->buffer,
2303 iter->buffer_idx, enable);
2306 iter->buffer_idx = 0;
2308 iter->flags |= FTRACE_ITER_CONT;
2311 file->f_pos += read;
2315 mutex_unlock(&ftrace_regex_lock);
2321 ftrace_filter_write(struct file *file, const char __user *ubuf,
2322 size_t cnt, loff_t *ppos)
2324 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
2328 ftrace_notrace_write(struct file *file, const char __user *ubuf,
2329 size_t cnt, loff_t *ppos)
2331 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
2335 ftrace_set_regex(unsigned char *buf, int len, int reset, int enable)
2337 if (unlikely(ftrace_disabled))
2340 mutex_lock(&ftrace_regex_lock);
2342 ftrace_filter_reset(enable);
2344 ftrace_match_records(buf, len, enable);
2345 mutex_unlock(&ftrace_regex_lock);
2349 * ftrace_set_filter - set a function to filter on in ftrace
2350 * @buf - the string that holds the function filter text.
2351 * @len - the length of the string.
2352 * @reset - non zero to reset all filters before applying this filter.
2354 * Filters denote which functions should be enabled when tracing is enabled.
2355 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
2357 void ftrace_set_filter(unsigned char *buf, int len, int reset)
2359 ftrace_set_regex(buf, len, reset, 1);
2363 * ftrace_set_notrace - set a function to not trace in ftrace
2364 * @buf - the string that holds the function notrace text.
2365 * @len - the length of the string.
2366 * @reset - non zero to reset all filters before applying this filter.
2368 * Notrace Filters denote which functions should not be enabled when tracing
2369 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
2372 void ftrace_set_notrace(unsigned char *buf, int len, int reset)
2374 ftrace_set_regex(buf, len, reset, 0);
2378 * command line interface to allow users to set filters on boot up.
2380 #define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
2381 static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
2382 static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
2384 static int __init set_ftrace_notrace(char *str)
2386 strncpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
2389 __setup("ftrace_notrace=", set_ftrace_notrace);
2391 static int __init set_ftrace_filter(char *str)
2393 strncpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
2396 __setup("ftrace_filter=", set_ftrace_filter);
2398 static void __init set_ftrace_early_filter(char *buf, int enable)
2403 func = strsep(&buf, ",");
2404 ftrace_set_regex(func, strlen(func), 0, enable);
2408 static void __init set_ftrace_early_filters(void)
2410 if (ftrace_filter_buf[0])
2411 set_ftrace_early_filter(ftrace_filter_buf, 1);
2412 if (ftrace_notrace_buf[0])
2413 set_ftrace_early_filter(ftrace_notrace_buf, 0);
2417 ftrace_regex_release(struct inode *inode, struct file *file, int enable)
2419 struct seq_file *m = (struct seq_file *)file->private_data;
2420 struct ftrace_iterator *iter;
2422 mutex_lock(&ftrace_regex_lock);
2423 if (file->f_mode & FMODE_READ) {
2426 seq_release(inode, file);
2428 iter = file->private_data;
2430 if (iter->buffer_idx) {
2432 iter->buffer[iter->buffer_idx] = 0;
2433 ftrace_match_records(iter->buffer, iter->buffer_idx, enable);
2436 mutex_lock(&ftrace_lock);
2437 if (ftrace_start_up && ftrace_enabled)
2438 ftrace_run_update_code(FTRACE_ENABLE_CALLS);
2439 mutex_unlock(&ftrace_lock);
2442 mutex_unlock(&ftrace_regex_lock);
2447 ftrace_filter_release(struct inode *inode, struct file *file)
2449 return ftrace_regex_release(inode, file, 1);
2453 ftrace_notrace_release(struct inode *inode, struct file *file)
2455 return ftrace_regex_release(inode, file, 0);
2458 static const struct file_operations ftrace_avail_fops = {
2459 .open = ftrace_avail_open,
2461 .llseek = seq_lseek,
2462 .release = ftrace_avail_release,
2465 static const struct file_operations ftrace_failures_fops = {
2466 .open = ftrace_failures_open,
2468 .llseek = seq_lseek,
2469 .release = ftrace_avail_release,
2472 static const struct file_operations ftrace_filter_fops = {
2473 .open = ftrace_filter_open,
2475 .write = ftrace_filter_write,
2476 .llseek = ftrace_regex_lseek,
2477 .release = ftrace_filter_release,
2480 static const struct file_operations ftrace_notrace_fops = {
2481 .open = ftrace_notrace_open,
2483 .write = ftrace_notrace_write,
2484 .llseek = ftrace_regex_lseek,
2485 .release = ftrace_notrace_release,
2488 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
2490 static DEFINE_MUTEX(graph_lock);
2492 int ftrace_graph_count;
2493 unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
2496 g_next(struct seq_file *m, void *v, loff_t *pos)
2498 unsigned long *array = m->private;
2503 if (index >= ftrace_graph_count)
2506 return &array[index];
2509 static void *g_start(struct seq_file *m, loff_t *pos)
2513 mutex_lock(&graph_lock);
2515 /* Nothing, tell g_show to print all functions are enabled */
2516 if (!ftrace_graph_count && !*pos)
2519 p = g_next(m, p, pos);
2524 static void g_stop(struct seq_file *m, void *p)
2526 mutex_unlock(&graph_lock);
2529 static int g_show(struct seq_file *m, void *v)
2531 unsigned long *ptr = v;
2532 char str[KSYM_SYMBOL_LEN];
2537 if (ptr == (unsigned long *)1) {
2538 seq_printf(m, "#### all functions enabled ####\n");
2542 kallsyms_lookup(*ptr, NULL, NULL, NULL, str);
2544 seq_printf(m, "%s\n", str);
2549 static struct seq_operations ftrace_graph_seq_ops = {
2557 ftrace_graph_open(struct inode *inode, struct file *file)
2561 if (unlikely(ftrace_disabled))
2564 mutex_lock(&graph_lock);
2565 if ((file->f_mode & FMODE_WRITE) &&
2566 !(file->f_flags & O_APPEND)) {
2567 ftrace_graph_count = 0;
2568 memset(ftrace_graph_funcs, 0, sizeof(ftrace_graph_funcs));
2571 if (file->f_mode & FMODE_READ) {
2572 ret = seq_open(file, &ftrace_graph_seq_ops);
2574 struct seq_file *m = file->private_data;
2575 m->private = ftrace_graph_funcs;
2578 file->private_data = ftrace_graph_funcs;
2579 mutex_unlock(&graph_lock);
2585 ftrace_set_func(unsigned long *array, int *idx, char *buffer)
2587 struct dyn_ftrace *rec;
2588 struct ftrace_page *pg;
2596 if (ftrace_disabled)
2600 type = ftrace_setup_glob(buffer, strlen(buffer), &search, ¬);
2604 search_len = strlen(search);
2606 mutex_lock(&ftrace_lock);
2607 do_for_each_ftrace_rec(pg, rec) {
2609 if (*idx >= FTRACE_GRAPH_MAX_FUNCS)
2612 if (rec->flags & (FTRACE_FL_FAILED | FTRACE_FL_FREE))
2615 if (ftrace_match_record(rec, search, search_len, type)) {
2616 /* ensure it is not already in the array */
2618 for (i = 0; i < *idx; i++)
2619 if (array[i] == rec->ip) {
2624 array[(*idx)++] = rec->ip;
2628 } while_for_each_ftrace_rec();
2630 mutex_unlock(&ftrace_lock);
2632 return found ? 0 : -EINVAL;
2636 ftrace_graph_write(struct file *file, const char __user *ubuf,
2637 size_t cnt, loff_t *ppos)
2639 unsigned char buffer[FTRACE_BUFF_MAX+1];
2640 unsigned long *array;
2646 if (!cnt || cnt < 0)
2649 mutex_lock(&graph_lock);
2651 if (ftrace_graph_count >= FTRACE_GRAPH_MAX_FUNCS) {
2656 if (file->f_mode & FMODE_READ) {
2657 struct seq_file *m = file->private_data;
2660 array = file->private_data;
2662 ret = get_user(ch, ubuf++);
2668 /* skip white space */
2669 while (cnt && isspace(ch)) {
2670 ret = get_user(ch, ubuf++);
2683 while (cnt && !isspace(ch)) {
2684 if (index < FTRACE_BUFF_MAX)
2685 buffer[index++] = ch;
2690 ret = get_user(ch, ubuf++);
2698 /* we allow only one expression at a time */
2699 ret = ftrace_set_func(array, &ftrace_graph_count, buffer);
2703 file->f_pos += read;
2707 mutex_unlock(&graph_lock);
2712 static const struct file_operations ftrace_graph_fops = {
2713 .open = ftrace_graph_open,
2715 .write = ftrace_graph_write,
2717 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2719 static __init int ftrace_init_dyn_debugfs(struct dentry *d_tracer)
2722 trace_create_file("available_filter_functions", 0444,
2723 d_tracer, NULL, &ftrace_avail_fops);
2725 trace_create_file("failures", 0444,
2726 d_tracer, NULL, &ftrace_failures_fops);
2728 trace_create_file("set_ftrace_filter", 0644, d_tracer,
2729 NULL, &ftrace_filter_fops);
2731 trace_create_file("set_ftrace_notrace", 0644, d_tracer,
2732 NULL, &ftrace_notrace_fops);
2734 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
2735 trace_create_file("set_graph_function", 0444, d_tracer,
2737 &ftrace_graph_fops);
2738 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2743 static int ftrace_convert_nops(struct module *mod,
2744 unsigned long *start,
2749 unsigned long flags;
2751 mutex_lock(&ftrace_lock);
2754 addr = ftrace_call_adjust(*p++);
2756 * Some architecture linkers will pad between
2757 * the different mcount_loc sections of different
2758 * object files to satisfy alignments.
2759 * Skip any NULL pointers.
2763 ftrace_record_ip(addr);
2766 /* disable interrupts to prevent kstop machine */
2767 local_irq_save(flags);
2768 ftrace_update_code(mod);
2769 local_irq_restore(flags);
2770 mutex_unlock(&ftrace_lock);
2775 #ifdef CONFIG_MODULES
2776 void ftrace_release(void *start, void *end)
2778 struct dyn_ftrace *rec;
2779 struct ftrace_page *pg;
2780 unsigned long s = (unsigned long)start;
2781 unsigned long e = (unsigned long)end;
2783 if (ftrace_disabled || !start || start == end)
2786 mutex_lock(&ftrace_lock);
2787 do_for_each_ftrace_rec(pg, rec) {
2788 if ((rec->ip >= s) && (rec->ip < e)) {
2790 * rec->ip is changed in ftrace_free_rec()
2791 * It should not between s and e if record was freed.
2793 FTRACE_WARN_ON(rec->flags & FTRACE_FL_FREE);
2794 ftrace_free_rec(rec);
2796 } while_for_each_ftrace_rec();
2797 mutex_unlock(&ftrace_lock);
2800 static void ftrace_init_module(struct module *mod,
2801 unsigned long *start, unsigned long *end)
2803 if (ftrace_disabled || start == end)
2805 ftrace_convert_nops(mod, start, end);
2808 static int ftrace_module_notify(struct notifier_block *self,
2809 unsigned long val, void *data)
2811 struct module *mod = data;
2814 case MODULE_STATE_COMING:
2815 ftrace_init_module(mod, mod->ftrace_callsites,
2816 mod->ftrace_callsites +
2817 mod->num_ftrace_callsites);
2819 case MODULE_STATE_GOING:
2820 ftrace_release(mod->ftrace_callsites,
2821 mod->ftrace_callsites +
2822 mod->num_ftrace_callsites);
2829 static int ftrace_module_notify(struct notifier_block *self,
2830 unsigned long val, void *data)
2834 #endif /* CONFIG_MODULES */
2836 struct notifier_block ftrace_module_nb = {
2837 .notifier_call = ftrace_module_notify,
2841 extern unsigned long __start_mcount_loc[];
2842 extern unsigned long __stop_mcount_loc[];
2844 void __init ftrace_init(void)
2846 unsigned long count, addr, flags;
2849 /* Keep the ftrace pointer to the stub */
2850 addr = (unsigned long)ftrace_stub;
2852 local_irq_save(flags);
2853 ftrace_dyn_arch_init(&addr);
2854 local_irq_restore(flags);
2856 /* ftrace_dyn_arch_init places the return code in addr */
2860 count = __stop_mcount_loc - __start_mcount_loc;
2862 ret = ftrace_dyn_table_alloc(count);
2866 last_ftrace_enabled = ftrace_enabled = 1;
2868 ret = ftrace_convert_nops(NULL,
2872 ret = register_module_notifier(&ftrace_module_nb);
2874 pr_warning("Failed to register trace ftrace module notifier\n");
2876 set_ftrace_early_filters();
2880 ftrace_disabled = 1;
2885 static int __init ftrace_nodyn_init(void)
2890 device_initcall(ftrace_nodyn_init);
2892 static inline int ftrace_init_dyn_debugfs(struct dentry *d_tracer) { return 0; }
2893 static inline void ftrace_startup_enable(int command) { }
2894 /* Keep as macros so we do not need to define the commands */
2895 # define ftrace_startup(command) do { } while (0)
2896 # define ftrace_shutdown(command) do { } while (0)
2897 # define ftrace_startup_sysctl() do { } while (0)
2898 # define ftrace_shutdown_sysctl() do { } while (0)
2899 #endif /* CONFIG_DYNAMIC_FTRACE */
2902 ftrace_pid_read(struct file *file, char __user *ubuf,
2903 size_t cnt, loff_t *ppos)
2908 if (ftrace_pid_trace == ftrace_swapper_pid)
2909 r = sprintf(buf, "swapper tasks\n");
2910 else if (ftrace_pid_trace)
2911 r = sprintf(buf, "%u\n", pid_vnr(ftrace_pid_trace));
2913 r = sprintf(buf, "no pid\n");
2915 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2918 static void clear_ftrace_swapper(void)
2920 struct task_struct *p;
2924 for_each_online_cpu(cpu) {
2926 clear_tsk_trace_trace(p);
2931 static void set_ftrace_swapper(void)
2933 struct task_struct *p;
2937 for_each_online_cpu(cpu) {
2939 set_tsk_trace_trace(p);
2944 static void clear_ftrace_pid(struct pid *pid)
2946 struct task_struct *p;
2949 do_each_pid_task(pid, PIDTYPE_PID, p) {
2950 clear_tsk_trace_trace(p);
2951 } while_each_pid_task(pid, PIDTYPE_PID, p);
2957 static void set_ftrace_pid(struct pid *pid)
2959 struct task_struct *p;
2962 do_each_pid_task(pid, PIDTYPE_PID, p) {
2963 set_tsk_trace_trace(p);
2964 } while_each_pid_task(pid, PIDTYPE_PID, p);
2968 static void clear_ftrace_pid_task(struct pid **pid)
2970 if (*pid == ftrace_swapper_pid)
2971 clear_ftrace_swapper();
2973 clear_ftrace_pid(*pid);
2978 static void set_ftrace_pid_task(struct pid *pid)
2980 if (pid == ftrace_swapper_pid)
2981 set_ftrace_swapper();
2983 set_ftrace_pid(pid);
2987 ftrace_pid_write(struct file *filp, const char __user *ubuf,
2988 size_t cnt, loff_t *ppos)
2995 if (cnt >= sizeof(buf))
2998 if (copy_from_user(&buf, ubuf, cnt))
3003 ret = strict_strtol(buf, 10, &val);
3007 mutex_lock(&ftrace_lock);
3009 /* disable pid tracing */
3010 if (!ftrace_pid_trace)
3013 clear_ftrace_pid_task(&ftrace_pid_trace);
3016 /* swapper task is special */
3018 pid = ftrace_swapper_pid;
3019 if (pid == ftrace_pid_trace)
3022 pid = find_get_pid(val);
3024 if (pid == ftrace_pid_trace) {
3030 if (ftrace_pid_trace)
3031 clear_ftrace_pid_task(&ftrace_pid_trace);
3036 ftrace_pid_trace = pid;
3038 set_ftrace_pid_task(ftrace_pid_trace);
3041 /* update the function call */
3042 ftrace_update_pid_func();
3043 ftrace_startup_enable(0);
3046 mutex_unlock(&ftrace_lock);
3051 static const struct file_operations ftrace_pid_fops = {
3052 .read = ftrace_pid_read,
3053 .write = ftrace_pid_write,
3056 static __init int ftrace_init_debugfs(void)
3058 struct dentry *d_tracer;
3060 d_tracer = tracing_init_dentry();
3064 ftrace_init_dyn_debugfs(d_tracer);
3066 trace_create_file("set_ftrace_pid", 0644, d_tracer,
3067 NULL, &ftrace_pid_fops);
3069 ftrace_profile_debugfs(d_tracer);
3073 fs_initcall(ftrace_init_debugfs);
3076 * ftrace_kill - kill ftrace
3078 * This function should be used by panic code. It stops ftrace
3079 * but in a not so nice way. If you need to simply kill ftrace
3080 * from a non-atomic section, use ftrace_kill.
3082 void ftrace_kill(void)
3084 ftrace_disabled = 1;
3086 clear_ftrace_function();
3090 * register_ftrace_function - register a function for profiling
3091 * @ops - ops structure that holds the function for profiling.
3093 * Register a function to be called by all functions in the
3096 * Note: @ops->func and all the functions it calls must be labeled
3097 * with "notrace", otherwise it will go into a
3100 int register_ftrace_function(struct ftrace_ops *ops)
3104 if (unlikely(ftrace_disabled))
3107 mutex_lock(&ftrace_lock);
3109 ret = __register_ftrace_function(ops);
3112 mutex_unlock(&ftrace_lock);
3117 * unregister_ftrace_function - unregister a function for profiling.
3118 * @ops - ops structure that holds the function to unregister
3120 * Unregister a function that was added to be called by ftrace profiling.
3122 int unregister_ftrace_function(struct ftrace_ops *ops)
3126 mutex_lock(&ftrace_lock);
3127 ret = __unregister_ftrace_function(ops);
3129 mutex_unlock(&ftrace_lock);
3135 ftrace_enable_sysctl(struct ctl_table *table, int write,
3136 struct file *file, void __user *buffer, size_t *lenp,
3141 if (unlikely(ftrace_disabled))
3144 mutex_lock(&ftrace_lock);
3146 ret = proc_dointvec(table, write, file, buffer, lenp, ppos);
3148 if (ret || !write || (last_ftrace_enabled == ftrace_enabled))
3151 last_ftrace_enabled = ftrace_enabled;
3153 if (ftrace_enabled) {
3155 ftrace_startup_sysctl();
3157 /* we are starting ftrace again */
3158 if (ftrace_list != &ftrace_list_end) {
3159 if (ftrace_list->next == &ftrace_list_end)
3160 ftrace_trace_function = ftrace_list->func;
3162 ftrace_trace_function = ftrace_list_func;
3166 /* stopping ftrace calls (just send to ftrace_stub) */
3167 ftrace_trace_function = ftrace_stub;
3169 ftrace_shutdown_sysctl();
3173 mutex_unlock(&ftrace_lock);
3177 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3179 static int ftrace_graph_active;
3180 static struct notifier_block ftrace_suspend_notifier;
3182 int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
3187 /* The callbacks that hook a function */
3188 trace_func_graph_ret_t ftrace_graph_return =
3189 (trace_func_graph_ret_t)ftrace_stub;
3190 trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
3192 /* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
3193 static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
3197 unsigned long flags;
3198 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
3199 struct task_struct *g, *t;
3201 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
3202 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
3203 * sizeof(struct ftrace_ret_stack),
3205 if (!ret_stack_list[i]) {
3213 read_lock_irqsave(&tasklist_lock, flags);
3214 do_each_thread(g, t) {
3220 if (t->ret_stack == NULL) {
3221 atomic_set(&t->tracing_graph_pause, 0);
3222 atomic_set(&t->trace_overrun, 0);
3223 t->curr_ret_stack = -1;
3224 /* Make sure the tasks see the -1 first: */
3226 t->ret_stack = ret_stack_list[start++];
3228 } while_each_thread(g, t);
3231 read_unlock_irqrestore(&tasklist_lock, flags);
3233 for (i = start; i < end; i++)
3234 kfree(ret_stack_list[i]);
3239 ftrace_graph_probe_sched_switch(struct rq *__rq, struct task_struct *prev,
3240 struct task_struct *next)
3242 unsigned long long timestamp;
3246 * Does the user want to count the time a function was asleep.
3247 * If so, do not update the time stamps.
3249 if (trace_flags & TRACE_ITER_SLEEP_TIME)
3252 timestamp = trace_clock_local();
3254 prev->ftrace_timestamp = timestamp;
3256 /* only process tasks that we timestamped */
3257 if (!next->ftrace_timestamp)
3261 * Update all the counters in next to make up for the
3262 * time next was sleeping.
3264 timestamp -= next->ftrace_timestamp;
3266 for (index = next->curr_ret_stack; index >= 0; index--)
3267 next->ret_stack[index].calltime += timestamp;
3270 /* Allocate a return stack for each task */
3271 static int start_graph_tracing(void)
3273 struct ftrace_ret_stack **ret_stack_list;
3276 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
3277 sizeof(struct ftrace_ret_stack *),
3280 if (!ret_stack_list)
3283 /* The cpu_boot init_task->ret_stack will never be freed */
3284 for_each_online_cpu(cpu) {
3285 if (!idle_task(cpu)->ret_stack)
3286 ftrace_graph_init_task(idle_task(cpu));
3290 ret = alloc_retstack_tasklist(ret_stack_list);
3291 } while (ret == -EAGAIN);
3294 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch);
3296 pr_info("ftrace_graph: Couldn't activate tracepoint"
3297 " probe to kernel_sched_switch\n");
3300 kfree(ret_stack_list);
3305 * Hibernation protection.
3306 * The state of the current task is too much unstable during
3307 * suspend/restore to disk. We want to protect against that.
3310 ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
3314 case PM_HIBERNATION_PREPARE:
3315 pause_graph_tracing();
3318 case PM_POST_HIBERNATION:
3319 unpause_graph_tracing();
3325 int register_ftrace_graph(trace_func_graph_ret_t retfunc,
3326 trace_func_graph_ent_t entryfunc)
3330 mutex_lock(&ftrace_lock);
3332 /* we currently allow only one tracer registered at a time */
3333 if (ftrace_graph_active) {
3338 ftrace_suspend_notifier.notifier_call = ftrace_suspend_notifier_call;
3339 register_pm_notifier(&ftrace_suspend_notifier);
3341 ftrace_graph_active++;
3342 ret = start_graph_tracing();
3344 ftrace_graph_active--;
3348 ftrace_graph_return = retfunc;
3349 ftrace_graph_entry = entryfunc;
3351 ftrace_startup(FTRACE_START_FUNC_RET);
3354 mutex_unlock(&ftrace_lock);
3358 void unregister_ftrace_graph(void)
3360 mutex_lock(&ftrace_lock);
3362 if (unlikely(!ftrace_graph_active))
3365 ftrace_graph_active--;
3366 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch);
3367 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
3368 ftrace_graph_entry = ftrace_graph_entry_stub;
3369 ftrace_shutdown(FTRACE_STOP_FUNC_RET);
3370 unregister_pm_notifier(&ftrace_suspend_notifier);
3373 mutex_unlock(&ftrace_lock);
3376 /* Allocate a return stack for newly created task */
3377 void ftrace_graph_init_task(struct task_struct *t)
3379 /* Make sure we do not use the parent ret_stack */
3380 t->ret_stack = NULL;
3382 if (ftrace_graph_active) {
3383 struct ftrace_ret_stack *ret_stack;
3385 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
3386 * sizeof(struct ftrace_ret_stack),
3390 t->curr_ret_stack = -1;
3391 atomic_set(&t->tracing_graph_pause, 0);
3392 atomic_set(&t->trace_overrun, 0);
3393 t->ftrace_timestamp = 0;
3394 /* make curr_ret_stack visable before we add the ret_stack */
3396 t->ret_stack = ret_stack;
3400 void ftrace_graph_exit_task(struct task_struct *t)
3402 struct ftrace_ret_stack *ret_stack = t->ret_stack;
3404 t->ret_stack = NULL;
3405 /* NULL must become visible to IRQs before we free it: */
3411 void ftrace_graph_stop(void)