blob: 9df9f0b48160637d53fa430251cb209366baaf33 [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
Steve French136ff1b2018-04-08 16:14:31 -050096#ifdef CONFIG_CIFS_SMB311
97static __u32 get_neg_ctxt_len(struct smb2_hdr *hdr, __u32 len, __u32 non_ctxlen)
98{
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);
111 if (nc_offset < non_ctxlen - 4 /* RFC1001 len field */) {
112 printk_once(KERN_WARNING "invalid negotiate context offset\n");
113 return 0;
114 }
115 size_of_pad_before_neg_ctxts = nc_offset - (non_ctxlen - 4);
116
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}
129#endif /* CIFS_SMB311 */
130
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400131int
Steve French373512e2015-12-18 13:05:30 -0600132smb2_check_message(char *buf, unsigned int length, struct TCP_Server_Info *srvr)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400133{
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700134 struct smb2_pdu *pdu = (struct smb2_pdu *)buf;
135 struct smb2_hdr *hdr = &pdu->hdr;
136 struct smb2_sync_hdr *shdr = get_sync_hdr(buf);
Steve French373512e2015-12-18 13:05:30 -0600137 __u64 mid;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400138 __u32 len = get_rfc1002_length(buf);
139 __u32 clc_len; /* calculated length */
140 int command;
141
142 /* BB disable following printk later */
Joe Perchesf96637b2013-05-04 22:12:25 -0500143 cifs_dbg(FYI, "%s length: 0x%x, smb_buf_length: 0x%x\n",
144 __func__, length, len);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400145
146 /*
147 * Add function to do table lookup of StructureSize by command
148 * ie Validate the wct via smb2_struct_sizes table above
149 */
150
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700151 if (shdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM) {
Steve French373512e2015-12-18 13:05:30 -0600152 struct smb2_transform_hdr *thdr =
153 (struct smb2_transform_hdr *)buf;
154 struct cifs_ses *ses = NULL;
155 struct list_head *tmp;
156
157 /* decrypt frame now that it is completely read in */
158 spin_lock(&cifs_tcp_ses_lock);
159 list_for_each(tmp, &srvr->smb_ses_list) {
160 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
161 if (ses->Suid == thdr->SessionId)
162 break;
163
164 ses = NULL;
165 }
166 spin_unlock(&cifs_tcp_ses_lock);
167 if (ses == NULL) {
168 cifs_dbg(VFS, "no decryption - session id not found\n");
169 return 1;
170 }
171 }
172
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700173 mid = le64_to_cpu(shdr->MessageId);
Pavel Shilovsky74112862012-07-27 01:20:41 +0400174 if (length < sizeof(struct smb2_pdu)) {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700175 if ((length >= sizeof(struct smb2_hdr))
176 && (shdr->Status != 0)) {
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400177 pdu->StructureSize2 = 0;
178 /*
179 * As with SMB/CIFS, on some error cases servers may
180 * not return wct properly
181 */
182 return 0;
183 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500184 cifs_dbg(VFS, "Length less than SMB header size\n");
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400185 }
186 return 1;
187 }
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100188 if (len > CIFSMaxBufSize + MAX_SMB2_HDR_SIZE -
189 srvr->vals->header_preamble_size) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500190 cifs_dbg(VFS, "SMB length greater than maximum, mid=%llu\n",
191 mid);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400192 return 1;
193 }
194
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700195 if (check_smb2_hdr(shdr, mid))
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400196 return 1;
197
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700198 if (shdr->StructureSize != SMB2_HEADER_STRUCTURE_SIZE) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500199 cifs_dbg(VFS, "Illegal structure size %u\n",
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700200 le16_to_cpu(shdr->StructureSize));
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400201 return 1;
202 }
203
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700204 command = le16_to_cpu(shdr->Command);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400205 if (command >= NUMBER_OF_SMB2_COMMANDS) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500206 cifs_dbg(VFS, "Illegal SMB2 command %d\n", command);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400207 return 1;
208 }
209
210 if (smb2_rsp_struct_sizes[command] != pdu->StructureSize2) {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700211 if (command != SMB2_OPLOCK_BREAK_HE && (shdr->Status == 0 ||
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700212 pdu->StructureSize2 != SMB2_ERROR_STRUCTURE_SIZE2)) {
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400213 /* error packets have 9 byte structure size */
Joe Perchesf96637b2013-05-04 22:12:25 -0500214 cifs_dbg(VFS, "Illegal response size %u for command %d\n",
215 le16_to_cpu(pdu->StructureSize2), command);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400216 return 1;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700217 } else if (command == SMB2_OPLOCK_BREAK_HE
218 && (shdr->Status == 0)
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700219 && (le16_to_cpu(pdu->StructureSize2) != 44)
220 && (le16_to_cpu(pdu->StructureSize2) != 36)) {
221 /* special case for SMB2.1 lease break message */
Joe Perchesf96637b2013-05-04 22:12:25 -0500222 cifs_dbg(VFS, "Illegal response size %d for oplock break\n",
223 le16_to_cpu(pdu->StructureSize2));
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700224 return 1;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400225 }
226 }
227
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100228 if (srvr->vals->header_preamble_size + len != length) {
Steve French6c4ba312018-03-31 12:36:26 -0500229 cifs_dbg(VFS, "Total length %u RFC1002 length %zu mismatch mid %llu\n",
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100230 length, srvr->vals->header_preamble_size + len, mid);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400231 return 1;
232 }
233
234 clc_len = smb2_calc_size(hdr);
235
Steve French136ff1b2018-04-08 16:14:31 -0500236#ifdef CONFIG_CIFS_SMB311
237 if (shdr->Command == SMB2_NEGOTIATE)
238 clc_len += get_neg_ctxt_len(hdr, len, clc_len);
239#endif /* SMB311 */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100240 if (srvr->vals->header_preamble_size + len != clc_len) {
Steve French6c4ba312018-03-31 12:36:26 -0500241 cifs_dbg(FYI, "Calculated size %u length %zu mismatch mid %llu\n",
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100242 clc_len, srvr->vals->header_preamble_size + len, mid);
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400243 /* create failed on symlink */
244 if (command == SMB2_CREATE_HE &&
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700245 shdr->Status == STATUS_STOPPED_ON_SYMLINK)
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400246 return 0;
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700247 /* Windows 7 server returns 24 bytes more */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100248 if (clc_len + 24 - srvr->vals->header_preamble_size == len && command == SMB2_OPLOCK_BREAK_HE)
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700249 return 0;
Steve French754789a2014-08-15 23:49:01 -0500250 /* server can return one byte more due to implied bcc[0] */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100251 if (clc_len == srvr->vals->header_preamble_size + len + 1)
Pavel Shilovsky74112862012-07-27 01:20:41 +0400252 return 0;
Steve French754789a2014-08-15 23:49:01 -0500253
254 /*
255 * MacOS server pads after SMB2.1 write response with 3 bytes
256 * of junk. Other servers match RFC1001 len to actual
257 * SMB2/SMB3 frame length (header + smb2 response specific data)
258 * Log the server error (once), but allow it and continue
259 * since the frame is parseable.
260 */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100261 if (clc_len < srvr->vals->header_preamble_size /* RFC1001 header size */ + len) {
Steve French754789a2014-08-15 23:49:01 -0500262 printk_once(KERN_WARNING
Steve French6c4ba312018-03-31 12:36:26 -0500263 "SMB2 server sent bad RFC1001 len %d not %zu\n",
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100264 len, clc_len - srvr->vals->header_preamble_size);
Steve French754789a2014-08-15 23:49:01 -0500265 return 0;
266 }
267
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400268 return 1;
269 }
270 return 0;
271}
272
273/*
274 * The size of the variable area depends on the offset and length fields
275 * located in different fields for various SMB2 responses. SMB2 responses
276 * with no variable length info, show an offset of zero for the offset field.
277 */
278static const bool has_smb2_data_area[NUMBER_OF_SMB2_COMMANDS] = {
279 /* SMB2_NEGOTIATE */ true,
280 /* SMB2_SESSION_SETUP */ true,
281 /* SMB2_LOGOFF */ false,
282 /* SMB2_TREE_CONNECT */ false,
283 /* SMB2_TREE_DISCONNECT */ false,
284 /* SMB2_CREATE */ true,
285 /* SMB2_CLOSE */ false,
286 /* SMB2_FLUSH */ false,
287 /* SMB2_READ */ true,
288 /* SMB2_WRITE */ false,
289 /* SMB2_LOCK */ false,
290 /* SMB2_IOCTL */ true,
291 /* SMB2_CANCEL */ false, /* BB CHECK this not listed in documentation */
292 /* SMB2_ECHO */ false,
293 /* SMB2_QUERY_DIRECTORY */ true,
294 /* SMB2_CHANGE_NOTIFY */ true,
295 /* SMB2_QUERY_INFO */ true,
296 /* SMB2_SET_INFO */ false,
297 /* SMB2_OPLOCK_BREAK */ false
298};
299
300/*
301 * Returns the pointer to the beginning of the data area. Length of the data
302 * area and the offset to it (from the beginning of the smb are also returned.
303 */
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400304char *
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400305smb2_get_data_area_len(int *off, int *len, struct smb2_hdr *hdr)
306{
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700307 struct smb2_sync_hdr *shdr = get_sync_hdr(hdr);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400308 *off = 0;
309 *len = 0;
310
311 /* error responses do not have data area */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700312 if (shdr->Status && shdr->Status != STATUS_MORE_PROCESSING_REQUIRED &&
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400313 (((struct smb2_err_rsp *)hdr)->StructureSize) ==
314 SMB2_ERROR_STRUCTURE_SIZE2)
315 return NULL;
316
317 /*
318 * Following commands have data areas so we have to get the location
319 * of the data buffer offset and data buffer length for the particular
320 * command.
321 */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700322 switch (shdr->Command) {
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400323 case SMB2_NEGOTIATE:
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400324 *off = le16_to_cpu(
325 ((struct smb2_negotiate_rsp *)hdr)->SecurityBufferOffset);
326 *len = le16_to_cpu(
327 ((struct smb2_negotiate_rsp *)hdr)->SecurityBufferLength);
328 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400329 case SMB2_SESSION_SETUP:
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400330 *off = le16_to_cpu(
331 ((struct smb2_sess_setup_rsp *)hdr)->SecurityBufferOffset);
332 *len = le16_to_cpu(
333 ((struct smb2_sess_setup_rsp *)hdr)->SecurityBufferLength);
334 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400335 case SMB2_CREATE:
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400336 *off = le32_to_cpu(
337 ((struct smb2_create_rsp *)hdr)->CreateContextsOffset);
338 *len = le32_to_cpu(
339 ((struct smb2_create_rsp *)hdr)->CreateContextsLength);
340 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400341 case SMB2_QUERY_INFO:
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +0400342 *off = le16_to_cpu(
343 ((struct smb2_query_info_rsp *)hdr)->OutputBufferOffset);
344 *len = le32_to_cpu(
345 ((struct smb2_query_info_rsp *)hdr)->OutputBufferLength);
346 break;
347 case SMB2_READ:
Pavel Shilovsky09a47072012-09-18 16:20:29 -0700348 *off = ((struct smb2_read_rsp *)hdr)->DataOffset;
349 *len = le32_to_cpu(((struct smb2_read_rsp *)hdr)->DataLength);
350 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400351 case SMB2_QUERY_DIRECTORY:
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700352 *off = le16_to_cpu(
353 ((struct smb2_query_directory_rsp *)hdr)->OutputBufferOffset);
354 *len = le32_to_cpu(
355 ((struct smb2_query_directory_rsp *)hdr)->OutputBufferLength);
356 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400357 case SMB2_IOCTL:
Steve French4a72daf2013-06-25 00:20:49 -0500358 *off = le32_to_cpu(
359 ((struct smb2_ioctl_rsp *)hdr)->OutputOffset);
360 *len = le32_to_cpu(((struct smb2_ioctl_rsp *)hdr)->OutputCount);
361 break;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400362 case SMB2_CHANGE_NOTIFY:
363 default:
364 /* BB FIXME for unimplemented cases above */
Joe Perchesf96637b2013-05-04 22:12:25 -0500365 cifs_dbg(VFS, "no length check for command\n");
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400366 break;
367 }
368
369 /*
370 * Invalid length or offset probably means data area is invalid, but
371 * we have little choice but to ignore the data area in this case.
372 */
373 if (*off > 4096) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500374 cifs_dbg(VFS, "offset %d too large, data area ignored\n", *off);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400375 *len = 0;
376 *off = 0;
377 } else if (*off < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500378 cifs_dbg(VFS, "negative offset %d to data invalid ignore data area\n",
379 *off);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400380 *off = 0;
381 *len = 0;
382 } else if (*len < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500383 cifs_dbg(VFS, "negative data length %d invalid, data area ignored\n",
384 *len);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400385 *len = 0;
386 } else if (*len > 128 * 1024) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500387 cifs_dbg(VFS, "data area larger than 128K: %d\n", *len);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400388 *len = 0;
389 }
390
391 /* return pointer to beginning of data area, ie offset from SMB start */
392 if ((*off != 0) && (*len != 0))
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700393 return (char *)shdr + *off;
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400394 else
395 return NULL;
396}
397
398/*
399 * Calculate the size of the SMB message based on the fixed header
400 * portion, the number of word parameters and the data portion of the message.
401 */
402unsigned int
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700403smb2_calc_size(void *buf)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400404{
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700405 struct smb2_pdu *pdu = (struct smb2_pdu *)buf;
406 struct smb2_hdr *hdr = &pdu->hdr;
407 struct smb2_sync_hdr *shdr = get_sync_hdr(hdr);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400408 int offset; /* the offset from the beginning of SMB to data area */
409 int data_length; /* the length of the variable length data area */
410 /* Structure Size has already been checked to make sure it is 64 */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700411 int len = 4 + le16_to_cpu(shdr->StructureSize);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400412
413 /*
414 * StructureSize2, ie length of fixed parameter area has already
415 * been checked to make sure it is the correct length.
416 */
417 len += le16_to_cpu(pdu->StructureSize2);
418
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700419 if (has_smb2_data_area[le16_to_cpu(shdr->Command)] == false)
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400420 goto calc_size_exit;
421
422 smb2_get_data_area_len(&offset, &data_length, hdr);
Joe Perchesf96637b2013-05-04 22:12:25 -0500423 cifs_dbg(FYI, "SMB2 data length %d offset %d\n", data_length, offset);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400424
425 if (data_length > 0) {
426 /*
427 * Check to make sure that data area begins after fixed area,
428 * Note that last byte of the fixed area is part of data area
429 * for some commands, typically those with odd StructureSize,
430 * so we must add one to the calculation (and 4 to account for
431 * the size of the RFC1001 hdr.
432 */
433 if (offset + 4 + 1 < len) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500434 cifs_dbg(VFS, "data area offset %d overlaps SMB2 header %d\n",
435 offset + 4 + 1, len);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400436 data_length = 0;
437 } else {
438 len = 4 + offset + data_length;
439 }
440 }
441calc_size_exit:
Joe Perchesf96637b2013-05-04 22:12:25 -0500442 cifs_dbg(FYI, "SMB2 len %d\n", len);
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400443 return len;
444}
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400445
446/* Note: caller must free return buffer */
447__le16 *
448cifs_convert_path_to_utf16(const char *from, struct cifs_sb_info *cifs_sb)
449{
450 int len;
451 const char *start_of_path;
452 __le16 *to;
Steve Frencha4153cb2014-09-25 14:01:34 -0500453 int map_type;
454
455 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SFM_CHR)
456 map_type = SFM_MAP_UNI_RSVD;
457 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR)
458 map_type = SFU_MAP_UNI_RSVD;
459 else
460 map_type = NO_MAP_UNI_RSVD;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400461
462 /* Windows doesn't allow paths beginning with \ */
463 if (from[0] == '\\')
464 start_of_path = from + 1;
465 else
466 start_of_path = from;
467 to = cifs_strndup_to_utf16(start_of_path, PATH_MAX, &len,
Steve Frencha4153cb2014-09-25 14:01:34 -0500468 cifs_sb->local_nls, map_type);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400469 return to;
470}
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700471
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700472__le32
473smb2_get_lease_state(struct cifsInodeInfo *cinode)
474{
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400475 __le32 lease = 0;
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700476
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400477 if (CIFS_CACHE_WRITE(cinode))
478 lease |= SMB2_LEASE_WRITE_CACHING;
479 if (CIFS_CACHE_HANDLE(cinode))
480 lease |= SMB2_LEASE_HANDLE_CACHING;
481 if (CIFS_CACHE_READ(cinode))
482 lease |= SMB2_LEASE_READ_CACHING;
483 return lease;
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700484}
485
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700486struct smb2_lease_break_work {
487 struct work_struct lease_break;
488 struct tcon_link *tlink;
489 __u8 lease_key[16];
490 __le32 lease_state;
491};
492
493static void
494cifs_ses_oplock_break(struct work_struct *work)
495{
496 struct smb2_lease_break_work *lw = container_of(work,
497 struct smb2_lease_break_work, lease_break);
498 int rc;
499
500 rc = SMB2_lease_break(0, tlink_tcon(lw->tlink), lw->lease_key,
501 lw->lease_state);
Joe Perchesf96637b2013-05-04 22:12:25 -0500502 cifs_dbg(FYI, "Lease release rc %d\n", rc);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700503 cifs_put_tlink(lw->tlink);
504 kfree(lw);
505}
506
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700507static bool
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400508smb2_tcon_has_lease(struct cifs_tcon *tcon, struct smb2_lease_break *rsp,
509 struct smb2_lease_break_work *lw)
510{
511 bool found;
512 __u8 lease_state;
513 struct list_head *tmp;
514 struct cifsFileInfo *cfile;
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400515 struct TCP_Server_Info *server = tcon->ses->server;
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400516 struct cifs_pending_open *open;
517 struct cifsInodeInfo *cinode;
518 int ack_req = le32_to_cpu(rsp->Flags &
519 SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED);
520
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400521 lease_state = le32_to_cpu(rsp->NewLeaseState);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400522
523 list_for_each(tmp, &tcon->openFileList) {
524 cfile = list_entry(tmp, struct cifsFileInfo, tlist);
David Howells2b0143b2015-03-17 22:25:59 +0000525 cinode = CIFS_I(d_inode(cfile->dentry));
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400526
527 if (memcmp(cinode->lease_key, rsp->LeaseKey,
528 SMB2_LEASE_KEY_SIZE))
529 continue;
530
531 cifs_dbg(FYI, "found in the open list\n");
Steve French59b04c52014-08-02 21:16:48 -0500532 cifs_dbg(FYI, "lease key match, lease break 0x%x\n",
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400533 le32_to_cpu(rsp->NewLeaseState));
534
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400535 server->ops->set_oplock_level(cinode, lease_state, 0, NULL);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400536
537 if (ack_req)
538 cfile->oplock_break_cancelled = false;
539 else
540 cfile->oplock_break_cancelled = true;
541
Rabin Vincent3998e6b2017-05-03 17:54:01 +0200542 queue_work(cifsoplockd_wq, &cfile->oplock_break);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400543 kfree(lw);
544 return true;
545 }
546
547 found = false;
548 list_for_each_entry(open, &tcon->pending_opens, olist) {
549 if (memcmp(open->lease_key, rsp->LeaseKey,
550 SMB2_LEASE_KEY_SIZE))
551 continue;
552
553 if (!found && ack_req) {
554 found = true;
555 memcpy(lw->lease_key, open->lease_key,
556 SMB2_LEASE_KEY_SIZE);
557 lw->tlink = cifs_get_tlink(open->tlink);
558 queue_work(cifsiod_wq, &lw->lease_break);
559 }
560
561 cifs_dbg(FYI, "found in the pending open list\n");
Steve French59b04c52014-08-02 21:16:48 -0500562 cifs_dbg(FYI, "lease key match, lease break 0x%x\n",
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400563 le32_to_cpu(rsp->NewLeaseState));
564
565 open->oplock = lease_state;
566 }
567 return found;
568}
569
570static bool
571smb2_is_valid_lease_break(char *buffer)
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700572{
573 struct smb2_lease_break *rsp = (struct smb2_lease_break *)buffer;
574 struct list_head *tmp, *tmp1, *tmp2;
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400575 struct TCP_Server_Info *server;
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700576 struct cifs_ses *ses;
577 struct cifs_tcon *tcon;
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700578 struct smb2_lease_break_work *lw;
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700579
580 lw = kmalloc(sizeof(struct smb2_lease_break_work), GFP_KERNEL);
Joe Perchesf96637b2013-05-04 22:12:25 -0500581 if (!lw)
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700582 return false;
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700583
584 INIT_WORK(&lw->lease_break, cifs_ses_oplock_break);
585 lw->lease_state = rsp->NewLeaseState;
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700586
Joe Perchesf96637b2013-05-04 22:12:25 -0500587 cifs_dbg(FYI, "Checking for lease break\n");
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700588
589 /* look up tcon based on tid & uid */
590 spin_lock(&cifs_tcp_ses_lock);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400591 list_for_each(tmp, &cifs_tcp_ses_list) {
592 server = list_entry(tmp, struct TCP_Server_Info, tcp_ses_list);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700593
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400594 list_for_each(tmp1, &server->smb_ses_list) {
595 ses = list_entry(tmp1, struct cifs_ses, smb_ses_list);
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700596
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400597 list_for_each(tmp2, &ses->tcon_list) {
598 tcon = list_entry(tmp2, struct cifs_tcon,
599 tcon_list);
Steve French3afca262016-09-22 18:58:16 -0500600 spin_lock(&tcon->open_file_lock);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400601 cifs_stats_inc(
602 &tcon->stats.cifs_stats.num_oplock_brks);
603 if (smb2_tcon_has_lease(tcon, rsp, lw)) {
Steve French3afca262016-09-22 18:58:16 -0500604 spin_unlock(&tcon->open_file_lock);
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400605 spin_unlock(&cifs_tcp_ses_lock);
606 return true;
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700607 }
Steve French3afca262016-09-22 18:58:16 -0500608 spin_unlock(&tcon->open_file_lock);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700609 }
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700610 }
611 }
612 spin_unlock(&cifs_tcp_ses_lock);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700613 kfree(lw);
Joe Perchesf96637b2013-05-04 22:12:25 -0500614 cifs_dbg(FYI, "Can not process lease break - no lease matched\n");
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700615 return false;
616}
617
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700618bool
619smb2_is_valid_oplock_break(char *buffer, struct TCP_Server_Info *server)
620{
Ronnie Sahlberg21ad9482017-11-20 11:24:43 +1100621 struct smb2_oplock_break_rsp *rsp = (struct smb2_oplock_break_rsp *)buffer;
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700622 struct list_head *tmp, *tmp1, *tmp2;
623 struct cifs_ses *ses;
624 struct cifs_tcon *tcon;
625 struct cifsInodeInfo *cinode;
626 struct cifsFileInfo *cfile;
627
Joe Perchesf96637b2013-05-04 22:12:25 -0500628 cifs_dbg(FYI, "Checking for oplock break\n");
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700629
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700630 if (rsp->hdr.sync_hdr.Command != SMB2_OPLOCK_BREAK)
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700631 return false;
632
Steve French12e8a202012-09-19 09:19:39 -0700633 if (rsp->StructureSize !=
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700634 smb2_rsp_struct_sizes[SMB2_OPLOCK_BREAK_HE]) {
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700635 if (le16_to_cpu(rsp->StructureSize) == 44)
Pavel Shilovsky933d4b32013-09-05 15:00:07 +0400636 return smb2_is_valid_lease_break(buffer);
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700637 else
638 return false;
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700639 }
640
Steve French59b04c52014-08-02 21:16:48 -0500641 cifs_dbg(FYI, "oplock level 0x%x\n", rsp->OplockLevel);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700642
643 /* look up tcon based on tid & uid */
644 spin_lock(&cifs_tcp_ses_lock);
645 list_for_each(tmp, &server->smb_ses_list) {
646 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
647 list_for_each(tmp1, &ses->tcon_list) {
648 tcon = list_entry(tmp1, struct cifs_tcon, tcon_list);
649
650 cifs_stats_inc(&tcon->stats.cifs_stats.num_oplock_brks);
Steve French3afca262016-09-22 18:58:16 -0500651 spin_lock(&tcon->open_file_lock);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700652 list_for_each(tmp2, &tcon->openFileList) {
653 cfile = list_entry(tmp2, struct cifsFileInfo,
654 tlist);
655 if (rsp->PersistentFid !=
656 cfile->fid.persistent_fid ||
657 rsp->VolatileFid !=
658 cfile->fid.volatile_fid)
659 continue;
660
Joe Perchesf96637b2013-05-04 22:12:25 -0500661 cifs_dbg(FYI, "file id match, oplock break\n");
David Howells2b0143b2015-03-17 22:25:59 +0000662 cinode = CIFS_I(d_inode(cfile->dentry));
Steve French3afca262016-09-22 18:58:16 -0500663 spin_lock(&cfile->file_info_lock);
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400664 if (!CIFS_CACHE_WRITE(cinode) &&
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700665 rsp->OplockLevel == SMB2_OPLOCK_LEVEL_NONE)
666 cfile->oplock_break_cancelled = true;
667 else
668 cfile->oplock_break_cancelled = false;
669
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000670 set_bit(CIFS_INODE_PENDING_OPLOCK_BREAK,
671 &cinode->flags);
672
673 /*
674 * Set flag if the server downgrades the oplock
675 * to L2 else clear.
676 */
677 if (rsp->OplockLevel)
678 set_bit(
679 CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2,
680 &cinode->flags);
681 else
682 clear_bit(
683 CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2,
684 &cinode->flags);
Steve French3afca262016-09-22 18:58:16 -0500685 spin_unlock(&cfile->file_info_lock);
Rabin Vincent3998e6b2017-05-03 17:54:01 +0200686 queue_work(cifsoplockd_wq,
687 &cfile->oplock_break);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700688
Steve French3afca262016-09-22 18:58:16 -0500689 spin_unlock(&tcon->open_file_lock);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700690 spin_unlock(&cifs_tcp_ses_lock);
691 return true;
692 }
Steve French3afca262016-09-22 18:58:16 -0500693 spin_unlock(&tcon->open_file_lock);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700694 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -0500695 cifs_dbg(FYI, "No matching file for oplock break\n");
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700696 return true;
697 }
698 }
699 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -0500700 cifs_dbg(FYI, "Can not process oplock break for non-existent connection\n");
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700701 return false;
702}
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800703
704void
705smb2_cancelled_close_fid(struct work_struct *work)
706{
707 struct close_cancelled_open *cancelled = container_of(work,
708 struct close_cancelled_open, work);
709
710 cifs_dbg(VFS, "Close unmatched open\n");
711
712 SMB2_close(0, cancelled->tcon, cancelled->fid.persistent_fid,
713 cancelled->fid.volatile_fid);
714 cifs_put_tcon(cancelled->tcon);
715 kfree(cancelled);
716}
717
718int
719smb2_handle_cancelled_mid(char *buffer, struct TCP_Server_Info *server)
720{
721 struct smb2_sync_hdr *sync_hdr = get_sync_hdr(buffer);
722 struct smb2_create_rsp *rsp = (struct smb2_create_rsp *)buffer;
723 struct cifs_tcon *tcon;
724 struct close_cancelled_open *cancelled;
725
726 if (sync_hdr->Command != SMB2_CREATE ||
727 sync_hdr->Status != STATUS_SUCCESS)
728 return 0;
729
730 cancelled = kzalloc(sizeof(*cancelled), GFP_KERNEL);
731 if (!cancelled)
732 return -ENOMEM;
733
734 tcon = smb2_find_smb_tcon(server, sync_hdr->SessionId,
735 sync_hdr->TreeId);
736 if (!tcon) {
737 kfree(cancelled);
738 return -ENOENT;
739 }
740
741 cancelled->fid.persistent_fid = rsp->PersistentFileId;
742 cancelled->fid.volatile_fid = rsp->VolatileFileId;
743 cancelled->tcon = tcon;
744 INIT_WORK(&cancelled->work, smb2_cancelled_close_fid);
745 queue_work(cifsiod_wq, &cancelled->work);
746
747 return 0;
748}
Aurelien Aptel8bd68c62018-02-16 19:19:29 +0100749
750#ifdef CONFIG_CIFS_SMB311
751/**
752 * smb311_update_preauth_hash - update @ses hash with the packet data in @iov
753 *
754 * Assumes @iov does not contain the rfc1002 length and iov[0] has the
755 * SMB2 header.
756 */
757int
758smb311_update_preauth_hash(struct cifs_ses *ses, struct kvec *iov, int nvec)
759{
760 int i, rc;
761 struct sdesc *d;
762 struct smb2_sync_hdr *hdr;
763
764 if (ses->server->tcpStatus == CifsGood) {
765 /* skip non smb311 connections */
766 if (ses->server->dialect != SMB311_PROT_ID)
767 return 0;
768
769 /* skip last sess setup response */
770 hdr = (struct smb2_sync_hdr *)iov[0].iov_base;
771 if (hdr->Flags & SMB2_FLAGS_SIGNED)
772 return 0;
773 }
774
775 rc = smb311_crypto_shash_allocate(ses->server);
776 if (rc)
777 return rc;
778
779 d = ses->server->secmech.sdescsha512;
780 rc = crypto_shash_init(&d->shash);
781 if (rc) {
782 cifs_dbg(VFS, "%s: could not init sha512 shash\n", __func__);
783 return rc;
784 }
785
786 rc = crypto_shash_update(&d->shash, ses->preauth_sha_hash,
787 SMB2_PREAUTH_HASH_SIZE);
788 if (rc) {
789 cifs_dbg(VFS, "%s: could not update sha512 shash\n", __func__);
790 return rc;
791 }
792
793 for (i = 0; i < nvec; i++) {
794 rc = crypto_shash_update(&d->shash,
795 iov[i].iov_base, iov[i].iov_len);
796 if (rc) {
797 cifs_dbg(VFS, "%s: could not update sha512 shash\n",
798 __func__);
799 return rc;
800 }
801 }
802
803 rc = crypto_shash_final(&d->shash, ses->preauth_sha_hash);
804 if (rc) {
805 cifs_dbg(VFS, "%s: could not finalize sha512 shash\n",
806 __func__);
807 return rc;
808 }
809
810 return 0;
811}
812#endif