diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-10-02 18:06:15 +0400 |
---|---|---|
committer | Gleb Natapov <gleb@redhat.com> | 2013-10-03 13:29:07 +0400 |
commit | d7876f1be40a16223a44355740de625849504eb5 (patch) | |
tree | 33e0f69e36fd042139eb490745515c466a1685d2 /arch/x86/include/asm/kvm_host.h | |
parent | 647e23bb333ff196e7be8ae08c842d855fb850f6 (diff) | |
download | linux-d7876f1be40a16223a44355740de625849504eb5.tar.xz |
KVM: x86: prevent setting unsupported XSAVE states
A guest can still attempt to save and restore XSAVE states even if they
have been masked in CPUID leaf 0Dh. This usually is not visible to
the guest, but is still wrong: "Any attempt to set a reserved bit (as
determined by the contents of EAX and EDX after executing CPUID with
EAX=0DH, ECX= 0H) in XCR0 for a given processor will result in a #GP
exception".
The patch also performs the same checks as __kvm_set_xcr in KVM_SET_XSAVE.
This catches migration from newer to older kernel/processor before the
guest starts running.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Diffstat (limited to 'arch/x86/include/asm/kvm_host.h')
-rw-r--r-- | arch/x86/include/asm/kvm_host.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h index c76ff74a98f2..35d10d1a6b58 100644 --- a/arch/x86/include/asm/kvm_host.h +++ b/arch/x86/include/asm/kvm_host.h @@ -389,6 +389,7 @@ struct kvm_vcpu_arch { struct fpu guest_fpu; u64 xcr0; + u64 guest_supported_xcr0; struct kvm_pio_request pio; void *pio_data; |