265 lines
8.4 KiB
Diff
265 lines
8.4 KiB
Diff
From 2e545a2564bcece4b3f1e2baa18e93d81a94b20d Mon Sep 17 00:00:00 2001
|
|
From: Paolo Bonzini <pbonzini@redhat.com>
|
|
Date: Fri, 18 Jul 2025 18:03:46 +0200
|
|
Subject: [PATCH 052/115] i386/tdx: Setup the TD HOB list
|
|
|
|
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: [52/115] 789ad8477ccd49c1977e874d30963ebf9ac7f8b3 (bonzini/rhel-qemu-kvm)
|
|
|
|
The TD HOB list is used to pass the information from VMM to TDVF. The TD
|
|
HOB must include PHIT HOB and Resource Descriptor HOB. More details can
|
|
be found in TDVF specification and PI specification.
|
|
|
|
Build the TD HOB in TDX's machine_init_done callback.
|
|
|
|
Co-developed-by: Isaku Yamahata <isaku.yamahata@intel.com>
|
|
Signed-off-by: Isaku Yamahata <isaku.yamahata@intel.com>
|
|
Co-developed-by: Sean Christopherson <sean.j.christopherson@intel.com>
|
|
Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com>
|
|
Signed-off-by: Xiaoyao Li <xiaoyao.li@intel.com>
|
|
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
|
|
Link: https://lore.kernel.org/r/20250508150002.689633-24-xiaoyao.li@intel.com
|
|
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
(cherry picked from commit a731425980a4d3f8bb96fc41893b6437672875ee)
|
|
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
---
|
|
hw/i386/meson.build | 2 +-
|
|
hw/i386/tdvf-hob.c | 130 ++++++++++++++++++++++++++++++++++++++++++
|
|
hw/i386/tdvf-hob.h | 26 +++++++++
|
|
target/i386/kvm/tdx.c | 16 ++++++
|
|
4 files changed, 173 insertions(+), 1 deletion(-)
|
|
create mode 100644 hw/i386/tdvf-hob.c
|
|
create mode 100644 hw/i386/tdvf-hob.h
|
|
|
|
diff --git a/hw/i386/meson.build b/hw/i386/meson.build
|
|
index d6d8023664..cbac982039 100644
|
|
--- a/hw/i386/meson.build
|
|
+++ b/hw/i386/meson.build
|
|
@@ -31,7 +31,7 @@ i386_ss.add(when: 'CONFIG_PC', if_true: files(
|
|
'port92.c'))
|
|
i386_ss.add(when: 'CONFIG_X86_FW_OVMF', if_true: files('pc_sysfw_ovmf.c'),
|
|
if_false: files('pc_sysfw_ovmf-stubs.c'))
|
|
-i386_ss.add(when: 'CONFIG_TDX', if_true: files('tdvf.c'))
|
|
+i386_ss.add(when: 'CONFIG_TDX', if_true: files('tdvf.c', 'tdvf-hob.c'))
|
|
|
|
subdir('kvm')
|
|
subdir('xen')
|
|
diff --git a/hw/i386/tdvf-hob.c b/hw/i386/tdvf-hob.c
|
|
new file mode 100644
|
|
index 0000000000..782b3d1578
|
|
--- /dev/null
|
|
+++ b/hw/i386/tdvf-hob.c
|
|
@@ -0,0 +1,130 @@
|
|
+/*
|
|
+ * Copyright (c) 2025 Intel Corporation
|
|
+ * Author: Isaku Yamahata <isaku.yamahata at gmail.com>
|
|
+ * <isaku.yamahata at intel.com>
|
|
+ * Xiaoyao Li <xiaoyao.li@intel.com>
|
|
+ *
|
|
+ * SPDX-License-Identifier: GPL-2.0-or-later
|
|
+ */
|
|
+
|
|
+#include "qemu/osdep.h"
|
|
+#include "qemu/error-report.h"
|
|
+#include "standard-headers/uefi/uefi.h"
|
|
+#include "hw/pci/pcie_host.h"
|
|
+#include "tdvf-hob.h"
|
|
+
|
|
+typedef struct TdvfHob {
|
|
+ hwaddr hob_addr;
|
|
+ void *ptr;
|
|
+ int size;
|
|
+
|
|
+ /* working area */
|
|
+ void *current;
|
|
+ void *end;
|
|
+} TdvfHob;
|
|
+
|
|
+static uint64_t tdvf_current_guest_addr(const TdvfHob *hob)
|
|
+{
|
|
+ return hob->hob_addr + (hob->current - hob->ptr);
|
|
+}
|
|
+
|
|
+static void tdvf_align(TdvfHob *hob, size_t align)
|
|
+{
|
|
+ hob->current = QEMU_ALIGN_PTR_UP(hob->current, align);
|
|
+}
|
|
+
|
|
+static void *tdvf_get_area(TdvfHob *hob, uint64_t size)
|
|
+{
|
|
+ void *ret;
|
|
+
|
|
+ if (hob->current + size > hob->end) {
|
|
+ error_report("TD_HOB overrun, size = 0x%" PRIx64, size);
|
|
+ exit(1);
|
|
+ }
|
|
+
|
|
+ ret = hob->current;
|
|
+ hob->current += size;
|
|
+ tdvf_align(hob, 8);
|
|
+ return ret;
|
|
+}
|
|
+
|
|
+static void tdvf_hob_add_memory_resources(TdxGuest *tdx, TdvfHob *hob)
|
|
+{
|
|
+ EFI_HOB_RESOURCE_DESCRIPTOR *region;
|
|
+ EFI_RESOURCE_ATTRIBUTE_TYPE attr;
|
|
+ EFI_RESOURCE_TYPE resource_type;
|
|
+
|
|
+ TdxRamEntry *e;
|
|
+ int i;
|
|
+
|
|
+ for (i = 0; i < tdx->nr_ram_entries; i++) {
|
|
+ e = &tdx->ram_entries[i];
|
|
+
|
|
+ if (e->type == TDX_RAM_UNACCEPTED) {
|
|
+ resource_type = EFI_RESOURCE_MEMORY_UNACCEPTED;
|
|
+ attr = EFI_RESOURCE_ATTRIBUTE_TDVF_UNACCEPTED;
|
|
+ } else if (e->type == TDX_RAM_ADDED) {
|
|
+ resource_type = EFI_RESOURCE_SYSTEM_MEMORY;
|
|
+ attr = EFI_RESOURCE_ATTRIBUTE_TDVF_PRIVATE;
|
|
+ } else {
|
|
+ error_report("unknown TDX_RAM_ENTRY type %d", e->type);
|
|
+ exit(1);
|
|
+ }
|
|
+
|
|
+ region = tdvf_get_area(hob, sizeof(*region));
|
|
+ *region = (EFI_HOB_RESOURCE_DESCRIPTOR) {
|
|
+ .Header = {
|
|
+ .HobType = EFI_HOB_TYPE_RESOURCE_DESCRIPTOR,
|
|
+ .HobLength = cpu_to_le16(sizeof(*region)),
|
|
+ .Reserved = cpu_to_le32(0),
|
|
+ },
|
|
+ .Owner = EFI_HOB_OWNER_ZERO,
|
|
+ .ResourceType = cpu_to_le32(resource_type),
|
|
+ .ResourceAttribute = cpu_to_le32(attr),
|
|
+ .PhysicalStart = cpu_to_le64(e->address),
|
|
+ .ResourceLength = cpu_to_le64(e->length),
|
|
+ };
|
|
+ }
|
|
+}
|
|
+
|
|
+void tdvf_hob_create(TdxGuest *tdx, TdxFirmwareEntry *td_hob)
|
|
+{
|
|
+ TdvfHob hob = {
|
|
+ .hob_addr = td_hob->address,
|
|
+ .size = td_hob->size,
|
|
+ .ptr = td_hob->mem_ptr,
|
|
+
|
|
+ .current = td_hob->mem_ptr,
|
|
+ .end = td_hob->mem_ptr + td_hob->size,
|
|
+ };
|
|
+
|
|
+ EFI_HOB_GENERIC_HEADER *last_hob;
|
|
+ EFI_HOB_HANDOFF_INFO_TABLE *hit;
|
|
+
|
|
+ /* Note, Efi{Free}Memory{Bottom,Top} are ignored, leave 'em zeroed. */
|
|
+ hit = tdvf_get_area(&hob, sizeof(*hit));
|
|
+ *hit = (EFI_HOB_HANDOFF_INFO_TABLE) {
|
|
+ .Header = {
|
|
+ .HobType = EFI_HOB_TYPE_HANDOFF,
|
|
+ .HobLength = cpu_to_le16(sizeof(*hit)),
|
|
+ .Reserved = cpu_to_le32(0),
|
|
+ },
|
|
+ .Version = cpu_to_le32(EFI_HOB_HANDOFF_TABLE_VERSION),
|
|
+ .BootMode = cpu_to_le32(0),
|
|
+ .EfiMemoryTop = cpu_to_le64(0),
|
|
+ .EfiMemoryBottom = cpu_to_le64(0),
|
|
+ .EfiFreeMemoryTop = cpu_to_le64(0),
|
|
+ .EfiFreeMemoryBottom = cpu_to_le64(0),
|
|
+ .EfiEndOfHobList = cpu_to_le64(0), /* initialized later */
|
|
+ };
|
|
+
|
|
+ tdvf_hob_add_memory_resources(tdx, &hob);
|
|
+
|
|
+ last_hob = tdvf_get_area(&hob, sizeof(*last_hob));
|
|
+ *last_hob = (EFI_HOB_GENERIC_HEADER) {
|
|
+ .HobType = EFI_HOB_TYPE_END_OF_HOB_LIST,
|
|
+ .HobLength = cpu_to_le16(sizeof(*last_hob)),
|
|
+ .Reserved = cpu_to_le32(0),
|
|
+ };
|
|
+ hit->EfiEndOfHobList = tdvf_current_guest_addr(&hob);
|
|
+}
|
|
diff --git a/hw/i386/tdvf-hob.h b/hw/i386/tdvf-hob.h
|
|
new file mode 100644
|
|
index 0000000000..4fc6a3740a
|
|
--- /dev/null
|
|
+++ b/hw/i386/tdvf-hob.h
|
|
@@ -0,0 +1,26 @@
|
|
+/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
+
|
|
+#ifndef HW_I386_TD_HOB_H
|
|
+#define HW_I386_TD_HOB_H
|
|
+
|
|
+#include "hw/i386/tdvf.h"
|
|
+#include "target/i386/kvm/tdx.h"
|
|
+
|
|
+void tdvf_hob_create(TdxGuest *tdx, TdxFirmwareEntry *td_hob);
|
|
+
|
|
+#define EFI_RESOURCE_ATTRIBUTE_TDVF_PRIVATE \
|
|
+ (EFI_RESOURCE_ATTRIBUTE_PRESENT | \
|
|
+ EFI_RESOURCE_ATTRIBUTE_INITIALIZED | \
|
|
+ EFI_RESOURCE_ATTRIBUTE_TESTED)
|
|
+
|
|
+#define EFI_RESOURCE_ATTRIBUTE_TDVF_UNACCEPTED \
|
|
+ (EFI_RESOURCE_ATTRIBUTE_PRESENT | \
|
|
+ EFI_RESOURCE_ATTRIBUTE_INITIALIZED | \
|
|
+ EFI_RESOURCE_ATTRIBUTE_TESTED)
|
|
+
|
|
+#define EFI_RESOURCE_ATTRIBUTE_TDVF_MMIO \
|
|
+ (EFI_RESOURCE_ATTRIBUTE_PRESENT | \
|
|
+ EFI_RESOURCE_ATTRIBUTE_INITIALIZED | \
|
|
+ EFI_RESOURCE_ATTRIBUTE_UNCACHEABLE)
|
|
+
|
|
+#endif
|
|
diff --git a/target/i386/kvm/tdx.c b/target/i386/kvm/tdx.c
|
|
index d1c7821347..db5d58b600 100644
|
|
--- a/target/i386/kvm/tdx.c
|
|
+++ b/target/i386/kvm/tdx.c
|
|
@@ -21,6 +21,7 @@
|
|
#include "hw/i386/e820_memory_layout.h"
|
|
#include "hw/i386/tdvf.h"
|
|
#include "hw/i386/x86.h"
|
|
+#include "hw/i386/tdvf-hob.h"
|
|
#include "kvm_i386.h"
|
|
#include "tdx.h"
|
|
|
|
@@ -147,6 +148,19 @@ void tdx_set_tdvf_region(MemoryRegion *tdvf_mr)
|
|
tdx_guest->tdvf_mr = tdvf_mr;
|
|
}
|
|
|
|
+static TdxFirmwareEntry *tdx_get_hob_entry(TdxGuest *tdx)
|
|
+{
|
|
+ TdxFirmwareEntry *entry;
|
|
+
|
|
+ for_each_tdx_fw_entry(&tdx->tdvf, entry) {
|
|
+ if (entry->type == TDVF_SECTION_TYPE_TD_HOB) {
|
|
+ return entry;
|
|
+ }
|
|
+ }
|
|
+ error_report("TDVF metadata doesn't specify TD_HOB location.");
|
|
+ exit(1);
|
|
+}
|
|
+
|
|
static void tdx_add_ram_entry(uint64_t address, uint64_t length,
|
|
enum TdxRamType type)
|
|
{
|
|
@@ -281,6 +295,8 @@ static void tdx_finalize_vm(Notifier *notifier, void *unused)
|
|
|
|
qsort(tdx_guest->ram_entries, tdx_guest->nr_ram_entries,
|
|
sizeof(TdxRamEntry), &tdx_ram_entry_compare);
|
|
+
|
|
+ tdvf_hob_create(tdx_guest, tdx_get_hob_entry(tdx_guest));
|
|
}
|
|
|
|
static Notifier tdx_machine_done_notify = {
|
|
--
|
|
2.50.1
|
|
|