From: Matthew Garrett <mjg59@srcf.ucam.org>
To: linux-integrity@vger.kernel.org
Cc: peterhuewe@gmx.de, jarkko@kernel.org, jgg@ziepe.ca
Subject: Avoiding EBUSY on TPM writes
Date: Thu, 15 Jun 2023 22:09:46 +0100 [thread overview]
Message-ID: <20230615210946.GA13094@srcf.ucam.org> (raw)
We're running into a situation where concurrent TPM accesses can trigger
EBUSY on write due to there either being a queued command or a response
not yet having been read. Obviously one approach would be to retry, but
that involves us either spinning or waiting for an arbitrary amount of
time between attempts, which doesn't seem ideal. There's a poll
interface that tells us whether there's a response to read but (a) that
doesn't help in the enqueued command situation and (b) this would still
be racy - we could be notified that the response has been read, be
preempted, and have another process perform a write before we get the
opportunity to.
What's the right way to fix this? One approach would simply be to
replace the EBUSY with an interruptible sleep and wake the process when
the TPM is available, but that feels like it's technically an ABI break.
next reply other threads:[~2023-06-15 21:09 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-15 21:09 Matthew Garrett [this message]
2023-06-15 23:38 ` Avoiding EBUSY on TPM writes James Bottomley
2023-06-15 23:54 ` Matthew Garrett
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=20230615210946.GA13094@srcf.ucam.org \
--to=mjg59@srcf.ucam.org \
--cc=jarkko@kernel.org \
--cc=jgg@ziepe.ca \
--cc=linux-integrity@vger.kernel.org \
--cc=peterhuewe@gmx.de \
/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;
as well as URLs for NNTP newsgroup(s).