* Re: [PATCH 1/8] tpm: block messages while suspended
[not found] ` <20190617225134.GA30762@ziepe.ca>
@ 2019-06-21 1:03 ` Stephen Boyd
2019-06-24 14:26 ` Herbert Xu
0 siblings, 1 reply; 3+ messages in thread
From: Stephen Boyd @ 2019-06-21 1:03 UTC (permalink / raw)
To: Jason Gunthorpe
Cc: Peter Huewe, Jarkko Sakkinen, Andrey Pronin, linux-kernel,
Arnd Bergmann, Greg Kroah-Hartman, linux-integrity, devicetree,
Duncan Laurie, Guenter Roeck, Matt Mackall, Herbert Xu,
linux-crypto
Quoting Jason Gunthorpe (2019-06-17 15:51:34)
> On Fri, Jun 14, 2019 at 11:12:36AM -0700, Stephen Boyd wrote:
> > Quoting Jason Gunthorpe (2019-06-13 16:26:13)
> > > On Thu, Jun 13, 2019 at 11:09:24AM -0700, Stephen Boyd wrote:
> > > > From: Andrey Pronin <apronin@chromium.org>
> > > >
> > > > Other drivers or userspace may initiate sending a message to the tpm
> > > > while the device itself and the controller of the bus it is on are
> > > > suspended. That may break the bus driver logic.
> > > > Block sending messages while the device is suspended.
> > > >
> > > > Signed-off-by: Andrey Pronin <apronin@chromium.org>
> > > > Signed-off-by: Stephen Boyd <swboyd@chromium.org>
> > > >
> > > > I don't think this was ever posted before.
> > >
> > > Use a real lock.
> > >
> >
> > To make sure the bit is tested under a lock so that suspend/resume can't
> > update the bit in parallel?
>
> No, just use a real lock, don't make locks out of test bit/set bit
>
Ok. I looked back on the history of this change in our kernel (seems it
wasn't attempted upstream for some time) and it looks like the problem
may have been that the khwrng kthread (i.e. hwrng_fill()) isn't frozen
across suspend/resume. This kthread runs concurrently with devices being
resumed, the cr50 hardware is still suspended, and then a tpm command is
sent and it hangs the I2C bus because the device hasn't been properly
resumed yet.
I suspect a better approach than trying to hold of all TPM commands
across suspend/resume would be to fix the caller here to not even try to
read the hwrng during this time. It's a general problem for other hwrngs
that have some suspend/resume hooks too. This kthread is going to be
running while suspend/resume is going on if the random entropy gets too
low, and that probably shouldn't be the case.
What do you think of the attached patch? I haven't tested it, but it
would make sure that the kthread is frozen so that the hardware can be
resumed before the kthread is thawed and tries to go touch the hardware.
----8<-----
diff --git a/drivers/char/hw_random/core.c b/drivers/char/hw_random/core.c
index 95be7228f327..3b88af3149a7 100644
--- a/drivers/char/hw_random/core.c
+++ b/drivers/char/hw_random/core.c
@@ -13,6 +13,7 @@
#include <linux/delay.h>
#include <linux/device.h>
#include <linux/err.h>
+#include <linux/freezer.h>
#include <linux/fs.h>
#include <linux/hw_random.h>
#include <linux/kernel.h>
@@ -421,7 +422,9 @@ static int hwrng_fillfn(void *unused)
{
long rc;
- while (!kthread_should_stop()) {
+ set_freezable();
+
+ while (!kthread_freezable_should_stop(NULL)) {
struct hwrng *rng;
rng = get_current_rng();
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/8] tpm: block messages while suspended
2019-06-21 1:03 ` [PATCH 1/8] tpm: block messages while suspended Stephen Boyd
@ 2019-06-24 14:26 ` Herbert Xu
2019-07-16 18:28 ` Stephen Boyd
0 siblings, 1 reply; 3+ messages in thread
From: Herbert Xu @ 2019-06-24 14:26 UTC (permalink / raw)
To: Stephen Boyd
Cc: Jason Gunthorpe, Peter Huewe, Jarkko Sakkinen, Andrey Pronin,
linux-kernel, Arnd Bergmann, Greg Kroah-Hartman, linux-integrity,
devicetree, Duncan Laurie, Guenter Roeck, Matt Mackall,
linux-crypto
On Thu, Jun 20, 2019 at 06:03:17PM -0700, Stephen Boyd wrote:
>
> What do you think of the attached patch? I haven't tested it, but it
> would make sure that the kthread is frozen so that the hardware can be
> resumed before the kthread is thawed and tries to go touch the hardware.
Looks good to me.
Cheers,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/8] tpm: block messages while suspended
2019-06-24 14:26 ` Herbert Xu
@ 2019-07-16 18:28 ` Stephen Boyd
0 siblings, 0 replies; 3+ messages in thread
From: Stephen Boyd @ 2019-07-16 18:28 UTC (permalink / raw)
To: Herbert Xu
Cc: Jason Gunthorpe, Peter Huewe, Jarkko Sakkinen, Andrey Pronin,
linux-kernel, Arnd Bergmann, Greg Kroah-Hartman, linux-integrity,
devicetree, Duncan Laurie, Guenter Roeck, Matt Mackall,
linux-crypto
Quoting Herbert Xu (2019-06-24 07:26:54)
> On Thu, Jun 20, 2019 at 06:03:17PM -0700, Stephen Boyd wrote:
> >
> > What do you think of the attached patch? I haven't tested it, but it
> > would make sure that the kthread is frozen so that the hardware can be
> > resumed before the kthread is thawed and tries to go touch the hardware.
>
> Looks good to me.
>
Thanks for checking. I haven't been able to reproduce the problem yet to
confirm this is actually fixing anything, even after tweaking the sysctl
values for khwrng to try and force the thread to run continuously.
From reading the bug report that caused this 'is_suspended' code to be
added to the driver I'm fairly convinced this is the right solution. To
give some more background, it looks like we use s2idle suspend (i.e.
all CPUs are idle across suspend) and then we have the kthread running
to ask the hardware for some more random numbers. The i2c transaction
fails when asking the hwrng for data, and we see these messages printed
on the resume path:
i2c_designware i2c_designware.2: i2c_dw_handle_tx_abort: lost arbitration
tpm tpm0: i2c transfer failed (attempt 3/3): -11
tpm0: tpm_transmit: tpm_send: error -11
hwrng: no data available
Userspace tasks are thawed after this failure so it looks like something
in the kernel kicks khwrng to grab more data before the i2c bus can be
resumed.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-07-16 18:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20190613180931.65445-1-swboyd@chromium.org>
[not found] ` <20190613180931.65445-2-swboyd@chromium.org>
[not found] ` <20190613232613.GH22901@ziepe.ca>
[not found] ` <5d03e394.1c69fb81.f028c.bffb@mx.google.com>
[not found] ` <20190617225134.GA30762@ziepe.ca>
2019-06-21 1:03 ` [PATCH 1/8] tpm: block messages while suspended Stephen Boyd
2019-06-24 14:26 ` Herbert Xu
2019-07-16 18:28 ` Stephen Boyd
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).