Set previous session id correctly on SMB3 reconnect
Signed-off-by: Steve French <steve.french@primarydata.com> CC: Stable <stable@vger.kernel.org> Reported-by: David Goebel <davidgoe@microsoft.com>
This commit is contained in:
parent
7d414f396c
commit
c2afb8147e
|
@ -604,6 +604,7 @@ SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
|
||||||
char *security_blob = NULL;
|
char *security_blob = NULL;
|
||||||
unsigned char *ntlmssp_blob = NULL;
|
unsigned char *ntlmssp_blob = NULL;
|
||||||
bool use_spnego = false; /* else use raw ntlmssp */
|
bool use_spnego = false; /* else use raw ntlmssp */
|
||||||
|
u64 previous_session = ses->Suid;
|
||||||
|
|
||||||
cifs_dbg(FYI, "Session Setup\n");
|
cifs_dbg(FYI, "Session Setup\n");
|
||||||
|
|
||||||
|
@ -641,6 +642,10 @@ ssetup_ntlmssp_authenticate:
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
req->hdr.SessionId = 0; /* First session, not a reauthenticate */
|
req->hdr.SessionId = 0; /* First session, not a reauthenticate */
|
||||||
|
|
||||||
|
/* if reconnect, we need to send previous sess id, otherwise it is 0 */
|
||||||
|
req->PreviousSessionId = previous_session;
|
||||||
|
|
||||||
req->Flags = 0; /* MBZ */
|
req->Flags = 0; /* MBZ */
|
||||||
/* to enable echos and oplocks */
|
/* to enable echos and oplocks */
|
||||||
req->hdr.CreditRequest = cpu_to_le16(3);
|
req->hdr.CreditRequest = cpu_to_le16(3);
|
||||||
|
|
|
@ -276,7 +276,7 @@ struct smb2_sess_setup_req {
|
||||||
__le32 Channel;
|
__le32 Channel;
|
||||||
__le16 SecurityBufferOffset;
|
__le16 SecurityBufferOffset;
|
||||||
__le16 SecurityBufferLength;
|
__le16 SecurityBufferLength;
|
||||||
__le64 PreviousSessionId;
|
__u64 PreviousSessionId;
|
||||||
__u8 Buffer[1]; /* variable length GSS security buffer */
|
__u8 Buffer[1]; /* variable length GSS security buffer */
|
||||||
} __packed;
|
} __packed;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue