KVM: VMX: Don't allow uninhibited access to EFER on i386
authorAvi Kivity <avi@redhat.com>
Thu, 6 Aug 2009 17:39:58 +0000 (14:39 -0300)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 9 Sep 2009 03:17:17 +0000 (20:17 -0700)
commit9829a7c1ab1eef1a32498a2f627155cc0e8a8e65
treef993ef502614df681f8f47489c02c63286940178
parentf7e4e13de304466a40f01426e307af36c0bd9870
KVM: VMX: Don't allow uninhibited access to EFER on i386

(cherry picked from commit 16175a796d061833aacfbd9672235f2d2725df65)

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>
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
arch/x86/kvm/vmx.c