All of lore.kernel.org
 help / color / mirror / Atom feed
From: Josh Zimmerman <joshz-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
To: "Winkler, Tomas" <tomas.winkler-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: "tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org"
	<tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
Subject: Re: [PATCH v4] tpm_tis: Check return values from get_burstcount.
Date: Thu, 27 Oct 2016 14:50:29 -0700	[thread overview]
Message-ID: <CAHSjozAcL7W-WN+Hf4LGBO8AsGQ+e3SG+VeKB0xnonrSt5SS_A@mail.gmail.com> (raw)
In-Reply-To: <5B8DA87D05A7694D9FA63FD143655C1B5430F484-Jy8z56yoSI8MvF1YICWikbfspsVTdybXVpNB7YpNyf8@public.gmane.org>


[-- Attachment #1.1: Type: text/plain, Size: 3006 bytes --]

Thanks, that's a fair point. Updated patch sent.

Josh

On Thu, Oct 27, 2016 at 1:31 PM, Winkler, Tomas <tomas.winkler-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
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 (tpm_tis: Introduce intermediate layer for TPM
> access)
> > Signed-off-by: Josh Zimmerman <joshz-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
> >
> > ---
> > Changelog v4:
> >  - Add short description to Fixes tag line.
> >  - Remove some unnecessary information in dev_err statements.
> > Changelog v3:
> >  - Add signed-off-by.
> > Changelog v2:
> >  - Fix typo (rc->burstcnt)
> >
> > ---
> >  drivers/char/tpm/tpm_tis_core.c | 9 +++++++++
> >  1 file changed, 9 insertions(+)
> >
> > diff --git a/drivers/char/tpm/tpm_tis_core.c b/drivers/char/tpm/tpm_tis_
> core.c
> > index e3bf31b..0f2c233 100644
> > --- a/drivers/char/tpm/tpm_tis_core.c
> > +++ b/drivers/char/tpm/tpm_tis_core.c
> > @@ -186,6 +186,10 @@ 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) {
>
> It is much more readable to directly check get_burstcount return value,
> 'count - size' is protected be above condition to not reach negative value.
>                              burstcnt = get_burstcount(chip)
>                              if (brustcnt < 0) ...
>
>
> > +                     dev_err(&chip->dev, "Unable to read burstcount\n");
> > +                     return burstcnt;
> > +             }
> >
> >               rc = tpm_tis_read_bytes(priv,
> TPM_DATA_FIFO(priv->locality),
> >                                       burstcnt, buf + size);
> > @@ -272,6 +276,11 @@ 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) {
> Same here
> > +                     dev_err(&chip->dev, "Unable to read burstcount\n");
> > +                     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
>
> Thanks
> Tomas
>

[-- Attachment #1.2: Type: text/html, Size: 4369 bytes --]

[-- Attachment #2: Type: text/plain, Size: 327 bytes --]

------------------------------------------------------------------------------
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

[-- Attachment #3: Type: text/plain, Size: 192 bytes --]

_______________________________________________
tpmdd-devel mailing list
tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/tpmdd-devel

      parent reply	other threads:[~2016-10-27 21:50 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-27 17:40 [PATCH v4] tpm_tis: Check return values from get_burstcount Josh Zimmerman
     [not found] ` <20161027174000.GA4432-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2016-10-27 20:31   ` Winkler, Tomas
     [not found]     ` <5B8DA87D05A7694D9FA63FD143655C1B5430F484-Jy8z56yoSI8MvF1YICWikbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2016-10-27 21:50       ` Josh Zimmerman [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=CAHSjozAcL7W-WN+Hf4LGBO8AsGQ+e3SG+VeKB0xnonrSt5SS_A@mail.gmail.com \
    --to=joshz-hpiqsd4aklfqt0dzr+alfa@public.gmane.org \
    --cc=tomas.winkler-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    --cc=tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
    /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.