From: Tycho Andersen <tycho@tycho.ws>
To: Mimi Zohar <zohar@linux.vnet.ibm.com>
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, 8 Mar 2018 14:45:47 -0700 [thread overview]
Message-ID: <20180308214547.kdeoeozugxffzumn@smitten> (raw)
In-Reply-To: <1520541374.3605.101.camel@linux.vnet.ibm.com>
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?
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))
WARNING: multiple messages have this Message-ID (diff)
From: Tycho Andersen <tycho@tycho.ws>
To: Mimi Zohar <zohar@linux.vnet.ibm.com>
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, 8 Mar 2018 14:45:47 -0700 [thread overview]
Message-ID: <20180308214547.kdeoeozugxffzumn@smitten> (raw)
In-Reply-To: <1520541374.3605.101.camel@linux.vnet.ibm.com>
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?
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 21:45 UTC|newest]
Thread overview: 11+ 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 20:36 ` Mimi Zohar
2018-03-08 21:45 ` Tycho Andersen [this message]
2018-03-08 21:45 ` Tycho Andersen
2018-03-08 22:05 ` Mimi Zohar
2018-03-08 22:05 ` Mimi Zohar
2018-03-08 22:15 ` Tycho Andersen
2018-03-08 22:15 ` Tycho Andersen
2018-03-08 22:28 ` Mimi Zohar
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=20180308214547.kdeoeozugxffzumn@smitten \
--to=tycho@tycho.ws \
--cc=dmitry.kasatkin@gmail.com \
--cc=kernel-hardening@lists.openwall.com \
--cc=linux-integrity@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=zohar@linux.vnet.ibm.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.