From: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
To: Darren Kenny <darren.kenny@oracle.com>
Cc: linux-sgx@vger.kernel.org,
Sean Christopherson <sean.j.christopherson@intel.com>,
Borislav Petkov <bp@suse.de>
Subject: Re: [PATCH] x86/sgx: Roof the number of pages process in SGX_IOC_ENCLAVE_ADD_PAGES
Date: Fri, 11 Sep 2020 14:50:30 +0300 [thread overview]
Message-ID: <20200911115030.GB5718@linux.intel.com> (raw)
In-Reply-To: <m2k0x346kx.fsf@oracle.com>
On Wed, Sep 09, 2020 at 10:55:58AM +0100, Darren Kenny wrote:
> On Tuesday, 2020-09-08 at 22:00:42 +03, Jarkko Sakkinen wrote:
> > Remove 'count' from struct sgx_enclave_add_pages and return number of
> > pages processed as a positive return as there is no reasonable use for
> > -EINTR for the caller. Then, roof the processing with a fixed constant
> > and break out the loop also when this value is surpassed.
> >
> > Link: https://lore.kernel.org/linux-sgx/20200626153400.GE27151@zn.tnic/
> > Cc: Sean Christopherson <sean.j.christopherson@intel.com>
> > Cc: Borislav Petkov <bp@suse.de>
> > Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
> > ---
> > arch/x86/include/uapi/asm/sgx.h | 2 --
> > arch/x86/kernel/cpu/sgx/ioctl.c | 10 ++++------
> > arch/x86/kernel/cpu/sgx/sgx.h | 1 +
> > 3 files changed, 5 insertions(+), 8 deletions(-)
> >
> > diff --git a/arch/x86/include/uapi/asm/sgx.h b/arch/x86/include/uapi/asm/sgx.h
> > index b3d5ccf5b976..1564d7f88597 100644
> > --- a/arch/x86/include/uapi/asm/sgx.h
> > +++ b/arch/x86/include/uapi/asm/sgx.h
> > @@ -45,7 +45,6 @@ struct sgx_enclave_create {
> > * @length: length of the data (multiple of the page size)
> > * @secinfo: address for the SECINFO data
> > * @flags: page control flags
> > - * @count: number of bytes added (multiple of the page size)
> > */
> > struct sgx_enclave_add_pages {
> > __u64 src;
> > @@ -53,7 +52,6 @@ struct sgx_enclave_add_pages {
> > __u64 length;
> > __u64 secinfo;
> > __u64 flags;
> > - __u64 count;
> > };
> >
> > /**
> > diff --git a/arch/x86/kernel/cpu/sgx/ioctl.c b/arch/x86/kernel/cpu/sgx/ioctl.c
> > index 6c3c6177b690..0ae00fa9b589 100644
> > --- a/arch/x86/kernel/cpu/sgx/ioctl.c
> > +++ b/arch/x86/kernel/cpu/sgx/ioctl.c
> > @@ -490,7 +490,7 @@ static int sgx_encl_add_page(struct sgx_encl *encl, unsigned long src,
> > * caller.
> > *
> > * Return:
> > - * 0 on success,
> > + * length of the data processed on success,
> > * -EACCES if an executable source page is located in a noexec partition,
> > * -EIO if either ENCLS[EADD] or ENCLS[EEXTEND] fails
> > * -errno otherwise
> > @@ -530,8 +530,8 @@ static long sgx_ioc_enclave_add_pages(struct sgx_encl *encl, void __user *arg)
> > return -EINVAL;
> >
> > for (c = 0 ; c < addp.length; c += PAGE_SIZE) {
> > - if (signal_pending(current)) {
> > - ret = -EINTR;
> > + if (c == SGX_MAX_ADD_PAGES_LENGTH || signal_pending(current)) {
>
> I know that SGX_MAX_ADD_PAGES_LENGTH may be a multiple of PAGE_SIZE, but
> to be sure that nothing breaks here in the future, I think it would be
> better to use '>=' as the comparison rather than just '=='.
I'm not forseeing this. We will change the comparison or remove it if
the constant is no longer required.
>
> Also, the indentation seems off here w.r.t. using TABs when the break
> below is using spaces - would be good to have them the same at least.
Ugh, that must be my mistake. I'll check these before squashing this.
Thank you.
/Jarkko
prev parent reply other threads:[~2020-09-11 11:51 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-08 19:00 [PATCH] x86/sgx: Roof the number of pages process in SGX_IOC_ENCLAVE_ADD_PAGES Jarkko Sakkinen
2020-09-09 5:30 ` Sean Christopherson
[not found] ` <20200911114315.GA6760@linux.intel.com>
2020-09-11 15:51 ` Sean Christopherson
2020-09-11 17:38 ` Haitao Huang
2020-09-14 18:07 ` Jarkko Sakkinen
2020-09-14 18:09 ` Jarkko Sakkinen
2020-09-09 9:55 ` Darren Kenny
2020-09-11 11:50 ` Jarkko Sakkinen [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200911115030.GB5718@linux.intel.com \
--to=jarkko.sakkinen@linux.intel.com \
--cc=bp@suse.de \
--cc=darren.kenny@oracle.com \
--cc=linux-sgx@vger.kernel.org \
--cc=sean.j.christopherson@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.