All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] nilfs2: handle corrupted checkpoint count gracefully during deletion
@ 2026-07-06 11:08 Igor Putko
  2026-07-06 16:39 ` Ryusuke Konishi
  0 siblings, 1 reply; 4+ messages in thread
From: Igor Putko @ 2026-07-06 11:08 UTC (permalink / raw)
  To: konishi.ryusuke, slava
  Cc: linux-nilfs, linux-kernel, Igor Putko,
	syzbot+79b815da3aec0a6a4d02

Syzkaller reported a kernel warning in nilfs_cpfile_delete_checkpoints()
due to a corrupted checkpoint count on the storage medium where
le32_to_cpu(cp->cp_checkpoints_count) is less than the number of
checkpoints being deleted.
Triggering a WARN_ON() for disk image corruption is suboptimal. Fix
this by returning -EIO and reporting a filesystem error via
nilfs_error() instead of interrupting execution with a kernel warning.

Reported-by: syzbot+79b815da3aec0a6a4d02@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=79b815da3aec0a6a4d02
Signed-off-by: Igor Putko <igorpetindev@gmail.com>
---
 fs/nilfs2/cpfile.c | 20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

diff --git a/fs/nilfs2/cpfile.c b/fs/nilfs2/cpfile.c
index 4bbdc832d..d3349fa58 100644
--- a/fs/nilfs2/cpfile.c
+++ b/fs/nilfs2/cpfile.c
@@ -81,18 +81,26 @@ nilfs_cpfile_block_add_valid_checkpoints(const struct inode *cpfile,
 	return count;
 }
 
-static unsigned int
+static int
 nilfs_cpfile_block_sub_valid_checkpoints(const struct inode *cpfile,
 					 struct buffer_head *bh,
 					 unsigned int n)
 {
 	struct nilfs_checkpoint *cp;
-	unsigned int count;
+	unsigned int checkpoints_count;
+	int count;
 
 	cp = kmap_local_folio(bh->b_folio,
 			      offset_in_folio(bh->b_folio, bh->b_data));
-	WARN_ON(le32_to_cpu(cp->cp_checkpoints_count) < n);
-	count = le32_to_cpu(cp->cp_checkpoints_count) - n;
+	checkpoints_count = le32_to_cpu(cp->cp_checkpoints_count);
+	if (unlikely(checkpoints_count < n)) {
+		nilfs_error(cpfile->i_sb,
+			    "deleted checkpoints count %u exceeds block count %u",
+			    n, checkpoints_count);
+		kunmap_local(cp);
+		return -EIO;
+	}
+	count = checkpoints_count - n;
 	cp->cp_checkpoints_count = cpu_to_le32(count);
 	kunmap_local(cp);
 	return count;
@@ -522,6 +530,10 @@ int nilfs_cpfile_delete_checkpoints(struct inode *cpfile,
 		count = nilfs_cpfile_block_sub_valid_checkpoints(cpfile, cp_bh,
 								 nicps);
 		brelse(cp_bh);
+		if (unlikely(count < 0)) {
+			ret = count;
+			break;
+		}
 		if (count)
 			continue;
 
-- 
2.47.3


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

* Re: [PATCH] nilfs2: handle corrupted checkpoint count gracefully during deletion
  2026-07-06 11:08 [PATCH] nilfs2: handle corrupted checkpoint count gracefully during deletion Igor Putko
@ 2026-07-06 16:39 ` Ryusuke Konishi
  0 siblings, 0 replies; 4+ messages in thread
From: Ryusuke Konishi @ 2026-07-06 16:39 UTC (permalink / raw)
  To: Igor Putko; +Cc: slava, linux-nilfs, linux-kernel, syzbot+79b815da3aec0a6a4d02

On Mon, Jul 6, 2026 at 8:08 PM Igor Putko wrote:
>
> Syzkaller reported a kernel warning in nilfs_cpfile_delete_checkpoints()
> due to a corrupted checkpoint count on the storage medium where
> le32_to_cpu(cp->cp_checkpoints_count) is less than the number of
> checkpoints being deleted.
> Triggering a WARN_ON() for disk image corruption is suboptimal. Fix
> this by returning -EIO and reporting a filesystem error via
> nilfs_error() instead of interrupting execution with a kernel warning.
>
> Reported-by: syzbot+79b815da3aec0a6a4d02@syzkaller.appspotmail.com
> Closes: https://syzkaller.appspot.com/bug?extid=79b815da3aec0a6a4d02
> Signed-off-by: Igor Putko <igorpetindev@gmail.com>
> ---
>  fs/nilfs2/cpfile.c | 20 ++++++++++++++++----
>  1 file changed, 16 insertions(+), 4 deletions(-)

Thanks for the patch proposal!

A filesystem inconsistency is indeed the root cause, and WARN_ON is
undesirably catching it.

The proposed fix looks appropriate to me, so I plan to apply it after
running some tests on my end.

Thanks,
Ryusuke Konishi

>
> diff --git a/fs/nilfs2/cpfile.c b/fs/nilfs2/cpfile.c
> index 4bbdc832d..d3349fa58 100644
> --- a/fs/nilfs2/cpfile.c
> +++ b/fs/nilfs2/cpfile.c
> @@ -81,18 +81,26 @@ nilfs_cpfile_block_add_valid_checkpoints(const struct inode *cpfile,
>         return count;
>  }
>
> -static unsigned int
> +static int
>  nilfs_cpfile_block_sub_valid_checkpoints(const struct inode *cpfile,
>                                          struct buffer_head *bh,
>                                          unsigned int n)
>  {
>         struct nilfs_checkpoint *cp;
> -       unsigned int count;
> +       unsigned int checkpoints_count;
> +       int count;
>
>         cp = kmap_local_folio(bh->b_folio,
>                               offset_in_folio(bh->b_folio, bh->b_data));
> -       WARN_ON(le32_to_cpu(cp->cp_checkpoints_count) < n);
> -       count = le32_to_cpu(cp->cp_checkpoints_count) - n;
> +       checkpoints_count = le32_to_cpu(cp->cp_checkpoints_count);
> +       if (unlikely(checkpoints_count < n)) {
> +               nilfs_error(cpfile->i_sb,
> +                           "deleted checkpoints count %u exceeds block count %u",
> +                           n, checkpoints_count);
> +               kunmap_local(cp);
> +               return -EIO;
> +       }
> +       count = checkpoints_count - n;
>         cp->cp_checkpoints_count = cpu_to_le32(count);
>         kunmap_local(cp);
>         return count;
> @@ -522,6 +530,10 @@ int nilfs_cpfile_delete_checkpoints(struct inode *cpfile,
>                 count = nilfs_cpfile_block_sub_valid_checkpoints(cpfile, cp_bh,
>                                                                  nicps);
>                 brelse(cp_bh);
> +               if (unlikely(count < 0)) {
> +                       ret = count;
> +                       break;
> +               }
>                 if (count)
>                         continue;
>
> --
> 2.47.3
>

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

* [PATCH] nilfs2: handle corrupted checkpoint count gracefully during deletion
@ 2026-07-07  7:59 Ryusuke Konishi
  2026-07-07 18:16 ` Viacheslav Dubeyko
  0 siblings, 1 reply; 4+ messages in thread
From: Ryusuke Konishi @ 2026-07-07  7:59 UTC (permalink / raw)
  To: Viacheslav Dubeyko
  Cc: linux-nilfs, LKML, syzbot+79b815da3aec0a6a4d02, syzkaller-bugs,
	Igor Putko

From: Igor Putko <igorpetindev@gmail.com>

Syzkaller reported a kernel warning in nilfs_cpfile_delete_checkpoints()
due to a corrupted checkpoint count on the storage medium where
le32_to_cpu(cp->cp_checkpoints_count) is less than the number of
checkpoints being deleted.
Triggering a WARN_ON() for disk image corruption is suboptimal. Fix
this by returning -EIO and reporting a filesystem error via
nilfs_error() instead of interrupting execution with a kernel warning.

Reported-by: syzbot+79b815da3aec0a6a4d02@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=79b815da3aec0a6a4d02
Signed-off-by: Igor Putko <igorpetindev@gmail.com>
Fixes: 1f5abe7e7dbc ("nilfs2: replace BUG_ON and BUG calls triggerable from ioctl")
Cc: <stable+noautosel@kernel.org> # Warning suppression primarily; will request backport individually if needed
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
---
Hi Viacheslav,

Please apply this for the next cycle.

This fixes a kernel warning and a missed inconsistency check that could
occur with file system images containing corrupted checkpoint metadata.

Thanks,
Ryusuke Konishi

 fs/nilfs2/cpfile.c | 20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

diff --git a/fs/nilfs2/cpfile.c b/fs/nilfs2/cpfile.c
index 4bbdc832d7f2..d3349fa58abe 100644
--- a/fs/nilfs2/cpfile.c
+++ b/fs/nilfs2/cpfile.c
@@ -81,18 +81,26 @@ nilfs_cpfile_block_add_valid_checkpoints(const struct inode *cpfile,
 	return count;
 }
 
-static unsigned int
+static int
 nilfs_cpfile_block_sub_valid_checkpoints(const struct inode *cpfile,
 					 struct buffer_head *bh,
 					 unsigned int n)
 {
 	struct nilfs_checkpoint *cp;
-	unsigned int count;
+	unsigned int checkpoints_count;
+	int count;
 
 	cp = kmap_local_folio(bh->b_folio,
 			      offset_in_folio(bh->b_folio, bh->b_data));
-	WARN_ON(le32_to_cpu(cp->cp_checkpoints_count) < n);
-	count = le32_to_cpu(cp->cp_checkpoints_count) - n;
+	checkpoints_count = le32_to_cpu(cp->cp_checkpoints_count);
+	if (unlikely(checkpoints_count < n)) {
+		nilfs_error(cpfile->i_sb,
+			    "deleted checkpoints count %u exceeds block count %u",
+			    n, checkpoints_count);
+		kunmap_local(cp);
+		return -EIO;
+	}
+	count = checkpoints_count - n;
 	cp->cp_checkpoints_count = cpu_to_le32(count);
 	kunmap_local(cp);
 	return count;
@@ -522,6 +530,10 @@ int nilfs_cpfile_delete_checkpoints(struct inode *cpfile,
 		count = nilfs_cpfile_block_sub_valid_checkpoints(cpfile, cp_bh,
 								 nicps);
 		brelse(cp_bh);
+		if (unlikely(count < 0)) {
+			ret = count;
+			break;
+		}
 		if (count)
 			continue;
 
-- 
2.43.0


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

* Re: [PATCH] nilfs2: handle corrupted checkpoint count gracefully during deletion
  2026-07-07  7:59 Ryusuke Konishi
@ 2026-07-07 18:16 ` Viacheslav Dubeyko
  0 siblings, 0 replies; 4+ messages in thread
From: Viacheslav Dubeyko @ 2026-07-07 18:16 UTC (permalink / raw)
  To: Ryusuke Konishi
  Cc: linux-nilfs, LKML, syzbot+79b815da3aec0a6a4d02, syzkaller-bugs,
	Igor Putko

On Tue, 2026-07-07 at 16:59 +0900, Ryusuke Konishi wrote:
> From: Igor Putko <igorpetindev@gmail.com>
> 
> Syzkaller reported a kernel warning in
> nilfs_cpfile_delete_checkpoints()
> due to a corrupted checkpoint count on the storage medium where
> le32_to_cpu(cp->cp_checkpoints_count) is less than the number of
> checkpoints being deleted.
> Triggering a WARN_ON() for disk image corruption is suboptimal. Fix
> this by returning -EIO and reporting a filesystem error via
> nilfs_error() instead of interrupting execution with a kernel
> warning.
> 
> Reported-by: syzbot+79b815da3aec0a6a4d02@syzkaller.appspotmail.com
> Closes: https://syzkaller.appspot.com/bug?extid=79b815da3aec0a6a4d02
> Signed-off-by: Igor Putko <igorpetindev@gmail.com>
> Fixes: 1f5abe7e7dbc ("nilfs2: replace BUG_ON and BUG calls
> triggerable from ioctl")
> Cc: <stable+noautosel@kernel.org> # Warning suppression primarily;
> will request backport individually if needed
> Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
> ---
> Hi Viacheslav,
> 
> Please apply this for the next cycle.
> 
> This fixes a kernel warning and a missed inconsistency check that
> could
> occur with file system images containing corrupted checkpoint
> metadata.
> 
> Thanks,
> Ryusuke Konishi
> 
>  fs/nilfs2/cpfile.c | 20 ++++++++++++++++----
>  1 file changed, 16 insertions(+), 4 deletions(-)
> 
> diff --git a/fs/nilfs2/cpfile.c b/fs/nilfs2/cpfile.c
> index 4bbdc832d7f2..d3349fa58abe 100644
> --- a/fs/nilfs2/cpfile.c
> +++ b/fs/nilfs2/cpfile.c
> @@ -81,18 +81,26 @@ nilfs_cpfile_block_add_valid_checkpoints(const
> struct inode *cpfile,
>  	return count;
>  }
>  
> -static unsigned int
> +static int
>  nilfs_cpfile_block_sub_valid_checkpoints(const struct inode *cpfile,
>  					 struct buffer_head *bh,
>  					 unsigned int n)
>  {
>  	struct nilfs_checkpoint *cp;
> -	unsigned int count;
> +	unsigned int checkpoints_count;
> +	int count;
>  
>  	cp = kmap_local_folio(bh->b_folio,
>  			      offset_in_folio(bh->b_folio, bh-
> >b_data));
> -	WARN_ON(le32_to_cpu(cp->cp_checkpoints_count) < n);
> -	count = le32_to_cpu(cp->cp_checkpoints_count) - n;
> +	checkpoints_count = le32_to_cpu(cp->cp_checkpoints_count);
> +	if (unlikely(checkpoints_count < n)) {
> +		nilfs_error(cpfile->i_sb,
> +			    "deleted checkpoints count %u exceeds
> block count %u",
> +			    n, checkpoints_count);
> +		kunmap_local(cp);
> +		return -EIO;
> +	}
> +	count = checkpoints_count - n;
>  	cp->cp_checkpoints_count = cpu_to_le32(count);
>  	kunmap_local(cp);
>  	return count;
> @@ -522,6 +530,10 @@ int nilfs_cpfile_delete_checkpoints(struct inode
> *cpfile,
>  		count =
> nilfs_cpfile_block_sub_valid_checkpoints(cpfile, cp_bh,
>  								
> nicps);
>  		brelse(cp_bh);
> +		if (unlikely(count < 0)) {
> +			ret = count;
> +			break;
> +		}
>  		if (count)
>  			continue;
>  

Applied.

Thanks,
Slava.

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

end of thread, other threads:[~2026-07-07 18:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-06 11:08 [PATCH] nilfs2: handle corrupted checkpoint count gracefully during deletion Igor Putko
2026-07-06 16:39 ` Ryusuke Konishi
  -- strict thread matches above, loose matches on Subject: below --
2026-07-07  7:59 Ryusuke Konishi
2026-07-07 18:16 ` Viacheslav Dubeyko

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.