blob: e311f58dc1c82809de0283e434a9aff09356825f [file] [log] [blame]
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +04001/*
2 * fs/cifs/smb2misc.c
3 *
4 * Copyright (C) International Business Machines Corp., 2002,2011
5 * Etersoft, 2012
6 * Author(s): Steve French (sfrench@us.ibm.com)
7 * Pavel Shilovsky (pshilovsky@samba.org) 2012
8 *
9 * This library is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published
11 * by the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
17 * the GNU Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23#include <linux/ctype.h>
24#include "smb2pdu.h"
25#include "cifsglob.h"
26#include "cifsproto.h"
27#include "smb2proto.h"
28#include "cifs_debug.h"
29#include "cifs_unicode.h"
30#include "smb2status.h"
Pavel Shilovsky31473fc2016-10-24 15:33:04 -070031#include "smb2glob.h"
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040032
33static int
Pavel Shilovsky31473fc2016-10-24 15:33:04 -070034check_smb2_hdr(struct smb2_sync_hdr *shdr, __u64 mid)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040035{
Pavel Shilovsky31473fc2016-10-24 15:33:04 -070036 __u64 wire_mid = le64_to_cpu(shdr->MessageId);
Sachin Prabhu9235d092014-12-09 17:37:00 +000037
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040038 /*
39 * Make sure that this really is an SMB, that it is a response,
40 * and that the message ids match.
41 */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -070042 if ((shdr->ProtocolId == SMB2_PROTO_NUMBER) &&
Sachin Prabhu9235d092014-12-09 17:37:00 +000043 (mid == wire_mid)) {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -070044 if (shdr->Flags & SMB2_FLAGS_SERVER_TO_REDIR)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040045 return 0;
46 else {
47 /* only one valid case where server sends us request */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -070048 if (shdr->Command == SMB2_OPLOCK_BREAK)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040049 return 0;
50 else
Joe Perchesf96637b2013-05-04 22:12:25 -050051 cifs_dbg(VFS, "Received Request not response\n");
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040052 }
53 } else { /* bad signature or mid */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -070054 if (shdr->ProtocolId != SMB2_PROTO_NUMBER)
Joe Perchesf96637b2013-05-04 22:12:25 -050055 cifs_dbg(VFS, "Bad protocol string signature header %x\n",
Pavel Shilovsky31473fc2016-10-24 15:33:04 -070056 le32_to_cpu(shdr->ProtocolId));
Sachin Prabhu9235d092014-12-09 17:37:00 +000057 if (mid != wire_mid)
Joe Perchesf96637b2013-05-04 22:12:25 -050058 cifs_dbg(VFS, "Mids do not match: %llu and %llu\n",
Sachin Prabhu9235d092014-12-09 17:37:00 +000059 mid, wire_mid);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040060 }
Sachin Prabhu9235d092014-12-09 17:37:00 +000061 cifs_dbg(VFS, "Bad SMB detected. The Mid=%llu\n", wire_mid);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040062 return 1;
63}
64
65/*
66 * The following table defines the expected "StructureSize" of SMB2 responses
67 * in order by SMB2 command. This is similar to "wct" in SMB/CIFS responses.
68 *
69 * Note that commands are defined in smb2pdu.h in le16 but the array below is
70 * indexed by command in host byte order
71 */
72static const __le16 smb2_rsp_struct_sizes[NUMBER_OF_SMB2_COMMANDS] = {
Fabian Frederickbc09d142014-12-10 15:41:15 -080073 /* SMB2_NEGOTIATE */ cpu_to_le16(65),
74 /* SMB2_SESSION_SETUP */ cpu_to_le16(9),
75 /* SMB2_LOGOFF */ cpu_to_le16(4),
76 /* SMB2_TREE_CONNECT */ cpu_to_le16(16),
77 /* SMB2_TREE_DISCONNECT */ cpu_to_le16(4),
78 /* SMB2_CREATE */ cpu_to_le16(89),
79 /* SMB2_CLOSE */ cpu_to_le16(60),
80 /* SMB2_FLUSH */ cpu_to_le16(4),
81 /* SMB2_READ */ cpu_to_le16(17),
82 /* SMB2_WRITE */ cpu_to_le16(17),
83 /* SMB2_LOCK */ cpu_to_le16(4),
84 /* SMB2_IOCTL */ cpu_to_le16(49),
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040085 /* BB CHECK this ... not listed in documentation */
Fabian Frederickbc09d142014-12-10 15:41:15 -080086 /* SMB2_CANCEL */ cpu_to_le16(0),
87 /* SMB2_ECHO */ cpu_to_le16(4),
88 /* SMB2_QUERY_DIRECTORY */ cpu_to_le16(9),
89 /* SMB2_CHANGE_NOTIFY */ cpu_to_le16(9),
90 /* SMB2_QUERY_INFO */ cpu_to_le16(9),
91 /* SMB2_SET_INFO */ cpu_to_le16(2),
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040092 /* BB FIXME can also be 44 for lease break */
Fabian Frederickbc09d142014-12-10 15:41:15 -080093 /* SMB2_OPLOCK_BREAK */ cpu_to_le16(24)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040094};
95
Ronnie Sahlberg98170fb2018-05-31 07:43:34 +100096static __u32 get_neg_ctxt_len(struct smb2_sync_hdr *hdr, __u32 len,
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +100097 __u32 non_ctxlen)
Steve French136ff1b2018-04-08 16:14:31 -050098{
99 __u16 neg_count;
100 __u32 nc_offset, size_of_pad_before_neg_ctxts;
101 struct smb2_negotiate_rsp *pneg_rsp = (struct smb2_negotiate_rsp *)hdr;
102
103 /* Negotiate contexts are only valid for latest dialect SMB3.11 */
104 neg_count = le16_to_cpu(pneg_rsp->NegotiateContextCount);
105 if ((neg_count == 0) ||
106 (pneg_rsp->DialectRevision != cpu_to_le16(SMB311_PROT_ID)))
107 return 0;
108
109 /* Make sure that negotiate contexts start after gss security blob */
110 nc_offset = le32_to_cpu(pneg_rsp->NegotiateContextOffset);
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +1000111 if (nc_offset < non_ctxlen) {
Steve French136ff1b2018-04-08 16:14:31 -0500112 printk_once(KERN_WARNING "invalid negotiate context offset\n");
113 return 0;
114 }
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +1000115 size_of_pad_before_neg_ctxts = nc_offset - non_ctxlen;
Steve French136ff1b2018-04-08 16:14:31 -0500116
117 /* Verify that at least minimal negotiate contexts fit within frame */
118 if (len < nc_offset + (neg_count * sizeof(struct smb2_neg_context))) {
119 printk_once(KERN_WARNING "negotiate context goes beyond end\n");
120 return 0;
121 }
122
123 cifs_dbg(FYI, "length of negcontexts %d pad %d\n",
124 len - nc_offset, size_of_pad_before_neg_ctxts);
125
126 /* length of negcontexts including pad from end of sec blob to them */
127 return (len - nc_offset) + size_of_pad_before_neg_ctxts;
128}
Steve French136ff1b2018-04-08 16:14:31 -0500129
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400130int
Ronnie Sahlberg98170fb2018-05-31 07:43:34 +1000131smb2_check_message(char *buf, unsigned int len, struct TCP_Server_Info *srvr)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400132{
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +1000133 struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buf;
Ronnie Sahlberg98170fb2018-05-31 07:43:34 +1000134 struct smb2_sync_pdu *pdu = (struct smb2_sync_pdu *)shdr;
Steve French373512e2015-12-18 13:05:30 -0600135 __u64 mid;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400136 __u32 clc_len; /* calculated length */
137 int command;
Ronnie Sahlberg98170fb2018-05-31 07:43:34 +1000138 int pdu_size = sizeof(struct smb2_sync_pdu);
139 int hdr_size = sizeof(struct smb2_sync_hdr);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400140
141 /*
142 * Add function to do table lookup of StructureSize by command
143 * ie Validate the wct via smb2_struct_sizes table above
144 */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700145 if (shdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM) {
Steve French373512e2015-12-18 13:05:30 -0600146 struct smb2_transform_hdr *thdr =
147 (struct smb2_transform_hdr *)buf;
148 struct cifs_ses *ses = NULL;
149 struct list_head *tmp;
150
151 /* decrypt frame now that it is completely read in */
152 spin_lock(&cifs_tcp_ses_lock);
153 list_for_each(tmp, &srvr->smb_ses_list) {
154 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
155 if (ses->Suid == thdr->SessionId)
156 break;
157
158 ses = NULL;
159 }
160 spin_unlock(&cifs_tcp_ses_lock);
161 if (ses == NULL) {
162 cifs_dbg(VFS, "no decryption - session id not found\n");
163 return 1;
164 }
165 }
166
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700167 mid = le64_to_cpu(shdr->MessageId);
Ronnie Sahlberg98170fb2018-05-31 07:43:34 +1000168 if (len < pdu_size) {
169 if ((len >= hdr_size)
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700170 && (shdr->Status != 0)) {
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400171 pdu->StructureSize2 = 0;
172 /*
173 * As with SMB/CIFS, on some error cases servers may
174 * not return wct properly
175 */
176 return 0;
177 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500178 cifs_dbg(VFS, "Length less than SMB header size\n");
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400179 }
180 return 1;
181 }
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +1000182 if (len > CIFSMaxBufSize + MAX_SMB2_HDR_SIZE) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500183 cifs_dbg(VFS, "SMB length greater than maximum, mid=%llu\n",
184 mid);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400185 return 1;
186 }
187
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700188 if (check_smb2_hdr(shdr, mid))
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400189 return 1;
190
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700191 if (shdr->StructureSize != SMB2_HEADER_STRUCTURE_SIZE) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500192 cifs_dbg(VFS, "Illegal structure size %u\n",
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700193 le16_to_cpu(shdr->StructureSize));
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400194 return 1;
195 }
196
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700197 command = le16_to_cpu(shdr->Command);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400198 if (command >= NUMBER_OF_SMB2_COMMANDS) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500199 cifs_dbg(VFS, "Illegal SMB2 command %d\n", command);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400200 return 1;
201 }
202
203 if (smb2_rsp_struct_sizes[command] != pdu->StructureSize2) {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700204 if (command != SMB2_OPLOCK_BREAK_HE && (shdr->Status == 0 ||
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700205 pdu->StructureSize2 != SMB2_ERROR_STRUCTURE_SIZE2)) {
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400206 /* error packets have 9 byte structure size */
Joe Perchesf96637b2013-05-04 22:12:25 -0500207 cifs_dbg(VFS, "Illegal response size %u for command %d\n",
208 le16_to_cpu(pdu->StructureSize2), command);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400209 return 1;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700210 } else if (command == SMB2_OPLOCK_BREAK_HE
211 && (shdr->Status == 0)
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700212 && (le16_to_cpu(pdu->StructureSize2) != 44)
213 && (le16_to_cpu(pdu->StructureSize2) != 36)) {
214 /* special case for SMB2.1 lease break message */
Joe Perchesf96637b2013-05-04 22:12:25 -0500215 cifs_dbg(VFS, "Illegal response size %d for oplock break\n",
216 le16_to_cpu(pdu->StructureSize2));
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700217 return 1;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400218 }
219 }
220
Ronnie Sahlberg98170fb2018-05-31 07:43:34 +1000221 clc_len = smb2_calc_size(buf, srvr);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400222
Steve French136ff1b2018-04-08 16:14:31 -0500223 if (shdr->Command == SMB2_NEGOTIATE)
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +1000224 clc_len += get_neg_ctxt_len(shdr, len, clc_len);
Steve French0fdfef92018-06-28 19:30:23 -0500225
Ronnie Sahlberg98170fb2018-05-31 07:43:34 +1000226 if (len != clc_len) {
227 cifs_dbg(FYI, "Calculated size %u length %u mismatch mid %llu\n",
228 clc_len, len, mid);
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400229 /* create failed on symlink */
230 if (command == SMB2_CREATE_HE &&
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700231 shdr->Status == STATUS_STOPPED_ON_SYMLINK)
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400232 return 0;
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700233 /* Windows 7 server returns 24 bytes more */
Ronnie Sahlberg98170fb2018-05-31 07:43:34 +1000234 if (clc_len + 24 == len && command == SMB2_OPLOCK_BREAK_HE)
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700235 return 0;
Steve French754789a2014-08-15 23:49:01 -0500236 /* server can return one byte more due to implied bcc[0] */
Ronnie Sahlberg98170fb2018-05-31 07:43:34 +1000237 if (clc_len == len + 1)
Pavel Shilovsky74112862012-07-27 01:20:41 +0400238 return 0;
Steve French754789a2014-08-15 23:49:01 -0500239
240 /*
Ronnie Sahlberge6c47dd2018-08-22 12:19:24 +1000241 * Some windows servers (win2016) will pad also the final
242 * PDU in a compound to 8 bytes.
243 */
244 if (((clc_len + 7) & ~7) == len)
245 return 0;
246
247 /*
Steve French754789a2014-08-15 23:49:01 -0500248 * MacOS server pads after SMB2.1 write response with 3 bytes
249 * of junk. Other servers match RFC1001 len to actual
250 * SMB2/SMB3 frame length (header + smb2 response specific data)
Steve French25f25732018-08-29 09:22:22 -0500251 * Some windows servers also pad up to 8 bytes when compounding.
252 * If pad is longer than eight bytes, log the server behavior
253 * (once), since may indicate a problem but allow it and continue
Steve French754789a2014-08-15 23:49:01 -0500254 * since the frame is parseable.
255 */
Ronnie Sahlberg98170fb2018-05-31 07:43:34 +1000256 if (clc_len < len) {
Steve French25f25732018-08-29 09:22:22 -0500257 pr_warn_once(
258 "srv rsp padded more than expected. Length %d not %d for cmd:%d mid:%llu\n",
259 len, clc_len, command, mid);
Steve French754789a2014-08-15 23:49:01 -0500260 return 0;
261 }
Steve French25f25732018-08-29 09:22:22 -0500262 pr_warn_once(
263 "srv rsp too short, len %d not %d. cmd:%d mid:%llu\n",
264 len, clc_len, command, mid);
Steve French754789a2014-08-15 23:49:01 -0500265
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400266 return 1;
267 }
268 return 0;
269}
270
271/*
272 * The size of the variable area depends on the offset and length fields
273 * located in different fields for various SMB2 responses. SMB2 responses
274 * with no variable length info, show an offset of zero for the offset field.
275 */
276static const bool has_smb2_data_area[NUMBER_OF_SMB2_COMMANDS] = {
277 /* SMB2_NEGOTIATE */ true,
278 /* SMB2_SESSION_SETUP */ true,
279 /* SMB2_LOGOFF */ false,
280 /* SMB2_TREE_CONNECT */ false,
281 /* SMB2_TREE_DISCONNECT */ false,
282 /* SMB2_CREATE */ true,
283 /* SMB2_CLOSE */ false,
284 /* SMB2_FLUSH */ false,
285 /* SMB2_READ */ true,
286 /* SMB2_WRITE */ false,
287 /* SMB2_LOCK */ false,
288 /* SMB2_IOCTL */ true,
289 /* SMB2_CANCEL */ false, /* BB CHECK this not listed in documentation */
290 /* SMB2_ECHO */ false,
291 /* SMB2_QUERY_DIRECTORY */ true,
292 /* SMB2_CHANGE_NOTIFY */ true,
293 /* SMB2_QUERY_INFO */ true,
294 /* SMB2_SET_INFO */ false,
295 /* SMB2_OPLOCK_BREAK */ false
296};
297
298/*
299 * Returns the pointer to the beginning of the data area. Length of the data
300 * area and the offset to it (from the beginning of the smb are also returned.
301 */
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400302char *
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000303smb2_get_data_area_len(int *off, int *len, struct smb2_sync_hdr *shdr)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400304{
305 *off = 0;
306 *len = 0;
307
308 /* error responses do not have data area */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700309 if (shdr->Status && shdr->Status != STATUS_MORE_PROCESSING_REQUIRED &&
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000310 (((struct smb2_err_rsp *)shdr)->StructureSize) ==
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400311 SMB2_ERROR_STRUCTURE_SIZE2)
312 return NULL;
313
314 /*
315 * Following commands have data areas so we have to get the location
316 * of the data buffer offset and data buffer length for the particular
317 * command.
318 */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700319 switch (shdr->Command) {
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400320 case SMB2_NEGOTIATE:
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400321 *off = le16_to_cpu(
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000322 ((struct smb2_negotiate_rsp *)shdr)->SecurityBufferOffset);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400323 *len = le16_to_cpu(
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000324 ((struct smb2_negotiate_rsp *)shdr)->SecurityBufferLength);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400325 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400326 case SMB2_SESSION_SETUP:
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400327 *off = le16_to_cpu(
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000328 ((struct smb2_sess_setup_rsp *)shdr)->SecurityBufferOffset);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400329 *len = le16_to_cpu(
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000330 ((struct smb2_sess_setup_rsp *)shdr)->SecurityBufferLength);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400331 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400332 case SMB2_CREATE:
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400333 *off = le32_to_cpu(
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000334 ((struct smb2_create_rsp *)shdr)->CreateContextsOffset);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400335 *len = le32_to_cpu(
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000336 ((struct smb2_create_rsp *)shdr)->CreateContextsLength);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400337 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400338 case SMB2_QUERY_INFO:
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +0400339 *off = le16_to_cpu(
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000340 ((struct smb2_query_info_rsp *)shdr)->OutputBufferOffset);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +0400341 *len = le32_to_cpu(
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000342 ((struct smb2_query_info_rsp *)shdr)->OutputBufferLength);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +0400343 break;
344 case SMB2_READ:
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000345 /* TODO: is this a bug ? */
346 *off = ((struct smb2_read_rsp *)shdr)->DataOffset;
347 *len = le32_to_cpu(((struct smb2_read_rsp *)shdr)->DataLength);
Pavel Shilovsky09a47072012-09-18 16:20:29 -0700348 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400349 case SMB2_QUERY_DIRECTORY:
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700350 *off = le16_to_cpu(
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000351 ((struct smb2_query_directory_rsp *)shdr)->OutputBufferOffset);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700352 *len = le32_to_cpu(
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000353 ((struct smb2_query_directory_rsp *)shdr)->OutputBufferLength);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700354 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400355 case SMB2_IOCTL:
Steve French4a72daf2013-06-25 00:20:49 -0500356 *off = le32_to_cpu(
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000357 ((struct smb2_ioctl_rsp *)shdr)->OutputOffset);
358 *len = le32_to_cpu(
359 ((struct smb2_ioctl_rsp *)shdr)->OutputCount);
Steve French4a72daf2013-06-25 00:20:49 -0500360 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400361 case SMB2_CHANGE_NOTIFY:
362 default:
363 /* BB FIXME for unimplemented cases above */
Joe Perchesf96637b2013-05-04 22:12:25 -0500364 cifs_dbg(VFS, "no length check for command\n");
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400365 break;
366 }
367
368 /*
369 * Invalid length or offset probably means data area is invalid, but
370 * we have little choice but to ignore the data area in this case.
371 */
372 if (*off > 4096) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500373 cifs_dbg(VFS, "offset %d too large, data area ignored\n", *off);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400374 *len = 0;
375 *off = 0;
376 } else if (*off < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500377 cifs_dbg(VFS, "negative offset %d to data invalid ignore data area\n",
378 *off);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400379 *off = 0;
380 *len = 0;
381 } else if (*len < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500382 cifs_dbg(VFS, "negative data length %d invalid, data area ignored\n",
383 *len);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400384 *len = 0;
385 } else if (*len > 128 * 1024) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500386 cifs_dbg(VFS, "data area larger than 128K: %d\n", *len);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400387 *len = 0;
388 }
389
390 /* return pointer to beginning of data area, ie offset from SMB start */
391 if ((*off != 0) && (*len != 0))
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700392 return (char *)shdr + *off;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400393 else
394 return NULL;
395}
396
397/*
398 * Calculate the size of the SMB message based on the fixed header
399 * portion, the number of word parameters and the data portion of the message.
400 */
401unsigned int
Ronnie Sahlberg9ec672b2018-04-22 15:30:12 -0600402smb2_calc_size(void *buf, struct TCP_Server_Info *srvr)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400403{
Ronnie Sahlberg84f0cbf2018-06-01 10:53:04 +1000404 struct smb2_sync_pdu *pdu = (struct smb2_sync_pdu *)buf;
405 struct smb2_sync_hdr *shdr = &pdu->sync_hdr;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400406 int offset; /* the offset from the beginning of SMB to data area */
407 int data_length; /* the length of the variable length data area */
408 /* Structure Size has already been checked to make sure it is 64 */
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +1000409 int len = le16_to_cpu(shdr->StructureSize);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400410
411 /*
412 * StructureSize2, ie length of fixed parameter area has already
413 * been checked to make sure it is the correct length.
414 */
415 len += le16_to_cpu(pdu->StructureSize2);
416
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700417 if (has_smb2_data_area[le16_to_cpu(shdr->Command)] == false)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400418 goto calc_size_exit;
419
Ronnie Sahlberge4dc31f2018-06-01 10:53:05 +1000420 smb2_get_data_area_len(&offset, &data_length, shdr);
Joe Perchesf96637b2013-05-04 22:12:25 -0500421 cifs_dbg(FYI, "SMB2 data length %d offset %d\n", data_length, offset);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400422
423 if (data_length > 0) {
424 /*
425 * Check to make sure that data area begins after fixed area,
426 * Note that last byte of the fixed area is part of data area
427 * for some commands, typically those with odd StructureSize,
Ronnie Sahlberg84f0cbf2018-06-01 10:53:04 +1000428 * so we must add one to the calculation.
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400429 */
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +1000430 if (offset + 1 < len) {
431 cifs_dbg(VFS, "data area offset %d overlaps SMB2 header %d\n",
432 offset + 1, len);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400433 data_length = 0;
434 } else {
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +1000435 len = offset + data_length;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400436 }
437 }
438calc_size_exit:
Joe Perchesf96637b2013-05-04 22:12:25 -0500439 cifs_dbg(FYI, "SMB2 len %d\n", len);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400440 return len;
441}
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400442
443/* Note: caller must free return buffer */
444__le16 *
445cifs_convert_path_to_utf16(const char *from, struct cifs_sb_info *cifs_sb)
446{
447 int len;
448 const char *start_of_path;
449 __le16 *to;
Steve Frencha4153cb2014-09-25 14:01:34 -0500450 int map_type;
451
452 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SFM_CHR)
453 map_type = SFM_MAP_UNI_RSVD;
454 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR)
455 map_type = SFU_MAP_UNI_RSVD;
456 else
457 map_type = NO_MAP_UNI_RSVD;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400458
459 /* Windows doesn't allow paths beginning with \ */
460 if (from[0] == '\\')
461 start_of_path = from + 1;
Steve French0fdfef92018-06-28 19:30:23 -0500462
Steve Frenchce558b02018-05-31 19:16:54 -0500463 /* SMB311 POSIX extensions paths do not include leading slash */
Aurelien Aptel8ddecf52018-06-04 22:29:35 +0200464 else if (cifs_sb_master_tlink(cifs_sb) &&
Steve Frenchd819d292018-06-14 22:30:56 -0500465 cifs_sb_master_tcon(cifs_sb)->posix_extensions &&
466 (from[0] == '/')) {
Steve Frenchce558b02018-05-31 19:16:54 -0500467 start_of_path = from + 1;
Steve French0fdfef92018-06-28 19:30:23 -0500468 } else
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400469 start_of_path = from;
Steve Frenchce558b02018-05-31 19:16:54 -0500470
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400471 to = cifs_strndup_to_utf16(start_of_path, PATH_MAX, &len,
Steve Frencha4153cb2014-09-25 14:01:34 -0500472 cifs_sb->local_nls, map_type);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400473 return to;
474}
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700475
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700476__le32
477smb2_get_lease_state(struct cifsInodeInfo *cinode)
478{
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400479 __le32 lease = 0;
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700480
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400481 if (CIFS_CACHE_WRITE(cinode))
482 lease |= SMB2_LEASE_WRITE_CACHING;
483 if (CIFS_CACHE_HANDLE(cinode))
484 lease |= SMB2_LEASE_HANDLE_CACHING;
485 if (CIFS_CACHE_READ(cinode))
486 lease |= SMB2_LEASE_READ_CACHING;
487 return lease;
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700488}
489
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700490struct smb2_lease_break_work {
491 struct work_struct lease_break;
492 struct tcon_link *tlink;
493 __u8 lease_key[16];
494 __le32 lease_state;
495};
496
497static void
498cifs_ses_oplock_break(struct work_struct *work)
499{
500 struct smb2_lease_break_work *lw = container_of(work,
501 struct smb2_lease_break_work, lease_break);
Ronnie Sahlberga93864d2018-06-14 06:48:35 +1000502 int rc = 0;
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700503
504 rc = SMB2_lease_break(0, tlink_tcon(lw->tlink), lw->lease_key,
505 lw->lease_state);
Ronnie Sahlberga93864d2018-06-14 06:48:35 +1000506
Joe Perchesf96637b2013-05-04 22:12:25 -0500507 cifs_dbg(FYI, "Lease release rc %d\n", rc);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700508 cifs_put_tlink(lw->tlink);
509 kfree(lw);
510}
511
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700512static bool
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400513smb2_tcon_has_lease(struct cifs_tcon *tcon, struct smb2_lease_break *rsp,
514 struct smb2_lease_break_work *lw)
515{
516 bool found;
517 __u8 lease_state;
518 struct list_head *tmp;
519 struct cifsFileInfo *cfile;
520 struct cifs_pending_open *open;
521 struct cifsInodeInfo *cinode;
522 int ack_req = le32_to_cpu(rsp->Flags &
523 SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED);
524
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400525 lease_state = le32_to_cpu(rsp->NewLeaseState);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400526
527 list_for_each(tmp, &tcon->openFileList) {
528 cfile = list_entry(tmp, struct cifsFileInfo, tlist);
David Howells2b0143b2015-03-17 22:25:59 +0000529 cinode = CIFS_I(d_inode(cfile->dentry));
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400530
531 if (memcmp(cinode->lease_key, rsp->LeaseKey,
532 SMB2_LEASE_KEY_SIZE))
533 continue;
534
535 cifs_dbg(FYI, "found in the open list\n");
Steve French59b04c52014-08-02 21:16:48 -0500536 cifs_dbg(FYI, "lease key match, lease break 0x%x\n",
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400537 le32_to_cpu(rsp->NewLeaseState));
538
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400539 if (ack_req)
540 cfile->oplock_break_cancelled = false;
541 else
542 cfile->oplock_break_cancelled = true;
543
Pavel Shilovsky7b9b9ed2019-02-13 15:43:08 -0800544 set_bit(CIFS_INODE_PENDING_OPLOCK_BREAK, &cinode->flags);
545
546 /*
547 * Set or clear flags depending on the lease state being READ.
548 * HANDLE caching flag should be added when the client starts
549 * to defer closing remote file handles with HANDLE leases.
550 */
551 if (lease_state & SMB2_LEASE_READ_CACHING_HE)
552 set_bit(CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2,
553 &cinode->flags);
554 else
555 clear_bit(CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2,
556 &cinode->flags);
557
Aurelien Aptelb98749c2019-03-29 10:49:12 +0100558 cifs_queue_oplock_break(cfile);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400559 kfree(lw);
560 return true;
561 }
562
563 found = false;
564 list_for_each_entry(open, &tcon->pending_opens, olist) {
565 if (memcmp(open->lease_key, rsp->LeaseKey,
566 SMB2_LEASE_KEY_SIZE))
567 continue;
568
569 if (!found && ack_req) {
570 found = true;
571 memcpy(lw->lease_key, open->lease_key,
572 SMB2_LEASE_KEY_SIZE);
573 lw->tlink = cifs_get_tlink(open->tlink);
574 queue_work(cifsiod_wq, &lw->lease_break);
575 }
576
577 cifs_dbg(FYI, "found in the pending open list\n");
Steve French59b04c52014-08-02 21:16:48 -0500578 cifs_dbg(FYI, "lease key match, lease break 0x%x\n",
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400579 le32_to_cpu(rsp->NewLeaseState));
580
581 open->oplock = lease_state;
582 }
Ronnie Sahlberga93864d2018-06-14 06:48:35 +1000583
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400584 return found;
585}
586
587static bool
588smb2_is_valid_lease_break(char *buffer)
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700589{
590 struct smb2_lease_break *rsp = (struct smb2_lease_break *)buffer;
591 struct list_head *tmp, *tmp1, *tmp2;
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400592 struct TCP_Server_Info *server;
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700593 struct cifs_ses *ses;
594 struct cifs_tcon *tcon;
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700595 struct smb2_lease_break_work *lw;
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700596
597 lw = kmalloc(sizeof(struct smb2_lease_break_work), GFP_KERNEL);
Joe Perchesf96637b2013-05-04 22:12:25 -0500598 if (!lw)
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700599 return false;
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700600
601 INIT_WORK(&lw->lease_break, cifs_ses_oplock_break);
602 lw->lease_state = rsp->NewLeaseState;
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700603
Joe Perchesf96637b2013-05-04 22:12:25 -0500604 cifs_dbg(FYI, "Checking for lease break\n");
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700605
606 /* look up tcon based on tid & uid */
607 spin_lock(&cifs_tcp_ses_lock);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400608 list_for_each(tmp, &cifs_tcp_ses_list) {
609 server = list_entry(tmp, struct TCP_Server_Info, tcp_ses_list);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700610
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400611 list_for_each(tmp1, &server->smb_ses_list) {
612 ses = list_entry(tmp1, struct cifs_ses, smb_ses_list);
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700613
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400614 list_for_each(tmp2, &ses->tcon_list) {
615 tcon = list_entry(tmp2, struct cifs_tcon,
616 tcon_list);
Steve French3afca262016-09-22 18:58:16 -0500617 spin_lock(&tcon->open_file_lock);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400618 cifs_stats_inc(
619 &tcon->stats.cifs_stats.num_oplock_brks);
620 if (smb2_tcon_has_lease(tcon, rsp, lw)) {
Steve French3afca262016-09-22 18:58:16 -0500621 spin_unlock(&tcon->open_file_lock);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400622 spin_unlock(&cifs_tcp_ses_lock);
623 return true;
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700624 }
Steve French3afca262016-09-22 18:58:16 -0500625 spin_unlock(&tcon->open_file_lock);
Ronnie Sahlberga93864d2018-06-14 06:48:35 +1000626
627 if (tcon->crfid.is_valid &&
628 !memcmp(rsp->LeaseKey,
629 tcon->crfid.fid->lease_key,
630 SMB2_LEASE_KEY_SIZE)) {
631 INIT_WORK(&tcon->crfid.lease_break,
632 smb2_cached_lease_break);
633 queue_work(cifsiod_wq,
634 &tcon->crfid.lease_break);
635 spin_unlock(&cifs_tcp_ses_lock);
636 return true;
637 }
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700638 }
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700639 }
640 }
641 spin_unlock(&cifs_tcp_ses_lock);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700642 kfree(lw);
Joe Perchesf96637b2013-05-04 22:12:25 -0500643 cifs_dbg(FYI, "Can not process lease break - no lease matched\n");
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700644 return false;
645}
646
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700647bool
648smb2_is_valid_oplock_break(char *buffer, struct TCP_Server_Info *server)
649{
Ronnie Sahlberg0d5a2882018-06-01 10:53:03 +1000650 struct smb2_oplock_break *rsp = (struct smb2_oplock_break *)buffer;
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700651 struct list_head *tmp, *tmp1, *tmp2;
652 struct cifs_ses *ses;
653 struct cifs_tcon *tcon;
654 struct cifsInodeInfo *cinode;
655 struct cifsFileInfo *cfile;
656
Joe Perchesf96637b2013-05-04 22:12:25 -0500657 cifs_dbg(FYI, "Checking for oplock break\n");
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700658
Ronnie Sahlberg0d5a2882018-06-01 10:53:03 +1000659 if (rsp->sync_hdr.Command != SMB2_OPLOCK_BREAK)
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700660 return false;
661
Steve French12e8a202012-09-19 09:19:39 -0700662 if (rsp->StructureSize !=
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700663 smb2_rsp_struct_sizes[SMB2_OPLOCK_BREAK_HE]) {
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700664 if (le16_to_cpu(rsp->StructureSize) == 44)
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400665 return smb2_is_valid_lease_break(buffer);
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700666 else
667 return false;
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700668 }
669
Steve French59b04c52014-08-02 21:16:48 -0500670 cifs_dbg(FYI, "oplock level 0x%x\n", rsp->OplockLevel);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700671
672 /* look up tcon based on tid & uid */
673 spin_lock(&cifs_tcp_ses_lock);
674 list_for_each(tmp, &server->smb_ses_list) {
675 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
676 list_for_each(tmp1, &ses->tcon_list) {
677 tcon = list_entry(tmp1, struct cifs_tcon, tcon_list);
678
679 cifs_stats_inc(&tcon->stats.cifs_stats.num_oplock_brks);
Steve French3afca262016-09-22 18:58:16 -0500680 spin_lock(&tcon->open_file_lock);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700681 list_for_each(tmp2, &tcon->openFileList) {
682 cfile = list_entry(tmp2, struct cifsFileInfo,
683 tlist);
684 if (rsp->PersistentFid !=
685 cfile->fid.persistent_fid ||
686 rsp->VolatileFid !=
687 cfile->fid.volatile_fid)
688 continue;
689
Joe Perchesf96637b2013-05-04 22:12:25 -0500690 cifs_dbg(FYI, "file id match, oplock break\n");
David Howells2b0143b2015-03-17 22:25:59 +0000691 cinode = CIFS_I(d_inode(cfile->dentry));
Steve French3afca262016-09-22 18:58:16 -0500692 spin_lock(&cfile->file_info_lock);
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400693 if (!CIFS_CACHE_WRITE(cinode) &&
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700694 rsp->OplockLevel == SMB2_OPLOCK_LEVEL_NONE)
695 cfile->oplock_break_cancelled = true;
696 else
697 cfile->oplock_break_cancelled = false;
698
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000699 set_bit(CIFS_INODE_PENDING_OPLOCK_BREAK,
700 &cinode->flags);
701
702 /*
703 * Set flag if the server downgrades the oplock
704 * to L2 else clear.
705 */
706 if (rsp->OplockLevel)
707 set_bit(
708 CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2,
709 &cinode->flags);
710 else
711 clear_bit(
712 CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2,
713 &cinode->flags);
Steve French3afca262016-09-22 18:58:16 -0500714 spin_unlock(&cfile->file_info_lock);
Aurelien Aptelb98749c2019-03-29 10:49:12 +0100715
716 cifs_queue_oplock_break(cfile);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700717
Steve French3afca262016-09-22 18:58:16 -0500718 spin_unlock(&tcon->open_file_lock);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700719 spin_unlock(&cifs_tcp_ses_lock);
720 return true;
721 }
Steve French3afca262016-09-22 18:58:16 -0500722 spin_unlock(&tcon->open_file_lock);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700723 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -0500724 cifs_dbg(FYI, "No matching file for oplock break\n");
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700725 return true;
726 }
727 }
728 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -0500729 cifs_dbg(FYI, "Can not process oplock break for non-existent connection\n");
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700730 return false;
731}
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800732
733void
734smb2_cancelled_close_fid(struct work_struct *work)
735{
736 struct close_cancelled_open *cancelled = container_of(work,
737 struct close_cancelled_open, work);
738
739 cifs_dbg(VFS, "Close unmatched open\n");
740
741 SMB2_close(0, cancelled->tcon, cancelled->fid.persistent_fid,
742 cancelled->fid.volatile_fid);
743 cifs_put_tcon(cancelled->tcon);
744 kfree(cancelled);
745}
746
747int
748smb2_handle_cancelled_mid(char *buffer, struct TCP_Server_Info *server)
749{
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +1000750 struct smb2_sync_hdr *sync_hdr = (struct smb2_sync_hdr *)buffer;
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800751 struct smb2_create_rsp *rsp = (struct smb2_create_rsp *)buffer;
752 struct cifs_tcon *tcon;
753 struct close_cancelled_open *cancelled;
754
755 if (sync_hdr->Command != SMB2_CREATE ||
756 sync_hdr->Status != STATUS_SUCCESS)
757 return 0;
758
759 cancelled = kzalloc(sizeof(*cancelled), GFP_KERNEL);
760 if (!cancelled)
761 return -ENOMEM;
762
763 tcon = smb2_find_smb_tcon(server, sync_hdr->SessionId,
764 sync_hdr->TreeId);
765 if (!tcon) {
766 kfree(cancelled);
767 return -ENOENT;
768 }
769
770 cancelled->fid.persistent_fid = rsp->PersistentFileId;
771 cancelled->fid.volatile_fid = rsp->VolatileFileId;
772 cancelled->tcon = tcon;
773 INIT_WORK(&cancelled->work, smb2_cancelled_close_fid);
774 queue_work(cifsiod_wq, &cancelled->work);
775
776 return 0;
777}
Aurelien Aptel8bd68c62018-02-16 19:19:29 +0100778
Aurelien Aptel8bd68c62018-02-16 19:19:29 +0100779/**
780 * smb311_update_preauth_hash - update @ses hash with the packet data in @iov
781 *
782 * Assumes @iov does not contain the rfc1002 length and iov[0] has the
783 * SMB2 header.
784 */
785int
786smb311_update_preauth_hash(struct cifs_ses *ses, struct kvec *iov, int nvec)
787{
788 int i, rc;
789 struct sdesc *d;
790 struct smb2_sync_hdr *hdr;
791
792 if (ses->server->tcpStatus == CifsGood) {
793 /* skip non smb311 connections */
794 if (ses->server->dialect != SMB311_PROT_ID)
795 return 0;
796
797 /* skip last sess setup response */
798 hdr = (struct smb2_sync_hdr *)iov[0].iov_base;
799 if (hdr->Flags & SMB2_FLAGS_SIGNED)
800 return 0;
801 }
802
803 rc = smb311_crypto_shash_allocate(ses->server);
804 if (rc)
805 return rc;
806
807 d = ses->server->secmech.sdescsha512;
808 rc = crypto_shash_init(&d->shash);
809 if (rc) {
810 cifs_dbg(VFS, "%s: could not init sha512 shash\n", __func__);
811 return rc;
812 }
813
814 rc = crypto_shash_update(&d->shash, ses->preauth_sha_hash,
815 SMB2_PREAUTH_HASH_SIZE);
816 if (rc) {
817 cifs_dbg(VFS, "%s: could not update sha512 shash\n", __func__);
818 return rc;
819 }
820
821 for (i = 0; i < nvec; i++) {
822 rc = crypto_shash_update(&d->shash,
823 iov[i].iov_base, iov[i].iov_len);
824 if (rc) {
825 cifs_dbg(VFS, "%s: could not update sha512 shash\n",
826 __func__);
827 return rc;
828 }
829 }
830
831 rc = crypto_shash_final(&d->shash, ses->preauth_sha_hash);
832 if (rc) {
833 cifs_dbg(VFS, "%s: could not finalize sha512 shash\n",
834 __func__);
835 return rc;
836 }
837
838 return 0;
839}