Re: [PATCH V2 16/32] x86/sgx: Support restricting of enclave page permissions

From: Reinette Chatre
Date: Thu Mar 17 2022 - 20:11:55 EST


Hi Jarkko,

On 3/17/2022 3:51 PM, Jarkko Sakkinen wrote:
> On Thu, Mar 17, 2022 at 03:08:04PM -0700, Reinette Chatre wrote:
>> Hi Jarkko,
>>
>> On 3/16/2022 9:30 PM, Jarkko Sakkinen wrote:
>>> On Mon, Mar 14, 2022 at 08:32:28AM -0700, Reinette Chatre wrote:
>>>> Hi Jarkko,
>>>>
>>>> On 3/13/2022 8:42 PM, Jarkko Sakkinen wrote:
>>>>> On Fri, Mar 11, 2022 at 11:28:27AM -0800, Reinette Chatre wrote:
>>>>>> Supporting permission restriction in an ioctl() enables the runtime to manage
>>>>>> the enclave memory without needing to map it.
>>>>>
>>>>> Which is opposite what you do in EAUG. You can also augment pages without
>>>>> needing the map them. Sure you get that capability, but it is quite useless
>>>>> in practice.
>>>>>
>>>>>> I have considered the idea of supporting the permission restriction with
>>>>>> mprotect() but as you can see in this response I did not find it to be
>>>>>> practical.
>>>>>
>>>>> Where is it practical? What is your application? How is it practical to
>>>>> delegate the concurrency management of a split mprotect() to user space?
>>>>> How do we get rid off a useless up-call to the host?
>>>>>
>>>>
>>>> The email you responded to contained many obstacles against using mprotect()
>>>> but you chose to ignore them and snipped them all from your response. Could
>>>> you please address the issues instead of dismissing them?
>>>
>>> I did read the whole email but did not see anything that would make a case
>>> for fully exposed EMODPR, or having asymmetrical towards how EAUG works.
>>
>> I believe that on its own each obstacle I shared with you is significant enough
>> to not follow that approach. You simply respond that I am just not making a
>> case without acknowledging any obstacle or providing a reason why the obstacles
>> are not valid.
>>
>> To help me understand your view, could you please respond to each of the
>> obstacles I list below and how it is not an issue?
>>
>>
>> 1) ABI change:
>> mprotect() is currently supported to modify VMA permissions
>> irrespective of EPCM permissions. Supporting EPCM permission
>> changes with mprotect() would change this behavior.
>> For example, currently it is possible to have RW enclave
>> memory and support multiple tasks accessing the memory. Two
>> tasks can map the memory RW and later one can run mprotect()
>> to reduce the VMA permissions to read-only without impacting
>> the access of the other task.
>> By moving EPCM permission changes to mprotect() this usage
>> will no longer be supported and current behavior will change.
>
> Your concurrency scenario is somewhat artificial. Obviously you need to
> synchronize somehow, and breaking something that could be done with one
> system call into two separates is not going to help with that. On the
> contrary, it will add a yet one more difficulty layer.

This is about supporting multiple threads in a single enclave, they can
all have their own memory mappings based on the needs. This is currently
supported in mainline as part of SGX1.

>
> mprotect() controls PTE permissions, not EPCM permissions. It is the corner
> stone to do any sort of confidential computing to have this division.
> That's why EACCEPT and EACCEPTCOPY exist.

Right, mprotect() controls PTE permissions but now you are requesting it
to control EPCM permissions also.

There is only one permission field in the mprotect() API so this implies
that you request VMA and EPCM permissions to be in sync. This is new
behavior - different from the current mainline behavior.

>
> There is no "current behaviour" yet because there is no mainline code, i.e.
> that is easy one to address.

What I described is the current behavior in mainline code. It is the
current SGX1 behavior. Running an environment as I described on a SGX2
system with the mprotect() behavior you propose will see new behavior
with some threads encountering page faults with SGX error
code when it could run without issue on SGX1 system.

I do consider this an ABI change. It should be addressed
before using mprotect() for EPCM permissions can be considered.

Please do provide your opinion about the ABI change.

>> 2) Only half EPCM permission management:
>> Moving to mprotect() as a way to set EPCM permissions is
>> not a clear interface for EPCM permission management because
>> the kernel can only restrict permissions. Even so, the kernel
>> has no insight into the current EPCM permissions and thus whether they
>> actually need to be restricted so every mprotect() call,
>> all except RWX, will need to be treated as a permission
>> restriction with all the implementation obstacles
>> that accompany it (more below).
>>
>> There are two possible ways to implement permission restriction
>> as triggered by mprotect(), (a) during the mprotect() call or
>> (b) during a subsequent #PF (as suggested by you), each has
>> its own obstacles.
>
> I would have prefered also for EAUG to bundle it unconditionally to mmap()
> flow. I've merely said that I don't care whether it is a part of mprotect()
> flow or in the #PF handler, as long as the feature is not uncontrolled
> chaos. Probably at least in mprotect() case it is easier flow to implement
> it directly as part of mprotect().
>
> Kernel is not the most trusted party in the confidential computing
> scenarios. It is one of the adversaries. And SGX is designed in the way
> that enclave controls EPCMD database and kernel PTEs. By trying to
> artificially limit this you don't bring security, other than trying to
> block implementing applications based on SGX2.

I do not follow your argument. How is implementing EPCM permission restriction
with an ioctl() limiting anything?

>
> We can ditch the whole SGX, if the point is that kernel controls what
> happens inside enclave. Normal VMAs are much more capable for that purpose,
> and kernel has full control over them with e.g. PTEs.
>
>>
>> 3) mprotect() implementation
>>
>> When the user calls mprotect() the expectation is that the
>> call will either succeed or fail. If the call fails the user
>> expects the system to be unchanged. This is not possible if
>> permission restriction is done as part of mprotect().
>>
>> (a) mprotect() may span multiple VMAs and involves VMA splits
>> that (from what I understand) cannot be undone. SGX memory
>> does not support VMA merges. If any SGX function
>> (EMODPR or ETRACK on any page) done after a VMA split fails
>> then the user will be left with fragmented memory.
>
> Oh well, SGX does not even support syscalls, if we go this level of
> arguments. And you are trying to sort this out with even more flakky
> interface, rather than stable EPCM reset to read state.

I did not find your answer on how to handle this obstacle. Are you
saying that leaving the user with fragmented memory and inconsistent
state is acceptable?

Could you please elaborate? I am trying to understand how to support
this permission restriction with mprotect() and I get stuck on the scenario
where VMAs need to be split - this has to be handled if we go this route.

If it is possible to integrate with mprotect() then I can do so but I
do not see how to do so yet and here I mention one issue and you
again just dismiss it. If we are not able to handle this then it is
indeed mprotect() that will be the "flakky interface" and we should
stick with the ioctl().


> I've been implementing this exact feature lately and only realistic way to
> do it without many corner cases is first use the current ioctl to reset the
> range to READ in EPCM, and with EMODPE set the appropriate permissions.

This is supported in the current implementation with the
SGX_IOC_ENCLAVE_RESTRICT_PERMISSIONS ioctl().

>
>
>> (b) The EMODPR/ETRACK pair can fail on any of the pages provided
>> by the mprotect() call. If there is a failure then the
>> kernel cannot undo previously executed EMODPR since the kernel
>> cannot run EMODPE. The EPCM permissions are thus left in inconsistent
>> state since some of the pages would have changed EPCM permissions
>> and mprotect() does not have mechanism to communicate
>> partial success.
>> The partial success is needed to communicate to user space
>> (i) which pages need EACCEPT, (ii) which pages need to be
>> in new request (although user space does not have information
>> to help the new request succeed - see below).
>
> It's true but how common is that?

The kernel needs to handle all scenarios, whether it is common or not.

> Return e.g. -EIO, and run-time will
> re-build the enclave. That anyway happens all the time with SGX for
> various reasons (e.g. VM migration, S3 and whatnot). It's only important
> that you know when this happens.

Please confirm: you support a user space implementation using mprotect()
that can leave the system in inconsistent state?


>> (c) User space runtime has control over management of EPC memory
>> and accurate failure information would help it to do so.
>> Knowing the error code of the EMODPR failure would help
>> user space to take appropriate action. For example, EMODPR
>> can return "SGX_PAGE_NOT_MODIFIABLE" that helps the runtime
>> to learn that it needs to run EACCEPT on that page before
>> the EMODPR can succeed. Alternatively, if it learns that the
>> return is "SGX_EPC_PAGE_CONFLICT" then it could determine
>> that some other part of the runtime attempted an ENCLU
>> function on that page.
>> It is not possible to provide such detailed errors to user
>> space with mprotect().
>
> Actually user space run-time is also an adversary. Kernel and user
> space can e.g. kill the enclave or limit it with PTEs but EPCM is
> beyond them *after* initialization. The whole point is to be able
> to put e.g. containers to untrusted cloud.

You seem to be saying that while the kernel could help the
runtime to manage the enclave it should not. Is this correct?

There may be scenarios where an enclave could repair itself during runtime,
for example by running EACCEPT on a page that had a PENDING bit set.
This information is provided to the runtime with the
SGX_IOC_ENCLAVE_RESTRICT_PERMISSIONS ioctl(), but with this mprotect()
implementation the kernel cannot provide this information and thus
forces the enclave to be torn down and rebuilt to recover.

Is this (using mprotect()) the kernel implementation you prefer?

>> 4) #PF implementation
>>
>> (a) There is more to restricting permissions than just running
>> ENCLS[EMODPR]. After running ENCLS[EMODPR] the kernel should
>> also initiate the ETRACK flow to ensure that any thread within
>> the enclave is interrupted by sending an IPI to the CPU,
>> this includes the thread that just triggered the #PF.
>>
>> (b) Second consideration of the EMODPR and ETRACK flow is that
>> this has a large "blast radius" in that any thread in the
>> enclave needs to be interrupted. #PFs may arrive at any time
>> so setting up a page range where a fault into any page in the
>> page range will trigger enclave exits for all threads is
>> a significant yet random impact. I believe it would be better
>> to update all pages in the range at the same time and in this
>> way contain the impact of this significant EMODPR/ETRACK/IPIs
>> flow.
>>
>> (c) How will the page fault handler know when EMODPR/ETRACK should
>> be run? Consider that the page fault handler can be called
>> significantly later than the mprotect() call and that
>> user space can call EMODPE any time to extend permissions.
>> This implies that EMODPR/ETRACK/IPIs should be run during
>> *every* page fault, irrespective of mprotect().
>>
>> (d) If a page is in pending or modified state then EMODPR will
>> always fail. This is something that needs to be fixed by
>> user space runtime but the page fault will not be able
>> to communicate this.
>>
>> Considering the above, could you please provide clear guidance on
>> how you envision permission restriction to be supported by mprotect()?
>
> I'm not specifically driving #PF implementation but because it was so
> important for EAUG, I said that I'm fine with #PF based implementation.
>
> Personally, I would do both EAUG and EMODPR as part of mmap() and
> mprotect() (e.g. to catch that partial success and return that -EIO)
> flow but either works for me. The API is more of a concern than the
> internals.

Are you now requesting EMODPR as part of mmap() also? Could you
please elaborate how mmap() and mprotect() can handle partial success?

Reinette