]> git.baikalelectronics.ru Git - kernel.git/commit
X.509: Fix crash caused by NULL pointer
authorTianjia Zhang <tianjia.zhang@linux.alibaba.com>
Tue, 19 Jan 2021 00:13:19 +0000 (00:13 +0000)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 20 Jan 2021 19:33:51 +0000 (11:33 -0800)
commit7fbc7f33887fb0e766aa3073869e9974d76b2799
treef3228da0199efa9d387e78fb3967ef64e8a03847
parentc83d0b5d2d67a7ce1db02ad60604d061409b9617
X.509: Fix crash caused by NULL pointer

On the following call path, `sig->pkey_algo` is not assigned
in asymmetric_key_verify_signature(), which causes runtime
crash in public_key_verify_signature().

  keyctl_pkey_verify
    asymmetric_key_verify_signature
      verify_signature
        public_key_verify_signature

This patch simply check this situation and fixes the crash
caused by NULL pointer.

Fixes: e9ee8b36514a ("X.509: support OSCCA SM2-with-SM3 certificate verification")
Reported-by: Tobias Markus <tobias@markus-regensburg.de>
Signed-off-by: Tianjia Zhang <tianjia.zhang@linux.alibaba.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-and-tested-by: Toke Høiland-Jørgensen <toke@redhat.com>
Tested-by: João Fonseca <jpedrofonseca@ua.pt>
Acked-by: Jarkko Sakkinen <jarkko@kernel.org>
Cc: stable@vger.kernel.org # v5.10+
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
crypto/asymmetric_keys/public_key.c