diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-08-21 15:01:51 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-08-21 15:01:51 -0700 |
commit | 4f61f842d199a695bb0c310945f7f320c1730abc (patch) | |
tree | 68ff27f3b9bb10f47a1651a528e6c9998f8cef4d /arch/x86 | |
parent | 7fb312d2256da63e6e4c6e92d279a90fe44bcabd (diff) | |
parent | 8924779df820c53875abaeb10c648e9cb75b46d4 (diff) | |
download | linux-stable-4f61f842d199a695bb0c310945f7f320c1730abc.tar.gz linux-stable-4f61f842d199a695bb0c310945f7f320c1730abc.tar.bz2 linux-stable-4f61f842d199a695bb0c310945f7f320c1730abc.zip |
Merge tag 'perf-urgent-2022-08-21' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 kprobes fix from Ingo Molnar:
"Fix a kprobes bug in JNG/JNLE emulation when a kprobe is installed at
such instructions, possibly resulting in incorrect execution (the
wrong branch taken)"
* tag 'perf-urgent-2022-08-21' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/kprobes: Fix JNG/JNLE emulation
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/kprobes/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/kprobes/core.c b/arch/x86/kernel/kprobes/core.c index 74167dc5f55e..4c3c27b6aea3 100644 --- a/arch/x86/kernel/kprobes/core.c +++ b/arch/x86/kernel/kprobes/core.c @@ -505,7 +505,7 @@ static void kprobe_emulate_jcc(struct kprobe *p, struct pt_regs *regs) match = ((regs->flags & X86_EFLAGS_SF) >> X86_EFLAGS_SF_BIT) ^ ((regs->flags & X86_EFLAGS_OF) >> X86_EFLAGS_OF_BIT); if (p->ainsn.jcc.type >= 0xe) - match = match && (regs->flags & X86_EFLAGS_ZF); + match = match || (regs->flags & X86_EFLAGS_ZF); } __kprobe_emulate_jmp(p, regs, (match && !invert) || (!match && invert)); } |