KVM: SVM: check for progress after IRET interception
authorAvi Kivity <avi@redhat.com>
Thu, 3 Feb 2011 13:29:52 +0000 (15:29 +0200)
committerMarcelo Tosatti <mtosatti@redhat.com>
Thu, 17 Mar 2011 16:08:30 +0000 (13:08 -0300)
commitbd3d1ec3d26b61120bb4f60b18ee99aa81839e6b
tree1da67e2ea45cad2b8460906820bf5cad15671b32
parentf86368493ec038218e8663cc1b6e5393cd8e008a
KVM: SVM: check for progress after IRET interception

When we enable an NMI window, we ask for an IRET intercept, since
the IRET re-enables NMIs.  However, the IRET intercept happens before
the instruction executes, while the NMI window architecturally opens
afterwards.

To compensate for this mismatch, we only open the NMI window in the
following exit, assuming that the IRET has by then executed; however,
this assumption is not always correct; we may exit due to a host interrupt
or page fault, without having executed the instruction.

Fix by checking for forward progress by recording and comparing the IRET's
rip.  This is somewhat of a hack, since an unchaging rip does not mean that
no forward progress has been made, but is the simplest fix for now.

Signed-off-by: Avi Kivity <avi@redhat.com>
arch/x86/kvm/svm.c