* [PATCH v3] tpm_tis: Check return values from get_burstcount.
@ 2016-10-26 16:33 Josh Zimmerman
[not found] ` <20161026163341.GA19855-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Josh Zimmerman @ 2016-10-26 16:33 UTC (permalink / raw)
To: Peter Huewe, Marcel Selhorst, Jarkko Sakkinen, Jason Gunthorpe,
tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
If the TPM we're connecting to uses a static burst count, it will report
a burst count of zero throughout the response read. However, get_burstcount
assumes that a response of zero indicates that the TPM is not ready to
receive more data. In this case, it returns a negative error code, which
is passed on to tpm_tis_{write,read}_bytes as a u16, causing
them to read/write far too many bytes.
This patch checks for negative return codes and bails out from recv_data
and tpm_tis_send_data.
Fixes: 1107d065fdf1
Signed-off-by: Josh Zimmerman <joshz-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
---
Changelog v3:
- Add signed-off-by.
Changelog v2:
- Fix typo (rc->burstcnt)
---
drivers/char/tpm/tpm_tis_core.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/drivers/char/tpm/tpm_tis_core.c b/drivers/char/tpm/tpm_tis_core.c
index e3bf31b..aed92b3 100644
--- a/drivers/char/tpm/tpm_tis_core.c
+++ b/drivers/char/tpm/tpm_tis_core.c
@@ -186,6 +186,12 @@ static int recv_data(struct tpm_chip *chip, u8 *buf, size_t count)
chip->timeout_c,
&priv->read_queue, true) == 0) {
burstcnt = min_t(int, get_burstcount(chip), count - size);
+ if (burstcnt < 0) {
+ dev_err(&chip->dev,
+ "Unable to read burstcount in %s:%d (%s)\n",
+ __FILE__, __LINE__, __func__);
+ return burstcnt;
+ }
rc = tpm_tis_read_bytes(priv, TPM_DATA_FIFO(priv->locality),
burstcnt, buf + size);
@@ -272,6 +278,13 @@ static int tpm_tis_send_data(struct tpm_chip *chip, u8 *buf, size_t len)
while (count < len - 1) {
burstcnt = min_t(int, get_burstcount(chip), len - count - 1);
+ if (burstcnt < 0) {
+ dev_err(&chip->dev,
+ "Unable to read burstcount in %s:%d (%s)\n",
+ __FILE__, __LINE__, __func__);
+ rc = burstcnt;
+ goto out_err;
+ }
rc = tpm_tis_write_bytes(priv, TPM_DATA_FIFO(priv->locality),
burstcnt, buf + count);
if (rc < 0)
--
2.8.0.rc3.226.g39d4020
------------------------------------------------------------------------------
The Command Line: Reinvented for Modern Developers
Did the resurgence of CLI tooling catch you by surprise?
Reconnect with the command line and become more productive.
Learn the new .NET and ASP.NET CLI. Get your free copy!
http://sdm.link/telerik
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v3] tpm_tis: Check return values from get_burstcount.
[not found] ` <20161026163341.GA19855-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
@ 2016-10-27 13:48 ` Jarkko Sakkinen
0 siblings, 0 replies; 2+ messages in thread
From: Jarkko Sakkinen @ 2016-10-27 13:48 UTC (permalink / raw)
To: Josh Zimmerman; +Cc: tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
On Wed, Oct 26, 2016 at 09:33:41AM -0700, Josh Zimmerman wrote:
> If the TPM we're connecting to uses a static burst count, it will report
> a burst count of zero throughout the response read. However, get_burstcount
> assumes that a response of zero indicates that the TPM is not ready to
> receive more data. In this case, it returns a negative error code, which
> is passed on to tpm_tis_{write,read}_bytes as a u16, causing
> them to read/write far too many bytes.
>
> This patch checks for negative return codes and bails out from recv_data
> and tpm_tis_send_data.
>
> Fixes: 1107d065fdf1
Fixes line is missing the short summary.
/Jarkko
> Signed-off-by: Josh Zimmerman <joshz-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
>
> ---
> Changelog v3:
> - Add signed-off-by.
> Changelog v2:
> - Fix typo (rc->burstcnt)
>
> ---
> drivers/char/tpm/tpm_tis_core.c | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
>
> diff --git a/drivers/char/tpm/tpm_tis_core.c b/drivers/char/tpm/tpm_tis_core.c
> index e3bf31b..aed92b3 100644
> --- a/drivers/char/tpm/tpm_tis_core.c
> +++ b/drivers/char/tpm/tpm_tis_core.c
> @@ -186,6 +186,12 @@ static int recv_data(struct tpm_chip *chip, u8 *buf, size_t count)
> chip->timeout_c,
> &priv->read_queue, true) == 0) {
> burstcnt = min_t(int, get_burstcount(chip), count - size);
> + if (burstcnt < 0) {
> + dev_err(&chip->dev,
> + "Unable to read burstcount in %s:%d (%s)\n",
> + __FILE__, __LINE__, __func__);
> + return burstcnt;
> + }
I gave this even more thought. This should be just
dev_err(&chip->dev, "Unable to read burstcount\n");
Use ftrace if you want to know the call site.
/Jarkko
>
> rc = tpm_tis_read_bytes(priv, TPM_DATA_FIFO(priv->locality),
> burstcnt, buf + size);
> @@ -272,6 +278,13 @@ static int tpm_tis_send_data(struct tpm_chip *chip, u8 *buf, size_t len)
>
> while (count < len - 1) {
> burstcnt = min_t(int, get_burstcount(chip), len - count - 1);
> + if (burstcnt < 0) {
> + dev_err(&chip->dev,
> + "Unable to read burstcount in %s:%d (%s)\n",
> + __FILE__, __LINE__, __func__);
> + rc = burstcnt;
> + goto out_err;
> + }
> rc = tpm_tis_write_bytes(priv, TPM_DATA_FIFO(priv->locality),
> burstcnt, buf + count);
> if (rc < 0)
> --
> 2.8.0.rc3.226.g39d4020
>
------------------------------------------------------------------------------
The Command Line: Reinvented for Modern Developers
Did the resurgence of CLI tooling catch you by surprise?
Reconnect with the command line and become more productive.
Learn the new .NET and ASP.NET CLI. Get your free copy!
http://sdm.link/telerik
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-10-27 13:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-26 16:33 [PATCH v3] tpm_tis: Check return values from get_burstcount Josh Zimmerman
[not found] ` <20161026163341.GA19855-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2016-10-27 13:48 ` Jarkko Sakkinen
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).