blob: e543431db916d8b14b4d9f1cb2f47f328fb7c26e [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
100 hdr->ProtocolId[0] = 0xFE;
101 hdr->ProtocolId[1] = 'S';
102 hdr->ProtocolId[2] = 'M';
103 hdr->ProtocolId[3] = 'B';
104 hdr->StructureSize = cpu_to_le16(64);
105 hdr->Command = smb2_cmd;
106 hdr->CreditRequest = cpu_to_le16(2); /* BB make this dynamic */
107 hdr->ProcessId = cpu_to_le32((__u16)current->tgid);
108
109 if (!tcon)
110 goto out;
111
Steve French2b80d042013-06-23 18:43:37 -0500112 /* GLOBAL_CAP_LARGE_MTU will only be set if dialect > SMB2.02 */
113 /* See sections 2.2.4 and 3.2.4.1.5 of MS-SMB2 */
Steve French1dc92c42015-05-20 09:32:21 -0500114 if ((tcon->ses) && (tcon->ses->server) &&
Steve French84ceeb92013-06-26 17:52:17 -0500115 (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LARGE_MTU))
Steve French2b80d042013-06-23 18:43:37 -0500116 hdr->CreditCharge = cpu_to_le16(1);
117 /* else CreditCharge MBZ */
118
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400119 hdr->TreeId = tcon->tid;
120 /* Uid is not converted */
121 if (tcon->ses)
122 hdr->SessionId = tcon->ses->Suid;
Steve Frenchf87ab882013-06-26 19:14:55 -0500123
124 /*
125 * If we would set SMB2_FLAGS_DFS_OPERATIONS on open we also would have
126 * to pass the path on the Open SMB prefixed by \\server\share.
127 * Not sure when we would need to do the augmented path (if ever) and
128 * setting this flag breaks the SMB2 open operation since it is
129 * illegal to send an empty path name (without \\server\share prefix)
130 * when the DFS flag is set in the SMB open header. We could
131 * consider setting the flag on all operations other than open
132 * but it is safer to net set it for now.
133 */
134/* if (tcon->share_flags & SHI1005_FLAGS_DFS)
135 hdr->Flags |= SMB2_FLAGS_DFS_OPERATIONS; */
136
Jeff Layton38d77c52013-05-26 07:01:00 -0400137 if (tcon->ses && tcon->ses->server && tcon->ses->server->sign)
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700138 hdr->Flags |= SMB2_FLAGS_SIGNED;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400139out:
140 pdu->StructureSize2 = cpu_to_le16(parmsize);
141 return;
142}
143
144static int
145smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon)
146{
147 int rc = 0;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400148 struct nls_table *nls_codepage;
149 struct cifs_ses *ses;
150 struct TCP_Server_Info *server;
151
152 /*
153 * SMB2s NegProt, SessSetup, Logoff do not have tcon yet so
154 * check for tcp and smb session status done differently
155 * for those three - in the calling routine.
156 */
157 if (tcon == NULL)
158 return rc;
159
160 if (smb2_command == SMB2_TREE_CONNECT)
161 return rc;
162
163 if (tcon->tidStatus == CifsExiting) {
164 /*
165 * only tree disconnect, open, and write,
166 * (and ulogoff which does not have tcon)
167 * are allowed as we start force umount.
168 */
169 if ((smb2_command != SMB2_WRITE) &&
170 (smb2_command != SMB2_CREATE) &&
171 (smb2_command != SMB2_TREE_DISCONNECT)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500172 cifs_dbg(FYI, "can not send cmd %d while umounting\n",
173 smb2_command);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400174 return -ENODEV;
175 }
176 }
177 if ((!tcon->ses) || (tcon->ses->status == CifsExiting) ||
178 (!tcon->ses->server))
179 return -EIO;
180
181 ses = tcon->ses;
182 server = ses->server;
183
184 /*
185 * Give demultiplex thread up to 10 seconds to reconnect, should be
186 * greater than cifs socket timeout which is 7 seconds
187 */
188 while (server->tcpStatus == CifsNeedReconnect) {
189 /*
190 * Return to caller for TREE_DISCONNECT and LOGOFF and CLOSE
191 * here since they are implicitly done when session drops.
192 */
193 switch (smb2_command) {
194 /*
195 * BB Should we keep oplock break and add flush to exceptions?
196 */
197 case SMB2_TREE_DISCONNECT:
198 case SMB2_CANCEL:
199 case SMB2_CLOSE:
200 case SMB2_OPLOCK_BREAK:
201 return -EAGAIN;
202 }
203
204 wait_event_interruptible_timeout(server->response_q,
205 (server->tcpStatus != CifsNeedReconnect), 10 * HZ);
206
207 /* are we still trying to reconnect? */
208 if (server->tcpStatus != CifsNeedReconnect)
209 break;
210
211 /*
212 * on "soft" mounts we wait once. Hard mounts keep
213 * retrying until process is killed or server comes
214 * back on-line
215 */
216 if (!tcon->retry) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500217 cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n");
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400218 return -EHOSTDOWN;
219 }
220 }
221
222 if (!tcon->ses->need_reconnect && !tcon->need_reconnect)
223 return rc;
224
225 nls_codepage = load_nls_default();
226
227 /*
228 * need to prevent multiple threads trying to simultaneously reconnect
229 * the same SMB session
230 */
231 mutex_lock(&tcon->ses->session_mutex);
232 rc = cifs_negotiate_protocol(0, tcon->ses);
233 if (!rc && tcon->ses->need_reconnect)
234 rc = cifs_setup_session(0, tcon->ses, nls_codepage);
235
236 if (rc || !tcon->need_reconnect) {
237 mutex_unlock(&tcon->ses->session_mutex);
238 goto out;
239 }
240
241 cifs_mark_open_files_invalid(tcon);
242 rc = SMB2_tcon(0, tcon->ses, tcon->treeName, tcon, nls_codepage);
243 mutex_unlock(&tcon->ses->session_mutex);
Joe Perchesf96637b2013-05-04 22:12:25 -0500244 cifs_dbg(FYI, "reconnect tcon rc = %d\n", rc);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400245 if (rc)
246 goto out;
247 atomic_inc(&tconInfoReconnectCount);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400248out:
249 /*
250 * Check if handle based operation so we know whether we can continue
251 * or not without returning to caller to reset file handle.
252 */
253 /*
254 * BB Is flush done by server on drop of tcp session? Should we special
255 * case it and skip above?
256 */
257 switch (smb2_command) {
258 case SMB2_FLUSH:
259 case SMB2_READ:
260 case SMB2_WRITE:
261 case SMB2_LOCK:
262 case SMB2_IOCTL:
263 case SMB2_QUERY_DIRECTORY:
264 case SMB2_CHANGE_NOTIFY:
265 case SMB2_QUERY_INFO:
266 case SMB2_SET_INFO:
267 return -EAGAIN;
268 }
269 unload_nls(nls_codepage);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400270 return rc;
271}
272
273/*
274 * Allocate and return pointer to an SMB request hdr, and set basic
275 * SMB information in the SMB header. If the return code is zero, this
276 * function must have filled in request_buf pointer.
277 */
278static int
279small_smb2_init(__le16 smb2_command, struct cifs_tcon *tcon,
280 void **request_buf)
281{
282 int rc = 0;
283
284 rc = smb2_reconnect(smb2_command, tcon);
285 if (rc)
286 return rc;
287
288 /* BB eventually switch this to SMB2 specific small buf size */
289 *request_buf = cifs_small_buf_get();
290 if (*request_buf == NULL) {
291 /* BB should we add a retry in here if not a writepage? */
292 return -ENOMEM;
293 }
294
295 smb2_hdr_assemble((struct smb2_hdr *) *request_buf, smb2_command, tcon);
296
297 if (tcon != NULL) {
298#ifdef CONFIG_CIFS_STATS2
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400299 uint16_t com_code = le16_to_cpu(smb2_command);
300 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400301#endif
302 cifs_stats_inc(&tcon->num_smbs_sent);
303 }
304
305 return rc;
306}
307
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500308#ifdef CONFIG_CIFS_SMB311
309/* offset is sizeof smb2_negotiate_req - 4 but rounded up to 8 bytes */
310#define OFFSET_OF_NEG_CONTEXT 0x68 /* sizeof(struct smb2_negotiate_req) - 4 */
311
312
313#define SMB2_PREAUTH_INTEGRITY_CAPABILITIES cpu_to_le16(1)
314#define SMB2_ENCRYPTION_CAPABILITIES cpu_to_le16(2)
315
316static void
317build_preauth_ctxt(struct smb2_preauth_neg_context *pneg_ctxt)
318{
319 pneg_ctxt->ContextType = SMB2_PREAUTH_INTEGRITY_CAPABILITIES;
320 pneg_ctxt->DataLength = cpu_to_le16(38);
321 pneg_ctxt->HashAlgorithmCount = cpu_to_le16(1);
322 pneg_ctxt->SaltLength = cpu_to_le16(SMB311_SALT_SIZE);
323 get_random_bytes(pneg_ctxt->Salt, SMB311_SALT_SIZE);
324 pneg_ctxt->HashAlgorithms = SMB2_PREAUTH_INTEGRITY_SHA512;
325}
326
327static void
328build_encrypt_ctxt(struct smb2_encryption_neg_context *pneg_ctxt)
329{
330 pneg_ctxt->ContextType = SMB2_ENCRYPTION_CAPABILITIES;
331 pneg_ctxt->DataLength = cpu_to_le16(6);
332 pneg_ctxt->CipherCount = cpu_to_le16(2);
333 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_GCM;
334 pneg_ctxt->Ciphers[1] = SMB2_ENCRYPTION_AES128_CCM;
335}
336
337static void
338assemble_neg_contexts(struct smb2_negotiate_req *req)
339{
340
341 /* +4 is to account for the RFC1001 len field */
342 char *pneg_ctxt = (char *)req + OFFSET_OF_NEG_CONTEXT + 4;
343
344 build_preauth_ctxt((struct smb2_preauth_neg_context *)pneg_ctxt);
345 /* Add 2 to size to round to 8 byte boundary */
346 pneg_ctxt += 2 + sizeof(struct smb2_preauth_neg_context);
347 build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt);
348 req->NegotiateContextOffset = cpu_to_le32(OFFSET_OF_NEG_CONTEXT);
349 req->NegotiateContextCount = cpu_to_le16(2);
350 inc_rfc1001_len(req, 4 + sizeof(struct smb2_preauth_neg_context) + 2
351 + sizeof(struct smb2_encryption_neg_context)); /* calculate hash */
352}
353#else
354static void assemble_neg_contexts(struct smb2_negotiate_req *req)
355{
356 return;
357}
358#endif /* SMB311 */
359
360
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400361/*
362 *
363 * SMB2 Worker functions follow:
364 *
365 * The general structure of the worker functions is:
366 * 1) Call smb2_init (assembles SMB2 header)
367 * 2) Initialize SMB2 command specific fields in fixed length area of SMB
368 * 3) Call smb_sendrcv2 (sends request on socket and waits for response)
369 * 4) Decode SMB2 command specific fields in the fixed length area
370 * 5) Decode variable length data area (if any for this SMB2 command type)
371 * 6) Call free smb buffer
372 * 7) return
373 *
374 */
375
376int
377SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses)
378{
379 struct smb2_negotiate_req *req;
380 struct smb2_negotiate_rsp *rsp;
381 struct kvec iov[1];
382 int rc = 0;
383 int resp_buftype;
Jeff Layton3534b852013-05-24 07:41:01 -0400384 struct TCP_Server_Info *server = ses->server;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400385 int blob_offset, blob_length;
386 char *security_blob;
387 int flags = CIFS_NEG_OP;
388
Joe Perchesf96637b2013-05-04 22:12:25 -0500389 cifs_dbg(FYI, "Negotiate protocol\n");
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400390
Jeff Layton3534b852013-05-24 07:41:01 -0400391 if (!server) {
392 WARN(1, "%s: server is NULL!\n", __func__);
393 return -EIO;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400394 }
395
396 rc = small_smb2_init(SMB2_NEGOTIATE, NULL, (void **) &req);
397 if (rc)
398 return rc;
399
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400400 req->hdr.SessionId = 0;
401
Steve Frenche4aa25e2012-10-01 12:26:22 -0500402 req->Dialects[0] = cpu_to_le16(ses->server->vals->protocol_id);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400403
Steve Frenche4aa25e2012-10-01 12:26:22 -0500404 req->DialectCount = cpu_to_le16(1); /* One vers= at a time for now */
405 inc_rfc1001_len(req, 2);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400406
407 /* only one of SMB2 signing flags may be set in SMB2 request */
Jeff Layton38d77c52013-05-26 07:01:00 -0400408 if (ses->sign)
Steve French9cd2e622013-06-12 19:59:03 -0500409 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
Jeff Layton38d77c52013-05-26 07:01:00 -0400410 else if (global_secflags & CIFSSEC_MAY_SIGN)
Steve French9cd2e622013-06-12 19:59:03 -0500411 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
Jeff Layton38d77c52013-05-26 07:01:00 -0400412 else
413 req->SecurityMode = 0;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400414
Steve Frenche4aa25e2012-10-01 12:26:22 -0500415 req->Capabilities = cpu_to_le32(ses->server->vals->req_capabilities);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400416
Steve French3c5f9be12014-05-13 13:37:45 -0700417 /* ClientGUID must be zero for SMB2.02 dialect */
418 if (ses->server->vals->protocol_id == SMB20_PROT_ID)
419 memset(req->ClientGUID, 0, SMB2_CLIENT_GUID_SIZE);
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500420 else {
Steve French3c5f9be12014-05-13 13:37:45 -0700421 memcpy(req->ClientGUID, server->client_guid,
422 SMB2_CLIENT_GUID_SIZE);
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500423 if (ses->server->vals->protocol_id == SMB311_PROT_ID)
424 assemble_neg_contexts(req);
425 }
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400426 iov[0].iov_base = (char *)req;
427 /* 4 for rfc1002 length field */
428 iov[0].iov_len = get_rfc1002_length(req) + 4;
429
430 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags);
431
432 rsp = (struct smb2_negotiate_rsp *)iov[0].iov_base;
433 /*
434 * No tcon so can't do
435 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
436 */
437 if (rc != 0)
438 goto neg_exit;
439
Joe Perchesf96637b2013-05-04 22:12:25 -0500440 cifs_dbg(FYI, "mode 0x%x\n", rsp->SecurityMode);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400441
Steve Frenche4aa25e2012-10-01 12:26:22 -0500442 /* BB we may eventually want to match the negotiated vs. requested
443 dialect, even though we are only requesting one at a time */
444 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500445 cifs_dbg(FYI, "negotiated smb2.0 dialect\n");
Steve Frenche4aa25e2012-10-01 12:26:22 -0500446 else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500447 cifs_dbg(FYI, "negotiated smb2.1 dialect\n");
Steve Frenche4aa25e2012-10-01 12:26:22 -0500448 else if (rsp->DialectRevision == cpu_to_le16(SMB30_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500449 cifs_dbg(FYI, "negotiated smb3.0 dialect\n");
Steve French20b6d8b2013-06-12 22:48:41 -0500450 else if (rsp->DialectRevision == cpu_to_le16(SMB302_PROT_ID))
451 cifs_dbg(FYI, "negotiated smb3.02 dialect\n");
Steve French5f7fbf72014-12-17 22:52:58 -0600452#ifdef CONFIG_CIFS_SMB311
453 else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID))
454 cifs_dbg(FYI, "negotiated smb3.1.1 dialect\n");
455#endif /* SMB311 */
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400456 else {
Steve Frenchf799d622015-06-18 05:07:52 -0500457 cifs_dbg(VFS, "Illegal dialect returned by server 0x%x\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500458 le16_to_cpu(rsp->DialectRevision));
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400459 rc = -EIO;
460 goto neg_exit;
461 }
462 server->dialect = le16_to_cpu(rsp->DialectRevision);
463
Jeff Laytone598d1d82013-05-26 07:00:59 -0400464 /* SMB2 only has an extended negflavor */
465 server->negflavor = CIFS_NEGFLAVOR_EXTENDED;
Pavel Shilovsky2365c4e2014-02-14 13:31:02 +0400466 /* set it to the maximum buffer size value we can send with 1 credit */
467 server->maxBuf = min_t(unsigned int, le32_to_cpu(rsp->MaxTransactSize),
468 SMB2_MAX_BUFFER_SIZE);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400469 server->max_read = le32_to_cpu(rsp->MaxReadSize);
470 server->max_write = le32_to_cpu(rsp->MaxWriteSize);
471 /* BB Do we need to validate the SecurityMode? */
472 server->sec_mode = le16_to_cpu(rsp->SecurityMode);
473 server->capabilities = le32_to_cpu(rsp->Capabilities);
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400474 /* Internal types */
475 server->capabilities |= SMB2_NT_FIND | SMB2_LARGE_FILES;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400476
477 security_blob = smb2_get_data_area_len(&blob_offset, &blob_length,
478 &rsp->hdr);
Steve French5d875cc2013-06-25 15:33:41 -0500479 /*
480 * See MS-SMB2 section 2.2.4: if no blob, client picks default which
481 * for us will be
482 * ses->sectype = RawNTLMSSP;
483 * but for time being this is our only auth choice so doesn't matter.
484 * We just found a server which sets blob length to zero expecting raw.
485 */
486 if (blob_length == 0)
487 cifs_dbg(FYI, "missing security blob on negprot\n");
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700488
Jeff Layton38d77c52013-05-26 07:01:00 -0400489 rc = cifs_enable_signing(server, ses->sign);
Jeff Layton9ddec562013-05-26 07:00:58 -0400490 if (rc)
491 goto neg_exit;
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500492 if (blob_length) {
Steve Frenchebdd2072014-10-20 12:48:23 -0500493 rc = decode_negTokenInit(security_blob, blob_length, server);
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500494 if (rc == 1)
495 rc = 0;
496 else if (rc == 0)
497 rc = -EIO;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400498 }
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400499neg_exit:
500 free_rsp_buf(resp_buftype, rsp);
501 return rc;
502}
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400503
Steve Frenchff1c0382013-11-19 23:44:46 -0600504int smb3_validate_negotiate(const unsigned int xid, struct cifs_tcon *tcon)
505{
506 int rc = 0;
507 struct validate_negotiate_info_req vneg_inbuf;
508 struct validate_negotiate_info_rsp *pneg_rsp;
509 u32 rsplen;
510
511 cifs_dbg(FYI, "validate negotiate\n");
512
513 /*
514 * validation ioctl must be signed, so no point sending this if we
515 * can not sign it. We could eventually change this to selectively
516 * sign just this, the first and only signed request on a connection.
517 * This is good enough for now since a user who wants better security
518 * would also enable signing on the mount. Having validation of
519 * negotiate info for signed connections helps reduce attack vectors
520 */
521 if (tcon->ses->server->sign == false)
522 return 0; /* validation requires signing */
523
524 vneg_inbuf.Capabilities =
525 cpu_to_le32(tcon->ses->server->vals->req_capabilities);
Sachin Prabhu39552ea2014-05-13 00:48:12 +0100526 memcpy(vneg_inbuf.Guid, tcon->ses->server->client_guid,
527 SMB2_CLIENT_GUID_SIZE);
Steve Frenchff1c0382013-11-19 23:44:46 -0600528
529 if (tcon->ses->sign)
530 vneg_inbuf.SecurityMode =
531 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
532 else if (global_secflags & CIFSSEC_MAY_SIGN)
533 vneg_inbuf.SecurityMode =
534 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
535 else
536 vneg_inbuf.SecurityMode = 0;
537
538 vneg_inbuf.DialectCount = cpu_to_le16(1);
539 vneg_inbuf.Dialects[0] =
540 cpu_to_le16(tcon->ses->server->vals->protocol_id);
541
542 rc = SMB2_ioctl(xid, tcon, NO_FILE_ID, NO_FILE_ID,
543 FSCTL_VALIDATE_NEGOTIATE_INFO, true /* is_fsctl */,
544 (char *)&vneg_inbuf, sizeof(struct validate_negotiate_info_req),
545 (char **)&pneg_rsp, &rsplen);
546
547 if (rc != 0) {
548 cifs_dbg(VFS, "validate protocol negotiate failed: %d\n", rc);
549 return -EIO;
550 }
551
552 if (rsplen != sizeof(struct validate_negotiate_info_rsp)) {
553 cifs_dbg(VFS, "invalid size of protocol negotiate response\n");
554 return -EIO;
555 }
556
557 /* check validate negotiate info response matches what we got earlier */
558 if (pneg_rsp->Dialect !=
559 cpu_to_le16(tcon->ses->server->vals->protocol_id))
560 goto vneg_out;
561
562 if (pneg_rsp->SecurityMode != cpu_to_le16(tcon->ses->server->sec_mode))
563 goto vneg_out;
564
565 /* do not validate server guid because not saved at negprot time yet */
566
567 if ((le32_to_cpu(pneg_rsp->Capabilities) | SMB2_NT_FIND |
568 SMB2_LARGE_FILES) != tcon->ses->server->capabilities)
569 goto vneg_out;
570
571 /* validate negotiate successful */
572 cifs_dbg(FYI, "validate negotiate info successful\n");
573 return 0;
574
575vneg_out:
576 cifs_dbg(VFS, "protocol revalidation - security settings mismatch\n");
577 return -EIO;
578}
579
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400580int
581SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
582 const struct nls_table *nls_cp)
583{
584 struct smb2_sess_setup_req *req;
585 struct smb2_sess_setup_rsp *rsp = NULL;
586 struct kvec iov[2];
587 int rc = 0;
Namjae Jeon7de975e2014-08-20 19:39:41 +0900588 int resp_buftype = CIFS_NO_BUFFER;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400589 __le32 phase = NtLmNegotiate; /* NTLMSSP, if needed, is multistage */
Jeff Layton3534b852013-05-24 07:41:01 -0400590 struct TCP_Server_Info *server = ses->server;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400591 u16 blob_length = 0;
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500592 struct key *spnego_key = NULL;
593 char *security_blob = NULL;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400594 char *ntlmssp_blob = NULL;
595 bool use_spnego = false; /* else use raw ntlmssp */
596
Joe Perchesf96637b2013-05-04 22:12:25 -0500597 cifs_dbg(FYI, "Session Setup\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400598
Jeff Layton3534b852013-05-24 07:41:01 -0400599 if (!server) {
600 WARN(1, "%s: server is NULL!\n", __func__);
601 return -EIO;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400602 }
603
604 /*
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -0500605 * If we are here due to reconnect, free per-smb session key
606 * in case signing was required.
607 */
608 kfree(ses->auth_key.response);
609 ses->auth_key.response = NULL;
610
611 /*
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400612 * If memory allocation is successful, caller of this function
613 * frees it.
614 */
615 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
616 if (!ses->ntlmssp)
617 return -ENOMEM;
Shirish Pargaonkar5c234aa2013-08-29 08:35:10 -0500618 ses->ntlmssp->sesskey_per_smbsess = true;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400619
Jeff Layton3f618222013-06-12 19:52:14 -0500620 /* FIXME: allow for other auth types besides NTLMSSP (e.g. krb5) */
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500621 if (ses->sectype != Kerberos && ses->sectype != RawNTLMSSP)
622 ses->sectype = RawNTLMSSP;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400623
624ssetup_ntlmssp_authenticate:
625 if (phase == NtLmChallenge)
626 phase = NtLmAuthenticate; /* if ntlmssp, now final phase */
627
628 rc = small_smb2_init(SMB2_SESSION_SETUP, NULL, (void **) &req);
629 if (rc)
630 return rc;
631
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400632 req->hdr.SessionId = 0; /* First session, not a reauthenticate */
Steve Frencheed0e172015-02-06 00:03:52 -0600633 req->Flags = 0; /* MBZ */
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400634 /* to enable echos and oplocks */
635 req->hdr.CreditRequest = cpu_to_le16(3);
636
637 /* only one of SMB2 signing flags may be set in SMB2 request */
Jeff Layton38d77c52013-05-26 07:01:00 -0400638 if (server->sign)
639 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_REQUIRED;
640 else if (global_secflags & CIFSSEC_MAY_SIGN) /* one flag unlike MUST_ */
641 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED;
642 else
643 req->SecurityMode = 0;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400644
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400645 req->Capabilities = 0;
646 req->Channel = 0; /* MBZ */
647
648 iov[0].iov_base = (char *)req;
649 /* 4 for rfc1002 length field and 1 for pad */
650 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500651
652 if (ses->sectype == Kerberos) {
653#ifdef CONFIG_CIFS_UPCALL
654 struct cifs_spnego_msg *msg;
655
656 spnego_key = cifs_get_spnego_key(ses);
657 if (IS_ERR(spnego_key)) {
658 rc = PTR_ERR(spnego_key);
659 spnego_key = NULL;
660 goto ssetup_exit;
661 }
662
663 msg = spnego_key->payload.data;
664 /*
665 * check version field to make sure that cifs.upcall is
666 * sending us a response in an expected form
667 */
668 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
669 cifs_dbg(VFS,
670 "bad cifs.upcall version. Expected %d got %d",
671 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
672 rc = -EKEYREJECTED;
673 goto ssetup_exit;
674 }
675 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
676 GFP_KERNEL);
677 if (!ses->auth_key.response) {
678 cifs_dbg(VFS,
679 "Kerberos can't allocate (%u bytes) memory",
680 msg->sesskey_len);
681 rc = -ENOMEM;
682 goto ssetup_exit;
683 }
684 ses->auth_key.len = msg->sesskey_len;
685 blob_length = msg->secblob_len;
686 iov[1].iov_base = msg->data + msg->sesskey_len;
687 iov[1].iov_len = blob_length;
688#else
689 rc = -EOPNOTSUPP;
690 goto ssetup_exit;
691#endif /* CONFIG_CIFS_UPCALL */
692 } else if (phase == NtLmNegotiate) { /* if not krb5 must be ntlmssp */
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400693 ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE),
694 GFP_KERNEL);
695 if (ntlmssp_blob == NULL) {
696 rc = -ENOMEM;
697 goto ssetup_exit;
698 }
699 build_ntlmssp_negotiate_blob(ntlmssp_blob, ses);
700 if (use_spnego) {
701 /* blob_length = build_spnego_ntlmssp_blob(
702 &security_blob,
703 sizeof(struct _NEGOTIATE_MESSAGE),
704 ntlmssp_blob); */
705 /* BB eventually need to add this */
Joe Perchesf96637b2013-05-04 22:12:25 -0500706 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400707 rc = -EOPNOTSUPP;
708 kfree(ntlmssp_blob);
709 goto ssetup_exit;
710 } else {
711 blob_length = sizeof(struct _NEGOTIATE_MESSAGE);
712 /* with raw NTLMSSP we don't encapsulate in SPNEGO */
713 security_blob = ntlmssp_blob;
714 }
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500715 iov[1].iov_base = security_blob;
716 iov[1].iov_len = blob_length;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400717 } else if (phase == NtLmAuthenticate) {
718 req->hdr.SessionId = ses->Suid;
719 ntlmssp_blob = kzalloc(sizeof(struct _NEGOTIATE_MESSAGE) + 500,
720 GFP_KERNEL);
721 if (ntlmssp_blob == NULL) {
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400722 rc = -ENOMEM;
723 goto ssetup_exit;
724 }
725 rc = build_ntlmssp_auth_blob(ntlmssp_blob, &blob_length, ses,
726 nls_cp);
727 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500728 cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n",
729 rc);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400730 goto ssetup_exit; /* BB double check error handling */
731 }
732 if (use_spnego) {
733 /* blob_length = build_spnego_ntlmssp_blob(
734 &security_blob,
735 blob_length,
736 ntlmssp_blob); */
Joe Perchesf96637b2013-05-04 22:12:25 -0500737 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400738 rc = -EOPNOTSUPP;
739 kfree(ntlmssp_blob);
740 goto ssetup_exit;
741 } else {
742 security_blob = ntlmssp_blob;
743 }
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500744 iov[1].iov_base = security_blob;
745 iov[1].iov_len = blob_length;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400746 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500747 cifs_dbg(VFS, "illegal ntlmssp phase\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400748 rc = -EIO;
749 goto ssetup_exit;
750 }
751
752 /* Testing shows that buffer offset must be at location of Buffer[0] */
753 req->SecurityBufferOffset =
754 cpu_to_le16(sizeof(struct smb2_sess_setup_req) -
755 1 /* pad */ - 4 /* rfc1001 len */);
756 req->SecurityBufferLength = cpu_to_le16(blob_length);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400757
758 inc_rfc1001_len(req, blob_length - 1 /* pad */);
759
760 /* BB add code to build os and lm fields */
761
Steve French6d8b59d2012-12-08 22:36:29 -0600762 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype,
763 CIFS_LOG_ERROR | CIFS_NEG_OP);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400764
765 kfree(security_blob);
766 rsp = (struct smb2_sess_setup_rsp *)iov[0].iov_base;
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500767 ses->Suid = rsp->hdr.SessionId;
Pavel Shilovsky4ca3a992012-09-25 11:00:09 +0400768 if (resp_buftype != CIFS_NO_BUFFER &&
769 rsp->hdr.Status == STATUS_MORE_PROCESSING_REQUIRED) {
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400770 if (phase != NtLmNegotiate) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500771 cifs_dbg(VFS, "Unexpected more processing error\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400772 goto ssetup_exit;
773 }
774 if (offsetof(struct smb2_sess_setup_rsp, Buffer) - 4 !=
Pavel Shilovsky4ca3a992012-09-25 11:00:09 +0400775 le16_to_cpu(rsp->SecurityBufferOffset)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500776 cifs_dbg(VFS, "Invalid security buffer offset %d\n",
777 le16_to_cpu(rsp->SecurityBufferOffset));
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400778 rc = -EIO;
779 goto ssetup_exit;
780 }
781
782 /* NTLMSSP Negotiate sent now processing challenge (response) */
783 phase = NtLmChallenge; /* process ntlmssp challenge */
784 rc = 0; /* MORE_PROCESSING is not an error here but expected */
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400785 rc = decode_ntlmssp_challenge(rsp->Buffer,
786 le16_to_cpu(rsp->SecurityBufferLength), ses);
787 }
788
789 /*
790 * BB eventually add code for SPNEGO decoding of NtlmChallenge blob,
791 * but at least the raw NTLMSSP case works.
792 */
793 /*
794 * No tcon so can't do
795 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
796 */
797 if (rc != 0)
798 goto ssetup_exit;
799
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400800 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
Steve French0cbaa532013-11-15 23:50:24 -0600801 if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA)
802 cifs_dbg(VFS, "SMB3 encryption not supported yet\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400803ssetup_exit:
804 free_rsp_buf(resp_buftype, rsp);
805
806 /* if ntlmssp, and negotiate succeeded, proceed to authenticate phase */
807 if ((phase == NtLmChallenge) && (rc == 0))
808 goto ssetup_ntlmssp_authenticate;
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -0500809
810 if (!rc) {
811 mutex_lock(&server->srv_mutex);
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500812 if (server->sign && server->ops->generate_signingkey) {
813 rc = server->ops->generate_signingkey(ses);
814 kfree(ses->auth_key.response);
815 ses->auth_key.response = NULL;
816 if (rc) {
817 cifs_dbg(FYI,
818 "SMB3 session key generation failed\n");
819 mutex_unlock(&server->srv_mutex);
820 goto keygen_exit;
821 }
822 }
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -0500823 if (!server->session_estab) {
824 server->sequence_number = 0x2;
825 server->session_estab = true;
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -0500826 }
827 mutex_unlock(&server->srv_mutex);
828
829 cifs_dbg(FYI, "SMB2/3 session established successfully\n");
830 spin_lock(&GlobalMid_Lock);
831 ses->status = CifsGood;
832 ses->need_reconnect = false;
833 spin_unlock(&GlobalMid_Lock);
834 }
835
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500836keygen_exit:
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -0500837 if (!server->sign) {
838 kfree(ses->auth_key.response);
839 ses->auth_key.response = NULL;
840 }
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500841 if (spnego_key) {
842 key_invalidate(spnego_key);
843 key_put(spnego_key);
844 }
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -0500845 kfree(ses->ntlmssp);
846
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400847 return rc;
848}
849
850int
851SMB2_logoff(const unsigned int xid, struct cifs_ses *ses)
852{
853 struct smb2_logoff_req *req; /* response is also trivial struct */
854 int rc = 0;
855 struct TCP_Server_Info *server;
856
Joe Perchesf96637b2013-05-04 22:12:25 -0500857 cifs_dbg(FYI, "disconnect session %p\n", ses);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400858
859 if (ses && (ses->server))
860 server = ses->server;
861 else
862 return -EIO;
863
Shirish Pargaonkareb4c7df2013-10-03 05:44:45 -0500864 /* no need to send SMB logoff if uid already closed due to reconnect */
865 if (ses->need_reconnect)
866 goto smb2_session_already_dead;
867
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400868 rc = small_smb2_init(SMB2_LOGOFF, NULL, (void **) &req);
869 if (rc)
870 return rc;
871
872 /* since no tcon, smb2_init can not do this, so do here */
873 req->hdr.SessionId = ses->Suid;
Jeff Layton38d77c52013-05-26 07:01:00 -0400874 if (server->sign)
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700875 req->hdr.Flags |= SMB2_FLAGS_SIGNED;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400876
877 rc = SendReceiveNoRsp(xid, ses, (char *) &req->hdr, 0);
878 /*
879 * No tcon so can't do
880 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
881 */
Shirish Pargaonkareb4c7df2013-10-03 05:44:45 -0500882
883smb2_session_already_dead:
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400884 return rc;
885}
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400886
887static inline void cifs_stats_fail_inc(struct cifs_tcon *tcon, uint16_t code)
888{
Pavel Shilovskyd60622e2012-05-28 15:19:39 +0400889 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_failed[code]);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400890}
891
892#define MAX_SHARENAME_LENGTH (255 /* server */ + 80 /* share */ + 1 /* NULL */)
893
Steve Frenchde9f68d2013-11-15 11:26:24 -0600894/* These are similar values to what Windows uses */
895static inline void init_copy_chunk_defaults(struct cifs_tcon *tcon)
896{
897 tcon->max_chunks = 256;
898 tcon->max_bytes_chunk = 1048576;
899 tcon->max_bytes_copy = 16777216;
900}
901
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400902int
903SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
904 struct cifs_tcon *tcon, const struct nls_table *cp)
905{
906 struct smb2_tree_connect_req *req;
907 struct smb2_tree_connect_rsp *rsp = NULL;
908 struct kvec iov[2];
909 int rc = 0;
910 int resp_buftype;
911 int unc_path_len;
912 struct TCP_Server_Info *server;
913 __le16 *unc_path = NULL;
914
Joe Perchesf96637b2013-05-04 22:12:25 -0500915 cifs_dbg(FYI, "TCON\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400916
917 if ((ses->server) && tree)
918 server = ses->server;
919 else
920 return -EIO;
921
922 if (tcon && tcon->bad_network_name)
923 return -ENOENT;
924
925 unc_path = kmalloc(MAX_SHARENAME_LENGTH * 2, GFP_KERNEL);
926 if (unc_path == NULL)
927 return -ENOMEM;
928
929 unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp) + 1;
930 unc_path_len *= 2;
931 if (unc_path_len < 2) {
932 kfree(unc_path);
933 return -EINVAL;
934 }
935
936 rc = small_smb2_init(SMB2_TREE_CONNECT, tcon, (void **) &req);
937 if (rc) {
938 kfree(unc_path);
939 return rc;
940 }
941
942 if (tcon == NULL) {
943 /* since no tcon, smb2_init can not do this, so do here */
944 req->hdr.SessionId = ses->Suid;
945 /* if (ses->server->sec_mode & SECMODE_SIGN_REQUIRED)
946 req->hdr.Flags |= SMB2_FLAGS_SIGNED; */
947 }
948
949 iov[0].iov_base = (char *)req;
950 /* 4 for rfc1002 length field and 1 for pad */
951 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
952
953 /* Testing shows that buffer offset must be at location of Buffer[0] */
954 req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)
955 - 1 /* pad */ - 4 /* do not count rfc1001 len field */);
956 req->PathLength = cpu_to_le16(unc_path_len - 2);
957 iov[1].iov_base = unc_path;
958 iov[1].iov_len = unc_path_len;
959
960 inc_rfc1001_len(req, unc_path_len - 1 /* pad */);
961
962 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0);
963 rsp = (struct smb2_tree_connect_rsp *)iov[0].iov_base;
964
965 if (rc != 0) {
966 if (tcon) {
967 cifs_stats_fail_inc(tcon, SMB2_TREE_CONNECT_HE);
968 tcon->need_reconnect = true;
969 }
970 goto tcon_error_exit;
971 }
972
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400973 if (tcon == NULL) {
974 ses->ipc_tid = rsp->hdr.TreeId;
975 goto tcon_exit;
976 }
977
978 if (rsp->ShareType & SMB2_SHARE_TYPE_DISK)
Joe Perchesf96637b2013-05-04 22:12:25 -0500979 cifs_dbg(FYI, "connection to disk share\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400980 else if (rsp->ShareType & SMB2_SHARE_TYPE_PIPE) {
981 tcon->ipc = true;
Joe Perchesf96637b2013-05-04 22:12:25 -0500982 cifs_dbg(FYI, "connection to pipe share\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400983 } else if (rsp->ShareType & SMB2_SHARE_TYPE_PRINT) {
984 tcon->print = true;
Joe Perchesf96637b2013-05-04 22:12:25 -0500985 cifs_dbg(FYI, "connection to printer\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400986 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500987 cifs_dbg(VFS, "unknown share type %d\n", rsp->ShareType);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400988 rc = -EOPNOTSUPP;
989 goto tcon_error_exit;
990 }
991
992 tcon->share_flags = le32_to_cpu(rsp->ShareFlags);
Steve French769ee6a2013-06-19 14:15:30 -0500993 tcon->capabilities = rsp->Capabilities; /* we keep caps little endian */
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400994 tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess);
995 tcon->tidStatus = CifsGood;
996 tcon->need_reconnect = false;
997 tcon->tid = rsp->hdr.TreeId;
Zhao Hongjiang46b51d02013-06-24 01:57:47 -0500998 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400999
1000 if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) &&
1001 ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0))
Joe Perchesf96637b2013-05-04 22:12:25 -05001002 cifs_dbg(VFS, "DFS capability contradicts DFS flag\n");
Steve Frenchde9f68d2013-11-15 11:26:24 -06001003 init_copy_chunk_defaults(tcon);
Steve Frenchff1c0382013-11-19 23:44:46 -06001004 if (tcon->ses->server->ops->validate_negotiate)
1005 rc = tcon->ses->server->ops->validate_negotiate(xid, tcon);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001006tcon_exit:
1007 free_rsp_buf(resp_buftype, rsp);
1008 kfree(unc_path);
1009 return rc;
1010
1011tcon_error_exit:
1012 if (rsp->hdr.Status == STATUS_BAD_NETWORK_NAME) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001013 cifs_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree);
Steve French18f39e72014-08-17 00:22:24 -05001014 if (tcon)
1015 tcon->bad_network_name = true;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001016 }
1017 goto tcon_exit;
1018}
1019
1020int
1021SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
1022{
1023 struct smb2_tree_disconnect_req *req; /* response is trivial */
1024 int rc = 0;
1025 struct TCP_Server_Info *server;
1026 struct cifs_ses *ses = tcon->ses;
1027
Joe Perchesf96637b2013-05-04 22:12:25 -05001028 cifs_dbg(FYI, "Tree Disconnect\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001029
1030 if (ses && (ses->server))
1031 server = ses->server;
1032 else
1033 return -EIO;
1034
1035 if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
1036 return 0;
1037
1038 rc = small_smb2_init(SMB2_TREE_DISCONNECT, tcon, (void **) &req);
1039 if (rc)
1040 return rc;
1041
1042 rc = SendReceiveNoRsp(xid, ses, (char *)&req->hdr, 0);
1043 if (rc)
1044 cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE);
1045
1046 return rc;
1047}
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001048
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001049
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001050static struct create_durable *
1051create_durable_buf(void)
1052{
1053 struct create_durable *buf;
1054
1055 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1056 if (!buf)
1057 return NULL;
1058
1059 buf->ccontext.DataOffset = cpu_to_le16(offsetof
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001060 (struct create_durable, Data));
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001061 buf->ccontext.DataLength = cpu_to_le32(16);
1062 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1063 (struct create_durable, Name));
1064 buf->ccontext.NameLength = cpu_to_le16(4);
Steve French12197a72014-05-14 05:29:40 -07001065 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DHnQ" */
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001066 buf->Name[0] = 'D';
1067 buf->Name[1] = 'H';
1068 buf->Name[2] = 'n';
1069 buf->Name[3] = 'Q';
1070 return buf;
1071}
1072
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001073static struct create_durable *
1074create_reconnect_durable_buf(struct cifs_fid *fid)
1075{
1076 struct create_durable *buf;
1077
1078 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1079 if (!buf)
1080 return NULL;
1081
1082 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1083 (struct create_durable, Data));
1084 buf->ccontext.DataLength = cpu_to_le32(16);
1085 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1086 (struct create_durable, Name));
1087 buf->ccontext.NameLength = cpu_to_le16(4);
1088 buf->Data.Fid.PersistentFileId = fid->persistent_fid;
1089 buf->Data.Fid.VolatileFileId = fid->volatile_fid;
Steve French12197a72014-05-14 05:29:40 -07001090 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT is "DHnC" */
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001091 buf->Name[0] = 'D';
1092 buf->Name[1] = 'H';
1093 buf->Name[2] = 'n';
1094 buf->Name[3] = 'C';
1095 return buf;
1096}
1097
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001098static __u8
Pavel Shilovsky42873b02013-09-05 21:30:16 +04001099parse_lease_state(struct TCP_Server_Info *server, struct smb2_create_rsp *rsp,
1100 unsigned int *epoch)
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001101{
1102 char *data_offset;
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001103 struct create_context *cc;
Pavel Shilovskyfd554392013-07-09 19:44:56 +04001104 unsigned int next = 0;
1105 char *name;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001106
Pavel Shilovskyfd554392013-07-09 19:44:56 +04001107 data_offset = (char *)rsp + 4 + le32_to_cpu(rsp->CreateContextsOffset);
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001108 cc = (struct create_context *)data_offset;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001109 do {
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001110 cc = (struct create_context *)((char *)cc + next);
1111 name = le16_to_cpu(cc->NameOffset) + (char *)cc;
1112 if (le16_to_cpu(cc->NameLength) != 4 ||
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001113 strncmp(name, "RqLs", 4)) {
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001114 next = le32_to_cpu(cc->Next);
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001115 continue;
1116 }
Pavel Shilovsky42873b02013-09-05 21:30:16 +04001117 return server->ops->parse_lease_buf(cc, epoch);
Pavel Shilovskyfd554392013-07-09 19:44:56 +04001118 } while (next != 0);
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001119
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001120 return 0;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001121}
1122
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001123static int
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001124add_lease_context(struct TCP_Server_Info *server, struct kvec *iov,
1125 unsigned int *num_iovec, __u8 *oplock)
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001126{
1127 struct smb2_create_req *req = iov[0].iov_base;
1128 unsigned int num = *num_iovec;
1129
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001130 iov[num].iov_base = server->ops->create_lease_buf(oplock+1, *oplock);
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001131 if (iov[num].iov_base == NULL)
1132 return -ENOMEM;
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001133 iov[num].iov_len = server->vals->create_lease_size;
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001134 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_LEASE;
1135 if (!req->CreateContextsOffset)
1136 req->CreateContextsOffset = cpu_to_le32(
1137 sizeof(struct smb2_create_req) - 4 +
1138 iov[num - 1].iov_len);
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001139 le32_add_cpu(&req->CreateContextsLength,
1140 server->vals->create_lease_size);
1141 inc_rfc1001_len(&req->hdr, server->vals->create_lease_size);
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001142 *num_iovec = num + 1;
1143 return 0;
1144}
1145
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001146static int
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001147add_durable_context(struct kvec *iov, unsigned int *num_iovec,
1148 struct cifs_open_parms *oparms)
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001149{
1150 struct smb2_create_req *req = iov[0].iov_base;
1151 unsigned int num = *num_iovec;
1152
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001153 if (oparms->reconnect) {
1154 iov[num].iov_base = create_reconnect_durable_buf(oparms->fid);
1155 /* indicate that we don't need to relock the file */
1156 oparms->reconnect = false;
1157 } else
1158 iov[num].iov_base = create_durable_buf();
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001159 if (iov[num].iov_base == NULL)
1160 return -ENOMEM;
1161 iov[num].iov_len = sizeof(struct create_durable);
1162 if (!req->CreateContextsOffset)
1163 req->CreateContextsOffset =
1164 cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1165 iov[1].iov_len);
Wei Yongjun31f92e92013-08-26 14:34:46 +08001166 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable));
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001167 inc_rfc1001_len(&req->hdr, sizeof(struct create_durable));
1168 *num_iovec = num + 1;
1169 return 0;
1170}
1171
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001172int
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001173SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, __le16 *path,
Pavel Shilovskyb42bf882013-08-14 19:25:21 +04001174 __u8 *oplock, struct smb2_file_all_info *buf,
1175 struct smb2_err_rsp **err_buf)
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001176{
1177 struct smb2_create_req *req;
1178 struct smb2_create_rsp *rsp;
1179 struct TCP_Server_Info *server;
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001180 struct cifs_tcon *tcon = oparms->tcon;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001181 struct cifs_ses *ses = tcon->ses;
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001182 struct kvec iov[4];
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001183 int resp_buftype;
1184 int uni_path_len;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001185 __le16 *copy_path = NULL;
1186 int copy_size;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001187 int rc = 0;
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04001188 unsigned int num_iovecs = 2;
Pavel Shilovskyca819832013-07-05 12:21:26 +04001189 __u32 file_attributes = 0;
Pavel Shilovsky663a96212014-05-24 16:42:02 +04001190 char *dhc_buf = NULL, *lc_buf = NULL;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001191
Joe Perchesf96637b2013-05-04 22:12:25 -05001192 cifs_dbg(FYI, "create/open\n");
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001193
1194 if (ses && (ses->server))
1195 server = ses->server;
1196 else
1197 return -EIO;
1198
1199 rc = small_smb2_init(SMB2_CREATE, tcon, (void **) &req);
1200 if (rc)
1201 return rc;
1202
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001203 if (oparms->create_options & CREATE_OPTION_READONLY)
Pavel Shilovskyca819832013-07-05 12:21:26 +04001204 file_attributes |= ATTR_READONLY;
Steve Frenchdb8b6312014-09-22 05:13:55 -05001205 if (oparms->create_options & CREATE_OPTION_SPECIAL)
1206 file_attributes |= ATTR_SYSTEM;
Pavel Shilovskyca819832013-07-05 12:21:26 +04001207
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001208 req->ImpersonationLevel = IL_IMPERSONATION;
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001209 req->DesiredAccess = cpu_to_le32(oparms->desired_access);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001210 /* File attributes ignored on open (used in create though) */
1211 req->FileAttributes = cpu_to_le32(file_attributes);
1212 req->ShareAccess = FILE_SHARE_ALL_LE;
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001213 req->CreateDisposition = cpu_to_le32(oparms->disposition);
1214 req->CreateOptions = cpu_to_le32(oparms->create_options & CREATE_OPTIONS_MASK);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001215 uni_path_len = (2 * UniStrnlen((wchar_t *)path, PATH_MAX)) + 2;
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04001216 /* do not count rfc1001 len field */
1217 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req) - 4);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001218
1219 iov[0].iov_base = (char *)req;
1220 /* 4 for rfc1002 length field */
1221 iov[0].iov_len = get_rfc1002_length(req) + 4;
1222
1223 /* MUST set path len (NameLength) to 0 opening root of share */
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04001224 req->NameLength = cpu_to_le16(uni_path_len - 2);
1225 /* -1 since last byte is buf[0] which is sent below (path) */
1226 iov[0].iov_len--;
1227 if (uni_path_len % 8 != 0) {
1228 copy_size = uni_path_len / 8 * 8;
1229 if (copy_size < uni_path_len)
1230 copy_size += 8;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001231
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04001232 copy_path = kzalloc(copy_size, GFP_KERNEL);
1233 if (!copy_path)
1234 return -ENOMEM;
1235 memcpy((char *)copy_path, (const char *)path,
1236 uni_path_len);
1237 uni_path_len = copy_size;
1238 path = copy_path;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001239 }
1240
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04001241 iov[1].iov_len = uni_path_len;
1242 iov[1].iov_base = path;
1243 /* -1 since last byte is buf[0] which was counted in smb2_buf_len */
1244 inc_rfc1001_len(req, uni_path_len - 1);
1245
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001246 if (!server->oplocks)
1247 *oplock = SMB2_OPLOCK_LEVEL_NONE;
1248
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001249 if (!(server->capabilities & SMB2_GLOBAL_CAP_LEASING) ||
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001250 *oplock == SMB2_OPLOCK_LEVEL_NONE)
1251 req->RequestedOplockLevel = *oplock;
1252 else {
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001253 rc = add_lease_context(server, iov, &num_iovecs, oplock);
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001254 if (rc) {
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001255 cifs_small_buf_release(req);
1256 kfree(copy_path);
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001257 return rc;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001258 }
Pavel Shilovsky663a96212014-05-24 16:42:02 +04001259 lc_buf = iov[num_iovecs-1].iov_base;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001260 }
1261
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001262 if (*oplock == SMB2_OPLOCK_LEVEL_BATCH) {
1263 /* need to set Next field of lease context if we request it */
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001264 if (server->capabilities & SMB2_GLOBAL_CAP_LEASING) {
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001265 struct create_context *ccontext =
1266 (struct create_context *)iov[num_iovecs-1].iov_base;
Steve French1c469432013-07-10 12:50:57 -05001267 ccontext->Next =
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001268 cpu_to_le32(server->vals->create_lease_size);
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001269 }
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001270 rc = add_durable_context(iov, &num_iovecs, oparms);
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001271 if (rc) {
1272 cifs_small_buf_release(req);
1273 kfree(copy_path);
Pavel Shilovsky663a96212014-05-24 16:42:02 +04001274 kfree(lc_buf);
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001275 return rc;
1276 }
Pavel Shilovsky663a96212014-05-24 16:42:02 +04001277 dhc_buf = iov[num_iovecs-1].iov_base;
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001278 }
1279
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001280 rc = SendReceive2(xid, ses, iov, num_iovecs, &resp_buftype, 0);
1281 rsp = (struct smb2_create_rsp *)iov[0].iov_base;
1282
1283 if (rc != 0) {
1284 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
Pavel Shilovskyb42bf882013-08-14 19:25:21 +04001285 if (err_buf)
1286 *err_buf = kmemdup(rsp, get_rfc1002_length(rsp) + 4,
1287 GFP_KERNEL);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001288 goto creat_exit;
1289 }
1290
Pavel Shilovsky064f6042013-07-09 18:20:30 +04001291 oparms->fid->persistent_fid = rsp->PersistentFileId;
1292 oparms->fid->volatile_fid = rsp->VolatileFileId;
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001293
1294 if (buf) {
1295 memcpy(buf, &rsp->CreationTime, 32);
1296 buf->AllocationSize = rsp->AllocationSize;
1297 buf->EndOfFile = rsp->EndofFile;
1298 buf->Attributes = rsp->FileAttributes;
1299 buf->NumberOfLinks = cpu_to_le32(1);
1300 buf->DeletePending = 0;
1301 }
Pavel Shilovsky2e44b282012-09-18 16:20:33 -07001302
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001303 if (rsp->OplockLevel == SMB2_OPLOCK_LEVEL_LEASE)
Pavel Shilovsky42873b02013-09-05 21:30:16 +04001304 *oplock = parse_lease_state(server, rsp, &oparms->fid->epoch);
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001305 else
1306 *oplock = rsp->OplockLevel;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001307creat_exit:
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001308 kfree(copy_path);
Pavel Shilovsky663a96212014-05-24 16:42:02 +04001309 kfree(lc_buf);
1310 kfree(dhc_buf);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001311 free_rsp_buf(resp_buftype, rsp);
1312 return rc;
1313}
1314
Steve French4a72daf2013-06-25 00:20:49 -05001315/*
1316 * SMB2 IOCTL is used for both IOCTLs and FSCTLs
1317 */
1318int
1319SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
1320 u64 volatile_fid, u32 opcode, bool is_fsctl, char *in_data,
1321 u32 indatalen, char **out_data, u32 *plen /* returned data len */)
1322{
1323 struct smb2_ioctl_req *req;
1324 struct smb2_ioctl_rsp *rsp;
1325 struct TCP_Server_Info *server;
Steve French8e353102015-03-26 19:47:02 -05001326 struct cifs_ses *ses;
Steve French4a72daf2013-06-25 00:20:49 -05001327 struct kvec iov[2];
1328 int resp_buftype;
1329 int num_iovecs;
1330 int rc = 0;
1331
1332 cifs_dbg(FYI, "SMB2 IOCTL\n");
1333
Steve French3d1a3742014-08-11 21:05:25 -05001334 if (out_data != NULL)
1335 *out_data = NULL;
1336
Steve French4a72daf2013-06-25 00:20:49 -05001337 /* zero out returned data len, in case of error */
1338 if (plen)
1339 *plen = 0;
1340
Steve French8e353102015-03-26 19:47:02 -05001341 if (tcon)
1342 ses = tcon->ses;
1343 else
1344 return -EIO;
1345
Steve French4a72daf2013-06-25 00:20:49 -05001346 if (ses && (ses->server))
1347 server = ses->server;
1348 else
1349 return -EIO;
1350
1351 rc = small_smb2_init(SMB2_IOCTL, tcon, (void **) &req);
1352 if (rc)
1353 return rc;
1354
1355 req->CtlCode = cpu_to_le32(opcode);
1356 req->PersistentFileId = persistent_fid;
1357 req->VolatileFileId = volatile_fid;
1358
1359 if (indatalen) {
1360 req->InputCount = cpu_to_le32(indatalen);
1361 /* do not set InputOffset if no input data */
1362 req->InputOffset =
1363 cpu_to_le32(offsetof(struct smb2_ioctl_req, Buffer) - 4);
1364 iov[1].iov_base = in_data;
1365 iov[1].iov_len = indatalen;
1366 num_iovecs = 2;
1367 } else
1368 num_iovecs = 1;
1369
1370 req->OutputOffset = 0;
1371 req->OutputCount = 0; /* MBZ */
1372
1373 /*
1374 * Could increase MaxOutputResponse, but that would require more
1375 * than one credit. Windows typically sets this smaller, but for some
1376 * ioctls it may be useful to allow server to send more. No point
1377 * limiting what the server can send as long as fits in one credit
1378 */
1379 req->MaxOutputResponse = cpu_to_le32(0xFF00); /* < 64K uses 1 credit */
1380
1381 if (is_fsctl)
1382 req->Flags = cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL);
1383 else
1384 req->Flags = 0;
1385
1386 iov[0].iov_base = (char *)req;
Steve French4a72daf2013-06-25 00:20:49 -05001387
Steve French7ff8d452013-10-14 00:44:19 -05001388 /*
1389 * If no input data, the size of ioctl struct in
1390 * protocol spec still includes a 1 byte data buffer,
1391 * but if input data passed to ioctl, we do not
1392 * want to double count this, so we do not send
1393 * the dummy one byte of data in iovec[0] if sending
1394 * input data (in iovec[1]). We also must add 4 bytes
1395 * in first iovec to allow for rfc1002 length field.
1396 */
1397
1398 if (indatalen) {
1399 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1400 inc_rfc1001_len(req, indatalen - 1);
1401 } else
1402 iov[0].iov_len = get_rfc1002_length(req) + 4;
1403
Steve French4a72daf2013-06-25 00:20:49 -05001404
1405 rc = SendReceive2(xid, ses, iov, num_iovecs, &resp_buftype, 0);
1406 rsp = (struct smb2_ioctl_rsp *)iov[0].iov_base;
1407
Steve French9bf0c9c2013-11-16 18:05:28 -06001408 if ((rc != 0) && (rc != -EINVAL)) {
Steve French8e353102015-03-26 19:47:02 -05001409 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
Steve French4a72daf2013-06-25 00:20:49 -05001410 goto ioctl_exit;
Steve French9bf0c9c2013-11-16 18:05:28 -06001411 } else if (rc == -EINVAL) {
1412 if ((opcode != FSCTL_SRV_COPYCHUNK_WRITE) &&
1413 (opcode != FSCTL_SRV_COPYCHUNK)) {
Steve French8e353102015-03-26 19:47:02 -05001414 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
Steve French9bf0c9c2013-11-16 18:05:28 -06001415 goto ioctl_exit;
1416 }
Steve French4a72daf2013-06-25 00:20:49 -05001417 }
1418
1419 /* check if caller wants to look at return data or just return rc */
1420 if ((plen == NULL) || (out_data == NULL))
1421 goto ioctl_exit;
1422
1423 *plen = le32_to_cpu(rsp->OutputCount);
1424
1425 /* We check for obvious errors in the output buffer length and offset */
1426 if (*plen == 0)
1427 goto ioctl_exit; /* server returned no data */
1428 else if (*plen > 0xFF00) {
1429 cifs_dbg(VFS, "srv returned invalid ioctl length: %d\n", *plen);
1430 *plen = 0;
1431 rc = -EIO;
1432 goto ioctl_exit;
1433 }
1434
1435 if (get_rfc1002_length(rsp) < le32_to_cpu(rsp->OutputOffset) + *plen) {
1436 cifs_dbg(VFS, "Malformed ioctl resp: len %d offset %d\n", *plen,
1437 le32_to_cpu(rsp->OutputOffset));
1438 *plen = 0;
1439 rc = -EIO;
1440 goto ioctl_exit;
1441 }
1442
1443 *out_data = kmalloc(*plen, GFP_KERNEL);
1444 if (*out_data == NULL) {
1445 rc = -ENOMEM;
1446 goto ioctl_exit;
1447 }
1448
1449 memcpy(*out_data, rsp->hdr.ProtocolId + le32_to_cpu(rsp->OutputOffset),
1450 *plen);
1451ioctl_exit:
1452 free_rsp_buf(resp_buftype, rsp);
1453 return rc;
1454}
1455
Steve French64a5cfa2013-10-14 15:31:32 -05001456/*
1457 * Individual callers to ioctl worker function follow
1458 */
1459
1460int
1461SMB2_set_compression(const unsigned int xid, struct cifs_tcon *tcon,
1462 u64 persistent_fid, u64 volatile_fid)
1463{
1464 int rc;
Steve French64a5cfa2013-10-14 15:31:32 -05001465 struct compress_ioctl fsctl_input;
1466 char *ret_data = NULL;
1467
1468 fsctl_input.CompressionState =
Fabian Frederickbc09d142014-12-10 15:41:15 -08001469 cpu_to_le16(COMPRESSION_FORMAT_DEFAULT);
Steve French64a5cfa2013-10-14 15:31:32 -05001470
1471 rc = SMB2_ioctl(xid, tcon, persistent_fid, volatile_fid,
1472 FSCTL_SET_COMPRESSION, true /* is_fsctl */,
1473 (char *)&fsctl_input /* data input */,
1474 2 /* in data len */, &ret_data /* out data */, NULL);
1475
1476 cifs_dbg(FYI, "set compression rc %d\n", rc);
Steve French64a5cfa2013-10-14 15:31:32 -05001477
1478 return rc;
1479}
1480
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001481int
1482SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
1483 u64 persistent_fid, u64 volatile_fid)
1484{
1485 struct smb2_close_req *req;
1486 struct smb2_close_rsp *rsp;
1487 struct TCP_Server_Info *server;
1488 struct cifs_ses *ses = tcon->ses;
1489 struct kvec iov[1];
1490 int resp_buftype;
1491 int rc = 0;
1492
Joe Perchesf96637b2013-05-04 22:12:25 -05001493 cifs_dbg(FYI, "Close\n");
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001494
1495 if (ses && (ses->server))
1496 server = ses->server;
1497 else
1498 return -EIO;
1499
1500 rc = small_smb2_init(SMB2_CLOSE, tcon, (void **) &req);
1501 if (rc)
1502 return rc;
1503
1504 req->PersistentFileId = persistent_fid;
1505 req->VolatileFileId = volatile_fid;
1506
1507 iov[0].iov_base = (char *)req;
1508 /* 4 for rfc1002 length field */
1509 iov[0].iov_len = get_rfc1002_length(req) + 4;
1510
1511 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
1512 rsp = (struct smb2_close_rsp *)iov[0].iov_base;
1513
1514 if (rc != 0) {
Namjae Jeond4a029d2014-08-20 19:39:59 +09001515 cifs_stats_fail_inc(tcon, SMB2_CLOSE_HE);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001516 goto close_exit;
1517 }
1518
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001519 /* BB FIXME - decode close response, update inode for caching */
1520
1521close_exit:
1522 free_rsp_buf(resp_buftype, rsp);
1523 return rc;
1524}
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001525
1526static int
1527validate_buf(unsigned int offset, unsigned int buffer_length,
1528 struct smb2_hdr *hdr, unsigned int min_buf_size)
1529
1530{
1531 unsigned int smb_len = be32_to_cpu(hdr->smb2_buf_length);
1532 char *end_of_smb = smb_len + 4 /* RFC1001 length field */ + (char *)hdr;
1533 char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
1534 char *end_of_buf = begin_of_buf + buffer_length;
1535
1536
1537 if (buffer_length < min_buf_size) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001538 cifs_dbg(VFS, "buffer length %d smaller than minimum size %d\n",
1539 buffer_length, min_buf_size);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001540 return -EINVAL;
1541 }
1542
1543 /* check if beyond RFC1001 maximum length */
1544 if ((smb_len > 0x7FFFFF) || (buffer_length > 0x7FFFFF)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001545 cifs_dbg(VFS, "buffer length %d or smb length %d too large\n",
1546 buffer_length, smb_len);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001547 return -EINVAL;
1548 }
1549
1550 if ((begin_of_buf > end_of_smb) || (end_of_buf > end_of_smb)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001551 cifs_dbg(VFS, "illegal server response, bad offset to data\n");
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001552 return -EINVAL;
1553 }
1554
1555 return 0;
1556}
1557
1558/*
1559 * If SMB buffer fields are valid, copy into temporary buffer to hold result.
1560 * Caller must free buffer.
1561 */
1562static int
1563validate_and_copy_buf(unsigned int offset, unsigned int buffer_length,
1564 struct smb2_hdr *hdr, unsigned int minbufsize,
1565 char *data)
1566
1567{
1568 char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
1569 int rc;
1570
1571 if (!data)
1572 return -EINVAL;
1573
1574 rc = validate_buf(offset, buffer_length, hdr, minbufsize);
1575 if (rc)
1576 return rc;
1577
1578 memcpy(data, begin_of_buf, buffer_length);
1579
1580 return 0;
1581}
1582
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001583static int
1584query_info(const unsigned int xid, struct cifs_tcon *tcon,
1585 u64 persistent_fid, u64 volatile_fid, u8 info_class,
1586 size_t output_len, size_t min_len, void *data)
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001587{
1588 struct smb2_query_info_req *req;
1589 struct smb2_query_info_rsp *rsp = NULL;
1590 struct kvec iov[2];
1591 int rc = 0;
1592 int resp_buftype;
1593 struct TCP_Server_Info *server;
1594 struct cifs_ses *ses = tcon->ses;
1595
Joe Perchesf96637b2013-05-04 22:12:25 -05001596 cifs_dbg(FYI, "Query Info\n");
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001597
1598 if (ses && (ses->server))
1599 server = ses->server;
1600 else
1601 return -EIO;
1602
1603 rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
1604 if (rc)
1605 return rc;
1606
1607 req->InfoType = SMB2_O_INFO_FILE;
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001608 req->FileInfoClass = info_class;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001609 req->PersistentFileId = persistent_fid;
1610 req->VolatileFileId = volatile_fid;
1611 /* 4 for rfc1002 length field and 1 for Buffer */
1612 req->InputBufferOffset =
1613 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001614 req->OutputBufferLength = cpu_to_le32(output_len);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001615
1616 iov[0].iov_base = (char *)req;
1617 /* 4 for rfc1002 length field */
1618 iov[0].iov_len = get_rfc1002_length(req) + 4;
1619
1620 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04001621 rsp = (struct smb2_query_info_rsp *)iov[0].iov_base;
1622
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001623 if (rc) {
1624 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
1625 goto qinf_exit;
1626 }
1627
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001628 rc = validate_and_copy_buf(le16_to_cpu(rsp->OutputBufferOffset),
1629 le32_to_cpu(rsp->OutputBufferLength),
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001630 &rsp->hdr, min_len, data);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001631
1632qinf_exit:
1633 free_rsp_buf(resp_buftype, rsp);
1634 return rc;
1635}
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001636
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001637int
1638SMB2_query_info(const unsigned int xid, struct cifs_tcon *tcon,
1639 u64 persistent_fid, u64 volatile_fid,
1640 struct smb2_file_all_info *data)
1641{
1642 return query_info(xid, tcon, persistent_fid, volatile_fid,
1643 FILE_ALL_INFORMATION,
Pavel Shilovsky1bbe4992014-08-22 13:32:11 +04001644 sizeof(struct smb2_file_all_info) + PATH_MAX * 2,
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001645 sizeof(struct smb2_file_all_info), data);
1646}
1647
1648int
1649SMB2_get_srv_num(const unsigned int xid, struct cifs_tcon *tcon,
1650 u64 persistent_fid, u64 volatile_fid, __le64 *uniqueid)
1651{
1652 return query_info(xid, tcon, persistent_fid, volatile_fid,
1653 FILE_INTERNAL_INFORMATION,
1654 sizeof(struct smb2_file_internal_info),
1655 sizeof(struct smb2_file_internal_info), uniqueid);
1656}
1657
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001658/*
1659 * This is a no-op for now. We're not really interested in the reply, but
1660 * rather in the fact that the server sent one and that server->lstrp
1661 * gets updated.
1662 *
1663 * FIXME: maybe we should consider checking that the reply matches request?
1664 */
1665static void
1666smb2_echo_callback(struct mid_q_entry *mid)
1667{
1668 struct TCP_Server_Info *server = mid->callback_data;
1669 struct smb2_echo_rsp *smb2 = (struct smb2_echo_rsp *)mid->resp_buf;
1670 unsigned int credits_received = 1;
1671
1672 if (mid->mid_state == MID_RESPONSE_RECEIVED)
1673 credits_received = le16_to_cpu(smb2->hdr.CreditRequest);
1674
Christopher Oo5fb4e282015-06-25 16:10:48 -07001675 mutex_lock(&server->srv_mutex);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001676 DeleteMidQEntry(mid);
Christopher Oo5fb4e282015-06-25 16:10:48 -07001677 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001678 add_credits(server, credits_received, CIFS_ECHO_OP);
1679}
1680
1681int
1682SMB2_echo(struct TCP_Server_Info *server)
1683{
1684 struct smb2_echo_req *req;
1685 int rc = 0;
1686 struct kvec iov;
Jeff Laytonfec344e2012-09-18 16:20:35 -07001687 struct smb_rqst rqst = { .rq_iov = &iov,
1688 .rq_nvec = 1 };
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001689
Joe Perchesf96637b2013-05-04 22:12:25 -05001690 cifs_dbg(FYI, "In echo request\n");
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001691
1692 rc = small_smb2_init(SMB2_ECHO, NULL, (void **)&req);
1693 if (rc)
1694 return rc;
1695
1696 req->hdr.CreditRequest = cpu_to_le16(1);
1697
1698 iov.iov_base = (char *)req;
1699 /* 4 for rfc1002 length field */
1700 iov.iov_len = get_rfc1002_length(req) + 4;
1701
Jeff Laytonfec344e2012-09-18 16:20:35 -07001702 rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, server,
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001703 CIFS_ECHO_OP);
1704 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05001705 cifs_dbg(FYI, "Echo request failed: %d\n", rc);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001706
1707 cifs_small_buf_release(req);
1708 return rc;
1709}
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07001710
1711int
1712SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
1713 u64 volatile_fid)
1714{
1715 struct smb2_flush_req *req;
1716 struct TCP_Server_Info *server;
1717 struct cifs_ses *ses = tcon->ses;
1718 struct kvec iov[1];
1719 int resp_buftype;
1720 int rc = 0;
1721
Joe Perchesf96637b2013-05-04 22:12:25 -05001722 cifs_dbg(FYI, "Flush\n");
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07001723
1724 if (ses && (ses->server))
1725 server = ses->server;
1726 else
1727 return -EIO;
1728
1729 rc = small_smb2_init(SMB2_FLUSH, tcon, (void **) &req);
1730 if (rc)
1731 return rc;
1732
1733 req->PersistentFileId = persistent_fid;
1734 req->VolatileFileId = volatile_fid;
1735
1736 iov[0].iov_base = (char *)req;
1737 /* 4 for rfc1002 length field */
1738 iov[0].iov_len = get_rfc1002_length(req) + 4;
1739
1740 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
1741
Steve Frenchdfebe402015-03-27 01:00:06 -05001742 if (rc != 0)
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07001743 cifs_stats_fail_inc(tcon, SMB2_FLUSH_HE);
1744
1745 free_rsp_buf(resp_buftype, iov[0].iov_base);
1746 return rc;
1747}
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001748
1749/*
1750 * To form a chain of read requests, any read requests after the first should
1751 * have the end_of_chain boolean set to true.
1752 */
1753static int
1754smb2_new_read_req(struct kvec *iov, struct cifs_io_parms *io_parms,
1755 unsigned int remaining_bytes, int request_type)
1756{
1757 int rc = -EACCES;
1758 struct smb2_read_req *req = NULL;
1759
1760 rc = small_smb2_init(SMB2_READ, io_parms->tcon, (void **) &req);
1761 if (rc)
1762 return rc;
1763 if (io_parms->tcon->ses->server == NULL)
1764 return -ECONNABORTED;
1765
1766 req->hdr.ProcessId = cpu_to_le32(io_parms->pid);
1767
1768 req->PersistentFileId = io_parms->persistent_fid;
1769 req->VolatileFileId = io_parms->volatile_fid;
1770 req->ReadChannelInfoOffset = 0; /* reserved */
1771 req->ReadChannelInfoLength = 0; /* reserved */
1772 req->Channel = 0; /* reserved */
1773 req->MinimumCount = 0;
1774 req->Length = cpu_to_le32(io_parms->length);
1775 req->Offset = cpu_to_le64(io_parms->offset);
1776
1777 if (request_type & CHAINED_REQUEST) {
1778 if (!(request_type & END_OF_CHAIN)) {
1779 /* 4 for rfc1002 length field */
1780 req->hdr.NextCommand =
1781 cpu_to_le32(get_rfc1002_length(req) + 4);
1782 } else /* END_OF_CHAIN */
1783 req->hdr.NextCommand = 0;
1784 if (request_type & RELATED_REQUEST) {
1785 req->hdr.Flags |= SMB2_FLAGS_RELATED_OPERATIONS;
1786 /*
1787 * Related requests use info from previous read request
1788 * in chain.
1789 */
1790 req->hdr.SessionId = 0xFFFFFFFF;
1791 req->hdr.TreeId = 0xFFFFFFFF;
1792 req->PersistentFileId = 0xFFFFFFFF;
1793 req->VolatileFileId = 0xFFFFFFFF;
1794 }
1795 }
1796 if (remaining_bytes > io_parms->length)
1797 req->RemainingBytes = cpu_to_le32(remaining_bytes);
1798 else
1799 req->RemainingBytes = 0;
1800
1801 iov[0].iov_base = (char *)req;
1802 /* 4 for rfc1002 length field */
1803 iov[0].iov_len = get_rfc1002_length(req) + 4;
1804 return rc;
1805}
1806
1807static void
1808smb2_readv_callback(struct mid_q_entry *mid)
1809{
1810 struct cifs_readdata *rdata = mid->callback_data;
1811 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
1812 struct TCP_Server_Info *server = tcon->ses->server;
Jeff Layton58195752012-09-19 06:22:34 -07001813 struct smb2_hdr *buf = (struct smb2_hdr *)rdata->iov.iov_base;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001814 unsigned int credits_received = 1;
Jeff Layton58195752012-09-19 06:22:34 -07001815 struct smb_rqst rqst = { .rq_iov = &rdata->iov,
Jeff Layton8321fec2012-09-19 06:22:32 -07001816 .rq_nvec = 1,
1817 .rq_pages = rdata->pages,
1818 .rq_npages = rdata->nr_pages,
1819 .rq_pagesz = rdata->pagesz,
1820 .rq_tailsz = rdata->tailsz };
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001821
Joe Perchesf96637b2013-05-04 22:12:25 -05001822 cifs_dbg(FYI, "%s: mid=%llu state=%d result=%d bytes=%u\n",
1823 __func__, mid->mid, mid->mid_state, rdata->result,
1824 rdata->bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001825
1826 switch (mid->mid_state) {
1827 case MID_RESPONSE_RECEIVED:
1828 credits_received = le16_to_cpu(buf->CreditRequest);
1829 /* result already set, check signature */
Jeff Layton38d77c52013-05-26 07:01:00 -04001830 if (server->sign) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001831 int rc;
1832
Jeff Layton0b688cf2012-09-18 16:20:34 -07001833 rc = smb2_verify_signature(&rqst, server);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001834 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05001835 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
1836 rc);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001837 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001838 /* FIXME: should this be counted toward the initiating task? */
Pavel Shilovsky34a54d62014-07-10 10:03:29 +04001839 task_io_account_read(rdata->got_bytes);
1840 cifs_stats_bytes_read(tcon, rdata->got_bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001841 break;
1842 case MID_REQUEST_SUBMITTED:
1843 case MID_RETRY_NEEDED:
1844 rdata->result = -EAGAIN;
Pavel Shilovskyd913ed12014-07-10 11:31:48 +04001845 if (server->sign && rdata->got_bytes)
1846 /* reset bytes number since we can not check a sign */
1847 rdata->got_bytes = 0;
1848 /* FIXME: should this be counted toward the initiating task? */
1849 task_io_account_read(rdata->got_bytes);
1850 cifs_stats_bytes_read(tcon, rdata->got_bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001851 break;
1852 default:
1853 if (rdata->result != -ENODATA)
1854 rdata->result = -EIO;
1855 }
1856
1857 if (rdata->result)
1858 cifs_stats_fail_inc(tcon, SMB2_READ_HE);
1859
1860 queue_work(cifsiod_wq, &rdata->work);
Christopher Oo5fb4e282015-06-25 16:10:48 -07001861 mutex_lock(&server->srv_mutex);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001862 DeleteMidQEntry(mid);
Christopher Oo5fb4e282015-06-25 16:10:48 -07001863 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001864 add_credits(server, credits_received, 0);
1865}
1866
1867/* smb2_async_readv - send an async write, and set up mid to handle result */
1868int
1869smb2_async_readv(struct cifs_readdata *rdata)
1870{
Pavel Shilovskybed9da02014-06-25 11:28:57 +04001871 int rc, flags = 0;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001872 struct smb2_hdr *buf;
1873 struct cifs_io_parms io_parms;
Jeff Layton58195752012-09-19 06:22:34 -07001874 struct smb_rqst rqst = { .rq_iov = &rdata->iov,
Jeff Laytonfec344e2012-09-18 16:20:35 -07001875 .rq_nvec = 1 };
Pavel Shilovskybed9da02014-06-25 11:28:57 +04001876 struct TCP_Server_Info *server;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001877
Joe Perchesf96637b2013-05-04 22:12:25 -05001878 cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n",
1879 __func__, rdata->offset, rdata->bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001880
1881 io_parms.tcon = tlink_tcon(rdata->cfile->tlink);
1882 io_parms.offset = rdata->offset;
1883 io_parms.length = rdata->bytes;
1884 io_parms.persistent_fid = rdata->cfile->fid.persistent_fid;
1885 io_parms.volatile_fid = rdata->cfile->fid.volatile_fid;
1886 io_parms.pid = rdata->pid;
Pavel Shilovskybed9da02014-06-25 11:28:57 +04001887
1888 server = io_parms.tcon->ses->server;
1889
Jeff Layton58195752012-09-19 06:22:34 -07001890 rc = smb2_new_read_req(&rdata->iov, &io_parms, 0, 0);
Pavel Shilovskybed9da02014-06-25 11:28:57 +04001891 if (rc) {
1892 if (rc == -EAGAIN && rdata->credits) {
1893 /* credits was reset by reconnect */
1894 rdata->credits = 0;
1895 /* reduce in_flight value since we won't send the req */
1896 spin_lock(&server->req_lock);
1897 server->in_flight--;
1898 spin_unlock(&server->req_lock);
1899 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001900 return rc;
Pavel Shilovskybed9da02014-06-25 11:28:57 +04001901 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001902
Jeff Layton58195752012-09-19 06:22:34 -07001903 buf = (struct smb2_hdr *)rdata->iov.iov_base;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001904 /* 4 for rfc1002 length field */
Jeff Layton58195752012-09-19 06:22:34 -07001905 rdata->iov.iov_len = get_rfc1002_length(rdata->iov.iov_base) + 4;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001906
Pavel Shilovskybed9da02014-06-25 11:28:57 +04001907 if (rdata->credits) {
1908 buf->CreditCharge = cpu_to_le16(DIV_ROUND_UP(rdata->bytes,
1909 SMB2_MAX_BUFFER_SIZE));
1910 spin_lock(&server->req_lock);
1911 server->credits += rdata->credits -
1912 le16_to_cpu(buf->CreditCharge);
1913 spin_unlock(&server->req_lock);
1914 wake_up(&server->request_q);
1915 flags = CIFS_HAS_CREDITS;
1916 }
1917
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001918 kref_get(&rdata->refcount);
Jeff Laytonfec344e2012-09-18 16:20:35 -07001919 rc = cifs_call_async(io_parms.tcon->ses->server, &rqst,
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001920 cifs_readv_receive, smb2_readv_callback,
Pavel Shilovskybed9da02014-06-25 11:28:57 +04001921 rdata, flags);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04001922 if (rc) {
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001923 kref_put(&rdata->refcount, cifs_readdata_release);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04001924 cifs_stats_fail_inc(io_parms.tcon, SMB2_READ_HE);
1925 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001926
1927 cifs_small_buf_release(buf);
1928 return rc;
1929}
Pavel Shilovsky33319142012-09-18 16:20:29 -07001930
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07001931int
1932SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms,
1933 unsigned int *nbytes, char **buf, int *buf_type)
1934{
1935 int resp_buftype, rc = -EACCES;
1936 struct smb2_read_rsp *rsp = NULL;
1937 struct kvec iov[1];
1938
1939 *nbytes = 0;
1940 rc = smb2_new_read_req(iov, io_parms, 0, 0);
1941 if (rc)
1942 return rc;
1943
1944 rc = SendReceive2(xid, io_parms->tcon->ses, iov, 1,
1945 &resp_buftype, CIFS_LOG_ERROR);
1946
1947 rsp = (struct smb2_read_rsp *)iov[0].iov_base;
1948
1949 if (rsp->hdr.Status == STATUS_END_OF_FILE) {
1950 free_rsp_buf(resp_buftype, iov[0].iov_base);
1951 return 0;
1952 }
1953
1954 if (rc) {
1955 cifs_stats_fail_inc(io_parms->tcon, SMB2_READ_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05001956 cifs_dbg(VFS, "Send error in read = %d\n", rc);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07001957 } else {
1958 *nbytes = le32_to_cpu(rsp->DataLength);
1959 if ((*nbytes > CIFS_MAX_MSGSIZE) ||
1960 (*nbytes > io_parms->length)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001961 cifs_dbg(FYI, "bad length %d for count %d\n",
1962 *nbytes, io_parms->length);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07001963 rc = -EIO;
1964 *nbytes = 0;
1965 }
1966 }
1967
1968 if (*buf) {
1969 memcpy(*buf, (char *)rsp->hdr.ProtocolId + rsp->DataOffset,
1970 *nbytes);
1971 free_rsp_buf(resp_buftype, iov[0].iov_base);
1972 } else if (resp_buftype != CIFS_NO_BUFFER) {
1973 *buf = iov[0].iov_base;
1974 if (resp_buftype == CIFS_SMALL_BUFFER)
1975 *buf_type = CIFS_SMALL_BUFFER;
1976 else if (resp_buftype == CIFS_LARGE_BUFFER)
1977 *buf_type = CIFS_LARGE_BUFFER;
1978 }
1979 return rc;
1980}
1981
Pavel Shilovsky33319142012-09-18 16:20:29 -07001982/*
1983 * Check the mid_state and signature on received buffer (if any), and queue the
1984 * workqueue completion task.
1985 */
1986static void
1987smb2_writev_callback(struct mid_q_entry *mid)
1988{
1989 struct cifs_writedata *wdata = mid->callback_data;
1990 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
Christopher Oo5fb4e282015-06-25 16:10:48 -07001991 struct TCP_Server_Info *server = tcon->ses->server;
Pavel Shilovsky33319142012-09-18 16:20:29 -07001992 unsigned int written;
1993 struct smb2_write_rsp *rsp = (struct smb2_write_rsp *)mid->resp_buf;
1994 unsigned int credits_received = 1;
1995
1996 switch (mid->mid_state) {
1997 case MID_RESPONSE_RECEIVED:
1998 credits_received = le16_to_cpu(rsp->hdr.CreditRequest);
1999 wdata->result = smb2_check_receive(mid, tcon->ses->server, 0);
2000 if (wdata->result != 0)
2001 break;
2002
2003 written = le32_to_cpu(rsp->DataLength);
2004 /*
2005 * Mask off high 16 bits when bytes written as returned
2006 * by the server is greater than bytes requested by the
2007 * client. OS/2 servers are known to set incorrect
2008 * CountHigh values.
2009 */
2010 if (written > wdata->bytes)
2011 written &= 0xFFFF;
2012
2013 if (written < wdata->bytes)
2014 wdata->result = -ENOSPC;
2015 else
2016 wdata->bytes = written;
2017 break;
2018 case MID_REQUEST_SUBMITTED:
2019 case MID_RETRY_NEEDED:
2020 wdata->result = -EAGAIN;
2021 break;
2022 default:
2023 wdata->result = -EIO;
2024 break;
2025 }
2026
2027 if (wdata->result)
2028 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
2029
2030 queue_work(cifsiod_wq, &wdata->work);
Christopher Oo5fb4e282015-06-25 16:10:48 -07002031 mutex_lock(&server->srv_mutex);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002032 DeleteMidQEntry(mid);
Christopher Oo5fb4e282015-06-25 16:10:48 -07002033 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002034 add_credits(tcon->ses->server, credits_received, 0);
2035}
2036
2037/* smb2_async_writev - send an async write, and set up mid to handle result */
2038int
Steve French4a5c80d2014-02-07 20:45:12 -06002039smb2_async_writev(struct cifs_writedata *wdata,
2040 void (*release)(struct kref *kref))
Pavel Shilovsky33319142012-09-18 16:20:29 -07002041{
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002042 int rc = -EACCES, flags = 0;
Pavel Shilovsky33319142012-09-18 16:20:29 -07002043 struct smb2_write_req *req = NULL;
2044 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002045 struct TCP_Server_Info *server = tcon->ses->server;
Jeff Laytoneddb0792012-09-18 16:20:35 -07002046 struct kvec iov;
Jeff Laytonfec344e2012-09-18 16:20:35 -07002047 struct smb_rqst rqst;
Pavel Shilovsky33319142012-09-18 16:20:29 -07002048
2049 rc = small_smb2_init(SMB2_WRITE, tcon, (void **) &req);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002050 if (rc) {
2051 if (rc == -EAGAIN && wdata->credits) {
2052 /* credits was reset by reconnect */
2053 wdata->credits = 0;
2054 /* reduce in_flight value since we won't send the req */
2055 spin_lock(&server->req_lock);
2056 server->in_flight--;
2057 spin_unlock(&server->req_lock);
2058 }
Pavel Shilovsky33319142012-09-18 16:20:29 -07002059 goto async_writev_out;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002060 }
Pavel Shilovsky33319142012-09-18 16:20:29 -07002061
Pavel Shilovsky33319142012-09-18 16:20:29 -07002062 req->hdr.ProcessId = cpu_to_le32(wdata->cfile->pid);
2063
2064 req->PersistentFileId = wdata->cfile->fid.persistent_fid;
2065 req->VolatileFileId = wdata->cfile->fid.volatile_fid;
2066 req->WriteChannelInfoOffset = 0;
2067 req->WriteChannelInfoLength = 0;
2068 req->Channel = 0;
2069 req->Offset = cpu_to_le64(wdata->offset);
2070 /* 4 for rfc1002 length field */
2071 req->DataOffset = cpu_to_le16(
2072 offsetof(struct smb2_write_req, Buffer) - 4);
2073 req->RemainingBytes = 0;
2074
2075 /* 4 for rfc1002 length field and 1 for Buffer */
Jeff Laytoneddb0792012-09-18 16:20:35 -07002076 iov.iov_len = get_rfc1002_length(req) + 4 - 1;
2077 iov.iov_base = req;
Pavel Shilovsky33319142012-09-18 16:20:29 -07002078
Jeff Laytoneddb0792012-09-18 16:20:35 -07002079 rqst.rq_iov = &iov;
2080 rqst.rq_nvec = 1;
2081 rqst.rq_pages = wdata->pages;
2082 rqst.rq_npages = wdata->nr_pages;
2083 rqst.rq_pagesz = wdata->pagesz;
2084 rqst.rq_tailsz = wdata->tailsz;
Pavel Shilovsky33319142012-09-18 16:20:29 -07002085
Joe Perchesf96637b2013-05-04 22:12:25 -05002086 cifs_dbg(FYI, "async write at %llu %u bytes\n",
2087 wdata->offset, wdata->bytes);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002088
2089 req->Length = cpu_to_le32(wdata->bytes);
2090
2091 inc_rfc1001_len(&req->hdr, wdata->bytes - 1 /* Buffer */);
2092
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002093 if (wdata->credits) {
2094 req->hdr.CreditCharge = cpu_to_le16(DIV_ROUND_UP(wdata->bytes,
2095 SMB2_MAX_BUFFER_SIZE));
2096 spin_lock(&server->req_lock);
2097 server->credits += wdata->credits -
2098 le16_to_cpu(req->hdr.CreditCharge);
2099 spin_unlock(&server->req_lock);
2100 wake_up(&server->request_q);
2101 flags = CIFS_HAS_CREDITS;
2102 }
2103
Pavel Shilovsky33319142012-09-18 16:20:29 -07002104 kref_get(&wdata->refcount);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04002105 rc = cifs_call_async(server, &rqst, NULL, smb2_writev_callback, wdata,
2106 flags);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002107
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002108 if (rc) {
Steve French4a5c80d2014-02-07 20:45:12 -06002109 kref_put(&wdata->refcount, release);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002110 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
2111 }
Pavel Shilovsky33319142012-09-18 16:20:29 -07002112
Pavel Shilovsky33319142012-09-18 16:20:29 -07002113async_writev_out:
2114 cifs_small_buf_release(req);
Pavel Shilovsky33319142012-09-18 16:20:29 -07002115 return rc;
2116}
Pavel Shilovsky009d3442012-09-18 16:20:30 -07002117
2118/*
2119 * SMB2_write function gets iov pointer to kvec array with n_vec as a length.
2120 * The length field from io_parms must be at least 1 and indicates a number of
2121 * elements with data to write that begins with position 1 in iov array. All
2122 * data length is specified by count.
2123 */
2124int
2125SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms,
2126 unsigned int *nbytes, struct kvec *iov, int n_vec)
2127{
2128 int rc = 0;
2129 struct smb2_write_req *req = NULL;
2130 struct smb2_write_rsp *rsp = NULL;
2131 int resp_buftype;
2132 *nbytes = 0;
2133
2134 if (n_vec < 1)
2135 return rc;
2136
2137 rc = small_smb2_init(SMB2_WRITE, io_parms->tcon, (void **) &req);
2138 if (rc)
2139 return rc;
2140
2141 if (io_parms->tcon->ses->server == NULL)
2142 return -ECONNABORTED;
2143
2144 req->hdr.ProcessId = cpu_to_le32(io_parms->pid);
2145
2146 req->PersistentFileId = io_parms->persistent_fid;
2147 req->VolatileFileId = io_parms->volatile_fid;
2148 req->WriteChannelInfoOffset = 0;
2149 req->WriteChannelInfoLength = 0;
2150 req->Channel = 0;
2151 req->Length = cpu_to_le32(io_parms->length);
2152 req->Offset = cpu_to_le64(io_parms->offset);
2153 /* 4 for rfc1002 length field */
2154 req->DataOffset = cpu_to_le16(
2155 offsetof(struct smb2_write_req, Buffer) - 4);
2156 req->RemainingBytes = 0;
2157
2158 iov[0].iov_base = (char *)req;
2159 /* 4 for rfc1002 length field and 1 for Buffer */
2160 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
2161
2162 /* length of entire message including data to be written */
2163 inc_rfc1001_len(req, io_parms->length - 1 /* Buffer */);
2164
2165 rc = SendReceive2(xid, io_parms->tcon->ses, iov, n_vec + 1,
2166 &resp_buftype, 0);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002167 rsp = (struct smb2_write_rsp *)iov[0].iov_base;
Pavel Shilovsky009d3442012-09-18 16:20:30 -07002168
2169 if (rc) {
2170 cifs_stats_fail_inc(io_parms->tcon, SMB2_WRITE_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05002171 cifs_dbg(VFS, "Send error in write = %d\n", rc);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002172 } else
Pavel Shilovsky009d3442012-09-18 16:20:30 -07002173 *nbytes = le32_to_cpu(rsp->DataLength);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002174
2175 free_rsp_buf(resp_buftype, rsp);
Pavel Shilovsky009d3442012-09-18 16:20:30 -07002176 return rc;
2177}
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002178
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002179static unsigned int
2180num_entries(char *bufstart, char *end_of_buf, char **lastentry, size_t size)
2181{
2182 int len;
2183 unsigned int entrycount = 0;
2184 unsigned int next_offset = 0;
2185 FILE_DIRECTORY_INFO *entryptr;
2186
2187 if (bufstart == NULL)
2188 return 0;
2189
2190 entryptr = (FILE_DIRECTORY_INFO *)bufstart;
2191
2192 while (1) {
2193 entryptr = (FILE_DIRECTORY_INFO *)
2194 ((char *)entryptr + next_offset);
2195
2196 if ((char *)entryptr + size > end_of_buf) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002197 cifs_dbg(VFS, "malformed search entry would overflow\n");
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002198 break;
2199 }
2200
2201 len = le32_to_cpu(entryptr->FileNameLength);
2202 if ((char *)entryptr + len + size > end_of_buf) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002203 cifs_dbg(VFS, "directory entry name would overflow frame end of buf %p\n",
2204 end_of_buf);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002205 break;
2206 }
2207
2208 *lastentry = (char *)entryptr;
2209 entrycount++;
2210
2211 next_offset = le32_to_cpu(entryptr->NextEntryOffset);
2212 if (!next_offset)
2213 break;
2214 }
2215
2216 return entrycount;
2217}
2218
2219/*
2220 * Readdir/FindFirst
2221 */
2222int
2223SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon,
2224 u64 persistent_fid, u64 volatile_fid, int index,
2225 struct cifs_search_info *srch_inf)
2226{
2227 struct smb2_query_directory_req *req;
2228 struct smb2_query_directory_rsp *rsp = NULL;
2229 struct kvec iov[2];
2230 int rc = 0;
2231 int len;
Steve French75fdfc82015-03-25 18:51:57 -05002232 int resp_buftype = CIFS_NO_BUFFER;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002233 unsigned char *bufptr;
2234 struct TCP_Server_Info *server;
2235 struct cifs_ses *ses = tcon->ses;
2236 __le16 asteriks = cpu_to_le16('*');
2237 char *end_of_smb;
2238 unsigned int output_size = CIFSMaxBufSize;
2239 size_t info_buf_size;
2240
2241 if (ses && (ses->server))
2242 server = ses->server;
2243 else
2244 return -EIO;
2245
2246 rc = small_smb2_init(SMB2_QUERY_DIRECTORY, tcon, (void **) &req);
2247 if (rc)
2248 return rc;
2249
2250 switch (srch_inf->info_level) {
2251 case SMB_FIND_FILE_DIRECTORY_INFO:
2252 req->FileInformationClass = FILE_DIRECTORY_INFORMATION;
2253 info_buf_size = sizeof(FILE_DIRECTORY_INFO) - 1;
2254 break;
2255 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
2256 req->FileInformationClass = FILEID_FULL_DIRECTORY_INFORMATION;
2257 info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO) - 1;
2258 break;
2259 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05002260 cifs_dbg(VFS, "info level %u isn't supported\n",
2261 srch_inf->info_level);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002262 rc = -EINVAL;
2263 goto qdir_exit;
2264 }
2265
2266 req->FileIndex = cpu_to_le32(index);
2267 req->PersistentFileId = persistent_fid;
2268 req->VolatileFileId = volatile_fid;
2269
2270 len = 0x2;
2271 bufptr = req->Buffer;
2272 memcpy(bufptr, &asteriks, len);
2273
2274 req->FileNameOffset =
2275 cpu_to_le16(sizeof(struct smb2_query_directory_req) - 1 - 4);
2276 req->FileNameLength = cpu_to_le16(len);
2277 /*
2278 * BB could be 30 bytes or so longer if we used SMB2 specific
2279 * buffer lengths, but this is safe and close enough.
2280 */
2281 output_size = min_t(unsigned int, output_size, server->maxBuf);
2282 output_size = min_t(unsigned int, output_size, 2 << 15);
2283 req->OutputBufferLength = cpu_to_le32(output_size);
2284
2285 iov[0].iov_base = (char *)req;
2286 /* 4 for RFC1001 length and 1 for Buffer */
2287 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
2288
2289 iov[1].iov_base = (char *)(req->Buffer);
2290 iov[1].iov_len = len;
2291
2292 inc_rfc1001_len(req, len - 1 /* Buffer */);
2293
2294 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002295 rsp = (struct smb2_query_directory_rsp *)iov[0].iov_base;
2296
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002297 if (rc) {
Pavel Shilovsky52755802014-08-18 20:49:57 +04002298 if (rc == -ENODATA && rsp->hdr.Status == STATUS_NO_MORE_FILES) {
2299 srch_inf->endOfSearch = true;
2300 rc = 0;
2301 }
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002302 cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
2303 goto qdir_exit;
2304 }
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002305
2306 rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
2307 le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
2308 info_buf_size);
2309 if (rc)
2310 goto qdir_exit;
2311
2312 srch_inf->unicode = true;
2313
2314 if (srch_inf->ntwrk_buf_start) {
2315 if (srch_inf->smallBuf)
2316 cifs_small_buf_release(srch_inf->ntwrk_buf_start);
2317 else
2318 cifs_buf_release(srch_inf->ntwrk_buf_start);
2319 }
2320 srch_inf->ntwrk_buf_start = (char *)rsp;
2321 srch_inf->srch_entries_start = srch_inf->last_entry = 4 /* rfclen */ +
2322 (char *)&rsp->hdr + le16_to_cpu(rsp->OutputBufferOffset);
2323 /* 4 for rfc1002 length field */
2324 end_of_smb = get_rfc1002_length(rsp) + 4 + (char *)&rsp->hdr;
2325 srch_inf->entries_in_buffer =
2326 num_entries(srch_inf->srch_entries_start, end_of_smb,
2327 &srch_inf->last_entry, info_buf_size);
2328 srch_inf->index_of_last_entry += srch_inf->entries_in_buffer;
Joe Perchesf96637b2013-05-04 22:12:25 -05002329 cifs_dbg(FYI, "num entries %d last_index %lld srch start %p srch end %p\n",
2330 srch_inf->entries_in_buffer, srch_inf->index_of_last_entry,
2331 srch_inf->srch_entries_start, srch_inf->last_entry);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002332 if (resp_buftype == CIFS_LARGE_BUFFER)
2333 srch_inf->smallBuf = false;
2334 else if (resp_buftype == CIFS_SMALL_BUFFER)
2335 srch_inf->smallBuf = true;
2336 else
Joe Perchesf96637b2013-05-04 22:12:25 -05002337 cifs_dbg(VFS, "illegal search buffer type\n");
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002338
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07002339 return rc;
2340
2341qdir_exit:
2342 free_rsp_buf(resp_buftype, rsp);
2343 return rc;
2344}
2345
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002346static int
2347send_set_info(const unsigned int xid, struct cifs_tcon *tcon,
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002348 u64 persistent_fid, u64 volatile_fid, u32 pid, int info_class,
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002349 unsigned int num, void **data, unsigned int *size)
2350{
2351 struct smb2_set_info_req *req;
2352 struct smb2_set_info_rsp *rsp = NULL;
2353 struct kvec *iov;
2354 int rc = 0;
2355 int resp_buftype;
2356 unsigned int i;
2357 struct TCP_Server_Info *server;
2358 struct cifs_ses *ses = tcon->ses;
2359
2360 if (ses && (ses->server))
2361 server = ses->server;
2362 else
2363 return -EIO;
2364
2365 if (!num)
2366 return -EINVAL;
2367
2368 iov = kmalloc(sizeof(struct kvec) * num, GFP_KERNEL);
2369 if (!iov)
2370 return -ENOMEM;
2371
2372 rc = small_smb2_init(SMB2_SET_INFO, tcon, (void **) &req);
2373 if (rc) {
2374 kfree(iov);
2375 return rc;
2376 }
2377
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002378 req->hdr.ProcessId = cpu_to_le32(pid);
2379
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002380 req->InfoType = SMB2_O_INFO_FILE;
2381 req->FileInfoClass = info_class;
2382 req->PersistentFileId = persistent_fid;
2383 req->VolatileFileId = volatile_fid;
2384
2385 /* 4 for RFC1001 length and 1 for Buffer */
2386 req->BufferOffset =
2387 cpu_to_le16(sizeof(struct smb2_set_info_req) - 1 - 4);
2388 req->BufferLength = cpu_to_le32(*size);
2389
2390 inc_rfc1001_len(req, *size - 1 /* Buffer */);
2391
2392 memcpy(req->Buffer, *data, *size);
2393
2394 iov[0].iov_base = (char *)req;
2395 /* 4 for RFC1001 length */
2396 iov[0].iov_len = get_rfc1002_length(req) + 4;
2397
2398 for (i = 1; i < num; i++) {
2399 inc_rfc1001_len(req, size[i]);
2400 le32_add_cpu(&req->BufferLength, size[i]);
2401 iov[i].iov_base = (char *)data[i];
2402 iov[i].iov_len = size[i];
2403 }
2404
2405 rc = SendReceive2(xid, ses, iov, num, &resp_buftype, 0);
2406 rsp = (struct smb2_set_info_rsp *)iov[0].iov_base;
2407
Steve French7d3fb242013-11-18 09:56:28 -06002408 if (rc != 0)
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002409 cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE);
Steve French7d3fb242013-11-18 09:56:28 -06002410
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002411 free_rsp_buf(resp_buftype, rsp);
2412 kfree(iov);
2413 return rc;
2414}
2415
2416int
2417SMB2_rename(const unsigned int xid, struct cifs_tcon *tcon,
2418 u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
2419{
2420 struct smb2_file_rename_info info;
2421 void **data;
2422 unsigned int size[2];
2423 int rc;
2424 int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
2425
2426 data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
2427 if (!data)
2428 return -ENOMEM;
2429
2430 info.ReplaceIfExists = 1; /* 1 = replace existing target with new */
2431 /* 0 = fail if target already exists */
2432 info.RootDirectory = 0; /* MBZ for network ops (why does spec say?) */
2433 info.FileNameLength = cpu_to_le32(len);
2434
2435 data[0] = &info;
2436 size[0] = sizeof(struct smb2_file_rename_info);
2437
2438 data[1] = target_file;
2439 size[1] = len + 2 /* null */;
2440
2441 rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002442 current->tgid, FILE_RENAME_INFORMATION, 2, data,
2443 size);
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07002444 kfree(data);
2445 return rc;
2446}
Pavel Shilovsky568798c2012-09-18 16:20:31 -07002447
2448int
2449SMB2_set_hardlink(const unsigned int xid, struct cifs_tcon *tcon,
2450 u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
2451{
2452 struct smb2_file_link_info info;
2453 void **data;
2454 unsigned int size[2];
2455 int rc;
2456 int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
2457
2458 data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
2459 if (!data)
2460 return -ENOMEM;
2461
2462 info.ReplaceIfExists = 0; /* 1 = replace existing link with new */
2463 /* 0 = fail if link already exists */
2464 info.RootDirectory = 0; /* MBZ for network ops (why does spec say?) */
2465 info.FileNameLength = cpu_to_le32(len);
2466
2467 data[0] = &info;
2468 size[0] = sizeof(struct smb2_file_link_info);
2469
2470 data[1] = target_file;
2471 size[1] = len + 2 /* null */;
2472
2473 rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002474 current->tgid, FILE_LINK_INFORMATION, 2, data, size);
Pavel Shilovsky568798c2012-09-18 16:20:31 -07002475 kfree(data);
2476 return rc;
2477}
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002478
2479int
2480SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
Steve Frenchf29ebb42014-07-19 21:44:58 -05002481 u64 volatile_fid, u32 pid, __le64 *eof, bool is_falloc)
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002482{
2483 struct smb2_file_eof_info info;
2484 void *data;
2485 unsigned int size;
2486
2487 info.EndOfFile = *eof;
2488
2489 data = &info;
2490 size = sizeof(struct smb2_file_eof_info);
2491
Steve Frenchf29ebb42014-07-19 21:44:58 -05002492 if (is_falloc)
2493 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2494 pid, FILE_ALLOCATION_INFORMATION, 1, &data, &size);
2495 else
2496 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2497 pid, FILE_END_OF_FILE_INFORMATION, 1, &data, &size);
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07002498}
Pavel Shilovsky1feeaac2012-09-18 16:20:32 -07002499
2500int
2501SMB2_set_info(const unsigned int xid, struct cifs_tcon *tcon,
2502 u64 persistent_fid, u64 volatile_fid, FILE_BASIC_INFO *buf)
2503{
2504 unsigned int size;
2505 size = sizeof(FILE_BASIC_INFO);
2506 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2507 current->tgid, FILE_BASIC_INFORMATION, 1,
2508 (void **)&buf, &size);
2509}
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07002510
2511int
2512SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon,
2513 const u64 persistent_fid, const u64 volatile_fid,
2514 __u8 oplock_level)
2515{
2516 int rc;
2517 struct smb2_oplock_break *req = NULL;
2518
Joe Perchesf96637b2013-05-04 22:12:25 -05002519 cifs_dbg(FYI, "SMB2_oplock_break\n");
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07002520 rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
2521
2522 if (rc)
2523 return rc;
2524
2525 req->VolatileFid = volatile_fid;
2526 req->PersistentFid = persistent_fid;
2527 req->OplockLevel = oplock_level;
2528 req->hdr.CreditRequest = cpu_to_le16(1);
2529
2530 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP);
2531 /* SMB2 buffer freed by function above */
2532
2533 if (rc) {
2534 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05002535 cifs_dbg(FYI, "Send error in Oplock Break = %d\n", rc);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07002536 }
2537
2538 return rc;
2539}
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07002540
2541static void
2542copy_fs_info_to_kstatfs(struct smb2_fs_full_size_info *pfs_inf,
2543 struct kstatfs *kst)
2544{
2545 kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) *
2546 le32_to_cpu(pfs_inf->SectorsPerAllocationUnit);
2547 kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits);
2548 kst->f_bfree = le64_to_cpu(pfs_inf->ActualAvailableAllocationUnits);
2549 kst->f_bavail = le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits);
2550 return;
2551}
2552
2553static int
2554build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon, int level,
2555 int outbuf_len, u64 persistent_fid, u64 volatile_fid)
2556{
2557 int rc;
2558 struct smb2_query_info_req *req;
2559
Joe Perchesf96637b2013-05-04 22:12:25 -05002560 cifs_dbg(FYI, "Query FSInfo level %d\n", level);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07002561
2562 if ((tcon->ses == NULL) || (tcon->ses->server == NULL))
2563 return -EIO;
2564
2565 rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
2566 if (rc)
2567 return rc;
2568
2569 req->InfoType = SMB2_O_INFO_FILESYSTEM;
2570 req->FileInfoClass = level;
2571 req->PersistentFileId = persistent_fid;
2572 req->VolatileFileId = volatile_fid;
2573 /* 4 for rfc1002 length field and 1 for pad */
2574 req->InputBufferOffset =
2575 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
2576 req->OutputBufferLength = cpu_to_le32(
2577 outbuf_len + sizeof(struct smb2_query_info_rsp) - 1 - 4);
2578
2579 iov->iov_base = (char *)req;
2580 /* 4 for rfc1002 length field */
2581 iov->iov_len = get_rfc1002_length(req) + 4;
2582 return 0;
2583}
2584
2585int
2586SMB2_QFS_info(const unsigned int xid, struct cifs_tcon *tcon,
2587 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
2588{
2589 struct smb2_query_info_rsp *rsp = NULL;
2590 struct kvec iov;
2591 int rc = 0;
2592 int resp_buftype;
2593 struct cifs_ses *ses = tcon->ses;
2594 struct smb2_fs_full_size_info *info = NULL;
2595
2596 rc = build_qfs_info_req(&iov, tcon, FS_FULL_SIZE_INFORMATION,
2597 sizeof(struct smb2_fs_full_size_info),
2598 persistent_fid, volatile_fid);
2599 if (rc)
2600 return rc;
2601
2602 rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, 0);
2603 if (rc) {
2604 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
Steve French34f62642013-10-09 02:07:00 -05002605 goto qfsinf_exit;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07002606 }
2607 rsp = (struct smb2_query_info_rsp *)iov.iov_base;
2608
2609 info = (struct smb2_fs_full_size_info *)(4 /* RFC1001 len */ +
2610 le16_to_cpu(rsp->OutputBufferOffset) + (char *)&rsp->hdr);
2611 rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
2612 le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
2613 sizeof(struct smb2_fs_full_size_info));
2614 if (!rc)
2615 copy_fs_info_to_kstatfs(info, fsdata);
2616
Steve French34f62642013-10-09 02:07:00 -05002617qfsinf_exit:
2618 free_rsp_buf(resp_buftype, iov.iov_base);
2619 return rc;
2620}
2621
2622int
2623SMB2_QFS_attr(const unsigned int xid, struct cifs_tcon *tcon,
Steven French21671142013-10-09 13:36:35 -05002624 u64 persistent_fid, u64 volatile_fid, int level)
Steve French34f62642013-10-09 02:07:00 -05002625{
2626 struct smb2_query_info_rsp *rsp = NULL;
2627 struct kvec iov;
2628 int rc = 0;
Steven French21671142013-10-09 13:36:35 -05002629 int resp_buftype, max_len, min_len;
Steve French34f62642013-10-09 02:07:00 -05002630 struct cifs_ses *ses = tcon->ses;
2631 unsigned int rsp_len, offset;
2632
Steven French21671142013-10-09 13:36:35 -05002633 if (level == FS_DEVICE_INFORMATION) {
2634 max_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
2635 min_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
2636 } else if (level == FS_ATTRIBUTE_INFORMATION) {
2637 max_len = sizeof(FILE_SYSTEM_ATTRIBUTE_INFO);
2638 min_len = MIN_FS_ATTR_INFO_SIZE;
Steven Frenchaf6a12e2013-10-09 20:55:53 -05002639 } else if (level == FS_SECTOR_SIZE_INFORMATION) {
2640 max_len = sizeof(struct smb3_fs_ss_info);
2641 min_len = sizeof(struct smb3_fs_ss_info);
Steven French21671142013-10-09 13:36:35 -05002642 } else {
Steven Frenchaf6a12e2013-10-09 20:55:53 -05002643 cifs_dbg(FYI, "Invalid qfsinfo level %d\n", level);
Steven French21671142013-10-09 13:36:35 -05002644 return -EINVAL;
2645 }
2646
2647 rc = build_qfs_info_req(&iov, tcon, level, max_len,
Steve French34f62642013-10-09 02:07:00 -05002648 persistent_fid, volatile_fid);
2649 if (rc)
2650 return rc;
2651
2652 rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, 0);
2653 if (rc) {
2654 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
2655 goto qfsattr_exit;
2656 }
2657 rsp = (struct smb2_query_info_rsp *)iov.iov_base;
2658
2659 rsp_len = le32_to_cpu(rsp->OutputBufferLength);
2660 offset = le16_to_cpu(rsp->OutputBufferOffset);
Steven French21671142013-10-09 13:36:35 -05002661 rc = validate_buf(offset, rsp_len, &rsp->hdr, min_len);
2662 if (rc)
2663 goto qfsattr_exit;
2664
2665 if (level == FS_ATTRIBUTE_INFORMATION)
Steve French34f62642013-10-09 02:07:00 -05002666 memcpy(&tcon->fsAttrInfo, 4 /* RFC1001 len */ + offset
2667 + (char *)&rsp->hdr, min_t(unsigned int,
Steven French21671142013-10-09 13:36:35 -05002668 rsp_len, max_len));
2669 else if (level == FS_DEVICE_INFORMATION)
2670 memcpy(&tcon->fsDevInfo, 4 /* RFC1001 len */ + offset
2671 + (char *)&rsp->hdr, sizeof(FILE_SYSTEM_DEVICE_INFO));
Steven Frenchaf6a12e2013-10-09 20:55:53 -05002672 else if (level == FS_SECTOR_SIZE_INFORMATION) {
2673 struct smb3_fs_ss_info *ss_info = (struct smb3_fs_ss_info *)
2674 (4 /* RFC1001 len */ + offset + (char *)&rsp->hdr);
2675 tcon->ss_flags = le32_to_cpu(ss_info->Flags);
2676 tcon->perf_sector_size =
2677 le32_to_cpu(ss_info->PhysicalBytesPerSectorForPerf);
2678 }
Steve French34f62642013-10-09 02:07:00 -05002679
2680qfsattr_exit:
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07002681 free_rsp_buf(resp_buftype, iov.iov_base);
2682 return rc;
2683}
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07002684
2685int
2686smb2_lockv(const unsigned int xid, struct cifs_tcon *tcon,
2687 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
2688 const __u32 num_lock, struct smb2_lock_element *buf)
2689{
2690 int rc = 0;
2691 struct smb2_lock_req *req = NULL;
2692 struct kvec iov[2];
2693 int resp_buf_type;
2694 unsigned int count;
2695
Joe Perchesf96637b2013-05-04 22:12:25 -05002696 cifs_dbg(FYI, "smb2_lockv num lock %d\n", num_lock);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07002697
2698 rc = small_smb2_init(SMB2_LOCK, tcon, (void **) &req);
2699 if (rc)
2700 return rc;
2701
2702 req->hdr.ProcessId = cpu_to_le32(pid);
2703 req->LockCount = cpu_to_le16(num_lock);
2704
2705 req->PersistentFileId = persist_fid;
2706 req->VolatileFileId = volatile_fid;
2707
2708 count = num_lock * sizeof(struct smb2_lock_element);
2709 inc_rfc1001_len(req, count - sizeof(struct smb2_lock_element));
2710
2711 iov[0].iov_base = (char *)req;
2712 /* 4 for rfc1002 length field and count for all locks */
2713 iov[0].iov_len = get_rfc1002_length(req) + 4 - count;
2714 iov[1].iov_base = (char *)buf;
2715 iov[1].iov_len = count;
2716
2717 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
2718 rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, CIFS_NO_RESP);
2719 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002720 cifs_dbg(FYI, "Send error in smb2_lockv = %d\n", rc);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07002721 cifs_stats_fail_inc(tcon, SMB2_LOCK_HE);
2722 }
2723
2724 return rc;
2725}
2726
2727int
2728SMB2_lock(const unsigned int xid, struct cifs_tcon *tcon,
2729 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
2730 const __u64 length, const __u64 offset, const __u32 lock_flags,
2731 const bool wait)
2732{
2733 struct smb2_lock_element lock;
2734
2735 lock.Offset = cpu_to_le64(offset);
2736 lock.Length = cpu_to_le64(length);
2737 lock.Flags = cpu_to_le32(lock_flags);
2738 if (!wait && lock_flags != SMB2_LOCKFLAG_UNLOCK)
2739 lock.Flags |= cpu_to_le32(SMB2_LOCKFLAG_FAIL_IMMEDIATELY);
2740
2741 return smb2_lockv(xid, tcon, persist_fid, volatile_fid, pid, 1, &lock);
2742}
Pavel Shilovsky0822f512012-09-19 06:22:45 -07002743
2744int
2745SMB2_lease_break(const unsigned int xid, struct cifs_tcon *tcon,
2746 __u8 *lease_key, const __le32 lease_state)
2747{
2748 int rc;
2749 struct smb2_lease_ack *req = NULL;
2750
Joe Perchesf96637b2013-05-04 22:12:25 -05002751 cifs_dbg(FYI, "SMB2_lease_break\n");
Pavel Shilovsky0822f512012-09-19 06:22:45 -07002752 rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
2753
2754 if (rc)
2755 return rc;
2756
2757 req->hdr.CreditRequest = cpu_to_le16(1);
2758 req->StructureSize = cpu_to_le16(36);
2759 inc_rfc1001_len(req, 12);
2760
2761 memcpy(req->LeaseKey, lease_key, 16);
2762 req->LeaseState = lease_state;
2763
2764 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP);
2765 /* SMB2 buffer freed by function above */
2766
2767 if (rc) {
2768 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05002769 cifs_dbg(FYI, "Send error in Lease Break = %d\n", rc);
Pavel Shilovsky0822f512012-09-19 06:22:45 -07002770 }
2771
2772 return rc;
2773}