diff options
author | Pavel Shilovsky <pshilov@microsoft.com> | 2019-01-18 01:18:38 +0100 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2019-03-05 03:06:39 +0100 |
commit | bb1bccb60c2ebd9a6f895507d1d48d5ed773814e (patch) | |
tree | c12fe68438b442121504bb6de9f869de9a36364f /fs/cifs/cifssmb.c | |
parent | CIFS: Count SMB3 credits for malformed pending responses (diff) | |
download | linux-bb1bccb60c2ebd9a6f895507d1d48d5ed773814e.tar.xz linux-bb1bccb60c2ebd9a6f895507d1d48d5ed773814e.zip |
CIFS: Respect SMB2 hdr preamble size in read responses
There are a couple places where we still account for 4 bytes
in the beginning of SMB2 packet which is not true in the current
code. Fix this to use a header preamble size where possible.
Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/cifssmb.c')
-rw-r--r-- | fs/cifs/cifssmb.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c index 683c7c9d5a02..3f4e40abaad4 100644 --- a/fs/cifs/cifssmb.c +++ b/fs/cifs/cifssmb.c @@ -1612,9 +1612,10 @@ cifs_readv_receive(struct TCP_Server_Info *server, struct mid_q_entry *mid) /* set up first two iov for signature check and to get credits */ rdata->iov[0].iov_base = buf; - rdata->iov[0].iov_len = 4; - rdata->iov[1].iov_base = buf + 4; - rdata->iov[1].iov_len = server->total_read - 4; + rdata->iov[0].iov_len = server->vals->header_preamble_size; + rdata->iov[1].iov_base = buf + server->vals->header_preamble_size; + rdata->iov[1].iov_len = + server->total_read - server->vals->header_preamble_size; cifs_dbg(FYI, "0: iov_base=%p iov_len=%zu\n", rdata->iov[0].iov_base, rdata->iov[0].iov_len); cifs_dbg(FYI, "1: iov_base=%p iov_len=%zu\n", |