aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel
diff options
context:
space:
mode:
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>2014-11-18 21:14:11 -0500
committerSteven Rostedt <rostedt@goodmis.org>2014-11-19 15:25:26 -0500
commitaec0be2d6e9f02dbef41ee54854c2e003e55c23e (patch)
treed99c09ba4247724e467ab497f2184068a64ef63b /arch/x86/kernel
parent9960efeb80f73bd073483dab0855ee0ddc27085c (diff)
ftrace/x86/extable: Add is_ftrace_trampoline() function
Stack traces that happen from function tracing check if the address on the stack is a __kernel_text_address(). That is, is the address kernel code. This calls core_kernel_text() which returns true if the address is part of the builtin kernel code. It also calls is_module_text_address() which returns true if the address belongs to module code. But what is missing is ftrace dynamically allocated trampolines. These trampolines are allocated for individual ftrace_ops that call the ftrace_ops callback functions directly. But if they do a stack trace, the code checking the stack wont detect them as they are neither core kernel code nor module address space. Adding another field to ftrace_ops that also stores the size of the trampoline assigned to it we can create a new function called is_ftrace_trampoline() that returns true if the address is a dynamically allocate ftrace trampoline. Note, it ignores trampolines that are not dynamically allocated as they will return true with the core_kernel_text() function. Link: http://lkml.kernel.org/r/20141119034829.497125839@goodmis.org Cc: Ingo Molnar <mingo@redhat.com> Cc: "H. Peter Anvin" <hpa@zytor.com> Acked-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r--arch/x86/kernel/ftrace.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/arch/x86/kernel/ftrace.c b/arch/x86/kernel/ftrace.c
index 1aea94d336c7..60881d919432 100644
--- a/arch/x86/kernel/ftrace.c
+++ b/arch/x86/kernel/ftrace.c
@@ -712,7 +712,8 @@ union ftrace_op_code_union {
712 } __attribute__((packed)); 712 } __attribute__((packed));
713}; 713};
714 714
715static unsigned long create_trampoline(struct ftrace_ops *ops) 715static unsigned long
716create_trampoline(struct ftrace_ops *ops, unsigned int *tramp_size)
716{ 717{
717 unsigned const char *jmp; 718 unsigned const char *jmp;
718 unsigned long start_offset; 719 unsigned long start_offset;
@@ -749,6 +750,8 @@ static unsigned long create_trampoline(struct ftrace_ops *ops)
749 if (!trampoline) 750 if (!trampoline)
750 return 0; 751 return 0;
751 752
753 *tramp_size = size + MCOUNT_INSN_SIZE + sizeof(void *);
754
752 /* Copy ftrace_caller onto the trampoline memory */ 755 /* Copy ftrace_caller onto the trampoline memory */
753 ret = probe_kernel_read(trampoline, (void *)start_offset, size); 756 ret = probe_kernel_read(trampoline, (void *)start_offset, size);
754 if (WARN_ON(ret < 0)) { 757 if (WARN_ON(ret < 0)) {
@@ -819,6 +822,7 @@ void arch_ftrace_update_trampoline(struct ftrace_ops *ops)
819 unsigned char *new; 822 unsigned char *new;
820 unsigned long offset; 823 unsigned long offset;
821 unsigned long ip; 824 unsigned long ip;
825 unsigned int size;
822 int ret; 826 int ret;
823 827
824 if (ops->trampoline) { 828 if (ops->trampoline) {
@@ -829,9 +833,10 @@ void arch_ftrace_update_trampoline(struct ftrace_ops *ops)
829 if (!(ops->flags & FTRACE_OPS_FL_ALLOC_TRAMP)) 833 if (!(ops->flags & FTRACE_OPS_FL_ALLOC_TRAMP))
830 return; 834 return;
831 } else { 835 } else {
832 ops->trampoline = create_trampoline(ops); 836 ops->trampoline = create_trampoline(ops, &size);
833 if (!ops->trampoline) 837 if (!ops->trampoline)
834 return; 838 return;
839 ops->trampoline_size = size;
835 } 840 }
836 841
837 offset = calc_trampoline_call_offset(ops->flags & FTRACE_OPS_FL_SAVE_REGS); 842 offset = calc_trampoline_call_offset(ops->flags & FTRACE_OPS_FL_SAVE_REGS);