From: Petr Vandrovec <petr-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org>
To: Jarkko Sakkinen
<jarkko.sakkinen-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
Cc: tpmdd-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
Subject: Re: [PATCH 4/4] Improve handling of TPM2 event logs
Date: Wed, 5 Apr 2017 13:29:29 -0700 [thread overview]
Message-ID: <58E553A9.8010804@vmware.com> (raw)
In-Reply-To: <20170405114650.c2kkkz2th2emalcc-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Jarkko Sakkinen wrote:
> On Wed, Mar 29, 2017 at 12:43:30AM -0700, Petr Vandrovec wrote:
>> From: Petr Vandrovec<petr-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org>
>>
>> When TPM2 log has entries with more than 3 digests, or with digests
>> not listed in the log header, log gets misparsed, eventually
>> leading to kernel complaint that code tried to vmalloc 512MB of
>> memory (I have no idea what would happen on bigger system).
>
> It would be easier to follow this if you would give a concrete
> example of such situation. Since you are contributing this, you
> must must have bumped into this, haven't you?
Yes. Our firmware reports TPM2 log with 4 digests (SHA1, SHA256,
SHA384, SHA512). Current code in kernel skips over first 3 digests
only, trying to parse 4th digest as event length, coming to conclusion
that entry is hundred of megabytes or few gigabytes long, and then
failing to vmalloc() that amount of memory.
You can find parsed textual log at
https://drive.google.com/open?id=0B7WL11GSMhrQRDBLWjc3bEZQTEk (192KB),
and binary log at
https://drive.google.com/open?id=0B7WL11GSMhrQQ1RCMmRmM2paR3c (48KB).
I hit situation with malformed event log on my Dell laptop - after TPM
firmware got updated from 1.2 to 2.0, chip & everything is reported as
TPM2, except that log stays in TPM1.2 format.
>> So code should not parse only first 3 digests: both event header
>> and event itself are already in memory, so we can parse any number
>> of digests, as long as we do not try to parse whole memory when
>> given count of 0xFFFFFFFF.
>>
>> So this change:
>>
>> * Rejects event entry with more digests than log header describes.
>> Digest types should be unique, and all should be described in
>> log header, so there cannot be more digests in the event than in
>> the header.
>>
>> * Reject event entry with digest that is not described in the
>> log header. In theory code could hardcode information about
>> digest IDs already assigned by TCG, but if firmware authors
>> cannot get event log format right, why should anyone believe
>> that they got event log content right.
>
>
> I have to say that I really didn't what this change is doing after
> reading these. I only undestood what this commit is doing by reading
> the code change.
>
> So we have a constant for banks and you are reading the number of banks
> from the event to make it more dynamic? Why it requires such a complicated
> explanation? And what is your short summary trying to say?
My short summary is trying to say that there is no reason to restrict
parsing to only 3 digests (static number of banks), as long as we
validate that log is logically consistent.
Petr
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
next prev parent reply other threads:[~2017-04-05 20:29 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-29 7:43 [PATCH 4/4] Improve handling of TPM2 event logs Petr Vandrovec
[not found] ` <20170329074330.b2rbsbt2zc7o22q7-WbvboCQVrrgDIl+Cyo8nDyLysJ1jNyTM@public.gmane.org>
2017-04-05 11:46 ` Jarkko Sakkinen
[not found] ` <20170405114650.c2kkkz2th2emalcc-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2017-04-05 20:29 ` Petr Vandrovec [this message]
[not found] ` <58E553A9.8010804-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org>
2017-04-06 6:35 ` Jarkko Sakkinen
[not found] ` <20170406063534.nw33ck7gek7g4vur-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2017-04-06 6:44 ` Jarkko Sakkinen
[not found] ` <20170406064454.mwb52hnl54tqxss2-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2017-04-06 6:45 ` Jarkko Sakkinen
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=58E553A9.8010804@vmware.com \
--to=petr-pghwnbhtmq7qt0dzr+alfa@public.gmane.org \
--cc=jarkko.sakkinen-VuQAYsv1563Yd54FQh9/CA@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.