diff options
author | Roberto Bergantinos Corpas <rbergant@redhat.com> | 2019-10-14 04:59:23 -0400 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2019-10-20 20:19:49 -0400 |
commit | 03d9a9fe3f3aec508e485dd3dcfa1e99933b4bdb (patch) | |
tree | 73bb8587830b41af04ab1e8d3824133cd003ee47 /fs/cifs | |
parent | 553292a6342bc9e5636953ac6e20bccedaacbd1c (diff) |
CIFS: avoid using MID 0xFFFF
According to MS-CIFS specification MID 0xFFFF should not be used by the
CIFS client, but we actually do. Besides, this has proven to cause races
leading to oops between SendReceive2/cifs_demultiplex_thread. On SMB1,
MID is a 2 byte value easy to reach in CurrentMid which may conflict with
an oplock break notification request coming from server
Signed-off-by: Roberto Bergantinos Corpas <rbergant@redhat.com>
Reviewed-by: Ronnie Sahlberg <lsahlber@redhat.com>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
CC: Stable <stable@vger.kernel.org>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/smb1ops.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/cifs/smb1ops.c b/fs/cifs/smb1ops.c index b7421a096319..514810694c0f 100644 --- a/fs/cifs/smb1ops.c +++ b/fs/cifs/smb1ops.c | |||
@@ -171,6 +171,9 @@ cifs_get_next_mid(struct TCP_Server_Info *server) | |||
171 | /* we do not want to loop forever */ | 171 | /* we do not want to loop forever */ |
172 | last_mid = cur_mid; | 172 | last_mid = cur_mid; |
173 | cur_mid++; | 173 | cur_mid++; |
174 | /* avoid 0xFFFF MID */ | ||
175 | if (cur_mid == 0xffff) | ||
176 | cur_mid++; | ||
174 | 177 | ||
175 | /* | 178 | /* |
176 | * This nested loop looks more expensive than it is. | 179 | * This nested loop looks more expensive than it is. |