]> Git Repo - linux.git/commitdiff
x86/cpufeatures: Add flag to track whether MSR IA32_FEAT_CTL is configured
authorSean Christopherson <[email protected]>
Sat, 21 Dec 2019 04:45:07 +0000 (20:45 -0800)
committerBorislav Petkov <[email protected]>
Mon, 13 Jan 2020 17:49:00 +0000 (18:49 +0100)
Add a new feature flag, X86_FEATURE_MSR_IA32_FEAT_CTL, to track whether
IA32_FEAT_CTL has been initialized.  This will allow KVM, and any future
subsystems that depend on IA32_FEAT_CTL, to rely purely on cpufeatures
to query platform support, e.g. allows a future patch to remove KVM's
manual IA32_FEAT_CTL MSR checks.

Various features (on platforms that support IA32_FEAT_CTL) are dependent
on IA32_FEAT_CTL being configured and locked, e.g. VMX and LMCE.  The
MSR is always configured during boot, but only if the CPU vendor is
recognized by the kernel.  Because CPUID doesn't incorporate the current
IA32_FEAT_CTL value in its reporting of relevant features, it's possible
for a feature to be reported as supported in cpufeatures but not truly
enabled, e.g. if the CPU supports VMX but the kernel doesn't recognize
the CPU.

As a result, without the flag, KVM would see VMX as supported even if
IA32_FEAT_CTL hasn't been initialized, and so would need to manually
read the MSR and check the various enabling bits to avoid taking an
unexpected #GP on VMXON.

Signed-off-by: Sean Christopherson <[email protected]>
Signed-off-by: Borislav Petkov <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
arch/x86/include/asm/cpufeatures.h
arch/x86/kernel/cpu/feat_ctl.c

index e9b62498fe75a3f3fce3692678e5ff28bbb28880..67d21b25ff788ae94e528fece7a4a7498ad7c27f 100644 (file)
 #define X86_FEATURE_ZEN                        ( 7*32+28) /* "" CPU is AMD family 0x17 (Zen) */
 #define X86_FEATURE_L1TF_PTEINV                ( 7*32+29) /* "" L1TF workaround PTE inversion */
 #define X86_FEATURE_IBRS_ENHANCED      ( 7*32+30) /* Enhanced IBRS */
+#define X86_FEATURE_MSR_IA32_FEAT_CTL  ( 7*32+31) /* "" MSR IA32_FEAT_CTL configured */
 
 /* Virtualization flags: Linux defined, word 8 */
 #define X86_FEATURE_TPR_SHADOW         ( 8*32+ 0) /* Intel TPR Shadow */
index fcbb35533cefda5cd45dffd279fd94f0be582106..24a4fdc1ab51de9c826450007ecc7d2e514dbf26 100644 (file)
@@ -126,6 +126,8 @@ void init_ia32_feat_ctl(struct cpuinfo_x86 *c)
        wrmsrl(MSR_IA32_FEAT_CTL, msr);
 
 update_caps:
+       set_cpu_cap(c, X86_FEATURE_MSR_IA32_FEAT_CTL);
+
        if (!cpu_has(c, X86_FEATURE_VMX))
                return;
 
This page took 0.059905 seconds and 4 git commands to generate.