[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <74EC102D-BD18-4863-A7FB-C88439654C8C@oracle.com>
Date: Mon, 8 Feb 2021 16:05:01 -0700
From: Eric Snowberg <eric.snowberg@...cle.com>
To: Mickaël Salaün <mic@...ikod.net>
Cc: David Howells <dhowells@...hat.com>, dwmw2@...radead.org,
Jarkko Sakkinen <jarkko@...nel.org>,
James.Bottomley@...senPartnership.com, masahiroy@...nel.org,
michal.lkml@...kovi.net, jmorris@...ei.org, serge@...lyn.com,
ardb@...nel.org, Mimi Zohar <zohar@...ux.ibm.com>,
lszubowi@...hat.com, javierm@...hat.com, keyrings@...r.kernel.org,
linux-kernel@...r.kernel.org, linux-kbuild@...r.kernel.org,
linux-security-module@...r.kernel.org,
Tyler Hicks <tyhicks@...ux.microsoft.com>,
Eric Snowberg <eric.snowberg@...cle.com>
Subject: Re: Conflict with Mickaël Salaün's blacklist patches [was [PATCH v5 0/4] Add EFI_CERT_X509_GUID support for dbx/mokx entries]
> On Feb 6, 2021, at 11:30 AM, Mickaël Salaün <mic@...ikod.net> wrote:
>
> On 06/02/2021 02:14, Eric Snowberg wrote:
>
>> I have done some additional testing, I am seeing a regression. The blacklist
>> keyring is no longer picking up any of the hashes from the dbx during boot.
>> I backed out the merge with my changes (fdbbe7ceeb95090d09c33ce0497e0394c82aa33d)
>> and still see the regression. I then backed out Mickaël merge
>> (5bf1adccf5c41dbdd51d1f4de220d335d9548598) and it fixes the regression.
>>
>> On a x86 with the updated dbx from uefi.org, I’d expect to see 234 bin hash entries
>> in the blacklist keyring. With the current merged code, there is none.
>
> Hum, I missed a part in refactoring (commit
> f78e50c8f750c0ac6767ac1ed006360cf77c56c4). :/
> Could you please test the following patch?
>
> diff --git a/certs/blacklist.c b/certs/blacklist.c
> index 07c592ae5307..f998a2e85ddc 100644
> --- a/certs/blacklist.c
> +++ b/certs/blacklist.c
> @@ -197,13 +197,16 @@ int mark_hash_blacklisted(const u8 *hash, size_t
> hash_len,
> enum blacklist_hash_type hash_type)
> {
> const char *buffer;
> + int err;
>
> buffer = get_raw_hash(hash, hash_len, hash_type);
> if (IS_ERR(buffer))
> return PTR_ERR(buffer);
> + err = mark_raw_hash_blacklisted(buffer);
> kfree(buffer);
> - return 0;
> + return err;
> }
I applied this patch, it works better, but there is still a regression.
Most of the hashes show up in the blacklist keyring now. However some
do not, here is what I see in the log during boot:
[ 2.321876] blacklist: Problem blacklisting hash (-13)
[ 2.322729] blacklist: Problem blacklisting hash (-13)
[ 2.323549] blacklist: Problem blacklisting hash (-13)
[ 2.324369] blacklist: Problem blacklisting hash (-13)
> Is it possible to test these kind of dbx blacklist with Qemu?
Yes, just use OVMF.
Powered by blists - more mailing lists