Sashiko AI code review pointed out there is a TOCTOU (Time-of-Check to Time-of-Use) race condition in prepare_elf_headers() between the initial pass that counts System RAM ranges and the second pass that populates them. If a memory hotplug event occurs between these two steps, the number of memory regions may increase, causing an out-of-bounds write to the cmem->ranges[] array.
Directly introducing get_online_mems() inside prepare_elf_headers() would trigger an immediate recursive read-after-write deadlock when invoked by the runtime hotplug notification path (which already holds the hotplug write lock). To eliminate the TOCTOU window safely without deadlock risks, move the get_online_mems() read lock to the top-level architecture image loaders. Since these top-level loaders are strictly executed on the initial system call path and are never re-entered by the runtime hotplug notifier, this approach physically isolates the locking contexts. The system memory ranges are forced to be statically frozen during the entire layout generation, eradicating the buffer overflow vulnerability. Cc: Catalin Marinas <[email protected]> Cc: Will Deacon <[email protected]> Cc: Andrew Morton <[email protected]> Cc: Baoquan He <[email protected]> Cc: Breno Leitao <[email protected]> Cc: [email protected] Fixes: 3751e728cef2 ("arm64: kexec_file: add crash dump support") Signed-off-by: Jinjie Ruan <[email protected]> --- arch/arm64/kernel/kexec_image.c | 4 ++++ arch/arm64/kernel/machine_kexec_file.c | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/arch/arm64/kernel/kexec_image.c b/arch/arm64/kernel/kexec_image.c index 79efeaeb71e9..884e446f08e3 100644 --- a/arch/arm64/kernel/kexec_image.c +++ b/arch/arm64/kernel/kexec_image.c @@ -12,6 +12,7 @@ #include <linux/errno.h> #include <linux/kernel.h> #include <linux/kexec.h> +#include <linux/memory_hotplug.h> #include <linux/pe.h> #include <linux/string.h> #include <asm/byteorder.h> @@ -96,11 +97,14 @@ static void *image_load(struct kimage *image, #ifdef CONFIG_CRASH_DUMP if (image->type == KEXEC_TYPE_CRASH) { + get_online_mems(); ret = prepare_elf_headers(&headers, &headers_sz); if (ret) { pr_err("Preparing elf core header failed\n"); + put_online_mems(); return ERR_PTR(ret); } + put_online_mems(); image->elf_headers = headers; image->elf_headers_sz = headers_sz; } diff --git a/arch/arm64/kernel/machine_kexec_file.c b/arch/arm64/kernel/machine_kexec_file.c index daf81a873bbd..c0ace89ded92 100644 --- a/arch/arm64/kernel/machine_kexec_file.c +++ b/arch/arm64/kernel/machine_kexec_file.c @@ -59,6 +59,11 @@ int prepare_elf_headers(void **addr, unsigned long *sz) cmem->max_nr_ranges = nr_ranges; cmem->nr_ranges = 0; for_each_mem_range(i, &start, &end) { + if (WARN_ON_ONCE(cmem->nr_ranges >= cmem->max_nr_ranges)) { + ret = -EAGAIN; + goto out; + } + cmem->ranges[cmem->nr_ranges].start = start; cmem->ranges[cmem->nr_ranges].end = end - 1; cmem->nr_ranges++; -- 2.34.1
