linux-integrity.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
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:28:06 -0500	[thread overview]
Message-ID: <1520548086.3605.135.camel@linux.vnet.ibm.com> (raw)
In-Reply-To: <20180308221537.46ogqx64cev767ur@smitten>

On Thu, 2018-03-08 at 15:15 -0700, Tycho Andersen wrote:
> Hi Mimi,
> 
> On Thu, Mar 08, 2018 at 05:05:40PM -0500, Mimi Zohar wrote:
> > 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.
> 
> It skips the IMA_PERMIT_DIRECTIO test because it's already going to
> fail: we're in enforce mode and we got an allocation failure and so we
> can't audit this access (note: there is another allocation failure in
> ima_audit_measurement() which is still ignored after this patch, so
> maybe ignoring failures is ok; seems like it's not, though

By the time we get here, we've already verified the file's integrity,
if it is in policy.  At this point, we're attempting to add the file
hash to the audit log.  If for some reason the audit fails, there's
not much we can do.

> I'm not sure I really understand the rest of your message though. Can
> you suggest what the patch should do here? Should we just ignore all
> failures as before?

I would leave it as it is.

Mimi
 

      reply	other threads:[~2018-03-08 22:28 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
2018-03-08 22:15       ` Tycho Andersen
2018-03-08 22:28         ` Mimi Zohar [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=1520548086.3605.135.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).