blob: 7b7b47e26dbd41113d6035ae7380a6598987a058 [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"
31
32static int
33check_smb2_hdr(struct smb2_hdr *hdr, __u64 mid)
34{
Sachin Prabhu9235d092014-12-09 17:37:00 +000035 __u64 wire_mid = le64_to_cpu(hdr->MessageId);
36
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040037 /*
38 * Make sure that this really is an SMB, that it is a response,
39 * and that the message ids match.
40 */
Steve French373512e2015-12-18 13:05:30 -060041 if ((hdr->ProtocolId == SMB2_PROTO_NUMBER) &&
Sachin Prabhu9235d092014-12-09 17:37:00 +000042 (mid == wire_mid)) {
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040043 if (hdr->Flags & SMB2_FLAGS_SERVER_TO_REDIR)
44 return 0;
45 else {
46 /* only one valid case where server sends us request */
47 if (hdr->Command == SMB2_OPLOCK_BREAK)
48 return 0;
49 else
Joe Perchesf96637b2013-05-04 22:12:25 -050050 cifs_dbg(VFS, "Received Request not response\n");
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040051 }
52 } else { /* bad signature or mid */
Steve French373512e2015-12-18 13:05:30 -060053 if (hdr->ProtocolId != SMB2_PROTO_NUMBER)
Joe Perchesf96637b2013-05-04 22:12:25 -050054 cifs_dbg(VFS, "Bad protocol string signature header %x\n",
Steve French373512e2015-12-18 13:05:30 -060055 le32_to_cpu(hdr->ProtocolId));
Sachin Prabhu9235d092014-12-09 17:37:00 +000056 if (mid != wire_mid)
Joe Perchesf96637b2013-05-04 22:12:25 -050057 cifs_dbg(VFS, "Mids do not match: %llu and %llu\n",
Sachin Prabhu9235d092014-12-09 17:37:00 +000058 mid, wire_mid);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040059 }
Sachin Prabhu9235d092014-12-09 17:37:00 +000060 cifs_dbg(VFS, "Bad SMB detected. The Mid=%llu\n", wire_mid);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040061 return 1;
62}
63
64/*
65 * The following table defines the expected "StructureSize" of SMB2 responses
66 * in order by SMB2 command. This is similar to "wct" in SMB/CIFS responses.
67 *
68 * Note that commands are defined in smb2pdu.h in le16 but the array below is
69 * indexed by command in host byte order
70 */
71static const __le16 smb2_rsp_struct_sizes[NUMBER_OF_SMB2_COMMANDS] = {
Fabian Frederickbc09d142014-12-10 15:41:15 -080072 /* SMB2_NEGOTIATE */ cpu_to_le16(65),
73 /* SMB2_SESSION_SETUP */ cpu_to_le16(9),
74 /* SMB2_LOGOFF */ cpu_to_le16(4),
75 /* SMB2_TREE_CONNECT */ cpu_to_le16(16),
76 /* SMB2_TREE_DISCONNECT */ cpu_to_le16(4),
77 /* SMB2_CREATE */ cpu_to_le16(89),
78 /* SMB2_CLOSE */ cpu_to_le16(60),
79 /* SMB2_FLUSH */ cpu_to_le16(4),
80 /* SMB2_READ */ cpu_to_le16(17),
81 /* SMB2_WRITE */ cpu_to_le16(17),
82 /* SMB2_LOCK */ cpu_to_le16(4),
83 /* SMB2_IOCTL */ cpu_to_le16(49),
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040084 /* BB CHECK this ... not listed in documentation */
Fabian Frederickbc09d142014-12-10 15:41:15 -080085 /* SMB2_CANCEL */ cpu_to_le16(0),
86 /* SMB2_ECHO */ cpu_to_le16(4),
87 /* SMB2_QUERY_DIRECTORY */ cpu_to_le16(9),
88 /* SMB2_CHANGE_NOTIFY */ cpu_to_le16(9),
89 /* SMB2_QUERY_INFO */ cpu_to_le16(9),
90 /* SMB2_SET_INFO */ cpu_to_le16(2),
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040091 /* BB FIXME can also be 44 for lease break */
Fabian Frederickbc09d142014-12-10 15:41:15 -080092 /* SMB2_OPLOCK_BREAK */ cpu_to_le16(24)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040093};
94
95int
Steve French373512e2015-12-18 13:05:30 -060096smb2_check_message(char *buf, unsigned int length, struct TCP_Server_Info *srvr)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +040097{
98 struct smb2_hdr *hdr = (struct smb2_hdr *)buf;
99 struct smb2_pdu *pdu = (struct smb2_pdu *)hdr;
Steve French373512e2015-12-18 13:05:30 -0600100 __u64 mid;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400101 __u32 len = get_rfc1002_length(buf);
102 __u32 clc_len; /* calculated length */
103 int command;
104
105 /* BB disable following printk later */
Joe Perchesf96637b2013-05-04 22:12:25 -0500106 cifs_dbg(FYI, "%s length: 0x%x, smb_buf_length: 0x%x\n",
107 __func__, length, len);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400108
109 /*
110 * Add function to do table lookup of StructureSize by command
111 * ie Validate the wct via smb2_struct_sizes table above
112 */
113
Steve French373512e2015-12-18 13:05:30 -0600114 if (hdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM) {
115 struct smb2_transform_hdr *thdr =
116 (struct smb2_transform_hdr *)buf;
117 struct cifs_ses *ses = NULL;
118 struct list_head *tmp;
119
120 /* decrypt frame now that it is completely read in */
121 spin_lock(&cifs_tcp_ses_lock);
122 list_for_each(tmp, &srvr->smb_ses_list) {
123 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
124 if (ses->Suid == thdr->SessionId)
125 break;
126
127 ses = NULL;
128 }
129 spin_unlock(&cifs_tcp_ses_lock);
130 if (ses == NULL) {
131 cifs_dbg(VFS, "no decryption - session id not found\n");
132 return 1;
133 }
134 }
135
136
137 mid = le64_to_cpu(hdr->MessageId);
Pavel Shilovsky74112862012-07-27 01:20:41 +0400138 if (length < sizeof(struct smb2_pdu)) {
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400139 if ((length >= sizeof(struct smb2_hdr)) && (hdr->Status != 0)) {
140 pdu->StructureSize2 = 0;
141 /*
142 * As with SMB/CIFS, on some error cases servers may
143 * not return wct properly
144 */
145 return 0;
146 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500147 cifs_dbg(VFS, "Length less than SMB header size\n");
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400148 }
149 return 1;
150 }
151 if (len > CIFSMaxBufSize + MAX_SMB2_HDR_SIZE - 4) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500152 cifs_dbg(VFS, "SMB length greater than maximum, mid=%llu\n",
153 mid);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400154 return 1;
155 }
156
157 if (check_smb2_hdr(hdr, mid))
158 return 1;
159
Pavel Shilovsky74112862012-07-27 01:20:41 +0400160 if (hdr->StructureSize != SMB2_HEADER_STRUCTURE_SIZE) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500161 cifs_dbg(VFS, "Illegal structure size %u\n",
162 le16_to_cpu(hdr->StructureSize));
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400163 return 1;
164 }
165
166 command = le16_to_cpu(hdr->Command);
167 if (command >= NUMBER_OF_SMB2_COMMANDS) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500168 cifs_dbg(VFS, "Illegal SMB2 command %d\n", command);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400169 return 1;
170 }
171
172 if (smb2_rsp_struct_sizes[command] != pdu->StructureSize2) {
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700173 if (command != SMB2_OPLOCK_BREAK_HE && (hdr->Status == 0 ||
174 pdu->StructureSize2 != SMB2_ERROR_STRUCTURE_SIZE2)) {
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400175 /* error packets have 9 byte structure size */
Joe Perchesf96637b2013-05-04 22:12:25 -0500176 cifs_dbg(VFS, "Illegal response size %u for command %d\n",
177 le16_to_cpu(pdu->StructureSize2), command);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400178 return 1;
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700179 } else if (command == SMB2_OPLOCK_BREAK_HE && (hdr->Status == 0)
180 && (le16_to_cpu(pdu->StructureSize2) != 44)
181 && (le16_to_cpu(pdu->StructureSize2) != 36)) {
182 /* special case for SMB2.1 lease break message */
Joe Perchesf96637b2013-05-04 22:12:25 -0500183 cifs_dbg(VFS, "Illegal response size %d for oplock break\n",
184 le16_to_cpu(pdu->StructureSize2));
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700185 return 1;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400186 }
187 }
188
189 if (4 + len != length) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500190 cifs_dbg(VFS, "Total length %u RFC1002 length %u mismatch mid %llu\n",
191 length, 4 + len, mid);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400192 return 1;
193 }
194
195 clc_len = smb2_calc_size(hdr);
196
197 if (4 + len != clc_len) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500198 cifs_dbg(FYI, "Calculated size %u length %u mismatch mid %llu\n",
199 clc_len, 4 + len, mid);
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400200 /* create failed on symlink */
201 if (command == SMB2_CREATE_HE &&
202 hdr->Status == STATUS_STOPPED_ON_SYMLINK)
203 return 0;
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700204 /* Windows 7 server returns 24 bytes more */
205 if (clc_len + 20 == len && command == SMB2_OPLOCK_BREAK_HE)
206 return 0;
Steve French754789a2014-08-15 23:49:01 -0500207 /* server can return one byte more due to implied bcc[0] */
Pavel Shilovsky74112862012-07-27 01:20:41 +0400208 if (clc_len == 4 + len + 1)
209 return 0;
Steve French754789a2014-08-15 23:49:01 -0500210
211 /*
Ronnie Sahlbergf440ea42018-08-22 12:19:24 +1000212 * Some windows servers (win2016) will pad also the final
213 * PDU in a compound to 8 bytes.
214 */
215 if (((clc_len + 7) & ~7) == len)
216 return 0;
217
218 /*
Steve French754789a2014-08-15 23:49:01 -0500219 * MacOS server pads after SMB2.1 write response with 3 bytes
220 * of junk. Other servers match RFC1001 len to actual
221 * SMB2/SMB3 frame length (header + smb2 response specific data)
222 * Log the server error (once), but allow it and continue
223 * since the frame is parseable.
224 */
225 if (clc_len < 4 /* RFC1001 header size */ + len) {
226 printk_once(KERN_WARNING
227 "SMB2 server sent bad RFC1001 len %d not %d\n",
228 len, clc_len - 4);
229 return 0;
230 }
231
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400232 return 1;
233 }
234 return 0;
235}
236
237/*
238 * The size of the variable area depends on the offset and length fields
239 * located in different fields for various SMB2 responses. SMB2 responses
240 * with no variable length info, show an offset of zero for the offset field.
241 */
242static const bool has_smb2_data_area[NUMBER_OF_SMB2_COMMANDS] = {
243 /* SMB2_NEGOTIATE */ true,
244 /* SMB2_SESSION_SETUP */ true,
245 /* SMB2_LOGOFF */ false,
246 /* SMB2_TREE_CONNECT */ false,
247 /* SMB2_TREE_DISCONNECT */ false,
248 /* SMB2_CREATE */ true,
249 /* SMB2_CLOSE */ false,
250 /* SMB2_FLUSH */ false,
251 /* SMB2_READ */ true,
252 /* SMB2_WRITE */ false,
253 /* SMB2_LOCK */ false,
254 /* SMB2_IOCTL */ true,
255 /* SMB2_CANCEL */ false, /* BB CHECK this not listed in documentation */
256 /* SMB2_ECHO */ false,
257 /* SMB2_QUERY_DIRECTORY */ true,
258 /* SMB2_CHANGE_NOTIFY */ true,
259 /* SMB2_QUERY_INFO */ true,
260 /* SMB2_SET_INFO */ false,
261 /* SMB2_OPLOCK_BREAK */ false
262};
263
264/*
265 * Returns the pointer to the beginning of the data area. Length of the data
266 * area and the offset to it (from the beginning of the smb are also returned.
267 */
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400268char *
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400269smb2_get_data_area_len(int *off, int *len, struct smb2_hdr *hdr)
270{
271 *off = 0;
272 *len = 0;
273
274 /* error responses do not have data area */
275 if (hdr->Status && hdr->Status != STATUS_MORE_PROCESSING_REQUIRED &&
276 (((struct smb2_err_rsp *)hdr)->StructureSize) ==
277 SMB2_ERROR_STRUCTURE_SIZE2)
278 return NULL;
279
280 /*
281 * Following commands have data areas so we have to get the location
282 * of the data buffer offset and data buffer length for the particular
283 * command.
284 */
285 switch (hdr->Command) {
286 case SMB2_NEGOTIATE:
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400287 *off = le16_to_cpu(
288 ((struct smb2_negotiate_rsp *)hdr)->SecurityBufferOffset);
289 *len = le16_to_cpu(
290 ((struct smb2_negotiate_rsp *)hdr)->SecurityBufferLength);
291 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400292 case SMB2_SESSION_SETUP:
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400293 *off = le16_to_cpu(
294 ((struct smb2_sess_setup_rsp *)hdr)->SecurityBufferOffset);
295 *len = le16_to_cpu(
296 ((struct smb2_sess_setup_rsp *)hdr)->SecurityBufferLength);
297 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400298 case SMB2_CREATE:
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400299 *off = le32_to_cpu(
300 ((struct smb2_create_rsp *)hdr)->CreateContextsOffset);
301 *len = le32_to_cpu(
302 ((struct smb2_create_rsp *)hdr)->CreateContextsLength);
303 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400304 case SMB2_QUERY_INFO:
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +0400305 *off = le16_to_cpu(
306 ((struct smb2_query_info_rsp *)hdr)->OutputBufferOffset);
307 *len = le32_to_cpu(
308 ((struct smb2_query_info_rsp *)hdr)->OutputBufferLength);
309 break;
310 case SMB2_READ:
Pavel Shilovsky09a47072012-09-18 16:20:29 -0700311 *off = ((struct smb2_read_rsp *)hdr)->DataOffset;
312 *len = le32_to_cpu(((struct smb2_read_rsp *)hdr)->DataLength);
313 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400314 case SMB2_QUERY_DIRECTORY:
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700315 *off = le16_to_cpu(
316 ((struct smb2_query_directory_rsp *)hdr)->OutputBufferOffset);
317 *len = le32_to_cpu(
318 ((struct smb2_query_directory_rsp *)hdr)->OutputBufferLength);
319 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400320 case SMB2_IOCTL:
Steve French4a72daf2013-06-25 00:20:49 -0500321 *off = le32_to_cpu(
322 ((struct smb2_ioctl_rsp *)hdr)->OutputOffset);
323 *len = le32_to_cpu(((struct smb2_ioctl_rsp *)hdr)->OutputCount);
324 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400325 case SMB2_CHANGE_NOTIFY:
326 default:
327 /* BB FIXME for unimplemented cases above */
Joe Perchesf96637b2013-05-04 22:12:25 -0500328 cifs_dbg(VFS, "no length check for command\n");
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400329 break;
330 }
331
332 /*
333 * Invalid length or offset probably means data area is invalid, but
334 * we have little choice but to ignore the data area in this case.
335 */
336 if (*off > 4096) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500337 cifs_dbg(VFS, "offset %d too large, data area ignored\n", *off);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400338 *len = 0;
339 *off = 0;
340 } else if (*off < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500341 cifs_dbg(VFS, "negative offset %d to data invalid ignore data area\n",
342 *off);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400343 *off = 0;
344 *len = 0;
345 } else if (*len < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500346 cifs_dbg(VFS, "negative data length %d invalid, data area ignored\n",
347 *len);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400348 *len = 0;
349 } else if (*len > 128 * 1024) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500350 cifs_dbg(VFS, "data area larger than 128K: %d\n", *len);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400351 *len = 0;
352 }
353
354 /* return pointer to beginning of data area, ie offset from SMB start */
355 if ((*off != 0) && (*len != 0))
Steve French373512e2015-12-18 13:05:30 -0600356 return (char *)(&hdr->ProtocolId) + *off;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400357 else
358 return NULL;
359}
360
361/*
362 * Calculate the size of the SMB message based on the fixed header
363 * portion, the number of word parameters and the data portion of the message.
364 */
365unsigned int
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700366smb2_calc_size(void *buf)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400367{
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700368 struct smb2_hdr *hdr = (struct smb2_hdr *)buf;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400369 struct smb2_pdu *pdu = (struct smb2_pdu *)hdr;
370 int offset; /* the offset from the beginning of SMB to data area */
371 int data_length; /* the length of the variable length data area */
372 /* Structure Size has already been checked to make sure it is 64 */
373 int len = 4 + le16_to_cpu(pdu->hdr.StructureSize);
374
375 /*
376 * StructureSize2, ie length of fixed parameter area has already
377 * been checked to make sure it is the correct length.
378 */
379 len += le16_to_cpu(pdu->StructureSize2);
380
381 if (has_smb2_data_area[le16_to_cpu(hdr->Command)] == false)
382 goto calc_size_exit;
383
384 smb2_get_data_area_len(&offset, &data_length, hdr);
Joe Perchesf96637b2013-05-04 22:12:25 -0500385 cifs_dbg(FYI, "SMB2 data length %d offset %d\n", data_length, offset);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400386
387 if (data_length > 0) {
388 /*
389 * Check to make sure that data area begins after fixed area,
390 * Note that last byte of the fixed area is part of data area
391 * for some commands, typically those with odd StructureSize,
392 * so we must add one to the calculation (and 4 to account for
393 * the size of the RFC1001 hdr.
394 */
395 if (offset + 4 + 1 < len) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500396 cifs_dbg(VFS, "data area offset %d overlaps SMB2 header %d\n",
397 offset + 4 + 1, len);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400398 data_length = 0;
399 } else {
400 len = 4 + offset + data_length;
401 }
402 }
403calc_size_exit:
Joe Perchesf96637b2013-05-04 22:12:25 -0500404 cifs_dbg(FYI, "SMB2 len %d\n", len);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400405 return len;
406}
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400407
408/* Note: caller must free return buffer */
409__le16 *
410cifs_convert_path_to_utf16(const char *from, struct cifs_sb_info *cifs_sb)
411{
412 int len;
413 const char *start_of_path;
414 __le16 *to;
Steve Frencha4153cb2014-09-25 14:01:34 -0500415 int map_type;
416
417 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SFM_CHR)
418 map_type = SFM_MAP_UNI_RSVD;
419 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR)
420 map_type = SFU_MAP_UNI_RSVD;
421 else
422 map_type = NO_MAP_UNI_RSVD;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400423
424 /* Windows doesn't allow paths beginning with \ */
425 if (from[0] == '\\')
426 start_of_path = from + 1;
427 else
428 start_of_path = from;
429 to = cifs_strndup_to_utf16(start_of_path, PATH_MAX, &len,
Steve Frencha4153cb2014-09-25 14:01:34 -0500430 cifs_sb->local_nls, map_type);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400431 return to;
432}
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700433
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700434__le32
435smb2_get_lease_state(struct cifsInodeInfo *cinode)
436{
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400437 __le32 lease = 0;
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700438
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400439 if (CIFS_CACHE_WRITE(cinode))
440 lease |= SMB2_LEASE_WRITE_CACHING;
441 if (CIFS_CACHE_HANDLE(cinode))
442 lease |= SMB2_LEASE_HANDLE_CACHING;
443 if (CIFS_CACHE_READ(cinode))
444 lease |= SMB2_LEASE_READ_CACHING;
445 return lease;
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700446}
447
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700448struct smb2_lease_break_work {
449 struct work_struct lease_break;
450 struct tcon_link *tlink;
451 __u8 lease_key[16];
452 __le32 lease_state;
453};
454
455static void
456cifs_ses_oplock_break(struct work_struct *work)
457{
458 struct smb2_lease_break_work *lw = container_of(work,
459 struct smb2_lease_break_work, lease_break);
460 int rc;
461
462 rc = SMB2_lease_break(0, tlink_tcon(lw->tlink), lw->lease_key,
463 lw->lease_state);
Joe Perchesf96637b2013-05-04 22:12:25 -0500464 cifs_dbg(FYI, "Lease release rc %d\n", rc);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700465 cifs_put_tlink(lw->tlink);
466 kfree(lw);
467}
468
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700469static bool
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400470smb2_tcon_has_lease(struct cifs_tcon *tcon, struct smb2_lease_break *rsp,
471 struct smb2_lease_break_work *lw)
472{
473 bool found;
474 __u8 lease_state;
475 struct list_head *tmp;
476 struct cifsFileInfo *cfile;
477 struct cifs_pending_open *open;
478 struct cifsInodeInfo *cinode;
479 int ack_req = le32_to_cpu(rsp->Flags &
480 SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED);
481
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400482 lease_state = le32_to_cpu(rsp->NewLeaseState);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400483
484 list_for_each(tmp, &tcon->openFileList) {
485 cfile = list_entry(tmp, struct cifsFileInfo, tlist);
David Howells2b0143b2015-03-17 22:25:59 +0000486 cinode = CIFS_I(d_inode(cfile->dentry));
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400487
488 if (memcmp(cinode->lease_key, rsp->LeaseKey,
489 SMB2_LEASE_KEY_SIZE))
490 continue;
491
492 cifs_dbg(FYI, "found in the open list\n");
Steve French59b04c52014-08-02 21:16:48 -0500493 cifs_dbg(FYI, "lease key match, lease break 0x%x\n",
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400494 le32_to_cpu(rsp->NewLeaseState));
495
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400496 if (ack_req)
497 cfile->oplock_break_cancelled = false;
498 else
499 cfile->oplock_break_cancelled = true;
500
Pavel Shilovskyf8a0d9cc2019-02-13 15:43:08 -0800501 set_bit(CIFS_INODE_PENDING_OPLOCK_BREAK, &cinode->flags);
502
503 /*
504 * Set or clear flags depending on the lease state being READ.
505 * HANDLE caching flag should be added when the client starts
506 * to defer closing remote file handles with HANDLE leases.
507 */
508 if (lease_state & SMB2_LEASE_READ_CACHING_HE)
509 set_bit(CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2,
510 &cinode->flags);
511 else
512 clear_bit(CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2,
513 &cinode->flags);
514
Aurelien Aptel1ee4f2d2019-03-29 10:49:12 +0100515 cifs_queue_oplock_break(cfile);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400516 kfree(lw);
517 return true;
518 }
519
520 found = false;
521 list_for_each_entry(open, &tcon->pending_opens, olist) {
522 if (memcmp(open->lease_key, rsp->LeaseKey,
523 SMB2_LEASE_KEY_SIZE))
524 continue;
525
526 if (!found && ack_req) {
527 found = true;
528 memcpy(lw->lease_key, open->lease_key,
529 SMB2_LEASE_KEY_SIZE);
530 lw->tlink = cifs_get_tlink(open->tlink);
531 queue_work(cifsiod_wq, &lw->lease_break);
532 }
533
534 cifs_dbg(FYI, "found in the pending open list\n");
Steve French59b04c52014-08-02 21:16:48 -0500535 cifs_dbg(FYI, "lease key match, lease break 0x%x\n",
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400536 le32_to_cpu(rsp->NewLeaseState));
537
538 open->oplock = lease_state;
539 }
540 return found;
541}
542
543static bool
544smb2_is_valid_lease_break(char *buffer)
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700545{
546 struct smb2_lease_break *rsp = (struct smb2_lease_break *)buffer;
547 struct list_head *tmp, *tmp1, *tmp2;
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400548 struct TCP_Server_Info *server;
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700549 struct cifs_ses *ses;
550 struct cifs_tcon *tcon;
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700551 struct smb2_lease_break_work *lw;
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700552
553 lw = kmalloc(sizeof(struct smb2_lease_break_work), GFP_KERNEL);
Joe Perchesf96637b2013-05-04 22:12:25 -0500554 if (!lw)
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700555 return false;
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700556
557 INIT_WORK(&lw->lease_break, cifs_ses_oplock_break);
558 lw->lease_state = rsp->NewLeaseState;
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700559
Joe Perchesf96637b2013-05-04 22:12:25 -0500560 cifs_dbg(FYI, "Checking for lease break\n");
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700561
562 /* look up tcon based on tid & uid */
563 spin_lock(&cifs_tcp_ses_lock);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400564 list_for_each(tmp, &cifs_tcp_ses_list) {
565 server = list_entry(tmp, struct TCP_Server_Info, tcp_ses_list);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700566
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400567 list_for_each(tmp1, &server->smb_ses_list) {
568 ses = list_entry(tmp1, struct cifs_ses, smb_ses_list);
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700569
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400570 list_for_each(tmp2, &ses->tcon_list) {
571 tcon = list_entry(tmp2, struct cifs_tcon,
572 tcon_list);
Steve French3afca262016-09-22 18:58:16 -0500573 spin_lock(&tcon->open_file_lock);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400574 cifs_stats_inc(
575 &tcon->stats.cifs_stats.num_oplock_brks);
576 if (smb2_tcon_has_lease(tcon, rsp, lw)) {
Steve French3afca262016-09-22 18:58:16 -0500577 spin_unlock(&tcon->open_file_lock);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400578 spin_unlock(&cifs_tcp_ses_lock);
579 return true;
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700580 }
Steve French3afca262016-09-22 18:58:16 -0500581 spin_unlock(&tcon->open_file_lock);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700582 }
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700583 }
584 }
585 spin_unlock(&cifs_tcp_ses_lock);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700586 kfree(lw);
Joe Perchesf96637b2013-05-04 22:12:25 -0500587 cifs_dbg(FYI, "Can not process lease break - no lease matched\n");
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700588 return false;
589}
590
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700591bool
592smb2_is_valid_oplock_break(char *buffer, struct TCP_Server_Info *server)
593{
594 struct smb2_oplock_break *rsp = (struct smb2_oplock_break *)buffer;
595 struct list_head *tmp, *tmp1, *tmp2;
596 struct cifs_ses *ses;
597 struct cifs_tcon *tcon;
598 struct cifsInodeInfo *cinode;
599 struct cifsFileInfo *cfile;
600
Joe Perchesf96637b2013-05-04 22:12:25 -0500601 cifs_dbg(FYI, "Checking for oplock break\n");
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700602
603 if (rsp->hdr.Command != SMB2_OPLOCK_BREAK)
604 return false;
605
Steve French12e8a202012-09-19 09:19:39 -0700606 if (rsp->StructureSize !=
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700607 smb2_rsp_struct_sizes[SMB2_OPLOCK_BREAK_HE]) {
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700608 if (le16_to_cpu(rsp->StructureSize) == 44)
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400609 return smb2_is_valid_lease_break(buffer);
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700610 else
611 return false;
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700612 }
613
Steve French59b04c52014-08-02 21:16:48 -0500614 cifs_dbg(FYI, "oplock level 0x%x\n", rsp->OplockLevel);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700615
616 /* look up tcon based on tid & uid */
617 spin_lock(&cifs_tcp_ses_lock);
618 list_for_each(tmp, &server->smb_ses_list) {
619 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
Pavel Shilovsky7f9eda52019-10-31 14:18:57 -0700620
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700621 list_for_each(tmp1, &ses->tcon_list) {
622 tcon = list_entry(tmp1, struct cifs_tcon, tcon_list);
623
Steve French3afca262016-09-22 18:58:16 -0500624 spin_lock(&tcon->open_file_lock);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700625 list_for_each(tmp2, &tcon->openFileList) {
626 cfile = list_entry(tmp2, struct cifsFileInfo,
627 tlist);
628 if (rsp->PersistentFid !=
629 cfile->fid.persistent_fid ||
630 rsp->VolatileFid !=
631 cfile->fid.volatile_fid)
632 continue;
633
Joe Perchesf96637b2013-05-04 22:12:25 -0500634 cifs_dbg(FYI, "file id match, oplock break\n");
Pavel Shilovsky7f9eda52019-10-31 14:18:57 -0700635 cifs_stats_inc(
636 &tcon->stats.cifs_stats.num_oplock_brks);
David Howells2b0143b2015-03-17 22:25:59 +0000637 cinode = CIFS_I(d_inode(cfile->dentry));
Steve French3afca262016-09-22 18:58:16 -0500638 spin_lock(&cfile->file_info_lock);
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400639 if (!CIFS_CACHE_WRITE(cinode) &&
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700640 rsp->OplockLevel == SMB2_OPLOCK_LEVEL_NONE)
641 cfile->oplock_break_cancelled = true;
642 else
643 cfile->oplock_break_cancelled = false;
644
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000645 set_bit(CIFS_INODE_PENDING_OPLOCK_BREAK,
646 &cinode->flags);
647
648 /*
649 * Set flag if the server downgrades the oplock
650 * to L2 else clear.
651 */
652 if (rsp->OplockLevel)
653 set_bit(
654 CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2,
655 &cinode->flags);
656 else
657 clear_bit(
658 CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2,
659 &cinode->flags);
Steve French3afca262016-09-22 18:58:16 -0500660 spin_unlock(&cfile->file_info_lock);
Aurelien Aptel1ee4f2d2019-03-29 10:49:12 +0100661
662 cifs_queue_oplock_break(cfile);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700663
Steve French3afca262016-09-22 18:58:16 -0500664 spin_unlock(&tcon->open_file_lock);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700665 spin_unlock(&cifs_tcp_ses_lock);
666 return true;
667 }
Steve French3afca262016-09-22 18:58:16 -0500668 spin_unlock(&tcon->open_file_lock);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700669 }
670 }
671 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -0500672 cifs_dbg(FYI, "Can not process oplock break for non-existent connection\n");
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700673 return false;
674}
Sachin Prabhud8fd99d2017-03-03 15:41:38 -0800675
676void
677smb2_cancelled_close_fid(struct work_struct *work)
678{
679 struct close_cancelled_open *cancelled = container_of(work,
680 struct close_cancelled_open, work);
681
682 cifs_dbg(VFS, "Close unmatched open\n");
683
684 SMB2_close(0, cancelled->tcon, cancelled->fid.persistent_fid,
685 cancelled->fid.volatile_fid);
686 cifs_put_tcon(cancelled->tcon);
687 kfree(cancelled);
688}
689
690int
691smb2_handle_cancelled_mid(char *buffer, struct TCP_Server_Info *server)
692{
693 struct smb2_hdr *hdr = (struct smb2_hdr *)buffer;
694 struct smb2_create_rsp *rsp = (struct smb2_create_rsp *)buffer;
695 struct cifs_tcon *tcon;
696 struct close_cancelled_open *cancelled;
697
698 if (hdr->Command != SMB2_CREATE || hdr->Status != STATUS_SUCCESS)
699 return 0;
700
701 cancelled = kzalloc(sizeof(*cancelled), GFP_KERNEL);
702 if (!cancelled)
703 return -ENOMEM;
704
705 tcon = smb2_find_smb_tcon(server, hdr->SessionId, hdr->TreeId);
706 if (!tcon) {
707 kfree(cancelled);
708 return -ENOENT;
709 }
710
711 cancelled->fid.persistent_fid = rsp->PersistentFileId;
712 cancelled->fid.volatile_fid = rsp->VolatileFileId;
713 cancelled->tcon = tcon;
714 INIT_WORK(&cancelled->work, smb2_cancelled_close_fid);
715 queue_work(cifsiod_wq, &cancelled->work);
716
717 return 0;
718}