From: James Bottomley <James.Bottomley@HansenPartnership.com>
To: Jarkko Sakkinen <jarkko@kernel.org>,
Jerry Snitselaar <jsnitsel@redhat.com>
Cc: linux-integrity@vger.kernel.org, keyrings@vger.kernel.org,
William Roberts <bill.c.roberts@gmail.com>,
Stefan Berger <stefanb@linux.ibm.com>,
David Howells <dhowells@redhat.com>,
Jason Gunthorpe <jgg@ziepe.ca>, Mimi Zohar <zohar@linux.ibm.com>,
Peter Huewe <peterhuewe@gmx.de>,
Mario Limonciello <mario.limonciello@amd.com>,
Julien Gomes <julien@arista.com>,
open list <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v3 1/6] tpm: Move buffer handling from static inlines to real functions
Date: Sun, 05 Nov 2023 17:42:02 -0500 [thread overview]
Message-ID: <2162ca751035b3ea8c5ce8409c17c1906951181d.camel@HansenPartnership.com> (raw)
In-Reply-To: <ac616f9f1eef89e9c202b43d2be5b3ccb6afd1dd.camel@kernel.org>
On Mon, 2023-11-06 at 00:01 +0200, Jarkko Sakkinen wrote:
> On Sun, 2023-11-05 at 23:59 +0200, Jarkko Sakkinen wrote:
> > On Thu, 2023-10-26 at 13:55 -0400, James Bottomley wrote:
> > > On Thu, 2023-10-26 at 10:10 -0700, Jerry Snitselaar wrote:
> > > > On Wed, Oct 25, 2023 at 08:35:55PM +0300, Jarkko Sakkinen
> > > > wrote:
> > > > > On Wed Oct 25, 2023 at 12:03 PM EEST, Jerry Snitselaar wrote:
> > > > > > Reviewed-by: Jerry Snitselaar <jsnitsel@redhat.com>
> > > > >
> > > > > On Wed, 2023-10-25 at 02:03 -0700, Jerry Snitselaar wrote:
> > > > > > Reviewed-by: Jerry Snitselaar <jsnitsel@redhat.com>
> > > > > >
> > > > >
> > > > > Thanks I'll add it to the next round.
> > > > >
> > > > > For the tpm_buf_read(), I was thinking along the lines of:
> > > > >
> > > > > /**
> > > > > * tpm_buf_read() - Read from a TPM buffer
> > > > > * @buf: &tpm_buf instance
> > > > > * @pos: position within the buffer
> > > > > * @count: the number of bytes to read
> > > > > * @output: the output buffer
> > > > > *
> > > > > * Read bytes from a TPM buffer, and update the position.
> > > > > Returns
> > > > > false when the
> > > > > * amount of bytes requested would overflow the buffer, which
> > > > > is
> > > > > expected to
> > > > > * only happen in the case of hardware failure.
> > > > > */
> > > > > static bool tpm_buf_read(const struct tpm_buf *buf, off_t
> > > > > *pos,
> > > > > size_t count, void *output)
> > > > > {
> > > > > off_t next = *pos + count;
> > > > >
> > > > > if (next >= buf->length) {
> > > > > pr_warn("%s: %lu >= %lu\n", __func__, next,
> > > > > *offset);
> > > > > return false;
> > > > > }
> > > > >
> > > > > memcpy(output, &buf->data[*pos], count);
> > > > > *offset = next;
> > > > > return true;
> > > > > }
> > > > >
> > > > > BR, Jarkko
> > > > >
> > > >
> > > > Then the callers will check, and return -EIO?
> > >
> > > Really, no, why would we do that?
> > >
> > > The initial buffer is a page and no TPM currently can have a
> > > command that big, so if the buffer overflows, it's likely a
> > > programming error (failure to terminate loop or something) rather
> > > than a runtime one (a user actually induced a command that big
> > > and wanted it to be sent to the TPM). The only reason you might
> > > need to check is the no-alloc case and you passed in a much
> > > smaller buffer, but even there, I would guess it will come down
> > > to a coding fault not a possible runtime error.
> >
> >
> > Yeah, this was my thinking too. So in HMAC case you anyway would
> > not need to check it because crypto is destined to fail anyway.
> >
> > Returning boolean here does no harm so I thought that this is
> > overally good compromise.
>
> Or actually maybe we should go just with void, as it does have even
> then "return value", as it emits to klog, right?
Right, these functions are almost drop in replacements for the
get_inc_XX ones. The latter were void returning because all the
knowledge of what is being looked for is in the calling routine,
because it knows at a macro level what structure the buffer should
have.
James
next prev parent reply other threads:[~2023-11-05 22:42 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-24 1:15 [PATCH v3 0/6] Extend struct tpm_buf to support sized buffers (TPM2B) Jarkko Sakkinen
2023-10-24 1:15 ` [PATCH v3 1/6] tpm: Move buffer handling from static inlines to real functions Jarkko Sakkinen
2023-10-25 9:03 ` Jerry Snitselaar
2023-10-25 17:35 ` Jarkko Sakkinen
2023-10-26 17:10 ` Jerry Snitselaar
2023-10-26 17:55 ` James Bottomley
2023-10-26 18:19 ` Jerry Snitselaar
2023-11-05 21:59 ` Jarkko Sakkinen
2023-11-05 22:01 ` Jarkko Sakkinen
2023-11-05 22:42 ` James Bottomley [this message]
2023-11-05 21:57 ` Jarkko Sakkinen
2023-10-24 1:15 ` [PATCH v3 2/6] tpm: Store TPM buffer length Jarkko Sakkinen
2023-11-06 19:26 ` Jerry Snitselaar
2023-11-15 21:02 ` Jarkko Sakkinen
2023-11-06 19:36 ` Jerry Snitselaar
2023-11-15 21:04 ` Jarkko Sakkinen
2023-10-24 1:15 ` [PATCH v3 3/6] tpm: Detach tpm_buf_reset() from tpm_buf_init() Jarkko Sakkinen
2023-11-06 19:31 ` Jerry Snitselaar
2023-11-15 21:03 ` Jarkko Sakkinen
2023-10-24 1:15 ` [PATCH v3 4/6] tpm: Support TPM2 sized buffers (TPM2B) Jarkko Sakkinen
[not found] ` <d4157726d924a3ddad477923d6bcb4a8e6a55e60.camel@HansenPartnership.com>
2023-11-06 3:25 ` Jarkko Sakkinen
2023-11-07 17:20 ` Jerry Snitselaar
2023-11-15 21:24 ` Jarkko Sakkinen
2023-10-24 1:15 ` [PATCH v3 5/6] tpm: Add tpm_buf_read_{u8,u16,u32} Jarkko Sakkinen
2023-10-24 1:38 ` Mario Limonciello
2023-10-24 10:52 ` Jarkko Sakkinen
2023-10-27 12:24 ` James Bottomley
2023-11-06 3:22 ` Jarkko Sakkinen
2023-10-24 1:15 ` [PATCH v3 6/6] KEYS: trusted: tpm2: Use struct tpm_buf for sized buffers Jarkko Sakkinen
2023-11-15 21:56 ` [PATCH v3 0/6] Extend struct tpm_buf to support sized buffers (TPM2B) Stefan Berger
2023-11-19 22:05 ` Jarkko Sakkinen
2023-11-19 22:12 ` Jarkko Sakkinen
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=2162ca751035b3ea8c5ce8409c17c1906951181d.camel@HansenPartnership.com \
--to=james.bottomley@hansenpartnership.com \
--cc=bill.c.roberts@gmail.com \
--cc=dhowells@redhat.com \
--cc=jarkko@kernel.org \
--cc=jgg@ziepe.ca \
--cc=jsnitsel@redhat.com \
--cc=julien@arista.com \
--cc=keyrings@vger.kernel.org \
--cc=linux-integrity@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mario.limonciello@amd.com \
--cc=peterhuewe@gmx.de \
--cc=stefanb@linux.ibm.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