All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4] ocfs2: fix UBSAN array-index-out-of-bounds in ocfs2_sum_rightmost_rec
@ 2026-06-11  0:23 Ian Bridges
  2026-06-12  1:02 ` Joseph Qi
  0 siblings, 1 reply; 3+ messages in thread
From: Ian Bridges @ 2026-06-11  0:23 UTC (permalink / raw)
  To: Mark Fasheh, Joel Becker, Joseph Qi, ocfs2-devel, linux-kernel

[BUG]
On-disk corruption setting l_next_free_rec to 0 in an inode's embedded
extent list triggers a UBSAN panic on the next write to that file.

[CAUSE]
ocfs2_sum_rightmost_rec() computes
i = le16_to_cpu(el->l_next_free_rec) - 1
and accesses el->l_recs[i] without validating i. When l_next_free_rec
is 0, i becomes -1; when l_next_free_rec exceeds l_count, i falls
past the end of the array. Either case violates the
__counted_by_le(l_count) annotation on l_recs[] and triggers UBSAN.

[FIX]
Validate the inode's embedded extent list when the inode is read, in
ocfs2_validate_inode_block(): l_count must be non-zero and no larger
than the inode block can hold, and l_next_free_rec must not exceed
l_count. A corrupt list is rejected at read time, before the b-tree
code can index l_recs[] out of bounds.

Reported-by: syzbot+be16e33db01e6644db7a@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=be16e33db01e6644db7a
Cc: stable@vger.kernel.org
Signed-off-by: Ian Bridges <icb@fastmail.org>
---
Changes in 4:
 - Update commit message to use "inline" instead of "embedded"
 
v3: https://lore.kernel.org/all/aibMhhAH-swS38i0@dev/

 fs/ocfs2/inode.c | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/fs/ocfs2/inode.c b/fs/ocfs2/inode.c
index a510a0eb1adc..aff95efd78e7 100644
--- a/fs/ocfs2/inode.c
+++ b/fs/ocfs2/inode.c
@@ -1559,6 +1559,38 @@ int ocfs2_validate_inode_block(struct super_block *sb,
 		goto bail;
 	}
 
+	if (ocfs2_dinode_has_extents(di)) {
+		struct ocfs2_extent_list *el = &di->id2.i_list;
+		u16 count = le16_to_cpu(el->l_count);
+		u16 next_free = le16_to_cpu(el->l_next_free_rec);
+
+		if (count == 0) {
+			rc = ocfs2_error(sb,
+					 "Invalid dinode %llu: extent list l_count is zero\n",
+					 (unsigned long long)bh->b_blocknr);
+			goto bail;
+		}
+		/*
+		 * The exact capacity depends on i_xattr_inline_size, another
+		 * unvalidated on-disk field. Inline xattrs only shrink the
+		 * list, so the no-xattr maximum is a safe upper bound that a
+		 * valid l_count never exceeds.
+		 */
+		if (count > ocfs2_extent_recs_per_inode(sb)) {
+			rc = ocfs2_error(sb,
+					 "Invalid dinode %llu: extent list l_count %u exceeds max %u\n",
+					 (unsigned long long)bh->b_blocknr, count,
+					 ocfs2_extent_recs_per_inode(sb));
+			goto bail;
+		}
+		if (next_free > count) {
+			rc = ocfs2_error(sb,
+					 "Invalid dinode %llu: extent list l_next_free_rec %u exceeds l_count %u\n",
+					 (unsigned long long)bh->b_blocknr, next_free, count);
+			goto bail;
+		}
+	}
+
 	rc = 0;
 
 bail:
-- 
2.47.3


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

* Re: [PATCH v4] ocfs2: fix UBSAN array-index-out-of-bounds in ocfs2_sum_rightmost_rec
  2026-06-11  0:23 [PATCH v4] ocfs2: fix UBSAN array-index-out-of-bounds in ocfs2_sum_rightmost_rec Ian Bridges
@ 2026-06-12  1:02 ` Joseph Qi
  2026-06-13 12:19   ` Ian Bridges
  0 siblings, 1 reply; 3+ messages in thread
From: Joseph Qi @ 2026-06-12  1:02 UTC (permalink / raw)
  To: Ian Bridges, akpm
  Cc: Mark Fasheh, Joel Becker, ocfs2-devel@lists.linux.dev,
	linux-kernel@vger.kernel.org



On 6/11/26 8:23 AM, Ian Bridges wrote:
> [BUG]
> On-disk corruption setting l_next_free_rec to 0 in an inode's embedded
> extent list triggers a UBSAN panic on the next write to that file.
> 
> [CAUSE]
> ocfs2_sum_rightmost_rec() computes
> i = le16_to_cpu(el->l_next_free_rec) - 1
> and accesses el->l_recs[i] without validating i. When l_next_free_rec
> is 0, i becomes -1; when l_next_free_rec exceeds l_count, i falls
> past the end of the array. Either case violates the
> __counted_by_le(l_count) annotation on l_recs[] and triggers UBSAN.
> 
> [FIX]
> Validate the inode's embedded extent list when the inode is read, in
> ocfs2_validate_inode_block(): l_count must be non-zero and no larger
> than the inode block can hold, and l_next_free_rec must not exceed
> l_count. A corrupt list is rejected at read time, before the b-tree
> code can index l_recs[] out of bounds.
> 
> Reported-by: syzbot+be16e33db01e6644db7a@syzkaller.appspotmail.com
> Closes: https://syzkaller.appspot.com/bug?extid=be16e33db01e6644db7a
> Cc: stable@vger.kernel.org
> Signed-off-by: Ian Bridges <icb@fastmail.org>

Looks fine.
Reviewed-by: Joseph Qi <joseph.qi@linux.alibaba.com>

> ---
> Changes in 4:
>  - Update commit message to use "inline" instead of "embedded"

Typo here? I think you mean 'embedded' instead of 'inline'.

>  
> v3: https://lore.kernel.org/all/aibMhhAH-swS38i0@dev/
> 
>  fs/ocfs2/inode.c | 32 ++++++++++++++++++++++++++++++++
>  1 file changed, 32 insertions(+)
> 
> diff --git a/fs/ocfs2/inode.c b/fs/ocfs2/inode.c
> index a510a0eb1adc..aff95efd78e7 100644
> --- a/fs/ocfs2/inode.c
> +++ b/fs/ocfs2/inode.c
> @@ -1559,6 +1559,38 @@ int ocfs2_validate_inode_block(struct super_block *sb,
>  		goto bail;
>  	}
>  
> +	if (ocfs2_dinode_has_extents(di)) {
> +		struct ocfs2_extent_list *el = &di->id2.i_list;
> +		u16 count = le16_to_cpu(el->l_count);
> +		u16 next_free = le16_to_cpu(el->l_next_free_rec);
> +
> +		if (count == 0) {
> +			rc = ocfs2_error(sb,
> +					 "Invalid dinode %llu: extent list l_count is zero\n",
> +					 (unsigned long long)bh->b_blocknr);
> +			goto bail;
> +		}
> +		/*
> +		 * The exact capacity depends on i_xattr_inline_size, another
> +		 * unvalidated on-disk field. Inline xattrs only shrink the
> +		 * list, so the no-xattr maximum is a safe upper bound that a
> +		 * valid l_count never exceeds.
> +		 */
> +		if (count > ocfs2_extent_recs_per_inode(sb)) {
> +			rc = ocfs2_error(sb,
> +					 "Invalid dinode %llu: extent list l_count %u exceeds max %u\n",
> +					 (unsigned long long)bh->b_blocknr, count,
> +					 ocfs2_extent_recs_per_inode(sb));
> +			goto bail;
> +		}
> +		if (next_free > count) {
> +			rc = ocfs2_error(sb,
> +					 "Invalid dinode %llu: extent list l_next_free_rec %u exceeds l_count %u\n",
> +					 (unsigned long long)bh->b_blocknr, next_free, count);
> +			goto bail;
> +		}
> +	}
> +
>  	rc = 0;
>  
>  bail:


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

* Re: [PATCH v4] ocfs2: fix UBSAN array-index-out-of-bounds in ocfs2_sum_rightmost_rec
  2026-06-12  1:02 ` Joseph Qi
@ 2026-06-13 12:19   ` Ian Bridges
  0 siblings, 0 replies; 3+ messages in thread
From: Ian Bridges @ 2026-06-13 12:19 UTC (permalink / raw)
  To: Joseph Qi
  Cc: akpm, Mark Fasheh, Joel Becker, ocfs2-devel@lists.linux.dev,
	linux-kernel@vger.kernel.org

On Fri, Jun 12, 2026 at 09:02:18AM +0800, Joseph Qi wrote:
> 
> 
> On 6/11/26 8:23 AM, Ian Bridges wrote:
> > [BUG]
> > On-disk corruption setting l_next_free_rec to 0 in an inode's embedded
> > extent list triggers a UBSAN panic on the next write to that file.
> > 
> > [CAUSE]
> > ocfs2_sum_rightmost_rec() computes
> > i = le16_to_cpu(el->l_next_free_rec) - 1
> > and accesses el->l_recs[i] without validating i. When l_next_free_rec
> > is 0, i becomes -1; when l_next_free_rec exceeds l_count, i falls
> > past the end of the array. Either case violates the
> > __counted_by_le(l_count) annotation on l_recs[] and triggers UBSAN.
> > 
> > [FIX]
> > Validate the inode's embedded extent list when the inode is read, in
> > ocfs2_validate_inode_block(): l_count must be non-zero and no larger
> > than the inode block can hold, and l_next_free_rec must not exceed
> > l_count. A corrupt list is rejected at read time, before the b-tree
> > code can index l_recs[] out of bounds.
> > 
> > Reported-by: syzbot+be16e33db01e6644db7a@syzkaller.appspotmail.com
> > Closes: https://syzkaller.appspot.com/bug?extid=be16e33db01e6644db7a
> > Cc: stable@vger.kernel.org
> > Signed-off-by: Ian Bridges <icb@fastmail.org>
> 
> Looks fine.
> Reviewed-by: Joseph Qi <joseph.qi@linux.alibaba.com>
> 
> > ---
> > Changes in 4:
> >  - Update commit message to use "inline" instead of "embedded"
> 
> Typo here? I think you mean 'embedded' instead of 'inline'.
>

Yes, the placement of the "inline" and "embedded" should have been
swapped.

Ian

> >  
> > v3: https://lore.kernel.org/all/aibMhhAH-swS38i0@dev/
> > 
> >  fs/ocfs2/inode.c | 32 ++++++++++++++++++++++++++++++++
> >  1 file changed, 32 insertions(+)
> > 
> > diff --git a/fs/ocfs2/inode.c b/fs/ocfs2/inode.c
> > index a510a0eb1adc..aff95efd78e7 100644
> > --- a/fs/ocfs2/inode.c
> > +++ b/fs/ocfs2/inode.c
> > @@ -1559,6 +1559,38 @@ int ocfs2_validate_inode_block(struct super_block *sb,
> >  		goto bail;
> >  	}
> >  
> > +	if (ocfs2_dinode_has_extents(di)) {
> > +		struct ocfs2_extent_list *el = &di->id2.i_list;
> > +		u16 count = le16_to_cpu(el->l_count);
> > +		u16 next_free = le16_to_cpu(el->l_next_free_rec);
> > +
> > +		if (count == 0) {
> > +			rc = ocfs2_error(sb,
> > +					 "Invalid dinode %llu: extent list l_count is zero\n",
> > +					 (unsigned long long)bh->b_blocknr);
> > +			goto bail;
> > +		}
> > +		/*
> > +		 * The exact capacity depends on i_xattr_inline_size, another
> > +		 * unvalidated on-disk field. Inline xattrs only shrink the
> > +		 * list, so the no-xattr maximum is a safe upper bound that a
> > +		 * valid l_count never exceeds.
> > +		 */
> > +		if (count > ocfs2_extent_recs_per_inode(sb)) {
> > +			rc = ocfs2_error(sb,
> > +					 "Invalid dinode %llu: extent list l_count %u exceeds max %u\n",
> > +					 (unsigned long long)bh->b_blocknr, count,
> > +					 ocfs2_extent_recs_per_inode(sb));
> > +			goto bail;
> > +		}
> > +		if (next_free > count) {
> > +			rc = ocfs2_error(sb,
> > +					 "Invalid dinode %llu: extent list l_next_free_rec %u exceeds l_count %u\n",
> > +					 (unsigned long long)bh->b_blocknr, next_free, count);
> > +			goto bail;
> > +		}
> > +	}
> > +
> >  	rc = 0;
> >  
> >  bail:
> 

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

end of thread, other threads:[~2026-06-13 12:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-11  0:23 [PATCH v4] ocfs2: fix UBSAN array-index-out-of-bounds in ocfs2_sum_rightmost_rec Ian Bridges
2026-06-12  1:02 ` Joseph Qi
2026-06-13 12:19   ` Ian Bridges

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.