blob: 42e1f440eb1e9ae1ca497c7f8127ff58b7988b77 [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
80
81static void
82smb2_hdr_assemble(struct smb2_hdr *hdr, __le16 smb2_cmd /* command */ ,
83 const struct cifs_tcon *tcon)
84{
85 struct smb2_pdu *pdu = (struct smb2_pdu *)hdr;
86 char *temp = (char *)hdr;
87 /* lookup word count ie StructureSize from table */
88 __u16 parmsize = smb2_req_struct_sizes[le16_to_cpu(smb2_cmd)];
89
90 /*
91 * smaller than SMALL_BUFFER_SIZE but bigger than fixed area of
92 * largest operations (Create)
93 */
94 memset(temp, 0, 256);
95
96 /* Note this is only network field converted to big endian */
97 hdr->smb2_buf_length = cpu_to_be32(parmsize + sizeof(struct smb2_hdr)
98 - 4 /* RFC 1001 length field itself not counted */);
99
Steve French373512e2015-12-18 13:05:30 -0600100 hdr->ProtocolId = SMB2_PROTO_NUMBER;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400101 hdr->StructureSize = cpu_to_le16(64);
102 hdr->Command = smb2_cmd;
103 hdr->CreditRequest = cpu_to_le16(2); /* BB make this dynamic */
104 hdr->ProcessId = cpu_to_le32((__u16)current->tgid);
105
106 if (!tcon)
107 goto out;
108
Steve French2b80d042013-06-23 18:43:37 -0500109 /* GLOBAL_CAP_LARGE_MTU will only be set if dialect > SMB2.02 */
110 /* See sections 2.2.4 and 3.2.4.1.5 of MS-SMB2 */
Steve French1dc92c42015-05-20 09:32:21 -0500111 if ((tcon->ses) && (tcon->ses->server) &&
Steve French84ceeb92013-06-26 17:52:17 -0500112 (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LARGE_MTU))
Steve French2b80d042013-06-23 18:43:37 -0500113 hdr->CreditCharge = cpu_to_le16(1);
114 /* else CreditCharge MBZ */
115
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400116 hdr->TreeId = tcon->tid;
117 /* Uid is not converted */
118 if (tcon->ses)
119 hdr->SessionId = tcon->ses->Suid;
Steve Frenchf87ab882013-06-26 19:14:55 -0500120
121 /*
122 * If we would set SMB2_FLAGS_DFS_OPERATIONS on open we also would have
123 * to pass the path on the Open SMB prefixed by \\server\share.
124 * Not sure when we would need to do the augmented path (if ever) and
125 * setting this flag breaks the SMB2 open operation since it is
126 * illegal to send an empty path name (without \\server\share prefix)
127 * when the DFS flag is set in the SMB open header. We could
128 * consider setting the flag on all operations other than open
129 * but it is safer to net set it for now.
130 */
131/* if (tcon->share_flags & SHI1005_FLAGS_DFS)
132 hdr->Flags |= SMB2_FLAGS_DFS_OPERATIONS; */
133
Jeff Layton38d77c52013-05-26 07:01:00 -0400134 if (tcon->ses && tcon->ses->server && tcon->ses->server->sign)
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700135 hdr->Flags |= SMB2_FLAGS_SIGNED;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400136out:
137 pdu->StructureSize2 = cpu_to_le16(parmsize);
138 return;
139}
140
141static int
142smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon)
143{
144 int rc = 0;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400145 struct nls_table *nls_codepage;
146 struct cifs_ses *ses;
147 struct TCP_Server_Info *server;
148
149 /*
150 * SMB2s NegProt, SessSetup, Logoff do not have tcon yet so
151 * check for tcp and smb session status done differently
152 * for those three - in the calling routine.
153 */
154 if (tcon == NULL)
155 return rc;
156
157 if (smb2_command == SMB2_TREE_CONNECT)
158 return rc;
159
160 if (tcon->tidStatus == CifsExiting) {
161 /*
162 * only tree disconnect, open, and write,
163 * (and ulogoff which does not have tcon)
164 * are allowed as we start force umount.
165 */
166 if ((smb2_command != SMB2_WRITE) &&
167 (smb2_command != SMB2_CREATE) &&
168 (smb2_command != SMB2_TREE_DISCONNECT)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500169 cifs_dbg(FYI, "can not send cmd %d while umounting\n",
170 smb2_command);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400171 return -ENODEV;
172 }
173 }
174 if ((!tcon->ses) || (tcon->ses->status == CifsExiting) ||
175 (!tcon->ses->server))
176 return -EIO;
177
178 ses = tcon->ses;
179 server = ses->server;
180
181 /*
182 * Give demultiplex thread up to 10 seconds to reconnect, should be
183 * greater than cifs socket timeout which is 7 seconds
184 */
185 while (server->tcpStatus == CifsNeedReconnect) {
186 /*
187 * Return to caller for TREE_DISCONNECT and LOGOFF and CLOSE
188 * here since they are implicitly done when session drops.
189 */
190 switch (smb2_command) {
191 /*
192 * BB Should we keep oplock break and add flush to exceptions?
193 */
194 case SMB2_TREE_DISCONNECT:
195 case SMB2_CANCEL:
196 case SMB2_CLOSE:
197 case SMB2_OPLOCK_BREAK:
198 return -EAGAIN;
199 }
200
201 wait_event_interruptible_timeout(server->response_q,
202 (server->tcpStatus != CifsNeedReconnect), 10 * HZ);
203
204 /* are we still trying to reconnect? */
205 if (server->tcpStatus != CifsNeedReconnect)
206 break;
207
208 /*
209 * on "soft" mounts we wait once. Hard mounts keep
210 * retrying until process is killed or server comes
211 * back on-line
212 */
213 if (!tcon->retry) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500214 cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n");
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400215 return -EHOSTDOWN;
216 }
217 }
218
219 if (!tcon->ses->need_reconnect && !tcon->need_reconnect)
220 return rc;
221
222 nls_codepage = load_nls_default();
223
224 /*
225 * need to prevent multiple threads trying to simultaneously reconnect
226 * the same SMB session
227 */
228 mutex_lock(&tcon->ses->session_mutex);
229 rc = cifs_negotiate_protocol(0, tcon->ses);
230 if (!rc && tcon->ses->need_reconnect)
231 rc = cifs_setup_session(0, tcon->ses, nls_codepage);
232
233 if (rc || !tcon->need_reconnect) {
234 mutex_unlock(&tcon->ses->session_mutex);
235 goto out;
236 }
237
238 cifs_mark_open_files_invalid(tcon);
239 rc = SMB2_tcon(0, tcon->ses, tcon->treeName, tcon, nls_codepage);
240 mutex_unlock(&tcon->ses->session_mutex);
Joe Perchesf96637b2013-05-04 22:12:25 -0500241 cifs_dbg(FYI, "reconnect tcon rc = %d\n", rc);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400242 if (rc)
243 goto out;
244 atomic_inc(&tconInfoReconnectCount);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400245out:
246 /*
247 * Check if handle based operation so we know whether we can continue
248 * or not without returning to caller to reset file handle.
249 */
250 /*
251 * BB Is flush done by server on drop of tcp session? Should we special
252 * case it and skip above?
253 */
254 switch (smb2_command) {
255 case SMB2_FLUSH:
256 case SMB2_READ:
257 case SMB2_WRITE:
258 case SMB2_LOCK:
259 case SMB2_IOCTL:
260 case SMB2_QUERY_DIRECTORY:
261 case SMB2_CHANGE_NOTIFY:
262 case SMB2_QUERY_INFO:
263 case SMB2_SET_INFO:
264 return -EAGAIN;
265 }
266 unload_nls(nls_codepage);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400267 return rc;
268}
269
270/*
271 * Allocate and return pointer to an SMB request hdr, and set basic
272 * SMB information in the SMB header. If the return code is zero, this
273 * function must have filled in request_buf pointer.
274 */
275static int
276small_smb2_init(__le16 smb2_command, struct cifs_tcon *tcon,
277 void **request_buf)
278{
279 int rc = 0;
280
281 rc = smb2_reconnect(smb2_command, tcon);
282 if (rc)
283 return rc;
284
285 /* BB eventually switch this to SMB2 specific small buf size */
286 *request_buf = cifs_small_buf_get();
287 if (*request_buf == NULL) {
288 /* BB should we add a retry in here if not a writepage? */
289 return -ENOMEM;
290 }
291
292 smb2_hdr_assemble((struct smb2_hdr *) *request_buf, smb2_command, tcon);
293
294 if (tcon != NULL) {
295#ifdef CONFIG_CIFS_STATS2
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400296 uint16_t com_code = le16_to_cpu(smb2_command);
297 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400298#endif
299 cifs_stats_inc(&tcon->num_smbs_sent);
300 }
301
302 return rc;
303}
304
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500305#ifdef CONFIG_CIFS_SMB311
306/* offset is sizeof smb2_negotiate_req - 4 but rounded up to 8 bytes */
307#define OFFSET_OF_NEG_CONTEXT 0x68 /* sizeof(struct smb2_negotiate_req) - 4 */
308
309
310#define SMB2_PREAUTH_INTEGRITY_CAPABILITIES cpu_to_le16(1)
311#define SMB2_ENCRYPTION_CAPABILITIES cpu_to_le16(2)
312
313static void
314build_preauth_ctxt(struct smb2_preauth_neg_context *pneg_ctxt)
315{
316 pneg_ctxt->ContextType = SMB2_PREAUTH_INTEGRITY_CAPABILITIES;
317 pneg_ctxt->DataLength = cpu_to_le16(38);
318 pneg_ctxt->HashAlgorithmCount = cpu_to_le16(1);
319 pneg_ctxt->SaltLength = cpu_to_le16(SMB311_SALT_SIZE);
320 get_random_bytes(pneg_ctxt->Salt, SMB311_SALT_SIZE);
321 pneg_ctxt->HashAlgorithms = SMB2_PREAUTH_INTEGRITY_SHA512;
322}
323
324static void
325build_encrypt_ctxt(struct smb2_encryption_neg_context *pneg_ctxt)
326{
327 pneg_ctxt->ContextType = SMB2_ENCRYPTION_CAPABILITIES;
328 pneg_ctxt->DataLength = cpu_to_le16(6);
329 pneg_ctxt->CipherCount = cpu_to_le16(2);
330 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_GCM;
331 pneg_ctxt->Ciphers[1] = SMB2_ENCRYPTION_AES128_CCM;
332}
333
334static void
335assemble_neg_contexts(struct smb2_negotiate_req *req)
336{
337
338 /* +4 is to account for the RFC1001 len field */
339 char *pneg_ctxt = (char *)req + OFFSET_OF_NEG_CONTEXT + 4;
340
341 build_preauth_ctxt((struct smb2_preauth_neg_context *)pneg_ctxt);
342 /* Add 2 to size to round to 8 byte boundary */
343 pneg_ctxt += 2 + sizeof(struct smb2_preauth_neg_context);
344 build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt);
345 req->NegotiateContextOffset = cpu_to_le32(OFFSET_OF_NEG_CONTEXT);
346 req->NegotiateContextCount = cpu_to_le16(2);
347 inc_rfc1001_len(req, 4 + sizeof(struct smb2_preauth_neg_context) + 2
348 + sizeof(struct smb2_encryption_neg_context)); /* calculate hash */
349}
350#else
351static void assemble_neg_contexts(struct smb2_negotiate_req *req)
352{
353 return;
354}
355#endif /* SMB311 */
356
357
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400358/*
359 *
360 * SMB2 Worker functions follow:
361 *
362 * The general structure of the worker functions is:
363 * 1) Call smb2_init (assembles SMB2 header)
364 * 2) Initialize SMB2 command specific fields in fixed length area of SMB
365 * 3) Call smb_sendrcv2 (sends request on socket and waits for response)
366 * 4) Decode SMB2 command specific fields in the fixed length area
367 * 5) Decode variable length data area (if any for this SMB2 command type)
368 * 6) Call free smb buffer
369 * 7) return
370 *
371 */
372
373int
374SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses)
375{
376 struct smb2_negotiate_req *req;
377 struct smb2_negotiate_rsp *rsp;
378 struct kvec iov[1];
379 int rc = 0;
380 int resp_buftype;
Jeff Layton3534b852013-05-24 07:41:01 -0400381 struct TCP_Server_Info *server = ses->server;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400382 int blob_offset, blob_length;
383 char *security_blob;
384 int flags = CIFS_NEG_OP;
385
Joe Perchesf96637b2013-05-04 22:12:25 -0500386 cifs_dbg(FYI, "Negotiate protocol\n");
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400387
Jeff Layton3534b852013-05-24 07:41:01 -0400388 if (!server) {
389 WARN(1, "%s: server is NULL!\n", __func__);
390 return -EIO;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400391 }
392
393 rc = small_smb2_init(SMB2_NEGOTIATE, NULL, (void **) &req);
394 if (rc)
395 return rc;
396
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400397 req->hdr.SessionId = 0;
398
Steve Frenche4aa25e2012-10-01 12:26:22 -0500399 req->Dialects[0] = cpu_to_le16(ses->server->vals->protocol_id);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400400
Steve Frenche4aa25e2012-10-01 12:26:22 -0500401 req->DialectCount = cpu_to_le16(1); /* One vers= at a time for now */
402 inc_rfc1001_len(req, 2);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400403
404 /* only one of SMB2 signing flags may be set in SMB2 request */
Jeff Layton38d77c52013-05-26 07:01:00 -0400405 if (ses->sign)
Steve French9cd2e622013-06-12 19:59:03 -0500406 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
Jeff Layton38d77c52013-05-26 07:01:00 -0400407 else if (global_secflags & CIFSSEC_MAY_SIGN)
Steve French9cd2e622013-06-12 19:59:03 -0500408 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
Jeff Layton38d77c52013-05-26 07:01:00 -0400409 else
410 req->SecurityMode = 0;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400411
Steve Frenche4aa25e2012-10-01 12:26:22 -0500412 req->Capabilities = cpu_to_le32(ses->server->vals->req_capabilities);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400413
Steve French3c5f9be12014-05-13 13:37:45 -0700414 /* ClientGUID must be zero for SMB2.02 dialect */
415 if (ses->server->vals->protocol_id == SMB20_PROT_ID)
416 memset(req->ClientGUID, 0, SMB2_CLIENT_GUID_SIZE);
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500417 else {
Steve French3c5f9be12014-05-13 13:37:45 -0700418 memcpy(req->ClientGUID, server->client_guid,
419 SMB2_CLIENT_GUID_SIZE);
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500420 if (ses->server->vals->protocol_id == SMB311_PROT_ID)
421 assemble_neg_contexts(req);
422 }
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400423 iov[0].iov_base = (char *)req;
424 /* 4 for rfc1002 length field */
425 iov[0].iov_len = get_rfc1002_length(req) + 4;
426
427 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags);
428
429 rsp = (struct smb2_negotiate_rsp *)iov[0].iov_base;
430 /*
431 * No tcon so can't do
432 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
433 */
434 if (rc != 0)
435 goto neg_exit;
436
Joe Perchesf96637b2013-05-04 22:12:25 -0500437 cifs_dbg(FYI, "mode 0x%x\n", rsp->SecurityMode);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400438
Steve Frenche4aa25e2012-10-01 12:26:22 -0500439 /* BB we may eventually want to match the negotiated vs. requested
440 dialect, even though we are only requesting one at a time */
441 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500442 cifs_dbg(FYI, "negotiated smb2.0 dialect\n");
Steve Frenche4aa25e2012-10-01 12:26:22 -0500443 else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500444 cifs_dbg(FYI, "negotiated smb2.1 dialect\n");
Steve Frenche4aa25e2012-10-01 12:26:22 -0500445 else if (rsp->DialectRevision == cpu_to_le16(SMB30_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500446 cifs_dbg(FYI, "negotiated smb3.0 dialect\n");
Steve French20b6d8b2013-06-12 22:48:41 -0500447 else if (rsp->DialectRevision == cpu_to_le16(SMB302_PROT_ID))
448 cifs_dbg(FYI, "negotiated smb3.02 dialect\n");
Steve French5f7fbf72014-12-17 22:52:58 -0600449#ifdef CONFIG_CIFS_SMB311
450 else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID))
451 cifs_dbg(FYI, "negotiated smb3.1.1 dialect\n");
452#endif /* SMB311 */
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400453 else {
Steve Frenchf799d622015-06-18 05:07:52 -0500454 cifs_dbg(VFS, "Illegal dialect returned by server 0x%x\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500455 le16_to_cpu(rsp->DialectRevision));
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400456 rc = -EIO;
457 goto neg_exit;
458 }
459 server->dialect = le16_to_cpu(rsp->DialectRevision);
460
Jeff Laytone598d1d82013-05-26 07:00:59 -0400461 /* SMB2 only has an extended negflavor */
462 server->negflavor = CIFS_NEGFLAVOR_EXTENDED;
Pavel Shilovsky2365c4e2014-02-14 13:31:02 +0400463 /* set it to the maximum buffer size value we can send with 1 credit */
464 server->maxBuf = min_t(unsigned int, le32_to_cpu(rsp->MaxTransactSize),
465 SMB2_MAX_BUFFER_SIZE);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400466 server->max_read = le32_to_cpu(rsp->MaxReadSize);
467 server->max_write = le32_to_cpu(rsp->MaxWriteSize);
468 /* BB Do we need to validate the SecurityMode? */
469 server->sec_mode = le16_to_cpu(rsp->SecurityMode);
470 server->capabilities = le32_to_cpu(rsp->Capabilities);
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400471 /* Internal types */
472 server->capabilities |= SMB2_NT_FIND | SMB2_LARGE_FILES;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400473
474 security_blob = smb2_get_data_area_len(&blob_offset, &blob_length,
475 &rsp->hdr);
Steve French5d875cc2013-06-25 15:33:41 -0500476 /*
477 * See MS-SMB2 section 2.2.4: if no blob, client picks default which
478 * for us will be
479 * ses->sectype = RawNTLMSSP;
480 * but for time being this is our only auth choice so doesn't matter.
481 * We just found a server which sets blob length to zero expecting raw.
482 */
483 if (blob_length == 0)
484 cifs_dbg(FYI, "missing security blob on negprot\n");
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700485
Jeff Layton38d77c52013-05-26 07:01:00 -0400486 rc = cifs_enable_signing(server, ses->sign);
Jeff Layton9ddec562013-05-26 07:00:58 -0400487 if (rc)
488 goto neg_exit;
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500489 if (blob_length) {
Steve Frenchebdd2072014-10-20 12:48:23 -0500490 rc = decode_negTokenInit(security_blob, blob_length, server);
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500491 if (rc == 1)
492 rc = 0;
493 else if (rc == 0)
494 rc = -EIO;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400495 }
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400496neg_exit:
497 free_rsp_buf(resp_buftype, rsp);
498 return rc;
499}
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400500
Steve Frenchff1c0382013-11-19 23:44:46 -0600501int smb3_validate_negotiate(const unsigned int xid, struct cifs_tcon *tcon)
502{
503 int rc = 0;
504 struct validate_negotiate_info_req vneg_inbuf;
505 struct validate_negotiate_info_rsp *pneg_rsp;
506 u32 rsplen;
507
508 cifs_dbg(FYI, "validate negotiate\n");
509
510 /*
511 * validation ioctl must be signed, so no point sending this if we
512 * can not sign it. We could eventually change this to selectively
513 * sign just this, the first and only signed request on a connection.
514 * This is good enough for now since a user who wants better security
515 * would also enable signing on the mount. Having validation of
516 * negotiate info for signed connections helps reduce attack vectors
517 */
518 if (tcon->ses->server->sign == false)
519 return 0; /* validation requires signing */
520
521 vneg_inbuf.Capabilities =
522 cpu_to_le32(tcon->ses->server->vals->req_capabilities);
Sachin Prabhu39552ea2014-05-13 00:48:12 +0100523 memcpy(vneg_inbuf.Guid, tcon->ses->server->client_guid,
524 SMB2_CLIENT_GUID_SIZE);
Steve Frenchff1c0382013-11-19 23:44:46 -0600525
526 if (tcon->ses->sign)
527 vneg_inbuf.SecurityMode =
528 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
529 else if (global_secflags & CIFSSEC_MAY_SIGN)
530 vneg_inbuf.SecurityMode =
531 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
532 else
533 vneg_inbuf.SecurityMode = 0;
534
535 vneg_inbuf.DialectCount = cpu_to_le16(1);
536 vneg_inbuf.Dialects[0] =
537 cpu_to_le16(tcon->ses->server->vals->protocol_id);
538
539 rc = SMB2_ioctl(xid, tcon, NO_FILE_ID, NO_FILE_ID,
540 FSCTL_VALIDATE_NEGOTIATE_INFO, true /* is_fsctl */,
541 (char *)&vneg_inbuf, sizeof(struct validate_negotiate_info_req),
542 (char **)&pneg_rsp, &rsplen);
543
544 if (rc != 0) {
545 cifs_dbg(VFS, "validate protocol negotiate failed: %d\n", rc);
546 return -EIO;
547 }
548
549 if (rsplen != sizeof(struct validate_negotiate_info_rsp)) {
550 cifs_dbg(VFS, "invalid size of protocol negotiate response\n");
551 return -EIO;
552 }
553
554 /* check validate negotiate info response matches what we got earlier */
555 if (pneg_rsp->Dialect !=
556 cpu_to_le16(tcon->ses->server->vals->protocol_id))
557 goto vneg_out;
558
559 if (pneg_rsp->SecurityMode != cpu_to_le16(tcon->ses->server->sec_mode))
560 goto vneg_out;
561
562 /* do not validate server guid because not saved at negprot time yet */
563
564 if ((le32_to_cpu(pneg_rsp->Capabilities) | SMB2_NT_FIND |
565 SMB2_LARGE_FILES) != tcon->ses->server->capabilities)
566 goto vneg_out;
567
568 /* validate negotiate successful */
569 cifs_dbg(FYI, "validate negotiate info successful\n");
570 return 0;
571
572vneg_out:
573 cifs_dbg(VFS, "protocol revalidation - security settings mismatch\n");
574 return -EIO;
575}
576
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400577int
578SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
579 const struct nls_table *nls_cp)
580{
581 struct smb2_sess_setup_req *req;
582 struct smb2_sess_setup_rsp *rsp = NULL;
583 struct kvec iov[2];
584 int rc = 0;
Namjae Jeon7de975e2014-08-20 19:39:41 +0900585 int resp_buftype = CIFS_NO_BUFFER;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400586 __le32 phase = NtLmNegotiate; /* NTLMSSP, if needed, is multistage */
Jeff Layton3534b852013-05-24 07:41:01 -0400587 struct TCP_Server_Info *server = ses->server;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400588 u16 blob_length = 0;
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500589 struct key *spnego_key = NULL;
590 char *security_blob = NULL;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400591 char *ntlmssp_blob = NULL;
592 bool use_spnego = false; /* else use raw ntlmssp */
593
Joe Perchesf96637b2013-05-04 22:12:25 -0500594 cifs_dbg(FYI, "Session Setup\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400595
Jeff Layton3534b852013-05-24 07:41:01 -0400596 if (!server) {
597 WARN(1, "%s: server is NULL!\n", __func__);
598 return -EIO;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400599 }
600
601 /*
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -0500602 * If we are here due to reconnect, free per-smb session key
603 * in case signing was required.
604 */
605 kfree(ses->auth_key.response);
606 ses->auth_key.response = NULL;
607
608 /*
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400609 * If memory allocation is successful, caller of this function
610 * frees it.
611 */
612 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
613 if (!ses->ntlmssp)
614 return -ENOMEM;
Shirish Pargaonkar5c234aa2013-08-29 08:35:10 -0500615 ses->ntlmssp->sesskey_per_smbsess = true;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400616
Jeff Layton3f618222013-06-12 19:52:14 -0500617 /* FIXME: allow for other auth types besides NTLMSSP (e.g. krb5) */
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500618 if (ses->sectype != Kerberos && ses->sectype != RawNTLMSSP)
619 ses->sectype = RawNTLMSSP;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400620
621ssetup_ntlmssp_authenticate:
622 if (phase == NtLmChallenge)
623 phase = NtLmAuthenticate; /* if ntlmssp, now final phase */
624
625 rc = small_smb2_init(SMB2_SESSION_SETUP, NULL, (void **) &req);
626 if (rc)
627 return rc;
628
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400629 req->hdr.SessionId = 0; /* First session, not a reauthenticate */
Steve Frencheed0e172015-02-06 00:03:52 -0600630 req->Flags = 0; /* MBZ */
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400631 /* to enable echos and oplocks */
632 req->hdr.CreditRequest = cpu_to_le16(3);
633
634 /* only one of SMB2 signing flags may be set in SMB2 request */
Jeff Layton38d77c52013-05-26 07:01:00 -0400635 if (server->sign)
636 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_REQUIRED;
637 else if (global_secflags & CIFSSEC_MAY_SIGN) /* one flag unlike MUST_ */
638 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED;
639 else
640 req->SecurityMode = 0;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400641
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400642 req->Capabilities = 0;
643 req->Channel = 0; /* MBZ */
644
645 iov[0].iov_base = (char *)req;
646 /* 4 for rfc1002 length field and 1 for pad */
647 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500648
649 if (ses->sectype == Kerberos) {
650#ifdef CONFIG_CIFS_UPCALL
651 struct cifs_spnego_msg *msg;
652
653 spnego_key = cifs_get_spnego_key(ses);
654 if (IS_ERR(spnego_key)) {
655 rc = PTR_ERR(spnego_key);
656 spnego_key = NULL;
657 goto ssetup_exit;
658 }
659
David Howells146aa8b2015-10-21 14:04:48 +0100660 msg = spnego_key->payload.data[0];
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500661 /*
662 * check version field to make sure that cifs.upcall is
663 * sending us a response in an expected form
664 */
665 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
666 cifs_dbg(VFS,
667 "bad cifs.upcall version. Expected %d got %d",
668 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
669 rc = -EKEYREJECTED;
670 goto ssetup_exit;
671 }
672 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
673 GFP_KERNEL);
674 if (!ses->auth_key.response) {
675 cifs_dbg(VFS,
676 "Kerberos can't allocate (%u bytes) memory",
677 msg->sesskey_len);
678 rc = -ENOMEM;
679 goto ssetup_exit;
680 }
681 ses->auth_key.len = msg->sesskey_len;
682 blob_length = msg->secblob_len;
683 iov[1].iov_base = msg->data + msg->sesskey_len;
684 iov[1].iov_len = blob_length;
685#else
686 rc = -EOPNOTSUPP;
687 goto ssetup_exit;
688#endif /* CONFIG_CIFS_UPCALL */
689 } else if (phase == NtLmNegotiate) { /* if not krb5 must be ntlmssp */
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400690 ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE),
691 GFP_KERNEL);
692 if (ntlmssp_blob == NULL) {
693 rc = -ENOMEM;
694 goto ssetup_exit;
695 }
696 build_ntlmssp_negotiate_blob(ntlmssp_blob, ses);
697 if (use_spnego) {
698 /* blob_length = build_spnego_ntlmssp_blob(
699 &security_blob,
700 sizeof(struct _NEGOTIATE_MESSAGE),
701 ntlmssp_blob); */
702 /* BB eventually need to add this */
Joe Perchesf96637b2013-05-04 22:12:25 -0500703 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400704 rc = -EOPNOTSUPP;
705 kfree(ntlmssp_blob);
706 goto ssetup_exit;
707 } else {
708 blob_length = sizeof(struct _NEGOTIATE_MESSAGE);
709 /* with raw NTLMSSP we don't encapsulate in SPNEGO */
710 security_blob = ntlmssp_blob;
711 }
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500712 iov[1].iov_base = security_blob;
713 iov[1].iov_len = blob_length;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400714 } else if (phase == NtLmAuthenticate) {
715 req->hdr.SessionId = ses->Suid;
716 ntlmssp_blob = kzalloc(sizeof(struct _NEGOTIATE_MESSAGE) + 500,
717 GFP_KERNEL);
718 if (ntlmssp_blob == NULL) {
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400719 rc = -ENOMEM;
720 goto ssetup_exit;
721 }
722 rc = build_ntlmssp_auth_blob(ntlmssp_blob, &blob_length, ses,
723 nls_cp);
724 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500725 cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n",
726 rc);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400727 goto ssetup_exit; /* BB double check error handling */
728 }
729 if (use_spnego) {
730 /* blob_length = build_spnego_ntlmssp_blob(
731 &security_blob,
732 blob_length,
733 ntlmssp_blob); */
Joe Perchesf96637b2013-05-04 22:12:25 -0500734 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400735 rc = -EOPNOTSUPP;
736 kfree(ntlmssp_blob);
737 goto ssetup_exit;
738 } else {
739 security_blob = ntlmssp_blob;
740 }
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500741 iov[1].iov_base = security_blob;
742 iov[1].iov_len = blob_length;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400743 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500744 cifs_dbg(VFS, "illegal ntlmssp phase\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400745 rc = -EIO;
746 goto ssetup_exit;
747 }
748
749 /* Testing shows that buffer offset must be at location of Buffer[0] */
750 req->SecurityBufferOffset =
751 cpu_to_le16(sizeof(struct smb2_sess_setup_req) -
752 1 /* pad */ - 4 /* rfc1001 len */);
753 req->SecurityBufferLength = cpu_to_le16(blob_length);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400754
755 inc_rfc1001_len(req, blob_length - 1 /* pad */);
756
757 /* BB add code to build os and lm fields */
758
Steve French6d8b59d2012-12-08 22:36:29 -0600759 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype,
760 CIFS_LOG_ERROR | CIFS_NEG_OP);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400761
762 kfree(security_blob);
763 rsp = (struct smb2_sess_setup_rsp *)iov[0].iov_base;
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500764 ses->Suid = rsp->hdr.SessionId;
Pavel Shilovsky4ca3a992012-09-25 11:00:09 +0400765 if (resp_buftype != CIFS_NO_BUFFER &&
766 rsp->hdr.Status == STATUS_MORE_PROCESSING_REQUIRED) {
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400767 if (phase != NtLmNegotiate) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500768 cifs_dbg(VFS, "Unexpected more processing error\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400769 goto ssetup_exit;
770 }
771 if (offsetof(struct smb2_sess_setup_rsp, Buffer) - 4 !=
Pavel Shilovsky4ca3a992012-09-25 11:00:09 +0400772 le16_to_cpu(rsp->SecurityBufferOffset)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500773 cifs_dbg(VFS, "Invalid security buffer offset %d\n",
774 le16_to_cpu(rsp->SecurityBufferOffset));
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400775 rc = -EIO;
776 goto ssetup_exit;
777 }
778
779 /* NTLMSSP Negotiate sent now processing challenge (response) */
780 phase = NtLmChallenge; /* process ntlmssp challenge */
781 rc = 0; /* MORE_PROCESSING is not an error here but expected */
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400782 rc = decode_ntlmssp_challenge(rsp->Buffer,
783 le16_to_cpu(rsp->SecurityBufferLength), ses);
784 }
785
786 /*
787 * BB eventually add code for SPNEGO decoding of NtlmChallenge blob,
788 * but at least the raw NTLMSSP case works.
789 */
790 /*
791 * No tcon so can't do
792 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
793 */
794 if (rc != 0)
795 goto ssetup_exit;
796
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400797 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
Steve French0cbaa532013-11-15 23:50:24 -0600798 if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA)
799 cifs_dbg(VFS, "SMB3 encryption not supported yet\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400800ssetup_exit:
801 free_rsp_buf(resp_buftype, rsp);
802
803 /* if ntlmssp, and negotiate succeeded, proceed to authenticate phase */
804 if ((phase == NtLmChallenge) && (rc == 0))
805 goto ssetup_ntlmssp_authenticate;
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -0500806
807 if (!rc) {
808 mutex_lock(&server->srv_mutex);
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500809 if (server->sign && server->ops->generate_signingkey) {
810 rc = server->ops->generate_signingkey(ses);
811 kfree(ses->auth_key.response);
812 ses->auth_key.response = NULL;
813 if (rc) {
814 cifs_dbg(FYI,
815 "SMB3 session key generation failed\n");
816 mutex_unlock(&server->srv_mutex);
817 goto keygen_exit;
818 }
819 }
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -0500820 if (!server->session_estab) {
821 server->sequence_number = 0x2;
822 server->session_estab = true;
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -0500823 }
824 mutex_unlock(&server->srv_mutex);
825
826 cifs_dbg(FYI, "SMB2/3 session established successfully\n");
827 spin_lock(&GlobalMid_Lock);
828 ses->status = CifsGood;
829 ses->need_reconnect = false;
830 spin_unlock(&GlobalMid_Lock);
831 }
832
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500833keygen_exit:
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -0500834 if (!server->sign) {
835 kfree(ses->auth_key.response);
836 ses->auth_key.response = NULL;
837 }
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500838 if (spnego_key) {
839 key_invalidate(spnego_key);
840 key_put(spnego_key);
841 }
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -0500842 kfree(ses->ntlmssp);
843
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400844 return rc;
845}
846
847int
848SMB2_logoff(const unsigned int xid, struct cifs_ses *ses)
849{
850 struct smb2_logoff_req *req; /* response is also trivial struct */
851 int rc = 0;
852 struct TCP_Server_Info *server;
853
Joe Perchesf96637b2013-05-04 22:12:25 -0500854 cifs_dbg(FYI, "disconnect session %p\n", ses);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400855
856 if (ses && (ses->server))
857 server = ses->server;
858 else
859 return -EIO;
860
Shirish Pargaonkareb4c7df2013-10-03 05:44:45 -0500861 /* no need to send SMB logoff if uid already closed due to reconnect */
862 if (ses->need_reconnect)
863 goto smb2_session_already_dead;
864
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400865 rc = small_smb2_init(SMB2_LOGOFF, NULL, (void **) &req);
866 if (rc)
867 return rc;
868
869 /* since no tcon, smb2_init can not do this, so do here */
870 req->hdr.SessionId = ses->Suid;
Jeff Layton38d77c52013-05-26 07:01:00 -0400871 if (server->sign)
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700872 req->hdr.Flags |= SMB2_FLAGS_SIGNED;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400873
874 rc = SendReceiveNoRsp(xid, ses, (char *) &req->hdr, 0);
875 /*
876 * No tcon so can't do
877 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
878 */
Shirish Pargaonkareb4c7df2013-10-03 05:44:45 -0500879
880smb2_session_already_dead:
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400881 return rc;
882}
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400883
884static inline void cifs_stats_fail_inc(struct cifs_tcon *tcon, uint16_t code)
885{
Pavel Shilovskyd60622e2012-05-28 15:19:39 +0400886 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_failed[code]);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400887}
888
889#define MAX_SHARENAME_LENGTH (255 /* server */ + 80 /* share */ + 1 /* NULL */)
890
Steve Frenchde9f68d2013-11-15 11:26:24 -0600891/* These are similar values to what Windows uses */
892static inline void init_copy_chunk_defaults(struct cifs_tcon *tcon)
893{
894 tcon->max_chunks = 256;
895 tcon->max_bytes_chunk = 1048576;
896 tcon->max_bytes_copy = 16777216;
897}
898
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400899int
900SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
901 struct cifs_tcon *tcon, const struct nls_table *cp)
902{
903 struct smb2_tree_connect_req *req;
904 struct smb2_tree_connect_rsp *rsp = NULL;
905 struct kvec iov[2];
906 int rc = 0;
907 int resp_buftype;
908 int unc_path_len;
909 struct TCP_Server_Info *server;
910 __le16 *unc_path = NULL;
911
Joe Perchesf96637b2013-05-04 22:12:25 -0500912 cifs_dbg(FYI, "TCON\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400913
914 if ((ses->server) && tree)
915 server = ses->server;
916 else
917 return -EIO;
918
919 if (tcon && tcon->bad_network_name)
920 return -ENOENT;
921
Steve Frenchff9f84b2015-09-26 09:48:58 -0500922 if ((tcon && tcon->seal) &&
Steve French88627142015-09-22 03:16:27 -0500923 ((ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION) == 0)) {
924 cifs_dbg(VFS, "encryption requested but no server support");
925 return -EOPNOTSUPP;
926 }
927
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400928 unc_path = kmalloc(MAX_SHARENAME_LENGTH * 2, GFP_KERNEL);
929 if (unc_path == NULL)
930 return -ENOMEM;
931
932 unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp) + 1;
933 unc_path_len *= 2;
934 if (unc_path_len < 2) {
935 kfree(unc_path);
936 return -EINVAL;
937 }
938
939 rc = small_smb2_init(SMB2_TREE_CONNECT, tcon, (void **) &req);
940 if (rc) {
941 kfree(unc_path);
942 return rc;
943 }
944
945 if (tcon == NULL) {
946 /* since no tcon, smb2_init can not do this, so do here */
947 req->hdr.SessionId = ses->Suid;
948 /* if (ses->server->sec_mode & SECMODE_SIGN_REQUIRED)
949 req->hdr.Flags |= SMB2_FLAGS_SIGNED; */
950 }
951
952 iov[0].iov_base = (char *)req;
953 /* 4 for rfc1002 length field and 1 for pad */
954 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
955
956 /* Testing shows that buffer offset must be at location of Buffer[0] */
957 req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)
958 - 1 /* pad */ - 4 /* do not count rfc1001 len field */);
959 req->PathLength = cpu_to_le16(unc_path_len - 2);
960 iov[1].iov_base = unc_path;
961 iov[1].iov_len = unc_path_len;
962
963 inc_rfc1001_len(req, unc_path_len - 1 /* pad */);
964
965 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0);
966 rsp = (struct smb2_tree_connect_rsp *)iov[0].iov_base;
967
968 if (rc != 0) {
969 if (tcon) {
970 cifs_stats_fail_inc(tcon, SMB2_TREE_CONNECT_HE);
971 tcon->need_reconnect = true;
972 }
973 goto tcon_error_exit;
974 }
975
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400976 if (tcon == NULL) {
977 ses->ipc_tid = rsp->hdr.TreeId;
978 goto tcon_exit;
979 }
980
981 if (rsp->ShareType & SMB2_SHARE_TYPE_DISK)
Joe Perchesf96637b2013-05-04 22:12:25 -0500982 cifs_dbg(FYI, "connection to disk share\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400983 else if (rsp->ShareType & SMB2_SHARE_TYPE_PIPE) {
984 tcon->ipc = true;
Joe Perchesf96637b2013-05-04 22:12:25 -0500985 cifs_dbg(FYI, "connection to pipe share\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400986 } else if (rsp->ShareType & SMB2_SHARE_TYPE_PRINT) {
987 tcon->print = true;
Joe Perchesf96637b2013-05-04 22:12:25 -0500988 cifs_dbg(FYI, "connection to printer\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400989 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500990 cifs_dbg(VFS, "unknown share type %d\n", rsp->ShareType);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400991 rc = -EOPNOTSUPP;
992 goto tcon_error_exit;
993 }
994
995 tcon->share_flags = le32_to_cpu(rsp->ShareFlags);
Steve French769ee6a2013-06-19 14:15:30 -0500996 tcon->capabilities = rsp->Capabilities; /* we keep caps little endian */
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400997 tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess);
998 tcon->tidStatus = CifsGood;
999 tcon->need_reconnect = false;
1000 tcon->tid = rsp->hdr.TreeId;
Zhao Hongjiang46b51d02013-06-24 01:57:47 -05001001 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001002
1003 if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) &&
1004 ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0))
Joe Perchesf96637b2013-05-04 22:12:25 -05001005 cifs_dbg(VFS, "DFS capability contradicts DFS flag\n");
Steve Frenchde9f68d2013-11-15 11:26:24 -06001006 init_copy_chunk_defaults(tcon);
Steve French88627142015-09-22 03:16:27 -05001007 if (tcon->share_flags & SHI1005_FLAGS_ENCRYPT_DATA)
1008 cifs_dbg(VFS, "Encrypted shares not supported");
Steve Frenchff1c0382013-11-19 23:44:46 -06001009 if (tcon->ses->server->ops->validate_negotiate)
1010 rc = tcon->ses->server->ops->validate_negotiate(xid, tcon);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001011tcon_exit:
1012 free_rsp_buf(resp_buftype, rsp);
1013 kfree(unc_path);
1014 return rc;
1015
1016tcon_error_exit:
1017 if (rsp->hdr.Status == STATUS_BAD_NETWORK_NAME) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001018 cifs_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree);
Steve French18f39e72014-08-17 00:22:24 -05001019 if (tcon)
1020 tcon->bad_network_name = true;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001021 }
1022 goto tcon_exit;
1023}
1024
1025int
1026SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
1027{
1028 struct smb2_tree_disconnect_req *req; /* response is trivial */
1029 int rc = 0;
1030 struct TCP_Server_Info *server;
1031 struct cifs_ses *ses = tcon->ses;
1032
Joe Perchesf96637b2013-05-04 22:12:25 -05001033 cifs_dbg(FYI, "Tree Disconnect\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001034
1035 if (ses && (ses->server))
1036 server = ses->server;
1037 else
1038 return -EIO;
1039
1040 if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
1041 return 0;
1042
1043 rc = small_smb2_init(SMB2_TREE_DISCONNECT, tcon, (void **) &req);
1044 if (rc)
1045 return rc;
1046
1047 rc = SendReceiveNoRsp(xid, ses, (char *)&req->hdr, 0);
1048 if (rc)
1049 cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE);
1050
1051 return rc;
1052}
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001053
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001054
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001055static struct create_durable *
1056create_durable_buf(void)
1057{
1058 struct create_durable *buf;
1059
1060 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1061 if (!buf)
1062 return NULL;
1063
1064 buf->ccontext.DataOffset = cpu_to_le16(offsetof
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001065 (struct create_durable, Data));
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001066 buf->ccontext.DataLength = cpu_to_le32(16);
1067 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1068 (struct create_durable, Name));
1069 buf->ccontext.NameLength = cpu_to_le16(4);
Steve French12197a72014-05-14 05:29:40 -07001070 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DHnQ" */
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001071 buf->Name[0] = 'D';
1072 buf->Name[1] = 'H';
1073 buf->Name[2] = 'n';
1074 buf->Name[3] = 'Q';
1075 return buf;
1076}
1077
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001078static struct create_durable *
1079create_reconnect_durable_buf(struct cifs_fid *fid)
1080{
1081 struct create_durable *buf;
1082
1083 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1084 if (!buf)
1085 return NULL;
1086
1087 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1088 (struct create_durable, Data));
1089 buf->ccontext.DataLength = cpu_to_le32(16);
1090 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1091 (struct create_durable, Name));
1092 buf->ccontext.NameLength = cpu_to_le16(4);
1093 buf->Data.Fid.PersistentFileId = fid->persistent_fid;
1094 buf->Data.Fid.VolatileFileId = fid->volatile_fid;
Steve French12197a72014-05-14 05:29:40 -07001095 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT is "DHnC" */
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001096 buf->Name[0] = 'D';
1097 buf->Name[1] = 'H';
1098 buf->Name[2] = 'n';
1099 buf->Name[3] = 'C';
1100 return buf;
1101}
1102
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001103static __u8
Pavel Shilovsky42873b02013-09-05 21:30:16 +04001104parse_lease_state(struct TCP_Server_Info *server, struct smb2_create_rsp *rsp,
1105 unsigned int *epoch)
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001106{
1107 char *data_offset;
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001108 struct create_context *cc;
Justin Maggarddeb7def2016-02-09 15:52:08 -08001109 unsigned int next;
1110 unsigned int remaining;
Pavel Shilovskyfd554392013-07-09 19:44:56 +04001111 char *name;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001112
Pavel Shilovskyfd554392013-07-09 19:44:56 +04001113 data_offset = (char *)rsp + 4 + le32_to_cpu(rsp->CreateContextsOffset);
Justin Maggarddeb7def2016-02-09 15:52:08 -08001114 remaining = le32_to_cpu(rsp->CreateContextsLength);
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001115 cc = (struct create_context *)data_offset;
Justin Maggarddeb7def2016-02-09 15:52:08 -08001116 while (remaining >= sizeof(struct create_context)) {
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001117 name = le16_to_cpu(cc->NameOffset) + (char *)cc;
Justin Maggarddeb7def2016-02-09 15:52:08 -08001118 if (le16_to_cpu(cc->NameLength) == 4 &&
1119 strncmp(name, "RqLs", 4) == 0)
1120 return server->ops->parse_lease_buf(cc, epoch);
1121
1122 next = le32_to_cpu(cc->Next);
1123 if (!next)
1124 break;
1125 remaining -= next;
1126 cc = (struct create_context *)((char *)cc + next);
1127 }
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001128
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001129 return 0;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001130}
1131
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001132static int
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001133add_lease_context(struct TCP_Server_Info *server, struct kvec *iov,
1134 unsigned int *num_iovec, __u8 *oplock)
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001135{
1136 struct smb2_create_req *req = iov[0].iov_base;
1137 unsigned int num = *num_iovec;
1138
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001139 iov[num].iov_base = server->ops->create_lease_buf(oplock+1, *oplock);
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001140 if (iov[num].iov_base == NULL)
1141 return -ENOMEM;
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001142 iov[num].iov_len = server->vals->create_lease_size;
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001143 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_LEASE;
1144 if (!req->CreateContextsOffset)
1145 req->CreateContextsOffset = cpu_to_le32(
1146 sizeof(struct smb2_create_req) - 4 +
1147 iov[num - 1].iov_len);
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001148 le32_add_cpu(&req->CreateContextsLength,
1149 server->vals->create_lease_size);
1150 inc_rfc1001_len(&req->hdr, server->vals->create_lease_size);
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001151 *num_iovec = num + 1;
1152 return 0;
1153}
1154
Steve Frenchb56eae42015-11-03 09:26:27 -06001155static struct create_durable_v2 *
1156create_durable_v2_buf(struct cifs_fid *pfid)
1157{
1158 struct create_durable_v2 *buf;
1159
1160 buf = kzalloc(sizeof(struct create_durable_v2), GFP_KERNEL);
1161 if (!buf)
1162 return NULL;
1163
1164 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1165 (struct create_durable_v2, dcontext));
1166 buf->ccontext.DataLength = cpu_to_le32(sizeof(struct durable_context_v2));
1167 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1168 (struct create_durable_v2, Name));
1169 buf->ccontext.NameLength = cpu_to_le16(4);
1170
1171 buf->dcontext.Timeout = 0; /* Should this be configurable by workload */
1172 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
1173 get_random_bytes(buf->dcontext.CreateGuid, 16);
1174 memcpy(pfid->create_guid, buf->dcontext.CreateGuid, 16);
1175
1176 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DH2Q" */
1177 buf->Name[0] = 'D';
1178 buf->Name[1] = 'H';
1179 buf->Name[2] = '2';
1180 buf->Name[3] = 'Q';
1181 return buf;
1182}
1183
1184static struct create_durable_handle_reconnect_v2 *
1185create_reconnect_durable_v2_buf(struct cifs_fid *fid)
1186{
1187 struct create_durable_handle_reconnect_v2 *buf;
1188
1189 buf = kzalloc(sizeof(struct create_durable_handle_reconnect_v2),
1190 GFP_KERNEL);
1191 if (!buf)
1192 return NULL;
1193
1194 buf->ccontext.DataOffset =
1195 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
1196 dcontext));
1197 buf->ccontext.DataLength =
1198 cpu_to_le32(sizeof(struct durable_reconnect_context_v2));
1199 buf->ccontext.NameOffset =
1200 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
1201 Name));
1202 buf->ccontext.NameLength = cpu_to_le16(4);
1203
1204 buf->dcontext.Fid.PersistentFileId = fid->persistent_fid;
1205 buf->dcontext.Fid.VolatileFileId = fid->volatile_fid;
1206 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
1207 memcpy(buf->dcontext.CreateGuid, fid->create_guid, 16);
1208
1209 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 is "DH2C" */
1210 buf->Name[0] = 'D';
1211 buf->Name[1] = 'H';
1212 buf->Name[2] = '2';
1213 buf->Name[3] = 'C';
1214 return buf;
1215}
1216
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001217static int
Steve Frenchb56eae42015-11-03 09:26:27 -06001218add_durable_v2_context(struct kvec *iov, unsigned int *num_iovec,
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001219 struct cifs_open_parms *oparms)
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001220{
1221 struct smb2_create_req *req = iov[0].iov_base;
1222 unsigned int num = *num_iovec;
1223
Steve Frenchb56eae42015-11-03 09:26:27 -06001224 iov[num].iov_base = create_durable_v2_buf(oparms->fid);
1225 if (iov[num].iov_base == NULL)
1226 return -ENOMEM;
1227 iov[num].iov_len = sizeof(struct create_durable_v2);
1228 if (!req->CreateContextsOffset)
1229 req->CreateContextsOffset =
1230 cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1231 iov[1].iov_len);
1232 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable_v2));
1233 inc_rfc1001_len(&req->hdr, sizeof(struct create_durable_v2));
1234 *num_iovec = num + 1;
1235 return 0;
1236}
1237
1238static int
1239add_durable_reconnect_v2_context(struct kvec *iov, unsigned int *num_iovec,
1240 struct cifs_open_parms *oparms)
1241{
1242 struct smb2_create_req *req = iov[0].iov_base;
1243 unsigned int num = *num_iovec;
1244
1245 /* indicate that we don't need to relock the file */
1246 oparms->reconnect = false;
1247
1248 iov[num].iov_base = create_reconnect_durable_v2_buf(oparms->fid);
1249 if (iov[num].iov_base == NULL)
1250 return -ENOMEM;
1251 iov[num].iov_len = sizeof(struct create_durable_handle_reconnect_v2);
1252 if (!req->CreateContextsOffset)
1253 req->CreateContextsOffset =
1254 cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1255 iov[1].iov_len);
1256 le32_add_cpu(&req->CreateContextsLength,
1257 sizeof(struct create_durable_handle_reconnect_v2));
1258 inc_rfc1001_len(&req->hdr,
1259 sizeof(struct create_durable_handle_reconnect_v2));
1260 *num_iovec = num + 1;
1261 return 0;
1262}
1263
1264static int
1265add_durable_context(struct kvec *iov, unsigned int *num_iovec,
1266 struct cifs_open_parms *oparms, bool use_persistent)
1267{
1268 struct smb2_create_req *req = iov[0].iov_base;
1269 unsigned int num = *num_iovec;
1270
1271 if (use_persistent) {
1272 if (oparms->reconnect)
1273 return add_durable_reconnect_v2_context(iov, num_iovec,
1274 oparms);
1275 else
1276 return add_durable_v2_context(iov, num_iovec, oparms);
1277 }
1278
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001279 if (oparms->reconnect) {
1280 iov[num].iov_base = create_reconnect_durable_buf(oparms->fid);
1281 /* indicate that we don't need to relock the file */
1282 oparms->reconnect = false;
1283 } else
1284 iov[num].iov_base = create_durable_buf();
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001285 if (iov[num].iov_base == NULL)
1286 return -ENOMEM;
1287 iov[num].iov_len = sizeof(struct create_durable);
1288 if (!req->CreateContextsOffset)
1289 req->CreateContextsOffset =
1290 cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1291 iov[1].iov_len);
Wei Yongjun31f92e92013-08-26 14:34:46 +08001292 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable));
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001293 inc_rfc1001_len(&req->hdr, sizeof(struct create_durable));
1294 *num_iovec = num + 1;
1295 return 0;
1296}
1297
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001298int
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001299SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, __le16 *path,
Pavel Shilovskyb42bf882013-08-14 19:25:21 +04001300 __u8 *oplock, struct smb2_file_all_info *buf,
1301 struct smb2_err_rsp **err_buf)
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001302{
1303 struct smb2_create_req *req;
1304 struct smb2_create_rsp *rsp;
1305 struct TCP_Server_Info *server;
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001306 struct cifs_tcon *tcon = oparms->tcon;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001307 struct cifs_ses *ses = tcon->ses;
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001308 struct kvec iov[4];
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001309 int resp_buftype;
1310 int uni_path_len;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001311 __le16 *copy_path = NULL;
1312 int copy_size;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001313 int rc = 0;
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04001314 unsigned int num_iovecs = 2;
Pavel Shilovskyca819832013-07-05 12:21:26 +04001315 __u32 file_attributes = 0;
Pavel Shilovsky663a96212014-05-24 16:42:02 +04001316 char *dhc_buf = NULL, *lc_buf = NULL;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001317
Joe Perchesf96637b2013-05-04 22:12:25 -05001318 cifs_dbg(FYI, "create/open\n");
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001319
1320 if (ses && (ses->server))
1321 server = ses->server;
1322 else
1323 return -EIO;
1324
1325 rc = small_smb2_init(SMB2_CREATE, tcon, (void **) &req);
1326 if (rc)
1327 return rc;
1328
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001329 if (oparms->create_options & CREATE_OPTION_READONLY)
Pavel Shilovskyca819832013-07-05 12:21:26 +04001330 file_attributes |= ATTR_READONLY;
Steve Frenchdb8b6312014-09-22 05:13:55 -05001331 if (oparms->create_options & CREATE_OPTION_SPECIAL)
1332 file_attributes |= ATTR_SYSTEM;
Pavel Shilovskyca819832013-07-05 12:21:26 +04001333
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001334 req->ImpersonationLevel = IL_IMPERSONATION;
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001335 req->DesiredAccess = cpu_to_le32(oparms->desired_access);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001336 /* File attributes ignored on open (used in create though) */
1337 req->FileAttributes = cpu_to_le32(file_attributes);
1338 req->ShareAccess = FILE_SHARE_ALL_LE;
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001339 req->CreateDisposition = cpu_to_le32(oparms->disposition);
1340 req->CreateOptions = cpu_to_le32(oparms->create_options & CREATE_OPTIONS_MASK);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001341 uni_path_len = (2 * UniStrnlen((wchar_t *)path, PATH_MAX)) + 2;
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04001342 /* do not count rfc1001 len field */
1343 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req) - 4);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001344
1345 iov[0].iov_base = (char *)req;
1346 /* 4 for rfc1002 length field */
1347 iov[0].iov_len = get_rfc1002_length(req) + 4;
1348
1349 /* MUST set path len (NameLength) to 0 opening root of share */
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04001350 req->NameLength = cpu_to_le16(uni_path_len - 2);
1351 /* -1 since last byte is buf[0] which is sent below (path) */
1352 iov[0].iov_len--;
1353 if (uni_path_len % 8 != 0) {
1354 copy_size = uni_path_len / 8 * 8;
1355 if (copy_size < uni_path_len)
1356 copy_size += 8;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001357
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04001358 copy_path = kzalloc(copy_size, GFP_KERNEL);
1359 if (!copy_path)
1360 return -ENOMEM;
1361 memcpy((char *)copy_path, (const char *)path,
1362 uni_path_len);
1363 uni_path_len = copy_size;
1364 path = copy_path;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001365 }
1366
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04001367 iov[1].iov_len = uni_path_len;
1368 iov[1].iov_base = path;
1369 /* -1 since last byte is buf[0] which was counted in smb2_buf_len */
1370 inc_rfc1001_len(req, uni_path_len - 1);
1371
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001372 if (!server->oplocks)
1373 *oplock = SMB2_OPLOCK_LEVEL_NONE;
1374
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001375 if (!(server->capabilities & SMB2_GLOBAL_CAP_LEASING) ||
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001376 *oplock == SMB2_OPLOCK_LEVEL_NONE)
1377 req->RequestedOplockLevel = *oplock;
1378 else {
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001379 rc = add_lease_context(server, iov, &num_iovecs, oplock);
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001380 if (rc) {
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001381 cifs_small_buf_release(req);
1382 kfree(copy_path);
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001383 return rc;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001384 }
Pavel Shilovsky663a96212014-05-24 16:42:02 +04001385 lc_buf = iov[num_iovecs-1].iov_base;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001386 }
1387
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001388 if (*oplock == SMB2_OPLOCK_LEVEL_BATCH) {
1389 /* need to set Next field of lease context if we request it */
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001390 if (server->capabilities & SMB2_GLOBAL_CAP_LEASING) {
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001391 struct create_context *ccontext =
1392 (struct create_context *)iov[num_iovecs-1].iov_base;
Steve French1c469432013-07-10 12:50:57 -05001393 ccontext->Next =
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001394 cpu_to_le32(server->vals->create_lease_size);
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001395 }
Steve Frenchb56eae42015-11-03 09:26:27 -06001396
1397 rc = add_durable_context(iov, &num_iovecs, oparms,
1398 tcon->use_persistent);
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001399 if (rc) {
1400 cifs_small_buf_release(req);
1401 kfree(copy_path);
Pavel Shilovsky663a96212014-05-24 16:42:02 +04001402 kfree(lc_buf);
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001403 return rc;
1404 }
Pavel Shilovsky663a96212014-05-24 16:42:02 +04001405 dhc_buf = iov[num_iovecs-1].iov_base;
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001406 }
1407
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001408 rc = SendReceive2(xid, ses, iov, num_iovecs, &resp_buftype, 0);
1409 rsp = (struct smb2_create_rsp *)iov[0].iov_base;
1410
1411 if (rc != 0) {
1412 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
Pavel Shilovskyb42bf882013-08-14 19:25:21 +04001413 if (err_buf)
1414 *err_buf = kmemdup(rsp, get_rfc1002_length(rsp) + 4,
1415 GFP_KERNEL);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001416 goto creat_exit;
1417 }
1418
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001419 oparms->fid->persistent_fid = rsp->PersistentFileId;
1420 oparms->fid->volatile_fid = rsp->VolatileFileId;
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001421
1422 if (buf) {
1423 memcpy(buf, &rsp->CreationTime, 32);
1424 buf->AllocationSize = rsp->AllocationSize;
1425 buf->EndOfFile = rsp->EndofFile;
1426 buf->Attributes = rsp->FileAttributes;
1427 buf->NumberOfLinks = cpu_to_le32(1);
1428 buf->DeletePending = 0;
1429 }
Pavel Shilovsky2e44b282012-09-18 16:20:33 -07001430
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001431 if (rsp->OplockLevel == SMB2_OPLOCK_LEVEL_LEASE)
Pavel Shilovsky42873b02013-09-05 21:30:16 +04001432 *oplock = parse_lease_state(server, rsp, &oparms->fid->epoch);
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001433 else
1434 *oplock = rsp->OplockLevel;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001435creat_exit:
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001436 kfree(copy_path);
Pavel Shilovsky663a96212014-05-24 16:42:02 +04001437 kfree(lc_buf);
1438 kfree(dhc_buf);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001439 free_rsp_buf(resp_buftype, rsp);
1440 return rc;
1441}
1442
Steve French4a72daf2013-06-25 00:20:49 -05001443/*
1444 * SMB2 IOCTL is used for both IOCTLs and FSCTLs
1445 */
1446int
1447SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
1448 u64 volatile_fid, u32 opcode, bool is_fsctl, char *in_data,
1449 u32 indatalen, char **out_data, u32 *plen /* returned data len */)
1450{
1451 struct smb2_ioctl_req *req;
1452 struct smb2_ioctl_rsp *rsp;
1453 struct TCP_Server_Info *server;
Steve French8e353102015-03-26 19:47:02 -05001454 struct cifs_ses *ses;
Steve French4a72daf2013-06-25 00:20:49 -05001455 struct kvec iov[2];
1456 int resp_buftype;
1457 int num_iovecs;
1458 int rc = 0;
1459
1460 cifs_dbg(FYI, "SMB2 IOCTL\n");
1461
Steve French3d1a3742014-08-11 21:05:25 -05001462 if (out_data != NULL)
1463 *out_data = NULL;
1464
Steve French4a72daf2013-06-25 00:20:49 -05001465 /* zero out returned data len, in case of error */
1466 if (plen)
1467 *plen = 0;
1468
Steve French8e353102015-03-26 19:47:02 -05001469 if (tcon)
1470 ses = tcon->ses;
1471 else
1472 return -EIO;
1473
Steve French4a72daf2013-06-25 00:20:49 -05001474 if (ses && (ses->server))
1475 server = ses->server;
1476 else
1477 return -EIO;
1478
1479 rc = small_smb2_init(SMB2_IOCTL, tcon, (void **) &req);
1480 if (rc)
1481 return rc;
1482
1483 req->CtlCode = cpu_to_le32(opcode);
1484 req->PersistentFileId = persistent_fid;
1485 req->VolatileFileId = volatile_fid;
1486
1487 if (indatalen) {
1488 req->InputCount = cpu_to_le32(indatalen);
1489 /* do not set InputOffset if no input data */
1490 req->InputOffset =
1491 cpu_to_le32(offsetof(struct smb2_ioctl_req, Buffer) - 4);
1492 iov[1].iov_base = in_data;
1493 iov[1].iov_len = indatalen;
1494 num_iovecs = 2;
1495 } else
1496 num_iovecs = 1;
1497
1498 req->OutputOffset = 0;
1499 req->OutputCount = 0; /* MBZ */
1500
1501 /*
1502 * Could increase MaxOutputResponse, but that would require more
1503 * than one credit. Windows typically sets this smaller, but for some
1504 * ioctls it may be useful to allow server to send more. No point
1505 * limiting what the server can send as long as fits in one credit
1506 */
1507 req->MaxOutputResponse = cpu_to_le32(0xFF00); /* < 64K uses 1 credit */
1508
1509 if (is_fsctl)
1510 req->Flags = cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL);
1511 else
1512 req->Flags = 0;
1513
1514 iov[0].iov_base = (char *)req;
Steve French4a72daf2013-06-25 00:20:49 -05001515
Steve French7ff8d452013-10-14 00:44:19 -05001516 /*
1517 * If no input data, the size of ioctl struct in
1518 * protocol spec still includes a 1 byte data buffer,
1519 * but if input data passed to ioctl, we do not
1520 * want to double count this, so we do not send
1521 * the dummy one byte of data in iovec[0] if sending
1522 * input data (in iovec[1]). We also must add 4 bytes
1523 * in first iovec to allow for rfc1002 length field.
1524 */
1525
1526 if (indatalen) {
1527 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1528 inc_rfc1001_len(req, indatalen - 1);
1529 } else
1530 iov[0].iov_len = get_rfc1002_length(req) + 4;
1531
Steve French4a72daf2013-06-25 00:20:49 -05001532
1533 rc = SendReceive2(xid, ses, iov, num_iovecs, &resp_buftype, 0);
1534 rsp = (struct smb2_ioctl_rsp *)iov[0].iov_base;
1535
Steve French9bf0c9c2013-11-16 18:05:28 -06001536 if ((rc != 0) && (rc != -EINVAL)) {
Steve French8e353102015-03-26 19:47:02 -05001537 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
Steve French4a72daf2013-06-25 00:20:49 -05001538 goto ioctl_exit;
Steve French9bf0c9c2013-11-16 18:05:28 -06001539 } else if (rc == -EINVAL) {
1540 if ((opcode != FSCTL_SRV_COPYCHUNK_WRITE) &&
1541 (opcode != FSCTL_SRV_COPYCHUNK)) {
Steve French8e353102015-03-26 19:47:02 -05001542 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
Steve French9bf0c9c2013-11-16 18:05:28 -06001543 goto ioctl_exit;
1544 }
Steve French4a72daf2013-06-25 00:20:49 -05001545 }
1546
1547 /* check if caller wants to look at return data or just return rc */
1548 if ((plen == NULL) || (out_data == NULL))
1549 goto ioctl_exit;
1550
1551 *plen = le32_to_cpu(rsp->OutputCount);
1552
1553 /* We check for obvious errors in the output buffer length and offset */
1554 if (*plen == 0)
1555 goto ioctl_exit; /* server returned no data */
1556 else if (*plen > 0xFF00) {
1557 cifs_dbg(VFS, "srv returned invalid ioctl length: %d\n", *plen);
1558 *plen = 0;
1559 rc = -EIO;
1560 goto ioctl_exit;
1561 }
1562
1563 if (get_rfc1002_length(rsp) < le32_to_cpu(rsp->OutputOffset) + *plen) {
1564 cifs_dbg(VFS, "Malformed ioctl resp: len %d offset %d\n", *plen,
1565 le32_to_cpu(rsp->OutputOffset));
1566 *plen = 0;
1567 rc = -EIO;
1568 goto ioctl_exit;
1569 }
1570
1571 *out_data = kmalloc(*plen, GFP_KERNEL);
1572 if (*out_data == NULL) {
1573 rc = -ENOMEM;
1574 goto ioctl_exit;
1575 }
1576
Steve French373512e2015-12-18 13:05:30 -06001577 memcpy(*out_data,
1578 (char *)&rsp->hdr.ProtocolId + le32_to_cpu(rsp->OutputOffset),
Steve French4a72daf2013-06-25 00:20:49 -05001579 *plen);
1580ioctl_exit:
1581 free_rsp_buf(resp_buftype, rsp);
1582 return rc;
1583}
1584
Steve French64a5cfa2013-10-14 15:31:32 -05001585/*
1586 * Individual callers to ioctl worker function follow
1587 */
1588
1589int
1590SMB2_set_compression(const unsigned int xid, struct cifs_tcon *tcon,
1591 u64 persistent_fid, u64 volatile_fid)
1592{
1593 int rc;
Steve French64a5cfa2013-10-14 15:31:32 -05001594 struct compress_ioctl fsctl_input;
1595 char *ret_data = NULL;
1596
1597 fsctl_input.CompressionState =
Fabian Frederickbc09d142014-12-10 15:41:15 -08001598 cpu_to_le16(COMPRESSION_FORMAT_DEFAULT);
Steve French64a5cfa2013-10-14 15:31:32 -05001599
1600 rc = SMB2_ioctl(xid, tcon, persistent_fid, volatile_fid,
1601 FSCTL_SET_COMPRESSION, true /* is_fsctl */,
1602 (char *)&fsctl_input /* data input */,
1603 2 /* in data len */, &ret_data /* out data */, NULL);
1604
1605 cifs_dbg(FYI, "set compression rc %d\n", rc);
Steve French64a5cfa2013-10-14 15:31:32 -05001606
1607 return rc;
1608}
1609
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001610int
1611SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
1612 u64 persistent_fid, u64 volatile_fid)
1613{
1614 struct smb2_close_req *req;
1615 struct smb2_close_rsp *rsp;
1616 struct TCP_Server_Info *server;
1617 struct cifs_ses *ses = tcon->ses;
1618 struct kvec iov[1];
1619 int resp_buftype;
1620 int rc = 0;
1621
Joe Perchesf96637b2013-05-04 22:12:25 -05001622 cifs_dbg(FYI, "Close\n");
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001623
1624 if (ses && (ses->server))
1625 server = ses->server;
1626 else
1627 return -EIO;
1628
1629 rc = small_smb2_init(SMB2_CLOSE, tcon, (void **) &req);
1630 if (rc)
1631 return rc;
1632
1633 req->PersistentFileId = persistent_fid;
1634 req->VolatileFileId = volatile_fid;
1635
1636 iov[0].iov_base = (char *)req;
1637 /* 4 for rfc1002 length field */
1638 iov[0].iov_len = get_rfc1002_length(req) + 4;
1639
1640 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
1641 rsp = (struct smb2_close_rsp *)iov[0].iov_base;
1642
1643 if (rc != 0) {
Namjae Jeond4a029d2014-08-20 19:39:59 +09001644 cifs_stats_fail_inc(tcon, SMB2_CLOSE_HE);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001645 goto close_exit;
1646 }
1647
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001648 /* BB FIXME - decode close response, update inode for caching */
1649
1650close_exit:
1651 free_rsp_buf(resp_buftype, rsp);
1652 return rc;
1653}
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001654
1655static int
1656validate_buf(unsigned int offset, unsigned int buffer_length,
1657 struct smb2_hdr *hdr, unsigned int min_buf_size)
1658
1659{
1660 unsigned int smb_len = be32_to_cpu(hdr->smb2_buf_length);
1661 char *end_of_smb = smb_len + 4 /* RFC1001 length field */ + (char *)hdr;
1662 char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
1663 char *end_of_buf = begin_of_buf + buffer_length;
1664
1665
1666 if (buffer_length < min_buf_size) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001667 cifs_dbg(VFS, "buffer length %d smaller than minimum size %d\n",
1668 buffer_length, min_buf_size);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001669 return -EINVAL;
1670 }
1671
1672 /* check if beyond RFC1001 maximum length */
1673 if ((smb_len > 0x7FFFFF) || (buffer_length > 0x7FFFFF)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001674 cifs_dbg(VFS, "buffer length %d or smb length %d too large\n",
1675 buffer_length, smb_len);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001676 return -EINVAL;
1677 }
1678
1679 if ((begin_of_buf > end_of_smb) || (end_of_buf > end_of_smb)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001680 cifs_dbg(VFS, "illegal server response, bad offset to data\n");
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001681 return -EINVAL;
1682 }
1683
1684 return 0;
1685}
1686
1687/*
1688 * If SMB buffer fields are valid, copy into temporary buffer to hold result.
1689 * Caller must free buffer.
1690 */
1691static int
1692validate_and_copy_buf(unsigned int offset, unsigned int buffer_length,
1693 struct smb2_hdr *hdr, unsigned int minbufsize,
1694 char *data)
1695
1696{
1697 char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
1698 int rc;
1699
1700 if (!data)
1701 return -EINVAL;
1702
1703 rc = validate_buf(offset, buffer_length, hdr, minbufsize);
1704 if (rc)
1705 return rc;
1706
1707 memcpy(data, begin_of_buf, buffer_length);
1708
1709 return 0;
1710}
1711
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001712static int
1713query_info(const unsigned int xid, struct cifs_tcon *tcon,
1714 u64 persistent_fid, u64 volatile_fid, u8 info_class,
1715 size_t output_len, size_t min_len, void *data)
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001716{
1717 struct smb2_query_info_req *req;
1718 struct smb2_query_info_rsp *rsp = NULL;
1719 struct kvec iov[2];
1720 int rc = 0;
1721 int resp_buftype;
1722 struct TCP_Server_Info *server;
1723 struct cifs_ses *ses = tcon->ses;
1724
Joe Perchesf96637b2013-05-04 22:12:25 -05001725 cifs_dbg(FYI, "Query Info\n");
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001726
1727 if (ses && (ses->server))
1728 server = ses->server;
1729 else
1730 return -EIO;
1731
1732 rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
1733 if (rc)
1734 return rc;
1735
1736 req->InfoType = SMB2_O_INFO_FILE;
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001737 req->FileInfoClass = info_class;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001738 req->PersistentFileId = persistent_fid;
1739 req->VolatileFileId = volatile_fid;
1740 /* 4 for rfc1002 length field and 1 for Buffer */
1741 req->InputBufferOffset =
1742 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001743 req->OutputBufferLength = cpu_to_le32(output_len);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001744
1745 iov[0].iov_base = (char *)req;
1746 /* 4 for rfc1002 length field */
1747 iov[0].iov_len = get_rfc1002_length(req) + 4;
1748
1749 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04001750 rsp = (struct smb2_query_info_rsp *)iov[0].iov_base;
1751
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001752 if (rc) {
1753 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
1754 goto qinf_exit;
1755 }
1756
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001757 rc = validate_and_copy_buf(le16_to_cpu(rsp->OutputBufferOffset),
1758 le32_to_cpu(rsp->OutputBufferLength),
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001759 &rsp->hdr, min_len, data);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001760
1761qinf_exit:
1762 free_rsp_buf(resp_buftype, rsp);
1763 return rc;
1764}
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001765
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001766int
1767SMB2_query_info(const unsigned int xid, struct cifs_tcon *tcon,
1768 u64 persistent_fid, u64 volatile_fid,
1769 struct smb2_file_all_info *data)
1770{
1771 return query_info(xid, tcon, persistent_fid, volatile_fid,
1772 FILE_ALL_INFORMATION,
Pavel Shilovsky1bbe4992014-08-22 13:32:11 +04001773 sizeof(struct smb2_file_all_info) + PATH_MAX * 2,
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001774 sizeof(struct smb2_file_all_info), data);
1775}
1776
1777int
1778SMB2_get_srv_num(const unsigned int xid, struct cifs_tcon *tcon,
1779 u64 persistent_fid, u64 volatile_fid, __le64 *uniqueid)
1780{
1781 return query_info(xid, tcon, persistent_fid, volatile_fid,
1782 FILE_INTERNAL_INFORMATION,
1783 sizeof(struct smb2_file_internal_info),
1784 sizeof(struct smb2_file_internal_info), uniqueid);
1785}
1786
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001787/*
1788 * This is a no-op for now. We're not really interested in the reply, but
1789 * rather in the fact that the server sent one and that server->lstrp
1790 * gets updated.
1791 *
1792 * FIXME: maybe we should consider checking that the reply matches request?
1793 */
1794static void
1795smb2_echo_callback(struct mid_q_entry *mid)
1796{
1797 struct TCP_Server_Info *server = mid->callback_data;
1798 struct smb2_echo_rsp *smb2 = (struct smb2_echo_rsp *)mid->resp_buf;
1799 unsigned int credits_received = 1;
1800
1801 if (mid->mid_state == MID_RESPONSE_RECEIVED)
1802 credits_received = le16_to_cpu(smb2->hdr.CreditRequest);
1803
Christopher Oo5fb4e282015-06-25 16:10:48 -07001804 mutex_lock(&server->srv_mutex);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001805 DeleteMidQEntry(mid);
Christopher Oo5fb4e282015-06-25 16:10:48 -07001806 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001807 add_credits(server, credits_received, CIFS_ECHO_OP);
1808}
1809
1810int
1811SMB2_echo(struct TCP_Server_Info *server)
1812{
1813 struct smb2_echo_req *req;
1814 int rc = 0;
1815 struct kvec iov;
Jeff Laytonfec344e2012-09-18 16:20:35 -07001816 struct smb_rqst rqst = { .rq_iov = &iov,
1817 .rq_nvec = 1 };
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001818
Joe Perchesf96637b2013-05-04 22:12:25 -05001819 cifs_dbg(FYI, "In echo request\n");
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001820
1821 rc = small_smb2_init(SMB2_ECHO, NULL, (void **)&req);
1822 if (rc)
1823 return rc;
1824
1825 req->hdr.CreditRequest = cpu_to_le16(1);
1826
1827 iov.iov_base = (char *)req;
1828 /* 4 for rfc1002 length field */
1829 iov.iov_len = get_rfc1002_length(req) + 4;
1830
Jeff Laytonfec344e2012-09-18 16:20:35 -07001831 rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, server,
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001832 CIFS_ECHO_OP);
1833 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05001834 cifs_dbg(FYI, "Echo request failed: %d\n", rc);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001835
1836 cifs_small_buf_release(req);
1837 return rc;
1838}
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07001839
1840int
1841SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
1842 u64 volatile_fid)
1843{
1844 struct smb2_flush_req *req;
1845 struct TCP_Server_Info *server;
1846 struct cifs_ses *ses = tcon->ses;
1847 struct kvec iov[1];
1848 int resp_buftype;
1849 int rc = 0;
1850
Joe Perchesf96637b2013-05-04 22:12:25 -05001851 cifs_dbg(FYI, "Flush\n");
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07001852
1853 if (ses && (ses->server))
1854 server = ses->server;
1855 else
1856 return -EIO;
1857
1858 rc = small_smb2_init(SMB2_FLUSH, tcon, (void **) &req);
1859 if (rc)
1860 return rc;
1861
1862 req->PersistentFileId = persistent_fid;
1863 req->VolatileFileId = volatile_fid;
1864
1865 iov[0].iov_base = (char *)req;
1866 /* 4 for rfc1002 length field */
1867 iov[0].iov_len = get_rfc1002_length(req) + 4;
1868
1869 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
1870
Steve Frenchdfebe402015-03-27 01:00:06 -05001871 if (rc != 0)
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07001872 cifs_stats_fail_inc(tcon, SMB2_FLUSH_HE);
1873
1874 free_rsp_buf(resp_buftype, iov[0].iov_base);
1875 return rc;
1876}
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001877
1878/*
1879 * To form a chain of read requests, any read requests after the first should
1880 * have the end_of_chain boolean set to true.
1881 */
1882static int
1883smb2_new_read_req(struct kvec *iov, struct cifs_io_parms *io_parms,
1884 unsigned int remaining_bytes, int request_type)
1885{
1886 int rc = -EACCES;
1887 struct smb2_read_req *req = NULL;
1888
1889 rc = small_smb2_init(SMB2_READ, io_parms->tcon, (void **) &req);
1890 if (rc)
1891 return rc;
1892 if (io_parms->tcon->ses->server == NULL)
1893 return -ECONNABORTED;
1894
1895 req->hdr.ProcessId = cpu_to_le32(io_parms->pid);
1896
1897 req->PersistentFileId = io_parms->persistent_fid;
1898 req->VolatileFileId = io_parms->volatile_fid;
1899 req->ReadChannelInfoOffset = 0; /* reserved */
1900 req->ReadChannelInfoLength = 0; /* reserved */
1901 req->Channel = 0; /* reserved */
1902 req->MinimumCount = 0;
1903 req->Length = cpu_to_le32(io_parms->length);
1904 req->Offset = cpu_to_le64(io_parms->offset);
1905
1906 if (request_type & CHAINED_REQUEST) {
1907 if (!(request_type & END_OF_CHAIN)) {
1908 /* 4 for rfc1002 length field */
1909 req->hdr.NextCommand =
1910 cpu_to_le32(get_rfc1002_length(req) + 4);
1911 } else /* END_OF_CHAIN */
1912 req->hdr.NextCommand = 0;
1913 if (request_type & RELATED_REQUEST) {
1914 req->hdr.Flags |= SMB2_FLAGS_RELATED_OPERATIONS;
1915 /*
1916 * Related requests use info from previous read request
1917 * in chain.
1918 */
1919 req->hdr.SessionId = 0xFFFFFFFF;
1920 req->hdr.TreeId = 0xFFFFFFFF;
1921 req->PersistentFileId = 0xFFFFFFFF;
1922 req->VolatileFileId = 0xFFFFFFFF;
1923 }
1924 }
1925 if (remaining_bytes > io_parms->length)
1926 req->RemainingBytes = cpu_to_le32(remaining_bytes);
1927 else
1928 req->RemainingBytes = 0;
1929
1930 iov[0].iov_base = (char *)req;
1931 /* 4 for rfc1002 length field */
1932 iov[0].iov_len = get_rfc1002_length(req) + 4;
1933 return rc;
1934}
1935
1936static void
1937smb2_readv_callback(struct mid_q_entry *mid)
1938{
1939 struct cifs_readdata *rdata = mid->callback_data;
1940 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
1941 struct TCP_Server_Info *server = tcon->ses->server;
Jeff Layton58195752012-09-19 06:22:34 -07001942 struct smb2_hdr *buf = (struct smb2_hdr *)rdata->iov.iov_base;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001943 unsigned int credits_received = 1;
Jeff Layton58195752012-09-19 06:22:34 -07001944 struct smb_rqst rqst = { .rq_iov = &rdata->iov,
Jeff Layton8321fec2012-09-19 06:22:32 -07001945 .rq_nvec = 1,
1946 .rq_pages = rdata->pages,
1947 .rq_npages = rdata->nr_pages,
1948 .rq_pagesz = rdata->pagesz,
1949 .rq_tailsz = rdata->tailsz };
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001950
Joe Perchesf96637b2013-05-04 22:12:25 -05001951 cifs_dbg(FYI, "%s: mid=%llu state=%d result=%d bytes=%u\n",
1952 __func__, mid->mid, mid->mid_state, rdata->result,
1953 rdata->bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001954
1955 switch (mid->mid_state) {
1956 case MID_RESPONSE_RECEIVED:
1957 credits_received = le16_to_cpu(buf->CreditRequest);
1958 /* result already set, check signature */
Jeff Layton38d77c52013-05-26 07:01:00 -04001959 if (server->sign) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001960 int rc;
1961
Jeff Layton0b688cf2012-09-18 16:20:34 -07001962 rc = smb2_verify_signature(&rqst, server);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001963 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05001964 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
1965 rc);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001966 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001967 /* FIXME: should this be counted toward the initiating task? */
Pavel Shilovsky34a54d62014-07-10 10:03:29 +04001968 task_io_account_read(rdata->got_bytes);
1969 cifs_stats_bytes_read(tcon, rdata->got_bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001970 break;
1971 case MID_REQUEST_SUBMITTED:
1972 case MID_RETRY_NEEDED:
1973 rdata->result = -EAGAIN;
Pavel Shilovskyd913ed12014-07-10 11:31:48 +04001974 if (server->sign && rdata->got_bytes)
1975 /* reset bytes number since we can not check a sign */
1976 rdata->got_bytes = 0;
1977 /* FIXME: should this be counted toward the initiating task? */
1978 task_io_account_read(rdata->got_bytes);
1979 cifs_stats_bytes_read(tcon, rdata->got_bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001980 break;
1981 default:
1982 if (rdata->result != -ENODATA)
1983 rdata->result = -EIO;
1984 }
1985
1986 if (rdata->result)
1987 cifs_stats_fail_inc(tcon, SMB2_READ_HE);
1988
1989 queue_work(cifsiod_wq, &rdata->work);
Christopher Oo5fb4e282015-06-25 16:10:48 -07001990 mutex_lock(&server->srv_mutex);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001991 DeleteMidQEntry(mid);
Christopher Oo5fb4e282015-06-25 16:10:48 -07001992 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001993 add_credits(server, credits_received, 0);
1994}
1995
1996/* smb2_async_readv - send an async write, and set up mid to handle result */
1997int
1998smb2_async_readv(struct cifs_readdata *rdata)
1999{
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002000 int rc, flags = 0;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002001 struct smb2_hdr *buf;
2002 struct cifs_io_parms io_parms;
Jeff Layton58195752012-09-19 06:22:34 -07002003 struct smb_rqst rqst = { .rq_iov = &rdata->iov,
Jeff Laytonfec344e2012-09-18 16:20:35 -07002004 .rq_nvec = 1 };
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002005 struct TCP_Server_Info *server;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002006
Joe Perchesf96637b2013-05-04 22:12:25 -05002007 cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n",
2008 __func__, rdata->offset, rdata->bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002009
2010 io_parms.tcon = tlink_tcon(rdata->cfile->tlink);
2011 io_parms.offset = rdata->offset;
2012 io_parms.length = rdata->bytes;
2013 io_parms.persistent_fid = rdata->cfile->fid.persistent_fid;
2014 io_parms.volatile_fid = rdata->cfile->fid.volatile_fid;
2015 io_parms.pid = rdata->pid;
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002016
2017 server = io_parms.tcon->ses->server;
2018
Jeff Layton58195752012-09-19 06:22:34 -07002019 rc = smb2_new_read_req(&rdata->iov, &io_parms, 0, 0);
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002020 if (rc) {
2021 if (rc == -EAGAIN && rdata->credits) {
2022 /* credits was reset by reconnect */
2023 rdata->credits = 0;
2024 /* reduce in_flight value since we won't send the req */
2025 spin_lock(&server->req_lock);
2026 server->in_flight--;
2027 spin_unlock(&server->req_lock);
2028 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002029 return rc;
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002030 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002031
Jeff Layton58195752012-09-19 06:22:34 -07002032 buf = (struct smb2_hdr *)rdata->iov.iov_base;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002033 /* 4 for rfc1002 length field */
Jeff Layton58195752012-09-19 06:22:34 -07002034 rdata->iov.iov_len = get_rfc1002_length(rdata->iov.iov_base) + 4;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002035
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002036 if (rdata->credits) {
2037 buf->CreditCharge = cpu_to_le16(DIV_ROUND_UP(rdata->bytes,
2038 SMB2_MAX_BUFFER_SIZE));
2039 spin_lock(&server->req_lock);
2040 server->credits += rdata->credits -
2041 le16_to_cpu(buf->CreditCharge);
2042 spin_unlock(&server->req_lock);
2043 wake_up(&server->request_q);
2044 flags = CIFS_HAS_CREDITS;
2045 }
2046
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002047 kref_get(&rdata->refcount);
Jeff Laytonfec344e2012-09-18 16:20:35 -07002048 rc = cifs_call_async(io_parms.tcon->ses->server, &rqst,
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002049 cifs_readv_receive, smb2_readv_callback,
Pavel Shilovskybed9da02014-06-25 11:28:57 +04002050 rdata, flags);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002051 if (rc) {
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002052 kref_put(&rdata->refcount, cifs_readdata_release);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002053 cifs_stats_fail_inc(io_parms.tcon, SMB2_READ_HE);
2054 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07002055
2056 cifs_small_buf_release(buf);
2057 return rc;
2058}
Pavel Shilovsky33319142012-09-18 16:20:29 -07002059
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002060int
2061SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms,
2062 unsigned int *nbytes, char **buf, int *buf_type)
2063{
2064 int resp_buftype, rc = -EACCES;
2065 struct smb2_read_rsp *rsp = NULL;
2066 struct kvec iov[1];
2067
2068 *nbytes = 0;
2069 rc = smb2_new_read_req(iov, io_parms, 0, 0);
2070 if (rc)
2071 return rc;
2072
2073 rc = SendReceive2(xid, io_parms->tcon->ses, iov, 1,
2074 &resp_buftype, CIFS_LOG_ERROR);
2075
2076 rsp = (struct smb2_read_rsp *)iov[0].iov_base;
2077
2078 if (rsp->hdr.Status == STATUS_END_OF_FILE) {
2079 free_rsp_buf(resp_buftype, iov[0].iov_base);
2080 return 0;
2081 }
2082
2083 if (rc) {
2084 cifs_stats_fail_inc(io_parms->tcon, SMB2_READ_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05002085 cifs_dbg(VFS, "Send error in read = %d\n", rc);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002086 } else {
2087 *nbytes = le32_to_cpu(rsp->DataLength);
2088 if ((*nbytes > CIFS_MAX_MSGSIZE) ||
2089 (*nbytes > io_parms->length)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002090 cifs_dbg(FYI, "bad length %d for count %d\n",
2091 *nbytes, io_parms->length);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002092 rc = -EIO;
2093 *nbytes = 0;
2094 }
2095 }
2096
2097 if (*buf) {
Steve French373512e2015-12-18 13:05:30 -06002098 memcpy(*buf, (char *)&rsp->hdr.ProtocolId + rsp->DataOffset,
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07002099 *nbytes);
2100 free_rsp_buf(resp_buftype, iov[0].iov_base);
2101 } else if (resp_buftype != CIFS_NO_BUFFER) {
2102 *buf = iov[0].iov_base;
2103 if (resp_buftype == CIFS_SMALL_BUFFER)
2104 *buf_type = CIFS_SMALL_BUFFER;
2105 else if (resp_buftype == CIFS_LARGE_BUFFER)
2106 *buf_type = CIFS_LARGE_BUFFER;
2107 }
2108 return rc;
2109}
2110
Pavel Shilovsky33319142012-09-18 16:20:29 -07002111/*
2112 * Check the mid_state and signature on received buffer (if any), and queue the
2113 * workqueue completion task.
2114 */
2115static void
2116smb2_writev_callback(struct mid_q_entry *mid)
2117{
2118 struct cifs_writedata *wdata = mid->callback_data;
2119 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
Christopher Oo5fb4e282015-06-25 16:10:48 -07002120 struct TCP_Server_Info *server = tcon->ses->server;
Pavel Shilovsky33319142012-09-18 16:20:29 -07002121 unsigned int written;
2122 struct smb2_write_rsp *rsp = (struct smb2_write_rsp *)mid->resp_buf;
2123 unsigned int credits_received = 1;
2124
2125 switch (mid->mid_state) {
2126 case MID_RESPONSE_RECEIVED:
2127 credits_received = le16_to_cpu(rsp->hdr.CreditRequest);
2128 wdata->result = smb2_check_receive(mid, tcon->ses->server, 0);
2129 if (wdata->result != 0)
2130 break;
2131
2132 written = le32_to_cpu(rsp->DataLength);
2133 /*
2134 * Mask off high 16 bits when bytes written as returned
2135 * by the server is greater than bytes requested by the
2136 * client. OS/2 servers are known to set incorrect
2137 * CountHigh values.
2138 */
2139 if (written > wdata->bytes)
2140 written &= 0xFFFF;
2141
2142 if (written < wdata->bytes)
2143 wdata->result = -ENOSPC;
2144 else
2145 wdata->bytes = written;
2146 break;
2147 case MID_REQUEST_SUBMITTED:
2148 case MID_RETRY_NEEDED:
2149 wdata->result = -EAGAIN;
2150 break;
2151 default:
2152 wdata->result = -EIO;
2153 break;
2154 }
2155
2156 if (wdata->result)
2157 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
2158
2159 queue_work(cifsiod_wq, &wdata->work);
Christopher Oo5fb4e282015-06-25 16:10:48 -07002160 mutex_lock(&server->srv_mutex);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002161 DeleteMidQEntry(mid);
Christopher Oo5fb4e282015-06-25 16:10:48 -07002162 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002163 add_credits(tcon->ses->server, credits_received, 0);
2164}
2165
2166/* smb2_async_writev - send an async write, and set up mid to handle result */
2167int
Steve French4a5c80d2014-02-07 20:45:12 -06002168smb2_async_writev(struct cifs_writedata *wdata,
2169 void (*release)(struct kref *kref))
Pavel Shilovsky33319142012-09-18 16:20:29 -07002170{
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002171 int rc = -EACCES, flags = 0;
Pavel Shilovsky33319142012-09-18 16:20:29 -07002172 struct smb2_write_req *req = NULL;
2173 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002174 struct TCP_Server_Info *server = tcon->ses->server;
Jeff Laytoneddb0792012-09-18 16:20:35 -07002175 struct kvec iov;
Jeff Laytonfec344e2012-09-18 16:20:35 -07002176 struct smb_rqst rqst;
Pavel Shilovsky33319142012-09-18 16:20:29 -07002177
2178 rc = small_smb2_init(SMB2_WRITE, tcon, (void **) &req);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002179 if (rc) {
2180 if (rc == -EAGAIN && wdata->credits) {
2181 /* credits was reset by reconnect */
2182 wdata->credits = 0;
2183 /* reduce in_flight value since we won't send the req */
2184 spin_lock(&server->req_lock);
2185 server->in_flight--;
2186 spin_unlock(&server->req_lock);
2187 }
Pavel Shilovsky33319142012-09-18 16:20:29 -07002188 goto async_writev_out;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002189 }
Pavel Shilovsky33319142012-09-18 16:20:29 -07002190
Pavel Shilovsky33319142012-09-18 16:20:29 -07002191 req->hdr.ProcessId = cpu_to_le32(wdata->cfile->pid);
2192
2193 req->PersistentFileId = wdata->cfile->fid.persistent_fid;
2194 req->VolatileFileId = wdata->cfile->fid.volatile_fid;
2195 req->WriteChannelInfoOffset = 0;
2196 req->WriteChannelInfoLength = 0;
2197 req->Channel = 0;
2198 req->Offset = cpu_to_le64(wdata->offset);
2199 /* 4 for rfc1002 length field */
2200 req->DataOffset = cpu_to_le16(
2201 offsetof(struct smb2_write_req, Buffer) - 4);
2202 req->RemainingBytes = 0;
2203
2204 /* 4 for rfc1002 length field and 1 for Buffer */
Jeff Laytoneddb0792012-09-18 16:20:35 -07002205 iov.iov_len = get_rfc1002_length(req) + 4 - 1;
2206 iov.iov_base = req;
Pavel Shilovsky33319142012-09-18 16:20:29 -07002207
Jeff Laytoneddb0792012-09-18 16:20:35 -07002208 rqst.rq_iov = &iov;
2209 rqst.rq_nvec = 1;
2210 rqst.rq_pages = wdata->pages;
2211 rqst.rq_npages = wdata->nr_pages;
2212 rqst.rq_pagesz = wdata->pagesz;
2213 rqst.rq_tailsz = wdata->tailsz;
Pavel Shilovsky33319142012-09-18 16:20:29 -07002214
Joe Perchesf96637b2013-05-04 22:12:25 -05002215 cifs_dbg(FYI, "async write at %llu %u bytes\n",
2216 wdata->offset, wdata->bytes);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002217
2218 req->Length = cpu_to_le32(wdata->bytes);
2219
2220 inc_rfc1001_len(&req->hdr, wdata->bytes - 1 /* Buffer */);
2221
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002222 if (wdata->credits) {
2223 req->hdr.CreditCharge = cpu_to_le16(DIV_ROUND_UP(wdata->bytes,
2224 SMB2_MAX_BUFFER_SIZE));
2225 spin_lock(&server->req_lock);
2226 server->credits += wdata->credits -
2227 le16_to_cpu(req->hdr.CreditCharge);
2228 spin_unlock(&server->req_lock);
2229 wake_up(&server->request_q);
2230 flags = CIFS_HAS_CREDITS;
2231 }
2232
Pavel Shilovsky33319142012-09-18 16:20:29 -07002233 kref_get(&wdata->refcount);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002234 rc = cifs_call_async(server, &rqst, NULL, smb2_writev_callback, wdata,
2235 flags);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002236
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002237 if (rc) {
Steve French4a5c80d2014-02-07 20:45:12 -06002238 kref_put(&wdata->refcount, release);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002239 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
2240 }
Pavel Shilovsky33319142012-09-18 16:20:29 -07002241
Pavel Shilovsky33319142012-09-18 16:20:29 -07002242async_writev_out:
2243 cifs_small_buf_release(req);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002244 return rc;
2245}
Pavel Shilovsky009d3442012-09-18 16:20:30 -07002246
2247/*
2248 * SMB2_write function gets iov pointer to kvec array with n_vec as a length.
2249 * The length field from io_parms must be at least 1 and indicates a number of
2250 * elements with data to write that begins with position 1 in iov array. All
2251 * data length is specified by count.
2252 */
2253int
2254SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms,
2255 unsigned int *nbytes, struct kvec *iov, int n_vec)
2256{
2257 int rc = 0;
2258 struct smb2_write_req *req = NULL;
2259 struct smb2_write_rsp *rsp = NULL;
2260 int resp_buftype;
2261 *nbytes = 0;
2262
2263 if (n_vec < 1)
2264 return rc;
2265
2266 rc = small_smb2_init(SMB2_WRITE, io_parms->tcon, (void **) &req);
2267 if (rc)
2268 return rc;
2269
2270 if (io_parms->tcon->ses->server == NULL)
2271 return -ECONNABORTED;
2272
2273 req->hdr.ProcessId = cpu_to_le32(io_parms->pid);
2274
2275 req->PersistentFileId = io_parms->persistent_fid;
2276 req->VolatileFileId = io_parms->volatile_fid;
2277 req->WriteChannelInfoOffset = 0;
2278 req->WriteChannelInfoLength = 0;
2279 req->Channel = 0;
2280 req->Length = cpu_to_le32(io_parms->length);
2281 req->Offset = cpu_to_le64(io_parms->offset);
2282 /* 4 for rfc1002 length field */
2283 req->DataOffset = cpu_to_le16(
2284 offsetof(struct smb2_write_req, Buffer) - 4);
2285 req->RemainingBytes = 0;
2286
2287 iov[0].iov_base = (char *)req;
2288 /* 4 for rfc1002 length field and 1 for Buffer */
2289 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
2290
2291 /* length of entire message including data to be written */
2292 inc_rfc1001_len(req, io_parms->length - 1 /* Buffer */);
2293
2294 rc = SendReceive2(xid, io_parms->tcon->ses, iov, n_vec + 1,
2295 &resp_buftype, 0);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002296 rsp = (struct smb2_write_rsp *)iov[0].iov_base;
Pavel Shilovsky009d3442012-09-18 16:20:30 -07002297
2298 if (rc) {
2299 cifs_stats_fail_inc(io_parms->tcon, SMB2_WRITE_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05002300 cifs_dbg(VFS, "Send error in write = %d\n", rc);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002301 } else
Pavel Shilovsky009d3442012-09-18 16:20:30 -07002302 *nbytes = le32_to_cpu(rsp->DataLength);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002303
2304 free_rsp_buf(resp_buftype, rsp);
Pavel Shilovsky009d3442012-09-18 16:20:30 -07002305 return rc;
2306}
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002307
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002308static unsigned int
2309num_entries(char *bufstart, char *end_of_buf, char **lastentry, size_t size)
2310{
2311 int len;
2312 unsigned int entrycount = 0;
2313 unsigned int next_offset = 0;
2314 FILE_DIRECTORY_INFO *entryptr;
2315
2316 if (bufstart == NULL)
2317 return 0;
2318
2319 entryptr = (FILE_DIRECTORY_INFO *)bufstart;
2320
2321 while (1) {
2322 entryptr = (FILE_DIRECTORY_INFO *)
2323 ((char *)entryptr + next_offset);
2324
2325 if ((char *)entryptr + size > end_of_buf) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002326 cifs_dbg(VFS, "malformed search entry would overflow\n");
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002327 break;
2328 }
2329
2330 len = le32_to_cpu(entryptr->FileNameLength);
2331 if ((char *)entryptr + len + size > end_of_buf) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002332 cifs_dbg(VFS, "directory entry name would overflow frame end of buf %p\n",
2333 end_of_buf);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002334 break;
2335 }
2336
2337 *lastentry = (char *)entryptr;
2338 entrycount++;
2339
2340 next_offset = le32_to_cpu(entryptr->NextEntryOffset);
2341 if (!next_offset)
2342 break;
2343 }
2344
2345 return entrycount;
2346}
2347
2348/*
2349 * Readdir/FindFirst
2350 */
2351int
2352SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon,
2353 u64 persistent_fid, u64 volatile_fid, int index,
2354 struct cifs_search_info *srch_inf)
2355{
2356 struct smb2_query_directory_req *req;
2357 struct smb2_query_directory_rsp *rsp = NULL;
2358 struct kvec iov[2];
2359 int rc = 0;
2360 int len;
Steve French75fdfc82015-03-25 18:51:57 -05002361 int resp_buftype = CIFS_NO_BUFFER;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002362 unsigned char *bufptr;
2363 struct TCP_Server_Info *server;
2364 struct cifs_ses *ses = tcon->ses;
2365 __le16 asteriks = cpu_to_le16('*');
2366 char *end_of_smb;
2367 unsigned int output_size = CIFSMaxBufSize;
2368 size_t info_buf_size;
2369
2370 if (ses && (ses->server))
2371 server = ses->server;
2372 else
2373 return -EIO;
2374
2375 rc = small_smb2_init(SMB2_QUERY_DIRECTORY, tcon, (void **) &req);
2376 if (rc)
2377 return rc;
2378
2379 switch (srch_inf->info_level) {
2380 case SMB_FIND_FILE_DIRECTORY_INFO:
2381 req->FileInformationClass = FILE_DIRECTORY_INFORMATION;
2382 info_buf_size = sizeof(FILE_DIRECTORY_INFO) - 1;
2383 break;
2384 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
2385 req->FileInformationClass = FILEID_FULL_DIRECTORY_INFORMATION;
2386 info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO) - 1;
2387 break;
2388 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05002389 cifs_dbg(VFS, "info level %u isn't supported\n",
2390 srch_inf->info_level);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002391 rc = -EINVAL;
2392 goto qdir_exit;
2393 }
2394
2395 req->FileIndex = cpu_to_le32(index);
2396 req->PersistentFileId = persistent_fid;
2397 req->VolatileFileId = volatile_fid;
2398
2399 len = 0x2;
2400 bufptr = req->Buffer;
2401 memcpy(bufptr, &asteriks, len);
2402
2403 req->FileNameOffset =
2404 cpu_to_le16(sizeof(struct smb2_query_directory_req) - 1 - 4);
2405 req->FileNameLength = cpu_to_le16(len);
2406 /*
2407 * BB could be 30 bytes or so longer if we used SMB2 specific
2408 * buffer lengths, but this is safe and close enough.
2409 */
2410 output_size = min_t(unsigned int, output_size, server->maxBuf);
2411 output_size = min_t(unsigned int, output_size, 2 << 15);
2412 req->OutputBufferLength = cpu_to_le32(output_size);
2413
2414 iov[0].iov_base = (char *)req;
2415 /* 4 for RFC1001 length and 1 for Buffer */
2416 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
2417
2418 iov[1].iov_base = (char *)(req->Buffer);
2419 iov[1].iov_len = len;
2420
2421 inc_rfc1001_len(req, len - 1 /* Buffer */);
2422
2423 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002424 rsp = (struct smb2_query_directory_rsp *)iov[0].iov_base;
2425
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002426 if (rc) {
Pavel Shilovsky52755802014-08-18 20:49:57 +04002427 if (rc == -ENODATA && rsp->hdr.Status == STATUS_NO_MORE_FILES) {
2428 srch_inf->endOfSearch = true;
2429 rc = 0;
2430 }
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002431 cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
2432 goto qdir_exit;
2433 }
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002434
2435 rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
2436 le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
2437 info_buf_size);
2438 if (rc)
2439 goto qdir_exit;
2440
2441 srch_inf->unicode = true;
2442
2443 if (srch_inf->ntwrk_buf_start) {
2444 if (srch_inf->smallBuf)
2445 cifs_small_buf_release(srch_inf->ntwrk_buf_start);
2446 else
2447 cifs_buf_release(srch_inf->ntwrk_buf_start);
2448 }
2449 srch_inf->ntwrk_buf_start = (char *)rsp;
2450 srch_inf->srch_entries_start = srch_inf->last_entry = 4 /* rfclen */ +
2451 (char *)&rsp->hdr + le16_to_cpu(rsp->OutputBufferOffset);
2452 /* 4 for rfc1002 length field */
2453 end_of_smb = get_rfc1002_length(rsp) + 4 + (char *)&rsp->hdr;
2454 srch_inf->entries_in_buffer =
2455 num_entries(srch_inf->srch_entries_start, end_of_smb,
2456 &srch_inf->last_entry, info_buf_size);
2457 srch_inf->index_of_last_entry += srch_inf->entries_in_buffer;
Joe Perchesf96637b2013-05-04 22:12:25 -05002458 cifs_dbg(FYI, "num entries %d last_index %lld srch start %p srch end %p\n",
2459 srch_inf->entries_in_buffer, srch_inf->index_of_last_entry,
2460 srch_inf->srch_entries_start, srch_inf->last_entry);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002461 if (resp_buftype == CIFS_LARGE_BUFFER)
2462 srch_inf->smallBuf = false;
2463 else if (resp_buftype == CIFS_SMALL_BUFFER)
2464 srch_inf->smallBuf = true;
2465 else
Joe Perchesf96637b2013-05-04 22:12:25 -05002466 cifs_dbg(VFS, "illegal search buffer type\n");
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002467
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002468 return rc;
2469
2470qdir_exit:
2471 free_rsp_buf(resp_buftype, rsp);
2472 return rc;
2473}
2474
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002475static int
2476send_set_info(const unsigned int xid, struct cifs_tcon *tcon,
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002477 u64 persistent_fid, u64 volatile_fid, u32 pid, int info_class,
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002478 unsigned int num, void **data, unsigned int *size)
2479{
2480 struct smb2_set_info_req *req;
2481 struct smb2_set_info_rsp *rsp = NULL;
2482 struct kvec *iov;
2483 int rc = 0;
2484 int resp_buftype;
2485 unsigned int i;
2486 struct TCP_Server_Info *server;
2487 struct cifs_ses *ses = tcon->ses;
2488
2489 if (ses && (ses->server))
2490 server = ses->server;
2491 else
2492 return -EIO;
2493
2494 if (!num)
2495 return -EINVAL;
2496
2497 iov = kmalloc(sizeof(struct kvec) * num, GFP_KERNEL);
2498 if (!iov)
2499 return -ENOMEM;
2500
2501 rc = small_smb2_init(SMB2_SET_INFO, tcon, (void **) &req);
2502 if (rc) {
2503 kfree(iov);
2504 return rc;
2505 }
2506
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002507 req->hdr.ProcessId = cpu_to_le32(pid);
2508
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002509 req->InfoType = SMB2_O_INFO_FILE;
2510 req->FileInfoClass = info_class;
2511 req->PersistentFileId = persistent_fid;
2512 req->VolatileFileId = volatile_fid;
2513
2514 /* 4 for RFC1001 length and 1 for Buffer */
2515 req->BufferOffset =
2516 cpu_to_le16(sizeof(struct smb2_set_info_req) - 1 - 4);
2517 req->BufferLength = cpu_to_le32(*size);
2518
2519 inc_rfc1001_len(req, *size - 1 /* Buffer */);
2520
2521 memcpy(req->Buffer, *data, *size);
2522
2523 iov[0].iov_base = (char *)req;
2524 /* 4 for RFC1001 length */
2525 iov[0].iov_len = get_rfc1002_length(req) + 4;
2526
2527 for (i = 1; i < num; i++) {
2528 inc_rfc1001_len(req, size[i]);
2529 le32_add_cpu(&req->BufferLength, size[i]);
2530 iov[i].iov_base = (char *)data[i];
2531 iov[i].iov_len = size[i];
2532 }
2533
2534 rc = SendReceive2(xid, ses, iov, num, &resp_buftype, 0);
2535 rsp = (struct smb2_set_info_rsp *)iov[0].iov_base;
2536
Steve French7d3fb242013-11-18 09:56:28 -06002537 if (rc != 0)
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002538 cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE);
Steve French7d3fb242013-11-18 09:56:28 -06002539
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002540 free_rsp_buf(resp_buftype, rsp);
2541 kfree(iov);
2542 return rc;
2543}
2544
2545int
2546SMB2_rename(const unsigned int xid, struct cifs_tcon *tcon,
2547 u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
2548{
2549 struct smb2_file_rename_info info;
2550 void **data;
2551 unsigned int size[2];
2552 int rc;
2553 int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
2554
2555 data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
2556 if (!data)
2557 return -ENOMEM;
2558
2559 info.ReplaceIfExists = 1; /* 1 = replace existing target with new */
2560 /* 0 = fail if target already exists */
2561 info.RootDirectory = 0; /* MBZ for network ops (why does spec say?) */
2562 info.FileNameLength = cpu_to_le32(len);
2563
2564 data[0] = &info;
2565 size[0] = sizeof(struct smb2_file_rename_info);
2566
2567 data[1] = target_file;
2568 size[1] = len + 2 /* null */;
2569
2570 rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002571 current->tgid, FILE_RENAME_INFORMATION, 2, data,
2572 size);
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002573 kfree(data);
2574 return rc;
2575}
Pavel Shilovsky568798c2012-09-18 16:20:31 -07002576
2577int
2578SMB2_set_hardlink(const unsigned int xid, struct cifs_tcon *tcon,
2579 u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
2580{
2581 struct smb2_file_link_info info;
2582 void **data;
2583 unsigned int size[2];
2584 int rc;
2585 int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
2586
2587 data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
2588 if (!data)
2589 return -ENOMEM;
2590
2591 info.ReplaceIfExists = 0; /* 1 = replace existing link with new */
2592 /* 0 = fail if link already exists */
2593 info.RootDirectory = 0; /* MBZ for network ops (why does spec say?) */
2594 info.FileNameLength = cpu_to_le32(len);
2595
2596 data[0] = &info;
2597 size[0] = sizeof(struct smb2_file_link_info);
2598
2599 data[1] = target_file;
2600 size[1] = len + 2 /* null */;
2601
2602 rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002603 current->tgid, FILE_LINK_INFORMATION, 2, data, size);
Pavel Shilovsky568798c2012-09-18 16:20:31 -07002604 kfree(data);
2605 return rc;
2606}
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002607
2608int
2609SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
Steve Frenchf29ebb42014-07-19 21:44:58 -05002610 u64 volatile_fid, u32 pid, __le64 *eof, bool is_falloc)
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002611{
2612 struct smb2_file_eof_info info;
2613 void *data;
2614 unsigned int size;
2615
2616 info.EndOfFile = *eof;
2617
2618 data = &info;
2619 size = sizeof(struct smb2_file_eof_info);
2620
Steve Frenchf29ebb42014-07-19 21:44:58 -05002621 if (is_falloc)
2622 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2623 pid, FILE_ALLOCATION_INFORMATION, 1, &data, &size);
2624 else
2625 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2626 pid, FILE_END_OF_FILE_INFORMATION, 1, &data, &size);
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002627}
Pavel Shilovsky1feeaac2012-09-18 16:20:32 -07002628
2629int
2630SMB2_set_info(const unsigned int xid, struct cifs_tcon *tcon,
2631 u64 persistent_fid, u64 volatile_fid, FILE_BASIC_INFO *buf)
2632{
2633 unsigned int size;
2634 size = sizeof(FILE_BASIC_INFO);
2635 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2636 current->tgid, FILE_BASIC_INFORMATION, 1,
2637 (void **)&buf, &size);
2638}
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07002639
2640int
2641SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon,
2642 const u64 persistent_fid, const u64 volatile_fid,
2643 __u8 oplock_level)
2644{
2645 int rc;
2646 struct smb2_oplock_break *req = NULL;
2647
Joe Perchesf96637b2013-05-04 22:12:25 -05002648 cifs_dbg(FYI, "SMB2_oplock_break\n");
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07002649 rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
2650
2651 if (rc)
2652 return rc;
2653
2654 req->VolatileFid = volatile_fid;
2655 req->PersistentFid = persistent_fid;
2656 req->OplockLevel = oplock_level;
2657 req->hdr.CreditRequest = cpu_to_le16(1);
2658
2659 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP);
2660 /* SMB2 buffer freed by function above */
2661
2662 if (rc) {
2663 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05002664 cifs_dbg(FYI, "Send error in Oplock Break = %d\n", rc);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07002665 }
2666
2667 return rc;
2668}
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07002669
2670static void
2671copy_fs_info_to_kstatfs(struct smb2_fs_full_size_info *pfs_inf,
2672 struct kstatfs *kst)
2673{
2674 kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) *
2675 le32_to_cpu(pfs_inf->SectorsPerAllocationUnit);
2676 kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits);
2677 kst->f_bfree = le64_to_cpu(pfs_inf->ActualAvailableAllocationUnits);
2678 kst->f_bavail = le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits);
2679 return;
2680}
2681
2682static int
2683build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon, int level,
2684 int outbuf_len, u64 persistent_fid, u64 volatile_fid)
2685{
2686 int rc;
2687 struct smb2_query_info_req *req;
2688
Joe Perchesf96637b2013-05-04 22:12:25 -05002689 cifs_dbg(FYI, "Query FSInfo level %d\n", level);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07002690
2691 if ((tcon->ses == NULL) || (tcon->ses->server == NULL))
2692 return -EIO;
2693
2694 rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
2695 if (rc)
2696 return rc;
2697
2698 req->InfoType = SMB2_O_INFO_FILESYSTEM;
2699 req->FileInfoClass = level;
2700 req->PersistentFileId = persistent_fid;
2701 req->VolatileFileId = volatile_fid;
2702 /* 4 for rfc1002 length field and 1 for pad */
2703 req->InputBufferOffset =
2704 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
2705 req->OutputBufferLength = cpu_to_le32(
2706 outbuf_len + sizeof(struct smb2_query_info_rsp) - 1 - 4);
2707
2708 iov->iov_base = (char *)req;
2709 /* 4 for rfc1002 length field */
2710 iov->iov_len = get_rfc1002_length(req) + 4;
2711 return 0;
2712}
2713
2714int
2715SMB2_QFS_info(const unsigned int xid, struct cifs_tcon *tcon,
2716 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
2717{
2718 struct smb2_query_info_rsp *rsp = NULL;
2719 struct kvec iov;
2720 int rc = 0;
2721 int resp_buftype;
2722 struct cifs_ses *ses = tcon->ses;
2723 struct smb2_fs_full_size_info *info = NULL;
2724
2725 rc = build_qfs_info_req(&iov, tcon, FS_FULL_SIZE_INFORMATION,
2726 sizeof(struct smb2_fs_full_size_info),
2727 persistent_fid, volatile_fid);
2728 if (rc)
2729 return rc;
2730
2731 rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, 0);
2732 if (rc) {
2733 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
Steve French34f62642013-10-09 02:07:00 -05002734 goto qfsinf_exit;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07002735 }
2736 rsp = (struct smb2_query_info_rsp *)iov.iov_base;
2737
2738 info = (struct smb2_fs_full_size_info *)(4 /* RFC1001 len */ +
2739 le16_to_cpu(rsp->OutputBufferOffset) + (char *)&rsp->hdr);
2740 rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
2741 le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
2742 sizeof(struct smb2_fs_full_size_info));
2743 if (!rc)
2744 copy_fs_info_to_kstatfs(info, fsdata);
2745
Steve French34f62642013-10-09 02:07:00 -05002746qfsinf_exit:
2747 free_rsp_buf(resp_buftype, iov.iov_base);
2748 return rc;
2749}
2750
2751int
2752SMB2_QFS_attr(const unsigned int xid, struct cifs_tcon *tcon,
Steven French21671142013-10-09 13:36:35 -05002753 u64 persistent_fid, u64 volatile_fid, int level)
Steve French34f62642013-10-09 02:07:00 -05002754{
2755 struct smb2_query_info_rsp *rsp = NULL;
2756 struct kvec iov;
2757 int rc = 0;
Steven French21671142013-10-09 13:36:35 -05002758 int resp_buftype, max_len, min_len;
Steve French34f62642013-10-09 02:07:00 -05002759 struct cifs_ses *ses = tcon->ses;
2760 unsigned int rsp_len, offset;
2761
Steven French21671142013-10-09 13:36:35 -05002762 if (level == FS_DEVICE_INFORMATION) {
2763 max_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
2764 min_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
2765 } else if (level == FS_ATTRIBUTE_INFORMATION) {
2766 max_len = sizeof(FILE_SYSTEM_ATTRIBUTE_INFO);
2767 min_len = MIN_FS_ATTR_INFO_SIZE;
Steven Frenchaf6a12e2013-10-09 20:55:53 -05002768 } else if (level == FS_SECTOR_SIZE_INFORMATION) {
2769 max_len = sizeof(struct smb3_fs_ss_info);
2770 min_len = sizeof(struct smb3_fs_ss_info);
Steven French21671142013-10-09 13:36:35 -05002771 } else {
Steven Frenchaf6a12e2013-10-09 20:55:53 -05002772 cifs_dbg(FYI, "Invalid qfsinfo level %d\n", level);
Steven French21671142013-10-09 13:36:35 -05002773 return -EINVAL;
2774 }
2775
2776 rc = build_qfs_info_req(&iov, tcon, level, max_len,
Steve French34f62642013-10-09 02:07:00 -05002777 persistent_fid, volatile_fid);
2778 if (rc)
2779 return rc;
2780
2781 rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, 0);
2782 if (rc) {
2783 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
2784 goto qfsattr_exit;
2785 }
2786 rsp = (struct smb2_query_info_rsp *)iov.iov_base;
2787
2788 rsp_len = le32_to_cpu(rsp->OutputBufferLength);
2789 offset = le16_to_cpu(rsp->OutputBufferOffset);
Steven French21671142013-10-09 13:36:35 -05002790 rc = validate_buf(offset, rsp_len, &rsp->hdr, min_len);
2791 if (rc)
2792 goto qfsattr_exit;
2793
2794 if (level == FS_ATTRIBUTE_INFORMATION)
Steve French34f62642013-10-09 02:07:00 -05002795 memcpy(&tcon->fsAttrInfo, 4 /* RFC1001 len */ + offset
2796 + (char *)&rsp->hdr, min_t(unsigned int,
Steven French21671142013-10-09 13:36:35 -05002797 rsp_len, max_len));
2798 else if (level == FS_DEVICE_INFORMATION)
2799 memcpy(&tcon->fsDevInfo, 4 /* RFC1001 len */ + offset
2800 + (char *)&rsp->hdr, sizeof(FILE_SYSTEM_DEVICE_INFO));
Steven Frenchaf6a12e2013-10-09 20:55:53 -05002801 else if (level == FS_SECTOR_SIZE_INFORMATION) {
2802 struct smb3_fs_ss_info *ss_info = (struct smb3_fs_ss_info *)
2803 (4 /* RFC1001 len */ + offset + (char *)&rsp->hdr);
2804 tcon->ss_flags = le32_to_cpu(ss_info->Flags);
2805 tcon->perf_sector_size =
2806 le32_to_cpu(ss_info->PhysicalBytesPerSectorForPerf);
2807 }
Steve French34f62642013-10-09 02:07:00 -05002808
2809qfsattr_exit:
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07002810 free_rsp_buf(resp_buftype, iov.iov_base);
2811 return rc;
2812}
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07002813
2814int
2815smb2_lockv(const unsigned int xid, struct cifs_tcon *tcon,
2816 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
2817 const __u32 num_lock, struct smb2_lock_element *buf)
2818{
2819 int rc = 0;
2820 struct smb2_lock_req *req = NULL;
2821 struct kvec iov[2];
2822 int resp_buf_type;
2823 unsigned int count;
2824
Joe Perchesf96637b2013-05-04 22:12:25 -05002825 cifs_dbg(FYI, "smb2_lockv num lock %d\n", num_lock);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07002826
2827 rc = small_smb2_init(SMB2_LOCK, tcon, (void **) &req);
2828 if (rc)
2829 return rc;
2830
2831 req->hdr.ProcessId = cpu_to_le32(pid);
2832 req->LockCount = cpu_to_le16(num_lock);
2833
2834 req->PersistentFileId = persist_fid;
2835 req->VolatileFileId = volatile_fid;
2836
2837 count = num_lock * sizeof(struct smb2_lock_element);
2838 inc_rfc1001_len(req, count - sizeof(struct smb2_lock_element));
2839
2840 iov[0].iov_base = (char *)req;
2841 /* 4 for rfc1002 length field and count for all locks */
2842 iov[0].iov_len = get_rfc1002_length(req) + 4 - count;
2843 iov[1].iov_base = (char *)buf;
2844 iov[1].iov_len = count;
2845
2846 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
2847 rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, CIFS_NO_RESP);
2848 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002849 cifs_dbg(FYI, "Send error in smb2_lockv = %d\n", rc);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07002850 cifs_stats_fail_inc(tcon, SMB2_LOCK_HE);
2851 }
2852
2853 return rc;
2854}
2855
2856int
2857SMB2_lock(const unsigned int xid, struct cifs_tcon *tcon,
2858 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
2859 const __u64 length, const __u64 offset, const __u32 lock_flags,
2860 const bool wait)
2861{
2862 struct smb2_lock_element lock;
2863
2864 lock.Offset = cpu_to_le64(offset);
2865 lock.Length = cpu_to_le64(length);
2866 lock.Flags = cpu_to_le32(lock_flags);
2867 if (!wait && lock_flags != SMB2_LOCKFLAG_UNLOCK)
2868 lock.Flags |= cpu_to_le32(SMB2_LOCKFLAG_FAIL_IMMEDIATELY);
2869
2870 return smb2_lockv(xid, tcon, persist_fid, volatile_fid, pid, 1, &lock);
2871}
Pavel Shilovsky0822f512012-09-19 06:22:45 -07002872
2873int
2874SMB2_lease_break(const unsigned int xid, struct cifs_tcon *tcon,
2875 __u8 *lease_key, const __le32 lease_state)
2876{
2877 int rc;
2878 struct smb2_lease_ack *req = NULL;
2879
Joe Perchesf96637b2013-05-04 22:12:25 -05002880 cifs_dbg(FYI, "SMB2_lease_break\n");
Pavel Shilovsky0822f512012-09-19 06:22:45 -07002881 rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
2882
2883 if (rc)
2884 return rc;
2885
2886 req->hdr.CreditRequest = cpu_to_le16(1);
2887 req->StructureSize = cpu_to_le16(36);
2888 inc_rfc1001_len(req, 12);
2889
2890 memcpy(req->LeaseKey, lease_key, 16);
2891 req->LeaseState = lease_state;
2892
2893 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP);
2894 /* SMB2 buffer freed by function above */
2895
2896 if (rc) {
2897 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05002898 cifs_dbg(FYI, "Send error in Lease Break = %d\n", rc);
Pavel Shilovsky0822f512012-09-19 06:22:45 -07002899 }
2900
2901 return rc;
2902}