On Mon, 13 Sep 2021 09:11:53 -0400 Paolo Bonzini wrote: > Windows expects all pages to be in uninitialized state on startup. > Add a ioctl that does this with EREMOVE, so that userspace can bring > the pages back to this state also when resetting the VM. > Pure userspace implementations, such as closing and reopening the device, > are racy. > > Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx> > --- > arch/x86/include/uapi/asm/sgx.h | 2 ++ > arch/x86/kernel/cpu/sgx/virt.c | 36 +++++++++++++++++++++++++++++++++ > 2 files changed, 38 insertions(+) > > diff --git a/arch/x86/include/uapi/asm/sgx.h b/arch/x86/include/uapi/asm/sgx.h > index 9690d6899ad9..f79d84ce8033 100644 > --- a/arch/x86/include/uapi/asm/sgx.h > +++ b/arch/x86/include/uapi/asm/sgx.h > @@ -27,6 +27,8 @@ enum sgx_page_flags { > _IOW(SGX_MAGIC, 0x02, struct sgx_enclave_init) > #define SGX_IOC_ENCLAVE_PROVISION \ > _IOW(SGX_MAGIC, 0x03, struct sgx_enclave_provision) > +#define SGX_IOC_VEPC_REMOVE \ > + _IO(SGX_MAGIC, 0x04) Perhaps SGX_IOC_VEPC_RESET is better than REMOVE, since this ioctl doesn't actually remove any EPC page from virtual EPC device, but just reset to a clean slate (by using EREMOVE).