Re: [PATCH v3 3/4] KVM: TDX: Filter configurable CPUID bits
From: Xiaoyao Li
Date: Thu Sep 03 2026 - 06:02:53 EST
On 8/27/2026 11:18 AM, Binbin Wu wrote:
> Filter the directly configurable CPUID bits reported through
> KVM_TDX_CAPABILITIES against KVM's TDX allowlist, and drop the hardcoded
> denylist based filtering.
>
> The TDX module reports all directly configurable CPUID bits that it
> supports for a TD, but KVM must not expose bits that it doesn't support,
> as blindly exposing a host state clobbering feature can lead to host state
> corruption. The existing denylist, which clears only TSX and WAITPKG, is
> not fail-safe.
>
> Add tdx_get_allowed_cfg_cpuid_mask() to get the mask of directly
> configurable bits allowed by KVM for a given CPUID register, covering both
> feature bits, which come from tdx_cpu_cfg_caps[], and non-feature bits,
> which are enumerated at runtime. Apply the mask to every CPUID register
> reported through KVM_TDX_CAPABILITIES.
>
> With the allowlist in place, newly introduced TDX directly configurable
> CPUID bits stay hidden from userspace until KVM explicitly opts in.
>
> Signed-off-by: Binbin Wu <binbin.wu@xxxxxxxxxxxxxxx>
> ---
> v3:
> - Handle non-feature leafs at runtime. (Sean)
> - Add CPUID.0x24.0.EBX[7:0] into allow list. There is a mismatch of the
> description about CPUID.0x24.0.EBX[7:0], which is listed as
> "XFAM & CPUID_Enabled & Native" but should be "XFAM & CPUID_Enabled &
> Configured & Native".
> ---
> arch/x86/kvm/vmx/tdx.c | 84 +++++++++++++++++++++++++++++++++---------
> 1 file changed, 66 insertions(+), 18 deletions(-)
>
> diff --git a/arch/x86/kvm/vmx/tdx.c b/arch/x86/kvm/vmx/tdx.c
> index b020518717ac..e8951353de73 100644
> --- a/arch/x86/kvm/vmx/tdx.c
> +++ b/arch/x86/kvm/vmx/tdx.c
> @@ -277,34 +277,76 @@ static bool has_tsx(const struct kvm_cpuid_entry2 *entry)
> (entry->ebx & TDX_FEATURE_TSX);
> }
>
> -static void clear_tsx(struct kvm_cpuid_entry2 *entry)
> -{
> - entry->ebx &= ~TDX_FEATURE_TSX;
> -}
> -
> static bool has_waitpkg(const struct kvm_cpuid_entry2 *entry)
> {
> return entry->function == 7 && entry->index == 0 &&
> (entry->ecx & __feature_bit(X86_FEATURE_WAITPKG));
> }
>
> -static void clear_waitpkg(struct kvm_cpuid_entry2 *entry)
> +static bool tdx_unsupported_cpuid(const struct kvm_cpuid_entry2 *entry)
> {
> - entry->ecx &= ~__feature_bit(X86_FEATURE_WAITPKG);
> + return has_tsx(entry) || has_waitpkg(entry);
> }
>
> -static void tdx_clear_unsupported_cpuid(struct kvm_cpuid_entry2 *entry)
> +#define TDX_CPUID_ALL_ALLOWED_MASK GENMASK_U32(31, 0)
> +
> +static u32 tdx_cfg_non_feature_mask(u32 function, u32 index, int reg)
> {
> - if (has_tsx(entry))
> - clear_tsx(entry);
> + /*
> + * For a leaf/subleaf/register that will never be repurposed to hold
> + * feature bits, it's safe to return TDX_CPUID_ALL_ALLOWED_MASK, i.e.
> + * leave the TDX module's CPUID config mask intact.
> + */
I don't think blindly return TDX_CPUID_ALL_ALLOWED_MASK, i.e. all-1s, is a
good idea. It's just like the current behavior that KVM doesn't gate
anything and allows userspace to set anything that is allowed by TDX
module. For example, ...
> + switch (function) {
> + case 1:
> + if (reg == CPUID_EAX || reg == CPUID_EBX)
> + return TDX_CPUID_ALL_ALLOWED_MASK;
... TDX module returns 0x0fff3fff for CPUID.1.EAX currently. If KVM makes
the mask as all-1s, then if in the future the reserved field [15:14] and
[31:28] are defined for new things and new TDX module starts to report them
as configurable, then the bits will be configurable by userspace on old
kernels while we don't know if its safe for KVM/kernel.
> + return 0;
> + case 4:
> + case 0x18:
> + case 0x1f:
> + return TDX_CPUID_ALL_ALLOWED_MASK;
> + case 0x24:
> + if (index == 0 && reg == CPUID_EBX)
> + return GENMASK_U32(7, 0);
> + return 0;
> + case 0x80000008:
> + if (reg == CPUID_EAX)
> + return TDX_CPUID_ALL_ALLOWED_MASK;
> + return 0;
> + default:
> + return 0;
> + }
> +}