* [PATCH] smb: client: fix use-before-check of ReparseDataLength in reparse_buf_ptr()
@ 2026-08-17 17:16 Frank Sorenson
2026-08-17 18:33 ` Paulo Alcantara
2026-08-18 7:31 ` Namjae Jeon
0 siblings, 2 replies; 3+ messages in thread
From: Frank Sorenson @ 2026-08-17 17:16 UTC (permalink / raw)
To: linux-cifs, stfrench; +Cc: stable
reparse_buf_ptr() reads buf->ReparseDataLength before checking that
count covers the full fixed header:
buf = (struct reparse_data_buffer *)((u8 *)io + off);
len = sizeof(*buf); /* 8 bytes */
rdlen = le16_to_cpu(buf->ReparseDataLength); /* offset 4, 2 bytes */
if (count < len || count < rdlen + len) /* check comes after */
struct reparse_data_buffer has ReparseDataLength at offset 4. If a
server returns OutputCount < 6, the read at offset 4-5 reaches past
the end of the received data. The off+count bounds against iov_len
were already validated, but that does not protect against count being
smaller than sizeof(*buf).
Split the check: verify count >= sizeof(*buf) before reading
ReparseDataLength, then verify count covers the data region.
Fixes: a158bb66b137 ("smb: client: optimise reparse point querying")
Cc: stable@vger.kernel.org
Signed-off-by: Frank Sorenson <sorenson@redhat.com>
---
fs/smb/client/smb2inode.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/fs/smb/client/smb2inode.c b/fs/smb/client/smb2inode.c
index 213bc298cdf2..2946391bb992 100644
--- a/fs/smb/client/smb2inode.c
+++ b/fs/smb/client/smb2inode.c
@@ -40,9 +40,11 @@ static struct reparse_data_buffer *reparse_buf_ptr(struct kvec *iov)
buf = (struct reparse_data_buffer *)((u8 *)io + off);
len = sizeof(*buf);
- rdlen = le16_to_cpu(buf->ReparseDataLength);
+ if (count < len)
+ return ERR_PTR(smb_EIO2(smb_eio_trace_reparse_rdlen, count, 0));
- if (count < len || count < rdlen + len)
+ rdlen = le16_to_cpu(buf->ReparseDataLength);
+ if (count < rdlen + len)
return ERR_PTR(smb_EIO2(smb_eio_trace_reparse_rdlen, count, rdlen));
return buf;
}
--
2.55.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] smb: client: fix use-before-check of ReparseDataLength in reparse_buf_ptr()
2026-08-17 17:16 [PATCH] smb: client: fix use-before-check of ReparseDataLength in reparse_buf_ptr() Frank Sorenson
@ 2026-08-17 18:33 ` Paulo Alcantara
2026-08-18 7:31 ` Namjae Jeon
1 sibling, 0 replies; 3+ messages in thread
From: Paulo Alcantara @ 2026-08-17 18:33 UTC (permalink / raw)
To: Frank Sorenson, linux-cifs, stfrench; +Cc: stable
Frank Sorenson <sorenson@redhat.com> writes:
> reparse_buf_ptr() reads buf->ReparseDataLength before checking that
> count covers the full fixed header:
>
> buf = (struct reparse_data_buffer *)((u8 *)io + off);
> len = sizeof(*buf); /* 8 bytes */
> rdlen = le16_to_cpu(buf->ReparseDataLength); /* offset 4, 2 bytes */
>
> if (count < len || count < rdlen + len) /* check comes after */
>
> struct reparse_data_buffer has ReparseDataLength at offset 4. If a
> server returns OutputCount < 6, the read at offset 4-5 reaches past
> the end of the received data. The off+count bounds against iov_len
> were already validated, but that does not protect against count being
> smaller than sizeof(*buf).
>
> Split the check: verify count >= sizeof(*buf) before reading
> ReparseDataLength, then verify count covers the data region.
>
> Fixes: a158bb66b137 ("smb: client: optimise reparse point querying")
> Cc: stable@vger.kernel.org
> Signed-off-by: Frank Sorenson <sorenson@redhat.com>
Acked-by: Paulo Alcantara (Red Hat) <pc@manguebit.org>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] smb: client: fix use-before-check of ReparseDataLength in reparse_buf_ptr()
2026-08-17 17:16 [PATCH] smb: client: fix use-before-check of ReparseDataLength in reparse_buf_ptr() Frank Sorenson
2026-08-17 18:33 ` Paulo Alcantara
@ 2026-08-18 7:31 ` Namjae Jeon
1 sibling, 0 replies; 3+ messages in thread
From: Namjae Jeon @ 2026-08-18 7:31 UTC (permalink / raw)
To: Frank Sorenson; +Cc: linux-cifs, stfrench, stable
On Tue, Aug 18, 2026 at 2:17 AM Frank Sorenson <sorenson@redhat.com> wrote:
>
> reparse_buf_ptr() reads buf->ReparseDataLength before checking that
> count covers the full fixed header:
>
> buf = (struct reparse_data_buffer *)((u8 *)io + off);
> len = sizeof(*buf); /* 8 bytes */
> rdlen = le16_to_cpu(buf->ReparseDataLength); /* offset 4, 2 bytes */
>
> if (count < len || count < rdlen + len) /* check comes after */
>
> struct reparse_data_buffer has ReparseDataLength at offset 4. If a
> server returns OutputCount < 6, the read at offset 4-5 reaches past
> the end of the received data. The off+count bounds against iov_len
> were already validated, but that does not protect against count being
> smaller than sizeof(*buf).
>
> Split the check: verify count >= sizeof(*buf) before reading
> ReparseDataLength, then verify count covers the data region.
>
> Fixes: a158bb66b137 ("smb: client: optimise reparse point querying")
> Cc: stable@vger.kernel.org
> Signed-off-by: Frank Sorenson <sorenson@redhat.com>
Will appy it to #for-next with Paulo's acked-by tag.
Thanks!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-08-18 7:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-17 17:16 [PATCH] smb: client: fix use-before-check of ReparseDataLength in reparse_buf_ptr() Frank Sorenson
2026-08-17 18:33 ` Paulo Alcantara
2026-08-18 7:31 ` Namjae Jeon
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.