[PATCH hyperv-next v2 0/4] Confidential VMBus
Roman Kisel
romank at linux.microsoft.com
Sun May 11 16:07:54 PDT 2025
The guests running on Hyper-V can be confidential where the memory and the
register content are encrypted, provided that the hardware supports that
(currently support AMD SEV-SNP and Intel TDX is implemented) and the guest
is capable of using these features. The confidential guests cannot be
introspected by the host nor the hypervisor without the guest sharing the
memory contents upon doing which the memory is decrypted.
In the confidential guests, neither the host nor the hypervisor need to be
trusted, and the guests processing sensitive data can take advantage of that.
Not trusting the host and the hypervisor (removing them from the Trusted
Computing Base aka TCB) ncessitates that the method of communication
between the host and the guest be changed. Below there is the breakdown of
the options used in the both cases (in the diagrams below the server is
marked as S, the client is marked as C):
1. Without the paravisoor the devices are connected to the host, and the
host provides the device emulation or translation to the guest:
+---- GUEST ----+ +----- DEVICE ----+ +----- HOST -----+
| | | | | |
| | | | | |
| | | ========== |
| | | | | |
| | | | | |
| | | | | |
+----- C -------+ +-----------------+ +------- S ------+
|| ||
|| ||
+------||------------------ VMBus --------------------------||------+
| Interrupts, MMIO |
+-------------------------------------------------------------------+
2. With the paravisor, the devices are connected to the paravisor, and
the paravisor provides the device emulation or translation to the guest.
The guest doesn't communicate with the host directly, and the guest
communicates with the paravisor via the VMBus. The host is not trusted
in this model, and the paravisor is trusted:
+---- GUEST ------+ +-- DEVICE --+
| | | |
| +- PARAVISOR -+ | | |
| | ==+==================================== |
| | OpenHCL | | | |
| | | C===================== | |
+-+---- C - S --+-+ || +------------+
|| || ||
|| || +-- VMBus Relay --||--+ +--- HOST ---+
|| ||======= Interrupts, MMIO | | |
|| +---------------------+ +---- S -----+
|| ||
+-------||----------------- VMBus --------------------------||------+
| Interrupts, MMIO |
+-------------------------------------------------------------------+
Note that in the second case the guest doesn't need to share the memory
with the host as it communicates only with the paravisor within their
partition boundary. That is precisely the raison d'etre and the value
proposition of this patch series: equip the confidential guest to use
private (encrypted) memory and rely on the paravisor when this is
available to be more secure.
I'd like to thank the following people for their help with this
patch series:
* Dexuan for help with validation and the fruitful discussions,
* Easwar for reviewing the refactoring of the page allocating and
freeing in `hv.c`,
* John and Sven for the design,
* Mike for helping to avoid pitfalls when dealing with the GFP flags,
* Sven for blazing the trail and implementing the design in few
codebases.
I made sure to validate the patch series on
{TrustedLaunch(x86_64), OpenHCL} x
{SNP(x86_64), TDX(x86_64), No hardware isolation, No paravisor} x
{VMBus 5.0, VMBus 6.0} x
{arm64, x86_64}.
[V2]
- The patch series is rebased on top of the latest hyperv-next branch.
- Better wording in the commit messages and the Documentation.
**Thank you, Alok and Wei!**
- Removed the patches 5 and 6 concerning turning bounce buffering off from
the previous version of the patch series as they were found to be
architecturally unsound. The value proposition of the patch series is not
diminished by this removal: these patches were an optimization and only for
the storage (for the simplicity sake) but not for the network. These changes
might be proposed in the future again after revolving the issues.
** Thanks you, Christoph, Dexuan, Dan, Michael, James, Robin! **
[V1] https://lore.kernel.org/linux-hyperv/20250409000835.285105-1-romank@linux.microsoft.com/
Roman Kisel (4):
Documentation: hyperv: Confidential VMBus
drivers: hyperv: VMBus protocol version 6.0
arch: hyperv: Get/set SynIC synth.registers via paravisor
arch: x86, drivers: hyperv: Enable confidential VMBus
Documentation/virt/hyperv/vmbus.rst | 41 +++
arch/arm64/hyperv/mshyperv.c | 19 ++
arch/arm64/include/asm/mshyperv.h | 3 +
arch/x86/include/asm/mshyperv.h | 3 +
arch/x86/kernel/cpu/mshyperv.c | 51 ++-
drivers/hv/channel.c | 36 ++-
drivers/hv/channel_mgmt.c | 29 +-
drivers/hv/connection.c | 10 +-
drivers/hv/hv.c | 485 ++++++++++++++++++++--------
drivers/hv/hyperv_vmbus.h | 9 +-
drivers/hv/ring_buffer.c | 5 +-
drivers/hv/vmbus_drv.c | 152 +++++----
include/asm-generic/mshyperv.h | 1 +
include/linux/hyperv.h | 71 ++--
14 files changed, 677 insertions(+), 238 deletions(-)
base-commit: 9b0844d87b1407681b78130429f798beb366f43f
--
2.43.0
More information about the linux-arm-kernel
mailing list