lkml.org 
[lkml]   [2021]   [Apr]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Subject[PATCH Part1 RFC v2 00/20] Add AMD Secure Nested Paging (SEV-SNP) Guest Support
Date
This part of Secure Encrypted Paging (SEV-SNP) series focuses on the changes
required in a guest OS for SEV-SNP support.

SEV-SNP builds upon existing SEV and SEV-ES functionality while adding
new hardware-based memory protections. SEV-SNP adds strong memory integrity
protection to help prevent malicious hypervisor-based attacks like data
replay, memory re-mapping and more in order to create an isolated memory
encryption environment.

This series provides the basic building blocks to support booting the SEV-SNP
VMs, it does not cover all the security enhancement introduced by the SEV-SNP
such as interrupt protection.

Many of the integrity guarantees of SEV-SNP are enforced through a new
structure called the Reverse Map Table (RMP). Adding a new page to SEV-SNP
VM requires a 2-step process. First, the hypervisor assigns a page to the
guest using the new RMPUPDATE instruction. This transitions the page to
guest-invalid. Second, the guest validates the page using the new PVALIDATE
instruction. The SEV-SNP VMs can use the new "Page State Change Request NAE"
defined in the GHCB specification to ask hypervisor to add or remove page
from the RMP table.

Each page assigned to the SEV-SNP VM can either be validated or unvalidated,
as indicated by the Validated flag in the page's RMP entry. There are two
approaches that can be taken for the page validation: Pre-validation and
Lazy Validation.

Under pre-validation, the pages are validated prior to first use. And under
lazy validation, pages are validated when first accessed. An access to a
unvalidated page results in a #VC exception, at which time the exception
handler may validate the page. Lazy validation requires careful tracking of
the validated pages to avoid validating the same GPA more than once. The
recently introduced "Unaccepted" memory type can be used to communicate the
unvalidated memory ranges to the Guest OS.

At this time we only sypport the pre-validation, the OVMF guest BIOS
validates the entire RAM before the control is handed over to the guest kernel.
The early_set_memory_{encrypt,decrypt} and set_memory_{encrypt,decrypt} are
enlightened to perform the page validation or invalidation while setting or
clearing the encryption attribute from the page table.

This series does not provide support for the following SEV-SNP features yet:

* Extended Guest request
* CPUID filtering
* AP bring up using the new SEV-SNP NAE
* Lazy validation
* Interrupt security

The series is based on tip/master commit
- 24b57391e410 (origin/master, origin/HEAD) Merge branch 'core/rcu'
- plus, cleanup series https://marc.info/?l=kvm&m=161952223830444&w=2

Additional resources
---------------------
SEV-SNP whitepaper
https://www.amd.com/system/files/TechDocs/SEV-SNP-strengthening-vm-isolation-with-integrity-protection-and-more.pdf

APM 2: https://www.amd.com/system/files/TechDocs/24593.pdf
(section 15.36)

GHCB spec:
https://developer.amd.com/wp-content/resources/56421.pdf

SEV-SNP firmware specification:
https://developer.amd.com/sev/

Change since v1:
* Integerate the SNP support in sev.{ch}.
* Add support to query the hypervisor feature and detect whether SNP is supported.
* Define Linux specific reason code for the SNP guest termination.
* Extend the setup_header provide a way for hypervisor to pass secret and cpuid page.
* Add support to create a platform device and driver to query the attestation report
and the derive a key.
* Multiple cleanup and fixes to address Boris's review fedback.

Brijesh Singh (20):
x86/sev: Define the GHCB MSR protocol for AP reset hold
x86/sev: Save the negotiated GHCB version
x86/sev: Add support for hypervisor feature VMGEXIT
x86/sev: Increase the GHCB protocol version
x86/sev: Define SNP Page State Change VMGEXIT structure
x86/sev: Define SNP guest request NAE events
x86/sev: Define error codes for reason set 1.
x86/mm: Add sev_snp_active() helper
x86/sev: check SEV-SNP features support
x86/sev: Add a helper for the PVALIDATE instruction
x86/compressed: Add helper for validating pages in the decompression
stage
x86/compressed: Register GHCB memory when SEV-SNP is active
x86/sev: Register GHCB memory when SEV-SNP is active
x86/sev: Add helper for validating pages in early enc attribute
changes
x86/kernel: Make the bss.decrypted section shared in RMP table
x86/kernel: Validate rom memory before accessing when SEV-SNP is
active
x86/mm: Add support to validate memory when changing C-bit
x86/boot: Add Confidential Computing address to setup_header
x86/sev: Register SNP guest request platform device
virt: Add SEV-SNP guest driver

Documentation/x86/boot.rst | 26 ++
arch/x86/boot/compressed/ident_map_64.c | 17 +
arch/x86/boot/compressed/sev.c | 81 ++++-
arch/x86/boot/compressed/sev.h | 25 ++
arch/x86/boot/header.S | 7 +-
arch/x86/include/asm/mem_encrypt.h | 2 +
arch/x86/include/asm/msr-index.h | 2 +
arch/x86/include/asm/sev-common.h | 86 +++++
arch/x86/include/asm/sev.h | 47 ++-
arch/x86/include/uapi/asm/bootparam.h | 1 +
arch/x86/include/uapi/asm/svm.h | 8 +
arch/x86/kernel/head64.c | 7 +
arch/x86/kernel/probe_roms.c | 13 +-
arch/x86/kernel/sev-shared.c | 72 +++-
arch/x86/kernel/sev.c | 354 +++++++++++++++++-
arch/x86/mm/mem_encrypt.c | 52 ++-
arch/x86/mm/pat/set_memory.c | 15 +
arch/x86/platform/efi/efi.c | 2 +
drivers/virt/Kconfig | 3 +
drivers/virt/Makefile | 1 +
drivers/virt/snp-guest/Kconfig | 10 +
drivers/virt/snp-guest/Makefile | 2 +
drivers/virt/snp-guest/snp-guest.c | 455 ++++++++++++++++++++++++
include/linux/efi.h | 1 +
include/linux/snp-guest.h | 124 +++++++
include/uapi/linux/snp-guest.h | 50 +++
26 files changed, 1446 insertions(+), 17 deletions(-)
create mode 100644 arch/x86/boot/compressed/sev.h
create mode 100644 drivers/virt/snp-guest/Kconfig
create mode 100644 drivers/virt/snp-guest/Makefile
create mode 100644 drivers/virt/snp-guest/snp-guest.c
create mode 100644 include/linux/snp-guest.h
create mode 100644 include/uapi/linux/snp-guest.h

--
2.17.1

\
 
 \ /
  Last update: 2021-04-30 14:17    [W:0.287 / U:1.696 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site