qemu-e2k/accel/stubs
David Gibson aacdb84413 sev: Remove false abstraction of flash encryption
When AMD's SEV memory encryption is in use, flash memory banks (which are
initialed by pc_system_flash_map()) need to be encrypted with the guest's
key, so that the guest can read them.

That's abstracted via the kvm_memcrypt_encrypt_data() callback in the KVM
state.. except, that it doesn't really abstract much at all.

For starters, the only call site is in code specific to the 'pc'
family of machine types, so it's obviously specific to those and to
x86 to begin with.  But it makes a bunch of further assumptions that
need not be true about an arbitrary confidential guest system based on
memory encryption, let alone one based on other mechanisms:

 * it assumes that the flash memory is defined to be encrypted with the
   guest key, rather than being shared with hypervisor
 * it assumes that that hypervisor has some mechanism to encrypt data into
   the guest, even though it can't decrypt it out, since that's the whole
   point
 * the interface assumes that this encrypt can be done in place, which
   implies that the hypervisor can write into a confidential guests's
   memory, even if what it writes isn't meaningful

So really, this "abstraction" is actually pretty specific to the way SEV
works.  So, this patch removes it and instead has the PC flash
initialization code call into a SEV specific callback.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
2021-02-08 16:57:38 +11:00
..
hax-stub.c accel/stubs: drop unused cpu.h include 2020-11-16 11:07:56 +00:00
kvm-stub.c sev: Remove false abstraction of flash encryption 2021-02-08 16:57:38 +11:00
meson.build whpx: remove whpx specific functions from global includes 2020-10-05 16:41:22 +02:00
tcg-stub.c accel/tcg: Declare missing cpu_loop_exit*() stubs 2021-01-23 12:12:59 -10:00
xen-stub.c qapi: Restrict Xen migration commands to migration.json 2020-10-21 05:00:44 +02:00