All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] KVM: x86/cpuid: Exclude unpermitted xfeatures for vcpu->arch.guest_supported_xcr0
@ 2022-01-23  5:50 Like Xu
  2022-01-24  7:06 ` Tian, Kevin
  0 siblings, 1 reply; 8+ messages in thread
From: Like Xu @ 2022-01-23  5:50 UTC (permalink / raw)
  To: Paolo Bonzini
  Cc: Jing Liu, Wanpeng Li, Sean Christopherson, Jim Mattson,
	Vitaly Kuznetsov, Joerg Roedel, kvm, linux-kernel

From: Like Xu <likexu@tencent.com>

A malicious user space can bypass xstate_get_guest_group_perm() in the
KVM_GET_SUPPORTED_CPUID mechanism and obtain unpermitted xfeatures,
since the validity check of xcr0 depends only on guest_supported_xcr0.

Fixes: 445ecdf79be0 ("kvm: x86: Exclude unpermitted xfeatures at KVM_GET_SUPPORTED_CPUID")
Signed-off-by: Like Xu <likexu@tencent.com>
---
 arch/x86/kvm/cpuid.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/x86/kvm/cpuid.c b/arch/x86/kvm/cpuid.c
index 3902c28fb6cb..1bd4d560cbdd 100644
--- a/arch/x86/kvm/cpuid.c
+++ b/arch/x86/kvm/cpuid.c
@@ -266,7 +266,8 @@ static void kvm_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
 		vcpu->arch.guest_supported_xcr0 = 0;
 	else
 		vcpu->arch.guest_supported_xcr0 =
-			(best->eax | ((u64)best->edx << 32)) & supported_xcr0;
+			(best->eax | ((u64)best->edx << 32)) &
+			(supported_xcr0 & xstate_get_guest_group_perm());
 
 	/*
 	 * Bits 127:0 of the allowed SECS.ATTRIBUTES (CPUID.0x12.0x1) enumerate
-- 
2.33.1


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

end of thread, other threads:[~2022-01-26  1:24 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-23  5:50 [PATCH] KVM: x86/cpuid: Exclude unpermitted xfeatures for vcpu->arch.guest_supported_xcr0 Like Xu
2022-01-24  7:06 ` Tian, Kevin
2022-01-24  7:17   ` Like Xu
2022-01-24 16:23     ` Sean Christopherson
2022-01-24 16:29       ` Paolo Bonzini
2022-01-25  1:54         ` Tian, Kevin
2022-01-25  8:27           ` Paolo Bonzini
2022-01-26  1:23             ` Tian, Kevin

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.