On Thu, 8 May 2025 12:25:15 +0800 Coiby Xu <coxu@xxxxxxxxxx> wrote:
>
>Acked-by: Baoquan He <bhe@xxxxxxxxxx>
Hi Andrew,
It seems this patch was missed.
January 2024. Yes, it's fair to assume that it was missed ;)
Will you pick it up?
Sure.
Without this patch,
kdump kernel will fail to be loaded by the kexec_file_load,
[...]
[ 139.736948] UBSAN: array-index-out-of-bounds in arch/x86/kernel/crash.c:350:25
[ 139.742360] index 0 is out of range for type 'range [*]'
Do we know why this has appeared at such a late date? The reporter
must be doing something rare.
Baoquan, please re-review this?
A -stable backport is clearly required. A Fixes: would be nice, but I
assume this goes back a long time so it isn't worth spending a lot of
time working out when this was introduced.
The patch needed a bit of work to apply to current code. I did the
below. It compiles.
--- a/arch/x86/kernel/crash.c~x86-kexec-fix-potential-cmem-ranges-out-of-bounds
+++ a/arch/x86/kernel/crash.c
@@ -165,8 +165,18 @@ static struct crash_mem *fill_up_crash_e
/*
* Exclusion of crash region and/or crashk_low_res may cause
* another range split. So add extra two slots here.
+ *
+ * Exclusion of low 1M may not cause another range split, because the
+ * range of exclude is [0, 1M] and the condition for splitting a new
+ * region is that the start, end parameters are both in a certain
+ * existing region in cmem and cannot be equal to existing region's
+ * start or end. Obviously, the start of [0, 1M] cannot meet this
+ * condition.
+ *
+ * But in order to lest the low 1M could be changed in the future,
+ * (e.g. [stare, 1M]), add a extra slot.
*/
- nr_ranges += 2;
+ nr_ranges += 3;
cmem = vzalloc(struct_size(cmem, ranges, nr_ranges));
if (!cmem)
return NULL;
@@ -317,9 +327,16 @@ int crash_setup_memmap_entries(struct ki
* split. So use two slots here.
*/
nr_ranges = 2;
- cmem = vzalloc(struct_size(cmem, ranges, nr_ranges));
+ /*
+ * In the current x86 architecture code, the elfheader is always
+ * allocated at crashk_res.start. But it depends on the allocation
+ * position of elfheader in crashk_res. To avoid potential out of
+ * bounds in future, add a extra slot.
+ */
+ cmem = vzalloc(struct_size(cmem, ranges, 2));
if (!cmem)
return -ENOMEM;
+ cmem->max_nr_ranges = 2;
cmem->max_nr_ranges = nr_ranges;
cmem->nr_ranges = 0;
_