lkml.org 
[lkml]   [2020]   [Sep]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v38 10/24] mm: Add vm_ops->mprotect()
On Mon, Sep 28, 2020 at 09:48:10AM -0700, Dave Hansen wrote:
> On 9/28/20 9:19 AM, Jarkko Sakkinen wrote:
> > On Mon, Sep 28, 2020 at 07:04:38AM -0700, Dave Hansen wrote:
> >> EMODPE is virtually irrelevant for this whole thing. The x86 PTE
> >> permissions still specify the most restrictive permissions, which is
> >> what matters the most.
> >>
> >> We care about the _worst_ the enclave can do, not what it imposes on
> >> itself on top of that.
> >
> > AFAIK it is not, or what we are protecting against with this anyway
> > then?
> >
> > Let say an LSM makes decision for the permissions based on origin. If we
> > do not have this you can:
> >
> > 1. EMODPE
> > 2. mprotect
>
> The thing that matters is that the enclave needs relaxed permissions
> from the kernel. What it *ALSO* needs to do to *ITSELF* to get those
> permissions is entirely irrelevant to the kernel.

Lets try to find the root of misunderstanding, shall we?

I'm assuming that your statement is encapsulated to:

https://lore.kernel.org/linux-sgx/32fc9df4-d4aa-6768-aa06-0035427b7535@intel.com/

I do agree with this.

And here is a direct quote:

"It is also stashed off and then later compared with enclave PTEs to
ensure that any future mmap()/mprotect() operations performed by the
enclave creator or the enclave itself are consistent with the earlier
declared permissions."

Without the mprotect callback in place, by using EMODPE and mprotect,
one could surpass the permisssions that we declared earlier.

With the callback in place this is not possible. EMODPE can be freely
used but mprotect() always caps the permissions. It enables us to *not
care* about EMODPE.

My problem is that I fully agree what you say in your description but
disagree on that EMODPE should not be mentioned.

> > There is no standard file format for enclaves. They are dynamically built
> > and the ways how enclaves are deployed differ greatly. For an app you might
> > want to have a simple static binary, but on the other hand for a container
> > you might want to dynamically create the whole thing at run-time. Also, the
> > existing ecosystem for SGX is already large, which would make the task very
> > hard.
>
> I'm sorry I ever mentioned the file format. Please remove any mention
> of it. It's irrelevant. This entire paragraph is irrelevant.

Not sure if it is or not. It is merely to state that execve() path is
possible. Perhaps should be toned down in some way. Should be like the
a small remark at most.

> > Finally, even if there was a standard format, one would still want a
> > dynamic way to add pages to the enclave. One big reason for this is that
> > enclaves have load time defined pages that represent entry points to the
> > enclave. Each entry point can service one hardware thread at a time and
> > you might want to run-time parametrize this depending on your environment.
>
> I also don't know what this paragraph has to do with the mprotect()
> hook. Please remove it.

Agreed.

> > The consequence is that enclaves are best created with an ioctl API and the
> > access control can be based only to the origin of the source file for the
> > enclave data, i.e. on VMA file pointer and page permissions. For example,
>
> It's not strictly page permissions, though. It's actually VMA
> permissions. The thing you copy from might be the zero page, and even
> though it has Write=0 page permissions, apps are completely OK to write
> to the address. This is the WRITE vs. MAY_WRITE semantic in the VMA flags.
>
> It's also not just about *files*. Anonymous memory might or might not
> be a valid source for enclave data based on LSM hooks.

Yes, this should be refined, agreed. Source can be either anonymous page
or a file, I do of course understand that.

> > this could be done with LSM hooks that are triggered in the appropriate
> > ioctl's and they could make the access control decision based on this
> > information.
>
> This "appropriate ioctl's" is not good changelog material. Please use
> those bytes to convey actual information.
>
> ... this could be done with LSM hooks which restrict the source
> of enclave page data
>
> I don't care that it's an ioctl(), really. What matters is what the
> ioctl() does: copy data into enclave pages.

Agreed.

> > Unfortunately, there is ENCLS[EMODPE] that a running enclave can use to
> > upgrade its permissions. If we do not limit mmap() and mprotect(), enclave
> > could upgrade its permissions by using EMODPE followed by an appropriate
> > mprotect() call. This would be completely hidden from the kernel.
>
> There's too much irrelevant info.
>
> I'll say it again: all that matters is that enclaves can legitimately,
> safely, and securely have a need for the kernel to change page
> permissions. That's *IT*. EMODPE just happens to be part of the
> mechanism that makes these permission changes safe for enclaves. It's a
> side show.

Disagree on this. I wrote my statement about. Maybe it should not be
driving argument but should be definitely part of the description.

> > Add 'mprotect' hook to vm_ops, so that a callback can be implemeted for SGX
> > that will ensure that {mmap, mprotect}() permissions do not surpass any of
> > the original page permissions. This feature allows to maintain and refine
> > sane access control for enclaves.
>
> Instead of "original", I'd stick to the "source" page nomenclature.
> There are also "original" permissions with mprotect().
>
> Also, it's literally OK for the enclave page permissions to surpass the
> original (source) page permissions. That sentence is incorrect, or at
> least misleadingly imprecise.

Yes it is. It's fine to use EMODPE to upgrade the perms, and by having
this hook, doing anything nasty with it is impossible.

> > I'm mostly happy with this but am open for change suggestions.
>
> I wrote a pretty nice description of this. It was about 90% correct,
> shorter, and conveyed more information. I'd suggest starting with that.

I should have added a disclaimer that my description is not up to date.
Just do not want to make anything final before this EMODPE discussion
has some conclusion.

I'm fine using your description as basis for the commit message if as long
as these few details are settled.

/Jarkko

\
 
 \ /
  Last update: 2020-09-28 23:06    [W:0.160 / U:0.384 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site