]> git.baikalelectronics.ru Git - kernel.git/commit
crypto: ccp - During shutdown, check SEV data pointer before using
authorTom Lendacky <thomas.lendacky@amd.com>
Thu, 16 Jun 2022 15:26:18 +0000 (10:26 -0500)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 24 Jun 2022 09:12:29 +0000 (17:12 +0800)
commit1ce00ca550a70f4d530cb8ccfc03dbe9563bf3ed
tree9298da00b44dfcbdfd5101605a9eb7baa0e0a59f
parentf99e8f32fd7ecc2ef30cbb77a45fa4ddddd89dd4
crypto: ccp - During shutdown, check SEV data pointer before using

On shutdown, each CCP device instance performs shutdown processing.
However, __sev_platform_shutdown_locked() uses the controlling psp
structure to obtain the pointer to the sev_device structure. However,
during driver initialization, it is possible that an error can be received
from the firmware that results in the sev_data pointer being cleared from
the controlling psp structure. The __sev_platform_shutdown_locked()
function does not check for this situation and will segfault.

While not common, this scenario should be accounted for. Add a check for a
NULL sev_device structure before attempting to use it.

Fixes: 9ad48cb6c76c ("crypto: ccp - shutdown SEV firmware on kexec")
Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/ccp/sev-dev.c