From: Mimi Zohar <zohar@linux.vnet.ibm.com>
To: Tycho Andersen <tycho@tycho.ws>
Cc: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>,
linux-integrity@vger.kernel.org, linux-kernel@vger.kernel.org,
kernel-hardening@lists.openwall.com
Subject: Re: [PATCH v2] ima: drop vla in ima_audit_measurement()
Date: Thu, 08 Mar 2018 17:05:40 -0500 [thread overview]
Message-ID: <1520546740.3605.124.camel@linux.vnet.ibm.com> (raw)
In-Reply-To: <20180308214547.kdeoeozugxffzumn@smitten>
On Thu, 2018-03-08 at 14:45 -0700, Tycho Andersen wrote:
> Hi Mimi,
>
> On Thu, Mar 08, 2018 at 03:36:14PM -0500, Mimi Zohar wrote:
> > On Thu, 2018-03-08 at 13:23 -0700, Tycho Andersen wrote:
> >
> > > /*
> > > diff --git a/security/integrity/ima/ima_main.c b/security/integrity/ima/ima_main.c
> > > index 2cfb0c714967..356faae6f09c 100644
> > > --- a/security/integrity/ima/ima_main.c
> > > +++ b/security/integrity/ima/ima_main.c
> > > @@ -288,8 +288,11 @@ static int process_measurement(struct file *file, char *buf, loff_t size,
> > > xattr_value, xattr_len, opened);
> > > inode_unlock(inode);
> > > }
> > > - if (action & IMA_AUDIT)
> > > - ima_audit_measurement(iint, pathname);
> > > + if (action & IMA_AUDIT) {
> > > + rc = ima_audit_measurement(iint, pathname);
> > > + if (rc < 0)
> > > + goto out_locked;
> > > + }
> > >
> > > if ((file->f_flags & O_DIRECT) && (iint->flags & IMA_PERMIT_DIRECTIO))
> > > rc = 0;
> >
> > Only when IMA-appraisal is enforcing file data integrity should
> > process_measurement() ever fail. Other errors can be logged/audited.
>
> Ok, so previously in ima_audit_measurement() when allocation failed,
> there was nothing logged. If we just keep this behavior like below,
> does that look good?
Before the IMA locking change that were just upstreamed, there were
problems with measuring/appraising files that were opened with the
O_DIRECT flag. Unless the IMA policy specified permit_directio, the
measurement/appraisal failed. With the new locking, opening files
with the O_DIRECTIO flag shouldn't be a problem. It just needs to be
fully tested before removing this code.
On failure, the code below tests the ima_audit_measurement() result
and skips the IMA_PERMIT_DIRECTIO test. Unless I'm missing something,
I don't see the point.
Mimi
> Thanks!
>
> Tycho
>
> diff --git a/security/integrity/ima/ima_main.c b/security/integrity/ima/ima_main.c
> index 356faae6f09c..4e699bc7adc5 100644
> --- a/security/integrity/ima/ima_main.c
> +++ b/security/integrity/ima/ima_main.c
> @@ -289,9 +289,13 @@ static int process_measurement(struct file *file, char *buf, loff_t size,
> inode_unlock(inode);
> }
> if (action & IMA_AUDIT) {
> - rc = ima_audit_measurement(iint, pathname);
> - if (rc < 0)
> + int ret;
> +
> + ret = ima_audit_measurement(iint, pathname);
> + if (ret < 0 && ima_appraise & IMA_APPRAISE_ENFORCE) {
> + rc = ret;
> goto out_locked;
> + }
> }
>
> if ((file->f_flags & O_DIRECT) && (iint->flags & IMA_PERMIT_DIRECTIO))
>
next prev parent reply other threads:[~2018-03-08 22:05 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-08 20:23 [PATCH v2] ima: drop vla in ima_audit_measurement() Tycho Andersen
2018-03-08 20:36 ` Mimi Zohar
2018-03-08 21:45 ` Tycho Andersen
2018-03-08 22:05 ` Mimi Zohar [this message]
2018-03-08 22:15 ` Tycho Andersen
2018-03-08 22:28 ` Mimi Zohar
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=1520546740.3605.124.camel@linux.vnet.ibm.com \
--to=zohar@linux.vnet.ibm.com \
--cc=dmitry.kasatkin@gmail.com \
--cc=kernel-hardening@lists.openwall.com \
--cc=linux-integrity@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tycho@tycho.ws \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).