From: Ilias Apalodimas <ilias.apalodimas@linaro.org>
To: Simon Glass <sjg@chromium.org>
Cc: u-boot@lists.denx.de
Subject: Re: [PATCH 3/3 v2] test/py: Account PCR updates properly during testing
Date: Tue, 13 Jun 2023 08:48:42 +0300 [thread overview]
Message-ID: <ZIgDOiIwCYUOGG4q@hera> (raw)
In-Reply-To: <CAPnjgZ35tkSpV-pK+6X4RmdTn=7oYwSa7gV3bs6mebrmp=MgOQ@mail.gmail.com>
On Mon, Jun 12, 2023 at 10:17:28PM +0100, Simon Glass wrote:
> Hi Ilias,
>
> On Wed, 7 Jun 2023 at 10:18, Ilias Apalodimas
> <ilias.apalodimas@linaro.org> wrote:
> >
> > Currently we only read the pcr updates once on test_tpm2_pcr_read().
> > It turns out that the tpm init sequence of force_init() which consists
> > of:
> > - tpm2 init
> > - tpm2 startup TPM2_SU_CLEAR
> > - tpm2 self_test full
> > - tpm2 clear TPM2_RH_LOCKOUT
> >
> > also counts as an update. Running this in the console verifies the
> > update bump
> > => tpm2 init
> > => tpm2 startup TPM2_SU_CLEAR
> > => tpm2 self_test full
> > => tpm pcr_read 10 $loadaddr
> > PCR #10 content (28 known updates):
> > 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> > 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> > => tpm2 clear TPM2_RH_LOCKOUT
> > => tpm pcr_read 10 $loadaddr
> > PCR #10 content (29 known updates):
> > 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> > 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> > =>
> >
> > With the recent changes of replacing 'tpm2 init' with 'tpm2 autostart'
> > we end up always running the full init. The reason is 'tpm init'
> > returns -EBUSY if the tpm is already open, while 'tpm autostart' handles
> > ths gracefully and continues with the initialization. It's worth noting
> > that this won't affect the device functionality at all since
> > retriggering the startup sequence and selftests has no side effects.
>
> This may be true for some TPMs.
The responses to the startup command are described by the spec, so unless
the device isn't a standard TPM, this should be safe
>
> >
> > Instead of relying on the initial value, reread the 'known updates'
> > just before updating the PCR to ensure we read the correct values
> > before testing
> >
> > Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
> > ---
> > Changes since v1:
> > - new patch to fix the python testing failures
> >
> > test/py/tests/test_tpm2.py | 6 ++++++
> > 1 file changed, 6 insertions(+)
> >
>
> Reviewed-by: Simon Glass <sjg@chromium.org>
>
> BTW this is an example of why I still want to be able to just init the
> TPM to a basic level. Here we see that autostart changes the PCRs.
>
It doesnt change the PCRs. That code is checking how many commands have
been sent to the TPM in total. In the previous version of the code 'tpm
init' would return -EBUSY and we would never re-run the next commands. The
new command returns 0 and as a result we end up running the TPM2_RH_LOCKOUT
again.
Thanks
/Ilias
>
> > diff --git a/test/py/tests/test_tpm2.py b/test/py/tests/test_tpm2.py
> > index 1ade66a7eda4..fce689cd992d 100644
> > --- a/test/py/tests/test_tpm2.py
> > +++ b/test/py/tests/test_tpm2.py
> > @@ -272,6 +272,12 @@ def test_tpm2_pcr_extend(u_boot_console):
> > force_init(u_boot_console)
> > ram = u_boot_utils.find_ram_base(u_boot_console)
> >
> > + read_pcr = u_boot_console.run_command('tpm2 pcr_read 0 0x%x' % (ram + 0x20))
> > + output = u_boot_console.run_command('echo $?')
> > + assert output.endswith('0')
> > + str = re.findall(r'\d+ known updates', read_pcr)[0]
> > + updates = int(re.findall(r'\d+', str)[0])
> > +
> > u_boot_console.run_command('tpm2 pcr_extend 0 0x%x' % ram)
> > output = u_boot_console.run_command('echo $?')
> > assert output.endswith('0')
> > --
> > 2.39.2
> >
next prev parent reply other threads:[~2023-06-13 5:48 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-07 9:18 [PATCH 0/3 v2] tpm: add 'tpm autostart command' Ilias Apalodimas
2023-06-07 9:18 ` [PATCH 1/3 v2] tpm: Add 'tpm autostart' shell command Ilias Apalodimas
2023-06-07 9:18 ` [PATCH 2/3 v2] test/py: replace 'tpm2 init, startup, selftest' sequences Ilias Apalodimas
2023-06-07 9:18 ` [PATCH 3/3 v2] test/py: Account PCR updates properly during testing Ilias Apalodimas
2023-06-12 21:17 ` Simon Glass
2023-06-13 5:48 ` Ilias Apalodimas [this message]
2023-06-13 14:58 ` Simon Glass
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=ZIgDOiIwCYUOGG4q@hera \
--to=ilias.apalodimas@linaro.org \
--cc=sjg@chromium.org \
--cc=u-boot@lists.denx.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 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.