From: Baoquan He <bhe@redhat.com>
To: fuqiang wang <fuqiang.wang@easystack.cn>
Cc: Vivek Goyal <vgoyal@redhat.com>, Dave Young <dyoung@redhat.com>,
kexec@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] kexec: avoid out of bounds in crash_exclude_mem_range()
Date: Thu, 14 Dec 2023 18:29:01 +0800 [thread overview]
Message-ID: <ZXrY7QbXAlxydsSC@MiWiFi-R3L-srv> (raw)
In-Reply-To: <e588c619-9b97-4627-bce1-b595c757e5c4@easystack.cn>
On 11/30/23 at 09:20pm, fuqiang wang wrote:
>
> On 2023/11/30 15:44, Baoquan He wrote:
> > On 11/27/23 at 10:56am, fuqiang wang wrote:
> > > When the split happened, judge whether mem->nr_ranges is equal to
> > > mem->max_nr_ranges. If it is true, return -ENOMEM.
> > >
> > > The advantage of doing this is that it can avoid array bounds caused by
> > > some bugs. E.g., Before commit 4831be702b95 ("arm64/kexec: Fix missing
> > > extra range for crashkres_low."), reserve both high and low memories for
> > > the crashkernel may cause out of bounds.
> > >
> > > On the other hand, move this code before the split to ensure that the
> > > array will not be changed when return error.
> > If out of array boundary is caused, means the laoding failed, whether
> > the out of boundary happened or not. I don't see how this code change
> > makes sense. Do I miss anything?
> >
> > Thanks
> > Baoquan
> >
> Hi baoquan,
>
> In some configurations, out of bounds may not cause crash_exclude_mem_range()
> returns error, then the load will succeed.
>
> E.g.
> There is a cmem before execute crash_exclude_mem_range():
>
> cmem = {
> max_nr_ranges = 3
> nr_ranges = 2
> ranges = {
> {start = 1, end = 1000}
> {start = 1001, end = 2000}
> }
> }
>
> After executing twice crash_exclude_mem_range() with the start/end params
> 100/200, 300/400 respectively, the cmem will be:
>
> cmem = {
> max_nr_ranges = 3
> nr_ranges = 4 <== nr_ranges > max_nr_ranges
> ranges = {
> {start = 1, end = 99 }
> {start = 201, end = 299 }
> {start = 401, end = 1000}
> {start = 1001, end = 2000} <== OUT OF BOUNDS
> }
> }
Let me borrow your example and copy them here, but I will switch the
order of start/end params 100/200, 300/400 executing at below:
There is a cmem before execute crash_exclude_mem_range():
cmem = {
max_nr_ranges = 3
nr_ranges = 2
ranges = {
{start = 1, end = 1000}
{start = 1001, end = 2000}
}
}
After executing twice crash_exclude_mem_range() with the start/end params
300/400, the cmem will be:
cmem = {
max_nr_ranges = 3
nr_ranges = 3 <== nr_ranges == max_nr_ranges
ranges = {
{start = 1, end = 299 } i=0
{start = 401, end = 1000} i=1
{start = 1001, end = 2000} i=2
}
}
When it's executing the 100/200 excluding, we have:
cmem = {
max_nr_ranges = 3
nr_ranges = 4 <== nr_ranges > max_nr_ranges
ranges = {
{start = 1, end = 99 } i=0
{start = 401, end = 1000}
{start = 1001, end = 2000}
}
}
Then splitting happened, i == 0, then for loop is broken and jump out.
Then we have the condition checking here:
/* Split happened */
if (i == mem->max_nr_ranges - 1)
return -ENOMEM;
Obviously the conditonal checking is incorrect (given the i == 0 in
above case), it should be
/* Split happened */
if (mem->nr_ranges == mem->max_nr_ranges)
return -ENOMEM;
So, now there are two things which need be combed up in
crash_exclude_mem_range():
1) the above conditional check is incorrect, need be fixed;
2) whether we need have the cmem->ranges[] partly changed, or keep it
unchanged when OOB happened;
And also the incorrect handling in crash_setup_memmap_entries():
1) the insufficient array slot in crash_setup_memmap_entries();
2) the uninitialized cmem->max_nr_ranges;
>
> When an out of bounds occurs during the second execution, the function will not
> return error.
>
> Additionally, when the function returns error, means the load failed. It seems
> meaningless to keep the original data unchanged. But in my opinion, this will
> make this function more rigorous and more versatile. (However, I am not sure if
> it is self-defeating and I hope to receive more suggestions).
>
> Thanks
> fuqiang
>
>
> > > Signed-off-by: fuqiang wang <fuqiang.wang@easystack.cn>
> > > ---
> > > kernel/crash_core.c | 6 +++---
> > > 1 file changed, 3 insertions(+), 3 deletions(-)
> > >
> > > diff --git a/kernel/crash_core.c b/kernel/crash_core.c
> > > index efe87d501c8c..ffdc246cf425 100644
> > > --- a/kernel/crash_core.c
> > > +++ b/kernel/crash_core.c
> > > @@ -611,6 +611,9 @@ int crash_exclude_mem_range(struct crash_mem *mem,
> > > }
> > > if (p_start > start && p_end < end) {
> > > + /* Split happened */
> > > + if (mem->nr_ranges == mem->max_nr_ranges)
> > > + return -ENOMEM;
> > > /* Split original range */
> > > mem->ranges[i].end = p_start - 1;
> > > temp_range.start = p_end + 1;
> > > @@ -626,9 +629,6 @@ int crash_exclude_mem_range(struct crash_mem *mem,
> > > if (!temp_range.end)
> > > return 0;
> > > - /* Split happened */
> > > - if (i == mem->max_nr_ranges - 1)
> > > - return -ENOMEM;
> > > /* Location where new range should go */
> > > j = i + 1;
> > > --
> > > 2.42.0
> > >
> > >
> > > _______________________________________________
> > > kexec mailing list
> > > kexec@lists.infradead.org
> > > http://lists.infradead.org/mailman/listinfo/kexec
> > >
>
next prev parent reply other threads:[~2023-12-14 10:29 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-27 2:56 [PATCH] kexec: avoid out of bounds in crash_exclude_mem_range() fuqiang wang
2023-11-30 7:44 ` Baoquan He
2023-11-30 13:20 ` fuqiang wang
2023-12-13 4:44 ` Baoquan He
2023-12-13 13:10 ` fuqiang wang
2023-12-14 9:17 ` Baoquan He
2023-12-14 10:29 ` Baoquan He [this message]
2023-12-18 8:31 ` fuqiang wang
2023-12-19 2:42 ` Yuntao Wang
2023-12-19 2:47 ` Yuntao Wang
2023-12-19 3:50 ` fuqiang wang
2023-12-19 5:29 ` Yuntao Wang
2023-12-19 8:55 ` fuqiang wang
2023-12-19 10:39 ` Yuntao Wang
2023-12-19 12:54 ` fuqiang wang
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=ZXrY7QbXAlxydsSC@MiWiFi-R3L-srv \
--to=bhe@redhat.com \
--cc=dyoung@redhat.com \
--cc=fuqiang.wang@easystack.cn \
--cc=kexec@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=vgoyal@redhat.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox