Skip to content

Commit 3a42709

Browse files
pcacjrSteve French
authored and
Steve French
committed
smb: client: fix OOB in smb2_query_reparse_point()
Validate @ioctl_rsp->OutputOffset and @ioctl_rsp->OutputCount so that their sum does not wrap to a number that is smaller than @reparse_buf and we end up with a wild pointer as follows: BUG: unable to handle page fault for address: ffff88809c5cd45f #PF: supervisor read access in kernel mode #PF: error_code(0x0000) - not-present page PGD 4a01067 P4D 4a01067 PUD 0 Oops: 0000 [#1] PREEMPT SMP NOPTI CPU: 2 PID: 1260 Comm: mount.cifs Not tainted 6.7.0-rc4 #2 Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS rel-1.16.2-3-gd478f380-rebuilt.opensuse.org 04/01/2014 RIP: 0010:smb2_query_reparse_point+0x3e0/0x4c0 [cifs] Code: ff ff e8 f3 51 fe ff 41 89 c6 58 5a 45 85 f6 0f 85 14 fe ff ff 49 8b 57 48 8b 42 60 44 8b 42 64 42 8d 0c 00 49 39 4f 50 72 40 <8b> 04 02 48 8b 9d f0 fe ff ff 49 8b 57 50 89 03 48 8b 9d e8 fe ff RSP: 0018:ffffc90000347a90 EFLAGS: 00010212 RAX: 000000008000001f RBX: ffff88800ae11000 RCX: 00000000000000ec RDX: ffff88801c5cd440 RSI: 0000000000000000 RDI: ffffffff82004aa4 RBP: ffffc90000347bb0 R08: 00000000800000cd R09: 0000000000000001 R10: 0000000000000000 R11: 0000000000000024 R12: ffff8880114d4100 R13: ffff8880114d4198 R14: 0000000000000000 R15: ffff8880114d4000 FS: 00007f02c07babc0(0000) GS:ffff88806ba00000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: ffff88809c5cd45f CR3: 0000000011750000 CR4: 0000000000750ef0 PKRU: 55555554 Call Trace: <TASK> ? __die+0x23/0x70 ? page_fault_oops+0x181/0x480 ? search_module_extables+0x19/0x60 ? srso_alias_return_thunk+0x5/0xfbef5 ? exc_page_fault+0x1b6/0x1c0 ? asm_exc_page_fault+0x26/0x30 ? _raw_spin_unlock_irqrestore+0x44/0x60 ? smb2_query_reparse_point+0x3e0/0x4c0 [cifs] cifs_get_fattr+0x16e/0xa50 [cifs] ? srso_alias_return_thunk+0x5/0xfbef5 ? lock_acquire+0xbf/0x2b0 cifs_root_iget+0x163/0x5f0 [cifs] cifs_smb3_do_mount+0x5bd/0x780 [cifs] smb3_get_tree+0xd9/0x290 [cifs] vfs_get_tree+0x2c/0x100 ? capable+0x37/0x70 path_mount+0x2d7/0xb80 ? srso_alias_return_thunk+0x5/0xfbef5 ? _raw_spin_unlock_irqrestore+0x44/0x60 __x64_sys_mount+0x11a/0x150 do_syscall_64+0x47/0xf0 entry_SYSCALL_64_after_hwframe+0x6f/0x77 RIP: 0033:0x7f02c08d5b1e Fixes: 2e4564b ("smb3: add support for stat of WSL reparse points for special file types") Cc: [email protected] Reported-by: Robert Morris <[email protected]> Signed-off-by: Paulo Alcantara (SUSE) <[email protected]> Signed-off-by: Steve French <[email protected]>
1 parent 90d025c commit 3a42709

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

fs/smb/client/smb2ops.c

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3003,7 +3003,7 @@ static int smb2_query_reparse_point(const unsigned int xid,
30033003
struct kvec *rsp_iov;
30043004
struct smb2_ioctl_rsp *ioctl_rsp;
30053005
struct reparse_data_buffer *reparse_buf;
3006-
u32 plen;
3006+
u32 off, count, len;
30073007

30083008
cifs_dbg(FYI, "%s: path: %s\n", __func__, full_path);
30093009

@@ -3084,16 +3084,22 @@ static int smb2_query_reparse_point(const unsigned int xid,
30843084
*/
30853085
if (rc == 0) {
30863086
/* See MS-FSCC 2.3.23 */
3087+
off = le32_to_cpu(ioctl_rsp->OutputOffset);
3088+
count = le32_to_cpu(ioctl_rsp->OutputCount);
3089+
if (check_add_overflow(off, count, &len) ||
3090+
len > rsp_iov[1].iov_len) {
3091+
cifs_tcon_dbg(VFS, "%s: invalid ioctl: off=%d count=%d\n",
3092+
__func__, off, count);
3093+
rc = -EIO;
3094+
goto query_rp_exit;
3095+
}
30873096

3088-
reparse_buf = (struct reparse_data_buffer *)
3089-
((char *)ioctl_rsp +
3090-
le32_to_cpu(ioctl_rsp->OutputOffset));
3091-
plen = le32_to_cpu(ioctl_rsp->OutputCount);
3092-
3093-
if (plen + le32_to_cpu(ioctl_rsp->OutputOffset) >
3094-
rsp_iov[1].iov_len) {
3095-
cifs_tcon_dbg(FYI, "srv returned invalid ioctl len: %d\n",
3096-
plen);
3097+
reparse_buf = (void *)((u8 *)ioctl_rsp + off);
3098+
len = sizeof(*reparse_buf);
3099+
if (count < len ||
3100+
count < le16_to_cpu(reparse_buf->ReparseDataLength) + len) {
3101+
cifs_tcon_dbg(VFS, "%s: invalid ioctl: off=%d count=%d\n",
3102+
__func__, off, count);
30973103
rc = -EIO;
30983104
goto query_rp_exit;
30993105
}

0 commit comments

Comments
 (0)