]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
KVM: VMX: Don't allow uninhibited access to EFER on i386
authorAvi Kivity <avi@redhat.com>
Mon, 23 Mar 2009 20:13:44 +0000 (22:13 +0200)
committerAvi Kivity <avi@redhat.com>
Mon, 23 Mar 2009 20:13:44 +0000 (22:13 +0200)
vmx_set_msr() does not allow i386 guests to touch EFER, but they can still
do so through the default: label in the switch.  If they set EFER_LME, they
can oops the host.

Fix by having EFER access through the normal channel (which will check for
EFER_LME) even on i386.

Reported-and-tested-by: Benjamin Gilbert <bgilbert@cs.cmu.edu>
Cc: stable@kernel.org
Signed-off-by: Avi Kivity <avi@redhat.com>
arch/x86/kvm/vmx.c

index 88ef0947782fa81a3aae8a0442614cc3e6a01e0f..da6461d5dc84a53ffa89c4e9f86cb9a1b19f18ae 100644 (file)
@@ -942,11 +942,11 @@ static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
        int ret = 0;
 
        switch (msr_index) {
-#ifdef CONFIG_X86_64
        case MSR_EFER:
                vmx_load_host_state(vmx);
                ret = kvm_set_msr_common(vcpu, msr_index, data);
                break;
+#ifdef CONFIG_X86_64
        case MSR_FS_BASE:
                vmcs_writel(GUEST_FS_BASE, data);
                break;