]> git.baikalelectronics.ru Git - kernel.git/commit
KVM: x86: emulate #UD while in guest mode
authorPaolo Bonzini <pbonzini@redhat.com>
Thu, 11 Jan 2018 15:55:24 +0000 (16:55 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 11 Jan 2018 15:55:24 +0000 (16:55 +0100)
commitfe8d9538a46a27053763d19df637fab6f43a153f
tree0fa8919b8016ba59387b83ca38c0d39cf99bbb73
parentf0548b760acd21aa75f22c1ef451c588eae4ea1c
KVM: x86: emulate #UD while in guest mode

This reverts commits 07a2755835a7a8b2b08549a63eb64f7f3ea4c870
and 4445222010839ab74af07819c9618bd2fb13627c.

If the hardware doesn't support MOVBE, but L0 sets CPUID.01H:ECX.MOVBE
in L1's emulated CPUID information, then L1 is likely to pass that
CPUID bit through to L2. L2 will expect MOVBE to work, but if L1
doesn't intercept #UD, then any MOVBE instruction executed in L2 will
raise #UD, and the exception will be delivered in L2.

Commit 4445222010839ab74af07819c9618bd2fb13627c is a better and more
complete version of 07a2755835a7 ("KVM: nVMX: Do not emulate #UD while
in guest mode"); however, neither considers the above case.

Suggested-by: Jim Mattson <jmattson@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/svm.c
arch/x86/kvm/vmx.c