serial: delete last unused traces of pausing I/O in 8250
[linux-2.6.git] / kernel / trace / ftrace.c
blob683d559a0eefef4cc9495c1b97fcbee0836065e1
1 /*
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/bsearch.h>
26 #include <linux/module.h>
27 #include <linux/ftrace.h>
28 #include <linux/sysctl.h>
29 #include <linux/slab.h>
30 #include <linux/ctype.h>
31 #include <linux/sort.h>
32 #include <linux/list.h>
33 #include <linux/hash.h>
34 #include <linux/rcupdate.h>
36 #include <trace/events/sched.h>
38 #include <asm/setup.h>
40 #include "trace_output.h"
41 #include "trace_stat.h"
43 #define FTRACE_WARN_ON(cond) \
44 ({ \
45 int ___r = cond; \
46 if (WARN_ON(___r)) \
47 ftrace_kill(); \
48 ___r; \
51 #define FTRACE_WARN_ON_ONCE(cond) \
52 ({ \
53 int ___r = cond; \
54 if (WARN_ON_ONCE(___r)) \
55 ftrace_kill(); \
56 ___r; \
59 /* hash bits for specific function selection */
60 #define FTRACE_HASH_BITS 7
61 #define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
62 #define FTRACE_HASH_DEFAULT_BITS 10
63 #define FTRACE_HASH_MAX_BITS 12
65 /* ftrace_enabled is a method to turn ftrace on or off */
66 int ftrace_enabled __read_mostly;
67 static int last_ftrace_enabled;
69 /* Quick disabling of function tracer. */
70 int function_trace_stop;
72 /* List for set_ftrace_pid's pids. */
73 LIST_HEAD(ftrace_pids);
74 struct ftrace_pid {
75 struct list_head list;
76 struct pid *pid;
80 * ftrace_disabled is set when an anomaly is discovered.
81 * ftrace_disabled is much stronger than ftrace_enabled.
83 static int ftrace_disabled __read_mostly;
85 static DEFINE_MUTEX(ftrace_lock);
87 static struct ftrace_ops ftrace_list_end __read_mostly = {
88 .func = ftrace_stub,
91 static struct ftrace_ops *ftrace_global_list __read_mostly = &ftrace_list_end;
92 static struct ftrace_ops *ftrace_ops_list __read_mostly = &ftrace_list_end;
93 ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
94 static ftrace_func_t __ftrace_trace_function_delay __read_mostly = ftrace_stub;
95 ftrace_func_t __ftrace_trace_function __read_mostly = ftrace_stub;
96 ftrace_func_t ftrace_pid_function __read_mostly = ftrace_stub;
97 static struct ftrace_ops global_ops;
99 static void
100 ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip);
103 * Traverse the ftrace_global_list, invoking all entries. The reason that we
104 * can use rcu_dereference_raw() is that elements removed from this list
105 * are simply leaked, so there is no need to interact with a grace-period
106 * mechanism. The rcu_dereference_raw() calls are needed to handle
107 * concurrent insertions into the ftrace_global_list.
109 * Silly Alpha and silly pointer-speculation compiler optimizations!
111 static void ftrace_global_list_func(unsigned long ip,
112 unsigned long parent_ip)
114 struct ftrace_ops *op;
116 if (unlikely(trace_recursion_test(TRACE_GLOBAL_BIT)))
117 return;
119 trace_recursion_set(TRACE_GLOBAL_BIT);
120 op = rcu_dereference_raw(ftrace_global_list); /*see above*/
121 while (op != &ftrace_list_end) {
122 op->func(ip, parent_ip);
123 op = rcu_dereference_raw(op->next); /*see above*/
125 trace_recursion_clear(TRACE_GLOBAL_BIT);
128 static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip)
130 if (!test_tsk_trace_trace(current))
131 return;
133 ftrace_pid_function(ip, parent_ip);
136 static void set_ftrace_pid_function(ftrace_func_t func)
138 /* do not set ftrace_pid_function to itself! */
139 if (func != ftrace_pid_func)
140 ftrace_pid_function = func;
144 * clear_ftrace_function - reset the ftrace function
146 * This NULLs the ftrace function and in essence stops
147 * tracing. There may be lag
149 void clear_ftrace_function(void)
151 ftrace_trace_function = ftrace_stub;
152 __ftrace_trace_function = ftrace_stub;
153 __ftrace_trace_function_delay = ftrace_stub;
154 ftrace_pid_function = ftrace_stub;
157 #ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
159 * For those archs that do not test ftrace_trace_stop in their
160 * mcount call site, we need to do it from C.
162 static void ftrace_test_stop_func(unsigned long ip, unsigned long parent_ip)
164 if (function_trace_stop)
165 return;
167 __ftrace_trace_function(ip, parent_ip);
169 #endif
171 static void update_global_ops(void)
173 ftrace_func_t func;
176 * If there's only one function registered, then call that
177 * function directly. Otherwise, we need to iterate over the
178 * registered callers.
180 if (ftrace_global_list == &ftrace_list_end ||
181 ftrace_global_list->next == &ftrace_list_end)
182 func = ftrace_global_list->func;
183 else
184 func = ftrace_global_list_func;
186 /* If we filter on pids, update to use the pid function */
187 if (!list_empty(&ftrace_pids)) {
188 set_ftrace_pid_function(func);
189 func = ftrace_pid_func;
192 global_ops.func = func;
195 static void update_ftrace_function(void)
197 ftrace_func_t func;
199 update_global_ops();
202 * If we are at the end of the list and this ops is
203 * not dynamic, then have the mcount trampoline call
204 * the function directly
206 if (ftrace_ops_list == &ftrace_list_end ||
207 (ftrace_ops_list->next == &ftrace_list_end &&
208 !(ftrace_ops_list->flags & FTRACE_OPS_FL_DYNAMIC)))
209 func = ftrace_ops_list->func;
210 else
211 func = ftrace_ops_list_func;
213 #ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
214 ftrace_trace_function = func;
215 #else
216 #ifdef CONFIG_DYNAMIC_FTRACE
217 /* do not update till all functions have been modified */
218 __ftrace_trace_function_delay = func;
219 #else
220 __ftrace_trace_function = func;
221 #endif
222 ftrace_trace_function = ftrace_test_stop_func;
223 #endif
226 static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
228 ops->next = *list;
230 * We are entering ops into the list but another
231 * CPU might be walking that list. We need to make sure
232 * the ops->next pointer is valid before another CPU sees
233 * the ops pointer included into the list.
235 rcu_assign_pointer(*list, ops);
238 static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
240 struct ftrace_ops **p;
243 * If we are removing the last function, then simply point
244 * to the ftrace_stub.
246 if (*list == ops && ops->next == &ftrace_list_end) {
247 *list = &ftrace_list_end;
248 return 0;
251 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
252 if (*p == ops)
253 break;
255 if (*p != ops)
256 return -1;
258 *p = (*p)->next;
259 return 0;
262 static int __register_ftrace_function(struct ftrace_ops *ops)
264 if (ftrace_disabled)
265 return -ENODEV;
267 if (FTRACE_WARN_ON(ops == &global_ops))
268 return -EINVAL;
270 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
271 return -EBUSY;
273 if (!core_kernel_data((unsigned long)ops))
274 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
276 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
277 int first = ftrace_global_list == &ftrace_list_end;
278 add_ftrace_ops(&ftrace_global_list, ops);
279 ops->flags |= FTRACE_OPS_FL_ENABLED;
280 if (first)
281 add_ftrace_ops(&ftrace_ops_list, &global_ops);
282 } else
283 add_ftrace_ops(&ftrace_ops_list, ops);
285 if (ftrace_enabled)
286 update_ftrace_function();
288 return 0;
291 static int __unregister_ftrace_function(struct ftrace_ops *ops)
293 int ret;
295 if (ftrace_disabled)
296 return -ENODEV;
298 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
299 return -EBUSY;
301 if (FTRACE_WARN_ON(ops == &global_ops))
302 return -EINVAL;
304 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
305 ret = remove_ftrace_ops(&ftrace_global_list, ops);
306 if (!ret && ftrace_global_list == &ftrace_list_end)
307 ret = remove_ftrace_ops(&ftrace_ops_list, &global_ops);
308 if (!ret)
309 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
310 } else
311 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
313 if (ret < 0)
314 return ret;
316 if (ftrace_enabled)
317 update_ftrace_function();
320 * Dynamic ops may be freed, we must make sure that all
321 * callers are done before leaving this function.
323 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
324 synchronize_sched();
326 return 0;
329 static void ftrace_update_pid_func(void)
331 /* Only do something if we are tracing something */
332 if (ftrace_trace_function == ftrace_stub)
333 return;
335 update_ftrace_function();
338 #ifdef CONFIG_FUNCTION_PROFILER
339 struct ftrace_profile {
340 struct hlist_node node;
341 unsigned long ip;
342 unsigned long counter;
343 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
344 unsigned long long time;
345 unsigned long long time_squared;
346 #endif
349 struct ftrace_profile_page {
350 struct ftrace_profile_page *next;
351 unsigned long index;
352 struct ftrace_profile records[];
355 struct ftrace_profile_stat {
356 atomic_t disabled;
357 struct hlist_head *hash;
358 struct ftrace_profile_page *pages;
359 struct ftrace_profile_page *start;
360 struct tracer_stat stat;
363 #define PROFILE_RECORDS_SIZE \
364 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
366 #define PROFILES_PER_PAGE \
367 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
369 static int ftrace_profile_bits __read_mostly;
370 static int ftrace_profile_enabled __read_mostly;
372 /* ftrace_profile_lock - synchronize the enable and disable of the profiler */
373 static DEFINE_MUTEX(ftrace_profile_lock);
375 static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
377 #define FTRACE_PROFILE_HASH_SIZE 1024 /* must be power of 2 */
379 static void *
380 function_stat_next(void *v, int idx)
382 struct ftrace_profile *rec = v;
383 struct ftrace_profile_page *pg;
385 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
387 again:
388 if (idx != 0)
389 rec++;
391 if ((void *)rec >= (void *)&pg->records[pg->index]) {
392 pg = pg->next;
393 if (!pg)
394 return NULL;
395 rec = &pg->records[0];
396 if (!rec->counter)
397 goto again;
400 return rec;
403 static void *function_stat_start(struct tracer_stat *trace)
405 struct ftrace_profile_stat *stat =
406 container_of(trace, struct ftrace_profile_stat, stat);
408 if (!stat || !stat->start)
409 return NULL;
411 return function_stat_next(&stat->start->records[0], 0);
414 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
415 /* function graph compares on total time */
416 static int function_stat_cmp(void *p1, void *p2)
418 struct ftrace_profile *a = p1;
419 struct ftrace_profile *b = p2;
421 if (a->time < b->time)
422 return -1;
423 if (a->time > b->time)
424 return 1;
425 else
426 return 0;
428 #else
429 /* not function graph compares against hits */
430 static int function_stat_cmp(void *p1, void *p2)
432 struct ftrace_profile *a = p1;
433 struct ftrace_profile *b = p2;
435 if (a->counter < b->counter)
436 return -1;
437 if (a->counter > b->counter)
438 return 1;
439 else
440 return 0;
442 #endif
444 static int function_stat_headers(struct seq_file *m)
446 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
447 seq_printf(m, " Function "
448 "Hit Time Avg s^2\n"
449 " -------- "
450 "--- ---- --- ---\n");
451 #else
452 seq_printf(m, " Function Hit\n"
453 " -------- ---\n");
454 #endif
455 return 0;
458 static int function_stat_show(struct seq_file *m, void *v)
460 struct ftrace_profile *rec = v;
461 char str[KSYM_SYMBOL_LEN];
462 int ret = 0;
463 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
464 static struct trace_seq s;
465 unsigned long long avg;
466 unsigned long long stddev;
467 #endif
468 mutex_lock(&ftrace_profile_lock);
470 /* we raced with function_profile_reset() */
471 if (unlikely(rec->counter == 0)) {
472 ret = -EBUSY;
473 goto out;
476 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
477 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
479 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
480 seq_printf(m, " ");
481 avg = rec->time;
482 do_div(avg, rec->counter);
484 /* Sample standard deviation (s^2) */
485 if (rec->counter <= 1)
486 stddev = 0;
487 else {
488 stddev = rec->time_squared - rec->counter * avg * avg;
490 * Divide only 1000 for ns^2 -> us^2 conversion.
491 * trace_print_graph_duration will divide 1000 again.
493 do_div(stddev, (rec->counter - 1) * 1000);
496 trace_seq_init(&s);
497 trace_print_graph_duration(rec->time, &s);
498 trace_seq_puts(&s, " ");
499 trace_print_graph_duration(avg, &s);
500 trace_seq_puts(&s, " ");
501 trace_print_graph_duration(stddev, &s);
502 trace_print_seq(m, &s);
503 #endif
504 seq_putc(m, '\n');
505 out:
506 mutex_unlock(&ftrace_profile_lock);
508 return ret;
511 static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
513 struct ftrace_profile_page *pg;
515 pg = stat->pages = stat->start;
517 while (pg) {
518 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
519 pg->index = 0;
520 pg = pg->next;
523 memset(stat->hash, 0,
524 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
527 int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
529 struct ftrace_profile_page *pg;
530 int functions;
531 int pages;
532 int i;
534 /* If we already allocated, do nothing */
535 if (stat->pages)
536 return 0;
538 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
539 if (!stat->pages)
540 return -ENOMEM;
542 #ifdef CONFIG_DYNAMIC_FTRACE
543 functions = ftrace_update_tot_cnt;
544 #else
546 * We do not know the number of functions that exist because
547 * dynamic tracing is what counts them. With past experience
548 * we have around 20K functions. That should be more than enough.
549 * It is highly unlikely we will execute every function in
550 * the kernel.
552 functions = 20000;
553 #endif
555 pg = stat->start = stat->pages;
557 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
559 for (i = 0; i < pages; i++) {
560 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
561 if (!pg->next)
562 goto out_free;
563 pg = pg->next;
566 return 0;
568 out_free:
569 pg = stat->start;
570 while (pg) {
571 unsigned long tmp = (unsigned long)pg;
573 pg = pg->next;
574 free_page(tmp);
577 free_page((unsigned long)stat->pages);
578 stat->pages = NULL;
579 stat->start = NULL;
581 return -ENOMEM;
584 static int ftrace_profile_init_cpu(int cpu)
586 struct ftrace_profile_stat *stat;
587 int size;
589 stat = &per_cpu(ftrace_profile_stats, cpu);
591 if (stat->hash) {
592 /* If the profile is already created, simply reset it */
593 ftrace_profile_reset(stat);
594 return 0;
598 * We are profiling all functions, but usually only a few thousand
599 * functions are hit. We'll make a hash of 1024 items.
601 size = FTRACE_PROFILE_HASH_SIZE;
603 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
605 if (!stat->hash)
606 return -ENOMEM;
608 if (!ftrace_profile_bits) {
609 size--;
611 for (; size; size >>= 1)
612 ftrace_profile_bits++;
615 /* Preallocate the function profiling pages */
616 if (ftrace_profile_pages_init(stat) < 0) {
617 kfree(stat->hash);
618 stat->hash = NULL;
619 return -ENOMEM;
622 return 0;
625 static int ftrace_profile_init(void)
627 int cpu;
628 int ret = 0;
630 for_each_online_cpu(cpu) {
631 ret = ftrace_profile_init_cpu(cpu);
632 if (ret)
633 break;
636 return ret;
639 /* interrupts must be disabled */
640 static struct ftrace_profile *
641 ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
643 struct ftrace_profile *rec;
644 struct hlist_head *hhd;
645 struct hlist_node *n;
646 unsigned long key;
648 key = hash_long(ip, ftrace_profile_bits);
649 hhd = &stat->hash[key];
651 if (hlist_empty(hhd))
652 return NULL;
654 hlist_for_each_entry_rcu(rec, n, hhd, node) {
655 if (rec->ip == ip)
656 return rec;
659 return NULL;
662 static void ftrace_add_profile(struct ftrace_profile_stat *stat,
663 struct ftrace_profile *rec)
665 unsigned long key;
667 key = hash_long(rec->ip, ftrace_profile_bits);
668 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
672 * The memory is already allocated, this simply finds a new record to use.
674 static struct ftrace_profile *
675 ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
677 struct ftrace_profile *rec = NULL;
679 /* prevent recursion (from NMIs) */
680 if (atomic_inc_return(&stat->disabled) != 1)
681 goto out;
684 * Try to find the function again since an NMI
685 * could have added it
687 rec = ftrace_find_profiled_func(stat, ip);
688 if (rec)
689 goto out;
691 if (stat->pages->index == PROFILES_PER_PAGE) {
692 if (!stat->pages->next)
693 goto out;
694 stat->pages = stat->pages->next;
697 rec = &stat->pages->records[stat->pages->index++];
698 rec->ip = ip;
699 ftrace_add_profile(stat, rec);
701 out:
702 atomic_dec(&stat->disabled);
704 return rec;
707 static void
708 function_profile_call(unsigned long ip, unsigned long parent_ip)
710 struct ftrace_profile_stat *stat;
711 struct ftrace_profile *rec;
712 unsigned long flags;
714 if (!ftrace_profile_enabled)
715 return;
717 local_irq_save(flags);
719 stat = &__get_cpu_var(ftrace_profile_stats);
720 if (!stat->hash || !ftrace_profile_enabled)
721 goto out;
723 rec = ftrace_find_profiled_func(stat, ip);
724 if (!rec) {
725 rec = ftrace_profile_alloc(stat, ip);
726 if (!rec)
727 goto out;
730 rec->counter++;
731 out:
732 local_irq_restore(flags);
735 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
736 static int profile_graph_entry(struct ftrace_graph_ent *trace)
738 function_profile_call(trace->func, 0);
739 return 1;
742 static void profile_graph_return(struct ftrace_graph_ret *trace)
744 struct ftrace_profile_stat *stat;
745 unsigned long long calltime;
746 struct ftrace_profile *rec;
747 unsigned long flags;
749 local_irq_save(flags);
750 stat = &__get_cpu_var(ftrace_profile_stats);
751 if (!stat->hash || !ftrace_profile_enabled)
752 goto out;
754 /* If the calltime was zero'd ignore it */
755 if (!trace->calltime)
756 goto out;
758 calltime = trace->rettime - trace->calltime;
760 if (!(trace_flags & TRACE_ITER_GRAPH_TIME)) {
761 int index;
763 index = trace->depth;
765 /* Append this call time to the parent time to subtract */
766 if (index)
767 current->ret_stack[index - 1].subtime += calltime;
769 if (current->ret_stack[index].subtime < calltime)
770 calltime -= current->ret_stack[index].subtime;
771 else
772 calltime = 0;
775 rec = ftrace_find_profiled_func(stat, trace->func);
776 if (rec) {
777 rec->time += calltime;
778 rec->time_squared += calltime * calltime;
781 out:
782 local_irq_restore(flags);
785 static int register_ftrace_profiler(void)
787 return register_ftrace_graph(&profile_graph_return,
788 &profile_graph_entry);
791 static void unregister_ftrace_profiler(void)
793 unregister_ftrace_graph();
795 #else
796 static struct ftrace_ops ftrace_profile_ops __read_mostly = {
797 .func = function_profile_call,
800 static int register_ftrace_profiler(void)
802 return register_ftrace_function(&ftrace_profile_ops);
805 static void unregister_ftrace_profiler(void)
807 unregister_ftrace_function(&ftrace_profile_ops);
809 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
811 static ssize_t
812 ftrace_profile_write(struct file *filp, const char __user *ubuf,
813 size_t cnt, loff_t *ppos)
815 unsigned long val;
816 int ret;
818 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
819 if (ret)
820 return ret;
822 val = !!val;
824 mutex_lock(&ftrace_profile_lock);
825 if (ftrace_profile_enabled ^ val) {
826 if (val) {
827 ret = ftrace_profile_init();
828 if (ret < 0) {
829 cnt = ret;
830 goto out;
833 ret = register_ftrace_profiler();
834 if (ret < 0) {
835 cnt = ret;
836 goto out;
838 ftrace_profile_enabled = 1;
839 } else {
840 ftrace_profile_enabled = 0;
842 * unregister_ftrace_profiler calls stop_machine
843 * so this acts like an synchronize_sched.
845 unregister_ftrace_profiler();
848 out:
849 mutex_unlock(&ftrace_profile_lock);
851 *ppos += cnt;
853 return cnt;
856 static ssize_t
857 ftrace_profile_read(struct file *filp, char __user *ubuf,
858 size_t cnt, loff_t *ppos)
860 char buf[64]; /* big enough to hold a number */
861 int r;
863 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
864 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
867 static const struct file_operations ftrace_profile_fops = {
868 .open = tracing_open_generic,
869 .read = ftrace_profile_read,
870 .write = ftrace_profile_write,
871 .llseek = default_llseek,
874 /* used to initialize the real stat files */
875 static struct tracer_stat function_stats __initdata = {
876 .name = "functions",
877 .stat_start = function_stat_start,
878 .stat_next = function_stat_next,
879 .stat_cmp = function_stat_cmp,
880 .stat_headers = function_stat_headers,
881 .stat_show = function_stat_show
884 static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
886 struct ftrace_profile_stat *stat;
887 struct dentry *entry;
888 char *name;
889 int ret;
890 int cpu;
892 for_each_possible_cpu(cpu) {
893 stat = &per_cpu(ftrace_profile_stats, cpu);
895 /* allocate enough for function name + cpu number */
896 name = kmalloc(32, GFP_KERNEL);
897 if (!name) {
899 * The files created are permanent, if something happens
900 * we still do not free memory.
902 WARN(1,
903 "Could not allocate stat file for cpu %d\n",
904 cpu);
905 return;
907 stat->stat = function_stats;
908 snprintf(name, 32, "function%d", cpu);
909 stat->stat.name = name;
910 ret = register_stat_tracer(&stat->stat);
911 if (ret) {
912 WARN(1,
913 "Could not register function stat for cpu %d\n",
914 cpu);
915 kfree(name);
916 return;
920 entry = debugfs_create_file("function_profile_enabled", 0644,
921 d_tracer, NULL, &ftrace_profile_fops);
922 if (!entry)
923 pr_warning("Could not create debugfs "
924 "'function_profile_enabled' entry\n");
927 #else /* CONFIG_FUNCTION_PROFILER */
928 static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
931 #endif /* CONFIG_FUNCTION_PROFILER */
933 static struct pid * const ftrace_swapper_pid = &init_struct_pid;
935 #ifdef CONFIG_DYNAMIC_FTRACE
937 #ifndef CONFIG_FTRACE_MCOUNT_RECORD
938 # error Dynamic ftrace depends on MCOUNT_RECORD
939 #endif
941 static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
943 struct ftrace_func_probe {
944 struct hlist_node node;
945 struct ftrace_probe_ops *ops;
946 unsigned long flags;
947 unsigned long ip;
948 void *data;
949 struct rcu_head rcu;
952 struct ftrace_func_entry {
953 struct hlist_node hlist;
954 unsigned long ip;
957 struct ftrace_hash {
958 unsigned long size_bits;
959 struct hlist_head *buckets;
960 unsigned long count;
961 struct rcu_head rcu;
965 * We make these constant because no one should touch them,
966 * but they are used as the default "empty hash", to avoid allocating
967 * it all the time. These are in a read only section such that if
968 * anyone does try to modify it, it will cause an exception.
970 static const struct hlist_head empty_buckets[1];
971 static const struct ftrace_hash empty_hash = {
972 .buckets = (struct hlist_head *)empty_buckets,
974 #define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
976 static struct ftrace_ops global_ops = {
977 .func = ftrace_stub,
978 .notrace_hash = EMPTY_HASH,
979 .filter_hash = EMPTY_HASH,
982 static DEFINE_MUTEX(ftrace_regex_lock);
984 struct ftrace_page {
985 struct ftrace_page *next;
986 struct dyn_ftrace *records;
987 int index;
988 int size;
991 static struct ftrace_page *ftrace_new_pgs;
993 #define ENTRY_SIZE sizeof(struct dyn_ftrace)
994 #define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
996 /* estimate from running different kernels */
997 #define NR_TO_INIT 10000
999 static struct ftrace_page *ftrace_pages_start;
1000 static struct ftrace_page *ftrace_pages;
1002 static bool ftrace_hash_empty(struct ftrace_hash *hash)
1004 return !hash || !hash->count;
1007 static struct ftrace_func_entry *
1008 ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1010 unsigned long key;
1011 struct ftrace_func_entry *entry;
1012 struct hlist_head *hhd;
1013 struct hlist_node *n;
1015 if (ftrace_hash_empty(hash))
1016 return NULL;
1018 if (hash->size_bits > 0)
1019 key = hash_long(ip, hash->size_bits);
1020 else
1021 key = 0;
1023 hhd = &hash->buckets[key];
1025 hlist_for_each_entry_rcu(entry, n, hhd, hlist) {
1026 if (entry->ip == ip)
1027 return entry;
1029 return NULL;
1032 static void __add_hash_entry(struct ftrace_hash *hash,
1033 struct ftrace_func_entry *entry)
1035 struct hlist_head *hhd;
1036 unsigned long key;
1038 if (hash->size_bits)
1039 key = hash_long(entry->ip, hash->size_bits);
1040 else
1041 key = 0;
1043 hhd = &hash->buckets[key];
1044 hlist_add_head(&entry->hlist, hhd);
1045 hash->count++;
1048 static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1050 struct ftrace_func_entry *entry;
1052 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1053 if (!entry)
1054 return -ENOMEM;
1056 entry->ip = ip;
1057 __add_hash_entry(hash, entry);
1059 return 0;
1062 static void
1063 free_hash_entry(struct ftrace_hash *hash,
1064 struct ftrace_func_entry *entry)
1066 hlist_del(&entry->hlist);
1067 kfree(entry);
1068 hash->count--;
1071 static void
1072 remove_hash_entry(struct ftrace_hash *hash,
1073 struct ftrace_func_entry *entry)
1075 hlist_del(&entry->hlist);
1076 hash->count--;
1079 static void ftrace_hash_clear(struct ftrace_hash *hash)
1081 struct hlist_head *hhd;
1082 struct hlist_node *tp, *tn;
1083 struct ftrace_func_entry *entry;
1084 int size = 1 << hash->size_bits;
1085 int i;
1087 if (!hash->count)
1088 return;
1090 for (i = 0; i < size; i++) {
1091 hhd = &hash->buckets[i];
1092 hlist_for_each_entry_safe(entry, tp, tn, hhd, hlist)
1093 free_hash_entry(hash, entry);
1095 FTRACE_WARN_ON(hash->count);
1098 static void free_ftrace_hash(struct ftrace_hash *hash)
1100 if (!hash || hash == EMPTY_HASH)
1101 return;
1102 ftrace_hash_clear(hash);
1103 kfree(hash->buckets);
1104 kfree(hash);
1107 static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1109 struct ftrace_hash *hash;
1111 hash = container_of(rcu, struct ftrace_hash, rcu);
1112 free_ftrace_hash(hash);
1115 static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1117 if (!hash || hash == EMPTY_HASH)
1118 return;
1119 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1122 static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1124 struct ftrace_hash *hash;
1125 int size;
1127 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1128 if (!hash)
1129 return NULL;
1131 size = 1 << size_bits;
1132 hash->buckets = kzalloc(sizeof(*hash->buckets) * size, GFP_KERNEL);
1134 if (!hash->buckets) {
1135 kfree(hash);
1136 return NULL;
1139 hash->size_bits = size_bits;
1141 return hash;
1144 static struct ftrace_hash *
1145 alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1147 struct ftrace_func_entry *entry;
1148 struct ftrace_hash *new_hash;
1149 struct hlist_node *tp;
1150 int size;
1151 int ret;
1152 int i;
1154 new_hash = alloc_ftrace_hash(size_bits);
1155 if (!new_hash)
1156 return NULL;
1158 /* Empty hash? */
1159 if (ftrace_hash_empty(hash))
1160 return new_hash;
1162 size = 1 << hash->size_bits;
1163 for (i = 0; i < size; i++) {
1164 hlist_for_each_entry(entry, tp, &hash->buckets[i], hlist) {
1165 ret = add_hash_entry(new_hash, entry->ip);
1166 if (ret < 0)
1167 goto free_hash;
1171 FTRACE_WARN_ON(new_hash->count != hash->count);
1173 return new_hash;
1175 free_hash:
1176 free_ftrace_hash(new_hash);
1177 return NULL;
1180 static void
1181 ftrace_hash_rec_disable(struct ftrace_ops *ops, int filter_hash);
1182 static void
1183 ftrace_hash_rec_enable(struct ftrace_ops *ops, int filter_hash);
1185 static int
1186 ftrace_hash_move(struct ftrace_ops *ops, int enable,
1187 struct ftrace_hash **dst, struct ftrace_hash *src)
1189 struct ftrace_func_entry *entry;
1190 struct hlist_node *tp, *tn;
1191 struct hlist_head *hhd;
1192 struct ftrace_hash *old_hash;
1193 struct ftrace_hash *new_hash;
1194 unsigned long key;
1195 int size = src->count;
1196 int bits = 0;
1197 int ret;
1198 int i;
1201 * Remove the current set, update the hash and add
1202 * them back.
1204 ftrace_hash_rec_disable(ops, enable);
1207 * If the new source is empty, just free dst and assign it
1208 * the empty_hash.
1210 if (!src->count) {
1211 free_ftrace_hash_rcu(*dst);
1212 rcu_assign_pointer(*dst, EMPTY_HASH);
1213 /* still need to update the function records */
1214 ret = 0;
1215 goto out;
1219 * Make the hash size about 1/2 the # found
1221 for (size /= 2; size; size >>= 1)
1222 bits++;
1224 /* Don't allocate too much */
1225 if (bits > FTRACE_HASH_MAX_BITS)
1226 bits = FTRACE_HASH_MAX_BITS;
1228 ret = -ENOMEM;
1229 new_hash = alloc_ftrace_hash(bits);
1230 if (!new_hash)
1231 goto out;
1233 size = 1 << src->size_bits;
1234 for (i = 0; i < size; i++) {
1235 hhd = &src->buckets[i];
1236 hlist_for_each_entry_safe(entry, tp, tn, hhd, hlist) {
1237 if (bits > 0)
1238 key = hash_long(entry->ip, bits);
1239 else
1240 key = 0;
1241 remove_hash_entry(src, entry);
1242 __add_hash_entry(new_hash, entry);
1246 old_hash = *dst;
1247 rcu_assign_pointer(*dst, new_hash);
1248 free_ftrace_hash_rcu(old_hash);
1250 ret = 0;
1251 out:
1253 * Enable regardless of ret:
1254 * On success, we enable the new hash.
1255 * On failure, we re-enable the original hash.
1257 ftrace_hash_rec_enable(ops, enable);
1259 return ret;
1263 * Test the hashes for this ops to see if we want to call
1264 * the ops->func or not.
1266 * It's a match if the ip is in the ops->filter_hash or
1267 * the filter_hash does not exist or is empty,
1268 * AND
1269 * the ip is not in the ops->notrace_hash.
1271 * This needs to be called with preemption disabled as
1272 * the hashes are freed with call_rcu_sched().
1274 static int
1275 ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip)
1277 struct ftrace_hash *filter_hash;
1278 struct ftrace_hash *notrace_hash;
1279 int ret;
1281 filter_hash = rcu_dereference_raw(ops->filter_hash);
1282 notrace_hash = rcu_dereference_raw(ops->notrace_hash);
1284 if ((ftrace_hash_empty(filter_hash) ||
1285 ftrace_lookup_ip(filter_hash, ip)) &&
1286 (ftrace_hash_empty(notrace_hash) ||
1287 !ftrace_lookup_ip(notrace_hash, ip)))
1288 ret = 1;
1289 else
1290 ret = 0;
1292 return ret;
1296 * This is a double for. Do not use 'break' to break out of the loop,
1297 * you must use a goto.
1299 #define do_for_each_ftrace_rec(pg, rec) \
1300 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1301 int _____i; \
1302 for (_____i = 0; _____i < pg->index; _____i++) { \
1303 rec = &pg->records[_____i];
1305 #define while_for_each_ftrace_rec() \
1310 static int ftrace_cmp_recs(const void *a, const void *b)
1312 const struct dyn_ftrace *reca = a;
1313 const struct dyn_ftrace *recb = b;
1315 if (reca->ip > recb->ip)
1316 return 1;
1317 if (reca->ip < recb->ip)
1318 return -1;
1319 return 0;
1323 * ftrace_location - return true if the ip giving is a traced location
1324 * @ip: the instruction pointer to check
1326 * Returns 1 if @ip given is a pointer to a ftrace location.
1327 * That is, the instruction that is either a NOP or call to
1328 * the function tracer. It checks the ftrace internal tables to
1329 * determine if the address belongs or not.
1331 int ftrace_location(unsigned long ip)
1333 struct ftrace_page *pg;
1334 struct dyn_ftrace *rec;
1335 struct dyn_ftrace key;
1337 key.ip = ip;
1339 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1340 rec = bsearch(&key, pg->records, pg->index,
1341 sizeof(struct dyn_ftrace),
1342 ftrace_cmp_recs);
1343 if (rec)
1344 return 1;
1347 return 0;
1350 static void __ftrace_hash_rec_update(struct ftrace_ops *ops,
1351 int filter_hash,
1352 bool inc)
1354 struct ftrace_hash *hash;
1355 struct ftrace_hash *other_hash;
1356 struct ftrace_page *pg;
1357 struct dyn_ftrace *rec;
1358 int count = 0;
1359 int all = 0;
1361 /* Only update if the ops has been registered */
1362 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1363 return;
1366 * In the filter_hash case:
1367 * If the count is zero, we update all records.
1368 * Otherwise we just update the items in the hash.
1370 * In the notrace_hash case:
1371 * We enable the update in the hash.
1372 * As disabling notrace means enabling the tracing,
1373 * and enabling notrace means disabling, the inc variable
1374 * gets inversed.
1376 if (filter_hash) {
1377 hash = ops->filter_hash;
1378 other_hash = ops->notrace_hash;
1379 if (ftrace_hash_empty(hash))
1380 all = 1;
1381 } else {
1382 inc = !inc;
1383 hash = ops->notrace_hash;
1384 other_hash = ops->filter_hash;
1386 * If the notrace hash has no items,
1387 * then there's nothing to do.
1389 if (ftrace_hash_empty(hash))
1390 return;
1393 do_for_each_ftrace_rec(pg, rec) {
1394 int in_other_hash = 0;
1395 int in_hash = 0;
1396 int match = 0;
1398 if (all) {
1400 * Only the filter_hash affects all records.
1401 * Update if the record is not in the notrace hash.
1403 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
1404 match = 1;
1405 } else {
1406 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1407 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
1412 if (filter_hash && in_hash && !in_other_hash)
1413 match = 1;
1414 else if (!filter_hash && in_hash &&
1415 (in_other_hash || ftrace_hash_empty(other_hash)))
1416 match = 1;
1418 if (!match)
1419 continue;
1421 if (inc) {
1422 rec->flags++;
1423 if (FTRACE_WARN_ON((rec->flags & ~FTRACE_FL_MASK) == FTRACE_REF_MAX))
1424 return;
1425 } else {
1426 if (FTRACE_WARN_ON((rec->flags & ~FTRACE_FL_MASK) == 0))
1427 return;
1428 rec->flags--;
1430 count++;
1431 /* Shortcut, if we handled all records, we are done. */
1432 if (!all && count == hash->count)
1433 return;
1434 } while_for_each_ftrace_rec();
1437 static void ftrace_hash_rec_disable(struct ftrace_ops *ops,
1438 int filter_hash)
1440 __ftrace_hash_rec_update(ops, filter_hash, 0);
1443 static void ftrace_hash_rec_enable(struct ftrace_ops *ops,
1444 int filter_hash)
1446 __ftrace_hash_rec_update(ops, filter_hash, 1);
1449 static struct dyn_ftrace *ftrace_alloc_dyn_node(unsigned long ip)
1451 if (ftrace_pages->index == ftrace_pages->size) {
1452 /* We should have allocated enough */
1453 if (WARN_ON(!ftrace_pages->next))
1454 return NULL;
1455 ftrace_pages = ftrace_pages->next;
1458 return &ftrace_pages->records[ftrace_pages->index++];
1461 static struct dyn_ftrace *
1462 ftrace_record_ip(unsigned long ip)
1464 struct dyn_ftrace *rec;
1466 if (ftrace_disabled)
1467 return NULL;
1469 rec = ftrace_alloc_dyn_node(ip);
1470 if (!rec)
1471 return NULL;
1473 rec->ip = ip;
1475 return rec;
1478 static void print_ip_ins(const char *fmt, unsigned char *p)
1480 int i;
1482 printk(KERN_CONT "%s", fmt);
1484 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1485 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1489 * ftrace_bug - report and shutdown function tracer
1490 * @failed: The failed type (EFAULT, EINVAL, EPERM)
1491 * @ip: The address that failed
1493 * The arch code that enables or disables the function tracing
1494 * can call ftrace_bug() when it has detected a problem in
1495 * modifying the code. @failed should be one of either:
1496 * EFAULT - if the problem happens on reading the @ip address
1497 * EINVAL - if what is read at @ip is not what was expected
1498 * EPERM - if the problem happens on writting to the @ip address
1500 void ftrace_bug(int failed, unsigned long ip)
1502 switch (failed) {
1503 case -EFAULT:
1504 FTRACE_WARN_ON_ONCE(1);
1505 pr_info("ftrace faulted on modifying ");
1506 print_ip_sym(ip);
1507 break;
1508 case -EINVAL:
1509 FTRACE_WARN_ON_ONCE(1);
1510 pr_info("ftrace failed to modify ");
1511 print_ip_sym(ip);
1512 print_ip_ins(" actual: ", (unsigned char *)ip);
1513 printk(KERN_CONT "\n");
1514 break;
1515 case -EPERM:
1516 FTRACE_WARN_ON_ONCE(1);
1517 pr_info("ftrace faulted on writing ");
1518 print_ip_sym(ip);
1519 break;
1520 default:
1521 FTRACE_WARN_ON_ONCE(1);
1522 pr_info("ftrace faulted on unknown error ");
1523 print_ip_sym(ip);
1528 /* Return 1 if the address range is reserved for ftrace */
1529 int ftrace_text_reserved(void *start, void *end)
1531 struct dyn_ftrace *rec;
1532 struct ftrace_page *pg;
1534 do_for_each_ftrace_rec(pg, rec) {
1535 if (rec->ip <= (unsigned long)end &&
1536 rec->ip + MCOUNT_INSN_SIZE > (unsigned long)start)
1537 return 1;
1538 } while_for_each_ftrace_rec();
1539 return 0;
1542 static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
1544 unsigned long flag = 0UL;
1547 * If we are updating calls:
1549 * If the record has a ref count, then we need to enable it
1550 * because someone is using it.
1552 * Otherwise we make sure its disabled.
1554 * If we are disabling calls, then disable all records that
1555 * are enabled.
1557 if (enable && (rec->flags & ~FTRACE_FL_MASK))
1558 flag = FTRACE_FL_ENABLED;
1560 /* If the state of this record hasn't changed, then do nothing */
1561 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
1562 return FTRACE_UPDATE_IGNORE;
1564 if (flag) {
1565 if (update)
1566 rec->flags |= FTRACE_FL_ENABLED;
1567 return FTRACE_UPDATE_MAKE_CALL;
1570 if (update)
1571 rec->flags &= ~FTRACE_FL_ENABLED;
1573 return FTRACE_UPDATE_MAKE_NOP;
1577 * ftrace_update_record, set a record that now is tracing or not
1578 * @rec: the record to update
1579 * @enable: set to 1 if the record is tracing, zero to force disable
1581 * The records that represent all functions that can be traced need
1582 * to be updated when tracing has been enabled.
1584 int ftrace_update_record(struct dyn_ftrace *rec, int enable)
1586 return ftrace_check_record(rec, enable, 1);
1590 * ftrace_test_record, check if the record has been enabled or not
1591 * @rec: the record to test
1592 * @enable: set to 1 to check if enabled, 0 if it is disabled
1594 * The arch code may need to test if a record is already set to
1595 * tracing to determine how to modify the function code that it
1596 * represents.
1598 int ftrace_test_record(struct dyn_ftrace *rec, int enable)
1600 return ftrace_check_record(rec, enable, 0);
1603 static int
1604 __ftrace_replace_code(struct dyn_ftrace *rec, int enable)
1606 unsigned long ftrace_addr;
1607 int ret;
1609 ftrace_addr = (unsigned long)FTRACE_ADDR;
1611 ret = ftrace_update_record(rec, enable);
1613 switch (ret) {
1614 case FTRACE_UPDATE_IGNORE:
1615 return 0;
1617 case FTRACE_UPDATE_MAKE_CALL:
1618 return ftrace_make_call(rec, ftrace_addr);
1620 case FTRACE_UPDATE_MAKE_NOP:
1621 return ftrace_make_nop(NULL, rec, ftrace_addr);
1624 return -1; /* unknow ftrace bug */
1627 static void ftrace_replace_code(int update)
1629 struct dyn_ftrace *rec;
1630 struct ftrace_page *pg;
1631 int failed;
1633 if (unlikely(ftrace_disabled))
1634 return;
1636 do_for_each_ftrace_rec(pg, rec) {
1637 failed = __ftrace_replace_code(rec, update);
1638 if (failed) {
1639 ftrace_bug(failed, rec->ip);
1640 /* Stop processing */
1641 return;
1643 } while_for_each_ftrace_rec();
1646 struct ftrace_rec_iter {
1647 struct ftrace_page *pg;
1648 int index;
1652 * ftrace_rec_iter_start, start up iterating over traced functions
1654 * Returns an iterator handle that is used to iterate over all
1655 * the records that represent address locations where functions
1656 * are traced.
1658 * May return NULL if no records are available.
1660 struct ftrace_rec_iter *ftrace_rec_iter_start(void)
1663 * We only use a single iterator.
1664 * Protected by the ftrace_lock mutex.
1666 static struct ftrace_rec_iter ftrace_rec_iter;
1667 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
1669 iter->pg = ftrace_pages_start;
1670 iter->index = 0;
1672 /* Could have empty pages */
1673 while (iter->pg && !iter->pg->index)
1674 iter->pg = iter->pg->next;
1676 if (!iter->pg)
1677 return NULL;
1679 return iter;
1683 * ftrace_rec_iter_next, get the next record to process.
1684 * @iter: The handle to the iterator.
1686 * Returns the next iterator after the given iterator @iter.
1688 struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
1690 iter->index++;
1692 if (iter->index >= iter->pg->index) {
1693 iter->pg = iter->pg->next;
1694 iter->index = 0;
1696 /* Could have empty pages */
1697 while (iter->pg && !iter->pg->index)
1698 iter->pg = iter->pg->next;
1701 if (!iter->pg)
1702 return NULL;
1704 return iter;
1708 * ftrace_rec_iter_record, get the record at the iterator location
1709 * @iter: The current iterator location
1711 * Returns the record that the current @iter is at.
1713 struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
1715 return &iter->pg->records[iter->index];
1718 static int
1719 ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
1721 unsigned long ip;
1722 int ret;
1724 ip = rec->ip;
1726 if (unlikely(ftrace_disabled))
1727 return 0;
1729 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
1730 if (ret) {
1731 ftrace_bug(ret, ip);
1732 return 0;
1734 return 1;
1738 * archs can override this function if they must do something
1739 * before the modifying code is performed.
1741 int __weak ftrace_arch_code_modify_prepare(void)
1743 return 0;
1747 * archs can override this function if they must do something
1748 * after the modifying code is performed.
1750 int __weak ftrace_arch_code_modify_post_process(void)
1752 return 0;
1755 static int __ftrace_modify_code(void *data)
1757 int *command = data;
1759 if (*command & FTRACE_UPDATE_CALLS)
1760 ftrace_replace_code(1);
1761 else if (*command & FTRACE_DISABLE_CALLS)
1762 ftrace_replace_code(0);
1764 if (*command & FTRACE_UPDATE_TRACE_FUNC)
1765 ftrace_update_ftrace_func(ftrace_trace_function);
1767 if (*command & FTRACE_START_FUNC_RET)
1768 ftrace_enable_ftrace_graph_caller();
1769 else if (*command & FTRACE_STOP_FUNC_RET)
1770 ftrace_disable_ftrace_graph_caller();
1772 return 0;
1776 * ftrace_run_stop_machine, go back to the stop machine method
1777 * @command: The command to tell ftrace what to do
1779 * If an arch needs to fall back to the stop machine method, the
1780 * it can call this function.
1782 void ftrace_run_stop_machine(int command)
1784 stop_machine(__ftrace_modify_code, &command, NULL);
1788 * arch_ftrace_update_code, modify the code to trace or not trace
1789 * @command: The command that needs to be done
1791 * Archs can override this function if it does not need to
1792 * run stop_machine() to modify code.
1794 void __weak arch_ftrace_update_code(int command)
1796 ftrace_run_stop_machine(command);
1799 static void ftrace_run_update_code(int command)
1801 int ret;
1803 ret = ftrace_arch_code_modify_prepare();
1804 FTRACE_WARN_ON(ret);
1805 if (ret)
1806 return;
1808 * Do not call function tracer while we update the code.
1809 * We are in stop machine.
1811 function_trace_stop++;
1814 * By default we use stop_machine() to modify the code.
1815 * But archs can do what ever they want as long as it
1816 * is safe. The stop_machine() is the safest, but also
1817 * produces the most overhead.
1819 arch_ftrace_update_code(command);
1821 #ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
1823 * For archs that call ftrace_test_stop_func(), we must
1824 * wait till after we update all the function callers
1825 * before we update the callback. This keeps different
1826 * ops that record different functions from corrupting
1827 * each other.
1829 __ftrace_trace_function = __ftrace_trace_function_delay;
1830 #endif
1831 function_trace_stop--;
1833 ret = ftrace_arch_code_modify_post_process();
1834 FTRACE_WARN_ON(ret);
1837 static ftrace_func_t saved_ftrace_func;
1838 static int ftrace_start_up;
1839 static int global_start_up;
1841 static void ftrace_startup_enable(int command)
1843 if (saved_ftrace_func != ftrace_trace_function) {
1844 saved_ftrace_func = ftrace_trace_function;
1845 command |= FTRACE_UPDATE_TRACE_FUNC;
1848 if (!command || !ftrace_enabled)
1849 return;
1851 ftrace_run_update_code(command);
1854 static int ftrace_startup(struct ftrace_ops *ops, int command)
1856 bool hash_enable = true;
1858 if (unlikely(ftrace_disabled))
1859 return -ENODEV;
1861 ftrace_start_up++;
1862 command |= FTRACE_UPDATE_CALLS;
1864 /* ops marked global share the filter hashes */
1865 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
1866 ops = &global_ops;
1867 /* Don't update hash if global is already set */
1868 if (global_start_up)
1869 hash_enable = false;
1870 global_start_up++;
1873 ops->flags |= FTRACE_OPS_FL_ENABLED;
1874 if (hash_enable)
1875 ftrace_hash_rec_enable(ops, 1);
1877 ftrace_startup_enable(command);
1879 return 0;
1882 static void ftrace_shutdown(struct ftrace_ops *ops, int command)
1884 bool hash_disable = true;
1886 if (unlikely(ftrace_disabled))
1887 return;
1889 ftrace_start_up--;
1891 * Just warn in case of unbalance, no need to kill ftrace, it's not
1892 * critical but the ftrace_call callers may be never nopped again after
1893 * further ftrace uses.
1895 WARN_ON_ONCE(ftrace_start_up < 0);
1897 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
1898 ops = &global_ops;
1899 global_start_up--;
1900 WARN_ON_ONCE(global_start_up < 0);
1901 /* Don't update hash if global still has users */
1902 if (global_start_up) {
1903 WARN_ON_ONCE(!ftrace_start_up);
1904 hash_disable = false;
1908 if (hash_disable)
1909 ftrace_hash_rec_disable(ops, 1);
1911 if (ops != &global_ops || !global_start_up)
1912 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
1914 command |= FTRACE_UPDATE_CALLS;
1916 if (saved_ftrace_func != ftrace_trace_function) {
1917 saved_ftrace_func = ftrace_trace_function;
1918 command |= FTRACE_UPDATE_TRACE_FUNC;
1921 if (!command || !ftrace_enabled)
1922 return;
1924 ftrace_run_update_code(command);
1927 static void ftrace_startup_sysctl(void)
1929 if (unlikely(ftrace_disabled))
1930 return;
1932 /* Force update next time */
1933 saved_ftrace_func = NULL;
1934 /* ftrace_start_up is true if we want ftrace running */
1935 if (ftrace_start_up)
1936 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
1939 static void ftrace_shutdown_sysctl(void)
1941 if (unlikely(ftrace_disabled))
1942 return;
1944 /* ftrace_start_up is true if ftrace is running */
1945 if (ftrace_start_up)
1946 ftrace_run_update_code(FTRACE_DISABLE_CALLS);
1949 static cycle_t ftrace_update_time;
1950 static unsigned long ftrace_update_cnt;
1951 unsigned long ftrace_update_tot_cnt;
1953 static int ops_traces_mod(struct ftrace_ops *ops)
1955 struct ftrace_hash *hash;
1957 hash = ops->filter_hash;
1958 return ftrace_hash_empty(hash);
1961 static int ftrace_update_code(struct module *mod)
1963 struct ftrace_page *pg;
1964 struct dyn_ftrace *p;
1965 cycle_t start, stop;
1966 unsigned long ref = 0;
1967 int i;
1970 * When adding a module, we need to check if tracers are
1971 * currently enabled and if they are set to trace all functions.
1972 * If they are, we need to enable the module functions as well
1973 * as update the reference counts for those function records.
1975 if (mod) {
1976 struct ftrace_ops *ops;
1978 for (ops = ftrace_ops_list;
1979 ops != &ftrace_list_end; ops = ops->next) {
1980 if (ops->flags & FTRACE_OPS_FL_ENABLED &&
1981 ops_traces_mod(ops))
1982 ref++;
1986 start = ftrace_now(raw_smp_processor_id());
1987 ftrace_update_cnt = 0;
1989 for (pg = ftrace_new_pgs; pg; pg = pg->next) {
1991 for (i = 0; i < pg->index; i++) {
1992 /* If something went wrong, bail without enabling anything */
1993 if (unlikely(ftrace_disabled))
1994 return -1;
1996 p = &pg->records[i];
1997 p->flags = ref;
2000 * Do the initial record conversion from mcount jump
2001 * to the NOP instructions.
2003 if (!ftrace_code_disable(mod, p))
2004 break;
2006 ftrace_update_cnt++;
2009 * If the tracing is enabled, go ahead and enable the record.
2011 * The reason not to enable the record immediatelly is the
2012 * inherent check of ftrace_make_nop/ftrace_make_call for
2013 * correct previous instructions. Making first the NOP
2014 * conversion puts the module to the correct state, thus
2015 * passing the ftrace_make_call check.
2017 if (ftrace_start_up && ref) {
2018 int failed = __ftrace_replace_code(p, 1);
2019 if (failed)
2020 ftrace_bug(failed, p->ip);
2025 ftrace_new_pgs = NULL;
2027 stop = ftrace_now(raw_smp_processor_id());
2028 ftrace_update_time = stop - start;
2029 ftrace_update_tot_cnt += ftrace_update_cnt;
2031 return 0;
2034 static int ftrace_allocate_records(struct ftrace_page *pg, int count)
2036 int order;
2037 int cnt;
2039 if (WARN_ON(!count))
2040 return -EINVAL;
2042 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
2045 * We want to fill as much as possible. No more than a page
2046 * may be empty.
2048 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2049 order--;
2051 again:
2052 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
2054 if (!pg->records) {
2055 /* if we can't allocate this size, try something smaller */
2056 if (!order)
2057 return -ENOMEM;
2058 order >>= 1;
2059 goto again;
2062 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
2063 pg->size = cnt;
2065 if (cnt > count)
2066 cnt = count;
2068 return cnt;
2071 static struct ftrace_page *
2072 ftrace_allocate_pages(unsigned long num_to_init)
2074 struct ftrace_page *start_pg;
2075 struct ftrace_page *pg;
2076 int order;
2077 int cnt;
2079 if (!num_to_init)
2080 return 0;
2082 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
2083 if (!pg)
2084 return NULL;
2087 * Try to allocate as much as possible in one continues
2088 * location that fills in all of the space. We want to
2089 * waste as little space as possible.
2091 for (;;) {
2092 cnt = ftrace_allocate_records(pg, num_to_init);
2093 if (cnt < 0)
2094 goto free_pages;
2096 num_to_init -= cnt;
2097 if (!num_to_init)
2098 break;
2100 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
2101 if (!pg->next)
2102 goto free_pages;
2104 pg = pg->next;
2107 return start_pg;
2109 free_pages:
2110 while (start_pg) {
2111 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
2112 free_pages((unsigned long)pg->records, order);
2113 start_pg = pg->next;
2114 kfree(pg);
2115 pg = start_pg;
2117 pr_info("ftrace: FAILED to allocate memory for functions\n");
2118 return NULL;
2121 static int __init ftrace_dyn_table_alloc(unsigned long num_to_init)
2123 int cnt;
2125 if (!num_to_init) {
2126 pr_info("ftrace: No functions to be traced?\n");
2127 return -1;
2130 cnt = num_to_init / ENTRIES_PER_PAGE;
2131 pr_info("ftrace: allocating %ld entries in %d pages\n",
2132 num_to_init, cnt + 1);
2134 return 0;
2137 #define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
2139 struct ftrace_iterator {
2140 loff_t pos;
2141 loff_t func_pos;
2142 struct ftrace_page *pg;
2143 struct dyn_ftrace *func;
2144 struct ftrace_func_probe *probe;
2145 struct trace_parser parser;
2146 struct ftrace_hash *hash;
2147 struct ftrace_ops *ops;
2148 int hidx;
2149 int idx;
2150 unsigned flags;
2153 static void *
2154 t_hash_next(struct seq_file *m, loff_t *pos)
2156 struct ftrace_iterator *iter = m->private;
2157 struct hlist_node *hnd = NULL;
2158 struct hlist_head *hhd;
2160 (*pos)++;
2161 iter->pos = *pos;
2163 if (iter->probe)
2164 hnd = &iter->probe->node;
2165 retry:
2166 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
2167 return NULL;
2169 hhd = &ftrace_func_hash[iter->hidx];
2171 if (hlist_empty(hhd)) {
2172 iter->hidx++;
2173 hnd = NULL;
2174 goto retry;
2177 if (!hnd)
2178 hnd = hhd->first;
2179 else {
2180 hnd = hnd->next;
2181 if (!hnd) {
2182 iter->hidx++;
2183 goto retry;
2187 if (WARN_ON_ONCE(!hnd))
2188 return NULL;
2190 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
2192 return iter;
2195 static void *t_hash_start(struct seq_file *m, loff_t *pos)
2197 struct ftrace_iterator *iter = m->private;
2198 void *p = NULL;
2199 loff_t l;
2201 if (!(iter->flags & FTRACE_ITER_DO_HASH))
2202 return NULL;
2204 if (iter->func_pos > *pos)
2205 return NULL;
2207 iter->hidx = 0;
2208 for (l = 0; l <= (*pos - iter->func_pos); ) {
2209 p = t_hash_next(m, &l);
2210 if (!p)
2211 break;
2213 if (!p)
2214 return NULL;
2216 /* Only set this if we have an item */
2217 iter->flags |= FTRACE_ITER_HASH;
2219 return iter;
2222 static int
2223 t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
2225 struct ftrace_func_probe *rec;
2227 rec = iter->probe;
2228 if (WARN_ON_ONCE(!rec))
2229 return -EIO;
2231 if (rec->ops->print)
2232 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
2234 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
2236 if (rec->data)
2237 seq_printf(m, ":%p", rec->data);
2238 seq_putc(m, '\n');
2240 return 0;
2243 static void *
2244 t_next(struct seq_file *m, void *v, loff_t *pos)
2246 struct ftrace_iterator *iter = m->private;
2247 struct ftrace_ops *ops = iter->ops;
2248 struct dyn_ftrace *rec = NULL;
2250 if (unlikely(ftrace_disabled))
2251 return NULL;
2253 if (iter->flags & FTRACE_ITER_HASH)
2254 return t_hash_next(m, pos);
2256 (*pos)++;
2257 iter->pos = iter->func_pos = *pos;
2259 if (iter->flags & FTRACE_ITER_PRINTALL)
2260 return t_hash_start(m, pos);
2262 retry:
2263 if (iter->idx >= iter->pg->index) {
2264 if (iter->pg->next) {
2265 iter->pg = iter->pg->next;
2266 iter->idx = 0;
2267 goto retry;
2269 } else {
2270 rec = &iter->pg->records[iter->idx++];
2271 if (((iter->flags & FTRACE_ITER_FILTER) &&
2272 !(ftrace_lookup_ip(ops->filter_hash, rec->ip))) ||
2274 ((iter->flags & FTRACE_ITER_NOTRACE) &&
2275 !ftrace_lookup_ip(ops->notrace_hash, rec->ip)) ||
2277 ((iter->flags & FTRACE_ITER_ENABLED) &&
2278 !(rec->flags & ~FTRACE_FL_MASK))) {
2280 rec = NULL;
2281 goto retry;
2285 if (!rec)
2286 return t_hash_start(m, pos);
2288 iter->func = rec;
2290 return iter;
2293 static void reset_iter_read(struct ftrace_iterator *iter)
2295 iter->pos = 0;
2296 iter->func_pos = 0;
2297 iter->flags &= ~(FTRACE_ITER_PRINTALL & FTRACE_ITER_HASH);
2300 static void *t_start(struct seq_file *m, loff_t *pos)
2302 struct ftrace_iterator *iter = m->private;
2303 struct ftrace_ops *ops = iter->ops;
2304 void *p = NULL;
2305 loff_t l;
2307 mutex_lock(&ftrace_lock);
2309 if (unlikely(ftrace_disabled))
2310 return NULL;
2313 * If an lseek was done, then reset and start from beginning.
2315 if (*pos < iter->pos)
2316 reset_iter_read(iter);
2319 * For set_ftrace_filter reading, if we have the filter
2320 * off, we can short cut and just print out that all
2321 * functions are enabled.
2323 if (iter->flags & FTRACE_ITER_FILTER &&
2324 ftrace_hash_empty(ops->filter_hash)) {
2325 if (*pos > 0)
2326 return t_hash_start(m, pos);
2327 iter->flags |= FTRACE_ITER_PRINTALL;
2328 /* reset in case of seek/pread */
2329 iter->flags &= ~FTRACE_ITER_HASH;
2330 return iter;
2333 if (iter->flags & FTRACE_ITER_HASH)
2334 return t_hash_start(m, pos);
2337 * Unfortunately, we need to restart at ftrace_pages_start
2338 * every time we let go of the ftrace_mutex. This is because
2339 * those pointers can change without the lock.
2341 iter->pg = ftrace_pages_start;
2342 iter->idx = 0;
2343 for (l = 0; l <= *pos; ) {
2344 p = t_next(m, p, &l);
2345 if (!p)
2346 break;
2349 if (!p)
2350 return t_hash_start(m, pos);
2352 return iter;
2355 static void t_stop(struct seq_file *m, void *p)
2357 mutex_unlock(&ftrace_lock);
2360 static int t_show(struct seq_file *m, void *v)
2362 struct ftrace_iterator *iter = m->private;
2363 struct dyn_ftrace *rec;
2365 if (iter->flags & FTRACE_ITER_HASH)
2366 return t_hash_show(m, iter);
2368 if (iter->flags & FTRACE_ITER_PRINTALL) {
2369 seq_printf(m, "#### all functions enabled ####\n");
2370 return 0;
2373 rec = iter->func;
2375 if (!rec)
2376 return 0;
2378 seq_printf(m, "%ps", (void *)rec->ip);
2379 if (iter->flags & FTRACE_ITER_ENABLED)
2380 seq_printf(m, " (%ld)",
2381 rec->flags & ~FTRACE_FL_MASK);
2382 seq_printf(m, "\n");
2384 return 0;
2387 static const struct seq_operations show_ftrace_seq_ops = {
2388 .start = t_start,
2389 .next = t_next,
2390 .stop = t_stop,
2391 .show = t_show,
2394 static int
2395 ftrace_avail_open(struct inode *inode, struct file *file)
2397 struct ftrace_iterator *iter;
2398 int ret;
2400 if (unlikely(ftrace_disabled))
2401 return -ENODEV;
2403 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2404 if (!iter)
2405 return -ENOMEM;
2407 iter->pg = ftrace_pages_start;
2408 iter->ops = &global_ops;
2410 ret = seq_open(file, &show_ftrace_seq_ops);
2411 if (!ret) {
2412 struct seq_file *m = file->private_data;
2414 m->private = iter;
2415 } else {
2416 kfree(iter);
2419 return ret;
2422 static int
2423 ftrace_enabled_open(struct inode *inode, struct file *file)
2425 struct ftrace_iterator *iter;
2426 int ret;
2428 if (unlikely(ftrace_disabled))
2429 return -ENODEV;
2431 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2432 if (!iter)
2433 return -ENOMEM;
2435 iter->pg = ftrace_pages_start;
2436 iter->flags = FTRACE_ITER_ENABLED;
2437 iter->ops = &global_ops;
2439 ret = seq_open(file, &show_ftrace_seq_ops);
2440 if (!ret) {
2441 struct seq_file *m = file->private_data;
2443 m->private = iter;
2444 } else {
2445 kfree(iter);
2448 return ret;
2451 static void ftrace_filter_reset(struct ftrace_hash *hash)
2453 mutex_lock(&ftrace_lock);
2454 ftrace_hash_clear(hash);
2455 mutex_unlock(&ftrace_lock);
2459 * ftrace_regex_open - initialize function tracer filter files
2460 * @ops: The ftrace_ops that hold the hash filters
2461 * @flag: The type of filter to process
2462 * @inode: The inode, usually passed in to your open routine
2463 * @file: The file, usually passed in to your open routine
2465 * ftrace_regex_open() initializes the filter files for the
2466 * @ops. Depending on @flag it may process the filter hash or
2467 * the notrace hash of @ops. With this called from the open
2468 * routine, you can use ftrace_filter_write() for the write
2469 * routine if @flag has FTRACE_ITER_FILTER set, or
2470 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
2471 * ftrace_regex_lseek() should be used as the lseek routine, and
2472 * release must call ftrace_regex_release().
2475 ftrace_regex_open(struct ftrace_ops *ops, int flag,
2476 struct inode *inode, struct file *file)
2478 struct ftrace_iterator *iter;
2479 struct ftrace_hash *hash;
2480 int ret = 0;
2482 if (unlikely(ftrace_disabled))
2483 return -ENODEV;
2485 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2486 if (!iter)
2487 return -ENOMEM;
2489 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
2490 kfree(iter);
2491 return -ENOMEM;
2494 if (flag & FTRACE_ITER_NOTRACE)
2495 hash = ops->notrace_hash;
2496 else
2497 hash = ops->filter_hash;
2499 iter->ops = ops;
2500 iter->flags = flag;
2502 if (file->f_mode & FMODE_WRITE) {
2503 mutex_lock(&ftrace_lock);
2504 iter->hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, hash);
2505 mutex_unlock(&ftrace_lock);
2507 if (!iter->hash) {
2508 trace_parser_put(&iter->parser);
2509 kfree(iter);
2510 return -ENOMEM;
2514 mutex_lock(&ftrace_regex_lock);
2516 if ((file->f_mode & FMODE_WRITE) &&
2517 (file->f_flags & O_TRUNC))
2518 ftrace_filter_reset(iter->hash);
2520 if (file->f_mode & FMODE_READ) {
2521 iter->pg = ftrace_pages_start;
2523 ret = seq_open(file, &show_ftrace_seq_ops);
2524 if (!ret) {
2525 struct seq_file *m = file->private_data;
2526 m->private = iter;
2527 } else {
2528 /* Failed */
2529 free_ftrace_hash(iter->hash);
2530 trace_parser_put(&iter->parser);
2531 kfree(iter);
2533 } else
2534 file->private_data = iter;
2535 mutex_unlock(&ftrace_regex_lock);
2537 return ret;
2540 static int
2541 ftrace_filter_open(struct inode *inode, struct file *file)
2543 return ftrace_regex_open(&global_ops,
2544 FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH,
2545 inode, file);
2548 static int
2549 ftrace_notrace_open(struct inode *inode, struct file *file)
2551 return ftrace_regex_open(&global_ops, FTRACE_ITER_NOTRACE,
2552 inode, file);
2555 loff_t
2556 ftrace_regex_lseek(struct file *file, loff_t offset, int origin)
2558 loff_t ret;
2560 if (file->f_mode & FMODE_READ)
2561 ret = seq_lseek(file, offset, origin);
2562 else
2563 file->f_pos = ret = 1;
2565 return ret;
2568 static int ftrace_match(char *str, char *regex, int len, int type)
2570 int matched = 0;
2571 int slen;
2573 switch (type) {
2574 case MATCH_FULL:
2575 if (strcmp(str, regex) == 0)
2576 matched = 1;
2577 break;
2578 case MATCH_FRONT_ONLY:
2579 if (strncmp(str, regex, len) == 0)
2580 matched = 1;
2581 break;
2582 case MATCH_MIDDLE_ONLY:
2583 if (strstr(str, regex))
2584 matched = 1;
2585 break;
2586 case MATCH_END_ONLY:
2587 slen = strlen(str);
2588 if (slen >= len && memcmp(str + slen - len, regex, len) == 0)
2589 matched = 1;
2590 break;
2593 return matched;
2596 static int
2597 enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int not)
2599 struct ftrace_func_entry *entry;
2600 int ret = 0;
2602 entry = ftrace_lookup_ip(hash, rec->ip);
2603 if (not) {
2604 /* Do nothing if it doesn't exist */
2605 if (!entry)
2606 return 0;
2608 free_hash_entry(hash, entry);
2609 } else {
2610 /* Do nothing if it exists */
2611 if (entry)
2612 return 0;
2614 ret = add_hash_entry(hash, rec->ip);
2616 return ret;
2619 static int
2620 ftrace_match_record(struct dyn_ftrace *rec, char *mod,
2621 char *regex, int len, int type)
2623 char str[KSYM_SYMBOL_LEN];
2624 char *modname;
2626 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
2628 if (mod) {
2629 /* module lookup requires matching the module */
2630 if (!modname || strcmp(modname, mod))
2631 return 0;
2633 /* blank search means to match all funcs in the mod */
2634 if (!len)
2635 return 1;
2638 return ftrace_match(str, regex, len, type);
2641 static int
2642 match_records(struct ftrace_hash *hash, char *buff,
2643 int len, char *mod, int not)
2645 unsigned search_len = 0;
2646 struct ftrace_page *pg;
2647 struct dyn_ftrace *rec;
2648 int type = MATCH_FULL;
2649 char *search = buff;
2650 int found = 0;
2651 int ret;
2653 if (len) {
2654 type = filter_parse_regex(buff, len, &search, &not);
2655 search_len = strlen(search);
2658 mutex_lock(&ftrace_lock);
2660 if (unlikely(ftrace_disabled))
2661 goto out_unlock;
2663 do_for_each_ftrace_rec(pg, rec) {
2664 if (ftrace_match_record(rec, mod, search, search_len, type)) {
2665 ret = enter_record(hash, rec, not);
2666 if (ret < 0) {
2667 found = ret;
2668 goto out_unlock;
2670 found = 1;
2672 } while_for_each_ftrace_rec();
2673 out_unlock:
2674 mutex_unlock(&ftrace_lock);
2676 return found;
2679 static int
2680 ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
2682 return match_records(hash, buff, len, NULL, 0);
2685 static int
2686 ftrace_match_module_records(struct ftrace_hash *hash, char *buff, char *mod)
2688 int not = 0;
2690 /* blank or '*' mean the same */
2691 if (strcmp(buff, "*") == 0)
2692 buff[0] = 0;
2694 /* handle the case of 'dont filter this module' */
2695 if (strcmp(buff, "!") == 0 || strcmp(buff, "!*") == 0) {
2696 buff[0] = 0;
2697 not = 1;
2700 return match_records(hash, buff, strlen(buff), mod, not);
2704 * We register the module command as a template to show others how
2705 * to register the a command as well.
2708 static int
2709 ftrace_mod_callback(struct ftrace_hash *hash,
2710 char *func, char *cmd, char *param, int enable)
2712 char *mod;
2713 int ret = -EINVAL;
2716 * cmd == 'mod' because we only registered this func
2717 * for the 'mod' ftrace_func_command.
2718 * But if you register one func with multiple commands,
2719 * you can tell which command was used by the cmd
2720 * parameter.
2723 /* we must have a module name */
2724 if (!param)
2725 return ret;
2727 mod = strsep(&param, ":");
2728 if (!strlen(mod))
2729 return ret;
2731 ret = ftrace_match_module_records(hash, func, mod);
2732 if (!ret)
2733 ret = -EINVAL;
2734 if (ret < 0)
2735 return ret;
2737 return 0;
2740 static struct ftrace_func_command ftrace_mod_cmd = {
2741 .name = "mod",
2742 .func = ftrace_mod_callback,
2745 static int __init ftrace_mod_cmd_init(void)
2747 return register_ftrace_command(&ftrace_mod_cmd);
2749 device_initcall(ftrace_mod_cmd_init);
2751 static void
2752 function_trace_probe_call(unsigned long ip, unsigned long parent_ip)
2754 struct ftrace_func_probe *entry;
2755 struct hlist_head *hhd;
2756 struct hlist_node *n;
2757 unsigned long key;
2759 key = hash_long(ip, FTRACE_HASH_BITS);
2761 hhd = &ftrace_func_hash[key];
2763 if (hlist_empty(hhd))
2764 return;
2767 * Disable preemption for these calls to prevent a RCU grace
2768 * period. This syncs the hash iteration and freeing of items
2769 * on the hash. rcu_read_lock is too dangerous here.
2771 preempt_disable_notrace();
2772 hlist_for_each_entry_rcu(entry, n, hhd, node) {
2773 if (entry->ip == ip)
2774 entry->ops->func(ip, parent_ip, &entry->data);
2776 preempt_enable_notrace();
2779 static struct ftrace_ops trace_probe_ops __read_mostly =
2781 .func = function_trace_probe_call,
2784 static int ftrace_probe_registered;
2786 static void __enable_ftrace_function_probe(void)
2788 int ret;
2789 int i;
2791 if (ftrace_probe_registered)
2792 return;
2794 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2795 struct hlist_head *hhd = &ftrace_func_hash[i];
2796 if (hhd->first)
2797 break;
2799 /* Nothing registered? */
2800 if (i == FTRACE_FUNC_HASHSIZE)
2801 return;
2803 ret = __register_ftrace_function(&trace_probe_ops);
2804 if (!ret)
2805 ret = ftrace_startup(&trace_probe_ops, 0);
2807 ftrace_probe_registered = 1;
2810 static void __disable_ftrace_function_probe(void)
2812 int ret;
2813 int i;
2815 if (!ftrace_probe_registered)
2816 return;
2818 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2819 struct hlist_head *hhd = &ftrace_func_hash[i];
2820 if (hhd->first)
2821 return;
2824 /* no more funcs left */
2825 ret = __unregister_ftrace_function(&trace_probe_ops);
2826 if (!ret)
2827 ftrace_shutdown(&trace_probe_ops, 0);
2829 ftrace_probe_registered = 0;
2833 static void ftrace_free_entry_rcu(struct rcu_head *rhp)
2835 struct ftrace_func_probe *entry =
2836 container_of(rhp, struct ftrace_func_probe, rcu);
2838 if (entry->ops->free)
2839 entry->ops->free(&entry->data);
2840 kfree(entry);
2845 register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
2846 void *data)
2848 struct ftrace_func_probe *entry;
2849 struct ftrace_page *pg;
2850 struct dyn_ftrace *rec;
2851 int type, len, not;
2852 unsigned long key;
2853 int count = 0;
2854 char *search;
2856 type = filter_parse_regex(glob, strlen(glob), &search, &not);
2857 len = strlen(search);
2859 /* we do not support '!' for function probes */
2860 if (WARN_ON(not))
2861 return -EINVAL;
2863 mutex_lock(&ftrace_lock);
2865 if (unlikely(ftrace_disabled))
2866 goto out_unlock;
2868 do_for_each_ftrace_rec(pg, rec) {
2870 if (!ftrace_match_record(rec, NULL, search, len, type))
2871 continue;
2873 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
2874 if (!entry) {
2875 /* If we did not process any, then return error */
2876 if (!count)
2877 count = -ENOMEM;
2878 goto out_unlock;
2881 count++;
2883 entry->data = data;
2886 * The caller might want to do something special
2887 * for each function we find. We call the callback
2888 * to give the caller an opportunity to do so.
2890 if (ops->callback) {
2891 if (ops->callback(rec->ip, &entry->data) < 0) {
2892 /* caller does not like this func */
2893 kfree(entry);
2894 continue;
2898 entry->ops = ops;
2899 entry->ip = rec->ip;
2901 key = hash_long(entry->ip, FTRACE_HASH_BITS);
2902 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
2904 } while_for_each_ftrace_rec();
2905 __enable_ftrace_function_probe();
2907 out_unlock:
2908 mutex_unlock(&ftrace_lock);
2910 return count;
2913 enum {
2914 PROBE_TEST_FUNC = 1,
2915 PROBE_TEST_DATA = 2
2918 static void
2919 __unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
2920 void *data, int flags)
2922 struct ftrace_func_probe *entry;
2923 struct hlist_node *n, *tmp;
2924 char str[KSYM_SYMBOL_LEN];
2925 int type = MATCH_FULL;
2926 int i, len = 0;
2927 char *search;
2929 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
2930 glob = NULL;
2931 else if (glob) {
2932 int not;
2934 type = filter_parse_regex(glob, strlen(glob), &search, &not);
2935 len = strlen(search);
2937 /* we do not support '!' for function probes */
2938 if (WARN_ON(not))
2939 return;
2942 mutex_lock(&ftrace_lock);
2943 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2944 struct hlist_head *hhd = &ftrace_func_hash[i];
2946 hlist_for_each_entry_safe(entry, n, tmp, hhd, node) {
2948 /* break up if statements for readability */
2949 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
2950 continue;
2952 if ((flags & PROBE_TEST_DATA) && entry->data != data)
2953 continue;
2955 /* do this last, since it is the most expensive */
2956 if (glob) {
2957 kallsyms_lookup(entry->ip, NULL, NULL,
2958 NULL, str);
2959 if (!ftrace_match(str, glob, len, type))
2960 continue;
2963 hlist_del(&entry->node);
2964 call_rcu(&entry->rcu, ftrace_free_entry_rcu);
2967 __disable_ftrace_function_probe();
2968 mutex_unlock(&ftrace_lock);
2971 void
2972 unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
2973 void *data)
2975 __unregister_ftrace_function_probe(glob, ops, data,
2976 PROBE_TEST_FUNC | PROBE_TEST_DATA);
2979 void
2980 unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
2982 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
2985 void unregister_ftrace_function_probe_all(char *glob)
2987 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
2990 static LIST_HEAD(ftrace_commands);
2991 static DEFINE_MUTEX(ftrace_cmd_mutex);
2993 int register_ftrace_command(struct ftrace_func_command *cmd)
2995 struct ftrace_func_command *p;
2996 int ret = 0;
2998 mutex_lock(&ftrace_cmd_mutex);
2999 list_for_each_entry(p, &ftrace_commands, list) {
3000 if (strcmp(cmd->name, p->name) == 0) {
3001 ret = -EBUSY;
3002 goto out_unlock;
3005 list_add(&cmd->list, &ftrace_commands);
3006 out_unlock:
3007 mutex_unlock(&ftrace_cmd_mutex);
3009 return ret;
3012 int unregister_ftrace_command(struct ftrace_func_command *cmd)
3014 struct ftrace_func_command *p, *n;
3015 int ret = -ENODEV;
3017 mutex_lock(&ftrace_cmd_mutex);
3018 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
3019 if (strcmp(cmd->name, p->name) == 0) {
3020 ret = 0;
3021 list_del_init(&p->list);
3022 goto out_unlock;
3025 out_unlock:
3026 mutex_unlock(&ftrace_cmd_mutex);
3028 return ret;
3031 static int ftrace_process_regex(struct ftrace_hash *hash,
3032 char *buff, int len, int enable)
3034 char *func, *command, *next = buff;
3035 struct ftrace_func_command *p;
3036 int ret = -EINVAL;
3038 func = strsep(&next, ":");
3040 if (!next) {
3041 ret = ftrace_match_records(hash, func, len);
3042 if (!ret)
3043 ret = -EINVAL;
3044 if (ret < 0)
3045 return ret;
3046 return 0;
3049 /* command found */
3051 command = strsep(&next, ":");
3053 mutex_lock(&ftrace_cmd_mutex);
3054 list_for_each_entry(p, &ftrace_commands, list) {
3055 if (strcmp(p->name, command) == 0) {
3056 ret = p->func(hash, func, command, next, enable);
3057 goto out_unlock;
3060 out_unlock:
3061 mutex_unlock(&ftrace_cmd_mutex);
3063 return ret;
3066 static ssize_t
3067 ftrace_regex_write(struct file *file, const char __user *ubuf,
3068 size_t cnt, loff_t *ppos, int enable)
3070 struct ftrace_iterator *iter;
3071 struct trace_parser *parser;
3072 ssize_t ret, read;
3074 if (!cnt)
3075 return 0;
3077 mutex_lock(&ftrace_regex_lock);
3079 ret = -ENODEV;
3080 if (unlikely(ftrace_disabled))
3081 goto out_unlock;
3083 if (file->f_mode & FMODE_READ) {
3084 struct seq_file *m = file->private_data;
3085 iter = m->private;
3086 } else
3087 iter = file->private_data;
3089 parser = &iter->parser;
3090 read = trace_get_user(parser, ubuf, cnt, ppos);
3092 if (read >= 0 && trace_parser_loaded(parser) &&
3093 !trace_parser_cont(parser)) {
3094 ret = ftrace_process_regex(iter->hash, parser->buffer,
3095 parser->idx, enable);
3096 trace_parser_clear(parser);
3097 if (ret)
3098 goto out_unlock;
3101 ret = read;
3102 out_unlock:
3103 mutex_unlock(&ftrace_regex_lock);
3105 return ret;
3108 ssize_t
3109 ftrace_filter_write(struct file *file, const char __user *ubuf,
3110 size_t cnt, loff_t *ppos)
3112 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
3115 ssize_t
3116 ftrace_notrace_write(struct file *file, const char __user *ubuf,
3117 size_t cnt, loff_t *ppos)
3119 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
3122 static int
3123 ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
3124 int reset, int enable)
3126 struct ftrace_hash **orig_hash;
3127 struct ftrace_hash *hash;
3128 int ret;
3130 /* All global ops uses the global ops filters */
3131 if (ops->flags & FTRACE_OPS_FL_GLOBAL)
3132 ops = &global_ops;
3134 if (unlikely(ftrace_disabled))
3135 return -ENODEV;
3137 if (enable)
3138 orig_hash = &ops->filter_hash;
3139 else
3140 orig_hash = &ops->notrace_hash;
3142 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3143 if (!hash)
3144 return -ENOMEM;
3146 mutex_lock(&ftrace_regex_lock);
3147 if (reset)
3148 ftrace_filter_reset(hash);
3149 if (buf)
3150 ftrace_match_records(hash, buf, len);
3152 mutex_lock(&ftrace_lock);
3153 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
3154 if (!ret && ops->flags & FTRACE_OPS_FL_ENABLED
3155 && ftrace_enabled)
3156 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
3158 mutex_unlock(&ftrace_lock);
3160 mutex_unlock(&ftrace_regex_lock);
3162 free_ftrace_hash(hash);
3163 return ret;
3167 * ftrace_set_filter - set a function to filter on in ftrace
3168 * @ops - the ops to set the filter with
3169 * @buf - the string that holds the function filter text.
3170 * @len - the length of the string.
3171 * @reset - non zero to reset all filters before applying this filter.
3173 * Filters denote which functions should be enabled when tracing is enabled.
3174 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3176 void ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
3177 int len, int reset)
3179 ftrace_set_regex(ops, buf, len, reset, 1);
3181 EXPORT_SYMBOL_GPL(ftrace_set_filter);
3184 * ftrace_set_notrace - set a function to not trace in ftrace
3185 * @ops - the ops to set the notrace filter with
3186 * @buf - the string that holds the function notrace text.
3187 * @len - the length of the string.
3188 * @reset - non zero to reset all filters before applying this filter.
3190 * Notrace Filters denote which functions should not be enabled when tracing
3191 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3192 * for tracing.
3194 void ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
3195 int len, int reset)
3197 ftrace_set_regex(ops, buf, len, reset, 0);
3199 EXPORT_SYMBOL_GPL(ftrace_set_notrace);
3201 * ftrace_set_filter - set a function to filter on in ftrace
3202 * @ops - the ops to set the filter with
3203 * @buf - the string that holds the function filter text.
3204 * @len - the length of the string.
3205 * @reset - non zero to reset all filters before applying this filter.
3207 * Filters denote which functions should be enabled when tracing is enabled.
3208 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3210 void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
3212 ftrace_set_regex(&global_ops, buf, len, reset, 1);
3214 EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
3217 * ftrace_set_notrace - set a function to not trace in ftrace
3218 * @ops - the ops to set the notrace filter with
3219 * @buf - the string that holds the function notrace text.
3220 * @len - the length of the string.
3221 * @reset - non zero to reset all filters before applying this filter.
3223 * Notrace Filters denote which functions should not be enabled when tracing
3224 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3225 * for tracing.
3227 void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
3229 ftrace_set_regex(&global_ops, buf, len, reset, 0);
3231 EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
3234 * command line interface to allow users to set filters on boot up.
3236 #define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
3237 static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
3238 static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
3240 static int __init set_ftrace_notrace(char *str)
3242 strncpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
3243 return 1;
3245 __setup("ftrace_notrace=", set_ftrace_notrace);
3247 static int __init set_ftrace_filter(char *str)
3249 strncpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
3250 return 1;
3252 __setup("ftrace_filter=", set_ftrace_filter);
3254 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3255 static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
3256 static int ftrace_set_func(unsigned long *array, int *idx, char *buffer);
3258 static int __init set_graph_function(char *str)
3260 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
3261 return 1;
3263 __setup("ftrace_graph_filter=", set_graph_function);
3265 static void __init set_ftrace_early_graph(char *buf)
3267 int ret;
3268 char *func;
3270 while (buf) {
3271 func = strsep(&buf, ",");
3272 /* we allow only one expression at a time */
3273 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
3274 func);
3275 if (ret)
3276 printk(KERN_DEBUG "ftrace: function %s not "
3277 "traceable\n", func);
3280 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3282 void __init
3283 ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
3285 char *func;
3287 while (buf) {
3288 func = strsep(&buf, ",");
3289 ftrace_set_regex(ops, func, strlen(func), 0, enable);
3293 static void __init set_ftrace_early_filters(void)
3295 if (ftrace_filter_buf[0])
3296 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
3297 if (ftrace_notrace_buf[0])
3298 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
3299 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3300 if (ftrace_graph_buf[0])
3301 set_ftrace_early_graph(ftrace_graph_buf);
3302 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3305 int ftrace_regex_release(struct inode *inode, struct file *file)
3307 struct seq_file *m = (struct seq_file *)file->private_data;
3308 struct ftrace_iterator *iter;
3309 struct ftrace_hash **orig_hash;
3310 struct trace_parser *parser;
3311 int filter_hash;
3312 int ret;
3314 mutex_lock(&ftrace_regex_lock);
3315 if (file->f_mode & FMODE_READ) {
3316 iter = m->private;
3318 seq_release(inode, file);
3319 } else
3320 iter = file->private_data;
3322 parser = &iter->parser;
3323 if (trace_parser_loaded(parser)) {
3324 parser->buffer[parser->idx] = 0;
3325 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
3328 trace_parser_put(parser);
3330 if (file->f_mode & FMODE_WRITE) {
3331 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
3333 if (filter_hash)
3334 orig_hash = &iter->ops->filter_hash;
3335 else
3336 orig_hash = &iter->ops->notrace_hash;
3338 mutex_lock(&ftrace_lock);
3339 ret = ftrace_hash_move(iter->ops, filter_hash,
3340 orig_hash, iter->hash);
3341 if (!ret && (iter->ops->flags & FTRACE_OPS_FL_ENABLED)
3342 && ftrace_enabled)
3343 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
3345 mutex_unlock(&ftrace_lock);
3347 free_ftrace_hash(iter->hash);
3348 kfree(iter);
3350 mutex_unlock(&ftrace_regex_lock);
3351 return 0;
3354 static const struct file_operations ftrace_avail_fops = {
3355 .open = ftrace_avail_open,
3356 .read = seq_read,
3357 .llseek = seq_lseek,
3358 .release = seq_release_private,
3361 static const struct file_operations ftrace_enabled_fops = {
3362 .open = ftrace_enabled_open,
3363 .read = seq_read,
3364 .llseek = seq_lseek,
3365 .release = seq_release_private,
3368 static const struct file_operations ftrace_filter_fops = {
3369 .open = ftrace_filter_open,
3370 .read = seq_read,
3371 .write = ftrace_filter_write,
3372 .llseek = ftrace_regex_lseek,
3373 .release = ftrace_regex_release,
3376 static const struct file_operations ftrace_notrace_fops = {
3377 .open = ftrace_notrace_open,
3378 .read = seq_read,
3379 .write = ftrace_notrace_write,
3380 .llseek = ftrace_regex_lseek,
3381 .release = ftrace_regex_release,
3384 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3386 static DEFINE_MUTEX(graph_lock);
3388 int ftrace_graph_count;
3389 int ftrace_graph_filter_enabled;
3390 unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
3392 static void *
3393 __g_next(struct seq_file *m, loff_t *pos)
3395 if (*pos >= ftrace_graph_count)
3396 return NULL;
3397 return &ftrace_graph_funcs[*pos];
3400 static void *
3401 g_next(struct seq_file *m, void *v, loff_t *pos)
3403 (*pos)++;
3404 return __g_next(m, pos);
3407 static void *g_start(struct seq_file *m, loff_t *pos)
3409 mutex_lock(&graph_lock);
3411 /* Nothing, tell g_show to print all functions are enabled */
3412 if (!ftrace_graph_filter_enabled && !*pos)
3413 return (void *)1;
3415 return __g_next(m, pos);
3418 static void g_stop(struct seq_file *m, void *p)
3420 mutex_unlock(&graph_lock);
3423 static int g_show(struct seq_file *m, void *v)
3425 unsigned long *ptr = v;
3427 if (!ptr)
3428 return 0;
3430 if (ptr == (unsigned long *)1) {
3431 seq_printf(m, "#### all functions enabled ####\n");
3432 return 0;
3435 seq_printf(m, "%ps\n", (void *)*ptr);
3437 return 0;
3440 static const struct seq_operations ftrace_graph_seq_ops = {
3441 .start = g_start,
3442 .next = g_next,
3443 .stop = g_stop,
3444 .show = g_show,
3447 static int
3448 ftrace_graph_open(struct inode *inode, struct file *file)
3450 int ret = 0;
3452 if (unlikely(ftrace_disabled))
3453 return -ENODEV;
3455 mutex_lock(&graph_lock);
3456 if ((file->f_mode & FMODE_WRITE) &&
3457 (file->f_flags & O_TRUNC)) {
3458 ftrace_graph_filter_enabled = 0;
3459 ftrace_graph_count = 0;
3460 memset(ftrace_graph_funcs, 0, sizeof(ftrace_graph_funcs));
3462 mutex_unlock(&graph_lock);
3464 if (file->f_mode & FMODE_READ)
3465 ret = seq_open(file, &ftrace_graph_seq_ops);
3467 return ret;
3470 static int
3471 ftrace_graph_release(struct inode *inode, struct file *file)
3473 if (file->f_mode & FMODE_READ)
3474 seq_release(inode, file);
3475 return 0;
3478 static int
3479 ftrace_set_func(unsigned long *array, int *idx, char *buffer)
3481 struct dyn_ftrace *rec;
3482 struct ftrace_page *pg;
3483 int search_len;
3484 int fail = 1;
3485 int type, not;
3486 char *search;
3487 bool exists;
3488 int i;
3490 /* decode regex */
3491 type = filter_parse_regex(buffer, strlen(buffer), &search, &not);
3492 if (!not && *idx >= FTRACE_GRAPH_MAX_FUNCS)
3493 return -EBUSY;
3495 search_len = strlen(search);
3497 mutex_lock(&ftrace_lock);
3499 if (unlikely(ftrace_disabled)) {
3500 mutex_unlock(&ftrace_lock);
3501 return -ENODEV;
3504 do_for_each_ftrace_rec(pg, rec) {
3506 if (ftrace_match_record(rec, NULL, search, search_len, type)) {
3507 /* if it is in the array */
3508 exists = false;
3509 for (i = 0; i < *idx; i++) {
3510 if (array[i] == rec->ip) {
3511 exists = true;
3512 break;
3516 if (!not) {
3517 fail = 0;
3518 if (!exists) {
3519 array[(*idx)++] = rec->ip;
3520 if (*idx >= FTRACE_GRAPH_MAX_FUNCS)
3521 goto out;
3523 } else {
3524 if (exists) {
3525 array[i] = array[--(*idx)];
3526 array[*idx] = 0;
3527 fail = 0;
3531 } while_for_each_ftrace_rec();
3532 out:
3533 mutex_unlock(&ftrace_lock);
3535 if (fail)
3536 return -EINVAL;
3538 ftrace_graph_filter_enabled = 1;
3539 return 0;
3542 static ssize_t
3543 ftrace_graph_write(struct file *file, const char __user *ubuf,
3544 size_t cnt, loff_t *ppos)
3546 struct trace_parser parser;
3547 ssize_t read, ret;
3549 if (!cnt)
3550 return 0;
3552 mutex_lock(&graph_lock);
3554 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX)) {
3555 ret = -ENOMEM;
3556 goto out_unlock;
3559 read = trace_get_user(&parser, ubuf, cnt, ppos);
3561 if (read >= 0 && trace_parser_loaded((&parser))) {
3562 parser.buffer[parser.idx] = 0;
3564 /* we allow only one expression at a time */
3565 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
3566 parser.buffer);
3567 if (ret)
3568 goto out_free;
3571 ret = read;
3573 out_free:
3574 trace_parser_put(&parser);
3575 out_unlock:
3576 mutex_unlock(&graph_lock);
3578 return ret;
3581 static const struct file_operations ftrace_graph_fops = {
3582 .open = ftrace_graph_open,
3583 .read = seq_read,
3584 .write = ftrace_graph_write,
3585 .release = ftrace_graph_release,
3586 .llseek = seq_lseek,
3588 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3590 static __init int ftrace_init_dyn_debugfs(struct dentry *d_tracer)
3593 trace_create_file("available_filter_functions", 0444,
3594 d_tracer, NULL, &ftrace_avail_fops);
3596 trace_create_file("enabled_functions", 0444,
3597 d_tracer, NULL, &ftrace_enabled_fops);
3599 trace_create_file("set_ftrace_filter", 0644, d_tracer,
3600 NULL, &ftrace_filter_fops);
3602 trace_create_file("set_ftrace_notrace", 0644, d_tracer,
3603 NULL, &ftrace_notrace_fops);
3605 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3606 trace_create_file("set_graph_function", 0444, d_tracer,
3607 NULL,
3608 &ftrace_graph_fops);
3609 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3611 return 0;
3614 static void ftrace_swap_recs(void *a, void *b, int size)
3616 struct dyn_ftrace *reca = a;
3617 struct dyn_ftrace *recb = b;
3618 struct dyn_ftrace t;
3620 t = *reca;
3621 *reca = *recb;
3622 *recb = t;
3625 static int ftrace_process_locs(struct module *mod,
3626 unsigned long *start,
3627 unsigned long *end)
3629 struct ftrace_page *pg;
3630 unsigned long count;
3631 unsigned long *p;
3632 unsigned long addr;
3633 unsigned long flags = 0; /* Shut up gcc */
3634 int ret = -ENOMEM;
3636 count = end - start;
3638 if (!count)
3639 return 0;
3641 pg = ftrace_allocate_pages(count);
3642 if (!pg)
3643 return -ENOMEM;
3645 mutex_lock(&ftrace_lock);
3648 * Core and each module needs their own pages, as
3649 * modules will free them when they are removed.
3650 * Force a new page to be allocated for modules.
3652 if (!mod) {
3653 WARN_ON(ftrace_pages || ftrace_pages_start);
3654 /* First initialization */
3655 ftrace_pages = ftrace_pages_start = pg;
3656 } else {
3657 if (!ftrace_pages)
3658 goto out;
3660 if (WARN_ON(ftrace_pages->next)) {
3661 /* Hmm, we have free pages? */
3662 while (ftrace_pages->next)
3663 ftrace_pages = ftrace_pages->next;
3666 ftrace_pages->next = pg;
3667 ftrace_pages = pg;
3670 p = start;
3671 while (p < end) {
3672 addr = ftrace_call_adjust(*p++);
3674 * Some architecture linkers will pad between
3675 * the different mcount_loc sections of different
3676 * object files to satisfy alignments.
3677 * Skip any NULL pointers.
3679 if (!addr)
3680 continue;
3681 if (!ftrace_record_ip(addr))
3682 break;
3685 /* These new locations need to be initialized */
3686 ftrace_new_pgs = pg;
3688 /* Make each individual set of pages sorted by ips */
3689 for (; pg; pg = pg->next)
3690 sort(pg->records, pg->index, sizeof(struct dyn_ftrace),
3691 ftrace_cmp_recs, ftrace_swap_recs);
3694 * We only need to disable interrupts on start up
3695 * because we are modifying code that an interrupt
3696 * may execute, and the modification is not atomic.
3697 * But for modules, nothing runs the code we modify
3698 * until we are finished with it, and there's no
3699 * reason to cause large interrupt latencies while we do it.
3701 if (!mod)
3702 local_irq_save(flags);
3703 ftrace_update_code(mod);
3704 if (!mod)
3705 local_irq_restore(flags);
3706 ret = 0;
3707 out:
3708 mutex_unlock(&ftrace_lock);
3710 return ret;
3713 #ifdef CONFIG_MODULES
3715 #define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
3717 void ftrace_release_mod(struct module *mod)
3719 struct dyn_ftrace *rec;
3720 struct ftrace_page **last_pg;
3721 struct ftrace_page *pg;
3722 int order;
3724 mutex_lock(&ftrace_lock);
3726 if (ftrace_disabled)
3727 goto out_unlock;
3730 * Each module has its own ftrace_pages, remove
3731 * them from the list.
3733 last_pg = &ftrace_pages_start;
3734 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
3735 rec = &pg->records[0];
3736 if (within_module_core(rec->ip, mod)) {
3738 * As core pages are first, the first
3739 * page should never be a module page.
3741 if (WARN_ON(pg == ftrace_pages_start))
3742 goto out_unlock;
3744 /* Check if we are deleting the last page */
3745 if (pg == ftrace_pages)
3746 ftrace_pages = next_to_ftrace_page(last_pg);
3748 *last_pg = pg->next;
3749 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3750 free_pages((unsigned long)pg->records, order);
3751 kfree(pg);
3752 } else
3753 last_pg = &pg->next;
3755 out_unlock:
3756 mutex_unlock(&ftrace_lock);
3759 static void ftrace_init_module(struct module *mod,
3760 unsigned long *start, unsigned long *end)
3762 if (ftrace_disabled || start == end)
3763 return;
3764 ftrace_process_locs(mod, start, end);
3767 static int ftrace_module_notify(struct notifier_block *self,
3768 unsigned long val, void *data)
3770 struct module *mod = data;
3772 switch (val) {
3773 case MODULE_STATE_COMING:
3774 ftrace_init_module(mod, mod->ftrace_callsites,
3775 mod->ftrace_callsites +
3776 mod->num_ftrace_callsites);
3777 break;
3778 case MODULE_STATE_GOING:
3779 ftrace_release_mod(mod);
3780 break;
3783 return 0;
3785 #else
3786 static int ftrace_module_notify(struct notifier_block *self,
3787 unsigned long val, void *data)
3789 return 0;
3791 #endif /* CONFIG_MODULES */
3793 struct notifier_block ftrace_module_nb = {
3794 .notifier_call = ftrace_module_notify,
3795 .priority = 0,
3798 extern unsigned long __start_mcount_loc[];
3799 extern unsigned long __stop_mcount_loc[];
3801 void __init ftrace_init(void)
3803 unsigned long count, addr, flags;
3804 int ret;
3806 /* Keep the ftrace pointer to the stub */
3807 addr = (unsigned long)ftrace_stub;
3809 local_irq_save(flags);
3810 ftrace_dyn_arch_init(&addr);
3811 local_irq_restore(flags);
3813 /* ftrace_dyn_arch_init places the return code in addr */
3814 if (addr)
3815 goto failed;
3817 count = __stop_mcount_loc - __start_mcount_loc;
3819 ret = ftrace_dyn_table_alloc(count);
3820 if (ret)
3821 goto failed;
3823 last_ftrace_enabled = ftrace_enabled = 1;
3825 ret = ftrace_process_locs(NULL,
3826 __start_mcount_loc,
3827 __stop_mcount_loc);
3829 ret = register_module_notifier(&ftrace_module_nb);
3830 if (ret)
3831 pr_warning("Failed to register trace ftrace module notifier\n");
3833 set_ftrace_early_filters();
3835 return;
3836 failed:
3837 ftrace_disabled = 1;
3840 #else
3842 static struct ftrace_ops global_ops = {
3843 .func = ftrace_stub,
3846 static int __init ftrace_nodyn_init(void)
3848 ftrace_enabled = 1;
3849 return 0;
3851 device_initcall(ftrace_nodyn_init);
3853 static inline int ftrace_init_dyn_debugfs(struct dentry *d_tracer) { return 0; }
3854 static inline void ftrace_startup_enable(int command) { }
3855 /* Keep as macros so we do not need to define the commands */
3856 # define ftrace_startup(ops, command) \
3857 ({ \
3858 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
3859 0; \
3861 # define ftrace_shutdown(ops, command) do { } while (0)
3862 # define ftrace_startup_sysctl() do { } while (0)
3863 # define ftrace_shutdown_sysctl() do { } while (0)
3865 static inline int
3866 ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip)
3868 return 1;
3871 #endif /* CONFIG_DYNAMIC_FTRACE */
3873 static void
3874 ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip)
3876 struct ftrace_ops *op;
3878 if (unlikely(trace_recursion_test(TRACE_INTERNAL_BIT)))
3879 return;
3881 trace_recursion_set(TRACE_INTERNAL_BIT);
3883 * Some of the ops may be dynamically allocated,
3884 * they must be freed after a synchronize_sched().
3886 preempt_disable_notrace();
3887 op = rcu_dereference_raw(ftrace_ops_list);
3888 while (op != &ftrace_list_end) {
3889 if (ftrace_ops_test(op, ip))
3890 op->func(ip, parent_ip);
3891 op = rcu_dereference_raw(op->next);
3893 preempt_enable_notrace();
3894 trace_recursion_clear(TRACE_INTERNAL_BIT);
3897 static void clear_ftrace_swapper(void)
3899 struct task_struct *p;
3900 int cpu;
3902 get_online_cpus();
3903 for_each_online_cpu(cpu) {
3904 p = idle_task(cpu);
3905 clear_tsk_trace_trace(p);
3907 put_online_cpus();
3910 static void set_ftrace_swapper(void)
3912 struct task_struct *p;
3913 int cpu;
3915 get_online_cpus();
3916 for_each_online_cpu(cpu) {
3917 p = idle_task(cpu);
3918 set_tsk_trace_trace(p);
3920 put_online_cpus();
3923 static void clear_ftrace_pid(struct pid *pid)
3925 struct task_struct *p;
3927 rcu_read_lock();
3928 do_each_pid_task(pid, PIDTYPE_PID, p) {
3929 clear_tsk_trace_trace(p);
3930 } while_each_pid_task(pid, PIDTYPE_PID, p);
3931 rcu_read_unlock();
3933 put_pid(pid);
3936 static void set_ftrace_pid(struct pid *pid)
3938 struct task_struct *p;
3940 rcu_read_lock();
3941 do_each_pid_task(pid, PIDTYPE_PID, p) {
3942 set_tsk_trace_trace(p);
3943 } while_each_pid_task(pid, PIDTYPE_PID, p);
3944 rcu_read_unlock();
3947 static void clear_ftrace_pid_task(struct pid *pid)
3949 if (pid == ftrace_swapper_pid)
3950 clear_ftrace_swapper();
3951 else
3952 clear_ftrace_pid(pid);
3955 static void set_ftrace_pid_task(struct pid *pid)
3957 if (pid == ftrace_swapper_pid)
3958 set_ftrace_swapper();
3959 else
3960 set_ftrace_pid(pid);
3963 static int ftrace_pid_add(int p)
3965 struct pid *pid;
3966 struct ftrace_pid *fpid;
3967 int ret = -EINVAL;
3969 mutex_lock(&ftrace_lock);
3971 if (!p)
3972 pid = ftrace_swapper_pid;
3973 else
3974 pid = find_get_pid(p);
3976 if (!pid)
3977 goto out;
3979 ret = 0;
3981 list_for_each_entry(fpid, &ftrace_pids, list)
3982 if (fpid->pid == pid)
3983 goto out_put;
3985 ret = -ENOMEM;
3987 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
3988 if (!fpid)
3989 goto out_put;
3991 list_add(&fpid->list, &ftrace_pids);
3992 fpid->pid = pid;
3994 set_ftrace_pid_task(pid);
3996 ftrace_update_pid_func();
3997 ftrace_startup_enable(0);
3999 mutex_unlock(&ftrace_lock);
4000 return 0;
4002 out_put:
4003 if (pid != ftrace_swapper_pid)
4004 put_pid(pid);
4006 out:
4007 mutex_unlock(&ftrace_lock);
4008 return ret;
4011 static void ftrace_pid_reset(void)
4013 struct ftrace_pid *fpid, *safe;
4015 mutex_lock(&ftrace_lock);
4016 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
4017 struct pid *pid = fpid->pid;
4019 clear_ftrace_pid_task(pid);
4021 list_del(&fpid->list);
4022 kfree(fpid);
4025 ftrace_update_pid_func();
4026 ftrace_startup_enable(0);
4028 mutex_unlock(&ftrace_lock);
4031 static void *fpid_start(struct seq_file *m, loff_t *pos)
4033 mutex_lock(&ftrace_lock);
4035 if (list_empty(&ftrace_pids) && (!*pos))
4036 return (void *) 1;
4038 return seq_list_start(&ftrace_pids, *pos);
4041 static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
4043 if (v == (void *)1)
4044 return NULL;
4046 return seq_list_next(v, &ftrace_pids, pos);
4049 static void fpid_stop(struct seq_file *m, void *p)
4051 mutex_unlock(&ftrace_lock);
4054 static int fpid_show(struct seq_file *m, void *v)
4056 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
4058 if (v == (void *)1) {
4059 seq_printf(m, "no pid\n");
4060 return 0;
4063 if (fpid->pid == ftrace_swapper_pid)
4064 seq_printf(m, "swapper tasks\n");
4065 else
4066 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
4068 return 0;
4071 static const struct seq_operations ftrace_pid_sops = {
4072 .start = fpid_start,
4073 .next = fpid_next,
4074 .stop = fpid_stop,
4075 .show = fpid_show,
4078 static int
4079 ftrace_pid_open(struct inode *inode, struct file *file)
4081 int ret = 0;
4083 if ((file->f_mode & FMODE_WRITE) &&
4084 (file->f_flags & O_TRUNC))
4085 ftrace_pid_reset();
4087 if (file->f_mode & FMODE_READ)
4088 ret = seq_open(file, &ftrace_pid_sops);
4090 return ret;
4093 static ssize_t
4094 ftrace_pid_write(struct file *filp, const char __user *ubuf,
4095 size_t cnt, loff_t *ppos)
4097 char buf[64], *tmp;
4098 long val;
4099 int ret;
4101 if (cnt >= sizeof(buf))
4102 return -EINVAL;
4104 if (copy_from_user(&buf, ubuf, cnt))
4105 return -EFAULT;
4107 buf[cnt] = 0;
4110 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
4111 * to clean the filter quietly.
4113 tmp = strstrip(buf);
4114 if (strlen(tmp) == 0)
4115 return 1;
4117 ret = strict_strtol(tmp, 10, &val);
4118 if (ret < 0)
4119 return ret;
4121 ret = ftrace_pid_add(val);
4123 return ret ? ret : cnt;
4126 static int
4127 ftrace_pid_release(struct inode *inode, struct file *file)
4129 if (file->f_mode & FMODE_READ)
4130 seq_release(inode, file);
4132 return 0;
4135 static const struct file_operations ftrace_pid_fops = {
4136 .open = ftrace_pid_open,
4137 .write = ftrace_pid_write,
4138 .read = seq_read,
4139 .llseek = seq_lseek,
4140 .release = ftrace_pid_release,
4143 static __init int ftrace_init_debugfs(void)
4145 struct dentry *d_tracer;
4147 d_tracer = tracing_init_dentry();
4148 if (!d_tracer)
4149 return 0;
4151 ftrace_init_dyn_debugfs(d_tracer);
4153 trace_create_file("set_ftrace_pid", 0644, d_tracer,
4154 NULL, &ftrace_pid_fops);
4156 ftrace_profile_debugfs(d_tracer);
4158 return 0;
4160 fs_initcall(ftrace_init_debugfs);
4163 * ftrace_kill - kill ftrace
4165 * This function should be used by panic code. It stops ftrace
4166 * but in a not so nice way. If you need to simply kill ftrace
4167 * from a non-atomic section, use ftrace_kill.
4169 void ftrace_kill(void)
4171 ftrace_disabled = 1;
4172 ftrace_enabled = 0;
4173 clear_ftrace_function();
4177 * Test if ftrace is dead or not.
4179 int ftrace_is_dead(void)
4181 return ftrace_disabled;
4185 * register_ftrace_function - register a function for profiling
4186 * @ops - ops structure that holds the function for profiling.
4188 * Register a function to be called by all functions in the
4189 * kernel.
4191 * Note: @ops->func and all the functions it calls must be labeled
4192 * with "notrace", otherwise it will go into a
4193 * recursive loop.
4195 int register_ftrace_function(struct ftrace_ops *ops)
4197 int ret = -1;
4199 mutex_lock(&ftrace_lock);
4201 if (unlikely(ftrace_disabled))
4202 goto out_unlock;
4204 ret = __register_ftrace_function(ops);
4205 if (!ret)
4206 ret = ftrace_startup(ops, 0);
4209 out_unlock:
4210 mutex_unlock(&ftrace_lock);
4211 return ret;
4213 EXPORT_SYMBOL_GPL(register_ftrace_function);
4216 * unregister_ftrace_function - unregister a function for profiling.
4217 * @ops - ops structure that holds the function to unregister
4219 * Unregister a function that was added to be called by ftrace profiling.
4221 int unregister_ftrace_function(struct ftrace_ops *ops)
4223 int ret;
4225 mutex_lock(&ftrace_lock);
4226 ret = __unregister_ftrace_function(ops);
4227 if (!ret)
4228 ftrace_shutdown(ops, 0);
4229 mutex_unlock(&ftrace_lock);
4231 return ret;
4233 EXPORT_SYMBOL_GPL(unregister_ftrace_function);
4236 ftrace_enable_sysctl(struct ctl_table *table, int write,
4237 void __user *buffer, size_t *lenp,
4238 loff_t *ppos)
4240 int ret = -ENODEV;
4242 mutex_lock(&ftrace_lock);
4244 if (unlikely(ftrace_disabled))
4245 goto out;
4247 ret = proc_dointvec(table, write, buffer, lenp, ppos);
4249 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
4250 goto out;
4252 last_ftrace_enabled = !!ftrace_enabled;
4254 if (ftrace_enabled) {
4256 ftrace_startup_sysctl();
4258 /* we are starting ftrace again */
4259 if (ftrace_ops_list != &ftrace_list_end) {
4260 if (ftrace_ops_list->next == &ftrace_list_end)
4261 ftrace_trace_function = ftrace_ops_list->func;
4262 else
4263 ftrace_trace_function = ftrace_ops_list_func;
4266 } else {
4267 /* stopping ftrace calls (just send to ftrace_stub) */
4268 ftrace_trace_function = ftrace_stub;
4270 ftrace_shutdown_sysctl();
4273 out:
4274 mutex_unlock(&ftrace_lock);
4275 return ret;
4278 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
4280 static int ftrace_graph_active;
4281 static struct notifier_block ftrace_suspend_notifier;
4283 int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
4285 return 0;
4288 /* The callbacks that hook a function */
4289 trace_func_graph_ret_t ftrace_graph_return =
4290 (trace_func_graph_ret_t)ftrace_stub;
4291 trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
4293 /* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
4294 static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
4296 int i;
4297 int ret = 0;
4298 unsigned long flags;
4299 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
4300 struct task_struct *g, *t;
4302 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
4303 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
4304 * sizeof(struct ftrace_ret_stack),
4305 GFP_KERNEL);
4306 if (!ret_stack_list[i]) {
4307 start = 0;
4308 end = i;
4309 ret = -ENOMEM;
4310 goto free;
4314 read_lock_irqsave(&tasklist_lock, flags);
4315 do_each_thread(g, t) {
4316 if (start == end) {
4317 ret = -EAGAIN;
4318 goto unlock;
4321 if (t->ret_stack == NULL) {
4322 atomic_set(&t->tracing_graph_pause, 0);
4323 atomic_set(&t->trace_overrun, 0);
4324 t->curr_ret_stack = -1;
4325 /* Make sure the tasks see the -1 first: */
4326 smp_wmb();
4327 t->ret_stack = ret_stack_list[start++];
4329 } while_each_thread(g, t);
4331 unlock:
4332 read_unlock_irqrestore(&tasklist_lock, flags);
4333 free:
4334 for (i = start; i < end; i++)
4335 kfree(ret_stack_list[i]);
4336 return ret;
4339 static void
4340 ftrace_graph_probe_sched_switch(void *ignore,
4341 struct task_struct *prev, struct task_struct *next)
4343 unsigned long long timestamp;
4344 int index;
4347 * Does the user want to count the time a function was asleep.
4348 * If so, do not update the time stamps.
4350 if (trace_flags & TRACE_ITER_SLEEP_TIME)
4351 return;
4353 timestamp = trace_clock_local();
4355 prev->ftrace_timestamp = timestamp;
4357 /* only process tasks that we timestamped */
4358 if (!next->ftrace_timestamp)
4359 return;
4362 * Update all the counters in next to make up for the
4363 * time next was sleeping.
4365 timestamp -= next->ftrace_timestamp;
4367 for (index = next->curr_ret_stack; index >= 0; index--)
4368 next->ret_stack[index].calltime += timestamp;
4371 /* Allocate a return stack for each task */
4372 static int start_graph_tracing(void)
4374 struct ftrace_ret_stack **ret_stack_list;
4375 int ret, cpu;
4377 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
4378 sizeof(struct ftrace_ret_stack *),
4379 GFP_KERNEL);
4381 if (!ret_stack_list)
4382 return -ENOMEM;
4384 /* The cpu_boot init_task->ret_stack will never be freed */
4385 for_each_online_cpu(cpu) {
4386 if (!idle_task(cpu)->ret_stack)
4387 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
4390 do {
4391 ret = alloc_retstack_tasklist(ret_stack_list);
4392 } while (ret == -EAGAIN);
4394 if (!ret) {
4395 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
4396 if (ret)
4397 pr_info("ftrace_graph: Couldn't activate tracepoint"
4398 " probe to kernel_sched_switch\n");
4401 kfree(ret_stack_list);
4402 return ret;
4406 * Hibernation protection.
4407 * The state of the current task is too much unstable during
4408 * suspend/restore to disk. We want to protect against that.
4410 static int
4411 ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
4412 void *unused)
4414 switch (state) {
4415 case PM_HIBERNATION_PREPARE:
4416 pause_graph_tracing();
4417 break;
4419 case PM_POST_HIBERNATION:
4420 unpause_graph_tracing();
4421 break;
4423 return NOTIFY_DONE;
4426 int register_ftrace_graph(trace_func_graph_ret_t retfunc,
4427 trace_func_graph_ent_t entryfunc)
4429 int ret = 0;
4431 mutex_lock(&ftrace_lock);
4433 /* we currently allow only one tracer registered at a time */
4434 if (ftrace_graph_active) {
4435 ret = -EBUSY;
4436 goto out;
4439 ftrace_suspend_notifier.notifier_call = ftrace_suspend_notifier_call;
4440 register_pm_notifier(&ftrace_suspend_notifier);
4442 ftrace_graph_active++;
4443 ret = start_graph_tracing();
4444 if (ret) {
4445 ftrace_graph_active--;
4446 goto out;
4449 ftrace_graph_return = retfunc;
4450 ftrace_graph_entry = entryfunc;
4452 ret = ftrace_startup(&global_ops, FTRACE_START_FUNC_RET);
4454 out:
4455 mutex_unlock(&ftrace_lock);
4456 return ret;
4459 void unregister_ftrace_graph(void)
4461 mutex_lock(&ftrace_lock);
4463 if (unlikely(!ftrace_graph_active))
4464 goto out;
4466 ftrace_graph_active--;
4467 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
4468 ftrace_graph_entry = ftrace_graph_entry_stub;
4469 ftrace_shutdown(&global_ops, FTRACE_STOP_FUNC_RET);
4470 unregister_pm_notifier(&ftrace_suspend_notifier);
4471 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
4473 out:
4474 mutex_unlock(&ftrace_lock);
4477 static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
4479 static void
4480 graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
4482 atomic_set(&t->tracing_graph_pause, 0);
4483 atomic_set(&t->trace_overrun, 0);
4484 t->ftrace_timestamp = 0;
4485 /* make curr_ret_stack visible before we add the ret_stack */
4486 smp_wmb();
4487 t->ret_stack = ret_stack;
4491 * Allocate a return stack for the idle task. May be the first
4492 * time through, or it may be done by CPU hotplug online.
4494 void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
4496 t->curr_ret_stack = -1;
4498 * The idle task has no parent, it either has its own
4499 * stack or no stack at all.
4501 if (t->ret_stack)
4502 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
4504 if (ftrace_graph_active) {
4505 struct ftrace_ret_stack *ret_stack;
4507 ret_stack = per_cpu(idle_ret_stack, cpu);
4508 if (!ret_stack) {
4509 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
4510 * sizeof(struct ftrace_ret_stack),
4511 GFP_KERNEL);
4512 if (!ret_stack)
4513 return;
4514 per_cpu(idle_ret_stack, cpu) = ret_stack;
4516 graph_init_task(t, ret_stack);
4520 /* Allocate a return stack for newly created task */
4521 void ftrace_graph_init_task(struct task_struct *t)
4523 /* Make sure we do not use the parent ret_stack */
4524 t->ret_stack = NULL;
4525 t->curr_ret_stack = -1;
4527 if (ftrace_graph_active) {
4528 struct ftrace_ret_stack *ret_stack;
4530 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
4531 * sizeof(struct ftrace_ret_stack),
4532 GFP_KERNEL);
4533 if (!ret_stack)
4534 return;
4535 graph_init_task(t, ret_stack);
4539 void ftrace_graph_exit_task(struct task_struct *t)
4541 struct ftrace_ret_stack *ret_stack = t->ret_stack;
4543 t->ret_stack = NULL;
4544 /* NULL must become visible to IRQs before we free it: */
4545 barrier();
4547 kfree(ret_stack);
4550 void ftrace_graph_stop(void)
4552 ftrace_stop();
4554 #endif