From: Florent Revest <revest@chromium.org>
To: Mimi Zohar <zohar@linux.ibm.com>,
Lakshmi Ramasubramanian <nramas@linux.microsoft.com>,
linux-integrity@vger.kernel.org
Cc: kpsingh@chromium.org, mjg59@google.com,
linux-kernel@vger.kernel.org,
linux-security-module@vger.kernel.org,
Florent Revest <revest@google.com>
Subject: Re: [PATCH] ima: add the ability to query ima for the hash of a given file.
Date: Mon, 06 Jan 2020 17:15:23 +0100 [thread overview]
Message-ID: <a1d896052f608c549b67997eddd62015d2d230d5.camel@chromium.org> (raw)
In-Reply-To: <1577122751.5241.144.camel@linux.ibm.com>
On Mon, 2019-12-23 at 12:39 -0500, Mimi Zohar wrote:
> On Fri, 2019-12-20 at 08:48 -0800, Lakshmi Ramasubramanian wrote:
> > On 12/20/2019 8:31 AM, Florent Revest wrote:
> >
> > >
> > > +/**
> > > + * ima_file_hash - return the stored measurement if a file has
> > > been hashed.
> > > + * @file: pointer to the file
> > > + * @buf: buffer in which to store the hash
> > > + * @buf_size: length of the buffer
> > > + *
> > > + * On success, output the hash into buf and return the hash
> > > algorithm (as
> > > + * defined in the enum hash_algo).
> > > + * If the hash is larger than buf, then only size bytes will be
> > > copied. It
> > > + * generally just makes sense to pass a buffer capable of
> > > holding the largest
> > > + * possible hash: IMA_MAX_DIGEST_SIZE
> >
> > If the given buffer is smaller than the hash length, wouldn't it
> > be
> > better to return the required size and a status indicating the
> > buffer is
> > not enough. The caller can then call back with the required buffer.
> >
> > If the hash is truncated the caller may not know if the hash is
> > partial
> > or not.
>
> Based on the hash algorithm, the caller would know if the buffer
> provided was too small and was truncated.
>
> > > + *
> > > + * If IMA is disabled or if no measurement is available, return
> > > -EOPNOTSUPP.
> > > + * If the parameters are incorrect, return -EINVAL.
> > > + */
> > > +int ima_file_hash(struct file *file, char *buf, size_t buf_size)
> > > +{
> > > + struct inode *inode;
> > > + struct integrity_iint_cache *iint;
> > > + size_t copied_size;
> > > +
> > > + if (!file || !buf)
> > > + return -EINVAL;
> > > +
>
> Other kernel functions provide a means of determining the needed
> buffer size by passing a NULL field. Instead of failing here, if buf
> is NULL, how about returning the hash algorithm?
I wasn't aware of that. This is nice to have indeed! I'll send a v2.
Thanks!
next prev parent reply other threads:[~2020-01-06 16:15 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-20 16:31 [PATCH] ima: add the ability to query ima for the hash of a given file Florent Revest
2019-12-20 16:48 ` Lakshmi Ramasubramanian
2019-12-23 17:39 ` Mimi Zohar
2020-01-06 16:15 ` Florent Revest [this message]
2020-01-06 16:10 ` Florent Revest
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=a1d896052f608c549b67997eddd62015d2d230d5.camel@chromium.org \
--to=revest@chromium.org \
--cc=kpsingh@chromium.org \
--cc=linux-integrity@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-security-module@vger.kernel.org \
--cc=mjg59@google.com \
--cc=nramas@linux.microsoft.com \
--cc=revest@google.com \
--cc=zohar@linux.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 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).