cifs: check if SMB2 PDU size has been padded and suppress the warning
authorRonnie Sahlberg <lsahlber@redhat.com>
Wed, 22 Aug 2018 02:19:24 +0000 (12:19 +1000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 15 Sep 2018 07:45:26 +0000 (09:45 +0200)
commitd4e42116f77e41216cee1178fa515a1b4a1beba6
tree3e1c6036fac38221d1afdb5391c65eb339efc41f
parentc9ba1b82ce96256bd4b05120dfb84d7062ba5376
cifs: check if SMB2 PDU size has been padded and suppress the warning

[ Upstream commit e6c47dd0da1e3a484e778046fc10da0b20606a86 ]

Some SMB2/3 servers, Win2016 but possibly others too, adds padding
not only between PDUs in a compound but also to the final PDU.
This padding extends the PDU to a multiple of 8 bytes.

Check if the unexpected length looks like this might be the case
and avoid triggering the log messages for :

  "SMB2 server sent bad RFC1001 len %d not %d\n"

Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/cifs/smb2misc.c