From: sashiko-bot@kernel.org
To: "Jinjie Ruan" <ruanjinjie@huawei.com>
Cc: robh@kernel.org, devicetree@vger.kernel.org, conor+dt@kernel.org
Subject: Re: [PATCH v17 07/10] LoongArch: kexec_file: Use crash_prepare_headers() helper to simplify code
Date: Mon, 29 Jun 2026 11:06:23 +0000 [thread overview]
Message-ID: <20260629110624.19FAD1F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260629094746.191843-8-ruanjinjie@huawei.com>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] Concurrent memory hotplug can modify `memblock.memory` during `kexec_file_load()`, causing an out-of-bounds write on `cmem->ranges[]` and use-after-free on `memblock.memory.regions`.
--
commit 144c95098f9114fc6eb269028a7cf5e5b2d79839
Author: Jinjie Ruan <ruanjinjie@huawei.com>
LoongArch: kexec_file: Use crash_prepare_headers() helper to simplify code
This commit simplifies the kexec_file code by replacing the existing
prepare_elf_headers() with the generic crash_prepare_headers() helper.
It implements the architecture-specific arch_get_system_nr_ranges()
and arch_crash_populate_cmem() functions using for_each_mem_range.
> diff --git a/arch/loongarch/kernel/machine_kexec_file.c b/arch/loongarch/kernel/machine_kexec_file.c
> --- a/arch/loongarch/kernel/machine_kexec_file.c
> +++ b/arch/loongarch/kernel/machine_kexec_file.c
[ ... ]
> -static int prepare_elf_headers(void **addr, unsigned long *sz)
> +unsigned int arch_get_system_nr_ranges(void)
> {
> - int ret, nr_ranges;
> - uint64_t i;
> + int nr_ranges = 2; /* for exclusion of crashkernel region */
> phys_addr_t start, end;
> - struct crash_mem *cmem;
> + uint64_t i;
>
> - nr_ranges = 2; /* for exclusion of crashkernel region */
> for_each_mem_range(i, &start, &end)
> nr_ranges++;
>
> - cmem = kmalloc_flex(*cmem, ranges, nr_ranges);
> - if (!cmem)
> - return -ENOMEM;
> + return nr_ranges;
> +}
> +
> +int arch_crash_populate_cmem(struct crash_mem *cmem)
> +{
> + phys_addr_t start, end;
> + uint64_t i;
>
> - cmem->max_nr_ranges = nr_ranges;
> - cmem->nr_ranges = 0;
> for_each_mem_range(i, &start, &end) {
> cmem->ranges[cmem->nr_ranges].start = start;
> cmem->ranges[cmem->nr_ranges].end = end - 1;
> cmem->nr_ranges++;
> }
[Severity: High]
This is a pre-existing issue, and was not introduced by the patch under
review, but could this loop overflow cmem->ranges[]?
The crash_prepare_headers() function first counts the memblock memory ranges
via arch_get_system_nr_ranges() to allocate the cmem array, and then
populates it using arch_crash_populate_cmem().
Neither of these functions appears to hold the mem_hotplug_lock via
get_online_mems(). If a concurrent memory hotplug event adds a new memory
range via memblock_add_node() between the counting and population steps,
does the loop here blindly increment cmem->nr_ranges past cmem->max_nr_ranges
and cause a heap out-of-bounds write?
Furthermore, if the hotplug event triggers memblock_double_array(), the
underlying memblock.memory.regions array might be reallocated and freed.
Could this lead to a use-after-free when for_each_mem_range() iterates
over the stale array pointer?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260629094746.191843-1-ruanjinjie@huawei.com?part=7
next prev parent reply other threads:[~2026-06-29 11:06 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-29 9:47 [PATCH v17 00/10] arm64/riscv: Add support for crashkernel CMA reservation Jinjie Ruan
2026-06-29 9:47 ` Jinjie Ruan
2026-06-29 9:47 ` [PATCH v17 01/10] riscv: kexec_file: Fix crashk_low_res not exclude bug Jinjie Ruan
2026-06-29 9:47 ` Jinjie Ruan
2026-06-29 9:58 ` sashiko-bot
2026-06-29 9:47 ` [PATCH v17 02/10] powerpc/crash: sort crash memory ranges before preparing elfcorehdr Jinjie Ruan
2026-06-29 9:47 ` Jinjie Ruan
2026-06-29 9:47 ` [PATCH v17 03/10] crash: Add crash_prepare_headers() to exclude crash kernel memory Jinjie Ruan
2026-06-29 9:47 ` Jinjie Ruan
2026-06-29 10:19 ` sashiko-bot
2026-06-29 9:47 ` [PATCH v17 04/10] arm64: kexec_file: Use crash_prepare_headers() helper to simplify code Jinjie Ruan
2026-06-29 9:47 ` Jinjie Ruan
2026-06-29 10:31 ` sashiko-bot
2026-06-29 9:47 ` [PATCH v17 05/10] x86/crash: " Jinjie Ruan
2026-06-29 9:47 ` Jinjie Ruan
2026-06-29 10:41 ` sashiko-bot
2026-06-29 9:47 ` [PATCH v17 06/10] riscv: kexec_file: " Jinjie Ruan
2026-06-29 9:47 ` Jinjie Ruan
2026-06-29 10:53 ` sashiko-bot
2026-06-29 11:28 ` Guo Ren
2026-06-29 11:28 ` Guo Ren
2026-06-29 9:47 ` [PATCH v17 07/10] LoongArch: " Jinjie Ruan
2026-06-29 9:47 ` Jinjie Ruan
2026-06-29 11:06 ` sashiko-bot [this message]
2026-06-29 9:47 ` [PATCH v17 08/10] powerpc/kexec_file: Use crash_exclude_core_ranges() helper Jinjie Ruan
2026-06-29 9:47 ` Jinjie Ruan
2026-06-29 9:47 ` [PATCH v17 09/10] arm64: kexec_file: Add support for crashkernel CMA reservation Jinjie Ruan
2026-06-29 9:47 ` Jinjie Ruan
2026-06-29 9:47 ` [PATCH v17 10/10] riscv: " Jinjie Ruan
2026-06-29 9:47 ` Jinjie Ruan
2026-06-29 11:33 ` sashiko-bot
2026-06-30 15:49 ` [PATCH v17 00/10] arm64/riscv: " Mike Rapoport
2026-06-30 15:49 ` Mike Rapoport
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260629110624.19FAD1F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=robh@kernel.org \
--cc=ruanjinjie@huawei.com \
--cc=sashiko-reviews@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.