All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 1/2] KVM: nVMX: nested TPR shadow/threshold emulation
@ 2014-08-20  9:45 Wanpeng Li
  2014-08-20  9:45 ` [PATCH v5 2/2] KVM: nVMX: introduce apic_access_and_virtual_page_valid Wanpeng Li
  0 siblings, 1 reply; 5+ messages in thread
From: Wanpeng Li @ 2014-08-20  9:45 UTC (permalink / raw)
  To: Paolo Bonzini
  Cc: Marcelo Tosatti, Gleb Natapov, Zhang Yang, kvm, linux-kernel, Wanpeng Li

This patch fix bug https://bugzilla.kernel.org/show_bug.cgi?id=61411

TPR shadow/threshold feature is important to speed up the Windows guest.
Besides, it is a must feature for certain VMM.

We map virtual APIC page address and TPR threshold from L1 VMCS. If
TPR_BELOW_THRESHOLD VM exit is triggered by L2 guest and L1 interested
in, we inject it into L1 VMM for handling.

Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Wanpeng Li <wanpeng.li@linux.intel.com>
---
v4 -> v5:
 * moving the nested_vmx_failValid call inside the "if (!vmx->nested.virtual_apic_page)"
v3 -> v4:
 * add Paolo's Reviewed-by
 * unconditionally fail the vmentry, with a comment
 * setup the TPR_SHADOW/virtual_apic_page of vmcs02 based on vmcs01 if L2 owns the APIC
v2 -> v3:
 * nested vm entry failure if both tpr shadow and cr8 exiting bits are not set
v1 -> v2:
 * don't take L0's "virtualize APIC accesses" setting into account
 * virtual_apic_page do exactly the same thing that is done for apic_access_page
 * add the tpr threshold field to the read-write fields for shadow VMCS

 arch/x86/kvm/vmx.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 49 insertions(+), 2 deletions(-)

diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index 286c283..caf239d 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -379,6 +379,7 @@ struct nested_vmx {
 	 * we must keep them pinned while L2 runs.
 	 */
 	struct page *apic_access_page;
+	struct page *virtual_apic_page;
 	u64 msr_ia32_feature_control;
 
 	struct hrtimer preemption_timer;
@@ -533,6 +534,7 @@ static int max_shadow_read_only_fields =
 	ARRAY_SIZE(shadow_read_only_fields);
 
 static unsigned long shadow_read_write_fields[] = {
+	TPR_THRESHOLD,
 	GUEST_RIP,
 	GUEST_RSP,
 	GUEST_CR0,
@@ -2330,7 +2332,7 @@ static __init void nested_vmx_setup_ctls_msrs(void)
 		CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
 		CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_EXITING |
 		CPU_BASED_RDPMC_EXITING | CPU_BASED_RDTSC_EXITING |
-		CPU_BASED_PAUSE_EXITING |
+		CPU_BASED_PAUSE_EXITING | CPU_BASED_TPR_SHADOW |
 		CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
 	/*
 	 * We can allow some features even when not supported by the
@@ -6150,6 +6152,10 @@ static void free_nested(struct vcpu_vmx *vmx)
 		nested_release_page(vmx->nested.apic_access_page);
 		vmx->nested.apic_access_page = 0;
 	}
+	if (vmx->nested.virtual_apic_page) {
+		nested_release_page(vmx->nested.virtual_apic_page);
+		vmx->nested.virtual_apic_page = 0;
+	}
 
 	nested_free_all_saved_vmcss(vmx);
 }
@@ -6938,7 +6944,7 @@ static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu)
 	case EXIT_REASON_MCE_DURING_VMENTRY:
 		return 0;
 	case EXIT_REASON_TPR_BELOW_THRESHOLD:
-		return 1;
+		return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
 	case EXIT_REASON_APIC_ACCESS:
 		return nested_cpu_has2(vmcs12,
 			SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
@@ -7059,6 +7065,12 @@ static int vmx_handle_exit(struct kvm_vcpu *vcpu)
 
 static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
 {
+	struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
+
+	if (is_guest_mode(vcpu) &&
+		nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
+		return;
+
 	if (irr == -1 || tpr < irr) {
 		vmcs_write32(TPR_THRESHOLD, 0);
 		return;
@@ -8026,6 +8038,37 @@ static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
 	exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
 	exec_control &= ~CPU_BASED_TPR_SHADOW;
 	exec_control |= vmcs12->cpu_based_vm_exec_control;
+
+	if (exec_control & CPU_BASED_TPR_SHADOW) {
+		if (vmx->nested.virtual_apic_page)
+			nested_release_page(vmx->nested.virtual_apic_page);
+		vmx->nested.virtual_apic_page =
+		   nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
+		if (!vmx->nested.virtual_apic_page)
+			exec_control &=
+				~CPU_BASED_TPR_SHADOW;
+		else
+			vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
+				page_to_phys(vmx->nested.virtual_apic_page));
+
+		/*
+		 * Failing the vm entry is _not_ what the processor does
+		 * but it's basically the only possibility we have.
+		 * We could still enter the guest if CR8 load exits are
+		 * enabled, CR8 store exits are enabled, and virtualize APIC
+		 * access is disabled; in this case the processor would never
+		 * use the TPR shadow and we could simply clear the bit from
+		 * the execution control.  But such a configuration is useless,
+		 * so let's keep the code simple.
+		 */
+		if (!vmx->nested.virtual_apic_page)
+			nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
+
+		vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
+	} else if (vm_need_tpr_shadow(vmx->vcpu.kvm))
+		vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
+				__pa(vmx->vcpu.arch.apic->regs));
+
 	/*
 	 * Merging of IO and MSR bitmaps not currently supported.
 	 * Rather, exit every time.
@@ -8794,6 +8837,10 @@ static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
 		nested_release_page(vmx->nested.apic_access_page);
 		vmx->nested.apic_access_page = 0;
 	}
+	if (vmx->nested.virtual_apic_page) {
+		nested_release_page(vmx->nested.virtual_apic_page);
+		vmx->nested.virtual_apic_page = 0;
+	}
 
 	/*
 	 * Exiting from L2 to L1, we're now back to L1 which thinks it just
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH v5 2/2] KVM: nVMX: introduce apic_access_and_virtual_page_valid
  2014-08-20  9:45 [PATCH v5 1/2] KVM: nVMX: nested TPR shadow/threshold emulation Wanpeng Li
@ 2014-08-20  9:45 ` Wanpeng Li
  2014-08-20 10:50   ` Paolo Bonzini
  0 siblings, 1 reply; 5+ messages in thread
From: Wanpeng Li @ 2014-08-20  9:45 UTC (permalink / raw)
  To: Paolo Bonzini
  Cc: Marcelo Tosatti, Gleb Natapov, Zhang Yang, kvm, linux-kernel, Wanpeng Li

Introduce apic_access_and_virtual_page_valid() to check the valid 
of nested apic access page and virtual apic page earlier.

Signed-off-by: Wanpeng Li <wanpeng.li@linux.intel.com>
---
 arch/x86/kvm/vmx.c | 82 ++++++++++++++++++++++++++++++------------------------
 1 file changed, 46 insertions(+), 36 deletions(-)

diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index caf239d..02bc07d 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -7838,6 +7838,50 @@ static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
 		kvm_inject_page_fault(vcpu, fault);
 }
 
+static bool apic_access_and_virtual_page_valid(struct kvm_vcpu *vcpu,
+						struct vmcs12 *vmcs12)
+{
+	struct vcpu_vmx *vmx = to_vmx(vcpu);
+
+	if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
+		if (!PAGE_ALIGNED(vmcs12->apic_access_addr))
+			/*TODO: Also verify bits beyond physical address width are 0*/
+			return false;
+
+		/*
+		 * Translate L1 physical address to host physical
+		 * address for vmcs02. Keep the page pinned, so this
+		 * physical address remains valid. We keep a reference
+		 * to it so we can release it later.
+		 */
+		if (vmx->nested.apic_access_page) /* shouldn't happen */
+			nested_release_page(vmx->nested.apic_access_page);
+		vmx->nested.apic_access_page =
+			nested_get_page(vcpu, vmcs12->apic_access_addr);
+	}
+
+	if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
+		if (vmx->nested.virtual_apic_page) /* shouldn't happen */
+			nested_release_page(vmx->nested.virtual_apic_page);
+		vmx->nested.virtual_apic_page =
+			nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
+
+		/*
+		 * Failing the vm entry is _not_ what the processor does
+		 * but it's basically the only possibility we have.
+		 * We could still enter the guest if CR8 load exits are
+		 * enabled, CR8 store exits are enabled, and virtualize APIC
+		 * access is disabled; in this case the processor would never
+		 * use the TPR shadow and we could simply clear the bit from
+		 * the execution control.  But such a configuration is useless,
+		 * so let's keep the code simple.
+		 */
+		if (!vmx->nested.virtual_apic_page)
+			return false;
+	}
+	return true;
+}
+
 static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
 {
 	u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
@@ -7984,16 +8028,6 @@ static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
 
 		if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) {
 			/*
-			 * Translate L1 physical address to host physical
-			 * address for vmcs02. Keep the page pinned, so this
-			 * physical address remains valid. We keep a reference
-			 * to it so we can release it later.
-			 */
-			if (vmx->nested.apic_access_page) /* shouldn't happen */
-				nested_release_page(vmx->nested.apic_access_page);
-			vmx->nested.apic_access_page =
-				nested_get_page(vcpu, vmcs12->apic_access_addr);
-			/*
 			 * If translation failed, no matter: This feature asks
 			 * to exit when accessing the given address, and if it
 			 * can never be accessed, this feature won't do
@@ -8040,30 +8074,8 @@ static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
 	exec_control |= vmcs12->cpu_based_vm_exec_control;
 
 	if (exec_control & CPU_BASED_TPR_SHADOW) {
-		if (vmx->nested.virtual_apic_page)
-			nested_release_page(vmx->nested.virtual_apic_page);
-		vmx->nested.virtual_apic_page =
-		   nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
-		if (!vmx->nested.virtual_apic_page)
-			exec_control &=
-				~CPU_BASED_TPR_SHADOW;
-		else
-			vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
+		vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
 				page_to_phys(vmx->nested.virtual_apic_page));
-
-		/*
-		 * Failing the vm entry is _not_ what the processor does
-		 * but it's basically the only possibility we have.
-		 * We could still enter the guest if CR8 load exits are
-		 * enabled, CR8 store exits are enabled, and virtualize APIC
-		 * access is disabled; in this case the processor would never
-		 * use the TPR shadow and we could simply clear the bit from
-		 * the execution control.  But such a configuration is useless,
-		 * so let's keep the code simple.
-		 */
-		if (!vmx->nested.virtual_apic_page)
-			nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
-
 		vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
 	} else if (vm_need_tpr_shadow(vmx->vcpu.kvm))
 		vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
@@ -8230,9 +8242,7 @@ static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
 		return 1;
 	}
 
-	if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) &&
-			!PAGE_ALIGNED(vmcs12->apic_access_addr)) {
-		/*TODO: Also verify bits beyond physical address width are 0*/
+	if (!apic_access_and_virtual_page_valid(vcpu, vmcs12)) {
 		nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
 		return 1;
 	}
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v5 2/2] KVM: nVMX: introduce apic_access_and_virtual_page_valid
  2014-08-20  9:45 ` [PATCH v5 2/2] KVM: nVMX: introduce apic_access_and_virtual_page_valid Wanpeng Li
@ 2014-08-20 10:50   ` Paolo Bonzini
  2014-08-21  8:08     ` Wanpeng Li
  0 siblings, 1 reply; 5+ messages in thread
From: Paolo Bonzini @ 2014-08-20 10:50 UTC (permalink / raw)
  To: Wanpeng Li; +Cc: Marcelo Tosatti, Gleb Natapov, Zhang Yang, kvm, linux-kernel

Il 20/08/2014 11:45, Wanpeng Li ha scritto:
> Introduce apic_access_and_virtual_page_valid() to check the valid 
> of nested apic access page and virtual apic page earlier.
> 
> Signed-off-by: Wanpeng Li <wanpeng.li@linux.intel.com>
> ---
>  arch/x86/kvm/vmx.c | 82 ++++++++++++++++++++++++++++++------------------------
>  1 file changed, 46 insertions(+), 36 deletions(-)
> 
> diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
> index caf239d..02bc07d 100644
> --- a/arch/x86/kvm/vmx.c
> +++ b/arch/x86/kvm/vmx.c
> @@ -7838,6 +7838,50 @@ static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
>  		kvm_inject_page_fault(vcpu, fault);
>  }
>  
> +static bool apic_access_and_virtual_page_valid(struct kvm_vcpu *vcpu,
> +						struct vmcs12 *vmcs12)
> +{
> +	struct vcpu_vmx *vmx = to_vmx(vcpu);
> +
> +	if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
> +		if (!PAGE_ALIGNED(vmcs12->apic_access_addr))
> +			/*TODO: Also verify bits beyond physical address width are 0*/
> +			return false;
> +
> +		/*
> +		 * Translate L1 physical address to host physical
> +		 * address for vmcs02. Keep the page pinned, so this
> +		 * physical address remains valid. We keep a reference
> +		 * to it so we can release it later.
> +		 */
> +		if (vmx->nested.apic_access_page) /* shouldn't happen */
> +			nested_release_page(vmx->nested.apic_access_page);
> +		vmx->nested.apic_access_page =
> +			nested_get_page(vcpu, vmcs12->apic_access_addr);
> +	}
> +
> +	if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
> +		if (vmx->nested.virtual_apic_page) /* shouldn't happen */
> +			nested_release_page(vmx->nested.virtual_apic_page);
> +		vmx->nested.virtual_apic_page =
> +			nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
> +
> +		/*
> +		 * Failing the vm entry is _not_ what the processor does
> +		 * but it's basically the only possibility we have.
> +		 * We could still enter the guest if CR8 load exits are
> +		 * enabled, CR8 store exits are enabled, and virtualize APIC
> +		 * access is disabled; in this case the processor would never
> +		 * use the TPR shadow and we could simply clear the bit from
> +		 * the execution control.  But such a configuration is useless,
> +		 * so let's keep the code simple.
> +		 */
> +		if (!vmx->nested.virtual_apic_page)
> +			return false;
> +	}
> +	return true;
> +}
> +
>  static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
>  {
>  	u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
> @@ -7984,16 +8028,6 @@ static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
>  
>  		if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) {
>  			/*
> -			 * Translate L1 physical address to host physical
> -			 * address for vmcs02. Keep the page pinned, so this
> -			 * physical address remains valid. We keep a reference
> -			 * to it so we can release it later.
> -			 */
> -			if (vmx->nested.apic_access_page) /* shouldn't happen */
> -				nested_release_page(vmx->nested.apic_access_page);
> -			vmx->nested.apic_access_page =
> -				nested_get_page(vcpu, vmcs12->apic_access_addr);
> -			/*
>  			 * If translation failed, no matter: This feature asks
>  			 * to exit when accessing the given address, and if it
>  			 * can never be accessed, this feature won't do
> @@ -8040,30 +8074,8 @@ static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
>  	exec_control |= vmcs12->cpu_based_vm_exec_control;
>  
>  	if (exec_control & CPU_BASED_TPR_SHADOW) {
> -		if (vmx->nested.virtual_apic_page)
> -			nested_release_page(vmx->nested.virtual_apic_page);
> -		vmx->nested.virtual_apic_page =
> -		   nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
> -		if (!vmx->nested.virtual_apic_page)
> -			exec_control &=
> -				~CPU_BASED_TPR_SHADOW;
> -		else
> -			vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
> +		vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
>  				page_to_phys(vmx->nested.virtual_apic_page));
> -
> -		/*
> -		 * Failing the vm entry is _not_ what the processor does
> -		 * but it's basically the only possibility we have.
> -		 * We could still enter the guest if CR8 load exits are
> -		 * enabled, CR8 store exits are enabled, and virtualize APIC
> -		 * access is disabled; in this case the processor would never
> -		 * use the TPR shadow and we could simply clear the bit from
> -		 * the execution control.  But such a configuration is useless,
> -		 * so let's keep the code simple.
> -		 */
> -		if (!vmx->nested.virtual_apic_page)
> -			nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
> -
>  		vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
>  	} else if (vm_need_tpr_shadow(vmx->vcpu.kvm))
>  		vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
> @@ -8230,9 +8242,7 @@ static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
>  		return 1;
>  	}
>  
> -	if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) &&
> -			!PAGE_ALIGNED(vmcs12->apic_access_addr)) {
> -		/*TODO: Also verify bits beyond physical address width are 0*/
> +	if (!apic_access_and_virtual_page_valid(vcpu, vmcs12)) {
>  		nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
>  		return 1;
>  	}
> 

Thanks Wanpeng.  The code now looks good.  Just one thing: please swap
them, so that the series remains bisectable.

Also, I think nested_get_vmcs12_pages would be a better name for the
function.  apic_access_and_virtual_page_valid doesn't hint at the side
effects of the function (for example calling nested_get_page).

The way I swap patches is by using "git checkout -p" like this:

 git branch  tpr-shadow-old
 git reset --hard HEAD^^
 git checkout -p tpr-shadow-old
     ... pick hunks related to the second patch ...
 git commit -c tpr-shadow-old
     ... edit commit message if needed ...
 git checkout -p tpr-shadow-old
     ... pick hunks related to the first patch ...
 git commit -C tpr-shadow-old^
     ... edit commit message if needed ...
 git diff tpr-shadow-old HEAD

Paolo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v5 2/2] KVM: nVMX: introduce apic_access_and_virtual_page_valid
  2014-08-20 10:50   ` Paolo Bonzini
@ 2014-08-21  8:08     ` Wanpeng Li
  2014-08-21  9:31       ` Paolo Bonzini
  0 siblings, 1 reply; 5+ messages in thread
From: Wanpeng Li @ 2014-08-21  8:08 UTC (permalink / raw)
  To: Paolo Bonzini
  Cc: Marcelo Tosatti, Gleb Natapov, Zhang Yang, kvm, linux-kernel

Hi Paolo,
On Wed, Aug 20, 2014 at 12:50:38PM +0200, Paolo Bonzini wrote:
>Il 20/08/2014 11:45, Wanpeng Li ha scritto:
>> Introduce apic_access_and_virtual_page_valid() to check the valid 
>> of nested apic access page and virtual apic page earlier.
>> 
>> Signed-off-by: Wanpeng Li <wanpeng.li@linux.intel.com>
>> ---
>>  arch/x86/kvm/vmx.c | 82 ++++++++++++++++++++++++++++++------------------------
>>  1 file changed, 46 insertions(+), 36 deletions(-)
>> 
>> diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
>> index caf239d..02bc07d 100644
>> --- a/arch/x86/kvm/vmx.c
>> +++ b/arch/x86/kvm/vmx.c
>> @@ -7838,6 +7838,50 @@ static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
>>  		kvm_inject_page_fault(vcpu, fault);
>>  }
>>  
>> +static bool apic_access_and_virtual_page_valid(struct kvm_vcpu *vcpu,
>> +						struct vmcs12 *vmcs12)
>> +{
>> +	struct vcpu_vmx *vmx = to_vmx(vcpu);
>> +
>> +	if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
>> +		if (!PAGE_ALIGNED(vmcs12->apic_access_addr))
>> +			/*TODO: Also verify bits beyond physical address width are 0*/
>> +			return false;
>> +
>> +		/*
>> +		 * Translate L1 physical address to host physical
>> +		 * address for vmcs02. Keep the page pinned, so this
>> +		 * physical address remains valid. We keep a reference
>> +		 * to it so we can release it later.
>> +		 */
>> +		if (vmx->nested.apic_access_page) /* shouldn't happen */
>> +			nested_release_page(vmx->nested.apic_access_page);
>> +		vmx->nested.apic_access_page =
>> +			nested_get_page(vcpu, vmcs12->apic_access_addr);
>> +	}
>> +
>> +	if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
>> +		if (vmx->nested.virtual_apic_page) /* shouldn't happen */
>> +			nested_release_page(vmx->nested.virtual_apic_page);
>> +		vmx->nested.virtual_apic_page =
>> +			nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
>> +
>> +		/*
>> +		 * Failing the vm entry is _not_ what the processor does
>> +		 * but it's basically the only possibility we have.
>> +		 * We could still enter the guest if CR8 load exits are
>> +		 * enabled, CR8 store exits are enabled, and virtualize APIC
>> +		 * access is disabled; in this case the processor would never
>> +		 * use the TPR shadow and we could simply clear the bit from
>> +		 * the execution control.  But such a configuration is useless,
>> +		 * so let's keep the code simple.
>> +		 */
>> +		if (!vmx->nested.virtual_apic_page)
>> +			return false;
>> +	}
>> +	return true;
>> +}
>> +
>>  static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
>>  {
>>  	u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
>> @@ -7984,16 +8028,6 @@ static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
>>  
>>  		if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) {
>>  			/*
>> -			 * Translate L1 physical address to host physical
>> -			 * address for vmcs02. Keep the page pinned, so this
>> -			 * physical address remains valid. We keep a reference
>> -			 * to it so we can release it later.
>> -			 */
>> -			if (vmx->nested.apic_access_page) /* shouldn't happen */
>> -				nested_release_page(vmx->nested.apic_access_page);
>> -			vmx->nested.apic_access_page =
>> -				nested_get_page(vcpu, vmcs12->apic_access_addr);
>> -			/*
>>  			 * If translation failed, no matter: This feature asks
>>  			 * to exit when accessing the given address, and if it
>>  			 * can never be accessed, this feature won't do
>> @@ -8040,30 +8074,8 @@ static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
>>  	exec_control |= vmcs12->cpu_based_vm_exec_control;
>>  
>>  	if (exec_control & CPU_BASED_TPR_SHADOW) {
>> -		if (vmx->nested.virtual_apic_page)
>> -			nested_release_page(vmx->nested.virtual_apic_page);
>> -		vmx->nested.virtual_apic_page =
>> -		   nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
>> -		if (!vmx->nested.virtual_apic_page)
>> -			exec_control &=
>> -				~CPU_BASED_TPR_SHADOW;
>> -		else
>> -			vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
>> +		vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
>>  				page_to_phys(vmx->nested.virtual_apic_page));
>> -
>> -		/*
>> -		 * Failing the vm entry is _not_ what the processor does
>> -		 * but it's basically the only possibility we have.
>> -		 * We could still enter the guest if CR8 load exits are
>> -		 * enabled, CR8 store exits are enabled, and virtualize APIC
>> -		 * access is disabled; in this case the processor would never
>> -		 * use the TPR shadow and we could simply clear the bit from
>> -		 * the execution control.  But such a configuration is useless,
>> -		 * so let's keep the code simple.
>> -		 */
>> -		if (!vmx->nested.virtual_apic_page)
>> -			nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
>> -
>>  		vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
>>  	} else if (vm_need_tpr_shadow(vmx->vcpu.kvm))
>>  		vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
>> @@ -8230,9 +8242,7 @@ static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
>>  		return 1;
>>  	}
>>  
>> -	if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) &&
>> -			!PAGE_ALIGNED(vmcs12->apic_access_addr)) {
>> -		/*TODO: Also verify bits beyond physical address width are 0*/
>> +	if (!apic_access_and_virtual_page_valid(vcpu, vmcs12)) {
>>  		nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
>>  		return 1;
>>  	}
>> 
>
>Thanks Wanpeng.  The code now looks good.  Just one thing: please swap
>them, so that the series remains bisectable.
>

Do you mean the first patch introduce nested_get_vmcs12_pages() and the
second patch implement nested TPR shadow/threshold emulation?

>Also, I think nested_get_vmcs12_pages would be a better name for the
>function.  apic_access_and_virtual_page_valid doesn't hint at the side
>effects of the function (for example calling nested_get_page).
>

Will do.

Regards,
Wanpeng Li 

>The way I swap patches is by using "git checkout -p" like this:
>
> git branch  tpr-shadow-old
> git reset --hard HEAD^^
> git checkout -p tpr-shadow-old
>     ... pick hunks related to the second patch ...
> git commit -c tpr-shadow-old
>     ... edit commit message if needed ...
> git checkout -p tpr-shadow-old
>     ... pick hunks related to the first patch ...
> git commit -C tpr-shadow-old^
>     ... edit commit message if needed ...
> git diff tpr-shadow-old HEAD
>
>Paolo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v5 2/2] KVM: nVMX: introduce apic_access_and_virtual_page_valid
  2014-08-21  8:08     ` Wanpeng Li
@ 2014-08-21  9:31       ` Paolo Bonzini
  0 siblings, 0 replies; 5+ messages in thread
From: Paolo Bonzini @ 2014-08-21  9:31 UTC (permalink / raw)
  To: Wanpeng Li; +Cc: Marcelo Tosatti, Gleb Natapov, Zhang Yang, kvm, linux-kernel

Il 21/08/2014 10:08, Wanpeng Li ha scritto:
>> >Thanks Wanpeng.  The code now looks good.  Just one thing: please swap
>> >them, so that the series remains bisectable.
>> >
> Do you mean the first patch introduce nested_get_vmcs12_pages() and the
> second patch implement nested TPR shadow/threshold emulation?
> 

Yes, exactly.

Paolo

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-08-21  9:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-20  9:45 [PATCH v5 1/2] KVM: nVMX: nested TPR shadow/threshold emulation Wanpeng Li
2014-08-20  9:45 ` [PATCH v5 2/2] KVM: nVMX: introduce apic_access_and_virtual_page_valid Wanpeng Li
2014-08-20 10:50   ` Paolo Bonzini
2014-08-21  8:08     ` Wanpeng Li
2014-08-21  9:31       ` Paolo Bonzini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.