summaryrefslogtreecommitdiff
path: root/arch/x86/kvm
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2018-07-13 16:23:17 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-08-15 18:14:49 +0200
commit31282cf43b9d4fd950d8879af081771c0ff04f5f (patch)
treecc274a1f527446525bc99dcf73f1a1f365414ac7 /arch/x86/kvm
parent80e55b5ea4e9dbc049594bf357b1a9b0347bb584 (diff)
x86/kvm: Drop L1TF MSR list approach
commit 2f055947ae5e2741fb2dc5bba1033c417ccf4faa upstream The VMX module parameter to control the L1D flush should become writeable. The MSR list is set up at VM init per guest VCPU, but the run time switching is based on a static key which is global. Toggling the MSR list at run time might be feasible, but for now drop this optimization and use the regular MSR write to make run-time switching possible. The default mitigation is the conditional flush anyway, so for extra paranoid setups this will add some small overhead, but the extra code executed is in the noise compared to the flush itself. Aside of that the EPT disabled case is not handled correctly at the moment and the MSR list magic is in the way for fixing that as well. If it's really providing a significant advantage, then this needs to be revisited after the code is correct and the control is writable. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Tested-by: Jiri Kosina <jkosina@suse.cz> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Reviewed-by: Josh Poimboeuf <jpoimboe@redhat.com> Link: https://lkml.kernel.org/r/20180713142322.516940445@linutronix.de Signed-off-by: David Woodhouse <dwmw@amazon.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r--arch/x86/kvm/vmx.c43
1 files changed, 7 insertions, 36 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index 8aa245cafdd3..8155a4d545a4 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -5263,16 +5263,6 @@ static void ept_set_mmio_spte_mask(void)
kvm_mmu_set_mmio_spte_mask((0x3ull << 62) | 0x6ull);
}
-static bool vmx_l1d_use_msr_save_list(void)
-{
- if (!enable_ept || !boot_cpu_has_bug(X86_BUG_L1TF) ||
- static_cpu_has(X86_FEATURE_HYPERVISOR) ||
- !static_cpu_has(X86_FEATURE_FLUSH_L1D))
- return false;
-
- return vmentry_l1d_flush == VMENTER_L1D_FLUSH_ALWAYS;
-}
-
#define VMX_XSS_EXIT_BITMAP 0
/*
* Sets up the vmcs for emulated real mode.
@@ -5622,12 +5612,6 @@ static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
GUEST_INTR_STATE_NMI);
}
- /*
- * If flushing the L1D cache on every VMENTER is enforced and the
- * MSR is available, use the MSR save list.
- */
- if (vmx_l1d_use_msr_save_list())
- add_atomic_switch_msr(vmx, MSR_IA32_FLUSH_CMD, L1D_FLUSH, 0, true);
}
static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
@@ -8591,26 +8575,14 @@ static void vmx_l1d_flush(struct kvm_vcpu *vcpu)
bool always;
/*
- * This code is only executed when:
- * - the flush mode is 'cond'
- * - the flush mode is 'always' and the flush MSR is not
- * available
- *
- * If the CPU has the flush MSR then clear the flush bit because
- * 'always' mode is handled via the MSR save list.
- *
- * If the MSR is not avaibable then act depending on the mitigation
- * mode: If 'flush always', keep the flush bit set, otherwise clear
- * it.
+ * This code is only executed when the the flush mode is 'cond' or
+ * 'always'
*
- * The flush bit gets set again either from vcpu_run() or from one
- * of the unsafe VMEXIT handlers.
+ * If 'flush always', keep the flush bit set, otherwise clear
+ * it. The flush bit gets set again either from vcpu_run() or from
+ * one of the unsafe VMEXIT handlers.
*/
- if (static_cpu_has(X86_FEATURE_FLUSH_L1D))
- always = false;
- else
- always = vmentry_l1d_flush == VMENTER_L1D_FLUSH_ALWAYS;
-
+ always = vmentry_l1d_flush == VMENTER_L1D_FLUSH_ALWAYS;
vcpu->arch.l1tf_flush_l1d = always;
vcpu->stat.l1d_flush++;
@@ -11689,8 +11661,7 @@ static int __init vmx_setup_l1d_flush(void)
l1tf_vmx_mitigation = vmentry_l1d_flush;
- if (vmentry_l1d_flush == VMENTER_L1D_FLUSH_NEVER ||
- vmx_l1d_use_msr_save_list())
+ if (vmentry_l1d_flush == VMENTER_L1D_FLUSH_NEVER)
return 0;
if (!boot_cpu_has(X86_FEATURE_FLUSH_L1D)) {