]> git.baikalelectronics.ru Git - kernel.git/commit
KVM: x86: Don't update RIP or do single-step on faulting emulation
authorSean Christopherson <sean.j.christopherson@intel.com>
Fri, 23 Aug 2019 20:55:44 +0000 (13:55 -0700)
committerRadim Krčmář <rkrcmar@redhat.com>
Tue, 27 Aug 2019 18:59:04 +0000 (20:59 +0200)
commitc1c7f731093c70684248aa4819873b33d9e7a550
treeeb8a7a231a1ab4e740507fe6751ca5ac99148b99
parente0f1e65310dde411203503f2ea88000dd727df18
KVM: x86: Don't update RIP or do single-step on faulting emulation

Don't advance RIP or inject a single-step #DB if emulation signals a
fault.  This logic applies to all state updates that are conditional on
clean retirement of the emulation instruction, e.g. updating RFLAGS was
previously handled by commit 3e3d52c6346e3 ("KVM: x86: Do not update
EFLAGS on faulting emulation").

Not advancing RIP is likely a nop, i.e. ctxt->eip isn't updated with
ctxt->_eip until emulation "retires" anyways.  Skipping #DB injection
fixes a bug reported by Andy Lutomirski where a #UD on SYSCALL due to
invalid state with EFLAGS.TF=1 would loop indefinitely due to emulation
overwriting the #UD with #DB and thus restarting the bad SYSCALL over
and over.

Cc: Nadav Amit <nadav.amit@gmail.com>
Cc: stable@vger.kernel.org
Reported-by: Andy Lutomirski <luto@kernel.org>
Fixes: a9b2e5b7f17a ("KVM: x86: handle singlestep during emulation")
Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com>
Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>
arch/x86/kvm/x86.c