Merge branch 'tip/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / kernel / trace / ftrace.c
blob78db083390f07baa7993c48d9fc0f7a635c769d0
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/debugfs.h>
21 #include <linux/hardirq.h>
22 #include <linux/kthread.h>
23 #include <linux/uaccess.h>
24 #include <linux/kprobes.h>
25 #include <linux/ftrace.h>
26 #include <linux/sysctl.h>
27 #include <linux/ctype.h>
28 #include <linux/list.h>
30 #include <asm/ftrace.h>
32 #include "trace.h"
34 #define FTRACE_WARN_ON(cond) \
35 do { \
36 if (WARN_ON(cond)) \
37 ftrace_kill(); \
38 } while (0)
40 #define FTRACE_WARN_ON_ONCE(cond) \
41 do { \
42 if (WARN_ON_ONCE(cond)) \
43 ftrace_kill(); \
44 } while (0)
46 /* ftrace_enabled is a method to turn ftrace on or off */
47 int ftrace_enabled __read_mostly;
48 static int last_ftrace_enabled;
51 * ftrace_disabled is set when an anomaly is discovered.
52 * ftrace_disabled is much stronger than ftrace_enabled.
54 static int ftrace_disabled __read_mostly;
56 static DEFINE_SPINLOCK(ftrace_lock);
57 static DEFINE_MUTEX(ftrace_sysctl_lock);
59 static struct ftrace_ops ftrace_list_end __read_mostly =
61 .func = ftrace_stub,
64 static struct ftrace_ops *ftrace_list __read_mostly = &ftrace_list_end;
65 ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
67 static void ftrace_list_func(unsigned long ip, unsigned long parent_ip)
69 struct ftrace_ops *op = ftrace_list;
71 /* in case someone actually ports this to alpha! */
72 read_barrier_depends();
74 while (op != &ftrace_list_end) {
75 /* silly alpha */
76 read_barrier_depends();
77 op->func(ip, parent_ip);
78 op = op->next;
82 /**
83 * clear_ftrace_function - reset the ftrace function
85 * This NULLs the ftrace function and in essence stops
86 * tracing. There may be lag
88 void clear_ftrace_function(void)
90 ftrace_trace_function = ftrace_stub;
93 static int __register_ftrace_function(struct ftrace_ops *ops)
95 /* should not be called from interrupt context */
96 spin_lock(&ftrace_lock);
98 ops->next = ftrace_list;
100 * We are entering ops into the ftrace_list but another
101 * CPU might be walking that list. We need to make sure
102 * the ops->next pointer is valid before another CPU sees
103 * the ops pointer included into the ftrace_list.
105 smp_wmb();
106 ftrace_list = ops;
108 if (ftrace_enabled) {
110 * For one func, simply call it directly.
111 * For more than one func, call the chain.
113 if (ops->next == &ftrace_list_end)
114 ftrace_trace_function = ops->func;
115 else
116 ftrace_trace_function = ftrace_list_func;
119 spin_unlock(&ftrace_lock);
121 return 0;
124 static int __unregister_ftrace_function(struct ftrace_ops *ops)
126 struct ftrace_ops **p;
127 int ret = 0;
129 /* should not be called from interrupt context */
130 spin_lock(&ftrace_lock);
133 * If we are removing the last function, then simply point
134 * to the ftrace_stub.
136 if (ftrace_list == ops && ops->next == &ftrace_list_end) {
137 ftrace_trace_function = ftrace_stub;
138 ftrace_list = &ftrace_list_end;
139 goto out;
142 for (p = &ftrace_list; *p != &ftrace_list_end; p = &(*p)->next)
143 if (*p == ops)
144 break;
146 if (*p != ops) {
147 ret = -1;
148 goto out;
151 *p = (*p)->next;
153 if (ftrace_enabled) {
154 /* If we only have one func left, then call that directly */
155 if (ftrace_list == &ftrace_list_end ||
156 ftrace_list->next == &ftrace_list_end)
157 ftrace_trace_function = ftrace_list->func;
160 out:
161 spin_unlock(&ftrace_lock);
163 return ret;
166 #ifdef CONFIG_DYNAMIC_FTRACE
167 #ifndef CONFIG_FTRACE_MCOUNT_RECORD
168 # error Dynamic ftrace depends on MCOUNT_RECORD
169 #endif
172 * Since MCOUNT_ADDR may point to mcount itself, we do not want
173 * to get it confused by reading a reference in the code as we
174 * are parsing on objcopy output of text. Use a variable for
175 * it instead.
177 static unsigned long mcount_addr = MCOUNT_ADDR;
179 enum {
180 FTRACE_ENABLE_CALLS = (1 << 0),
181 FTRACE_DISABLE_CALLS = (1 << 1),
182 FTRACE_UPDATE_TRACE_FUNC = (1 << 2),
183 FTRACE_ENABLE_MCOUNT = (1 << 3),
184 FTRACE_DISABLE_MCOUNT = (1 << 4),
187 static int ftrace_filtered;
189 static LIST_HEAD(ftrace_new_addrs);
191 static DEFINE_MUTEX(ftrace_regex_lock);
193 struct ftrace_page {
194 struct ftrace_page *next;
195 unsigned long index;
196 struct dyn_ftrace records[];
199 #define ENTRIES_PER_PAGE \
200 ((PAGE_SIZE - sizeof(struct ftrace_page)) / sizeof(struct dyn_ftrace))
202 /* estimate from running different kernels */
203 #define NR_TO_INIT 10000
205 static struct ftrace_page *ftrace_pages_start;
206 static struct ftrace_page *ftrace_pages;
208 static struct dyn_ftrace *ftrace_free_records;
211 #ifdef CONFIG_KPROBES
213 static int frozen_record_count;
215 static inline void freeze_record(struct dyn_ftrace *rec)
217 if (!(rec->flags & FTRACE_FL_FROZEN)) {
218 rec->flags |= FTRACE_FL_FROZEN;
219 frozen_record_count++;
223 static inline void unfreeze_record(struct dyn_ftrace *rec)
225 if (rec->flags & FTRACE_FL_FROZEN) {
226 rec->flags &= ~FTRACE_FL_FROZEN;
227 frozen_record_count--;
231 static inline int record_frozen(struct dyn_ftrace *rec)
233 return rec->flags & FTRACE_FL_FROZEN;
235 #else
236 # define freeze_record(rec) ({ 0; })
237 # define unfreeze_record(rec) ({ 0; })
238 # define record_frozen(rec) ({ 0; })
239 #endif /* CONFIG_KPROBES */
241 static void ftrace_free_rec(struct dyn_ftrace *rec)
243 rec->ip = (unsigned long)ftrace_free_records;
244 ftrace_free_records = rec;
245 rec->flags |= FTRACE_FL_FREE;
248 void ftrace_release(void *start, unsigned long size)
250 struct dyn_ftrace *rec;
251 struct ftrace_page *pg;
252 unsigned long s = (unsigned long)start;
253 unsigned long e = s + size;
254 int i;
256 if (ftrace_disabled || !start)
257 return;
259 /* should not be called from interrupt context */
260 spin_lock(&ftrace_lock);
262 for (pg = ftrace_pages_start; pg; pg = pg->next) {
263 for (i = 0; i < pg->index; i++) {
264 rec = &pg->records[i];
266 if ((rec->ip >= s) && (rec->ip < e))
267 ftrace_free_rec(rec);
270 spin_unlock(&ftrace_lock);
273 static struct dyn_ftrace *ftrace_alloc_dyn_node(unsigned long ip)
275 struct dyn_ftrace *rec;
277 /* First check for freed records */
278 if (ftrace_free_records) {
279 rec = ftrace_free_records;
281 if (unlikely(!(rec->flags & FTRACE_FL_FREE))) {
282 FTRACE_WARN_ON_ONCE(1);
283 ftrace_free_records = NULL;
284 return NULL;
287 ftrace_free_records = (void *)rec->ip;
288 memset(rec, 0, sizeof(*rec));
289 return rec;
292 if (ftrace_pages->index == ENTRIES_PER_PAGE) {
293 if (!ftrace_pages->next) {
294 /* allocate another page */
295 ftrace_pages->next =
296 (void *)get_zeroed_page(GFP_KERNEL);
297 if (!ftrace_pages->next)
298 return NULL;
300 ftrace_pages = ftrace_pages->next;
303 return &ftrace_pages->records[ftrace_pages->index++];
306 static struct dyn_ftrace *
307 ftrace_record_ip(unsigned long ip)
309 struct dyn_ftrace *rec;
311 if (!ftrace_enabled || ftrace_disabled)
312 return NULL;
314 rec = ftrace_alloc_dyn_node(ip);
315 if (!rec)
316 return NULL;
318 rec->ip = ip;
320 list_add(&rec->list, &ftrace_new_addrs);
322 return rec;
325 #define FTRACE_ADDR ((long)(ftrace_caller))
327 static int
328 __ftrace_replace_code(struct dyn_ftrace *rec,
329 unsigned char *nop, int enable)
331 unsigned long ip, fl;
332 unsigned char *call, *old, *new;
334 ip = rec->ip;
337 * If this record is not to be traced and
338 * it is not enabled then do nothing.
340 * If this record is not to be traced and
341 * it is enabled then disabled it.
344 if (rec->flags & FTRACE_FL_NOTRACE) {
345 if (rec->flags & FTRACE_FL_ENABLED)
346 rec->flags &= ~FTRACE_FL_ENABLED;
347 else
348 return 0;
350 } else if (ftrace_filtered && enable) {
352 * Filtering is on:
355 fl = rec->flags & (FTRACE_FL_FILTER | FTRACE_FL_ENABLED);
357 /* Record is filtered and enabled, do nothing */
358 if (fl == (FTRACE_FL_FILTER | FTRACE_FL_ENABLED))
359 return 0;
361 /* Record is not filtered and is not enabled do nothing */
362 if (!fl)
363 return 0;
365 /* Record is not filtered but enabled, disable it */
366 if (fl == FTRACE_FL_ENABLED)
367 rec->flags &= ~FTRACE_FL_ENABLED;
368 else
369 /* Otherwise record is filtered but not enabled, enable it */
370 rec->flags |= FTRACE_FL_ENABLED;
371 } else {
372 /* Disable or not filtered */
374 if (enable) {
375 /* if record is enabled, do nothing */
376 if (rec->flags & FTRACE_FL_ENABLED)
377 return 0;
379 rec->flags |= FTRACE_FL_ENABLED;
381 } else {
383 /* if record is not enabled do nothing */
384 if (!(rec->flags & FTRACE_FL_ENABLED))
385 return 0;
387 rec->flags &= ~FTRACE_FL_ENABLED;
391 call = ftrace_call_replace(ip, FTRACE_ADDR);
393 if (rec->flags & FTRACE_FL_ENABLED) {
394 old = nop;
395 new = call;
396 } else {
397 old = call;
398 new = nop;
401 return ftrace_modify_code(ip, old, new);
404 static void ftrace_replace_code(int enable)
406 int i, failed;
407 unsigned char *nop = NULL;
408 struct dyn_ftrace *rec;
409 struct ftrace_page *pg;
411 nop = ftrace_nop_replace();
413 for (pg = ftrace_pages_start; pg; pg = pg->next) {
414 for (i = 0; i < pg->index; i++) {
415 rec = &pg->records[i];
417 /* don't modify code that has already faulted */
418 if (rec->flags & FTRACE_FL_FAILED)
419 continue;
421 /* ignore updates to this record's mcount site */
422 if (get_kprobe((void *)rec->ip)) {
423 freeze_record(rec);
424 continue;
425 } else {
426 unfreeze_record(rec);
429 failed = __ftrace_replace_code(rec, nop, enable);
430 if (failed && (rec->flags & FTRACE_FL_CONVERTED)) {
431 rec->flags |= FTRACE_FL_FAILED;
432 if ((system_state == SYSTEM_BOOTING) ||
433 !core_kernel_text(rec->ip)) {
434 ftrace_free_rec(rec);
441 static void print_ip_ins(const char *fmt, unsigned char *p)
443 int i;
445 printk(KERN_CONT "%s", fmt);
447 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
448 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
451 static int
452 ftrace_code_disable(struct dyn_ftrace *rec)
454 unsigned long ip;
455 unsigned char *nop, *call;
456 int ret;
458 ip = rec->ip;
460 nop = ftrace_nop_replace();
461 call = ftrace_call_replace(ip, mcount_addr);
463 ret = ftrace_modify_code(ip, call, nop);
464 if (ret) {
465 switch (ret) {
466 case -EFAULT:
467 FTRACE_WARN_ON_ONCE(1);
468 pr_info("ftrace faulted on modifying ");
469 print_ip_sym(ip);
470 break;
471 case -EINVAL:
472 FTRACE_WARN_ON_ONCE(1);
473 pr_info("ftrace failed to modify ");
474 print_ip_sym(ip);
475 print_ip_ins(" expected: ", call);
476 print_ip_ins(" actual: ", (unsigned char *)ip);
477 print_ip_ins(" replace: ", nop);
478 printk(KERN_CONT "\n");
479 break;
480 case -EPERM:
481 FTRACE_WARN_ON_ONCE(1);
482 pr_info("ftrace faulted on writing ");
483 print_ip_sym(ip);
484 break;
485 default:
486 FTRACE_WARN_ON_ONCE(1);
487 pr_info("ftrace faulted on unknown error ");
488 print_ip_sym(ip);
491 rec->flags |= FTRACE_FL_FAILED;
492 return 0;
494 return 1;
497 static int __ftrace_modify_code(void *data)
499 int *command = data;
501 if (*command & FTRACE_ENABLE_CALLS)
502 ftrace_replace_code(1);
503 else if (*command & FTRACE_DISABLE_CALLS)
504 ftrace_replace_code(0);
506 if (*command & FTRACE_UPDATE_TRACE_FUNC)
507 ftrace_update_ftrace_func(ftrace_trace_function);
509 return 0;
512 static void ftrace_run_update_code(int command)
514 stop_machine(__ftrace_modify_code, &command, NULL);
517 static ftrace_func_t saved_ftrace_func;
518 static int ftrace_start;
519 static DEFINE_MUTEX(ftrace_start_lock);
521 static void ftrace_startup(void)
523 int command = 0;
525 if (unlikely(ftrace_disabled))
526 return;
528 mutex_lock(&ftrace_start_lock);
529 ftrace_start++;
530 command |= FTRACE_ENABLE_CALLS;
532 if (saved_ftrace_func != ftrace_trace_function) {
533 saved_ftrace_func = ftrace_trace_function;
534 command |= FTRACE_UPDATE_TRACE_FUNC;
537 if (!command || !ftrace_enabled)
538 goto out;
540 ftrace_run_update_code(command);
541 out:
542 mutex_unlock(&ftrace_start_lock);
545 static void ftrace_shutdown(void)
547 int command = 0;
549 if (unlikely(ftrace_disabled))
550 return;
552 mutex_lock(&ftrace_start_lock);
553 ftrace_start--;
554 if (!ftrace_start)
555 command |= FTRACE_DISABLE_CALLS;
557 if (saved_ftrace_func != ftrace_trace_function) {
558 saved_ftrace_func = ftrace_trace_function;
559 command |= FTRACE_UPDATE_TRACE_FUNC;
562 if (!command || !ftrace_enabled)
563 goto out;
565 ftrace_run_update_code(command);
566 out:
567 mutex_unlock(&ftrace_start_lock);
570 static void ftrace_startup_sysctl(void)
572 int command = FTRACE_ENABLE_MCOUNT;
574 if (unlikely(ftrace_disabled))
575 return;
577 mutex_lock(&ftrace_start_lock);
578 /* Force update next time */
579 saved_ftrace_func = NULL;
580 /* ftrace_start is true if we want ftrace running */
581 if (ftrace_start)
582 command |= FTRACE_ENABLE_CALLS;
584 ftrace_run_update_code(command);
585 mutex_unlock(&ftrace_start_lock);
588 static void ftrace_shutdown_sysctl(void)
590 int command = FTRACE_DISABLE_MCOUNT;
592 if (unlikely(ftrace_disabled))
593 return;
595 mutex_lock(&ftrace_start_lock);
596 /* ftrace_start is true if ftrace is running */
597 if (ftrace_start)
598 command |= FTRACE_DISABLE_CALLS;
600 ftrace_run_update_code(command);
601 mutex_unlock(&ftrace_start_lock);
604 static cycle_t ftrace_update_time;
605 static unsigned long ftrace_update_cnt;
606 unsigned long ftrace_update_tot_cnt;
608 static int ftrace_update_code(void)
610 struct dyn_ftrace *p, *t;
611 cycle_t start, stop;
613 start = ftrace_now(raw_smp_processor_id());
614 ftrace_update_cnt = 0;
616 list_for_each_entry_safe(p, t, &ftrace_new_addrs, list) {
618 /* If something went wrong, bail without enabling anything */
619 if (unlikely(ftrace_disabled))
620 return -1;
622 list_del_init(&p->list);
624 /* convert record (i.e, patch mcount-call with NOP) */
625 if (ftrace_code_disable(p)) {
626 p->flags |= FTRACE_FL_CONVERTED;
627 ftrace_update_cnt++;
628 } else
629 ftrace_free_rec(p);
632 stop = ftrace_now(raw_smp_processor_id());
633 ftrace_update_time = stop - start;
634 ftrace_update_tot_cnt += ftrace_update_cnt;
636 return 0;
639 static int __init ftrace_dyn_table_alloc(unsigned long num_to_init)
641 struct ftrace_page *pg;
642 int cnt;
643 int i;
645 /* allocate a few pages */
646 ftrace_pages_start = (void *)get_zeroed_page(GFP_KERNEL);
647 if (!ftrace_pages_start)
648 return -1;
651 * Allocate a few more pages.
653 * TODO: have some parser search vmlinux before
654 * final linking to find all calls to ftrace.
655 * Then we can:
656 * a) know how many pages to allocate.
657 * and/or
658 * b) set up the table then.
660 * The dynamic code is still necessary for
661 * modules.
664 pg = ftrace_pages = ftrace_pages_start;
666 cnt = num_to_init / ENTRIES_PER_PAGE;
667 pr_info("ftrace: allocating %ld entries in %d pages\n",
668 num_to_init, cnt + 1);
670 for (i = 0; i < cnt; i++) {
671 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
673 /* If we fail, we'll try later anyway */
674 if (!pg->next)
675 break;
677 pg = pg->next;
680 return 0;
683 enum {
684 FTRACE_ITER_FILTER = (1 << 0),
685 FTRACE_ITER_CONT = (1 << 1),
686 FTRACE_ITER_NOTRACE = (1 << 2),
687 FTRACE_ITER_FAILURES = (1 << 3),
690 #define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
692 struct ftrace_iterator {
693 loff_t pos;
694 struct ftrace_page *pg;
695 unsigned idx;
696 unsigned flags;
697 unsigned char buffer[FTRACE_BUFF_MAX+1];
698 unsigned buffer_idx;
699 unsigned filtered;
702 static void *
703 t_next(struct seq_file *m, void *v, loff_t *pos)
705 struct ftrace_iterator *iter = m->private;
706 struct dyn_ftrace *rec = NULL;
708 (*pos)++;
710 /* should not be called from interrupt context */
711 spin_lock(&ftrace_lock);
712 retry:
713 if (iter->idx >= iter->pg->index) {
714 if (iter->pg->next) {
715 iter->pg = iter->pg->next;
716 iter->idx = 0;
717 goto retry;
719 } else {
720 rec = &iter->pg->records[iter->idx++];
721 if ((rec->flags & FTRACE_FL_FREE) ||
723 (!(iter->flags & FTRACE_ITER_FAILURES) &&
724 (rec->flags & FTRACE_FL_FAILED)) ||
726 ((iter->flags & FTRACE_ITER_FAILURES) &&
727 !(rec->flags & FTRACE_FL_FAILED)) ||
729 ((iter->flags & FTRACE_ITER_FILTER) &&
730 !(rec->flags & FTRACE_FL_FILTER)) ||
732 ((iter->flags & FTRACE_ITER_NOTRACE) &&
733 !(rec->flags & FTRACE_FL_NOTRACE))) {
734 rec = NULL;
735 goto retry;
738 spin_unlock(&ftrace_lock);
740 iter->pos = *pos;
742 return rec;
745 static void *t_start(struct seq_file *m, loff_t *pos)
747 struct ftrace_iterator *iter = m->private;
748 void *p = NULL;
749 loff_t l = -1;
751 if (*pos > iter->pos)
752 *pos = iter->pos;
754 l = *pos;
755 p = t_next(m, p, &l);
757 return p;
760 static void t_stop(struct seq_file *m, void *p)
764 static int t_show(struct seq_file *m, void *v)
766 struct ftrace_iterator *iter = m->private;
767 struct dyn_ftrace *rec = v;
768 char str[KSYM_SYMBOL_LEN];
769 int ret = 0;
771 if (!rec)
772 return 0;
774 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
776 ret = seq_printf(m, "%s\n", str);
777 if (ret < 0) {
778 iter->pos--;
779 iter->idx--;
782 return 0;
785 static struct seq_operations show_ftrace_seq_ops = {
786 .start = t_start,
787 .next = t_next,
788 .stop = t_stop,
789 .show = t_show,
792 static int
793 ftrace_avail_open(struct inode *inode, struct file *file)
795 struct ftrace_iterator *iter;
796 int ret;
798 if (unlikely(ftrace_disabled))
799 return -ENODEV;
801 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
802 if (!iter)
803 return -ENOMEM;
805 iter->pg = ftrace_pages_start;
806 iter->pos = 0;
808 ret = seq_open(file, &show_ftrace_seq_ops);
809 if (!ret) {
810 struct seq_file *m = file->private_data;
812 m->private = iter;
813 } else {
814 kfree(iter);
817 return ret;
820 int ftrace_avail_release(struct inode *inode, struct file *file)
822 struct seq_file *m = (struct seq_file *)file->private_data;
823 struct ftrace_iterator *iter = m->private;
825 seq_release(inode, file);
826 kfree(iter);
828 return 0;
831 static int
832 ftrace_failures_open(struct inode *inode, struct file *file)
834 int ret;
835 struct seq_file *m;
836 struct ftrace_iterator *iter;
838 ret = ftrace_avail_open(inode, file);
839 if (!ret) {
840 m = (struct seq_file *)file->private_data;
841 iter = (struct ftrace_iterator *)m->private;
842 iter->flags = FTRACE_ITER_FAILURES;
845 return ret;
849 static void ftrace_filter_reset(int enable)
851 struct ftrace_page *pg;
852 struct dyn_ftrace *rec;
853 unsigned long type = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
854 unsigned i;
856 /* should not be called from interrupt context */
857 spin_lock(&ftrace_lock);
858 if (enable)
859 ftrace_filtered = 0;
860 pg = ftrace_pages_start;
861 while (pg) {
862 for (i = 0; i < pg->index; i++) {
863 rec = &pg->records[i];
864 if (rec->flags & FTRACE_FL_FAILED)
865 continue;
866 rec->flags &= ~type;
868 pg = pg->next;
870 spin_unlock(&ftrace_lock);
873 static int
874 ftrace_regex_open(struct inode *inode, struct file *file, int enable)
876 struct ftrace_iterator *iter;
877 int ret = 0;
879 if (unlikely(ftrace_disabled))
880 return -ENODEV;
882 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
883 if (!iter)
884 return -ENOMEM;
886 mutex_lock(&ftrace_regex_lock);
887 if ((file->f_mode & FMODE_WRITE) &&
888 !(file->f_flags & O_APPEND))
889 ftrace_filter_reset(enable);
891 if (file->f_mode & FMODE_READ) {
892 iter->pg = ftrace_pages_start;
893 iter->pos = 0;
894 iter->flags = enable ? FTRACE_ITER_FILTER :
895 FTRACE_ITER_NOTRACE;
897 ret = seq_open(file, &show_ftrace_seq_ops);
898 if (!ret) {
899 struct seq_file *m = file->private_data;
900 m->private = iter;
901 } else
902 kfree(iter);
903 } else
904 file->private_data = iter;
905 mutex_unlock(&ftrace_regex_lock);
907 return ret;
910 static int
911 ftrace_filter_open(struct inode *inode, struct file *file)
913 return ftrace_regex_open(inode, file, 1);
916 static int
917 ftrace_notrace_open(struct inode *inode, struct file *file)
919 return ftrace_regex_open(inode, file, 0);
922 static ssize_t
923 ftrace_regex_read(struct file *file, char __user *ubuf,
924 size_t cnt, loff_t *ppos)
926 if (file->f_mode & FMODE_READ)
927 return seq_read(file, ubuf, cnt, ppos);
928 else
929 return -EPERM;
932 static loff_t
933 ftrace_regex_lseek(struct file *file, loff_t offset, int origin)
935 loff_t ret;
937 if (file->f_mode & FMODE_READ)
938 ret = seq_lseek(file, offset, origin);
939 else
940 file->f_pos = ret = 1;
942 return ret;
945 enum {
946 MATCH_FULL,
947 MATCH_FRONT_ONLY,
948 MATCH_MIDDLE_ONLY,
949 MATCH_END_ONLY,
952 static void
953 ftrace_match(unsigned char *buff, int len, int enable)
955 char str[KSYM_SYMBOL_LEN];
956 char *search = NULL;
957 struct ftrace_page *pg;
958 struct dyn_ftrace *rec;
959 int type = MATCH_FULL;
960 unsigned long flag = enable ? FTRACE_FL_FILTER : FTRACE_FL_NOTRACE;
961 unsigned i, match = 0, search_len = 0;
963 for (i = 0; i < len; i++) {
964 if (buff[i] == '*') {
965 if (!i) {
966 search = buff + i + 1;
967 type = MATCH_END_ONLY;
968 search_len = len - (i + 1);
969 } else {
970 if (type == MATCH_END_ONLY) {
971 type = MATCH_MIDDLE_ONLY;
972 } else {
973 match = i;
974 type = MATCH_FRONT_ONLY;
976 buff[i] = 0;
977 break;
982 /* should not be called from interrupt context */
983 spin_lock(&ftrace_lock);
984 if (enable)
985 ftrace_filtered = 1;
986 pg = ftrace_pages_start;
987 while (pg) {
988 for (i = 0; i < pg->index; i++) {
989 int matched = 0;
990 char *ptr;
992 rec = &pg->records[i];
993 if (rec->flags & FTRACE_FL_FAILED)
994 continue;
995 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
996 switch (type) {
997 case MATCH_FULL:
998 if (strcmp(str, buff) == 0)
999 matched = 1;
1000 break;
1001 case MATCH_FRONT_ONLY:
1002 if (memcmp(str, buff, match) == 0)
1003 matched = 1;
1004 break;
1005 case MATCH_MIDDLE_ONLY:
1006 if (strstr(str, search))
1007 matched = 1;
1008 break;
1009 case MATCH_END_ONLY:
1010 ptr = strstr(str, search);
1011 if (ptr && (ptr[search_len] == 0))
1012 matched = 1;
1013 break;
1015 if (matched)
1016 rec->flags |= flag;
1018 pg = pg->next;
1020 spin_unlock(&ftrace_lock);
1023 static ssize_t
1024 ftrace_regex_write(struct file *file, const char __user *ubuf,
1025 size_t cnt, loff_t *ppos, int enable)
1027 struct ftrace_iterator *iter;
1028 char ch;
1029 size_t read = 0;
1030 ssize_t ret;
1032 if (!cnt || cnt < 0)
1033 return 0;
1035 mutex_lock(&ftrace_regex_lock);
1037 if (file->f_mode & FMODE_READ) {
1038 struct seq_file *m = file->private_data;
1039 iter = m->private;
1040 } else
1041 iter = file->private_data;
1043 if (!*ppos) {
1044 iter->flags &= ~FTRACE_ITER_CONT;
1045 iter->buffer_idx = 0;
1048 ret = get_user(ch, ubuf++);
1049 if (ret)
1050 goto out;
1051 read++;
1052 cnt--;
1054 if (!(iter->flags & ~FTRACE_ITER_CONT)) {
1055 /* skip white space */
1056 while (cnt && isspace(ch)) {
1057 ret = get_user(ch, ubuf++);
1058 if (ret)
1059 goto out;
1060 read++;
1061 cnt--;
1064 if (isspace(ch)) {
1065 file->f_pos += read;
1066 ret = read;
1067 goto out;
1070 iter->buffer_idx = 0;
1073 while (cnt && !isspace(ch)) {
1074 if (iter->buffer_idx < FTRACE_BUFF_MAX)
1075 iter->buffer[iter->buffer_idx++] = ch;
1076 else {
1077 ret = -EINVAL;
1078 goto out;
1080 ret = get_user(ch, ubuf++);
1081 if (ret)
1082 goto out;
1083 read++;
1084 cnt--;
1087 if (isspace(ch)) {
1088 iter->filtered++;
1089 iter->buffer[iter->buffer_idx] = 0;
1090 ftrace_match(iter->buffer, iter->buffer_idx, enable);
1091 iter->buffer_idx = 0;
1092 } else
1093 iter->flags |= FTRACE_ITER_CONT;
1096 file->f_pos += read;
1098 ret = read;
1099 out:
1100 mutex_unlock(&ftrace_regex_lock);
1102 return ret;
1105 static ssize_t
1106 ftrace_filter_write(struct file *file, const char __user *ubuf,
1107 size_t cnt, loff_t *ppos)
1109 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
1112 static ssize_t
1113 ftrace_notrace_write(struct file *file, const char __user *ubuf,
1114 size_t cnt, loff_t *ppos)
1116 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
1119 static void
1120 ftrace_set_regex(unsigned char *buf, int len, int reset, int enable)
1122 if (unlikely(ftrace_disabled))
1123 return;
1125 mutex_lock(&ftrace_regex_lock);
1126 if (reset)
1127 ftrace_filter_reset(enable);
1128 if (buf)
1129 ftrace_match(buf, len, enable);
1130 mutex_unlock(&ftrace_regex_lock);
1134 * ftrace_set_filter - set a function to filter on in ftrace
1135 * @buf - the string that holds the function filter text.
1136 * @len - the length of the string.
1137 * @reset - non zero to reset all filters before applying this filter.
1139 * Filters denote which functions should be enabled when tracing is enabled.
1140 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
1142 void ftrace_set_filter(unsigned char *buf, int len, int reset)
1144 ftrace_set_regex(buf, len, reset, 1);
1148 * ftrace_set_notrace - set a function to not trace in ftrace
1149 * @buf - the string that holds the function notrace text.
1150 * @len - the length of the string.
1151 * @reset - non zero to reset all filters before applying this filter.
1153 * Notrace Filters denote which functions should not be enabled when tracing
1154 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
1155 * for tracing.
1157 void ftrace_set_notrace(unsigned char *buf, int len, int reset)
1159 ftrace_set_regex(buf, len, reset, 0);
1162 static int
1163 ftrace_regex_release(struct inode *inode, struct file *file, int enable)
1165 struct seq_file *m = (struct seq_file *)file->private_data;
1166 struct ftrace_iterator *iter;
1168 mutex_lock(&ftrace_regex_lock);
1169 if (file->f_mode & FMODE_READ) {
1170 iter = m->private;
1172 seq_release(inode, file);
1173 } else
1174 iter = file->private_data;
1176 if (iter->buffer_idx) {
1177 iter->filtered++;
1178 iter->buffer[iter->buffer_idx] = 0;
1179 ftrace_match(iter->buffer, iter->buffer_idx, enable);
1182 mutex_lock(&ftrace_sysctl_lock);
1183 mutex_lock(&ftrace_start_lock);
1184 if (ftrace_start && ftrace_enabled)
1185 ftrace_run_update_code(FTRACE_ENABLE_CALLS);
1186 mutex_unlock(&ftrace_start_lock);
1187 mutex_unlock(&ftrace_sysctl_lock);
1189 kfree(iter);
1190 mutex_unlock(&ftrace_regex_lock);
1191 return 0;
1194 static int
1195 ftrace_filter_release(struct inode *inode, struct file *file)
1197 return ftrace_regex_release(inode, file, 1);
1200 static int
1201 ftrace_notrace_release(struct inode *inode, struct file *file)
1203 return ftrace_regex_release(inode, file, 0);
1206 static struct file_operations ftrace_avail_fops = {
1207 .open = ftrace_avail_open,
1208 .read = seq_read,
1209 .llseek = seq_lseek,
1210 .release = ftrace_avail_release,
1213 static struct file_operations ftrace_failures_fops = {
1214 .open = ftrace_failures_open,
1215 .read = seq_read,
1216 .llseek = seq_lseek,
1217 .release = ftrace_avail_release,
1220 static struct file_operations ftrace_filter_fops = {
1221 .open = ftrace_filter_open,
1222 .read = ftrace_regex_read,
1223 .write = ftrace_filter_write,
1224 .llseek = ftrace_regex_lseek,
1225 .release = ftrace_filter_release,
1228 static struct file_operations ftrace_notrace_fops = {
1229 .open = ftrace_notrace_open,
1230 .read = ftrace_regex_read,
1231 .write = ftrace_notrace_write,
1232 .llseek = ftrace_regex_lseek,
1233 .release = ftrace_notrace_release,
1236 static __init int ftrace_init_debugfs(void)
1238 struct dentry *d_tracer;
1239 struct dentry *entry;
1241 d_tracer = tracing_init_dentry();
1243 entry = debugfs_create_file("available_filter_functions", 0444,
1244 d_tracer, NULL, &ftrace_avail_fops);
1245 if (!entry)
1246 pr_warning("Could not create debugfs "
1247 "'available_filter_functions' entry\n");
1249 entry = debugfs_create_file("failures", 0444,
1250 d_tracer, NULL, &ftrace_failures_fops);
1251 if (!entry)
1252 pr_warning("Could not create debugfs 'failures' entry\n");
1254 entry = debugfs_create_file("set_ftrace_filter", 0644, d_tracer,
1255 NULL, &ftrace_filter_fops);
1256 if (!entry)
1257 pr_warning("Could not create debugfs "
1258 "'set_ftrace_filter' entry\n");
1260 entry = debugfs_create_file("set_ftrace_notrace", 0644, d_tracer,
1261 NULL, &ftrace_notrace_fops);
1262 if (!entry)
1263 pr_warning("Could not create debugfs "
1264 "'set_ftrace_notrace' entry\n");
1266 return 0;
1269 fs_initcall(ftrace_init_debugfs);
1271 static int ftrace_convert_nops(unsigned long *start,
1272 unsigned long *end)
1274 unsigned long *p;
1275 unsigned long addr;
1276 unsigned long flags;
1278 mutex_lock(&ftrace_start_lock);
1279 p = start;
1280 while (p < end) {
1281 addr = ftrace_call_adjust(*p++);
1282 ftrace_record_ip(addr);
1285 /* disable interrupts to prevent kstop machine */
1286 local_irq_save(flags);
1287 ftrace_update_code();
1288 local_irq_restore(flags);
1289 mutex_unlock(&ftrace_start_lock);
1291 return 0;
1294 void ftrace_init_module(unsigned long *start, unsigned long *end)
1296 if (ftrace_disabled || start == end)
1297 return;
1298 ftrace_convert_nops(start, end);
1301 extern unsigned long __start_mcount_loc[];
1302 extern unsigned long __stop_mcount_loc[];
1304 void __init ftrace_init(void)
1306 unsigned long count, addr, flags;
1307 int ret;
1309 /* Keep the ftrace pointer to the stub */
1310 addr = (unsigned long)ftrace_stub;
1312 local_irq_save(flags);
1313 ftrace_dyn_arch_init(&addr);
1314 local_irq_restore(flags);
1316 /* ftrace_dyn_arch_init places the return code in addr */
1317 if (addr)
1318 goto failed;
1320 count = __stop_mcount_loc - __start_mcount_loc;
1322 ret = ftrace_dyn_table_alloc(count);
1323 if (ret)
1324 goto failed;
1326 last_ftrace_enabled = ftrace_enabled = 1;
1328 ret = ftrace_convert_nops(__start_mcount_loc,
1329 __stop_mcount_loc);
1331 return;
1332 failed:
1333 ftrace_disabled = 1;
1336 #else
1338 static int __init ftrace_nodyn_init(void)
1340 ftrace_enabled = 1;
1341 return 0;
1343 device_initcall(ftrace_nodyn_init);
1345 # define ftrace_startup() do { } while (0)
1346 # define ftrace_shutdown() do { } while (0)
1347 # define ftrace_startup_sysctl() do { } while (0)
1348 # define ftrace_shutdown_sysctl() do { } while (0)
1349 #endif /* CONFIG_DYNAMIC_FTRACE */
1352 * ftrace_kill - kill ftrace
1354 * This function should be used by panic code. It stops ftrace
1355 * but in a not so nice way. If you need to simply kill ftrace
1356 * from a non-atomic section, use ftrace_kill.
1358 void ftrace_kill(void)
1360 ftrace_disabled = 1;
1361 ftrace_enabled = 0;
1362 clear_ftrace_function();
1366 * register_ftrace_function - register a function for profiling
1367 * @ops - ops structure that holds the function for profiling.
1369 * Register a function to be called by all functions in the
1370 * kernel.
1372 * Note: @ops->func and all the functions it calls must be labeled
1373 * with "notrace", otherwise it will go into a
1374 * recursive loop.
1376 int register_ftrace_function(struct ftrace_ops *ops)
1378 int ret;
1380 if (unlikely(ftrace_disabled))
1381 return -1;
1383 mutex_lock(&ftrace_sysctl_lock);
1384 ret = __register_ftrace_function(ops);
1385 ftrace_startup();
1386 mutex_unlock(&ftrace_sysctl_lock);
1388 return ret;
1392 * unregister_ftrace_function - unresgister a function for profiling.
1393 * @ops - ops structure that holds the function to unregister
1395 * Unregister a function that was added to be called by ftrace profiling.
1397 int unregister_ftrace_function(struct ftrace_ops *ops)
1399 int ret;
1401 mutex_lock(&ftrace_sysctl_lock);
1402 ret = __unregister_ftrace_function(ops);
1403 ftrace_shutdown();
1404 mutex_unlock(&ftrace_sysctl_lock);
1406 return ret;
1410 ftrace_enable_sysctl(struct ctl_table *table, int write,
1411 struct file *file, void __user *buffer, size_t *lenp,
1412 loff_t *ppos)
1414 int ret;
1416 if (unlikely(ftrace_disabled))
1417 return -ENODEV;
1419 mutex_lock(&ftrace_sysctl_lock);
1421 ret = proc_dointvec(table, write, file, buffer, lenp, ppos);
1423 if (ret || !write || (last_ftrace_enabled == ftrace_enabled))
1424 goto out;
1426 last_ftrace_enabled = ftrace_enabled;
1428 if (ftrace_enabled) {
1430 ftrace_startup_sysctl();
1432 /* we are starting ftrace again */
1433 if (ftrace_list != &ftrace_list_end) {
1434 if (ftrace_list->next == &ftrace_list_end)
1435 ftrace_trace_function = ftrace_list->func;
1436 else
1437 ftrace_trace_function = ftrace_list_func;
1440 } else {
1441 /* stopping ftrace calls (just send to ftrace_stub) */
1442 ftrace_trace_function = ftrace_stub;
1444 ftrace_shutdown_sysctl();
1447 out:
1448 mutex_unlock(&ftrace_sysctl_lock);
1449 return ret;