Commit fc342cf8 authored by Jordy Zomer's avatar Jordy Zomer Committed by Steve French
Browse files

ksmbd: fix Out-of-Bounds Read in ksmbd_vfs_stream_read



An offset from client could be a negative value, It could lead
to an out-of-bounds read from the stream_buf.
Note that this issue is coming when setting
'vfs objects = streams_xattr parameter' in ksmbd.conf.

Cc: stable@vger.kernel.org # v5.15+
Reported-by: default avatarJordy Zomer <jordyzomer@google.com>
Signed-off-by: default avatarJordy Zomer <jordyzomer@google.com>
Signed-off-by: default avatarNamjae Jeon <linkinjeon@kernel.org>
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
parent e18655cf
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -6663,6 +6663,10 @@ int smb2_read(struct ksmbd_work *work)
	}

	offset = le64_to_cpu(req->Offset);
	if (offset < 0) {
		err = -EINVAL;
		goto out;
	}
	length = le32_to_cpu(req->Length);
	mincount = le32_to_cpu(req->MinimumCount);