Skip to content

Commit 9a40506

Browse files
ddissgregkh
authored andcommitted
cifs: fix CIFS_IOC_GET_MNT_INFO oops
commit d8a6e505d6bba2250852fbc1c1c86fe68aaf9af3 upstream. An open directory may have a NULL private_data pointer prior to readdir. Fixes: 0de1f4c ("Add way to query server fs info for smb3") Signed-off-by: David Disseldorp <ddiss@suse.de> Signed-off-by: Steve French <smfrench@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent a8900a6 commit 9a40506

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

fs/cifs/ioctl.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,8 @@ long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg)
272272
rc = -EOPNOTSUPP;
273273
break;
274274
case CIFS_IOC_GET_MNT_INFO:
275+
if (pSMBFile == NULL)
276+
break;
275277
tcon = tlink_tcon(pSMBFile->tlink);
276278
rc = smb_mnt_get_fsinfo(xid, tcon, (void __user *)arg);
277279
break;

0 commit comments

Comments
 (0)