[PATCH 2/4] x86/virt/tdx: Advertise the CC_ATTR_HOST_MEM_INCOHERENT for TDX host

From: Huang, Kai
Date: Wed Jan 31 2024 - 06:32:34 EST


From: Kai Huang <kai.huang@xxxxxxxxx>

On the TDX capable platform, during kexec() the old kernel needs to
flush dirty cachelines of all TDX private memory otherwise they may
silently corrupt the new kernel's memory.

Advertise the new introduced CC_ATTR_HOST_MEM_INCOHERENT attribute for
TDX host platform so the cache will be flushed during kexec().

Note theoretically cache flush is only needed when TDX module is
initialized, but the module initialization is done at runtime so just
advertise the CC attribute when the platform has TDX enabled.

Signed-off-by: Kai Huang <kai.huang@xxxxxxxxx>
Reviewed-by: Kirill A. Shutemov <kirill.shutemov@xxxxxxxxxxxxxxx>
Reviewed-by: Chao Gao <chao.gao@xxxxxxxxx>
---
arch/x86/Kconfig | 1 +
arch/x86/coco/core.c | 21 ++++++++++++++++++++-
arch/x86/virt/vmx/tdx/tdx.c | 3 +++
include/linux/cc_platform.h | 3 ++-
4 files changed, 26 insertions(+), 2 deletions(-)

diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 502986237cb6..ac3b32149a77 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -1975,6 +1975,7 @@ config INTEL_TDX_HOST
depends on CONTIG_ALLOC
depends on !KEXEC_CORE
depends on X86_MCE
+ select ARCH_HAS_CC_PLATFORM
help
Intel Trust Domain Extensions (TDX) protects guest VMs from malicious
host and certain physical attacks. This option enables necessary TDX
diff --git a/arch/x86/coco/core.c b/arch/x86/coco/core.c
index 8d6d727e6e18..ecb15852b69d 100644
--- a/arch/x86/coco/core.c
+++ b/arch/x86/coco/core.c
@@ -12,11 +12,12 @@

#include <asm/coco.h>
#include <asm/processor.h>
+#include <asm/cpufeature.h>

enum cc_vendor cc_vendor __ro_after_init = CC_VENDOR_NONE;
static u64 cc_mask __ro_after_init;

-static bool noinstr intel_cc_platform_has(enum cc_attr attr)
+static bool noinstr intel_cc_platform_guest_has(enum cc_attr attr)
{
switch (attr) {
case CC_ATTR_GUEST_UNROLL_STRING_IO:
@@ -29,6 +30,24 @@ static bool noinstr intel_cc_platform_has(enum cc_attr attr)
}
}

+static bool noinstr intel_cc_platform_host_has(enum cc_attr attr)
+{
+ switch (attr) {
+ case CC_ATTR_HOST_MEM_INCOHERENT:
+ return true;
+ default:
+ return false;
+ }
+}
+
+static bool noinstr intel_cc_platform_has(enum cc_attr attr)
+{
+ if (boot_cpu_has(X86_FEATURE_TDX_HOST_PLATFORM))
+ return intel_cc_platform_host_has(attr);
+
+ return intel_cc_platform_guest_has(attr);
+}
+
/*
* Handle the SEV-SNP vTOM case where sme_me_mask is zero, and
* the other levels of SME/SEV functionality, including C-bit
diff --git a/arch/x86/virt/vmx/tdx/tdx.c b/arch/x86/virt/vmx/tdx/tdx.c
index 4d6826a76f78..9f1fed458a32 100644
--- a/arch/x86/virt/vmx/tdx/tdx.c
+++ b/arch/x86/virt/vmx/tdx/tdx.c
@@ -37,6 +37,7 @@
#include <asm/intel-family.h>
#include <asm/processor.h>
#include <asm/mce.h>
+#include <asm/coco.h>
#include "tdx.h"

static u32 tdx_global_keyid __ro_after_init;
@@ -1488,5 +1489,7 @@ void __init tdx_init(void)

setup_force_cpu_cap(X86_FEATURE_TDX_HOST_PLATFORM);

+ cc_vendor = CC_VENDOR_INTEL;
+
check_tdx_erratum();
}
diff --git a/include/linux/cc_platform.h b/include/linux/cc_platform.h
index 2f7273596102..654777d64dc0 100644
--- a/include/linux/cc_platform.h
+++ b/include/linux/cc_platform.h
@@ -53,7 +53,8 @@ enum cc_attr {
* Use this in places where the cache coherency of the memory matters
* but the encryption status does not.
*
- * Includes all systems that set CC_ATTR_HOST_MEM_ENCRYPT.
+ * Includes all systems that set CC_ATTR_HOST_MEM_ENCRYPT, but
+ * additionally adds TDX hosts.
*/
CC_ATTR_HOST_MEM_INCOHERENT,

--
2.34.1