mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 05:04:02 +02:00
smb: client: fix OOB struct field reads in move_smb2_ea_to_cifs()
In move_smb2_ea_to_cifs(), the while (src_size > 0) loop condition is
insufficient. It allows iteration to continue even if the remaining
src_size is too small to contain a complete smb2_ea_info structure.
Consequently, reads of ea_name_length and ea_value_length can occur
out-of-bounds.
Fix this by ensuring src_size >= sizeof(*src) before attempting to read
any structure fields. Additionally, reject any next_entry_offset that is
smaller than sizeof(*src) or that would advance the pointer beyond the
available buffer.
Note that for calls where the server returns a malformed EA list, the
error returned to userspace changes from -ENODATA (getxattr) or
-ERANGE (listxattr) to -EIO. This correctly signals a server protocol
error rather than misleadingly indicating "attribute not present" or
"output buffer too small".
Fixes: 95907fea4f ("cifs: Add support for reading attributes on SMB2+")
Cc: stable@vger.kernel.org
Signed-off-by: Frank Sorenson <sorenson@redhat.com>
Reviewed-by: David Howells <dhowells@redhat.com>
Signed-off-by: Paulo Alcantara <pc@manguebit.org>
This commit is contained in:
parent
1b3221bb12
commit
eeb5ef6083
|
|
@ -1053,8 +1053,9 @@ move_smb2_ea_to_cifs(char *dst, size_t dst_size,
|
|||
char *name, *value;
|
||||
size_t buf_size = dst_size;
|
||||
size_t name_len, value_len, user_name_len;
|
||||
u32 next_off;
|
||||
|
||||
while (src_size > 0) {
|
||||
while (src_size >= sizeof(*src)) {
|
||||
name_len = (size_t)src->ea_name_length;
|
||||
value_len = (size_t)le16_to_cpu(src->ea_value_length);
|
||||
|
||||
|
|
@ -1110,14 +1111,22 @@ move_smb2_ea_to_cifs(char *dst, size_t dst_size,
|
|||
if (!src->next_entry_offset)
|
||||
break;
|
||||
|
||||
if (src_size < le32_to_cpu(src->next_entry_offset)) {
|
||||
/* stop before overrun buffer */
|
||||
rc = -ERANGE;
|
||||
break;
|
||||
next_off = le32_to_cpu(src->next_entry_offset);
|
||||
if (next_off < sizeof(*src) || src_size < next_off) {
|
||||
cifs_dbg(FYI, "EA next_entry_offset %u out of range [%zu, %zu]\n",
|
||||
next_off, sizeof(*src), src_size);
|
||||
rc = smb_EIO2(smb_eio_trace_ea_next_offset,
|
||||
next_off, src_size);
|
||||
goto out;
|
||||
}
|
||||
src_size -= next_off;
|
||||
src = (void *)((char *)src + next_off);
|
||||
if (src_size > 0 && src_size < sizeof(*src)) {
|
||||
cifs_dbg(FYI, "EA next_entry_offset %u left truncated entry (%zu bytes)\n",
|
||||
next_off, src_size);
|
||||
rc = smb_EIO2(smb_eio_trace_ea_next_offset, next_off, src_size);
|
||||
goto out;
|
||||
}
|
||||
src_size -= le32_to_cpu(src->next_entry_offset);
|
||||
src = (void *)((char *)src +
|
||||
le32_to_cpu(src->next_entry_offset));
|
||||
}
|
||||
|
||||
/* didn't find the named attribute */
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
EM(smb_eio_trace_copychunk_overcopy_c, "copychunk_overcopy_c") \
|
||||
EM(smb_eio_trace_create_rsp_too_small, "create_rsp_too_small") \
|
||||
EM(smb_eio_trace_dfsref_no_rsp, "dfsref_no_rsp") \
|
||||
EM(smb_eio_trace_ea_next_offset, "ea_next_offset") \
|
||||
EM(smb_eio_trace_ea_overrun, "ea_overrun") \
|
||||
EM(smb_eio_trace_extract_will_pin, "extract_will_pin") \
|
||||
EM(smb_eio_trace_forced_shutdown, "forced_shutdown") \
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user