stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tpm: Fix the type of the return value in calc_tpm2_event_size()
@ 2019-04-17 15:24 Jarkko Sakkinen
  2019-04-17 16:34 ` Sasha Levin
  2019-04-17 17:00 ` Sasha Levin
  0 siblings, 2 replies; 5+ messages in thread
From: Jarkko Sakkinen @ 2019-04-17 15:24 UTC (permalink / raw)
  To: stable; +Cc: Yue Haibing, Jarkko Sakkinen

From: Yue Haibing <yuehaibing@huawei.com>

commit 32312418625764cdf740890ac9c78ca26a6a9d24 upstream

calc_tpm2_event_size() has an invalid signature because
it returns a 'size_t' where as its signature says that
it returns 'int'.

Cc: <stable@vger.kernel.org>
Fixes: 4d23cc323cdb ("tpm: add securityfs support for TPM 2.0 firmware event log")
Suggested-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Signed-off-by: Yue Haibing <yuehaibing@huawei.com>
Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
---
backport v5.0.8
 drivers/char/tpm/eventlog/tpm2.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/char/tpm/eventlog/tpm2.c b/drivers/char/tpm/eventlog/tpm2.c
index 1b8fa9de2cac..130c3f227559 100644
--- a/drivers/char/tpm/eventlog/tpm2.c
+++ b/drivers/char/tpm/eventlog/tpm2.c
@@ -37,8 +37,8 @@
  *
  * Returns size of the event. If it is an invalid event, returns 0.
  */
-static int calc_tpm2_event_size(struct tcg_pcr_event2 *event,
-				struct tcg_pcr_event *event_header)
+static size_t calc_tpm2_event_size(struct tcg_pcr_event2_head *event,
+				   struct tcg_pcr_event *event_header)
 {
 	struct tcg_efi_specid_event *efispecid;
 	struct tcg_event_field *event_field;
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] tpm: Fix the type of the return value in calc_tpm2_event_size()
  2019-04-17 15:24 [PATCH] tpm: Fix the type of the return value in calc_tpm2_event_size() Jarkko Sakkinen
@ 2019-04-17 16:34 ` Sasha Levin
  2019-04-23 11:42   ` Jarkko Sakkinen
  2019-04-17 17:00 ` Sasha Levin
  1 sibling, 1 reply; 5+ messages in thread
From: Sasha Levin @ 2019-04-17 16:34 UTC (permalink / raw)
  To: Jarkko Sakkinen; +Cc: stable, Yue Haibing

On Wed, Apr 17, 2019 at 06:24:20PM +0300, Jarkko Sakkinen wrote:
>From: Yue Haibing <yuehaibing@huawei.com>
>
>commit 32312418625764cdf740890ac9c78ca26a6a9d24 upstream

This is really commit b9d0a85d6b2e76630cfd4c475ee3af4109bfd87a upstream
(looks like James added his S-O-B which changed the commit hash).

>calc_tpm2_event_size() has an invalid signature because
>it returns a 'size_t' where as its signature says that
>it returns 'int'.
>
>Cc: <stable@vger.kernel.org>
>Fixes: 4d23cc323cdb ("tpm: add securityfs support for TPM 2.0 firmware event log")
>Suggested-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
>Signed-off-by: Yue Haibing <yuehaibing@huawei.com>
>Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
>Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>

I've queued it for 5.0, thanks!

--
Thanks,
Sasha

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] tpm: Fix the type of the return value in calc_tpm2_event_size()
  2019-04-17 15:24 [PATCH] tpm: Fix the type of the return value in calc_tpm2_event_size() Jarkko Sakkinen
  2019-04-17 16:34 ` Sasha Levin
@ 2019-04-17 17:00 ` Sasha Levin
  2019-04-23 11:45   ` Jarkko Sakkinen
  1 sibling, 1 reply; 5+ messages in thread
From: Sasha Levin @ 2019-04-17 17:00 UTC (permalink / raw)
  To: Jarkko Sakkinen; +Cc: stable, Yue Haibing

On Wed, Apr 17, 2019 at 06:24:20PM +0300, Jarkko Sakkinen wrote:
>From: Yue Haibing <yuehaibing@huawei.com>
>
>commit 32312418625764cdf740890ac9c78ca26a6a9d24 upstream
>
>calc_tpm2_event_size() has an invalid signature because
>it returns a 'size_t' where as its signature says that
>it returns 'int'.
>
>Cc: <stable@vger.kernel.org>
>Fixes: 4d23cc323cdb ("tpm: add securityfs support for TPM 2.0 firmware event log")
>Suggested-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
>Signed-off-by: Yue Haibing <yuehaibing@huawei.com>
>Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
>Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
>---
>backport v5.0.8
> drivers/char/tpm/eventlog/tpm2.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
>diff --git a/drivers/char/tpm/eventlog/tpm2.c b/drivers/char/tpm/eventlog/tpm2.c
>index 1b8fa9de2cac..130c3f227559 100644
>--- a/drivers/char/tpm/eventlog/tpm2.c
>+++ b/drivers/char/tpm/eventlog/tpm2.c
>@@ -37,8 +37,8 @@
>  *
>  * Returns size of the event. If it is an invalid event, returns 0.
>  */
>-static int calc_tpm2_event_size(struct tcg_pcr_event2 *event,
>-				struct tcg_pcr_event *event_header)
>+static size_t calc_tpm2_event_size(struct tcg_pcr_event2_head *event,
>+				   struct tcg_pcr_event *event_header)
> {
> 	struct tcg_efi_specid_event *efispecid;
> 	struct tcg_event_field *event_field;

But it seems like it breaks the build:

drivers/char/tpm/eventlog/tpm2.c:40:43: warning: ‘struct tcg_pcr_event2_head’ declared inside parameter list will not be visible outside of this definition or declaration
 static size_t calc_tpm2_event_size(struct tcg_pcr_event2_head *event,
                                           ^~~~~~~~~~~~~~~~~~~
drivers/char/tpm/eventlog/tpm2.c: In function ‘calc_tpm2_event_size’:
drivers/char/tpm/eventlog/tpm2.c:55:32: error: dereferencing pointer to incomplete type ‘struct tcg_pcr_event2_head’
  marker = marker + sizeof(event->pcr_idx) + sizeof(event->event_type)

Probably because c8faabfc6f480 is missing. I've reverted this patch from
stable for now.

--
Thanks,
Sasha

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] tpm: Fix the type of the return value in calc_tpm2_event_size()
  2019-04-17 16:34 ` Sasha Levin
@ 2019-04-23 11:42   ` Jarkko Sakkinen
  0 siblings, 0 replies; 5+ messages in thread
From: Jarkko Sakkinen @ 2019-04-23 11:42 UTC (permalink / raw)
  To: Sasha Levin; +Cc: stable, Yue Haibing

On Wed, Apr 17, 2019 at 12:34:23PM -0400, Sasha Levin wrote:
> On Wed, Apr 17, 2019 at 06:24:20PM +0300, Jarkko Sakkinen wrote:
> > From: Yue Haibing <yuehaibing@huawei.com>
> > 
> > commit 32312418625764cdf740890ac9c78ca26a6a9d24 upstream
> 
> This is really commit b9d0a85d6b2e76630cfd4c475ee3af4109bfd87a upstream
> (looks like James added his S-O-B which changed the commit hash).

Oops, thanks, will be more careful next time.

> 
> > calc_tpm2_event_size() has an invalid signature because
> > it returns a 'size_t' where as its signature says that
> > it returns 'int'.
> > 
> > Cc: <stable@vger.kernel.org>
> > Fixes: 4d23cc323cdb ("tpm: add securityfs support for TPM 2.0 firmware event log")
> > Suggested-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
> > Signed-off-by: Yue Haibing <yuehaibing@huawei.com>
> > Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
> > Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
> 
> I've queued it for 5.0, thanks!

Thank you.

/Jarkko

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] tpm: Fix the type of the return value in calc_tpm2_event_size()
  2019-04-17 17:00 ` Sasha Levin
@ 2019-04-23 11:45   ` Jarkko Sakkinen
  0 siblings, 0 replies; 5+ messages in thread
From: Jarkko Sakkinen @ 2019-04-23 11:45 UTC (permalink / raw)
  To: Sasha Levin; +Cc: stable, Yue Haibing

On Wed, Apr 17, 2019 at 01:00:41PM -0400, Sasha Levin wrote:
> On Wed, Apr 17, 2019 at 06:24:20PM +0300, Jarkko Sakkinen wrote:
> > From: Yue Haibing <yuehaibing@huawei.com>
> > 
> > commit 32312418625764cdf740890ac9c78ca26a6a9d24 upstream
> > 
> > calc_tpm2_event_size() has an invalid signature because
> > it returns a 'size_t' where as its signature says that
> > it returns 'int'.
> > 
> > Cc: <stable@vger.kernel.org>
> > Fixes: 4d23cc323cdb ("tpm: add securityfs support for TPM 2.0 firmware event log")
> > Suggested-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
> > Signed-off-by: Yue Haibing <yuehaibing@huawei.com>
> > Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
> > Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
> > ---
> > backport v5.0.8
> > drivers/char/tpm/eventlog/tpm2.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/char/tpm/eventlog/tpm2.c b/drivers/char/tpm/eventlog/tpm2.c
> > index 1b8fa9de2cac..130c3f227559 100644
> > --- a/drivers/char/tpm/eventlog/tpm2.c
> > +++ b/drivers/char/tpm/eventlog/tpm2.c
> > @@ -37,8 +37,8 @@
> >  *
> >  * Returns size of the event. If it is an invalid event, returns 0.
> >  */
> > -static int calc_tpm2_event_size(struct tcg_pcr_event2 *event,
> > -				struct tcg_pcr_event *event_header)
> > +static size_t calc_tpm2_event_size(struct tcg_pcr_event2_head *event,
> > +				   struct tcg_pcr_event *event_header)
> > {
> > 	struct tcg_efi_specid_event *efispecid;
> > 	struct tcg_event_field *event_field;
> 
> But it seems like it breaks the build:
> 
> drivers/char/tpm/eventlog/tpm2.c:40:43: warning: ‘struct tcg_pcr_event2_head’ declared inside parameter list will not be visible outside of this definition or declaration
> static size_t calc_tpm2_event_size(struct tcg_pcr_event2_head *event,
>                                           ^~~~~~~~~~~~~~~~~~~
> drivers/char/tpm/eventlog/tpm2.c: In function ‘calc_tpm2_event_size’:
> drivers/char/tpm/eventlog/tpm2.c:55:32: error: dereferencing pointer to incomplete type ‘struct tcg_pcr_event2_head’
>  marker = marker + sizeof(event->pcr_idx) + sizeof(event->event_type)
> 
> Probably because c8faabfc6f480 is missing. I've reverted this patch from
> stable for now.

Ugh. I'm for this weekend on leave. Looking this next week. Sorry
about wasted time :-(

/Jarkko

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-04-23 11:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-17 15:24 [PATCH] tpm: Fix the type of the return value in calc_tpm2_event_size() Jarkko Sakkinen
2019-04-17 16:34 ` Sasha Levin
2019-04-23 11:42   ` Jarkko Sakkinen
2019-04-17 17:00 ` Sasha Levin
2019-04-23 11:45   ` 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).