Intel® Software Guard Extensions (Intel® SGX)
Discussion board focused on hardware-based isolation and memory encryption to provide extended code protection in solutions.

large enclaves

Rohit_S_
Beginner
662 Views

From what I see, Intel SGX SDK 1.9 (Linux) supports large enclaves of size upto several GB.
I am curious about the implementation and its guarantees.

Since the EPC is much smaller (few MB), does the driver / OS get page faulted whenever the enclave accesses a page that is not currently loaded in EPC?
In that case, the OS fetches the accessed page from disk, decrypts it, and uses ELD instruction to load the new page in the EPC?
However, for this to be secure, the OS should not be trusted for managing page tables corresponding to non-EPC memory.
Can I get details on how large enclaves are supported?

 

0 Kudos
2 Replies
Rohit_S_
Beginner
662 Views

Just to expand on that, my understanding of the memory access control was that the CPU checks on each memory access that the EPC page was accessed using the expected virtual address (because the OS can tamper with page tables). However, for large enclaves, mutiple virtual pages can map to the same EPC page. What does the CPU need to check?

0 Kudos
Hoang_N_Intel
Employee
662 Views

Rohit,

Here is more technical detail that you can look at:

According to SGX Developer Reference for v1.9 at 

https://download.01.org/intel-sgx/linux-1.9/docs/Intel_SGX_SDK_Developer_Reference_Linux_1.9_Open_Source.pdf

On Page 4:
Intel(R) Software Guard Extensions technology has a hard limit on the protected
memory size, typically 64 MB or 128 MB. As a result, the number of active
enclaves (in memory) is limited. Depending on the memory footprint of
each enclave, use cases suggest that 5-20 enclaves can reside in memory simultaneously.

The secure implementation of handling page cache swapping in and out memory is at

https://github.com/01org/linux-sgx-driver/blob/master/isgx_page_cache.c

Here is the prolog in that file for allocating the available EPC page

/**
 
 * sgx_alloc_page - allocate an EPC page
 
 * @flags: allocation flags
 
 *
 
 * Try to grab a page from the free EPC page list. If there is a free page
 
 * available, it is returned to the caller. If called with SGX_ALLOC_ATOMIC,
 
 * the function will return immediately if the list is empty. Otherwise, it
 
 * will swap pages up until there is a free page available. Before returning
 
 * the low watermark is checked and ksgxswapd is waken up if we are below it.
 
 *
 
 * Return: an EPC page or a system error code
 
 */
 
And there is a maximum of 512 slots available defined in SGX.H at
 
#define SGX_VA_SLOT_COUNT 512
 
struct sgx_va_page 
{
 
  struct sgx_epc_page *epc_page;
 
  DECLARE_BITMAP(slots, SGX_VA_SLOT_COUNT);
 
  struct list_head list;
 
};

 

 

0 Kudos
Reply