]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
kernel: kexec_file: fix error return code of kexec_calculate_store_digests()
authorJia-Ju Bai <baijiaju1990@gmail.com>
Fri, 7 May 2021 01:04:38 +0000 (18:04 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 22 May 2021 08:38:28 +0000 (10:38 +0200)
commitd15fd53afac908af3b8ad5233aae8fdeb67acbc7
tree26a1c2ee54a4685f20995170df418713429d574c
parentab079e85405922f19fe9a87f4657eab90e9dac06
kernel: kexec_file: fix error return code of kexec_calculate_store_digests()

[ Upstream commit 31d82c2c787d5cf65fedd35ebbc0c1bd95c1a679 ]

When vzalloc() returns NULL to sha_regions, no error return code of
kexec_calculate_store_digests() is assigned.  To fix this bug, ret is
assigned with -ENOMEM in this case.

Link: https://lkml.kernel.org/r/20210309083904.24321-1-baijiaju1990@gmail.com
Fixes: a43cac0d9dc2 ("kexec: split kexec_file syscall code to kexec_file.c")
Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
Reported-by: TOTE Robot <oslab@tsinghua.edu.cn>
Acked-by: Baoquan He <bhe@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
kernel/kexec_file.c