blob: 02da648041fcd58d6e37431a60d596a5bfd4ca06 [file] [log] [blame]
Pavel Shilovskyec2e4522011-12-27 16:12:43 +04001/*
2 * fs/cifs/smb2pdu.c
3 *
Steve French2b80d042013-06-23 18:43:37 -05004 * Copyright (C) International Business Machines Corp., 2009, 2013
Pavel Shilovskyec2e4522011-12-27 16:12:43 +04005 * Etersoft, 2012
6 * Author(s): Steve French (sfrench@us.ibm.com)
7 * Pavel Shilovsky (pshilovsky@samba.org) 2012
8 *
9 * Contains the routines for constructing the SMB2 PDUs themselves
10 *
11 * This library is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as published
13 * by the Free Software Foundation; either version 2.1 of the License, or
14 * (at your option) any later version.
15 *
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
19 * the GNU Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * along with this library; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
26 /* SMB2 PDU handling routines here - except for leftovers (eg session setup) */
27 /* Note that there are handle based routines which must be */
28 /* treated slightly differently for reconnection purposes since we never */
29 /* want to reuse a stale file handle and only the caller knows the file info */
30
31#include <linux/fs.h>
32#include <linux/kernel.h>
33#include <linux/vfs.h>
Pavel Shilovsky09a47072012-09-18 16:20:29 -070034#include <linux/task_io_accounting_ops.h>
Pavel Shilovskyec2e4522011-12-27 16:12:43 +040035#include <linux/uaccess.h>
Pavel Shilovsky33319142012-09-18 16:20:29 -070036#include <linux/pagemap.h>
Pavel Shilovskyec2e4522011-12-27 16:12:43 +040037#include <linux/xattr.h>
38#include "smb2pdu.h"
39#include "cifsglob.h"
40#include "cifsacl.h"
41#include "cifsproto.h"
42#include "smb2proto.h"
43#include "cifs_unicode.h"
44#include "cifs_debug.h"
45#include "ntlmssp.h"
46#include "smb2status.h"
Pavel Shilovsky09a47072012-09-18 16:20:29 -070047#include "smb2glob.h"
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -070048#include "cifspdu.h"
Steve Frenchceb1b0b2015-09-24 00:52:37 -050049#include "cifs_spnego.h"
Pavel Shilovskyec2e4522011-12-27 16:12:43 +040050
51/*
52 * The following table defines the expected "StructureSize" of SMB2 requests
53 * in order by SMB2 command. This is similar to "wct" in SMB/CIFS requests.
54 *
55 * Note that commands are defined in smb2pdu.h in le16 but the array below is
56 * indexed by command in host byte order.
57 */
58static const int smb2_req_struct_sizes[NUMBER_OF_SMB2_COMMANDS] = {
59 /* SMB2_NEGOTIATE */ 36,
60 /* SMB2_SESSION_SETUP */ 25,
61 /* SMB2_LOGOFF */ 4,
62 /* SMB2_TREE_CONNECT */ 9,
63 /* SMB2_TREE_DISCONNECT */ 4,
64 /* SMB2_CREATE */ 57,
65 /* SMB2_CLOSE */ 24,
66 /* SMB2_FLUSH */ 24,
67 /* SMB2_READ */ 49,
68 /* SMB2_WRITE */ 49,
69 /* SMB2_LOCK */ 48,
70 /* SMB2_IOCTL */ 57,
71 /* SMB2_CANCEL */ 4,
72 /* SMB2_ECHO */ 4,
73 /* SMB2_QUERY_DIRECTORY */ 33,
74 /* SMB2_CHANGE_NOTIFY */ 32,
75 /* SMB2_QUERY_INFO */ 41,
76 /* SMB2_SET_INFO */ 33,
77 /* SMB2_OPLOCK_BREAK */ 24 /* BB this is 36 for LEASE_BREAK variant */
78};
79
Pavel Shilovsky7fb89862016-10-31 13:49:30 -070080static int encryption_required(const struct cifs_tcon *tcon)
81{
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -080082 if (!tcon)
83 return 0;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -070084 if ((tcon->ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) ||
85 (tcon->share_flags & SHI1005_FLAGS_ENCRYPT_DATA))
86 return 1;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -080087 if (tcon->seal &&
88 (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION))
89 return 1;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -070090 return 0;
91}
Pavel Shilovskyec2e4522011-12-27 16:12:43 +040092
93static void
Pavel Shilovskycb200bd2016-10-24 16:59:57 -070094smb2_hdr_assemble(struct smb2_sync_hdr *shdr, __le16 smb2_cmd,
Pavel Shilovskyec2e4522011-12-27 16:12:43 +040095 const struct cifs_tcon *tcon)
96{
Pavel Shilovsky31473fc2016-10-24 15:33:04 -070097 shdr->ProtocolId = SMB2_PROTO_NUMBER;
98 shdr->StructureSize = cpu_to_le16(64);
99 shdr->Command = smb2_cmd;
Ross Lagerwall7d414f32016-09-20 13:37:13 +0100100 if (tcon && tcon->ses && tcon->ses->server) {
101 struct TCP_Server_Info *server = tcon->ses->server;
102
103 spin_lock(&server->req_lock);
104 /* Request up to 2 credits but don't go over the limit. */
Steve French141891f2016-09-23 00:44:16 -0500105 if (server->credits >= server->max_credits)
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700106 shdr->CreditRequest = cpu_to_le16(0);
Ross Lagerwall7d414f32016-09-20 13:37:13 +0100107 else
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700108 shdr->CreditRequest = cpu_to_le16(
Steve French141891f2016-09-23 00:44:16 -0500109 min_t(int, server->max_credits -
Ross Lagerwall7d414f32016-09-20 13:37:13 +0100110 server->credits, 2));
111 spin_unlock(&server->req_lock);
112 } else {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700113 shdr->CreditRequest = cpu_to_le16(2);
Ross Lagerwall7d414f32016-09-20 13:37:13 +0100114 }
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700115 shdr->ProcessId = cpu_to_le32((__u16)current->tgid);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400116
117 if (!tcon)
118 goto out;
119
Steve French2b80d042013-06-23 18:43:37 -0500120 /* GLOBAL_CAP_LARGE_MTU will only be set if dialect > SMB2.02 */
121 /* See sections 2.2.4 and 3.2.4.1.5 of MS-SMB2 */
Steve French1dc92c42015-05-20 09:32:21 -0500122 if ((tcon->ses) && (tcon->ses->server) &&
Steve French84ceeb92013-06-26 17:52:17 -0500123 (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LARGE_MTU))
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700124 shdr->CreditCharge = cpu_to_le16(1);
Steve French2b80d042013-06-23 18:43:37 -0500125 /* else CreditCharge MBZ */
126
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700127 shdr->TreeId = tcon->tid;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400128 /* Uid is not converted */
129 if (tcon->ses)
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700130 shdr->SessionId = tcon->ses->Suid;
Steve Frenchf87ab882013-06-26 19:14:55 -0500131
132 /*
133 * If we would set SMB2_FLAGS_DFS_OPERATIONS on open we also would have
134 * to pass the path on the Open SMB prefixed by \\server\share.
135 * Not sure when we would need to do the augmented path (if ever) and
136 * setting this flag breaks the SMB2 open operation since it is
137 * illegal to send an empty path name (without \\server\share prefix)
138 * when the DFS flag is set in the SMB open header. We could
139 * consider setting the flag on all operations other than open
140 * but it is safer to net set it for now.
141 */
142/* if (tcon->share_flags & SHI1005_FLAGS_DFS)
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700143 shdr->Flags |= SMB2_FLAGS_DFS_OPERATIONS; */
Steve Frenchf87ab882013-06-26 19:14:55 -0500144
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700145 if (tcon->ses && tcon->ses->server && tcon->ses->server->sign &&
146 !encryption_required(tcon))
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700147 shdr->Flags |= SMB2_FLAGS_SIGNED;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400148out:
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400149 return;
150}
151
152static int
153smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon)
154{
155 int rc = 0;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400156 struct nls_table *nls_codepage;
157 struct cifs_ses *ses;
158 struct TCP_Server_Info *server;
159
160 /*
161 * SMB2s NegProt, SessSetup, Logoff do not have tcon yet so
162 * check for tcp and smb session status done differently
163 * for those three - in the calling routine.
164 */
165 if (tcon == NULL)
166 return rc;
167
168 if (smb2_command == SMB2_TREE_CONNECT)
169 return rc;
170
171 if (tcon->tidStatus == CifsExiting) {
172 /*
173 * only tree disconnect, open, and write,
174 * (and ulogoff which does not have tcon)
175 * are allowed as we start force umount.
176 */
177 if ((smb2_command != SMB2_WRITE) &&
178 (smb2_command != SMB2_CREATE) &&
179 (smb2_command != SMB2_TREE_DISCONNECT)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500180 cifs_dbg(FYI, "can not send cmd %d while umounting\n",
181 smb2_command);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400182 return -ENODEV;
183 }
184 }
185 if ((!tcon->ses) || (tcon->ses->status == CifsExiting) ||
186 (!tcon->ses->server))
187 return -EIO;
188
189 ses = tcon->ses;
190 server = ses->server;
191
192 /*
193 * Give demultiplex thread up to 10 seconds to reconnect, should be
194 * greater than cifs socket timeout which is 7 seconds
195 */
196 while (server->tcpStatus == CifsNeedReconnect) {
197 /*
198 * Return to caller for TREE_DISCONNECT and LOGOFF and CLOSE
199 * here since they are implicitly done when session drops.
200 */
201 switch (smb2_command) {
202 /*
203 * BB Should we keep oplock break and add flush to exceptions?
204 */
205 case SMB2_TREE_DISCONNECT:
206 case SMB2_CANCEL:
207 case SMB2_CLOSE:
208 case SMB2_OPLOCK_BREAK:
209 return -EAGAIN;
210 }
211
212 wait_event_interruptible_timeout(server->response_q,
213 (server->tcpStatus != CifsNeedReconnect), 10 * HZ);
214
215 /* are we still trying to reconnect? */
216 if (server->tcpStatus != CifsNeedReconnect)
217 break;
218
219 /*
220 * on "soft" mounts we wait once. Hard mounts keep
221 * retrying until process is killed or server comes
222 * back on-line
223 */
224 if (!tcon->retry) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500225 cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n");
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400226 return -EHOSTDOWN;
227 }
228 }
229
230 if (!tcon->ses->need_reconnect && !tcon->need_reconnect)
231 return rc;
232
233 nls_codepage = load_nls_default();
234
235 /*
236 * need to prevent multiple threads trying to simultaneously reconnect
237 * the same SMB session
238 */
239 mutex_lock(&tcon->ses->session_mutex);
240 rc = cifs_negotiate_protocol(0, tcon->ses);
241 if (!rc && tcon->ses->need_reconnect)
242 rc = cifs_setup_session(0, tcon->ses, nls_codepage);
243
244 if (rc || !tcon->need_reconnect) {
245 mutex_unlock(&tcon->ses->session_mutex);
246 goto out;
247 }
248
249 cifs_mark_open_files_invalid(tcon);
Pavel Shilovsky96a988f2016-11-29 11:31:23 -0800250 if (tcon->use_persistent)
251 tcon->need_reopen_files = true;
Steve French52ace1e2016-09-22 19:23:56 -0500252
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400253 rc = SMB2_tcon(0, tcon->ses, tcon->treeName, tcon, nls_codepage);
254 mutex_unlock(&tcon->ses->session_mutex);
Steve French52ace1e2016-09-22 19:23:56 -0500255
Joe Perchesf96637b2013-05-04 22:12:25 -0500256 cifs_dbg(FYI, "reconnect tcon rc = %d\n", rc);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400257 if (rc)
258 goto out;
Pavel Shilovsky96a988f2016-11-29 11:31:23 -0800259
260 if (smb2_command != SMB2_INTERNAL_CMD)
261 queue_delayed_work(cifsiod_wq, &server->reconnect, 0);
262
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400263 atomic_inc(&tconInfoReconnectCount);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400264out:
265 /*
266 * Check if handle based operation so we know whether we can continue
267 * or not without returning to caller to reset file handle.
268 */
269 /*
270 * BB Is flush done by server on drop of tcp session? Should we special
271 * case it and skip above?
272 */
273 switch (smb2_command) {
274 case SMB2_FLUSH:
275 case SMB2_READ:
276 case SMB2_WRITE:
277 case SMB2_LOCK:
278 case SMB2_IOCTL:
279 case SMB2_QUERY_DIRECTORY:
280 case SMB2_CHANGE_NOTIFY:
281 case SMB2_QUERY_INFO:
282 case SMB2_SET_INFO:
Pavel Shilovsky4772c792016-11-29 11:30:58 -0800283 rc = -EAGAIN;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400284 }
285 unload_nls(nls_codepage);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400286 return rc;
287}
288
Pavel Shilovskycb200bd2016-10-24 16:59:57 -0700289static void
290fill_small_buf(__le16 smb2_command, struct cifs_tcon *tcon, void *buf,
291 unsigned int *total_len)
292{
293 struct smb2_sync_pdu *spdu = (struct smb2_sync_pdu *)buf;
294 /* lookup word count ie StructureSize from table */
295 __u16 parmsize = smb2_req_struct_sizes[le16_to_cpu(smb2_command)];
296
297 /*
298 * smaller than SMALL_BUFFER_SIZE but bigger than fixed area of
299 * largest operations (Create)
300 */
301 memset(buf, 0, 256);
302
303 smb2_hdr_assemble(&spdu->sync_hdr, smb2_command, tcon);
304 spdu->StructureSize2 = cpu_to_le16(parmsize);
305
306 *total_len = parmsize + sizeof(struct smb2_sync_hdr);
307}
308
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -0800309/* init request without RFC1001 length at the beginning */
310static int
311smb2_plain_req_init(__le16 smb2_command, struct cifs_tcon *tcon,
312 void **request_buf, unsigned int *total_len)
313{
314 int rc;
315 struct smb2_sync_hdr *shdr;
316
317 rc = smb2_reconnect(smb2_command, tcon);
318 if (rc)
319 return rc;
320
321 /* BB eventually switch this to SMB2 specific small buf size */
322 *request_buf = cifs_small_buf_get();
323 if (*request_buf == NULL) {
324 /* BB should we add a retry in here if not a writepage? */
325 return -ENOMEM;
326 }
327
328 shdr = (struct smb2_sync_hdr *)(*request_buf);
329
330 fill_small_buf(smb2_command, tcon, shdr, total_len);
331
332 if (tcon != NULL) {
333#ifdef CONFIG_CIFS_STATS2
334 uint16_t com_code = le16_to_cpu(smb2_command);
335
336 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]);
337#endif
338 cifs_stats_inc(&tcon->num_smbs_sent);
339 }
340
341 return rc;
342}
343
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400344/*
345 * Allocate and return pointer to an SMB request hdr, and set basic
346 * SMB information in the SMB header. If the return code is zero, this
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -0800347 * function must have filled in request_buf pointer. The returned buffer
348 * has RFC1001 length at the beginning.
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400349 */
350static int
351small_smb2_init(__le16 smb2_command, struct cifs_tcon *tcon,
352 void **request_buf)
353{
Pavel Shilovskycb200bd2016-10-24 16:59:57 -0700354 int rc;
355 unsigned int total_len;
356 struct smb2_pdu *pdu;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400357
358 rc = smb2_reconnect(smb2_command, tcon);
359 if (rc)
360 return rc;
361
362 /* BB eventually switch this to SMB2 specific small buf size */
363 *request_buf = cifs_small_buf_get();
364 if (*request_buf == NULL) {
365 /* BB should we add a retry in here if not a writepage? */
366 return -ENOMEM;
367 }
368
Pavel Shilovskycb200bd2016-10-24 16:59:57 -0700369 pdu = (struct smb2_pdu *)(*request_buf);
370
371 fill_small_buf(smb2_command, tcon, get_sync_hdr(pdu), &total_len);
372
373 /* Note this is only network field converted to big endian */
374 pdu->hdr.smb2_buf_length = cpu_to_be32(total_len);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400375
376 if (tcon != NULL) {
377#ifdef CONFIG_CIFS_STATS2
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400378 uint16_t com_code = le16_to_cpu(smb2_command);
379 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400380#endif
381 cifs_stats_inc(&tcon->num_smbs_sent);
382 }
383
384 return rc;
385}
386
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500387#ifdef CONFIG_CIFS_SMB311
388/* offset is sizeof smb2_negotiate_req - 4 but rounded up to 8 bytes */
389#define OFFSET_OF_NEG_CONTEXT 0x68 /* sizeof(struct smb2_negotiate_req) - 4 */
390
391
392#define SMB2_PREAUTH_INTEGRITY_CAPABILITIES cpu_to_le16(1)
393#define SMB2_ENCRYPTION_CAPABILITIES cpu_to_le16(2)
394
395static void
396build_preauth_ctxt(struct smb2_preauth_neg_context *pneg_ctxt)
397{
398 pneg_ctxt->ContextType = SMB2_PREAUTH_INTEGRITY_CAPABILITIES;
399 pneg_ctxt->DataLength = cpu_to_le16(38);
400 pneg_ctxt->HashAlgorithmCount = cpu_to_le16(1);
401 pneg_ctxt->SaltLength = cpu_to_le16(SMB311_SALT_SIZE);
402 get_random_bytes(pneg_ctxt->Salt, SMB311_SALT_SIZE);
403 pneg_ctxt->HashAlgorithms = SMB2_PREAUTH_INTEGRITY_SHA512;
404}
405
406static void
407build_encrypt_ctxt(struct smb2_encryption_neg_context *pneg_ctxt)
408{
409 pneg_ctxt->ContextType = SMB2_ENCRYPTION_CAPABILITIES;
410 pneg_ctxt->DataLength = cpu_to_le16(6);
411 pneg_ctxt->CipherCount = cpu_to_le16(2);
412 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_GCM;
413 pneg_ctxt->Ciphers[1] = SMB2_ENCRYPTION_AES128_CCM;
414}
415
416static void
417assemble_neg_contexts(struct smb2_negotiate_req *req)
418{
419
420 /* +4 is to account for the RFC1001 len field */
421 char *pneg_ctxt = (char *)req + OFFSET_OF_NEG_CONTEXT + 4;
422
423 build_preauth_ctxt((struct smb2_preauth_neg_context *)pneg_ctxt);
424 /* Add 2 to size to round to 8 byte boundary */
425 pneg_ctxt += 2 + sizeof(struct smb2_preauth_neg_context);
426 build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt);
427 req->NegotiateContextOffset = cpu_to_le32(OFFSET_OF_NEG_CONTEXT);
428 req->NegotiateContextCount = cpu_to_le16(2);
429 inc_rfc1001_len(req, 4 + sizeof(struct smb2_preauth_neg_context) + 2
430 + sizeof(struct smb2_encryption_neg_context)); /* calculate hash */
431}
432#else
433static void assemble_neg_contexts(struct smb2_negotiate_req *req)
434{
435 return;
436}
437#endif /* SMB311 */
438
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400439/*
440 *
441 * SMB2 Worker functions follow:
442 *
443 * The general structure of the worker functions is:
444 * 1) Call smb2_init (assembles SMB2 header)
445 * 2) Initialize SMB2 command specific fields in fixed length area of SMB
446 * 3) Call smb_sendrcv2 (sends request on socket and waits for response)
447 * 4) Decode SMB2 command specific fields in the fixed length area
448 * 5) Decode variable length data area (if any for this SMB2 command type)
449 * 6) Call free smb buffer
450 * 7) return
451 *
452 */
453
454int
455SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses)
456{
457 struct smb2_negotiate_req *req;
458 struct smb2_negotiate_rsp *rsp;
459 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700460 struct kvec rsp_iov;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400461 int rc = 0;
462 int resp_buftype;
Jeff Layton3534b852013-05-24 07:41:01 -0400463 struct TCP_Server_Info *server = ses->server;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400464 int blob_offset, blob_length;
465 char *security_blob;
466 int flags = CIFS_NEG_OP;
467
Joe Perchesf96637b2013-05-04 22:12:25 -0500468 cifs_dbg(FYI, "Negotiate protocol\n");
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400469
Jeff Layton3534b852013-05-24 07:41:01 -0400470 if (!server) {
471 WARN(1, "%s: server is NULL!\n", __func__);
472 return -EIO;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400473 }
474
475 rc = small_smb2_init(SMB2_NEGOTIATE, NULL, (void **) &req);
476 if (rc)
477 return rc;
478
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700479 req->hdr.sync_hdr.SessionId = 0;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400480
Steve Frenche4aa25e2012-10-01 12:26:22 -0500481 req->Dialects[0] = cpu_to_le16(ses->server->vals->protocol_id);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400482
Steve Frenche4aa25e2012-10-01 12:26:22 -0500483 req->DialectCount = cpu_to_le16(1); /* One vers= at a time for now */
484 inc_rfc1001_len(req, 2);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400485
486 /* only one of SMB2 signing flags may be set in SMB2 request */
Jeff Layton38d77c52013-05-26 07:01:00 -0400487 if (ses->sign)
Steve French9cd2e622013-06-12 19:59:03 -0500488 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
Jeff Layton38d77c52013-05-26 07:01:00 -0400489 else if (global_secflags & CIFSSEC_MAY_SIGN)
Steve French9cd2e622013-06-12 19:59:03 -0500490 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
Jeff Layton38d77c52013-05-26 07:01:00 -0400491 else
492 req->SecurityMode = 0;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400493
Steve Frenche4aa25e2012-10-01 12:26:22 -0500494 req->Capabilities = cpu_to_le32(ses->server->vals->req_capabilities);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400495
Steve French3c5f9be12014-05-13 13:37:45 -0700496 /* ClientGUID must be zero for SMB2.02 dialect */
497 if (ses->server->vals->protocol_id == SMB20_PROT_ID)
498 memset(req->ClientGUID, 0, SMB2_CLIENT_GUID_SIZE);
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500499 else {
Steve French3c5f9be12014-05-13 13:37:45 -0700500 memcpy(req->ClientGUID, server->client_guid,
501 SMB2_CLIENT_GUID_SIZE);
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500502 if (ses->server->vals->protocol_id == SMB311_PROT_ID)
503 assemble_neg_contexts(req);
504 }
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400505 iov[0].iov_base = (char *)req;
506 /* 4 for rfc1002 length field */
507 iov[0].iov_len = get_rfc1002_length(req) + 4;
508
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700509 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags, &rsp_iov);
510 cifs_small_buf_release(req);
511 rsp = (struct smb2_negotiate_rsp *)rsp_iov.iov_base;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400512 /*
513 * No tcon so can't do
514 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
515 */
516 if (rc != 0)
517 goto neg_exit;
518
Joe Perchesf96637b2013-05-04 22:12:25 -0500519 cifs_dbg(FYI, "mode 0x%x\n", rsp->SecurityMode);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400520
Steve Frenche4aa25e2012-10-01 12:26:22 -0500521 /* BB we may eventually want to match the negotiated vs. requested
522 dialect, even though we are only requesting one at a time */
523 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500524 cifs_dbg(FYI, "negotiated smb2.0 dialect\n");
Steve Frenche4aa25e2012-10-01 12:26:22 -0500525 else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500526 cifs_dbg(FYI, "negotiated smb2.1 dialect\n");
Steve Frenche4aa25e2012-10-01 12:26:22 -0500527 else if (rsp->DialectRevision == cpu_to_le16(SMB30_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500528 cifs_dbg(FYI, "negotiated smb3.0 dialect\n");
Steve French20b6d8b2013-06-12 22:48:41 -0500529 else if (rsp->DialectRevision == cpu_to_le16(SMB302_PROT_ID))
530 cifs_dbg(FYI, "negotiated smb3.02 dialect\n");
Steve French5f7fbf72014-12-17 22:52:58 -0600531#ifdef CONFIG_CIFS_SMB311
532 else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID))
533 cifs_dbg(FYI, "negotiated smb3.1.1 dialect\n");
534#endif /* SMB311 */
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400535 else {
Steve Frenchf799d622015-06-18 05:07:52 -0500536 cifs_dbg(VFS, "Illegal dialect returned by server 0x%x\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500537 le16_to_cpu(rsp->DialectRevision));
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400538 rc = -EIO;
539 goto neg_exit;
540 }
541 server->dialect = le16_to_cpu(rsp->DialectRevision);
542
Jeff Laytone598d1d82013-05-26 07:00:59 -0400543 /* SMB2 only has an extended negflavor */
544 server->negflavor = CIFS_NEGFLAVOR_EXTENDED;
Pavel Shilovsky2365c4e2014-02-14 13:31:02 +0400545 /* set it to the maximum buffer size value we can send with 1 credit */
546 server->maxBuf = min_t(unsigned int, le32_to_cpu(rsp->MaxTransactSize),
547 SMB2_MAX_BUFFER_SIZE);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400548 server->max_read = le32_to_cpu(rsp->MaxReadSize);
549 server->max_write = le32_to_cpu(rsp->MaxWriteSize);
550 /* BB Do we need to validate the SecurityMode? */
551 server->sec_mode = le16_to_cpu(rsp->SecurityMode);
552 server->capabilities = le32_to_cpu(rsp->Capabilities);
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400553 /* Internal types */
554 server->capabilities |= SMB2_NT_FIND | SMB2_LARGE_FILES;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400555
556 security_blob = smb2_get_data_area_len(&blob_offset, &blob_length,
557 &rsp->hdr);
Steve French5d875cc2013-06-25 15:33:41 -0500558 /*
559 * See MS-SMB2 section 2.2.4: if no blob, client picks default which
560 * for us will be
561 * ses->sectype = RawNTLMSSP;
562 * but for time being this is our only auth choice so doesn't matter.
563 * We just found a server which sets blob length to zero expecting raw.
564 */
Pavel Shilovsky67dbea22017-04-12 13:32:07 -0700565 if (blob_length == 0) {
Steve French5d875cc2013-06-25 15:33:41 -0500566 cifs_dbg(FYI, "missing security blob on negprot\n");
Pavel Shilovsky67dbea22017-04-12 13:32:07 -0700567 server->sec_ntlmssp = true;
568 }
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700569
Jeff Layton38d77c52013-05-26 07:01:00 -0400570 rc = cifs_enable_signing(server, ses->sign);
Jeff Layton9ddec562013-05-26 07:00:58 -0400571 if (rc)
572 goto neg_exit;
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500573 if (blob_length) {
Steve Frenchebdd2072014-10-20 12:48:23 -0500574 rc = decode_negTokenInit(security_blob, blob_length, server);
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500575 if (rc == 1)
576 rc = 0;
577 else if (rc == 0)
578 rc = -EIO;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400579 }
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400580neg_exit:
581 free_rsp_buf(resp_buftype, rsp);
582 return rc;
583}
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400584
Steve Frenchff1c0382013-11-19 23:44:46 -0600585int smb3_validate_negotiate(const unsigned int xid, struct cifs_tcon *tcon)
586{
587 int rc = 0;
588 struct validate_negotiate_info_req vneg_inbuf;
589 struct validate_negotiate_info_rsp *pneg_rsp;
590 u32 rsplen;
591
592 cifs_dbg(FYI, "validate negotiate\n");
593
594 /*
595 * validation ioctl must be signed, so no point sending this if we
596 * can not sign it. We could eventually change this to selectively
597 * sign just this, the first and only signed request on a connection.
598 * This is good enough for now since a user who wants better security
599 * would also enable signing on the mount. Having validation of
600 * negotiate info for signed connections helps reduce attack vectors
601 */
602 if (tcon->ses->server->sign == false)
603 return 0; /* validation requires signing */
604
605 vneg_inbuf.Capabilities =
606 cpu_to_le32(tcon->ses->server->vals->req_capabilities);
Sachin Prabhu39552ea2014-05-13 00:48:12 +0100607 memcpy(vneg_inbuf.Guid, tcon->ses->server->client_guid,
608 SMB2_CLIENT_GUID_SIZE);
Steve Frenchff1c0382013-11-19 23:44:46 -0600609
610 if (tcon->ses->sign)
611 vneg_inbuf.SecurityMode =
612 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
613 else if (global_secflags & CIFSSEC_MAY_SIGN)
614 vneg_inbuf.SecurityMode =
615 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
616 else
617 vneg_inbuf.SecurityMode = 0;
618
619 vneg_inbuf.DialectCount = cpu_to_le16(1);
620 vneg_inbuf.Dialects[0] =
621 cpu_to_le16(tcon->ses->server->vals->protocol_id);
622
623 rc = SMB2_ioctl(xid, tcon, NO_FILE_ID, NO_FILE_ID,
624 FSCTL_VALIDATE_NEGOTIATE_INFO, true /* is_fsctl */,
Aurelien Aptel51146622017-02-28 15:08:41 +0100625 false /* use_ipc */,
Steve Frenchff1c0382013-11-19 23:44:46 -0600626 (char *)&vneg_inbuf, sizeof(struct validate_negotiate_info_req),
627 (char **)&pneg_rsp, &rsplen);
628
629 if (rc != 0) {
630 cifs_dbg(VFS, "validate protocol negotiate failed: %d\n", rc);
631 return -EIO;
632 }
633
634 if (rsplen != sizeof(struct validate_negotiate_info_rsp)) {
635 cifs_dbg(VFS, "invalid size of protocol negotiate response\n");
636 return -EIO;
637 }
638
639 /* check validate negotiate info response matches what we got earlier */
640 if (pneg_rsp->Dialect !=
641 cpu_to_le16(tcon->ses->server->vals->protocol_id))
642 goto vneg_out;
643
644 if (pneg_rsp->SecurityMode != cpu_to_le16(tcon->ses->server->sec_mode))
645 goto vneg_out;
646
647 /* do not validate server guid because not saved at negprot time yet */
648
649 if ((le32_to_cpu(pneg_rsp->Capabilities) | SMB2_NT_FIND |
650 SMB2_LARGE_FILES) != tcon->ses->server->capabilities)
651 goto vneg_out;
652
653 /* validate negotiate successful */
654 cifs_dbg(FYI, "validate negotiate info successful\n");
655 return 0;
656
657vneg_out:
658 cifs_dbg(VFS, "protocol revalidation - security settings mismatch\n");
659 return -EIO;
660}
661
Sachin Prabhuef65aae2017-01-18 15:35:57 +0530662enum securityEnum
663smb2_select_sectype(struct TCP_Server_Info *server, enum securityEnum requested)
664{
665 switch (requested) {
666 case Kerberos:
667 case RawNTLMSSP:
668 return requested;
669 case NTLMv2:
670 return RawNTLMSSP;
671 case Unspecified:
672 if (server->sec_ntlmssp &&
673 (global_secflags & CIFSSEC_MAY_NTLMSSP))
674 return RawNTLMSSP;
675 if ((server->sec_kerberos || server->sec_mskerberos) &&
676 (global_secflags & CIFSSEC_MAY_KRB5))
677 return Kerberos;
678 /* Fallthrough */
679 default:
680 return Unspecified;
681 }
682}
683
Sachin Prabhu3baf1a72016-10-07 19:11:21 +0100684struct SMB2_sess_data {
685 unsigned int xid;
686 struct cifs_ses *ses;
687 struct nls_table *nls_cp;
688 void (*func)(struct SMB2_sess_data *);
689 int result;
690 u64 previous_session;
691
692 /* we will send the SMB in three pieces:
693 * a fixed length beginning part, an optional
694 * SPNEGO blob (which can be zero length), and a
695 * last part which will include the strings
696 * and rest of bcc area. This allows us to avoid
697 * a large buffer 17K allocation
698 */
699 int buf0_type;
700 struct kvec iov[2];
701};
702
703static int
704SMB2_sess_alloc_buffer(struct SMB2_sess_data *sess_data)
705{
706 int rc;
707 struct cifs_ses *ses = sess_data->ses;
708 struct smb2_sess_setup_req *req;
709 struct TCP_Server_Info *server = ses->server;
710
711 rc = small_smb2_init(SMB2_SESSION_SETUP, NULL, (void **) &req);
712 if (rc)
713 return rc;
714
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700715 /* First session, not a reauthenticate */
716 req->hdr.sync_hdr.SessionId = 0;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +0100717
718 /* if reconnect, we need to send previous sess id, otherwise it is 0 */
719 req->PreviousSessionId = sess_data->previous_session;
720
721 req->Flags = 0; /* MBZ */
722 /* to enable echos and oplocks */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700723 req->hdr.sync_hdr.CreditRequest = cpu_to_le16(3);
Sachin Prabhu3baf1a72016-10-07 19:11:21 +0100724
725 /* only one of SMB2 signing flags may be set in SMB2 request */
726 if (server->sign)
727 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_REQUIRED;
728 else if (global_secflags & CIFSSEC_MAY_SIGN) /* one flag unlike MUST_ */
729 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED;
730 else
731 req->SecurityMode = 0;
732
733 req->Capabilities = 0;
734 req->Channel = 0; /* MBZ */
735
736 sess_data->iov[0].iov_base = (char *)req;
737 /* 4 for rfc1002 length field and 1 for pad */
738 sess_data->iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
739 /*
740 * This variable will be used to clear the buffer
741 * allocated above in case of any error in the calling function.
742 */
743 sess_data->buf0_type = CIFS_SMALL_BUFFER;
744
745 return 0;
746}
747
748static void
749SMB2_sess_free_buffer(struct SMB2_sess_data *sess_data)
750{
751 free_rsp_buf(sess_data->buf0_type, sess_data->iov[0].iov_base);
752 sess_data->buf0_type = CIFS_NO_BUFFER;
753}
754
755static int
756SMB2_sess_sendreceive(struct SMB2_sess_data *sess_data)
757{
758 int rc;
759 struct smb2_sess_setup_req *req = sess_data->iov[0].iov_base;
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700760 struct kvec rsp_iov = { NULL, 0 };
Sachin Prabhu3baf1a72016-10-07 19:11:21 +0100761
762 /* Testing shows that buffer offset must be at location of Buffer[0] */
763 req->SecurityBufferOffset =
764 cpu_to_le16(sizeof(struct smb2_sess_setup_req) -
765 1 /* pad */ - 4 /* rfc1001 len */);
766 req->SecurityBufferLength = cpu_to_le16(sess_data->iov[1].iov_len);
767
768 inc_rfc1001_len(req, sess_data->iov[1].iov_len - 1 /* pad */);
769
770 /* BB add code to build os and lm fields */
771
772 rc = SendReceive2(sess_data->xid, sess_data->ses,
773 sess_data->iov, 2,
774 &sess_data->buf0_type,
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700775 CIFS_LOG_ERROR | CIFS_NEG_OP, &rsp_iov);
776 cifs_small_buf_release(sess_data->iov[0].iov_base);
777 memcpy(&sess_data->iov[0], &rsp_iov, sizeof(struct kvec));
Sachin Prabhu3baf1a72016-10-07 19:11:21 +0100778
779 return rc;
780}
781
782static int
783SMB2_sess_establish_session(struct SMB2_sess_data *sess_data)
784{
785 int rc = 0;
786 struct cifs_ses *ses = sess_data->ses;
787
788 mutex_lock(&ses->server->srv_mutex);
Pavel Shilovskycabfb362016-11-07 18:20:50 -0800789 if (ses->server->ops->generate_signingkey) {
Sachin Prabhu3baf1a72016-10-07 19:11:21 +0100790 rc = ses->server->ops->generate_signingkey(ses);
Sachin Prabhu3baf1a72016-10-07 19:11:21 +0100791 if (rc) {
792 cifs_dbg(FYI,
793 "SMB3 session key generation failed\n");
794 mutex_unlock(&ses->server->srv_mutex);
Pavel Shilovskycabfb362016-11-07 18:20:50 -0800795 return rc;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +0100796 }
797 }
798 if (!ses->server->session_estab) {
799 ses->server->sequence_number = 0x2;
800 ses->server->session_estab = true;
801 }
802 mutex_unlock(&ses->server->srv_mutex);
803
804 cifs_dbg(FYI, "SMB2/3 session established successfully\n");
805 spin_lock(&GlobalMid_Lock);
806 ses->status = CifsGood;
807 ses->need_reconnect = false;
808 spin_unlock(&GlobalMid_Lock);
Sachin Prabhu3baf1a72016-10-07 19:11:21 +0100809 return rc;
810}
811
812#ifdef CONFIG_CIFS_UPCALL
813static void
814SMB2_auth_kerberos(struct SMB2_sess_data *sess_data)
815{
816 int rc;
817 struct cifs_ses *ses = sess_data->ses;
818 struct cifs_spnego_msg *msg;
819 struct key *spnego_key = NULL;
820 struct smb2_sess_setup_rsp *rsp = NULL;
821
822 rc = SMB2_sess_alloc_buffer(sess_data);
823 if (rc)
824 goto out;
825
826 spnego_key = cifs_get_spnego_key(ses);
827 if (IS_ERR(spnego_key)) {
828 rc = PTR_ERR(spnego_key);
829 spnego_key = NULL;
830 goto out;
831 }
832
833 msg = spnego_key->payload.data[0];
834 /*
835 * check version field to make sure that cifs.upcall is
836 * sending us a response in an expected form
837 */
838 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
839 cifs_dbg(VFS,
840 "bad cifs.upcall version. Expected %d got %d",
841 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
842 rc = -EKEYREJECTED;
843 goto out_put_spnego_key;
844 }
845
846 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
847 GFP_KERNEL);
848 if (!ses->auth_key.response) {
849 cifs_dbg(VFS,
850 "Kerberos can't allocate (%u bytes) memory",
851 msg->sesskey_len);
852 rc = -ENOMEM;
853 goto out_put_spnego_key;
854 }
855 ses->auth_key.len = msg->sesskey_len;
856
857 sess_data->iov[1].iov_base = msg->data + msg->sesskey_len;
858 sess_data->iov[1].iov_len = msg->secblob_len;
859
860 rc = SMB2_sess_sendreceive(sess_data);
861 if (rc)
862 goto out_put_spnego_key;
863
864 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700865 ses->Suid = rsp->hdr.sync_hdr.SessionId;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +0100866
867 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
Sachin Prabhu3baf1a72016-10-07 19:11:21 +0100868
869 rc = SMB2_sess_establish_session(sess_data);
870out_put_spnego_key:
871 key_invalidate(spnego_key);
872 key_put(spnego_key);
873out:
874 sess_data->result = rc;
875 sess_data->func = NULL;
876 SMB2_sess_free_buffer(sess_data);
877}
878#else
879static void
880SMB2_auth_kerberos(struct SMB2_sess_data *sess_data)
881{
882 cifs_dbg(VFS, "Kerberos negotiated but upcall support disabled!\n");
883 sess_data->result = -EOPNOTSUPP;
884 sess_data->func = NULL;
885}
886#endif
887
Sachin Prabhu166cea42016-10-07 19:11:22 +0100888static void
889SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data);
890
891static void
892SMB2_sess_auth_rawntlmssp_negotiate(struct SMB2_sess_data *sess_data)
893{
894 int rc;
895 struct cifs_ses *ses = sess_data->ses;
896 struct smb2_sess_setup_rsp *rsp = NULL;
897 char *ntlmssp_blob = NULL;
898 bool use_spnego = false; /* else use raw ntlmssp */
899 u16 blob_length = 0;
900
901 /*
902 * If memory allocation is successful, caller of this function
903 * frees it.
904 */
905 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
906 if (!ses->ntlmssp) {
907 rc = -ENOMEM;
908 goto out_err;
909 }
910 ses->ntlmssp->sesskey_per_smbsess = true;
911
912 rc = SMB2_sess_alloc_buffer(sess_data);
913 if (rc)
914 goto out_err;
915
916 ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE),
917 GFP_KERNEL);
918 if (ntlmssp_blob == NULL) {
919 rc = -ENOMEM;
920 goto out;
921 }
922
923 build_ntlmssp_negotiate_blob(ntlmssp_blob, ses);
924 if (use_spnego) {
925 /* BB eventually need to add this */
926 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
927 rc = -EOPNOTSUPP;
928 goto out;
929 } else {
930 blob_length = sizeof(struct _NEGOTIATE_MESSAGE);
931 /* with raw NTLMSSP we don't encapsulate in SPNEGO */
932 }
933 sess_data->iov[1].iov_base = ntlmssp_blob;
934 sess_data->iov[1].iov_len = blob_length;
935
936 rc = SMB2_sess_sendreceive(sess_data);
937 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
938
939 /* If true, rc here is expected and not an error */
940 if (sess_data->buf0_type != CIFS_NO_BUFFER &&
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700941 rsp->hdr.sync_hdr.Status == STATUS_MORE_PROCESSING_REQUIRED)
Sachin Prabhu166cea42016-10-07 19:11:22 +0100942 rc = 0;
943
944 if (rc)
945 goto out;
946
947 if (offsetof(struct smb2_sess_setup_rsp, Buffer) - 4 !=
948 le16_to_cpu(rsp->SecurityBufferOffset)) {
949 cifs_dbg(VFS, "Invalid security buffer offset %d\n",
950 le16_to_cpu(rsp->SecurityBufferOffset));
951 rc = -EIO;
952 goto out;
953 }
954 rc = decode_ntlmssp_challenge(rsp->Buffer,
955 le16_to_cpu(rsp->SecurityBufferLength), ses);
956 if (rc)
957 goto out;
958
959 cifs_dbg(FYI, "rawntlmssp session setup challenge phase\n");
960
961
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700962 ses->Suid = rsp->hdr.sync_hdr.SessionId;
Sachin Prabhu166cea42016-10-07 19:11:22 +0100963 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
Sachin Prabhu166cea42016-10-07 19:11:22 +0100964
965out:
966 kfree(ntlmssp_blob);
967 SMB2_sess_free_buffer(sess_data);
968 if (!rc) {
969 sess_data->result = 0;
970 sess_data->func = SMB2_sess_auth_rawntlmssp_authenticate;
971 return;
972 }
973out_err:
974 kfree(ses->ntlmssp);
975 ses->ntlmssp = NULL;
976 sess_data->result = rc;
977 sess_data->func = NULL;
978}
979
980static void
981SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data)
982{
983 int rc;
984 struct cifs_ses *ses = sess_data->ses;
985 struct smb2_sess_setup_req *req;
986 struct smb2_sess_setup_rsp *rsp = NULL;
987 unsigned char *ntlmssp_blob = NULL;
988 bool use_spnego = false; /* else use raw ntlmssp */
989 u16 blob_length = 0;
990
991 rc = SMB2_sess_alloc_buffer(sess_data);
992 if (rc)
993 goto out;
994
995 req = (struct smb2_sess_setup_req *) sess_data->iov[0].iov_base;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700996 req->hdr.sync_hdr.SessionId = ses->Suid;
Sachin Prabhu166cea42016-10-07 19:11:22 +0100997
998 rc = build_ntlmssp_auth_blob(&ntlmssp_blob, &blob_length, ses,
999 sess_data->nls_cp);
1000 if (rc) {
1001 cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n", rc);
1002 goto out;
1003 }
1004
1005 if (use_spnego) {
1006 /* BB eventually need to add this */
1007 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
1008 rc = -EOPNOTSUPP;
1009 goto out;
1010 }
1011 sess_data->iov[1].iov_base = ntlmssp_blob;
1012 sess_data->iov[1].iov_len = blob_length;
1013
1014 rc = SMB2_sess_sendreceive(sess_data);
1015 if (rc)
1016 goto out;
1017
1018 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
1019
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07001020 ses->Suid = rsp->hdr.sync_hdr.SessionId;
Sachin Prabhu166cea42016-10-07 19:11:22 +01001021 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
Sachin Prabhu166cea42016-10-07 19:11:22 +01001022
1023 rc = SMB2_sess_establish_session(sess_data);
1024out:
1025 kfree(ntlmssp_blob);
1026 SMB2_sess_free_buffer(sess_data);
1027 kfree(ses->ntlmssp);
1028 ses->ntlmssp = NULL;
1029 sess_data->result = rc;
1030 sess_data->func = NULL;
1031}
1032
1033static int
1034SMB2_select_sec(struct cifs_ses *ses, struct SMB2_sess_data *sess_data)
1035{
Sachin Prabhuef65aae2017-01-18 15:35:57 +05301036 int type;
Sachin Prabhu166cea42016-10-07 19:11:22 +01001037
Sachin Prabhuef65aae2017-01-18 15:35:57 +05301038 type = smb2_select_sectype(ses->server, ses->sectype);
1039 cifs_dbg(FYI, "sess setup type %d\n", type);
1040 if (type == Unspecified) {
1041 cifs_dbg(VFS,
1042 "Unable to select appropriate authentication method!");
1043 return -EINVAL;
1044 }
1045
1046 switch (type) {
Sachin Prabhu166cea42016-10-07 19:11:22 +01001047 case Kerberos:
1048 sess_data->func = SMB2_auth_kerberos;
1049 break;
1050 case RawNTLMSSP:
1051 sess_data->func = SMB2_sess_auth_rawntlmssp_negotiate;
1052 break;
1053 default:
Sachin Prabhuef65aae2017-01-18 15:35:57 +05301054 cifs_dbg(VFS, "secType %d not supported!\n", type);
Sachin Prabhu166cea42016-10-07 19:11:22 +01001055 return -EOPNOTSUPP;
1056 }
1057
1058 return 0;
1059}
1060
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001061int
1062SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
1063 const struct nls_table *nls_cp)
1064{
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001065 int rc = 0;
Jeff Layton3534b852013-05-24 07:41:01 -04001066 struct TCP_Server_Info *server = ses->server;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001067 struct SMB2_sess_data *sess_data;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001068
Joe Perchesf96637b2013-05-04 22:12:25 -05001069 cifs_dbg(FYI, "Session Setup\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001070
Jeff Layton3534b852013-05-24 07:41:01 -04001071 if (!server) {
1072 WARN(1, "%s: server is NULL!\n", __func__);
1073 return -EIO;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001074 }
1075
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001076 sess_data = kzalloc(sizeof(struct SMB2_sess_data), GFP_KERNEL);
1077 if (!sess_data)
1078 return -ENOMEM;
Sachin Prabhu166cea42016-10-07 19:11:22 +01001079
1080 rc = SMB2_select_sec(ses, sess_data);
1081 if (rc)
1082 goto out;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001083 sess_data->xid = xid;
1084 sess_data->ses = ses;
1085 sess_data->buf0_type = CIFS_NO_BUFFER;
1086 sess_data->nls_cp = (struct nls_table *) nls_cp;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001087
Sachin Prabhu166cea42016-10-07 19:11:22 +01001088 while (sess_data->func)
1089 sess_data->func(sess_data);
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001090
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001091 rc = sess_data->result;
Sachin Prabhu166cea42016-10-07 19:11:22 +01001092out:
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001093 kfree(sess_data);
1094 return rc;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001095}
1096
1097int
1098SMB2_logoff(const unsigned int xid, struct cifs_ses *ses)
1099{
1100 struct smb2_logoff_req *req; /* response is also trivial struct */
1101 int rc = 0;
1102 struct TCP_Server_Info *server;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001103 int flags = 0;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001104
Joe Perchesf96637b2013-05-04 22:12:25 -05001105 cifs_dbg(FYI, "disconnect session %p\n", ses);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001106
1107 if (ses && (ses->server))
1108 server = ses->server;
1109 else
1110 return -EIO;
1111
Shirish Pargaonkareb4c7df2013-10-03 05:44:45 -05001112 /* no need to send SMB logoff if uid already closed due to reconnect */
1113 if (ses->need_reconnect)
1114 goto smb2_session_already_dead;
1115
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001116 rc = small_smb2_init(SMB2_LOGOFF, NULL, (void **) &req);
1117 if (rc)
1118 return rc;
1119
1120 /* since no tcon, smb2_init can not do this, so do here */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07001121 req->hdr.sync_hdr.SessionId = ses->Suid;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001122
1123 if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA)
1124 flags |= CIFS_TRANSFORM_REQ;
1125 else if (server->sign)
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07001126 req->hdr.sync_hdr.Flags |= SMB2_FLAGS_SIGNED;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001127
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001128 rc = SendReceiveNoRsp(xid, ses, (char *) req, flags);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001129 cifs_small_buf_release(req);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001130 /*
1131 * No tcon so can't do
1132 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
1133 */
Shirish Pargaonkareb4c7df2013-10-03 05:44:45 -05001134
1135smb2_session_already_dead:
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001136 return rc;
1137}
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001138
1139static inline void cifs_stats_fail_inc(struct cifs_tcon *tcon, uint16_t code)
1140{
Pavel Shilovskyd60622e2012-05-28 15:19:39 +04001141 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_failed[code]);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001142}
1143
1144#define MAX_SHARENAME_LENGTH (255 /* server */ + 80 /* share */ + 1 /* NULL */)
1145
Steve Frenchde9f68d2013-11-15 11:26:24 -06001146/* These are similar values to what Windows uses */
1147static inline void init_copy_chunk_defaults(struct cifs_tcon *tcon)
1148{
1149 tcon->max_chunks = 256;
1150 tcon->max_bytes_chunk = 1048576;
1151 tcon->max_bytes_copy = 16777216;
1152}
1153
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001154int
1155SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
1156 struct cifs_tcon *tcon, const struct nls_table *cp)
1157{
1158 struct smb2_tree_connect_req *req;
1159 struct smb2_tree_connect_rsp *rsp = NULL;
1160 struct kvec iov[2];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001161 struct kvec rsp_iov;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001162 int rc = 0;
1163 int resp_buftype;
1164 int unc_path_len;
1165 struct TCP_Server_Info *server;
1166 __le16 *unc_path = NULL;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001167 int flags = 0;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001168
Joe Perchesf96637b2013-05-04 22:12:25 -05001169 cifs_dbg(FYI, "TCON\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001170
1171 if ((ses->server) && tree)
1172 server = ses->server;
1173 else
1174 return -EIO;
1175
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001176 unc_path = kmalloc(MAX_SHARENAME_LENGTH * 2, GFP_KERNEL);
1177 if (unc_path == NULL)
1178 return -ENOMEM;
1179
1180 unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp) + 1;
1181 unc_path_len *= 2;
1182 if (unc_path_len < 2) {
1183 kfree(unc_path);
1184 return -EINVAL;
1185 }
1186
Jan-Marek Glogowski806a28e2017-02-20 12:25:58 +01001187 /* SMB2 TREE_CONNECT request must be called with TreeId == 0 */
1188 if (tcon)
1189 tcon->tid = 0;
1190
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001191 rc = small_smb2_init(SMB2_TREE_CONNECT, tcon, (void **) &req);
1192 if (rc) {
1193 kfree(unc_path);
1194 return rc;
1195 }
1196
1197 if (tcon == NULL) {
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08001198 if ((ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA))
1199 flags |= CIFS_TRANSFORM_REQ;
1200
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001201 /* since no tcon, smb2_init can not do this, so do here */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07001202 req->hdr.sync_hdr.SessionId = ses->Suid;
Aurelien Aptelb9043cc2017-02-13 16:19:04 +01001203 if (ses->server->sign)
1204 req->hdr.sync_hdr.Flags |= SMB2_FLAGS_SIGNED;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08001205 } else if (encryption_required(tcon))
1206 flags |= CIFS_TRANSFORM_REQ;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001207
1208 iov[0].iov_base = (char *)req;
1209 /* 4 for rfc1002 length field and 1 for pad */
1210 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1211
1212 /* Testing shows that buffer offset must be at location of Buffer[0] */
1213 req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)
1214 - 1 /* pad */ - 4 /* do not count rfc1001 len field */);
1215 req->PathLength = cpu_to_le16(unc_path_len - 2);
1216 iov[1].iov_base = unc_path;
1217 iov[1].iov_len = unc_path_len;
1218
1219 inc_rfc1001_len(req, unc_path_len - 1 /* pad */);
1220
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001221 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001222 cifs_small_buf_release(req);
1223 rsp = (struct smb2_tree_connect_rsp *)rsp_iov.iov_base;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001224
1225 if (rc != 0) {
1226 if (tcon) {
1227 cifs_stats_fail_inc(tcon, SMB2_TREE_CONNECT_HE);
1228 tcon->need_reconnect = true;
1229 }
1230 goto tcon_error_exit;
1231 }
1232
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001233 if (tcon == NULL) {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07001234 ses->ipc_tid = rsp->hdr.sync_hdr.TreeId;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001235 goto tcon_exit;
1236 }
1237
1238 if (rsp->ShareType & SMB2_SHARE_TYPE_DISK)
Joe Perchesf96637b2013-05-04 22:12:25 -05001239 cifs_dbg(FYI, "connection to disk share\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001240 else if (rsp->ShareType & SMB2_SHARE_TYPE_PIPE) {
1241 tcon->ipc = true;
Joe Perchesf96637b2013-05-04 22:12:25 -05001242 cifs_dbg(FYI, "connection to pipe share\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001243 } else if (rsp->ShareType & SMB2_SHARE_TYPE_PRINT) {
1244 tcon->print = true;
Joe Perchesf96637b2013-05-04 22:12:25 -05001245 cifs_dbg(FYI, "connection to printer\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001246 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -05001247 cifs_dbg(VFS, "unknown share type %d\n", rsp->ShareType);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001248 rc = -EOPNOTSUPP;
1249 goto tcon_error_exit;
1250 }
1251
1252 tcon->share_flags = le32_to_cpu(rsp->ShareFlags);
Steve French769ee6a2013-06-19 14:15:30 -05001253 tcon->capabilities = rsp->Capabilities; /* we keep caps little endian */
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001254 tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess);
1255 tcon->tidStatus = CifsGood;
1256 tcon->need_reconnect = false;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07001257 tcon->tid = rsp->hdr.sync_hdr.TreeId;
Zhao Hongjiang46b51d02013-06-24 01:57:47 -05001258 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001259
1260 if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) &&
1261 ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0))
Joe Perchesf96637b2013-05-04 22:12:25 -05001262 cifs_dbg(VFS, "DFS capability contradicts DFS flag\n");
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08001263
1264 if (tcon->seal &&
1265 !(tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION))
1266 cifs_dbg(VFS, "Encryption is requested but not supported\n");
1267
Steve Frenchde9f68d2013-11-15 11:26:24 -06001268 init_copy_chunk_defaults(tcon);
Steve Frenchff1c0382013-11-19 23:44:46 -06001269 if (tcon->ses->server->ops->validate_negotiate)
1270 rc = tcon->ses->server->ops->validate_negotiate(xid, tcon);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001271tcon_exit:
1272 free_rsp_buf(resp_buftype, rsp);
1273 kfree(unc_path);
1274 return rc;
1275
1276tcon_error_exit:
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07001277 if (rsp->hdr.sync_hdr.Status == STATUS_BAD_NETWORK_NAME) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001278 cifs_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001279 }
1280 goto tcon_exit;
1281}
1282
1283int
1284SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
1285{
1286 struct smb2_tree_disconnect_req *req; /* response is trivial */
1287 int rc = 0;
1288 struct TCP_Server_Info *server;
1289 struct cifs_ses *ses = tcon->ses;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001290 int flags = 0;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001291
Joe Perchesf96637b2013-05-04 22:12:25 -05001292 cifs_dbg(FYI, "Tree Disconnect\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001293
1294 if (ses && (ses->server))
1295 server = ses->server;
1296 else
1297 return -EIO;
1298
1299 if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
1300 return 0;
1301
1302 rc = small_smb2_init(SMB2_TREE_DISCONNECT, tcon, (void **) &req);
1303 if (rc)
1304 return rc;
1305
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001306 if (encryption_required(tcon))
1307 flags |= CIFS_TRANSFORM_REQ;
1308
1309 rc = SendReceiveNoRsp(xid, ses, (char *)req, flags);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001310 cifs_small_buf_release(req);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001311 if (rc)
1312 cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE);
1313
1314 return rc;
1315}
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001316
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001317
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001318static struct create_durable *
1319create_durable_buf(void)
1320{
1321 struct create_durable *buf;
1322
1323 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1324 if (!buf)
1325 return NULL;
1326
1327 buf->ccontext.DataOffset = cpu_to_le16(offsetof
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001328 (struct create_durable, Data));
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001329 buf->ccontext.DataLength = cpu_to_le32(16);
1330 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1331 (struct create_durable, Name));
1332 buf->ccontext.NameLength = cpu_to_le16(4);
Steve French12197a72014-05-14 05:29:40 -07001333 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DHnQ" */
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001334 buf->Name[0] = 'D';
1335 buf->Name[1] = 'H';
1336 buf->Name[2] = 'n';
1337 buf->Name[3] = 'Q';
1338 return buf;
1339}
1340
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001341static struct create_durable *
1342create_reconnect_durable_buf(struct cifs_fid *fid)
1343{
1344 struct create_durable *buf;
1345
1346 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1347 if (!buf)
1348 return NULL;
1349
1350 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1351 (struct create_durable, Data));
1352 buf->ccontext.DataLength = cpu_to_le32(16);
1353 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1354 (struct create_durable, Name));
1355 buf->ccontext.NameLength = cpu_to_le16(4);
1356 buf->Data.Fid.PersistentFileId = fid->persistent_fid;
1357 buf->Data.Fid.VolatileFileId = fid->volatile_fid;
Steve French12197a72014-05-14 05:29:40 -07001358 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT is "DHnC" */
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001359 buf->Name[0] = 'D';
1360 buf->Name[1] = 'H';
1361 buf->Name[2] = 'n';
1362 buf->Name[3] = 'C';
1363 return buf;
1364}
1365
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001366static __u8
Pavel Shilovsky42873b02013-09-05 21:30:16 +04001367parse_lease_state(struct TCP_Server_Info *server, struct smb2_create_rsp *rsp,
1368 unsigned int *epoch)
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001369{
1370 char *data_offset;
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001371 struct create_context *cc;
Justin Maggarddeb7def2016-02-09 15:52:08 -08001372 unsigned int next;
1373 unsigned int remaining;
Pavel Shilovskyfd554392013-07-09 19:44:56 +04001374 char *name;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001375
Pavel Shilovskyfd554392013-07-09 19:44:56 +04001376 data_offset = (char *)rsp + 4 + le32_to_cpu(rsp->CreateContextsOffset);
Justin Maggarddeb7def2016-02-09 15:52:08 -08001377 remaining = le32_to_cpu(rsp->CreateContextsLength);
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001378 cc = (struct create_context *)data_offset;
Justin Maggarddeb7def2016-02-09 15:52:08 -08001379 while (remaining >= sizeof(struct create_context)) {
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001380 name = le16_to_cpu(cc->NameOffset) + (char *)cc;
Justin Maggarddeb7def2016-02-09 15:52:08 -08001381 if (le16_to_cpu(cc->NameLength) == 4 &&
1382 strncmp(name, "RqLs", 4) == 0)
1383 return server->ops->parse_lease_buf(cc, epoch);
1384
1385 next = le32_to_cpu(cc->Next);
1386 if (!next)
1387 break;
1388 remaining -= next;
1389 cc = (struct create_context *)((char *)cc + next);
1390 }
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001391
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001392 return 0;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001393}
1394
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001395static int
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001396add_lease_context(struct TCP_Server_Info *server, struct kvec *iov,
1397 unsigned int *num_iovec, __u8 *oplock)
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001398{
1399 struct smb2_create_req *req = iov[0].iov_base;
1400 unsigned int num = *num_iovec;
1401
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001402 iov[num].iov_base = server->ops->create_lease_buf(oplock+1, *oplock);
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001403 if (iov[num].iov_base == NULL)
1404 return -ENOMEM;
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001405 iov[num].iov_len = server->vals->create_lease_size;
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001406 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_LEASE;
1407 if (!req->CreateContextsOffset)
1408 req->CreateContextsOffset = cpu_to_le32(
1409 sizeof(struct smb2_create_req) - 4 +
1410 iov[num - 1].iov_len);
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001411 le32_add_cpu(&req->CreateContextsLength,
1412 server->vals->create_lease_size);
1413 inc_rfc1001_len(&req->hdr, server->vals->create_lease_size);
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001414 *num_iovec = num + 1;
1415 return 0;
1416}
1417
Steve Frenchb56eae42015-11-03 09:26:27 -06001418static struct create_durable_v2 *
1419create_durable_v2_buf(struct cifs_fid *pfid)
1420{
1421 struct create_durable_v2 *buf;
1422
1423 buf = kzalloc(sizeof(struct create_durable_v2), GFP_KERNEL);
1424 if (!buf)
1425 return NULL;
1426
1427 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1428 (struct create_durable_v2, dcontext));
1429 buf->ccontext.DataLength = cpu_to_le32(sizeof(struct durable_context_v2));
1430 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1431 (struct create_durable_v2, Name));
1432 buf->ccontext.NameLength = cpu_to_le16(4);
1433
1434 buf->dcontext.Timeout = 0; /* Should this be configurable by workload */
1435 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
Steve Frenchfa70b872016-09-22 00:39:34 -05001436 generate_random_uuid(buf->dcontext.CreateGuid);
Steve Frenchb56eae42015-11-03 09:26:27 -06001437 memcpy(pfid->create_guid, buf->dcontext.CreateGuid, 16);
1438
1439 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DH2Q" */
1440 buf->Name[0] = 'D';
1441 buf->Name[1] = 'H';
1442 buf->Name[2] = '2';
1443 buf->Name[3] = 'Q';
1444 return buf;
1445}
1446
1447static struct create_durable_handle_reconnect_v2 *
1448create_reconnect_durable_v2_buf(struct cifs_fid *fid)
1449{
1450 struct create_durable_handle_reconnect_v2 *buf;
1451
1452 buf = kzalloc(sizeof(struct create_durable_handle_reconnect_v2),
1453 GFP_KERNEL);
1454 if (!buf)
1455 return NULL;
1456
1457 buf->ccontext.DataOffset =
1458 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
1459 dcontext));
1460 buf->ccontext.DataLength =
1461 cpu_to_le32(sizeof(struct durable_reconnect_context_v2));
1462 buf->ccontext.NameOffset =
1463 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
1464 Name));
1465 buf->ccontext.NameLength = cpu_to_le16(4);
1466
1467 buf->dcontext.Fid.PersistentFileId = fid->persistent_fid;
1468 buf->dcontext.Fid.VolatileFileId = fid->volatile_fid;
1469 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
1470 memcpy(buf->dcontext.CreateGuid, fid->create_guid, 16);
1471
1472 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 is "DH2C" */
1473 buf->Name[0] = 'D';
1474 buf->Name[1] = 'H';
1475 buf->Name[2] = '2';
1476 buf->Name[3] = 'C';
1477 return buf;
1478}
1479
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001480static int
Steve Frenchb56eae42015-11-03 09:26:27 -06001481add_durable_v2_context(struct kvec *iov, unsigned int *num_iovec,
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001482 struct cifs_open_parms *oparms)
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001483{
1484 struct smb2_create_req *req = iov[0].iov_base;
1485 unsigned int num = *num_iovec;
1486
Steve Frenchb56eae42015-11-03 09:26:27 -06001487 iov[num].iov_base = create_durable_v2_buf(oparms->fid);
1488 if (iov[num].iov_base == NULL)
1489 return -ENOMEM;
1490 iov[num].iov_len = sizeof(struct create_durable_v2);
1491 if (!req->CreateContextsOffset)
1492 req->CreateContextsOffset =
1493 cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1494 iov[1].iov_len);
1495 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable_v2));
1496 inc_rfc1001_len(&req->hdr, sizeof(struct create_durable_v2));
1497 *num_iovec = num + 1;
1498 return 0;
1499}
1500
1501static int
1502add_durable_reconnect_v2_context(struct kvec *iov, unsigned int *num_iovec,
1503 struct cifs_open_parms *oparms)
1504{
1505 struct smb2_create_req *req = iov[0].iov_base;
1506 unsigned int num = *num_iovec;
1507
1508 /* indicate that we don't need to relock the file */
1509 oparms->reconnect = false;
1510
1511 iov[num].iov_base = create_reconnect_durable_v2_buf(oparms->fid);
1512 if (iov[num].iov_base == NULL)
1513 return -ENOMEM;
1514 iov[num].iov_len = sizeof(struct create_durable_handle_reconnect_v2);
1515 if (!req->CreateContextsOffset)
1516 req->CreateContextsOffset =
1517 cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1518 iov[1].iov_len);
1519 le32_add_cpu(&req->CreateContextsLength,
1520 sizeof(struct create_durable_handle_reconnect_v2));
1521 inc_rfc1001_len(&req->hdr,
1522 sizeof(struct create_durable_handle_reconnect_v2));
1523 *num_iovec = num + 1;
1524 return 0;
1525}
1526
1527static int
1528add_durable_context(struct kvec *iov, unsigned int *num_iovec,
1529 struct cifs_open_parms *oparms, bool use_persistent)
1530{
1531 struct smb2_create_req *req = iov[0].iov_base;
1532 unsigned int num = *num_iovec;
1533
1534 if (use_persistent) {
1535 if (oparms->reconnect)
1536 return add_durable_reconnect_v2_context(iov, num_iovec,
1537 oparms);
1538 else
1539 return add_durable_v2_context(iov, num_iovec, oparms);
1540 }
1541
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001542 if (oparms->reconnect) {
1543 iov[num].iov_base = create_reconnect_durable_buf(oparms->fid);
1544 /* indicate that we don't need to relock the file */
1545 oparms->reconnect = false;
1546 } else
1547 iov[num].iov_base = create_durable_buf();
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001548 if (iov[num].iov_base == NULL)
1549 return -ENOMEM;
1550 iov[num].iov_len = sizeof(struct create_durable);
1551 if (!req->CreateContextsOffset)
1552 req->CreateContextsOffset =
1553 cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1554 iov[1].iov_len);
Wei Yongjun31f92e92013-08-26 14:34:46 +08001555 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable));
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001556 inc_rfc1001_len(&req->hdr, sizeof(struct create_durable));
1557 *num_iovec = num + 1;
1558 return 0;
1559}
1560
Aurelien Aptelf0712922017-02-22 14:47:17 +01001561static int
1562alloc_path_with_tree_prefix(__le16 **out_path, int *out_size, int *out_len,
1563 const char *treename, const __le16 *path)
1564{
1565 int treename_len, path_len;
1566 struct nls_table *cp;
1567 const __le16 sep[] = {cpu_to_le16('\\'), cpu_to_le16(0x0000)};
1568
1569 /*
1570 * skip leading "\\"
1571 */
1572 treename_len = strlen(treename);
1573 if (treename_len < 2 || !(treename[0] == '\\' && treename[1] == '\\'))
1574 return -EINVAL;
1575
1576 treename += 2;
1577 treename_len -= 2;
1578
1579 path_len = UniStrnlen((wchar_t *)path, PATH_MAX);
1580
1581 /*
1582 * make room for one path separator between the treename and
1583 * path
1584 */
1585 *out_len = treename_len + 1 + path_len;
1586
1587 /*
1588 * final path needs to be null-terminated UTF16 with a
1589 * size aligned to 8
1590 */
1591
1592 *out_size = roundup((*out_len+1)*2, 8);
1593 *out_path = kzalloc(*out_size, GFP_KERNEL);
1594 if (!*out_path)
1595 return -ENOMEM;
1596
1597 cp = load_nls_default();
1598 cifs_strtoUTF16(*out_path, treename, treename_len, cp);
1599 UniStrcat(*out_path, sep);
1600 UniStrcat(*out_path, path);
1601 unload_nls(cp);
1602
1603 return 0;
1604}
1605
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001606int
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001607SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, __le16 *path,
Pavel Shilovskyb42bf882013-08-14 19:25:21 +04001608 __u8 *oplock, struct smb2_file_all_info *buf,
1609 struct smb2_err_rsp **err_buf)
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001610{
1611 struct smb2_create_req *req;
1612 struct smb2_create_rsp *rsp;
1613 struct TCP_Server_Info *server;
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001614 struct cifs_tcon *tcon = oparms->tcon;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001615 struct cifs_ses *ses = tcon->ses;
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001616 struct kvec iov[4];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001617 struct kvec rsp_iov;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001618 int resp_buftype;
1619 int uni_path_len;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001620 __le16 *copy_path = NULL;
1621 int copy_size;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001622 int rc = 0;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001623 unsigned int n_iov = 2;
Pavel Shilovskyca819832013-07-05 12:21:26 +04001624 __u32 file_attributes = 0;
Pavel Shilovsky663a96212014-05-24 16:42:02 +04001625 char *dhc_buf = NULL, *lc_buf = NULL;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001626 int flags = 0;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001627
Joe Perchesf96637b2013-05-04 22:12:25 -05001628 cifs_dbg(FYI, "create/open\n");
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001629
1630 if (ses && (ses->server))
1631 server = ses->server;
1632 else
1633 return -EIO;
1634
1635 rc = small_smb2_init(SMB2_CREATE, tcon, (void **) &req);
1636 if (rc)
1637 return rc;
1638
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001639 if (encryption_required(tcon))
1640 flags |= CIFS_TRANSFORM_REQ;
1641
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001642 if (oparms->create_options & CREATE_OPTION_READONLY)
Pavel Shilovskyca819832013-07-05 12:21:26 +04001643 file_attributes |= ATTR_READONLY;
Steve Frenchdb8b6312014-09-22 05:13:55 -05001644 if (oparms->create_options & CREATE_OPTION_SPECIAL)
1645 file_attributes |= ATTR_SYSTEM;
Pavel Shilovskyca819832013-07-05 12:21:26 +04001646
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001647 req->ImpersonationLevel = IL_IMPERSONATION;
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001648 req->DesiredAccess = cpu_to_le32(oparms->desired_access);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001649 /* File attributes ignored on open (used in create though) */
1650 req->FileAttributes = cpu_to_le32(file_attributes);
1651 req->ShareAccess = FILE_SHARE_ALL_LE;
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001652 req->CreateDisposition = cpu_to_le32(oparms->disposition);
1653 req->CreateOptions = cpu_to_le32(oparms->create_options & CREATE_OPTIONS_MASK);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001654
1655 iov[0].iov_base = (char *)req;
1656 /* 4 for rfc1002 length field */
1657 iov[0].iov_len = get_rfc1002_length(req) + 4;
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04001658 /* -1 since last byte is buf[0] which is sent below (path) */
1659 iov[0].iov_len--;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001660
Aurelien Aptelf0712922017-02-22 14:47:17 +01001661 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req) - 4);
1662
1663 /* [MS-SMB2] 2.2.13 NameOffset:
1664 * If SMB2_FLAGS_DFS_OPERATIONS is set in the Flags field of
1665 * the SMB2 header, the file name includes a prefix that will
1666 * be processed during DFS name normalization as specified in
1667 * section 3.3.5.9. Otherwise, the file name is relative to
1668 * the share that is identified by the TreeId in the SMB2
1669 * header.
1670 */
1671 if (tcon->share_flags & SHI1005_FLAGS_DFS) {
1672 int name_len;
1673
1674 req->hdr.sync_hdr.Flags |= SMB2_FLAGS_DFS_OPERATIONS;
1675 rc = alloc_path_with_tree_prefix(&copy_path, &copy_size,
1676 &name_len,
1677 tcon->treeName, path);
1678 if (rc)
1679 return rc;
1680 req->NameLength = cpu_to_le16(name_len * 2);
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04001681 uni_path_len = copy_size;
1682 path = copy_path;
Aurelien Aptelf0712922017-02-22 14:47:17 +01001683 } else {
1684 uni_path_len = (2 * UniStrnlen((wchar_t *)path, PATH_MAX)) + 2;
1685 /* MUST set path len (NameLength) to 0 opening root of share */
1686 req->NameLength = cpu_to_le16(uni_path_len - 2);
1687 if (uni_path_len % 8 != 0) {
1688 copy_size = roundup(uni_path_len, 8);
1689 copy_path = kzalloc(copy_size, GFP_KERNEL);
1690 if (!copy_path)
1691 return -ENOMEM;
1692 memcpy((char *)copy_path, (const char *)path,
1693 uni_path_len);
1694 uni_path_len = copy_size;
1695 path = copy_path;
1696 }
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001697 }
1698
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04001699 iov[1].iov_len = uni_path_len;
1700 iov[1].iov_base = path;
1701 /* -1 since last byte is buf[0] which was counted in smb2_buf_len */
1702 inc_rfc1001_len(req, uni_path_len - 1);
1703
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001704 if (!server->oplocks)
1705 *oplock = SMB2_OPLOCK_LEVEL_NONE;
1706
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001707 if (!(server->capabilities & SMB2_GLOBAL_CAP_LEASING) ||
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001708 *oplock == SMB2_OPLOCK_LEVEL_NONE)
1709 req->RequestedOplockLevel = *oplock;
1710 else {
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001711 rc = add_lease_context(server, iov, &n_iov, oplock);
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001712 if (rc) {
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001713 cifs_small_buf_release(req);
1714 kfree(copy_path);
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001715 return rc;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001716 }
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001717 lc_buf = iov[n_iov-1].iov_base;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001718 }
1719
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001720 if (*oplock == SMB2_OPLOCK_LEVEL_BATCH) {
1721 /* need to set Next field of lease context if we request it */
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001722 if (server->capabilities & SMB2_GLOBAL_CAP_LEASING) {
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001723 struct create_context *ccontext =
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001724 (struct create_context *)iov[n_iov-1].iov_base;
Steve French1c469432013-07-10 12:50:57 -05001725 ccontext->Next =
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001726 cpu_to_le32(server->vals->create_lease_size);
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001727 }
Steve Frenchb56eae42015-11-03 09:26:27 -06001728
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001729 rc = add_durable_context(iov, &n_iov, oparms,
Steve Frenchb56eae42015-11-03 09:26:27 -06001730 tcon->use_persistent);
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001731 if (rc) {
1732 cifs_small_buf_release(req);
1733 kfree(copy_path);
Pavel Shilovsky663a96212014-05-24 16:42:02 +04001734 kfree(lc_buf);
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001735 return rc;
1736 }
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001737 dhc_buf = iov[n_iov-1].iov_base;
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001738 }
1739
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001740 rc = SendReceive2(xid, ses, iov, n_iov, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001741 cifs_small_buf_release(req);
1742 rsp = (struct smb2_create_rsp *)rsp_iov.iov_base;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001743
1744 if (rc != 0) {
1745 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
Pavel Shilovskyb42bf882013-08-14 19:25:21 +04001746 if (err_buf)
1747 *err_buf = kmemdup(rsp, get_rfc1002_length(rsp) + 4,
1748 GFP_KERNEL);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001749 goto creat_exit;
1750 }
1751
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001752 oparms->fid->persistent_fid = rsp->PersistentFileId;
1753 oparms->fid->volatile_fid = rsp->VolatileFileId;
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001754
1755 if (buf) {
1756 memcpy(buf, &rsp->CreationTime, 32);
1757 buf->AllocationSize = rsp->AllocationSize;
1758 buf->EndOfFile = rsp->EndofFile;
1759 buf->Attributes = rsp->FileAttributes;
1760 buf->NumberOfLinks = cpu_to_le32(1);
1761 buf->DeletePending = 0;
1762 }
Pavel Shilovsky2e44b282012-09-18 16:20:33 -07001763
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001764 if (rsp->OplockLevel == SMB2_OPLOCK_LEVEL_LEASE)
Pavel Shilovsky42873b02013-09-05 21:30:16 +04001765 *oplock = parse_lease_state(server, rsp, &oparms->fid->epoch);
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001766 else
1767 *oplock = rsp->OplockLevel;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001768creat_exit:
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001769 kfree(copy_path);
Pavel Shilovsky663a96212014-05-24 16:42:02 +04001770 kfree(lc_buf);
1771 kfree(dhc_buf);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001772 free_rsp_buf(resp_buftype, rsp);
1773 return rc;
1774}
1775
Steve French4a72daf2013-06-25 00:20:49 -05001776/*
1777 * SMB2 IOCTL is used for both IOCTLs and FSCTLs
1778 */
1779int
1780SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
Aurelien Aptel51146622017-02-28 15:08:41 +01001781 u64 volatile_fid, u32 opcode, bool is_fsctl, bool use_ipc,
1782 char *in_data, u32 indatalen,
1783 char **out_data, u32 *plen /* returned data len */)
Steve French4a72daf2013-06-25 00:20:49 -05001784{
1785 struct smb2_ioctl_req *req;
1786 struct smb2_ioctl_rsp *rsp;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07001787 struct smb2_sync_hdr *shdr;
Steve French4a72daf2013-06-25 00:20:49 -05001788 struct TCP_Server_Info *server;
Steve French8e353102015-03-26 19:47:02 -05001789 struct cifs_ses *ses;
Steve French4a72daf2013-06-25 00:20:49 -05001790 struct kvec iov[2];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001791 struct kvec rsp_iov;
Steve French4a72daf2013-06-25 00:20:49 -05001792 int resp_buftype;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001793 int n_iov;
Steve French4a72daf2013-06-25 00:20:49 -05001794 int rc = 0;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001795 int flags = 0;
Steve French4a72daf2013-06-25 00:20:49 -05001796
1797 cifs_dbg(FYI, "SMB2 IOCTL\n");
1798
Steve French3d1a3742014-08-11 21:05:25 -05001799 if (out_data != NULL)
1800 *out_data = NULL;
1801
Steve French4a72daf2013-06-25 00:20:49 -05001802 /* zero out returned data len, in case of error */
1803 if (plen)
1804 *plen = 0;
1805
Steve French8e353102015-03-26 19:47:02 -05001806 if (tcon)
1807 ses = tcon->ses;
1808 else
1809 return -EIO;
1810
Steve French4a72daf2013-06-25 00:20:49 -05001811 if (ses && (ses->server))
1812 server = ses->server;
1813 else
1814 return -EIO;
1815
1816 rc = small_smb2_init(SMB2_IOCTL, tcon, (void **) &req);
1817 if (rc)
1818 return rc;
1819
Aurelien Aptel51146622017-02-28 15:08:41 +01001820 if (use_ipc) {
1821 if (ses->ipc_tid == 0) {
1822 cifs_small_buf_release(req);
1823 return -ENOTCONN;
1824 }
1825
1826 cifs_dbg(FYI, "replacing tid 0x%x with IPC tid 0x%x\n",
1827 req->hdr.sync_hdr.TreeId, ses->ipc_tid);
1828 req->hdr.sync_hdr.TreeId = ses->ipc_tid;
1829 }
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001830 if (encryption_required(tcon))
1831 flags |= CIFS_TRANSFORM_REQ;
1832
Steve French4a72daf2013-06-25 00:20:49 -05001833 req->CtlCode = cpu_to_le32(opcode);
1834 req->PersistentFileId = persistent_fid;
1835 req->VolatileFileId = volatile_fid;
1836
1837 if (indatalen) {
1838 req->InputCount = cpu_to_le32(indatalen);
1839 /* do not set InputOffset if no input data */
1840 req->InputOffset =
1841 cpu_to_le32(offsetof(struct smb2_ioctl_req, Buffer) - 4);
1842 iov[1].iov_base = in_data;
1843 iov[1].iov_len = indatalen;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001844 n_iov = 2;
Steve French4a72daf2013-06-25 00:20:49 -05001845 } else
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001846 n_iov = 1;
Steve French4a72daf2013-06-25 00:20:49 -05001847
1848 req->OutputOffset = 0;
1849 req->OutputCount = 0; /* MBZ */
1850
1851 /*
1852 * Could increase MaxOutputResponse, but that would require more
1853 * than one credit. Windows typically sets this smaller, but for some
1854 * ioctls it may be useful to allow server to send more. No point
1855 * limiting what the server can send as long as fits in one credit
1856 */
1857 req->MaxOutputResponse = cpu_to_le32(0xFF00); /* < 64K uses 1 credit */
1858
1859 if (is_fsctl)
1860 req->Flags = cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL);
1861 else
1862 req->Flags = 0;
1863
1864 iov[0].iov_base = (char *)req;
Steve French4a72daf2013-06-25 00:20:49 -05001865
Steve French7ff8d452013-10-14 00:44:19 -05001866 /*
1867 * If no input data, the size of ioctl struct in
1868 * protocol spec still includes a 1 byte data buffer,
1869 * but if input data passed to ioctl, we do not
1870 * want to double count this, so we do not send
1871 * the dummy one byte of data in iovec[0] if sending
1872 * input data (in iovec[1]). We also must add 4 bytes
1873 * in first iovec to allow for rfc1002 length field.
1874 */
1875
1876 if (indatalen) {
1877 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1878 inc_rfc1001_len(req, indatalen - 1);
1879 } else
1880 iov[0].iov_len = get_rfc1002_length(req) + 4;
1881
Steve French4a72daf2013-06-25 00:20:49 -05001882
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001883 rc = SendReceive2(xid, ses, iov, n_iov, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001884 cifs_small_buf_release(req);
1885 rsp = (struct smb2_ioctl_rsp *)rsp_iov.iov_base;
Steve French4a72daf2013-06-25 00:20:49 -05001886
Steve French9bf0c9c2013-11-16 18:05:28 -06001887 if ((rc != 0) && (rc != -EINVAL)) {
Steve French8e353102015-03-26 19:47:02 -05001888 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
Steve French4a72daf2013-06-25 00:20:49 -05001889 goto ioctl_exit;
Steve French9bf0c9c2013-11-16 18:05:28 -06001890 } else if (rc == -EINVAL) {
1891 if ((opcode != FSCTL_SRV_COPYCHUNK_WRITE) &&
1892 (opcode != FSCTL_SRV_COPYCHUNK)) {
Steve French8e353102015-03-26 19:47:02 -05001893 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
Steve French9bf0c9c2013-11-16 18:05:28 -06001894 goto ioctl_exit;
1895 }
Steve French4a72daf2013-06-25 00:20:49 -05001896 }
1897
1898 /* check if caller wants to look at return data or just return rc */
1899 if ((plen == NULL) || (out_data == NULL))
1900 goto ioctl_exit;
1901
1902 *plen = le32_to_cpu(rsp->OutputCount);
1903
1904 /* We check for obvious errors in the output buffer length and offset */
1905 if (*plen == 0)
1906 goto ioctl_exit; /* server returned no data */
1907 else if (*plen > 0xFF00) {
1908 cifs_dbg(VFS, "srv returned invalid ioctl length: %d\n", *plen);
1909 *plen = 0;
1910 rc = -EIO;
1911 goto ioctl_exit;
1912 }
1913
1914 if (get_rfc1002_length(rsp) < le32_to_cpu(rsp->OutputOffset) + *plen) {
1915 cifs_dbg(VFS, "Malformed ioctl resp: len %d offset %d\n", *plen,
1916 le32_to_cpu(rsp->OutputOffset));
1917 *plen = 0;
1918 rc = -EIO;
1919 goto ioctl_exit;
1920 }
1921
1922 *out_data = kmalloc(*plen, GFP_KERNEL);
1923 if (*out_data == NULL) {
1924 rc = -ENOMEM;
1925 goto ioctl_exit;
1926 }
1927
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07001928 shdr = get_sync_hdr(rsp);
1929 memcpy(*out_data, (char *)shdr + le32_to_cpu(rsp->OutputOffset), *plen);
Steve French4a72daf2013-06-25 00:20:49 -05001930ioctl_exit:
1931 free_rsp_buf(resp_buftype, rsp);
1932 return rc;
1933}
1934
Steve French64a5cfa2013-10-14 15:31:32 -05001935/*
1936 * Individual callers to ioctl worker function follow
1937 */
1938
1939int
1940SMB2_set_compression(const unsigned int xid, struct cifs_tcon *tcon,
1941 u64 persistent_fid, u64 volatile_fid)
1942{
1943 int rc;
Steve French64a5cfa2013-10-14 15:31:32 -05001944 struct compress_ioctl fsctl_input;
1945 char *ret_data = NULL;
1946
1947 fsctl_input.CompressionState =
Fabian Frederickbc09d142014-12-10 15:41:15 -08001948 cpu_to_le16(COMPRESSION_FORMAT_DEFAULT);
Steve French64a5cfa2013-10-14 15:31:32 -05001949
1950 rc = SMB2_ioctl(xid, tcon, persistent_fid, volatile_fid,
1951 FSCTL_SET_COMPRESSION, true /* is_fsctl */,
Aurelien Aptel51146622017-02-28 15:08:41 +01001952 false /* use_ipc */,
Steve French64a5cfa2013-10-14 15:31:32 -05001953 (char *)&fsctl_input /* data input */,
1954 2 /* in data len */, &ret_data /* out data */, NULL);
1955
1956 cifs_dbg(FYI, "set compression rc %d\n", rc);
Steve French64a5cfa2013-10-14 15:31:32 -05001957
1958 return rc;
1959}
1960
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001961int
1962SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
1963 u64 persistent_fid, u64 volatile_fid)
1964{
1965 struct smb2_close_req *req;
1966 struct smb2_close_rsp *rsp;
1967 struct TCP_Server_Info *server;
1968 struct cifs_ses *ses = tcon->ses;
1969 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001970 struct kvec rsp_iov;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001971 int resp_buftype;
1972 int rc = 0;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001973 int flags = 0;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001974
Joe Perchesf96637b2013-05-04 22:12:25 -05001975 cifs_dbg(FYI, "Close\n");
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001976
1977 if (ses && (ses->server))
1978 server = ses->server;
1979 else
1980 return -EIO;
1981
1982 rc = small_smb2_init(SMB2_CLOSE, tcon, (void **) &req);
1983 if (rc)
1984 return rc;
1985
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001986 if (encryption_required(tcon))
1987 flags |= CIFS_TRANSFORM_REQ;
1988
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001989 req->PersistentFileId = persistent_fid;
1990 req->VolatileFileId = volatile_fid;
1991
1992 iov[0].iov_base = (char *)req;
1993 /* 4 for rfc1002 length field */
1994 iov[0].iov_len = get_rfc1002_length(req) + 4;
1995
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001996 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001997 cifs_small_buf_release(req);
1998 rsp = (struct smb2_close_rsp *)rsp_iov.iov_base;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001999
2000 if (rc != 0) {
Namjae Jeond4a029d2014-08-20 19:39:59 +09002001 cifs_stats_fail_inc(tcon, SMB2_CLOSE_HE);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002002 goto close_exit;
2003 }
2004
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002005 /* BB FIXME - decode close response, update inode for caching */
2006
2007close_exit:
2008 free_rsp_buf(resp_buftype, rsp);
2009 return rc;
2010}
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002011
2012static int
2013validate_buf(unsigned int offset, unsigned int buffer_length,
2014 struct smb2_hdr *hdr, unsigned int min_buf_size)
2015
2016{
2017 unsigned int smb_len = be32_to_cpu(hdr->smb2_buf_length);
2018 char *end_of_smb = smb_len + 4 /* RFC1001 length field */ + (char *)hdr;
2019 char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
2020 char *end_of_buf = begin_of_buf + buffer_length;
2021
2022
2023 if (buffer_length < min_buf_size) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002024 cifs_dbg(VFS, "buffer length %d smaller than minimum size %d\n",
2025 buffer_length, min_buf_size);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002026 return -EINVAL;
2027 }
2028
2029 /* check if beyond RFC1001 maximum length */
2030 if ((smb_len > 0x7FFFFF) || (buffer_length > 0x7FFFFF)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002031 cifs_dbg(VFS, "buffer length %d or smb length %d too large\n",
2032 buffer_length, smb_len);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002033 return -EINVAL;
2034 }
2035
2036 if ((begin_of_buf > end_of_smb) || (end_of_buf > end_of_smb)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002037 cifs_dbg(VFS, "illegal server response, bad offset to data\n");
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002038 return -EINVAL;
2039 }
2040
2041 return 0;
2042}
2043
2044/*
2045 * If SMB buffer fields are valid, copy into temporary buffer to hold result.
2046 * Caller must free buffer.
2047 */
2048static int
2049validate_and_copy_buf(unsigned int offset, unsigned int buffer_length,
2050 struct smb2_hdr *hdr, unsigned int minbufsize,
2051 char *data)
2052
2053{
2054 char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
2055 int rc;
2056
2057 if (!data)
2058 return -EINVAL;
2059
2060 rc = validate_buf(offset, buffer_length, hdr, minbufsize);
2061 if (rc)
2062 return rc;
2063
2064 memcpy(data, begin_of_buf, buffer_length);
2065
2066 return 0;
2067}
2068
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07002069static int
2070query_info(const unsigned int xid, struct cifs_tcon *tcon,
2071 u64 persistent_fid, u64 volatile_fid, u8 info_class,
2072 size_t output_len, size_t min_len, void *data)
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002073{
2074 struct smb2_query_info_req *req;
2075 struct smb2_query_info_rsp *rsp = NULL;
2076 struct kvec iov[2];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002077 struct kvec rsp_iov;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002078 int rc = 0;
2079 int resp_buftype;
2080 struct TCP_Server_Info *server;
2081 struct cifs_ses *ses = tcon->ses;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002082 int flags = 0;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002083
Joe Perchesf96637b2013-05-04 22:12:25 -05002084 cifs_dbg(FYI, "Query Info\n");
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002085
2086 if (ses && (ses->server))
2087 server = ses->server;
2088 else
2089 return -EIO;
2090
2091 rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
2092 if (rc)
2093 return rc;
2094
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002095 if (encryption_required(tcon))
2096 flags |= CIFS_TRANSFORM_REQ;
2097
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002098 req->InfoType = SMB2_O_INFO_FILE;
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07002099 req->FileInfoClass = info_class;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002100 req->PersistentFileId = persistent_fid;
2101 req->VolatileFileId = volatile_fid;
2102 /* 4 for rfc1002 length field and 1 for Buffer */
2103 req->InputBufferOffset =
2104 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07002105 req->OutputBufferLength = cpu_to_le32(output_len);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002106
2107 iov[0].iov_base = (char *)req;
2108 /* 4 for rfc1002 length field */
2109 iov[0].iov_len = get_rfc1002_length(req) + 4;
2110
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002111 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002112 cifs_small_buf_release(req);
2113 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002114
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002115 if (rc) {
2116 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
2117 goto qinf_exit;
2118 }
2119
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002120 rc = validate_and_copy_buf(le16_to_cpu(rsp->OutputBufferOffset),
2121 le32_to_cpu(rsp->OutputBufferLength),
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07002122 &rsp->hdr, min_len, data);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002123
2124qinf_exit:
2125 free_rsp_buf(resp_buftype, rsp);
2126 return rc;
2127}
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002128
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07002129int
2130SMB2_query_info(const unsigned int xid, struct cifs_tcon *tcon,
2131 u64 persistent_fid, u64 volatile_fid,
2132 struct smb2_file_all_info *data)
2133{
2134 return query_info(xid, tcon, persistent_fid, volatile_fid,
2135 FILE_ALL_INFORMATION,
Pavel Shilovsky1bbe4992014-08-22 13:32:11 +04002136 sizeof(struct smb2_file_all_info) + PATH_MAX * 2,
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07002137 sizeof(struct smb2_file_all_info), data);
2138}
2139
2140int
2141SMB2_get_srv_num(const unsigned int xid, struct cifs_tcon *tcon,
2142 u64 persistent_fid, u64 volatile_fid, __le64 *uniqueid)
2143{
2144 return query_info(xid, tcon, persistent_fid, volatile_fid,
2145 FILE_INTERNAL_INFORMATION,
2146 sizeof(struct smb2_file_internal_info),
2147 sizeof(struct smb2_file_internal_info), uniqueid);
2148}
2149
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002150/*
2151 * This is a no-op for now. We're not really interested in the reply, but
2152 * rather in the fact that the server sent one and that server->lstrp
2153 * gets updated.
2154 *
2155 * FIXME: maybe we should consider checking that the reply matches request?
2156 */
2157static void
2158smb2_echo_callback(struct mid_q_entry *mid)
2159{
2160 struct TCP_Server_Info *server = mid->callback_data;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002161 struct smb2_echo_rsp *rsp = (struct smb2_echo_rsp *)mid->resp_buf;
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002162 unsigned int credits_received = 1;
2163
2164 if (mid->mid_state == MID_RESPONSE_RECEIVED)
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002165 credits_received = le16_to_cpu(rsp->hdr.sync_hdr.CreditRequest);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002166
Christopher Oo5fb4e282015-06-25 16:10:48 -07002167 mutex_lock(&server->srv_mutex);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002168 DeleteMidQEntry(mid);
Christopher Oo5fb4e282015-06-25 16:10:48 -07002169 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002170 add_credits(server, credits_received, CIFS_ECHO_OP);
2171}
2172
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002173void smb2_reconnect_server(struct work_struct *work)
2174{
2175 struct TCP_Server_Info *server = container_of(work,
2176 struct TCP_Server_Info, reconnect.work);
2177 struct cifs_ses *ses;
2178 struct cifs_tcon *tcon, *tcon2;
2179 struct list_head tmp_list;
2180 int tcon_exist = false;
Germano Percossi18ea4312017-04-07 12:29:36 +01002181 int rc;
2182 int resched = false;
2183
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002184
2185 /* Prevent simultaneous reconnects that can corrupt tcon->rlist list */
2186 mutex_lock(&server->reconnect_mutex);
2187
2188 INIT_LIST_HEAD(&tmp_list);
2189 cifs_dbg(FYI, "Need negotiate, reconnecting tcons\n");
2190
2191 spin_lock(&cifs_tcp_ses_lock);
2192 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
2193 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
Pavel Shilovsky96a988f2016-11-29 11:31:23 -08002194 if (tcon->need_reconnect || tcon->need_reopen_files) {
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002195 tcon->tc_count++;
2196 list_add_tail(&tcon->rlist, &tmp_list);
2197 tcon_exist = true;
2198 }
2199 }
2200 }
2201 /*
2202 * Get the reference to server struct to be sure that the last call of
2203 * cifs_put_tcon() in the loop below won't release the server pointer.
2204 */
2205 if (tcon_exist)
2206 server->srv_count++;
2207
2208 spin_unlock(&cifs_tcp_ses_lock);
2209
2210 list_for_each_entry_safe(tcon, tcon2, &tmp_list, rlist) {
Germano Percossi18ea4312017-04-07 12:29:36 +01002211 rc = smb2_reconnect(SMB2_INTERNAL_CMD, tcon);
2212 if (!rc)
Pavel Shilovsky96a988f2016-11-29 11:31:23 -08002213 cifs_reopen_persistent_handles(tcon);
Germano Percossi18ea4312017-04-07 12:29:36 +01002214 else
2215 resched = true;
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002216 list_del_init(&tcon->rlist);
2217 cifs_put_tcon(tcon);
2218 }
2219
2220 cifs_dbg(FYI, "Reconnecting tcons finished\n");
Germano Percossi18ea4312017-04-07 12:29:36 +01002221 if (resched)
2222 queue_delayed_work(cifsiod_wq, &server->reconnect, 2 * HZ);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002223 mutex_unlock(&server->reconnect_mutex);
2224
2225 /* now we can safely release srv struct */
2226 if (tcon_exist)
2227 cifs_put_tcp_session(server, 1);
2228}
2229
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002230int
2231SMB2_echo(struct TCP_Server_Info *server)
2232{
2233 struct smb2_echo_req *req;
2234 int rc = 0;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002235 struct kvec iov[2];
2236 struct smb_rqst rqst = { .rq_iov = iov,
2237 .rq_nvec = 2 };
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002238
Joe Perchesf96637b2013-05-04 22:12:25 -05002239 cifs_dbg(FYI, "In echo request\n");
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002240
Steve French4fcd1812016-06-22 20:12:05 -05002241 if (server->tcpStatus == CifsNeedNegotiate) {
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002242 /* No need to send echo on newly established connections */
2243 queue_delayed_work(cifsiod_wq, &server->reconnect, 0);
2244 return rc;
Steve French4fcd1812016-06-22 20:12:05 -05002245 }
2246
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002247 rc = small_smb2_init(SMB2_ECHO, NULL, (void **)&req);
2248 if (rc)
2249 return rc;
2250
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002251 req->hdr.sync_hdr.CreditRequest = cpu_to_le16(1);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002252
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002253 /* 4 for rfc1002 length field */
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002254 iov[0].iov_len = 4;
2255 iov[0].iov_base = (char *)req;
2256 iov[1].iov_len = get_rfc1002_length(req);
2257 iov[1].iov_base = (char *)req + 4;
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002258
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -08002259 rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, NULL,
2260 server, CIFS_ECHO_OP);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002261 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05002262 cifs_dbg(FYI, "Echo request failed: %d\n", rc);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002263
2264 cifs_small_buf_release(req);
2265 return rc;
2266}
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07002267
2268int
2269SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
2270 u64 volatile_fid)
2271{
2272 struct smb2_flush_req *req;
2273 struct TCP_Server_Info *server;
2274 struct cifs_ses *ses = tcon->ses;
2275 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002276 struct kvec rsp_iov;
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07002277 int resp_buftype;
2278 int rc = 0;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002279 int flags = 0;
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07002280
Joe Perchesf96637b2013-05-04 22:12:25 -05002281 cifs_dbg(FYI, "Flush\n");
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07002282
2283 if (ses && (ses->server))
2284 server = ses->server;
2285 else
2286 return -EIO;
2287
2288 rc = small_smb2_init(SMB2_FLUSH, tcon, (void **) &req);
2289 if (rc)
2290 return rc;
2291
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002292 if (encryption_required(tcon))
2293 flags |= CIFS_TRANSFORM_REQ;
2294
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07002295 req->PersistentFileId = persistent_fid;
2296 req->VolatileFileId = volatile_fid;
2297
2298 iov[0].iov_base = (char *)req;
2299 /* 4 for rfc1002 length field */
2300 iov[0].iov_len = get_rfc1002_length(req) + 4;
2301
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002302 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002303 cifs_small_buf_release(req);
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07002304
Steve Frenchdfebe402015-03-27 01:00:06 -05002305 if (rc != 0)
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07002306 cifs_stats_fail_inc(tcon, SMB2_FLUSH_HE);
2307
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002308 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07002309 return rc;
2310}
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002311
2312/*
2313 * To form a chain of read requests, any read requests after the first should
2314 * have the end_of_chain boolean set to true.
2315 */
2316static int
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002317smb2_new_read_req(void **buf, unsigned int *total_len,
2318 struct cifs_io_parms *io_parms, unsigned int remaining_bytes,
2319 int request_type)
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002320{
2321 int rc = -EACCES;
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08002322 struct smb2_read_plain_req *req = NULL;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002323 struct smb2_sync_hdr *shdr;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002324
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08002325 rc = smb2_plain_req_init(SMB2_READ, io_parms->tcon, (void **) &req,
2326 total_len);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002327 if (rc)
2328 return rc;
2329 if (io_parms->tcon->ses->server == NULL)
2330 return -ECONNABORTED;
2331
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08002332 shdr = &req->sync_hdr;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002333 shdr->ProcessId = cpu_to_le32(io_parms->pid);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002334
2335 req->PersistentFileId = io_parms->persistent_fid;
2336 req->VolatileFileId = io_parms->volatile_fid;
2337 req->ReadChannelInfoOffset = 0; /* reserved */
2338 req->ReadChannelInfoLength = 0; /* reserved */
2339 req->Channel = 0; /* reserved */
2340 req->MinimumCount = 0;
2341 req->Length = cpu_to_le32(io_parms->length);
2342 req->Offset = cpu_to_le64(io_parms->offset);
2343
2344 if (request_type & CHAINED_REQUEST) {
2345 if (!(request_type & END_OF_CHAIN)) {
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08002346 /* next 8-byte aligned request */
2347 *total_len = DIV_ROUND_UP(*total_len, 8) * 8;
2348 shdr->NextCommand = cpu_to_le32(*total_len);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002349 } else /* END_OF_CHAIN */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002350 shdr->NextCommand = 0;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002351 if (request_type & RELATED_REQUEST) {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002352 shdr->Flags |= SMB2_FLAGS_RELATED_OPERATIONS;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002353 /*
2354 * Related requests use info from previous read request
2355 * in chain.
2356 */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002357 shdr->SessionId = 0xFFFFFFFF;
2358 shdr->TreeId = 0xFFFFFFFF;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002359 req->PersistentFileId = 0xFFFFFFFF;
2360 req->VolatileFileId = 0xFFFFFFFF;
2361 }
2362 }
2363 if (remaining_bytes > io_parms->length)
2364 req->RemainingBytes = cpu_to_le32(remaining_bytes);
2365 else
2366 req->RemainingBytes = 0;
2367
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002368 *buf = req;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002369 return rc;
2370}
2371
2372static void
2373smb2_readv_callback(struct mid_q_entry *mid)
2374{
2375 struct cifs_readdata *rdata = mid->callback_data;
2376 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
2377 struct TCP_Server_Info *server = tcon->ses->server;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002378 struct smb2_sync_hdr *shdr =
2379 (struct smb2_sync_hdr *)rdata->iov[1].iov_base;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002380 unsigned int credits_received = 1;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002381 struct smb_rqst rqst = { .rq_iov = rdata->iov,
2382 .rq_nvec = 2,
Jeff Layton8321fec2012-09-19 06:22:32 -07002383 .rq_pages = rdata->pages,
2384 .rq_npages = rdata->nr_pages,
2385 .rq_pagesz = rdata->pagesz,
2386 .rq_tailsz = rdata->tailsz };
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002387
Joe Perchesf96637b2013-05-04 22:12:25 -05002388 cifs_dbg(FYI, "%s: mid=%llu state=%d result=%d bytes=%u\n",
2389 __func__, mid->mid, mid->mid_state, rdata->result,
2390 rdata->bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002391
2392 switch (mid->mid_state) {
2393 case MID_RESPONSE_RECEIVED:
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002394 credits_received = le16_to_cpu(shdr->CreditRequest);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002395 /* result already set, check signature */
Pavel Shilovsky4326ed22016-11-17 15:24:46 -08002396 if (server->sign && !mid->decrypted) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07002397 int rc;
2398
Jeff Layton0b688cf2012-09-18 16:20:34 -07002399 rc = smb2_verify_signature(&rqst, server);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07002400 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05002401 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
2402 rc);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07002403 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002404 /* FIXME: should this be counted toward the initiating task? */
Pavel Shilovsky34a54d62014-07-10 10:03:29 +04002405 task_io_account_read(rdata->got_bytes);
2406 cifs_stats_bytes_read(tcon, rdata->got_bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002407 break;
2408 case MID_REQUEST_SUBMITTED:
2409 case MID_RETRY_NEEDED:
2410 rdata->result = -EAGAIN;
Pavel Shilovskyd913ed12014-07-10 11:31:48 +04002411 if (server->sign && rdata->got_bytes)
2412 /* reset bytes number since we can not check a sign */
2413 rdata->got_bytes = 0;
2414 /* FIXME: should this be counted toward the initiating task? */
2415 task_io_account_read(rdata->got_bytes);
2416 cifs_stats_bytes_read(tcon, rdata->got_bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002417 break;
2418 default:
2419 if (rdata->result != -ENODATA)
2420 rdata->result = -EIO;
2421 }
2422
2423 if (rdata->result)
2424 cifs_stats_fail_inc(tcon, SMB2_READ_HE);
2425
2426 queue_work(cifsiod_wq, &rdata->work);
Christopher Oo5fb4e282015-06-25 16:10:48 -07002427 mutex_lock(&server->srv_mutex);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002428 DeleteMidQEntry(mid);
Christopher Oo5fb4e282015-06-25 16:10:48 -07002429 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002430 add_credits(server, credits_received, 0);
2431}
2432
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002433/* smb2_async_readv - send an async read, and set up mid to handle result */
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002434int
2435smb2_async_readv(struct cifs_readdata *rdata)
2436{
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002437 int rc, flags = 0;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002438 char *buf;
2439 struct smb2_sync_hdr *shdr;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002440 struct cifs_io_parms io_parms;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002441 struct smb_rqst rqst = { .rq_iov = rdata->iov,
2442 .rq_nvec = 2 };
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002443 struct TCP_Server_Info *server;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002444 unsigned int total_len;
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08002445 __be32 req_len;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002446
Joe Perchesf96637b2013-05-04 22:12:25 -05002447 cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n",
2448 __func__, rdata->offset, rdata->bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002449
2450 io_parms.tcon = tlink_tcon(rdata->cfile->tlink);
2451 io_parms.offset = rdata->offset;
2452 io_parms.length = rdata->bytes;
2453 io_parms.persistent_fid = rdata->cfile->fid.persistent_fid;
2454 io_parms.volatile_fid = rdata->cfile->fid.volatile_fid;
2455 io_parms.pid = rdata->pid;
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002456
2457 server = io_parms.tcon->ses->server;
2458
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002459 rc = smb2_new_read_req((void **) &buf, &total_len, &io_parms, 0, 0);
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002460 if (rc) {
2461 if (rc == -EAGAIN && rdata->credits) {
2462 /* credits was reset by reconnect */
2463 rdata->credits = 0;
2464 /* reduce in_flight value since we won't send the req */
2465 spin_lock(&server->req_lock);
2466 server->in_flight--;
2467 spin_unlock(&server->req_lock);
2468 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002469 return rc;
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002470 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002471
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002472 if (encryption_required(io_parms.tcon))
2473 flags |= CIFS_TRANSFORM_REQ;
2474
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08002475 req_len = cpu_to_be32(total_len);
2476
2477 rdata->iov[0].iov_base = &req_len;
2478 rdata->iov[0].iov_len = sizeof(__be32);
2479 rdata->iov[1].iov_base = buf;
2480 rdata->iov[1].iov_len = total_len;
2481
2482 shdr = (struct smb2_sync_hdr *)buf;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002483
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002484 if (rdata->credits) {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002485 shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(rdata->bytes,
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002486 SMB2_MAX_BUFFER_SIZE));
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002487 shdr->CreditRequest = shdr->CreditCharge;
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002488 spin_lock(&server->req_lock);
2489 server->credits += rdata->credits -
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002490 le16_to_cpu(shdr->CreditCharge);
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002491 spin_unlock(&server->req_lock);
2492 wake_up(&server->request_q);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002493 flags |= CIFS_HAS_CREDITS;
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002494 }
2495
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002496 kref_get(&rdata->refcount);
Jeff Laytonfec344e2012-09-18 16:20:35 -07002497 rc = cifs_call_async(io_parms.tcon->ses->server, &rqst,
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002498 cifs_readv_receive, smb2_readv_callback,
Pavel Shilovsky4326ed22016-11-17 15:24:46 -08002499 smb3_handle_read_data, rdata, flags);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002500 if (rc) {
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002501 kref_put(&rdata->refcount, cifs_readdata_release);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002502 cifs_stats_fail_inc(io_parms.tcon, SMB2_READ_HE);
2503 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002504
2505 cifs_small_buf_release(buf);
2506 return rc;
2507}
Pavel Shilovsky33319142012-09-18 16:20:29 -07002508
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002509int
2510SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms,
2511 unsigned int *nbytes, char **buf, int *buf_type)
2512{
2513 int resp_buftype, rc = -EACCES;
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08002514 struct smb2_read_plain_req *req = NULL;
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002515 struct smb2_read_rsp *rsp = NULL;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002516 struct smb2_sync_hdr *shdr;
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08002517 struct kvec iov[2];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002518 struct kvec rsp_iov;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002519 unsigned int total_len;
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08002520 __be32 req_len;
2521 struct smb_rqst rqst = { .rq_iov = iov,
2522 .rq_nvec = 2 };
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002523 int flags = CIFS_LOG_ERROR;
2524 struct cifs_ses *ses = io_parms->tcon->ses;
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002525
2526 *nbytes = 0;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002527 rc = smb2_new_read_req((void **)&req, &total_len, io_parms, 0, 0);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002528 if (rc)
2529 return rc;
2530
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002531 if (encryption_required(io_parms->tcon))
2532 flags |= CIFS_TRANSFORM_REQ;
2533
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08002534 req_len = cpu_to_be32(total_len);
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002535
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08002536 iov[0].iov_base = &req_len;
2537 iov[0].iov_len = sizeof(__be32);
2538 iov[1].iov_base = req;
2539 iov[1].iov_len = total_len;
2540
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002541 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08002542 cifs_small_buf_release(req);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002543
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002544 rsp = (struct smb2_read_rsp *)rsp_iov.iov_base;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002545 shdr = get_sync_hdr(rsp);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002546
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002547 if (shdr->Status == STATUS_END_OF_FILE) {
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002548 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002549 return 0;
2550 }
2551
2552 if (rc) {
2553 cifs_stats_fail_inc(io_parms->tcon, SMB2_READ_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05002554 cifs_dbg(VFS, "Send error in read = %d\n", rc);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002555 } else {
2556 *nbytes = le32_to_cpu(rsp->DataLength);
2557 if ((*nbytes > CIFS_MAX_MSGSIZE) ||
2558 (*nbytes > io_parms->length)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002559 cifs_dbg(FYI, "bad length %d for count %d\n",
2560 *nbytes, io_parms->length);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002561 rc = -EIO;
2562 *nbytes = 0;
2563 }
2564 }
2565
2566 if (*buf) {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002567 memcpy(*buf, (char *)shdr + rsp->DataOffset, *nbytes);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002568 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002569 } else if (resp_buftype != CIFS_NO_BUFFER) {
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002570 *buf = rsp_iov.iov_base;
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002571 if (resp_buftype == CIFS_SMALL_BUFFER)
2572 *buf_type = CIFS_SMALL_BUFFER;
2573 else if (resp_buftype == CIFS_LARGE_BUFFER)
2574 *buf_type = CIFS_LARGE_BUFFER;
2575 }
2576 return rc;
2577}
2578
Pavel Shilovsky33319142012-09-18 16:20:29 -07002579/*
2580 * Check the mid_state and signature on received buffer (if any), and queue the
2581 * workqueue completion task.
2582 */
2583static void
2584smb2_writev_callback(struct mid_q_entry *mid)
2585{
2586 struct cifs_writedata *wdata = mid->callback_data;
2587 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
Christopher Oo5fb4e282015-06-25 16:10:48 -07002588 struct TCP_Server_Info *server = tcon->ses->server;
Pavel Shilovsky33319142012-09-18 16:20:29 -07002589 unsigned int written;
2590 struct smb2_write_rsp *rsp = (struct smb2_write_rsp *)mid->resp_buf;
2591 unsigned int credits_received = 1;
2592
2593 switch (mid->mid_state) {
2594 case MID_RESPONSE_RECEIVED:
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002595 credits_received = le16_to_cpu(rsp->hdr.sync_hdr.CreditRequest);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002596 wdata->result = smb2_check_receive(mid, tcon->ses->server, 0);
2597 if (wdata->result != 0)
2598 break;
2599
2600 written = le32_to_cpu(rsp->DataLength);
2601 /*
2602 * Mask off high 16 bits when bytes written as returned
2603 * by the server is greater than bytes requested by the
2604 * client. OS/2 servers are known to set incorrect
2605 * CountHigh values.
2606 */
2607 if (written > wdata->bytes)
2608 written &= 0xFFFF;
2609
2610 if (written < wdata->bytes)
2611 wdata->result = -ENOSPC;
2612 else
2613 wdata->bytes = written;
2614 break;
2615 case MID_REQUEST_SUBMITTED:
2616 case MID_RETRY_NEEDED:
2617 wdata->result = -EAGAIN;
2618 break;
2619 default:
2620 wdata->result = -EIO;
2621 break;
2622 }
2623
2624 if (wdata->result)
2625 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
2626
2627 queue_work(cifsiod_wq, &wdata->work);
Christopher Oo5fb4e282015-06-25 16:10:48 -07002628 mutex_lock(&server->srv_mutex);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002629 DeleteMidQEntry(mid);
Christopher Oo5fb4e282015-06-25 16:10:48 -07002630 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002631 add_credits(tcon->ses->server, credits_received, 0);
2632}
2633
2634/* smb2_async_writev - send an async write, and set up mid to handle result */
2635int
Steve French4a5c80d2014-02-07 20:45:12 -06002636smb2_async_writev(struct cifs_writedata *wdata,
2637 void (*release)(struct kref *kref))
Pavel Shilovsky33319142012-09-18 16:20:29 -07002638{
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002639 int rc = -EACCES, flags = 0;
Pavel Shilovsky33319142012-09-18 16:20:29 -07002640 struct smb2_write_req *req = NULL;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002641 struct smb2_sync_hdr *shdr;
Pavel Shilovsky33319142012-09-18 16:20:29 -07002642 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002643 struct TCP_Server_Info *server = tcon->ses->server;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002644 struct kvec iov[2];
2645 struct smb_rqst rqst = { };
Pavel Shilovsky33319142012-09-18 16:20:29 -07002646
2647 rc = small_smb2_init(SMB2_WRITE, tcon, (void **) &req);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002648 if (rc) {
2649 if (rc == -EAGAIN && wdata->credits) {
2650 /* credits was reset by reconnect */
2651 wdata->credits = 0;
2652 /* reduce in_flight value since we won't send the req */
2653 spin_lock(&server->req_lock);
2654 server->in_flight--;
2655 spin_unlock(&server->req_lock);
2656 }
Pavel Shilovsky33319142012-09-18 16:20:29 -07002657 goto async_writev_out;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002658 }
Pavel Shilovsky33319142012-09-18 16:20:29 -07002659
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002660 if (encryption_required(tcon))
2661 flags |= CIFS_TRANSFORM_REQ;
2662
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002663 shdr = get_sync_hdr(req);
2664 shdr->ProcessId = cpu_to_le32(wdata->cfile->pid);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002665
2666 req->PersistentFileId = wdata->cfile->fid.persistent_fid;
2667 req->VolatileFileId = wdata->cfile->fid.volatile_fid;
2668 req->WriteChannelInfoOffset = 0;
2669 req->WriteChannelInfoLength = 0;
2670 req->Channel = 0;
2671 req->Offset = cpu_to_le64(wdata->offset);
2672 /* 4 for rfc1002 length field */
2673 req->DataOffset = cpu_to_le16(
2674 offsetof(struct smb2_write_req, Buffer) - 4);
2675 req->RemainingBytes = 0;
2676
2677 /* 4 for rfc1002 length field and 1 for Buffer */
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002678 iov[0].iov_len = 4;
2679 iov[0].iov_base = req;
2680 iov[1].iov_len = get_rfc1002_length(req) - 1;
2681 iov[1].iov_base = (char *)req + 4;
Pavel Shilovsky33319142012-09-18 16:20:29 -07002682
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002683 rqst.rq_iov = iov;
2684 rqst.rq_nvec = 2;
Jeff Laytoneddb0792012-09-18 16:20:35 -07002685 rqst.rq_pages = wdata->pages;
2686 rqst.rq_npages = wdata->nr_pages;
2687 rqst.rq_pagesz = wdata->pagesz;
2688 rqst.rq_tailsz = wdata->tailsz;
Pavel Shilovsky33319142012-09-18 16:20:29 -07002689
Joe Perchesf96637b2013-05-04 22:12:25 -05002690 cifs_dbg(FYI, "async write at %llu %u bytes\n",
2691 wdata->offset, wdata->bytes);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002692
2693 req->Length = cpu_to_le32(wdata->bytes);
2694
2695 inc_rfc1001_len(&req->hdr, wdata->bytes - 1 /* Buffer */);
2696
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002697 if (wdata->credits) {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002698 shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(wdata->bytes,
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002699 SMB2_MAX_BUFFER_SIZE));
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002700 shdr->CreditRequest = shdr->CreditCharge;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002701 spin_lock(&server->req_lock);
2702 server->credits += wdata->credits -
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002703 le16_to_cpu(shdr->CreditCharge);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002704 spin_unlock(&server->req_lock);
2705 wake_up(&server->request_q);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002706 flags |= CIFS_HAS_CREDITS;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002707 }
2708
Pavel Shilovsky33319142012-09-18 16:20:29 -07002709 kref_get(&wdata->refcount);
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -08002710 rc = cifs_call_async(server, &rqst, NULL, smb2_writev_callback, NULL,
2711 wdata, flags);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002712
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002713 if (rc) {
Steve French4a5c80d2014-02-07 20:45:12 -06002714 kref_put(&wdata->refcount, release);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002715 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
2716 }
Pavel Shilovsky33319142012-09-18 16:20:29 -07002717
Pavel Shilovsky33319142012-09-18 16:20:29 -07002718async_writev_out:
2719 cifs_small_buf_release(req);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002720 return rc;
2721}
Pavel Shilovsky009d3442012-09-18 16:20:30 -07002722
2723/*
2724 * SMB2_write function gets iov pointer to kvec array with n_vec as a length.
2725 * The length field from io_parms must be at least 1 and indicates a number of
2726 * elements with data to write that begins with position 1 in iov array. All
2727 * data length is specified by count.
2728 */
2729int
2730SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms,
2731 unsigned int *nbytes, struct kvec *iov, int n_vec)
2732{
2733 int rc = 0;
2734 struct smb2_write_req *req = NULL;
2735 struct smb2_write_rsp *rsp = NULL;
2736 int resp_buftype;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002737 struct kvec rsp_iov;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002738 int flags = 0;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002739
Pavel Shilovsky009d3442012-09-18 16:20:30 -07002740 *nbytes = 0;
2741
2742 if (n_vec < 1)
2743 return rc;
2744
2745 rc = small_smb2_init(SMB2_WRITE, io_parms->tcon, (void **) &req);
2746 if (rc)
2747 return rc;
2748
2749 if (io_parms->tcon->ses->server == NULL)
2750 return -ECONNABORTED;
2751
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002752 if (encryption_required(io_parms->tcon))
2753 flags |= CIFS_TRANSFORM_REQ;
2754
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002755 req->hdr.sync_hdr.ProcessId = cpu_to_le32(io_parms->pid);
Pavel Shilovsky009d3442012-09-18 16:20:30 -07002756
2757 req->PersistentFileId = io_parms->persistent_fid;
2758 req->VolatileFileId = io_parms->volatile_fid;
2759 req->WriteChannelInfoOffset = 0;
2760 req->WriteChannelInfoLength = 0;
2761 req->Channel = 0;
2762 req->Length = cpu_to_le32(io_parms->length);
2763 req->Offset = cpu_to_le64(io_parms->offset);
2764 /* 4 for rfc1002 length field */
2765 req->DataOffset = cpu_to_le16(
2766 offsetof(struct smb2_write_req, Buffer) - 4);
2767 req->RemainingBytes = 0;
2768
2769 iov[0].iov_base = (char *)req;
2770 /* 4 for rfc1002 length field and 1 for Buffer */
2771 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
2772
2773 /* length of entire message including data to be written */
2774 inc_rfc1001_len(req, io_parms->length - 1 /* Buffer */);
2775
2776 rc = SendReceive2(xid, io_parms->tcon->ses, iov, n_vec + 1,
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002777 &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002778 cifs_small_buf_release(req);
2779 rsp = (struct smb2_write_rsp *)rsp_iov.iov_base;
Pavel Shilovsky009d3442012-09-18 16:20:30 -07002780
2781 if (rc) {
2782 cifs_stats_fail_inc(io_parms->tcon, SMB2_WRITE_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05002783 cifs_dbg(VFS, "Send error in write = %d\n", rc);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002784 } else
Pavel Shilovsky009d3442012-09-18 16:20:30 -07002785 *nbytes = le32_to_cpu(rsp->DataLength);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002786
2787 free_rsp_buf(resp_buftype, rsp);
Pavel Shilovsky009d3442012-09-18 16:20:30 -07002788 return rc;
2789}
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002790
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002791static unsigned int
2792num_entries(char *bufstart, char *end_of_buf, char **lastentry, size_t size)
2793{
2794 int len;
2795 unsigned int entrycount = 0;
2796 unsigned int next_offset = 0;
2797 FILE_DIRECTORY_INFO *entryptr;
2798
2799 if (bufstart == NULL)
2800 return 0;
2801
2802 entryptr = (FILE_DIRECTORY_INFO *)bufstart;
2803
2804 while (1) {
2805 entryptr = (FILE_DIRECTORY_INFO *)
2806 ((char *)entryptr + next_offset);
2807
2808 if ((char *)entryptr + size > end_of_buf) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002809 cifs_dbg(VFS, "malformed search entry would overflow\n");
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002810 break;
2811 }
2812
2813 len = le32_to_cpu(entryptr->FileNameLength);
2814 if ((char *)entryptr + len + size > end_of_buf) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002815 cifs_dbg(VFS, "directory entry name would overflow frame end of buf %p\n",
2816 end_of_buf);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002817 break;
2818 }
2819
2820 *lastentry = (char *)entryptr;
2821 entrycount++;
2822
2823 next_offset = le32_to_cpu(entryptr->NextEntryOffset);
2824 if (!next_offset)
2825 break;
2826 }
2827
2828 return entrycount;
2829}
2830
2831/*
2832 * Readdir/FindFirst
2833 */
2834int
2835SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon,
2836 u64 persistent_fid, u64 volatile_fid, int index,
2837 struct cifs_search_info *srch_inf)
2838{
2839 struct smb2_query_directory_req *req;
2840 struct smb2_query_directory_rsp *rsp = NULL;
2841 struct kvec iov[2];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002842 struct kvec rsp_iov;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002843 int rc = 0;
2844 int len;
Steve French75fdfc82015-03-25 18:51:57 -05002845 int resp_buftype = CIFS_NO_BUFFER;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002846 unsigned char *bufptr;
2847 struct TCP_Server_Info *server;
2848 struct cifs_ses *ses = tcon->ses;
2849 __le16 asteriks = cpu_to_le16('*');
2850 char *end_of_smb;
2851 unsigned int output_size = CIFSMaxBufSize;
2852 size_t info_buf_size;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002853 int flags = 0;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002854
2855 if (ses && (ses->server))
2856 server = ses->server;
2857 else
2858 return -EIO;
2859
2860 rc = small_smb2_init(SMB2_QUERY_DIRECTORY, tcon, (void **) &req);
2861 if (rc)
2862 return rc;
2863
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002864 if (encryption_required(tcon))
2865 flags |= CIFS_TRANSFORM_REQ;
2866
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002867 switch (srch_inf->info_level) {
2868 case SMB_FIND_FILE_DIRECTORY_INFO:
2869 req->FileInformationClass = FILE_DIRECTORY_INFORMATION;
2870 info_buf_size = sizeof(FILE_DIRECTORY_INFO) - 1;
2871 break;
2872 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
2873 req->FileInformationClass = FILEID_FULL_DIRECTORY_INFORMATION;
2874 info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO) - 1;
2875 break;
2876 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05002877 cifs_dbg(VFS, "info level %u isn't supported\n",
2878 srch_inf->info_level);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002879 rc = -EINVAL;
2880 goto qdir_exit;
2881 }
2882
2883 req->FileIndex = cpu_to_le32(index);
2884 req->PersistentFileId = persistent_fid;
2885 req->VolatileFileId = volatile_fid;
2886
2887 len = 0x2;
2888 bufptr = req->Buffer;
2889 memcpy(bufptr, &asteriks, len);
2890
2891 req->FileNameOffset =
2892 cpu_to_le16(sizeof(struct smb2_query_directory_req) - 1 - 4);
2893 req->FileNameLength = cpu_to_le16(len);
2894 /*
2895 * BB could be 30 bytes or so longer if we used SMB2 specific
2896 * buffer lengths, but this is safe and close enough.
2897 */
2898 output_size = min_t(unsigned int, output_size, server->maxBuf);
2899 output_size = min_t(unsigned int, output_size, 2 << 15);
2900 req->OutputBufferLength = cpu_to_le32(output_size);
2901
2902 iov[0].iov_base = (char *)req;
2903 /* 4 for RFC1001 length and 1 for Buffer */
2904 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
2905
2906 iov[1].iov_base = (char *)(req->Buffer);
2907 iov[1].iov_len = len;
2908
2909 inc_rfc1001_len(req, len - 1 /* Buffer */);
2910
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002911 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002912 cifs_small_buf_release(req);
2913 rsp = (struct smb2_query_directory_rsp *)rsp_iov.iov_base;
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002914
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002915 if (rc) {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002916 if (rc == -ENODATA &&
2917 rsp->hdr.sync_hdr.Status == STATUS_NO_MORE_FILES) {
Pavel Shilovsky52755802014-08-18 20:49:57 +04002918 srch_inf->endOfSearch = true;
2919 rc = 0;
2920 }
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002921 cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
2922 goto qdir_exit;
2923 }
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002924
2925 rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
2926 le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
2927 info_buf_size);
2928 if (rc)
2929 goto qdir_exit;
2930
2931 srch_inf->unicode = true;
2932
2933 if (srch_inf->ntwrk_buf_start) {
2934 if (srch_inf->smallBuf)
2935 cifs_small_buf_release(srch_inf->ntwrk_buf_start);
2936 else
2937 cifs_buf_release(srch_inf->ntwrk_buf_start);
2938 }
2939 srch_inf->ntwrk_buf_start = (char *)rsp;
2940 srch_inf->srch_entries_start = srch_inf->last_entry = 4 /* rfclen */ +
2941 (char *)&rsp->hdr + le16_to_cpu(rsp->OutputBufferOffset);
2942 /* 4 for rfc1002 length field */
2943 end_of_smb = get_rfc1002_length(rsp) + 4 + (char *)&rsp->hdr;
2944 srch_inf->entries_in_buffer =
2945 num_entries(srch_inf->srch_entries_start, end_of_smb,
2946 &srch_inf->last_entry, info_buf_size);
2947 srch_inf->index_of_last_entry += srch_inf->entries_in_buffer;
Joe Perchesf96637b2013-05-04 22:12:25 -05002948 cifs_dbg(FYI, "num entries %d last_index %lld srch start %p srch end %p\n",
2949 srch_inf->entries_in_buffer, srch_inf->index_of_last_entry,
2950 srch_inf->srch_entries_start, srch_inf->last_entry);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002951 if (resp_buftype == CIFS_LARGE_BUFFER)
2952 srch_inf->smallBuf = false;
2953 else if (resp_buftype == CIFS_SMALL_BUFFER)
2954 srch_inf->smallBuf = true;
2955 else
Joe Perchesf96637b2013-05-04 22:12:25 -05002956 cifs_dbg(VFS, "illegal search buffer type\n");
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002957
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002958 return rc;
2959
2960qdir_exit:
2961 free_rsp_buf(resp_buftype, rsp);
2962 return rc;
2963}
2964
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002965static int
2966send_set_info(const unsigned int xid, struct cifs_tcon *tcon,
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002967 u64 persistent_fid, u64 volatile_fid, u32 pid, int info_class,
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002968 unsigned int num, void **data, unsigned int *size)
2969{
2970 struct smb2_set_info_req *req;
2971 struct smb2_set_info_rsp *rsp = NULL;
2972 struct kvec *iov;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002973 struct kvec rsp_iov;
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002974 int rc = 0;
2975 int resp_buftype;
2976 unsigned int i;
2977 struct TCP_Server_Info *server;
2978 struct cifs_ses *ses = tcon->ses;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002979 int flags = 0;
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002980
2981 if (ses && (ses->server))
2982 server = ses->server;
2983 else
2984 return -EIO;
2985
2986 if (!num)
2987 return -EINVAL;
2988
2989 iov = kmalloc(sizeof(struct kvec) * num, GFP_KERNEL);
2990 if (!iov)
2991 return -ENOMEM;
2992
2993 rc = small_smb2_init(SMB2_SET_INFO, tcon, (void **) &req);
2994 if (rc) {
2995 kfree(iov);
2996 return rc;
2997 }
2998
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002999 if (encryption_required(tcon))
3000 flags |= CIFS_TRANSFORM_REQ;
3001
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003002 req->hdr.sync_hdr.ProcessId = cpu_to_le32(pid);
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07003003
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003004 req->InfoType = SMB2_O_INFO_FILE;
3005 req->FileInfoClass = info_class;
3006 req->PersistentFileId = persistent_fid;
3007 req->VolatileFileId = volatile_fid;
3008
3009 /* 4 for RFC1001 length and 1 for Buffer */
3010 req->BufferOffset =
3011 cpu_to_le16(sizeof(struct smb2_set_info_req) - 1 - 4);
3012 req->BufferLength = cpu_to_le32(*size);
3013
3014 inc_rfc1001_len(req, *size - 1 /* Buffer */);
3015
3016 memcpy(req->Buffer, *data, *size);
3017
3018 iov[0].iov_base = (char *)req;
3019 /* 4 for RFC1001 length */
3020 iov[0].iov_len = get_rfc1002_length(req) + 4;
3021
3022 for (i = 1; i < num; i++) {
3023 inc_rfc1001_len(req, size[i]);
3024 le32_add_cpu(&req->BufferLength, size[i]);
3025 iov[i].iov_base = (char *)data[i];
3026 iov[i].iov_len = size[i];
3027 }
3028
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003029 rc = SendReceive2(xid, ses, iov, num, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003030 cifs_small_buf_release(req);
3031 rsp = (struct smb2_set_info_rsp *)rsp_iov.iov_base;
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003032
Steve French7d3fb242013-11-18 09:56:28 -06003033 if (rc != 0)
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003034 cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE);
Steve French7d3fb242013-11-18 09:56:28 -06003035
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003036 free_rsp_buf(resp_buftype, rsp);
3037 kfree(iov);
3038 return rc;
3039}
3040
3041int
3042SMB2_rename(const unsigned int xid, struct cifs_tcon *tcon,
3043 u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
3044{
3045 struct smb2_file_rename_info info;
3046 void **data;
3047 unsigned int size[2];
3048 int rc;
3049 int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
3050
3051 data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
3052 if (!data)
3053 return -ENOMEM;
3054
3055 info.ReplaceIfExists = 1; /* 1 = replace existing target with new */
3056 /* 0 = fail if target already exists */
3057 info.RootDirectory = 0; /* MBZ for network ops (why does spec say?) */
3058 info.FileNameLength = cpu_to_le32(len);
3059
3060 data[0] = &info;
3061 size[0] = sizeof(struct smb2_file_rename_info);
3062
3063 data[1] = target_file;
3064 size[1] = len + 2 /* null */;
3065
3066 rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07003067 current->tgid, FILE_RENAME_INFORMATION, 2, data,
3068 size);
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003069 kfree(data);
3070 return rc;
3071}
Pavel Shilovsky568798c2012-09-18 16:20:31 -07003072
3073int
Steve French897fba12016-05-12 21:20:36 -05003074SMB2_rmdir(const unsigned int xid, struct cifs_tcon *tcon,
3075 u64 persistent_fid, u64 volatile_fid)
3076{
3077 __u8 delete_pending = 1;
3078 void *data;
3079 unsigned int size;
3080
3081 data = &delete_pending;
3082 size = 1; /* sizeof __u8 */
3083
3084 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
3085 current->tgid, FILE_DISPOSITION_INFORMATION, 1, &data,
3086 &size);
3087}
3088
3089int
Pavel Shilovsky568798c2012-09-18 16:20:31 -07003090SMB2_set_hardlink(const unsigned int xid, struct cifs_tcon *tcon,
3091 u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
3092{
3093 struct smb2_file_link_info info;
3094 void **data;
3095 unsigned int size[2];
3096 int rc;
3097 int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
3098
3099 data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
3100 if (!data)
3101 return -ENOMEM;
3102
3103 info.ReplaceIfExists = 0; /* 1 = replace existing link with new */
3104 /* 0 = fail if link already exists */
3105 info.RootDirectory = 0; /* MBZ for network ops (why does spec say?) */
3106 info.FileNameLength = cpu_to_le32(len);
3107
3108 data[0] = &info;
3109 size[0] = sizeof(struct smb2_file_link_info);
3110
3111 data[1] = target_file;
3112 size[1] = len + 2 /* null */;
3113
3114 rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07003115 current->tgid, FILE_LINK_INFORMATION, 2, data, size);
Pavel Shilovsky568798c2012-09-18 16:20:31 -07003116 kfree(data);
3117 return rc;
3118}
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07003119
3120int
3121SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
Steve Frenchf29ebb42014-07-19 21:44:58 -05003122 u64 volatile_fid, u32 pid, __le64 *eof, bool is_falloc)
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07003123{
3124 struct smb2_file_eof_info info;
3125 void *data;
3126 unsigned int size;
3127
3128 info.EndOfFile = *eof;
3129
3130 data = &info;
3131 size = sizeof(struct smb2_file_eof_info);
3132
Steve Frenchf29ebb42014-07-19 21:44:58 -05003133 if (is_falloc)
3134 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
3135 pid, FILE_ALLOCATION_INFORMATION, 1, &data, &size);
3136 else
3137 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
3138 pid, FILE_END_OF_FILE_INFORMATION, 1, &data, &size);
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07003139}
Pavel Shilovsky1feeaac2012-09-18 16:20:32 -07003140
3141int
3142SMB2_set_info(const unsigned int xid, struct cifs_tcon *tcon,
3143 u64 persistent_fid, u64 volatile_fid, FILE_BASIC_INFO *buf)
3144{
3145 unsigned int size;
3146 size = sizeof(FILE_BASIC_INFO);
3147 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
3148 current->tgid, FILE_BASIC_INFORMATION, 1,
3149 (void **)&buf, &size);
3150}
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07003151
3152int
3153SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon,
3154 const u64 persistent_fid, const u64 volatile_fid,
3155 __u8 oplock_level)
3156{
3157 int rc;
3158 struct smb2_oplock_break *req = NULL;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003159 int flags = CIFS_OBREAK_OP;
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07003160
Joe Perchesf96637b2013-05-04 22:12:25 -05003161 cifs_dbg(FYI, "SMB2_oplock_break\n");
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07003162 rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07003163 if (rc)
3164 return rc;
3165
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003166 if (encryption_required(tcon))
3167 flags |= CIFS_TRANSFORM_REQ;
3168
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07003169 req->VolatileFid = volatile_fid;
3170 req->PersistentFid = persistent_fid;
3171 req->OplockLevel = oplock_level;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003172 req->hdr.sync_hdr.CreditRequest = cpu_to_le16(1);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07003173
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003174 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, flags);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003175 cifs_small_buf_release(req);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07003176
3177 if (rc) {
3178 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05003179 cifs_dbg(FYI, "Send error in Oplock Break = %d\n", rc);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07003180 }
3181
3182 return rc;
3183}
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07003184
3185static void
3186copy_fs_info_to_kstatfs(struct smb2_fs_full_size_info *pfs_inf,
3187 struct kstatfs *kst)
3188{
3189 kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) *
3190 le32_to_cpu(pfs_inf->SectorsPerAllocationUnit);
3191 kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits);
3192 kst->f_bfree = le64_to_cpu(pfs_inf->ActualAvailableAllocationUnits);
3193 kst->f_bavail = le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits);
3194 return;
3195}
3196
3197static int
3198build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon, int level,
3199 int outbuf_len, u64 persistent_fid, u64 volatile_fid)
3200{
3201 int rc;
3202 struct smb2_query_info_req *req;
3203
Joe Perchesf96637b2013-05-04 22:12:25 -05003204 cifs_dbg(FYI, "Query FSInfo level %d\n", level);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07003205
3206 if ((tcon->ses == NULL) || (tcon->ses->server == NULL))
3207 return -EIO;
3208
3209 rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
3210 if (rc)
3211 return rc;
3212
3213 req->InfoType = SMB2_O_INFO_FILESYSTEM;
3214 req->FileInfoClass = level;
3215 req->PersistentFileId = persistent_fid;
3216 req->VolatileFileId = volatile_fid;
3217 /* 4 for rfc1002 length field and 1 for pad */
3218 req->InputBufferOffset =
3219 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
3220 req->OutputBufferLength = cpu_to_le32(
3221 outbuf_len + sizeof(struct smb2_query_info_rsp) - 1 - 4);
3222
3223 iov->iov_base = (char *)req;
3224 /* 4 for rfc1002 length field */
3225 iov->iov_len = get_rfc1002_length(req) + 4;
3226 return 0;
3227}
3228
3229int
3230SMB2_QFS_info(const unsigned int xid, struct cifs_tcon *tcon,
3231 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
3232{
3233 struct smb2_query_info_rsp *rsp = NULL;
3234 struct kvec iov;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003235 struct kvec rsp_iov;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07003236 int rc = 0;
3237 int resp_buftype;
3238 struct cifs_ses *ses = tcon->ses;
3239 struct smb2_fs_full_size_info *info = NULL;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003240 int flags = 0;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07003241
3242 rc = build_qfs_info_req(&iov, tcon, FS_FULL_SIZE_INFORMATION,
3243 sizeof(struct smb2_fs_full_size_info),
3244 persistent_fid, volatile_fid);
3245 if (rc)
3246 return rc;
3247
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003248 if (encryption_required(tcon))
3249 flags |= CIFS_TRANSFORM_REQ;
3250
3251 rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003252 cifs_small_buf_release(iov.iov_base);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07003253 if (rc) {
3254 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
Steve French34f62642013-10-09 02:07:00 -05003255 goto qfsinf_exit;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07003256 }
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003257 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07003258
3259 info = (struct smb2_fs_full_size_info *)(4 /* RFC1001 len */ +
3260 le16_to_cpu(rsp->OutputBufferOffset) + (char *)&rsp->hdr);
3261 rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
3262 le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
3263 sizeof(struct smb2_fs_full_size_info));
3264 if (!rc)
3265 copy_fs_info_to_kstatfs(info, fsdata);
3266
Steve French34f62642013-10-09 02:07:00 -05003267qfsinf_exit:
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003268 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
Steve French34f62642013-10-09 02:07:00 -05003269 return rc;
3270}
3271
3272int
3273SMB2_QFS_attr(const unsigned int xid, struct cifs_tcon *tcon,
Steven French21671142013-10-09 13:36:35 -05003274 u64 persistent_fid, u64 volatile_fid, int level)
Steve French34f62642013-10-09 02:07:00 -05003275{
3276 struct smb2_query_info_rsp *rsp = NULL;
3277 struct kvec iov;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003278 struct kvec rsp_iov;
Steve French34f62642013-10-09 02:07:00 -05003279 int rc = 0;
Steven French21671142013-10-09 13:36:35 -05003280 int resp_buftype, max_len, min_len;
Steve French34f62642013-10-09 02:07:00 -05003281 struct cifs_ses *ses = tcon->ses;
3282 unsigned int rsp_len, offset;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003283 int flags = 0;
Steve French34f62642013-10-09 02:07:00 -05003284
Steven French21671142013-10-09 13:36:35 -05003285 if (level == FS_DEVICE_INFORMATION) {
3286 max_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
3287 min_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
3288 } else if (level == FS_ATTRIBUTE_INFORMATION) {
3289 max_len = sizeof(FILE_SYSTEM_ATTRIBUTE_INFO);
3290 min_len = MIN_FS_ATTR_INFO_SIZE;
Steven Frenchaf6a12e2013-10-09 20:55:53 -05003291 } else if (level == FS_SECTOR_SIZE_INFORMATION) {
3292 max_len = sizeof(struct smb3_fs_ss_info);
3293 min_len = sizeof(struct smb3_fs_ss_info);
Steven French21671142013-10-09 13:36:35 -05003294 } else {
Steven Frenchaf6a12e2013-10-09 20:55:53 -05003295 cifs_dbg(FYI, "Invalid qfsinfo level %d\n", level);
Steven French21671142013-10-09 13:36:35 -05003296 return -EINVAL;
3297 }
3298
3299 rc = build_qfs_info_req(&iov, tcon, level, max_len,
Steve French34f62642013-10-09 02:07:00 -05003300 persistent_fid, volatile_fid);
3301 if (rc)
3302 return rc;
3303
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003304 if (encryption_required(tcon))
3305 flags |= CIFS_TRANSFORM_REQ;
3306
3307 rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003308 cifs_small_buf_release(iov.iov_base);
Steve French34f62642013-10-09 02:07:00 -05003309 if (rc) {
3310 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
3311 goto qfsattr_exit;
3312 }
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003313 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
Steve French34f62642013-10-09 02:07:00 -05003314
3315 rsp_len = le32_to_cpu(rsp->OutputBufferLength);
3316 offset = le16_to_cpu(rsp->OutputBufferOffset);
Steven French21671142013-10-09 13:36:35 -05003317 rc = validate_buf(offset, rsp_len, &rsp->hdr, min_len);
3318 if (rc)
3319 goto qfsattr_exit;
3320
3321 if (level == FS_ATTRIBUTE_INFORMATION)
Steve French34f62642013-10-09 02:07:00 -05003322 memcpy(&tcon->fsAttrInfo, 4 /* RFC1001 len */ + offset
3323 + (char *)&rsp->hdr, min_t(unsigned int,
Steven French21671142013-10-09 13:36:35 -05003324 rsp_len, max_len));
3325 else if (level == FS_DEVICE_INFORMATION)
3326 memcpy(&tcon->fsDevInfo, 4 /* RFC1001 len */ + offset
3327 + (char *)&rsp->hdr, sizeof(FILE_SYSTEM_DEVICE_INFO));
Steven Frenchaf6a12e2013-10-09 20:55:53 -05003328 else if (level == FS_SECTOR_SIZE_INFORMATION) {
3329 struct smb3_fs_ss_info *ss_info = (struct smb3_fs_ss_info *)
3330 (4 /* RFC1001 len */ + offset + (char *)&rsp->hdr);
3331 tcon->ss_flags = le32_to_cpu(ss_info->Flags);
3332 tcon->perf_sector_size =
3333 le32_to_cpu(ss_info->PhysicalBytesPerSectorForPerf);
3334 }
Steve French34f62642013-10-09 02:07:00 -05003335
3336qfsattr_exit:
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003337 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07003338 return rc;
3339}
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07003340
3341int
3342smb2_lockv(const unsigned int xid, struct cifs_tcon *tcon,
3343 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
3344 const __u32 num_lock, struct smb2_lock_element *buf)
3345{
3346 int rc = 0;
3347 struct smb2_lock_req *req = NULL;
3348 struct kvec iov[2];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003349 struct kvec rsp_iov;
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07003350 int resp_buf_type;
3351 unsigned int count;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003352 int flags = CIFS_NO_RESP;
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07003353
Joe Perchesf96637b2013-05-04 22:12:25 -05003354 cifs_dbg(FYI, "smb2_lockv num lock %d\n", num_lock);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07003355
3356 rc = small_smb2_init(SMB2_LOCK, tcon, (void **) &req);
3357 if (rc)
3358 return rc;
3359
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003360 if (encryption_required(tcon))
3361 flags |= CIFS_TRANSFORM_REQ;
3362
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003363 req->hdr.sync_hdr.ProcessId = cpu_to_le32(pid);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07003364 req->LockCount = cpu_to_le16(num_lock);
3365
3366 req->PersistentFileId = persist_fid;
3367 req->VolatileFileId = volatile_fid;
3368
3369 count = num_lock * sizeof(struct smb2_lock_element);
3370 inc_rfc1001_len(req, count - sizeof(struct smb2_lock_element));
3371
3372 iov[0].iov_base = (char *)req;
3373 /* 4 for rfc1002 length field and count for all locks */
3374 iov[0].iov_len = get_rfc1002_length(req) + 4 - count;
3375 iov[1].iov_base = (char *)buf;
3376 iov[1].iov_len = count;
3377
3378 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003379 rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, flags,
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003380 &rsp_iov);
3381 cifs_small_buf_release(req);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07003382 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003383 cifs_dbg(FYI, "Send error in smb2_lockv = %d\n", rc);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07003384 cifs_stats_fail_inc(tcon, SMB2_LOCK_HE);
3385 }
3386
3387 return rc;
3388}
3389
3390int
3391SMB2_lock(const unsigned int xid, struct cifs_tcon *tcon,
3392 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
3393 const __u64 length, const __u64 offset, const __u32 lock_flags,
3394 const bool wait)
3395{
3396 struct smb2_lock_element lock;
3397
3398 lock.Offset = cpu_to_le64(offset);
3399 lock.Length = cpu_to_le64(length);
3400 lock.Flags = cpu_to_le32(lock_flags);
3401 if (!wait && lock_flags != SMB2_LOCKFLAG_UNLOCK)
3402 lock.Flags |= cpu_to_le32(SMB2_LOCKFLAG_FAIL_IMMEDIATELY);
3403
3404 return smb2_lockv(xid, tcon, persist_fid, volatile_fid, pid, 1, &lock);
3405}
Pavel Shilovsky0822f512012-09-19 06:22:45 -07003406
3407int
3408SMB2_lease_break(const unsigned int xid, struct cifs_tcon *tcon,
3409 __u8 *lease_key, const __le32 lease_state)
3410{
3411 int rc;
3412 struct smb2_lease_ack *req = NULL;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003413 int flags = CIFS_OBREAK_OP;
Pavel Shilovsky0822f512012-09-19 06:22:45 -07003414
Joe Perchesf96637b2013-05-04 22:12:25 -05003415 cifs_dbg(FYI, "SMB2_lease_break\n");
Pavel Shilovsky0822f512012-09-19 06:22:45 -07003416 rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
Pavel Shilovsky0822f512012-09-19 06:22:45 -07003417 if (rc)
3418 return rc;
3419
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003420 if (encryption_required(tcon))
3421 flags |= CIFS_TRANSFORM_REQ;
3422
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003423 req->hdr.sync_hdr.CreditRequest = cpu_to_le16(1);
Pavel Shilovsky0822f512012-09-19 06:22:45 -07003424 req->StructureSize = cpu_to_le16(36);
3425 inc_rfc1001_len(req, 12);
3426
3427 memcpy(req->LeaseKey, lease_key, 16);
3428 req->LeaseState = lease_state;
3429
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003430 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, flags);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003431 cifs_small_buf_release(req);
Pavel Shilovsky0822f512012-09-19 06:22:45 -07003432
3433 if (rc) {
3434 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05003435 cifs_dbg(FYI, "Send error in Lease Break = %d\n", rc);
Pavel Shilovsky0822f512012-09-19 06:22:45 -07003436 }
3437
3438 return rc;
3439}