qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Liam Merwick via <qemu-devel@nongnu.org>
To: Pankaj Gupta <pankaj.gupta@amd.com>,
	"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Cc: "brijesh.singh@amd.com" <brijesh.singh@amd.com>,
	"dovmurik@linux.ibm.com" <dovmurik@linux.ibm.com>,
	"armbru@redhat.com" <armbru@redhat.com>,
	"michael.roth@amd.com" <michael.roth@amd.com>,
	"xiaoyao.li@intel.com" <xiaoyao.li@intel.com>,
	"pbonzini@redhat.com" <pbonzini@redhat.com>,
	"thomas.lendacky@amd.com" <thomas.lendacky@amd.com>,
	"isaku.yamahata@intel.com" <isaku.yamahata@intel.com>,
	"berrange@redhat.com" <berrange@redhat.com>,
	"kvm@vger.kernel.org" <kvm@vger.kernel.org>,
	"anisinha@redhat.com" <anisinha@redhat.com>,
	Liam Merwick <liam.merwick@oracle.com>
Subject: Re: [PATCH v4 18/31] hw/i386/sev: Add function to get SEV metadata from OVMF header
Date: Fri, 31 May 2024 15:19:39 +0000	[thread overview]
Message-ID: <792b99d5-9d18-42f4-a9f4-5621e2ae6a70@oracle.com> (raw)
In-Reply-To: <20240530111643.1091816-19-pankaj.gupta@amd.com>

On 30/05/2024 12:16, Pankaj Gupta wrote:
> From: Brijesh Singh <brijesh.singh@amd.com>
> 
> A recent version of OVMF expanded the reset vector GUID list to add
> SEV-specific metadata GUID. The SEV metadata describes the reserved
> memory regions such as the secrets and CPUID page used during the SEV-SNP
> guest launch.
> 
> The pc_system_get_ovmf_sev_metadata_ptr() is used to retieve the SEV

typo: retieve


> metadata pointer from the OVMF GUID list.
> 
> Signed-off-by: Brijesh Singh <brijesh.singh@amd.com>
> Signed-off-by: Michael Roth <michael.roth@amd.com>
> Signed-off-by: Pankaj Gupta <pankaj.gupta@amd.com>
> ---
>   hw/i386/pc_sysfw.c   |  4 ++++
>   include/hw/i386/pc.h | 26 ++++++++++++++++++++++++++
>   target/i386/sev.c    | 31 +++++++++++++++++++++++++++++++
>   target/i386/sev.h    |  2 ++
>   4 files changed, 63 insertions(+)
> 
> diff --git a/hw/i386/pc_sysfw.c b/hw/i386/pc_sysfw.c
> index ac88ad4eb9..048d0919c1 100644
> --- a/hw/i386/pc_sysfw.c
> +++ b/hw/i386/pc_sysfw.c
> @@ -260,6 +260,10 @@ void x86_firmware_configure(void *ptr, int size)
>       pc_system_parse_ovmf_flash(ptr, size);
>   
>       if (sev_enabled()) {
> +
> +        /* Copy the SEV metadata table (if exist) */

Maybe s/exist/it exists/


> +        pc_system_parse_sev_metadata(ptr, size);
> +
>           ret = sev_es_save_reset_vector(ptr, size);
>           if (ret) {
>               error_report("failed to locate and/or save reset vector");
> diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h
> index ad9c3d9ba8..c653b8eeb2 100644
> --- a/include/hw/i386/pc.h
> +++ b/include/hw/i386/pc.h
> @@ -164,6 +164,32 @@ void pc_acpi_smi_interrupt(void *opaque, int irq, int level);
>   #define PCI_HOST_ABOVE_4G_MEM_SIZE     "above-4g-mem-size"
>   #define PCI_HOST_PROP_SMM_RANGES       "smm-ranges"
>   
> +typedef enum {
> +    SEV_DESC_TYPE_UNDEF,
> +    /* The section contains the region that must be validated by the VMM. */
> +    SEV_DESC_TYPE_SNP_SEC_MEM,
> +    /* The section contains the SNP secrets page */
> +    SEV_DESC_TYPE_SNP_SECRETS,
> +    /* The section contains address that can be used as a CPUID page */
> +    SEV_DESC_TYPE_CPUID,
> +
> +} ovmf_sev_metadata_desc_type;
> +
> +typedef struct __attribute__((__packed__)) OvmfSevMetadataDesc {
> +    uint32_t base;
> +    uint32_t len;
> +    ovmf_sev_metadata_desc_type type;
> +} OvmfSevMetadataDesc;
> +
> +typedef struct __attribute__((__packed__)) OvmfSevMetadata {
> +    uint8_t signature[4];
> +    uint32_t len;
> +    uint32_t version;
> +    uint32_t num_desc;
> +    OvmfSevMetadataDesc descs[];
> +} OvmfSevMetadata;
> +
> +OvmfSevMetadata *pc_system_get_ovmf_sev_metadata_ptr(void);
>   
>   void pc_pci_as_mapping_init(MemoryRegion *system_memory,
>                               MemoryRegion *pci_address_space);
> diff --git a/target/i386/sev.c b/target/i386/sev.c
> index 2ca9a86bf3..d9d1d97f0c 100644
> --- a/target/i386/sev.c
> +++ b/target/i386/sev.c
> @@ -611,6 +611,37 @@ SevCapability *qmp_query_sev_capabilities(Error **errp)
>       return sev_get_capabilities(errp);
>   }
>   
> +static OvmfSevMetadata *ovmf_sev_metadata_table;
> +
> +#define OVMF_SEV_META_DATA_GUID "dc886566-984a-4798-A75e-5585a7bf67cc"
> +typedef struct __attribute__((__packed__)) OvmfSevMetadataOffset {
> +    uint32_t offset;
> +} OvmfSevMetadataOffset;
> +
> +OvmfSevMetadata *pc_system_get_ovmf_sev_metadata_ptr(void)
> +{
> +    return ovmf_sev_metadata_table;
> +}
> +
> +void pc_system_parse_sev_metadata(uint8_t *flash_ptr, size_t flash_size)
> +{
> +    OvmfSevMetadata     *metadata;
> +    OvmfSevMetadataOffset  *data;
> +
> +    if (!pc_system_ovmf_table_find(OVMF_SEV_META_DATA_GUID, (uint8_t **)&data,
> +                                   NULL)) {
> +        return;
> +    }
> +
> +    metadata = (OvmfSevMetadata *)(flash_ptr + flash_size - data->offset);
> +    if (memcmp(metadata->signature, "ASEV", 4) != 0) {
> +        return;
> +    }
> +
> +    ovmf_sev_metadata_table = g_malloc(metadata->len);

There should be a bounds check on metadata->len before using it.


> +    memcpy(ovmf_sev_metadata_table, metadata, metadata->len);
> +}
> +
>   static SevAttestationReport *sev_get_attestation_report(const char *mnonce,
>                                                           Error **errp)
>   {
> diff --git a/target/i386/sev.h b/target/i386/sev.h
> index 5dc4767b1e..cc12824dd6 100644
> --- a/target/i386/sev.h
> +++ b/target/i386/sev.h
> @@ -66,4 +66,6 @@ int sev_inject_launch_secret(const char *hdr, const char *secret,
>   int sev_es_save_reset_vector(void *flash_ptr, uint64_t flash_size);
>   void sev_es_set_reset_vector(CPUState *cpu);
>   
> +void pc_system_parse_sev_metadata(uint8_t *flash_ptr, size_t flash_size);
> +
>   #endif



  reply	other threads:[~2024-05-31 15:20 UTC|newest]

Thread overview: 73+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-30 11:16 [PATCH v4 00/31] Add AMD Secure Nested Paging (SEV-SNP) support Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 01/31] i386/sev: Replace error_report with error_setg Pankaj Gupta
2024-06-03 11:57   ` Daniel P. Berrangé
2024-05-30 11:16 ` [PATCH v4 02/31] linux-headers: Update to current kvm/next Pankaj Gupta
2024-05-31 14:38   ` Liam Merwick via
2024-05-31 15:37     ` Paolo Bonzini
2024-05-30 11:16 ` [PATCH v4 03/31] memory: Introduce memory_region_init_ram_guest_memfd() Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 04/31] i386/sev: Introduce "sev-common" type to encapsulate common SEV state Pankaj Gupta
2024-05-31 11:03   ` Paolo Bonzini
2024-05-30 11:16 ` [PATCH v4 05/31] i386/sev: Move sev_launch_update to separate class method Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 06/31] i386/sev: Move sev_launch_finish " Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 07/31] i386/sev: Introduce 'sev-snp-guest' object Pankaj Gupta
2024-05-31 11:06   ` Paolo Bonzini
2024-06-03 12:02   ` Daniel P. Berrangé
2024-06-03 17:48     ` Paolo Bonzini
2024-05-30 11:16 ` [PATCH v4 08/31] i386/sev: Add a sev_snp_enabled() helper Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 09/31] i386/sev: Add sev_kvm_init() override for SEV class Pankaj Gupta
2024-05-31 11:06   ` Paolo Bonzini
2024-05-30 11:16 ` [PATCH v4 10/31] i386/sev: Add snp_kvm_init() override for SNP class Pankaj Gupta
2024-05-31 11:07   ` Paolo Bonzini
2024-05-30 11:16 ` [PATCH v4 11/31] i386/cpu: Set SEV-SNP CPUID bit when SNP enabled Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 12/31] i386/sev: Don't return launch measurements for SEV-SNP guests Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 13/31] i386/sev: Add a class method to determine KVM VM type for SNP guests Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 14/31] i386/sev: Update query-sev QAPI format to handle SEV-SNP Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 15/31] i386/sev: Add the SNP launch start context Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 16/31] i386/sev: Add handling to encrypt/finalize guest launch data Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 17/31] i386/sev: Set CPU state to protected once SNP guest payload is finalized Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 18/31] hw/i386/sev: Add function to get SEV metadata from OVMF header Pankaj Gupta
2024-05-31 15:19   ` Liam Merwick via [this message]
2024-05-31 15:41     ` Paolo Bonzini
2024-05-31 16:41       ` Liam Merwick via
2024-05-30 11:16 ` [PATCH v4 19/31] i386/sev: Add support for populating OVMF metadata pages Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 20/31] i386/sev: Add support for SNP CPUID validation Pankaj Gupta
2024-07-02  3:07   ` Xiaoyao Li
2024-07-04  0:34     ` Michael Roth
2024-07-04  4:09       ` Xiaoyao Li
2024-07-04  5:31         ` Paolo Bonzini
2024-05-30 11:16 ` [PATCH v4 21/31] i386/sev: Extract build_kernel_loader_hashes Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 22/31] i386/sev: Reorder struct declarations Pankaj Gupta
2024-05-31 11:12   ` Paolo Bonzini
2024-05-30 11:16 ` [PATCH v4 23/31] i386/sev: Allow measured direct kernel boot on SNP Pankaj Gupta
2024-05-31 11:14   ` Paolo Bonzini
2024-05-30 11:16 ` [PATCH v4 24/31] hw/i386/sev: Add support to encrypt BIOS when SEV-SNP is enabled Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 25/31] i386/sev: Invoke launch_updata_data() for SEV class Pankaj Gupta
2024-05-31 11:10   ` Paolo Bonzini
2024-05-30 11:16 ` [PATCH v4 26/31] i386/sev: Invoke launch_updata_data() for SNP class Pankaj Gupta
2024-05-30 11:16 ` [PATCH v4 27/31] hw/i386/sev: Use guest_memfd for legacy ROMs Pankaj Gupta
2024-05-31 11:27   ` Paolo Bonzini
2024-06-14  8:58   ` Xiaoyao Li
2024-06-14 10:02     ` Gupta, Pankaj
2024-05-30 11:16 ` [PATCH v4 28/31] hw/i386: Add support for loading BIOS using guest_memfd Pankaj Gupta
2024-05-31 11:22   ` Paolo Bonzini
2024-06-14  8:34   ` Xiaoyao Li
2024-06-14  8:48     ` Gupta, Pankaj
2024-06-14  9:03       ` Xiaoyao Li
2024-05-30 11:16 ` [PATCH v4 29/31] hw/i386/sev: Allow use of pflash in conjunction with -bios Pankaj Gupta
2024-05-31 12:33   ` Paolo Bonzini
2024-06-03 11:55   ` Daniel P. Berrangé
2024-06-03 13:38     ` Paolo Bonzini
2024-06-04  9:03       ` Hoffmann, Gerd
2024-06-03 14:27     ` Michael Roth via
2024-06-03 14:31       ` Paolo Bonzini
2024-06-03 16:31         ` Michael Roth
2024-05-30 11:16 ` [PATCH v4 30/31] i386/kvm: Add KVM_EXIT_HYPERCALL handling for KVM_HC_MAP_GPA_RANGE Pankaj Gupta
2024-07-04  8:53   ` Binbin Wu
2024-05-30 11:16 ` [PATCH v4 31/31] i386/sev: Enable KVM_HC_MAP_GPA_RANGE hcall for SNP guests Pankaj Gupta
2024-05-31 11:20 ` [PATCH v4 00/31] Add AMD Secure Nested Paging (SEV-SNP) support Paolo Bonzini
2024-05-31 17:34   ` Paolo Bonzini
2024-05-31 17:40     ` Gupta, Pankaj
2024-05-31 17:53       ` Paolo Bonzini
2024-06-01  4:57         ` Gupta, Pankaj
2024-06-03 14:15           ` Michael Roth
2024-06-03 14:22             ` Paolo Bonzini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=792b99d5-9d18-42f4-a9f4-5621e2ae6a70@oracle.com \
    --to=qemu-devel@nongnu.org \
    --cc=anisinha@redhat.com \
    --cc=armbru@redhat.com \
    --cc=berrange@redhat.com \
    --cc=brijesh.singh@amd.com \
    --cc=dovmurik@linux.ibm.com \
    --cc=isaku.yamahata@intel.com \
    --cc=kvm@vger.kernel.org \
    --cc=liam.merwick@oracle.com \
    --cc=michael.roth@amd.com \
    --cc=pankaj.gupta@amd.com \
    --cc=pbonzini@redhat.com \
    --cc=thomas.lendacky@amd.com \
    --cc=xiaoyao.li@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).