]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
Reset TreeId to zero on SMB2 TREE_CONNECT
authorJan-Marek Glogowski <glogow@fbihome.de>
Mon, 20 Feb 2017 11:25:58 +0000 (12:25 +0100)
committerJiri Slaby <jslaby@suse.cz>
Wed, 26 Apr 2017 18:05:00 +0000 (20:05 +0200)
commit 806a28efe9b78ffae5e2757e1ee924b8e50c08ab upstream.

Currently the cifs module breaks the CIFS specs on reconnect as
described in http://msdn.microsoft.com/en-us/library/cc246529.aspx:

"TreeId (4 bytes): Uniquely identifies the tree connect for the
command. This MUST be 0 for the SMB2 TREE_CONNECT Request."

Signed-off-by: Jan-Marek Glogowski <glogow@fbihome.de>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
Tested-by: Aurelien Aptel <aaptel@suse.com>
Signed-off-by: Steve French <smfrench@gmail.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
fs/cifs/smb2pdu.c

index 30d0751626e345e3871c6505cc54f36d8af21085..c7a400415d02d865977273356dc445cc05fdf8e9 100644 (file)
@@ -853,6 +853,10 @@ SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
                return -EINVAL;
        }
 
+       /* SMB2 TREE_CONNECT request must be called with TreeId == 0 */
+       if (tcon)
+               tcon->tid = 0;
+
        rc = small_smb2_init(SMB2_TREE_CONNECT, tcon, (void **) &req);
        if (rc) {
                kfree(unc_path);