certs: Fix blacklisted hexadecimal hash string check
authorMickaël Salaün <mic@linux.microsoft.com>
Fri, 20 Nov 2020 18:04:18 +0000 (19:04 +0100)
committerDavid Howells <dhowells@redhat.com>
Thu, 21 Jan 2021 16:16:10 +0000 (16:16 +0000)
commit84ffbefd657b25dbca0dbd7772226fb83b8213b8
tree54bf19b1cc612325fad5fb6f43e803d92f934022
parent0b2d443bf52756a9c364a41492dae537bc62683f
certs: Fix blacklisted hexadecimal hash string check

When looking for a blacklisted hash, bin2hex() is used to transform a
binary hash to an ascii (lowercase) hexadecimal string.  This string is
then search for in the description of the keys from the blacklist
keyring.  When adding a key to the blacklist keyring,
blacklist_vet_description() checks the hash prefix and the hexadecimal
string, but not that this string is lowercase.  It is then valid to set
hashes with uppercase hexadecimal, which will be silently ignored by the
kernel.

Add an additional check to blacklist_vet_description() to check that
hexadecimal strings are in lowercase.

Signed-off-by: Mickaël Salaün <mic@linux.microsoft.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Ben Boeckel <mathstuf@gmail.com>
Cc: David Woodhouse <dwmw2@infradead.org>
certs/blacklist.c