[RFC PATCH 00/12] x86/Hyper-V: Add Hyper-V Isolation VM support

From: Tianyu Lan
Date: Sun Feb 28 2021 - 10:06:11 EST


From: Tianyu Lan <Tianyu.Lan@xxxxxxxxxxxxx>

Hyper-V provides two kinds of Isolation VMs. VBS(Virtualization-based
security) and AMD SEV-SNP unenlightened Isolation VMs. This patchset
is to add support for these Isolation VM support in Linux.

The memory of these vms are encrypted and host can't access guest
memory directly. Hyper-V provides new host visibility hvcall and
the guest needs to call new hvcall to mark memory visible to host
before sharing memory with host. For security, all network/storage
stack memory should not be shared with host and so there is bounce
buffer requests.

Vmbus channel ring buffer already plays bounce buffer role because
all data from/to host needs to copy from/to between the ring buffer
and IO stack memory. So mark vmbus channel ring buffer visible.

There are two exceptions - packets sent by vmbus_sendpacket_
pagebuffer() and vmbus_sendpacket_mpb_desc(). These packets
contains IO stack memory address and host will access these memory.
So add allocation bounce buffer support in vmbus for these packets.

For SNP isolation VM, guest needs to access the shared memory via
extra address space which is specified by Hyper-V CPUID HYPERV_CPUID_
ISOLATION_CONFIG. The access physical address of the shared memory
should be bounce buffer memory GPA plus with shared_gpa_boundary
reported by CPUID.

Tianyu Lan (12):
x86/Hyper-V: Add visibility parameter for vmbus_establish_gpadl()
x86/Hyper-V: Add new hvcall guest address host visibility support
x86/HV: Initialize GHCB page and shared memory boundary
HV: Add Write/Read MSR registers via ghcb
HV: Add ghcb hvcall support for SNP VM
HV/Vmbus: Add SNP support for VMbus channel initiate message
hv/vmbus: Initialize VMbus ring buffer for Isolation VM
x86/Hyper-V: Initialize bounce buffer page cache and list
x86/Hyper-V: Add new parameter for
vmbus_sendpacket_pagebuffer()/mpb_desc()
HV: Add bounce buffer support for Isolation VM
HV/Netvsc: Add Isolation VM support for netvsc driver
HV/Storvsc: Add bounce buffer support for Storvsc

arch/x86/hyperv/Makefile | 2 +-
arch/x86/hyperv/hv_init.c | 70 +++-
arch/x86/hyperv/ivm.c | 257 ++++++++++++
arch/x86/include/asm/hyperv-tlfs.h | 22 +
arch/x86/include/asm/mshyperv.h | 26 +-
arch/x86/kernel/cpu/mshyperv.c | 2 +
drivers/hv/Makefile | 2 +-
drivers/hv/channel.c | 103 ++++-
drivers/hv/channel_mgmt.c | 30 +-
drivers/hv/connection.c | 68 +++-
drivers/hv/hv.c | 196 ++++++---
drivers/hv/hv_bounce.c | 619 +++++++++++++++++++++++++++++
drivers/hv/hyperv_vmbus.h | 42 ++
drivers/hv/ring_buffer.c | 83 +++-
drivers/net/hyperv/hyperv_net.h | 5 +
drivers/net/hyperv/netvsc.c | 111 +++++-
drivers/scsi/storvsc_drv.c | 46 ++-
drivers/uio/uio_hv_generic.c | 13 +-
include/asm-generic/hyperv-tlfs.h | 1 +
include/asm-generic/mshyperv.h | 24 +-
include/linux/hyperv.h | 46 ++-
mm/ioremap.c | 1 +
mm/vmalloc.c | 1 +
23 files changed, 1614 insertions(+), 156 deletions(-)
create mode 100644 arch/x86/hyperv/ivm.c
create mode 100644 drivers/hv/hv_bounce.c

--
2.25.1