On 2019-03-20 11:30, Xing, Cedric wrote:
+/**
+ * __vdso_sgx_enter_enclave() - Enter an SGX enclave
+ *
+ * %eax:        ENCLU leaf, must be EENTER or ERESUME
+ * %rbx:        TCS, must be non-NULL
+ * %rcx:        Optional pointer to 'struct sgx_enclave_exception'
+ *
+ * Return:
+ *  0 on a clean entry/exit to/from the enclave
+ *  -EINVAL if ENCLU leaf is not allowed or if TCS is NULL
+ *  -EFAULT if ENCLU or the enclave faults
+ *
+ * Note that __vdso_sgx_enter_enclave() is not compliant with the x86-
64 ABI.
+ * All registers except RSP must be treated as volatile from the
+caller's
+ * perspective, including but not limited to GPRs, EFLAGS.DF, MXCSR,
FCW, etc...
+ * Conversely, the enclave being run must preserve the untrusted RSP
and stack.

By requiring preservation of RSP at both AEX and EEXIT, this precludes the 
possibility of using the untrusted stack as temporary storage by enclaves. 
While that looks reasonable at first glance, I'm afraid it isn't the case in 
reality. The untrusted stack is inarguably the most convenient way for data 
exchange between an enclave and its enclosing process, and is in fact being 
used for that purpose by almost all existing enclaves to date. Given the 
expectation that this API will be used by all future SGX application, it looks 
unwise to ban the most convenient and commonly used approach for data exchange.

For reference, here's the code in the Intel toolchain responsible for this: https://github.com/intel/linux-sgx/blob/6a0b5ac71f8d16f04e0376f3b2168e80c773dd23/sdk/trts/trts.cpp#L125-L140

Regarding "almost all existing enclaves to date", enclaves built with the Fortanix toolchain don't touch the untrusted stack.

--
Jethro Beekman | Fortanix

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature

Reply via email to