234 lines
7.9 KiB
Diff
234 lines
7.9 KiB
Diff
From 58e6218a7d4b00316cf4ccd6a394190169a4cc61 Mon Sep 17 00:00:00 2001
|
|
From: Paolo Bonzini <pbonzini@redhat.com>
|
|
Date: Fri, 18 Jul 2025 18:03:48 +0200
|
|
Subject: [PATCH 080/115] i386/tdx: Fetch and validate CPUID of TD guest
|
|
|
|
RH-Author: Paolo Bonzini <pbonzini@redhat.com>
|
|
RH-MergeRequest: 391: TDX support, including attestation and device assignment
|
|
RH-Jira: RHEL-15710 RHEL-20798 RHEL-49728
|
|
RH-Acked-by: Yash Mankad <None>
|
|
RH-Acked-by: Peter Xu <peterx@redhat.com>
|
|
RH-Acked-by: David Hildenbrand <david@redhat.com>
|
|
RH-Commit: [80/115] c2ba91b28a4d0191fb186aea069733b81ab56e0f (bonzini/rhel-qemu-kvm)
|
|
|
|
Use KVM_TDX_GET_CPUID to get the CPUIDs that are managed and enfored
|
|
by TDX module for TD guest. Check QEMU's configuration against the
|
|
fetched data.
|
|
|
|
Print wanring message when 1. a feature is not supported but requested
|
|
by QEMU or 2. QEMU doesn't want to expose a feature while it is enforced
|
|
enabled.
|
|
|
|
- If cpu->enforced_cpuid is not set, prints the warning message of both
|
|
1) and 2) and tweak QEMU's configuration.
|
|
|
|
- If cpu->enforced_cpuid is set, quit if any case of 1) or 2).
|
|
|
|
Signed-off-by: Xiaoyao Li <xiaoyao.li@intel.com>
|
|
Link: https://lore.kernel.org/r/20250508150002.689633-52-xiaoyao.li@intel.com
|
|
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
(cherry picked from commit e3d1a4a6d1d61cf5fbd0e4b389cfb3976093739f)
|
|
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
---
|
|
target/i386/cpu.c | 33 +++++++++++++-
|
|
target/i386/cpu.h | 7 +++
|
|
target/i386/kvm/tdx.c | 101 ++++++++++++++++++++++++++++++++++++++++++
|
|
3 files changed, 139 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
|
|
index cd6d9e8c1c..433d0a0418 100644
|
|
--- a/target/i386/cpu.c
|
|
+++ b/target/i386/cpu.c
|
|
@@ -5937,8 +5937,8 @@ static bool x86_cpu_have_filtered_features(X86CPU *cpu)
|
|
return false;
|
|
}
|
|
|
|
-static void mark_unavailable_features(X86CPU *cpu, FeatureWord w, uint64_t mask,
|
|
- const char *verbose_prefix)
|
|
+void mark_unavailable_features(X86CPU *cpu, FeatureWord w, uint64_t mask,
|
|
+ const char *verbose_prefix)
|
|
{
|
|
CPUX86State *env = &cpu->env;
|
|
FeatureWordInfo *f = &feature_word_info[w];
|
|
@@ -5965,6 +5965,35 @@ static void mark_unavailable_features(X86CPU *cpu, FeatureWord w, uint64_t mask,
|
|
}
|
|
}
|
|
|
|
+void mark_forced_on_features(X86CPU *cpu, FeatureWord w, uint64_t mask,
|
|
+ const char *verbose_prefix)
|
|
+{
|
|
+ CPUX86State *env = &cpu->env;
|
|
+ FeatureWordInfo *f = &feature_word_info[w];
|
|
+ int i;
|
|
+
|
|
+ if (!cpu->force_features) {
|
|
+ env->features[w] |= mask;
|
|
+ }
|
|
+
|
|
+ cpu->forced_on_features[w] |= mask;
|
|
+
|
|
+ if (!verbose_prefix) {
|
|
+ return;
|
|
+ }
|
|
+
|
|
+ for (i = 0; i < 64; ++i) {
|
|
+ if ((1ULL << i) & mask) {
|
|
+ g_autofree char *feat_word_str = feature_word_description(f);
|
|
+ warn_report("%s: %s%s%s [bit %d]",
|
|
+ verbose_prefix,
|
|
+ feat_word_str,
|
|
+ f->feat_names[i] ? "." : "",
|
|
+ f->feat_names[i] ? f->feat_names[i] : "", i);
|
|
+ }
|
|
+ }
|
|
+}
|
|
+
|
|
static void x86_cpuid_version_get_family(Object *obj, Visitor *v,
|
|
const char *name, void *opaque,
|
|
Error **errp)
|
|
diff --git a/target/i386/cpu.h b/target/i386/cpu.h
|
|
index 19645eb6f8..2e73945b28 100644
|
|
--- a/target/i386/cpu.h
|
|
+++ b/target/i386/cpu.h
|
|
@@ -2144,6 +2144,9 @@ struct ArchCPU {
|
|
/* Features that were filtered out because of missing host capabilities */
|
|
FeatureWordArray filtered_features;
|
|
|
|
+ /* Features that are forced enabled by underlying hypervisor, e.g., TDX */
|
|
+ FeatureWordArray forced_on_features;
|
|
+
|
|
/* Enable PMU CPUID bits. This can't be enabled by default yet because
|
|
* it doesn't have ABI stability guarantees, as it passes all PMU CPUID
|
|
* bits returned by GET_SUPPORTED_CPUID (that depend on host CPU and kernel
|
|
@@ -2455,6 +2458,10 @@ void host_cpuid(uint32_t function, uint32_t count,
|
|
uint32_t *eax, uint32_t *ebx, uint32_t *ecx, uint32_t *edx);
|
|
bool cpu_has_x2apic_feature(CPUX86State *env);
|
|
bool is_feature_word_cpuid(uint32_t feature, uint32_t index, int reg);
|
|
+void mark_unavailable_features(X86CPU *cpu, FeatureWord w, uint64_t mask,
|
|
+ const char *verbose_prefix);
|
|
+void mark_forced_on_features(X86CPU *cpu, FeatureWord w, uint64_t mask,
|
|
+ const char *verbose_prefix);
|
|
|
|
static inline bool x86_has_cpuid_0x1f(X86CPU *cpu)
|
|
{
|
|
diff --git a/target/i386/kvm/tdx.c b/target/i386/kvm/tdx.c
|
|
index 32e03caf43..01fff9a27a 100644
|
|
--- a/target/i386/kvm/tdx.c
|
|
+++ b/target/i386/kvm/tdx.c
|
|
@@ -766,6 +766,106 @@ static uint32_t tdx_adjust_cpuid_features(X86ConfidentialGuest *cg,
|
|
return value;
|
|
}
|
|
|
|
+static struct kvm_cpuid2 *tdx_fetch_cpuid(CPUState *cpu, int *ret)
|
|
+{
|
|
+ struct kvm_cpuid2 *fetch_cpuid;
|
|
+ int size = KVM_MAX_CPUID_ENTRIES;
|
|
+ Error *local_err = NULL;
|
|
+ int r;
|
|
+
|
|
+ do {
|
|
+ error_free(local_err);
|
|
+ local_err = NULL;
|
|
+
|
|
+ fetch_cpuid = g_malloc0(sizeof(*fetch_cpuid) +
|
|
+ sizeof(struct kvm_cpuid_entry2) * size);
|
|
+ fetch_cpuid->nent = size;
|
|
+ r = tdx_vcpu_ioctl(cpu, KVM_TDX_GET_CPUID, 0, fetch_cpuid, &local_err);
|
|
+ if (r == -E2BIG) {
|
|
+ g_free(fetch_cpuid);
|
|
+ size = fetch_cpuid->nent;
|
|
+ }
|
|
+ } while (r == -E2BIG);
|
|
+
|
|
+ if (r < 0) {
|
|
+ error_report_err(local_err);
|
|
+ *ret = r;
|
|
+ return NULL;
|
|
+ }
|
|
+
|
|
+ return fetch_cpuid;
|
|
+}
|
|
+
|
|
+static int tdx_check_features(X86ConfidentialGuest *cg, CPUState *cs)
|
|
+{
|
|
+ uint64_t actual, requested, unavailable, forced_on;
|
|
+ g_autofree struct kvm_cpuid2 *fetch_cpuid;
|
|
+ const char *forced_on_prefix = NULL;
|
|
+ const char *unav_prefix = NULL;
|
|
+ struct kvm_cpuid_entry2 *entry;
|
|
+ X86CPU *cpu = X86_CPU(cs);
|
|
+ CPUX86State *env = &cpu->env;
|
|
+ FeatureWordInfo *wi;
|
|
+ FeatureWord w;
|
|
+ bool mismatch = false;
|
|
+ int r;
|
|
+
|
|
+ fetch_cpuid = tdx_fetch_cpuid(cs, &r);
|
|
+ if (!fetch_cpuid) {
|
|
+ return r;
|
|
+ }
|
|
+
|
|
+ if (cpu->check_cpuid || cpu->enforce_cpuid) {
|
|
+ unav_prefix = "TDX doesn't support requested feature";
|
|
+ forced_on_prefix = "TDX forcibly sets the feature";
|
|
+ }
|
|
+
|
|
+ for (w = 0; w < FEATURE_WORDS; w++) {
|
|
+ wi = &feature_word_info[w];
|
|
+ actual = 0;
|
|
+
|
|
+ switch (wi->type) {
|
|
+ case CPUID_FEATURE_WORD:
|
|
+ entry = cpuid_find_entry(fetch_cpuid, wi->cpuid.eax, wi->cpuid.ecx);
|
|
+ if (!entry) {
|
|
+ /*
|
|
+ * If KVM doesn't report it means it's totally configurable
|
|
+ * by QEMU
|
|
+ */
|
|
+ continue;
|
|
+ }
|
|
+
|
|
+ actual = cpuid_entry_get_reg(entry, wi->cpuid.reg);
|
|
+ break;
|
|
+ case MSR_FEATURE_WORD:
|
|
+ /*
|
|
+ * TODO:
|
|
+ * validate MSR features when KVM has interface report them.
|
|
+ */
|
|
+ continue;
|
|
+ }
|
|
+
|
|
+ requested = env->features[w];
|
|
+ unavailable = requested & ~actual;
|
|
+ mark_unavailable_features(cpu, w, unavailable, unav_prefix);
|
|
+ if (unavailable) {
|
|
+ mismatch = true;
|
|
+ }
|
|
+
|
|
+ forced_on = actual & ~requested;
|
|
+ mark_forced_on_features(cpu, w, forced_on, forced_on_prefix);
|
|
+ if (forced_on) {
|
|
+ mismatch = true;
|
|
+ }
|
|
+ }
|
|
+
|
|
+ if (cpu->enforce_cpuid && mismatch) {
|
|
+ return -EINVAL;
|
|
+ }
|
|
+
|
|
+ return 0;
|
|
+}
|
|
+
|
|
static int tdx_validate_attributes(TdxGuest *tdx, Error **errp)
|
|
{
|
|
if ((tdx->attributes & ~tdx_caps->supported_attrs)) {
|
|
@@ -1161,4 +1261,5 @@ static void tdx_guest_class_init(ObjectClass *oc, void *data)
|
|
x86_klass->kvm_type = tdx_kvm_type;
|
|
x86_klass->cpu_instance_init = tdx_cpu_instance_init;
|
|
x86_klass->adjust_cpuid_features = tdx_adjust_cpuid_features;
|
|
+ x86_klass->check_features = tdx_check_features;
|
|
}
|
|
--
|
|
2.50.1
|
|
|