lkml.org 
[lkml]   [2021]   [Dec]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v8 33/40] x86/compressed/64: add identity mapping for Confidential Computing blob
    Date
    From: Michael Roth <michael.roth@amd.com>

    The run-time kernel will need to access the Confidential Computing
    blob very early in boot to access the CPUID table it points to. At
    that stage of boot it will be relying on the identity-mapped page table
    set up by boot/compressed kernel, so make sure the blob and the CPUID
    table it points to are mapped in advance.

    Signed-off-by: Michael Roth <michael.roth@amd.com>
    Signed-off-by: Brijesh Singh <brijesh.singh@amd.com>
    ---
    arch/x86/boot/compressed/ident_map_64.c | 26 ++++++++++++++++++++++++-
    arch/x86/boot/compressed/misc.h | 4 ++++
    arch/x86/boot/compressed/sev.c | 2 +-
    3 files changed, 30 insertions(+), 2 deletions(-)

    diff --git a/arch/x86/boot/compressed/ident_map_64.c b/arch/x86/boot/compressed/ident_map_64.c
    index ef77453cc629..2a99b3274ec2 100644
    --- a/arch/x86/boot/compressed/ident_map_64.c
    +++ b/arch/x86/boot/compressed/ident_map_64.c
    @@ -37,6 +37,8 @@
    #include <asm/setup.h> /* For COMMAND_LINE_SIZE */
    #undef _SETUP

    +#include <asm/sev.h> /* For ConfidentialComputing blob */
    +
    extern unsigned long get_cmd_line_ptr(void);

    /* Used by PAGE_KERN* macros: */
    @@ -106,6 +108,27 @@ static void add_identity_map(unsigned long start, unsigned long end)
    error("Error: kernel_ident_mapping_init() failed\n");
    }

    +static void sev_prep_identity_maps(void)
    +{
    + /*
    + * The ConfidentialComputing blob is used very early in uncompressed
    + * kernel to find the in-memory cpuid table to handle cpuid
    + * instructions. Make sure an identity-mapping exists so it can be
    + * accessed after switchover.
    + */
    + if (sev_snp_enabled()) {
    + struct cc_blob_sev_info *cc_info =
    + (void *)(unsigned long)boot_params->cc_blob_address;
    +
    + add_identity_map((unsigned long)cc_info,
    + (unsigned long)cc_info + sizeof(*cc_info));
    + add_identity_map((unsigned long)cc_info->cpuid_phys,
    + (unsigned long)cc_info->cpuid_phys + cc_info->cpuid_len);
    + }
    +
    + sev_verify_cbit(top_level_pgt);
    +}
    +
    /* Locates and clears a region for a new top level page table. */
    void initialize_identity_maps(void *rmode)
    {
    @@ -163,8 +186,9 @@ void initialize_identity_maps(void *rmode)
    cmdline = get_cmd_line_ptr();
    add_identity_map(cmdline, cmdline + COMMAND_LINE_SIZE);

    + sev_prep_identity_maps();
    +
    /* Load the new page-table. */
    - sev_verify_cbit(top_level_pgt);
    write_cr3(top_level_pgt);
    }

    diff --git a/arch/x86/boot/compressed/misc.h b/arch/x86/boot/compressed/misc.h
    index e9fde1482fbe..4b02bf5c8582 100644
    --- a/arch/x86/boot/compressed/misc.h
    +++ b/arch/x86/boot/compressed/misc.h
    @@ -127,6 +127,8 @@ void sev_es_shutdown_ghcb(void);
    extern bool sev_es_check_ghcb_fault(unsigned long address);
    void snp_set_page_private(unsigned long paddr);
    void snp_set_page_shared(unsigned long paddr);
    +bool sev_snp_enabled(void);
    +
    #else
    static inline void sev_enable(struct boot_params *bp) { }
    static inline void sev_es_shutdown_ghcb(void) { }
    @@ -136,6 +138,8 @@ static inline bool sev_es_check_ghcb_fault(unsigned long address)
    }
    static inline void snp_set_page_private(unsigned long paddr) { }
    static inline void snp_set_page_shared(unsigned long paddr) { }
    +static inline bool sev_snp_enabled(void) { return false; }
    +
    #endif

    /* acpi.c */
    diff --git a/arch/x86/boot/compressed/sev.c b/arch/x86/boot/compressed/sev.c
    index 29dfb34b5907..c2bf99522e5e 100644
    --- a/arch/x86/boot/compressed/sev.c
    +++ b/arch/x86/boot/compressed/sev.c
    @@ -120,7 +120,7 @@ static enum es_result vc_read_mem(struct es_em_ctxt *ctxt,
    /* Include code for early handlers */
    #include "../../kernel/sev-shared.c"

    -static inline bool sev_snp_enabled(void)
    +bool sev_snp_enabled(void)
    {
    return sev_status & MSR_AMD64_SEV_SNP_ENABLED;
    }
    --
    2.25.1
    \
     
     \ /
      Last update: 2021-12-10 16:47    [W:4.029 / U:0.076 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site