diff options
author | Steven Rostedt (Red Hat) <rostedt@goodmis.org> | 2016-12-08 12:48:26 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2016-12-09 09:17:10 -0500 |
commit | 847fa1a6d3d00f3bdf68ef5fa4a786f644a0dd67 (patch) | |
tree | baacd7e2a817b5c9b487251fbe2586ceef6e23a7 | |
parent | 9c1f6bb8c88ab6c2779bdaf12d4f3407d336f085 (diff) |
ftrace/x86_32: Set ftrace_stub to weak to prevent gcc from using short jumps to it
With new binutils, gcc may get smart with its optimization and change a jmp
from a 5 byte jump to a 2 byte one even though it was jumping to a global
function. But that global function existed within a 2 byte radius, and gcc
was able to optimize it. Unfortunately, that jump was also being modified
when function graph tracing begins. Since ftrace expected that jump to be 5
bytes, but it was only two, it overwrote code after the jump, causing a
crash.
This was fixed for x86_64 with commit 8329e818f149, with the same subject as
this commit, but nothing was done for x86_32.
Cc: stable@vger.kernel.org
Fixes: d61f82d06672 ("ftrace: use dynamic patching for updating mcount calls")
Reported-by: Colin Ian King <colin.king@canonical.com>
Tested-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r-- | arch/x86/entry/entry_32.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/entry/entry_32.S b/arch/x86/entry/entry_32.S index 21b352a11b49..edba8606b99a 100644 --- a/arch/x86/entry/entry_32.S +++ b/arch/x86/entry/entry_32.S | |||
@@ -889,8 +889,8 @@ ftrace_graph_call: | |||
889 | jmp ftrace_stub | 889 | jmp ftrace_stub |
890 | #endif | 890 | #endif |
891 | 891 | ||
892 | .globl ftrace_stub | 892 | /* This is weak to keep gas from relaxing the jumps */ |
893 | ftrace_stub: | 893 | WEAK(ftrace_stub) |
894 | ret | 894 | ret |
895 | END(ftrace_caller) | 895 | END(ftrace_caller) |
896 | 896 | ||