From: Eric Biggers Date: Mon, 9 Oct 2017 19:43:20 +0000 (-0700) Subject: lib/digsig: fix dereference of NULL user_key_payload X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a77cf1b983190f7cefffb5ff5cf358d7944d04b0;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git lib/digsig: fix dereference of NULL user_key_payload commit 192cabd6a296cbc57b3d8c05c4c89d87fc102506 upstream. digsig_verify() requests a user key, then accesses its payload. However, a revoked key has a NULL payload, and we failed to check for this. request_key() *does* skip revoked keys, but there is still a window where the key can be revoked before we acquire its semaphore. Fix it by checking for a NULL payload, treating it like a key which was already revoked at the time it was requested. Fixes: 051dbb918c7f ("crypto: digital signature verification support") Reviewed-by: James Morris Cc: [v3.3+] Cc: Dmitry Kasatkin Signed-off-by: Eric Biggers Signed-off-by: David Howells Signed-off-by: Willy Tarreau --- diff --git a/lib/digsig.c b/lib/digsig.c index 2f31e6a45f0a..ae703dfc9731 100644 --- a/lib/digsig.c +++ b/lib/digsig.c @@ -86,6 +86,12 @@ static int digsig_verify_rsa(struct key *key, down_read(&key->sem); ukp = key->payload.data; + if (!ukp) { + /* key was revoked before we acquired its semaphore */ + err = -EKEYREVOKED; + goto err1; + } + if (ukp->datalen < sizeof(*pkh)) goto err1;