cifs: commands that are retried should have replay flag set
authorShyam Prasad N <sprasad@microsoft.com>
Sun, 21 Jan 2024 03:32:47 +0000 (03:32 +0000)
committerSteve French <stfrench@microsoft.com>
Wed, 24 Jan 2024 02:23:29 +0000 (20:23 -0600)
commit4f1fffa2376922f3d1d506e49c0fd445b023a28e
tree7e5bf09ccdeecf68f6d978c3066a4ef7b885b82a
parent64cc377b7628b81ffdbdb1c6bacfba895dcac3f8
cifs: commands that are retried should have replay flag set

MS-SMB2 states that the header flag SMB2_FLAGS_REPLAY_OPERATION
needs to be set when a command needs to be retried, so that
the server is aware that this is a replay for an operation that
appeared before.

This can be very important, for example, for state changing
operations and opens which get retried following a reconnect;
since the client maybe unaware of the status of the previous
open.

This is particularly important for multichannel scenario, since
disconnection of one connection does not mean that the session
is lost. The requests can be replayed on another channel.

This change also makes use of exponential back-off before replays
and also limits the number of retries to "retrans" mount option
value.

Also, this change does not modify the read/write codepath.

Signed-off-by: Shyam Prasad N <sprasad@microsoft.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/smb/client/cached_dir.c
fs/smb/client/cifsglob.h
fs/smb/client/smb2inode.c
fs/smb/client/smb2ops.c
fs/smb/client/smb2pdu.c
fs/smb/client/smb2proto.h