mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] md/raid5: don't BUG() on an inconsistent reshape state from the superblock
@ 2026-09-10 13:11 Yogesh Gaur
  2026-09-12  7:48 ` yu kuai
  0 siblings, 1 reply; 3+ messages in thread
From: Yogesh Gaur @ 2026-09-10 13:11 UTC (permalink / raw)
  To: Song Liu, Yu Kuai
  Cc: Li Nan, Xiao Ni, linux-raid, linux-kernel, Yogesh Gaur,
	syzbot+1f5a7de91d547763f4c8

raid5_run() branches on mddev->reshape_position. When it is MaxSector --
no reshape in progress -- the else branch asserts that nothing else
describes one:

	BUG_ON(mddev->level != mddev->new_level);
	BUG_ON(mddev->layout != mddev->new_layout);
	BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
	BUG_ON(mddev->delta_disks != 0);

Nothing enforces that invariant. Both superblock validators copy the
reshape fields straight off disk without cross-checking them against
each other: super_1_validate() takes reshape_position, delta_disks,
new_level, new_layout and new_chunk from the superblock whenever
MD_FEATURE_RESHAPE_ACTIVE is set, and super_90_validate() does the same
for minor version 91. A superblock that sets the reshape feature while
leaving reshape_position at the MaxSector sentinel therefore reaches the
else branch with a non-zero delta_disks, and assembling the array takes
the machine down:

  kernel BUG at drivers/md/raid5.c:8117!
  Oops: invalid opcode: 0000 [#1] SMP KASAN NOPTI
  RIP: 0010:raid5_run+0x11a7/0x1670 drivers/md/raid5.c:8117
  Call Trace:
   md_run+0xc2f/0x2510 drivers/md/md.c:6779
   do_md_run+0x36/0x660 drivers/md/md.c:6880
   array_state_store+0x9c5/0xcf0 drivers/md/md.c:4765
   md_attr_store+0x1c5/0x330 drivers/md/md.c:6158
   sysfs_kf_write+0xf2/0x150 fs/sysfs/file.c:145
   kernfs_fop_write_iter+0x3e0/0x5f0 fs/kernfs/file.c:345

This is reachable by anyone who can present an md superblock, so BUG()
is the wrong response. Refuse to start the array instead, the way the
reshape_position != MaxSector branch a few lines above already refuses a
reshape it cannot resume. Nothing has been allocated at this point --
the journal-and-bitmap check just above returns -EINVAL the same way --
so there is nothing to unwind.

Reported-by: syzbot+1f5a7de91d547763f4c8@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=1f5a7de91d547763f4c8
Fixes: 91adb56473fe ("md/raid5: refactor raid5 "run"")
Assisted-by: LLM
Signed-off-by: Yogesh Gaur <yogeshgaur.83@gmail.com>
---
 drivers/md/raid5.c | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c
index b91545ce090d..682812277ce5 100644
--- a/drivers/md/raid5.c
+++ b/drivers/md/raid5.c
@@ -8110,11 +8110,17 @@ static int raid5_run(struct mddev *mddev)
 		}
 		pr_debug("md/raid:%s: reshape will continue\n", mdname(mddev));
 		/* OK, we should be able to continue; */
-	} else {
-		BUG_ON(mddev->level != mddev->new_level);
-		BUG_ON(mddev->layout != mddev->new_layout);
-		BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
-		BUG_ON(mddev->delta_disks != 0);
+	} else if (mddev->level != mddev->new_level ||
+		   mddev->layout != mddev->new_layout ||
+		   mddev->chunk_sectors != mddev->new_chunk_sectors ||
+		   mddev->delta_disks != 0) {
+		/* No reshape is in progress, but the array describes one.
+		 * The superblock validators do not cross-check these against
+		 * reshape_position, so this is reachable from disk.
+		 */
+		pr_warn("md/raid:%s: inconsistent reshape state - aborting.\n",
+			mdname(mddev));
+		return -EINVAL;
 	}
 
 	if (test_bit(MD_HAS_JOURNAL, &mddev->flags) &&
-- 
2.34.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] md/raid5: don't BUG() on an inconsistent reshape state from the superblock
  2026-09-10 13:11 [PATCH] md/raid5: don't BUG() on an inconsistent reshape state from the superblock Yogesh Gaur
@ 2026-09-12  7:48 ` yu kuai
  2026-09-14 13:03   ` Yogesh Gaur
  0 siblings, 1 reply; 3+ messages in thread
From: yu kuai @ 2026-09-12  7:48 UTC (permalink / raw)
  To: Yogesh Gaur, Song Liu, yu kuai
  Cc: Li Nan, Xiao Ni, linux-raid, linux-kernel, syzbot+1f5a7de91d547763f4c8

在 2026/9/10 21:11, Yogesh Gaur 写道:

> raid5_run() branches on mddev->reshape_position. When it is MaxSector --
>
> no reshape in progress -- the else branch asserts that nothing else
>
> describes one:
>
>
>
> 	BUG_ON(mddev->level != mddev->new_level);
>
> 	BUG_ON(mddev->layout != mddev->new_layout);
>
> 	BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
>
> 	BUG_ON(mddev->delta_disks != 0);
>
>
>
> Nothing enforces that invariant. Both superblock validators copy the
>
> reshape fields straight off disk without cross-checking them against
>
> each other: super_1_validate() takes reshape_position, delta_disks,
>
> new_level, new_layout and new_chunk from the superblock whenever
>
> MD_FEATURE_RESHAPE_ACTIVE is set, and super_90_validate() does the same
>
> for minor version 91. A superblock that sets the reshape feature while
>
> leaving reshape_position at the MaxSector sentinel therefore reaches the
>
> else branch with a non-zero delta_disks, and assembling the array takes
>
> the machine down:
>
>
>
>    kernel BUG at drivers/md/raid5.c:8117!
>
>    Oops: invalid opcode: 0000 [#1] SMP KASAN NOPTI
>
>    RIP: 0010:raid5_run+0x11a7/0x1670 drivers/md/raid5.c:8117
>
>    Call Trace:
>
>     md_run+0xc2f/0x2510 drivers/md/md.c:6779
>
>     do_md_run+0x36/0x660 drivers/md/md.c:6880
>
>     array_state_store+0x9c5/0xcf0 drivers/md/md.c:4765
>
>     md_attr_store+0x1c5/0x330 drivers/md/md.c:6158
>
>     sysfs_kf_write+0xf2/0x150 fs/sysfs/file.c:145
>
>     kernfs_fop_write_iter+0x3e0/0x5f0 fs/kernfs/file.c:345
>
>
>
> This is reachable by anyone who can present an md superblock, so BUG()
>
> is the wrong response. Refuse to start the array instead, the way the
>
> reshape_position != MaxSector branch a few lines above already refuses a
>
> reshape it cannot resume. Nothing has been allocated at this point --
>
> the journal-and-bitmap check just above returns -EINVAL the same way --
>
> so there is nothing to unwind.
>
>
>
> Reported-by:syzbot+1f5a7de91d547763f4c8@syzkaller.appspotmail.com
>
> Closes:https://syzkaller.appspot.com/bug?extid=1f5a7de91d547763f4c8
>
> Fixes: 91adb56473fe ("md/raid5: refactor raid5 "run"")
>
> Assisted-by: LLM
>
> Signed-off-by: Yogesh Gaur<yogeshgaur.83@gmail.com>
>
> ---
>
>   drivers/md/raid5.c | 16 +++++++++++-----
>
>   1 file changed, 11 insertions(+), 5 deletions(-)
Applied to md-7.3

-- 
Thanks,
Kuai

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] md/raid5: don't BUG() on an inconsistent reshape state from the superblock
  2026-09-12  7:48 ` yu kuai
@ 2026-09-14 13:03   ` Yogesh Gaur
  0 siblings, 0 replies; 3+ messages in thread
From: Yogesh Gaur @ 2026-09-14 13:03 UTC (permalink / raw)
  To: yukuai
  Cc: Song Liu, Li Nan, Xiao Ni, linux-raid, linux-kernel,
	syzbot+1f5a7de91d547763f4c8

On Sat, Sep 12, 2026 at 1:18 PM yu kuai <yukuai@fygo.io> wrote:
>
> 在 2026/9/10 21:11, Yogesh Gaur 写道:
>
> > raid5_run() branches on mddev->reshape_position. When it is MaxSector --
> >
> > no reshape in progress -- the else branch asserts that nothing else
> >
> > describes one:
> >
> >
> >
> >       BUG_ON(mddev->level != mddev->new_level);
> >
> >       BUG_ON(mddev->layout != mddev->new_layout);
> >
> >       BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
> >
> >       BUG_ON(mddev->delta_disks != 0);
> >
> >
> >
> > Nothing enforces that invariant. Both superblock validators copy the
> >
> > reshape fields straight off disk without cross-checking them against
> >
> > each other: super_1_validate() takes reshape_position, delta_disks,
> >
> > new_level, new_layout and new_chunk from the superblock whenever
> >
> > MD_FEATURE_RESHAPE_ACTIVE is set, and super_90_validate() does the same
> >
> > for minor version 91. A superblock that sets the reshape feature while
> >
> > leaving reshape_position at the MaxSector sentinel therefore reaches the
> >
> > else branch with a non-zero delta_disks, and assembling the array takes
> >
> > the machine down:
> >
> >
> >
> >    kernel BUG at drivers/md/raid5.c:8117!
> >
> >    Oops: invalid opcode: 0000 [#1] SMP KASAN NOPTI
> >
> >    RIP: 0010:raid5_run+0x11a7/0x1670 drivers/md/raid5.c:8117
> >
> >    Call Trace:
> >
> >     md_run+0xc2f/0x2510 drivers/md/md.c:6779
> >
> >     do_md_run+0x36/0x660 drivers/md/md.c:6880
> >
> >     array_state_store+0x9c5/0xcf0 drivers/md/md.c:4765
> >
> >     md_attr_store+0x1c5/0x330 drivers/md/md.c:6158
> >
> >     sysfs_kf_write+0xf2/0x150 fs/sysfs/file.c:145
> >
> >     kernfs_fop_write_iter+0x3e0/0x5f0 fs/kernfs/file.c:345
> >
> >
> >
> > This is reachable by anyone who can present an md superblock, so BUG()
> >
> > is the wrong response. Refuse to start the array instead, the way the
> >
> > reshape_position != MaxSector branch a few lines above already refuses a
> >
> > reshape it cannot resume. Nothing has been allocated at this point --
> >
> > the journal-and-bitmap check just above returns -EINVAL the same way --
> >
> > so there is nothing to unwind.
> >
> >
> >
> > Reported-by:syzbot+1f5a7de91d547763f4c8@syzkaller.appspotmail.com
> >
> > Closes:https://syzkaller.appspot.com/bug?extid=1f5a7de91d547763f4c8
> >
> > Fixes: 91adb56473fe ("md/raid5: refactor raid5 "run"")
> >
> > Assisted-by: LLM
> >
> > Signed-off-by: Yogesh Gaur<yogeshgaur.83@gmail.com>
> >
> > ---
> >
> >   drivers/md/raid5.c | 16 +++++++++++-----
> >
> >   1 file changed, 11 insertions(+), 5 deletions(-)
> Applied to md-7.3
>
Thanks.

> --
> Thanks,
> Kuai

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-09-14 13:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-10 13:11 [PATCH] md/raid5: don't BUG() on an inconsistent reshape state from the superblock Yogesh Gaur
2026-09-12  7:48 ` yu kuai
2026-09-14 13:03   ` Yogesh Gaur

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®