From: Andrew Cooper Date: Wed, 19 Jul 2017 11:37:53 +0000 (+0100) Subject: x86/vvmx: Fix auditing of MSR_BITMAP parameter X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~1765 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f0f1a778d4d5ebe27b981531048fe9cf030386fa;p=xen.git x86/vvmx: Fix auditing of MSR_BITMAP parameter The MSR_BITMAP field is required to be page aligned. Also switch gpa to be a uint64_t, as the MSR_BITMAP is strictly a 64bit VMCS field. Signed-off-by: Andrew Cooper Acked-by: Kevin Tian --- diff --git a/xen/arch/x86/hvm/vmx/vvmx.c b/xen/arch/x86/hvm/vmx/vvmx.c index f84478e54e..e2361a1394 100644 --- a/xen/arch/x86/hvm/vmx/vvmx.c +++ b/xen/arch/x86/hvm/vmx/vvmx.c @@ -754,14 +754,27 @@ static void __clear_current_vvmcs(struct vcpu *v) __vmpclear(nvcpu->nv_n2vmcx_pa); } -static bool_t __must_check _map_msr_bitmap(struct vcpu *v) +/* + * Refreshes the MSR bitmap mapping for the current nested vcpu. Returns true + * for a successful mapping, and returns false for MSR_BITMAP parameter errors + * or gfn mapping errors. + */ +static bool __must_check _map_msr_bitmap(struct vcpu *v) { struct nestedvmx *nvmx = &vcpu_2_nvmx(v); - unsigned long gpa; + uint64_t gpa; if ( nvmx->msrbitmap ) + { hvm_unmap_guest_frame(nvmx->msrbitmap, 1); + nvmx->msrbitmap = NULL; + } + gpa = get_vvmcs(v, MSR_BITMAP); + + if ( !IS_ALIGNED(gpa, PAGE_SIZE) ) + return false; + nvmx->msrbitmap = hvm_map_guest_frame_ro(gpa >> PAGE_SHIFT, 1); return nvmx->msrbitmap != NULL;