diff options
author | Masami Hiramatsu <mhiramat@kernel.org> | 2017-08-02 22:39:26 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2017-08-10 10:28:53 -0400 |
commit | d9f5f32a7d17f4906a21ad59589853639a1328a0 (patch) | |
tree | 4b54ad550325c872d237bc8bf0b4f610a82f3e20 | |
parent | 229a71860547ec856b156179a9c6bef2de426f66 (diff) |
kprobes/x86: Do not jump-optimize kprobes on irq entry code
Since the kernel segment registers are not prepared at the
entry of irq-entry code, if a kprobe on such code is
jump-optimized, accessing per-CPU variables may cause a
kernel panic.
However, if the kprobe is not optimized, it triggers an int3
exception and sets segment registers correctly.
With this patch we check the probe-address and if it is in the
irq-entry code, it prohibits optimizing such kprobes.
This means we can continue probing such interrupt handlers by kprobes
but it is not optimized anymore.
Reported-by: Francis Deslauriers <francis.deslauriers@efficios.com>
Tested-by: Francis Deslauriers <francis.deslauriers@efficios.com>
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
Cc: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
Cc: Chris Zankel <chris@zankel.net>
Cc: David S . Miller <davem@davemloft.net>
Cc: Jesper Nilsson <jesper.nilsson@axis.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Max Filippov <jcmvbkbc@gmail.com>
Cc: Mikael Starvik <starvik@axis.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: linux-arch@vger.kernel.org
Cc: linux-cris-kernel@axis.com
Cc: mathieu.desnoyers@efficios.com
Link: http://lkml.kernel.org/r/150172795654.27216.9824039077047777477.stgit@devbox
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | arch/x86/kernel/kprobes/opt.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/arch/x86/kernel/kprobes/opt.c b/arch/x86/kernel/kprobes/opt.c index 69ea0bc1cfa3..4f98aad38237 100644 --- a/arch/x86/kernel/kprobes/opt.c +++ b/arch/x86/kernel/kprobes/opt.c | |||
@@ -39,6 +39,7 @@ | |||
39 | #include <asm/insn.h> | 39 | #include <asm/insn.h> |
40 | #include <asm/debugreg.h> | 40 | #include <asm/debugreg.h> |
41 | #include <asm/set_memory.h> | 41 | #include <asm/set_memory.h> |
42 | #include <asm/sections.h> | ||
42 | 43 | ||
43 | #include "common.h" | 44 | #include "common.h" |
44 | 45 | ||
@@ -251,10 +252,12 @@ static int can_optimize(unsigned long paddr) | |||
251 | 252 | ||
252 | /* | 253 | /* |
253 | * Do not optimize in the entry code due to the unstable | 254 | * Do not optimize in the entry code due to the unstable |
254 | * stack handling. | 255 | * stack handling and registers setup. |
255 | */ | 256 | */ |
256 | if ((paddr >= (unsigned long)__entry_text_start) && | 257 | if (((paddr >= (unsigned long)__entry_text_start) && |
257 | (paddr < (unsigned long)__entry_text_end)) | 258 | (paddr < (unsigned long)__entry_text_end)) || |
259 | ((paddr >= (unsigned long)__irqentry_text_start) && | ||
260 | (paddr < (unsigned long)__irqentry_text_end))) | ||
258 | return 0; | 261 | return 0; |
259 | 262 | ||
260 | /* Check there is enough space for a relative jump. */ | 263 | /* Check there is enough space for a relative jump. */ |