# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1247737234 -3600
# Node ID 422df4ece58b8f73ada598c5e8ded34149f0c180
# Parent 24677b593c88006520fd76d4a7e24677b5190b98
vmx: Fix handling of FS/GS base MSRs.
Firstly, these MSRs are always accessible if the CPU supports them --
we should not check for EFER.LMA.
Secondly, we should not use teh cached value of shadow_gs while the
VCPU is running. It can be stale if the guest has executed SWAPGS
(which we cannot trap). Hence always access the underlying host MSR
when emulating guest accesses.
The latter bug was found and a patch proposed by <leonid@xxxxxxxxx>
Signed-off-by: Keir Fraser <keir.fraser@xxxxxxxxxx>
xen-unstable changeset: 19953:fe4c6845a9d7
xen-unstable date: Thu Jul 16 10:26:55 2009 +0100
---
xen/arch/x86/hvm/vmx/vmx.c | 24 +++++++-----------------
1 files changed, 7 insertions(+), 17 deletions(-)
diff -r 24677b593c88 -r 422df4ece58b xen/arch/x86/hvm/vmx/vmx.c
--- a/xen/arch/x86/hvm/vmx/vmx.c Wed Jul 15 13:32:20 2009 +0100
+++ b/xen/arch/x86/hvm/vmx/vmx.c Thu Jul 16 10:40:34 2009 +0100
@@ -174,20 +174,14 @@ static enum handler_return long_mode_do_
case MSR_FS_BASE:
msr_content = __vmread(GUEST_FS_BASE);
- goto check_long_mode;
+ break;
case MSR_GS_BASE:
msr_content = __vmread(GUEST_GS_BASE);
- goto check_long_mode;
+ break;
case MSR_SHADOW_GS_BASE:
- msr_content = v->arch.hvm_vmx.shadow_gs;
- check_long_mode:
- if ( !(hvm_long_mode_enabled(v)) )
- {
- vmx_inject_hw_exception(v, TRAP_gp_fault, 0);
- return HNDL_exception_raised;
- }
+ rdmsrl(MSR_SHADOW_GS_BASE, msr_content);
break;
case MSR_STAR:
@@ -238,9 +232,6 @@ static enum handler_return long_mode_do_
case MSR_FS_BASE:
case MSR_GS_BASE:
case MSR_SHADOW_GS_BASE:
- if ( !hvm_long_mode_enabled(v) )
- goto gp_fault;
-
if ( !is_canonical_address(msr_content) )
goto uncanonical_address;
@@ -249,10 +240,7 @@ static enum handler_return long_mode_do_
else if ( ecx == MSR_GS_BASE )
__vmwrite(GUEST_GS_BASE, msr_content);
else
- {
- v->arch.hvm_vmx.shadow_gs = msr_content;
wrmsrl(MSR_SHADOW_GS_BASE, msr_content);
- }
break;
@@ -281,7 +269,6 @@ static enum handler_return long_mode_do_
uncanonical_address:
HVM_DBG_LOG(DBG_LEVEL_0, "Not cano address of msr write %x", ecx);
- gp_fault:
vmx_inject_hw_exception(v, TRAP_gp_fault, 0);
exception_raised:
return HNDL_exception_raised;
@@ -308,7 +295,10 @@ static void vmx_restore_host_msrs(void)
static void vmx_save_guest_msrs(struct vcpu *v)
{
- /* MSR_SHADOW_GS_BASE may have been changed by swapgs instruction. */
+ /*
+ * We cannot cache SHADOW_GS_BASE while the VCPU runs, as it can
+ * be updated at any time via SWAPGS, which we cannot trap.
+ */
rdmsrl(MSR_SHADOW_GS_BASE, v->arch.hvm_vmx.shadow_gs);
}
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|