[PATCH] arm64: kexec_file: fix memory leakage in create_dtb() when fdt_open_into() fails
qiuguorui1
qiuguorui1 at huawei.com
Thu Feb 18 07:59:00 EST 2021
in function create_dtb(), if fdt_open_into() fails, we need to vfree
buf before return.
Fixes: 52b2a8af74360 ("arm64: kexec_file: load initrd and device-tree")
Cc: stable at vger.kernel.org # v5.0
Signed-off-by: qiuguorui1 <qiuguorui1 at huawei.com>
---
arch/arm64/kernel/machine_kexec_file.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/arch/arm64/kernel/machine_kexec_file.c b/arch/arm64/kernel/machine_kexec_file.c
index 03210f644790..0cde47a63beb 100644
--- a/arch/arm64/kernel/machine_kexec_file.c
+++ b/arch/arm64/kernel/machine_kexec_file.c
@@ -182,8 +182,10 @@ static int create_dtb(struct kimage *image,
/* duplicate a device tree blob */
ret = fdt_open_into(initial_boot_params, buf, buf_size);
- if (ret)
+ if (ret) {
+ vfree(buf);
return -EINVAL;
+ }
ret = setup_dtb(image, initrd_load_addr, initrd_len,
cmdline, buf);
--
2.12.3
More information about the linux-arm-kernel
mailing list