]> git.karo-electronics.de Git - linux-beck.git/commitdiff
KVM: VMX: relax check for CS register in rmode_segment_valid()
authorGleb Natapov <gleb@redhat.com>
Wed, 12 Dec 2012 17:10:50 +0000 (19:10 +0200)
committerGleb Natapov <gleb@redhat.com>
Sun, 23 Dec 2012 12:00:47 +0000 (14:00 +0200)
rmode_segment_valid() checks if segment descriptor can be used to enter
vm86 mode. VMX spec mandates that in vm86 mode CS register will be of
type data, not code. Lets allow guest entry with vm86 mode if the only
problem with CS register is incorrect type. Otherwise entire real mode
will be emulated.

Reviewed-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Gleb Natapov <gleb@redhat.com>
arch/x86/kvm/vmx.c

index 265fdd37b24020675fdbc5d59966a6149f9bc37f..7c2c05406b601f2267c1564d0b2ae598efde1bb4 100644 (file)
@@ -3383,6 +3383,8 @@ static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
        var.dpl = 0x3;
        var.g = 0;
        var.db = 0;
+       if (seg == VCPU_SREG_CS)
+               var.type = 0x3;
        ar = vmx_segment_access_rights(&var);
 
        if (var.base != (var.selector << 4))