Upgrade to 4.4.50-rt62
[kvmfornfv.git] / kernel / fs / cifs / smb2pdu.c
1 /*
2  *   fs/cifs/smb2pdu.c
3  *
4  *   Copyright (C) International Business Machines  Corp., 2009, 2013
5  *                 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>
34 #include <linux/task_io_accounting_ops.h>
35 #include <linux/uaccess.h>
36 #include <linux/pagemap.h>
37 #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"
47 #include "smb2glob.h"
48 #include "cifspdu.h"
49 #include "cifs_spnego.h"
50
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  */
58 static 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
81 static void
82 smb2_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         if (tcon && tcon->ses && tcon->ses->server) {
107                 struct TCP_Server_Info *server = tcon->ses->server;
108
109                 spin_lock(&server->req_lock);
110                 /* Request up to 2 credits but don't go over the limit. */
111                 if (server->credits >= SMB2_MAX_CREDITS_AVAILABLE)
112                         hdr->CreditRequest = cpu_to_le16(0);
113                 else
114                         hdr->CreditRequest = cpu_to_le16(
115                                 min_t(int, SMB2_MAX_CREDITS_AVAILABLE -
116                                                 server->credits, 2));
117                 spin_unlock(&server->req_lock);
118         } else {
119                 hdr->CreditRequest = cpu_to_le16(2);
120         }
121         hdr->ProcessId = cpu_to_le32((__u16)current->tgid);
122
123         if (!tcon)
124                 goto out;
125
126         /* GLOBAL_CAP_LARGE_MTU will only be set if dialect > SMB2.02 */
127         /* See sections 2.2.4 and 3.2.4.1.5 of MS-SMB2 */
128         if ((tcon->ses) && (tcon->ses->server) &&
129             (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LARGE_MTU))
130                 hdr->CreditCharge = cpu_to_le16(1);
131         /* else CreditCharge MBZ */
132
133         hdr->TreeId = tcon->tid;
134         /* Uid is not converted */
135         if (tcon->ses)
136                 hdr->SessionId = tcon->ses->Suid;
137
138         /*
139          * If we would set SMB2_FLAGS_DFS_OPERATIONS on open we also would have
140          * to pass the path on the Open SMB prefixed by \\server\share.
141          * Not sure when we would need to do the augmented path (if ever) and
142          * setting this flag breaks the SMB2 open operation since it is
143          * illegal to send an empty path name (without \\server\share prefix)
144          * when the DFS flag is set in the SMB open header. We could
145          * consider setting the flag on all operations other than open
146          * but it is safer to net set it for now.
147          */
148 /*      if (tcon->share_flags & SHI1005_FLAGS_DFS)
149                 hdr->Flags |= SMB2_FLAGS_DFS_OPERATIONS; */
150
151         if (tcon->ses && tcon->ses->server && tcon->ses->server->sign)
152                 hdr->Flags |= SMB2_FLAGS_SIGNED;
153 out:
154         pdu->StructureSize2 = cpu_to_le16(parmsize);
155         return;
156 }
157
158 static int
159 smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon)
160 {
161         int rc = 0;
162         struct nls_table *nls_codepage;
163         struct cifs_ses *ses;
164         struct TCP_Server_Info *server;
165
166         /*
167          * SMB2s NegProt, SessSetup, Logoff do not have tcon yet so
168          * check for tcp and smb session status done differently
169          * for those three - in the calling routine.
170          */
171         if (tcon == NULL)
172                 return rc;
173
174         if (smb2_command == SMB2_TREE_CONNECT)
175                 return rc;
176
177         if (tcon->tidStatus == CifsExiting) {
178                 /*
179                  * only tree disconnect, open, and write,
180                  * (and ulogoff which does not have tcon)
181                  * are allowed as we start force umount.
182                  */
183                 if ((smb2_command != SMB2_WRITE) &&
184                    (smb2_command != SMB2_CREATE) &&
185                    (smb2_command != SMB2_TREE_DISCONNECT)) {
186                         cifs_dbg(FYI, "can not send cmd %d while umounting\n",
187                                  smb2_command);
188                         return -ENODEV;
189                 }
190         }
191         if ((!tcon->ses) || (tcon->ses->status == CifsExiting) ||
192             (!tcon->ses->server))
193                 return -EIO;
194
195         ses = tcon->ses;
196         server = ses->server;
197
198         /*
199          * Give demultiplex thread up to 10 seconds to reconnect, should be
200          * greater than cifs socket timeout which is 7 seconds
201          */
202         while (server->tcpStatus == CifsNeedReconnect) {
203                 /*
204                  * Return to caller for TREE_DISCONNECT and LOGOFF and CLOSE
205                  * here since they are implicitly done when session drops.
206                  */
207                 switch (smb2_command) {
208                 /*
209                  * BB Should we keep oplock break and add flush to exceptions?
210                  */
211                 case SMB2_TREE_DISCONNECT:
212                 case SMB2_CANCEL:
213                 case SMB2_CLOSE:
214                 case SMB2_OPLOCK_BREAK:
215                         return -EAGAIN;
216                 }
217
218                 wait_event_interruptible_timeout(server->response_q,
219                         (server->tcpStatus != CifsNeedReconnect), 10 * HZ);
220
221                 /* are we still trying to reconnect? */
222                 if (server->tcpStatus != CifsNeedReconnect)
223                         break;
224
225                 /*
226                  * on "soft" mounts we wait once. Hard mounts keep
227                  * retrying until process is killed or server comes
228                  * back on-line
229                  */
230                 if (!tcon->retry) {
231                         cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n");
232                         return -EHOSTDOWN;
233                 }
234         }
235
236         if (!tcon->ses->need_reconnect && !tcon->need_reconnect)
237                 return rc;
238
239         nls_codepage = load_nls_default();
240
241         /*
242          * need to prevent multiple threads trying to simultaneously reconnect
243          * the same SMB session
244          */
245         mutex_lock(&tcon->ses->session_mutex);
246         rc = cifs_negotiate_protocol(0, tcon->ses);
247         if (!rc && tcon->ses->need_reconnect)
248                 rc = cifs_setup_session(0, tcon->ses, nls_codepage);
249
250         if (rc || !tcon->need_reconnect) {
251                 mutex_unlock(&tcon->ses->session_mutex);
252                 goto out;
253         }
254
255         cifs_mark_open_files_invalid(tcon);
256         rc = SMB2_tcon(0, tcon->ses, tcon->treeName, tcon, nls_codepage);
257         mutex_unlock(&tcon->ses->session_mutex);
258         cifs_dbg(FYI, "reconnect tcon rc = %d\n", rc);
259         if (rc)
260                 goto out;
261         atomic_inc(&tconInfoReconnectCount);
262 out:
263         /*
264          * Check if handle based operation so we know whether we can continue
265          * or not without returning to caller to reset file handle.
266          */
267         /*
268          * BB Is flush done by server on drop of tcp session? Should we special
269          * case it and skip above?
270          */
271         switch (smb2_command) {
272         case SMB2_FLUSH:
273         case SMB2_READ:
274         case SMB2_WRITE:
275         case SMB2_LOCK:
276         case SMB2_IOCTL:
277         case SMB2_QUERY_DIRECTORY:
278         case SMB2_CHANGE_NOTIFY:
279         case SMB2_QUERY_INFO:
280         case SMB2_SET_INFO:
281                 rc = -EAGAIN;
282         }
283         unload_nls(nls_codepage);
284         return rc;
285 }
286
287 /*
288  * Allocate and return pointer to an SMB request hdr, and set basic
289  * SMB information in the SMB header. If the return code is zero, this
290  * function must have filled in request_buf pointer.
291  */
292 static int
293 small_smb2_init(__le16 smb2_command, struct cifs_tcon *tcon,
294                 void **request_buf)
295 {
296         int rc = 0;
297
298         rc = smb2_reconnect(smb2_command, tcon);
299         if (rc)
300                 return rc;
301
302         /* BB eventually switch this to SMB2 specific small buf size */
303         *request_buf = cifs_small_buf_get();
304         if (*request_buf == NULL) {
305                 /* BB should we add a retry in here if not a writepage? */
306                 return -ENOMEM;
307         }
308
309         smb2_hdr_assemble((struct smb2_hdr *) *request_buf, smb2_command, tcon);
310
311         if (tcon != NULL) {
312 #ifdef CONFIG_CIFS_STATS2
313                 uint16_t com_code = le16_to_cpu(smb2_command);
314                 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]);
315 #endif
316                 cifs_stats_inc(&tcon->num_smbs_sent);
317         }
318
319         return rc;
320 }
321
322 #ifdef CONFIG_CIFS_SMB311
323 /* offset is sizeof smb2_negotiate_req - 4 but rounded up to 8 bytes */
324 #define OFFSET_OF_NEG_CONTEXT 0x68  /* sizeof(struct smb2_negotiate_req) - 4 */
325
326
327 #define SMB2_PREAUTH_INTEGRITY_CAPABILITIES     cpu_to_le16(1)
328 #define SMB2_ENCRYPTION_CAPABILITIES            cpu_to_le16(2)
329
330 static void
331 build_preauth_ctxt(struct smb2_preauth_neg_context *pneg_ctxt)
332 {
333         pneg_ctxt->ContextType = SMB2_PREAUTH_INTEGRITY_CAPABILITIES;
334         pneg_ctxt->DataLength = cpu_to_le16(38);
335         pneg_ctxt->HashAlgorithmCount = cpu_to_le16(1);
336         pneg_ctxt->SaltLength = cpu_to_le16(SMB311_SALT_SIZE);
337         get_random_bytes(pneg_ctxt->Salt, SMB311_SALT_SIZE);
338         pneg_ctxt->HashAlgorithms = SMB2_PREAUTH_INTEGRITY_SHA512;
339 }
340
341 static void
342 build_encrypt_ctxt(struct smb2_encryption_neg_context *pneg_ctxt)
343 {
344         pneg_ctxt->ContextType = SMB2_ENCRYPTION_CAPABILITIES;
345         pneg_ctxt->DataLength = cpu_to_le16(6);
346         pneg_ctxt->CipherCount = cpu_to_le16(2);
347         pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_GCM;
348         pneg_ctxt->Ciphers[1] = SMB2_ENCRYPTION_AES128_CCM;
349 }
350
351 static void
352 assemble_neg_contexts(struct smb2_negotiate_req *req)
353 {
354
355         /* +4 is to account for the RFC1001 len field */
356         char *pneg_ctxt = (char *)req + OFFSET_OF_NEG_CONTEXT + 4;
357
358         build_preauth_ctxt((struct smb2_preauth_neg_context *)pneg_ctxt);
359         /* Add 2 to size to round to 8 byte boundary */
360         pneg_ctxt += 2 + sizeof(struct smb2_preauth_neg_context);
361         build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt);
362         req->NegotiateContextOffset = cpu_to_le32(OFFSET_OF_NEG_CONTEXT);
363         req->NegotiateContextCount = cpu_to_le16(2);
364         inc_rfc1001_len(req, 4 + sizeof(struct smb2_preauth_neg_context) + 2
365                         + sizeof(struct smb2_encryption_neg_context)); /* calculate hash */
366 }
367 #else
368 static void assemble_neg_contexts(struct smb2_negotiate_req *req)
369 {
370         return;
371 }
372 #endif /* SMB311 */
373
374
375 /*
376  *
377  *      SMB2 Worker functions follow:
378  *
379  *      The general structure of the worker functions is:
380  *      1) Call smb2_init (assembles SMB2 header)
381  *      2) Initialize SMB2 command specific fields in fixed length area of SMB
382  *      3) Call smb_sendrcv2 (sends request on socket and waits for response)
383  *      4) Decode SMB2 command specific fields in the fixed length area
384  *      5) Decode variable length data area (if any for this SMB2 command type)
385  *      6) Call free smb buffer
386  *      7) return
387  *
388  */
389
390 int
391 SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses)
392 {
393         struct smb2_negotiate_req *req;
394         struct smb2_negotiate_rsp *rsp;
395         struct kvec iov[1];
396         int rc = 0;
397         int resp_buftype;
398         struct TCP_Server_Info *server = ses->server;
399         int blob_offset, blob_length;
400         char *security_blob;
401         int flags = CIFS_NEG_OP;
402
403         cifs_dbg(FYI, "Negotiate protocol\n");
404
405         if (!server) {
406                 WARN(1, "%s: server is NULL!\n", __func__);
407                 return -EIO;
408         }
409
410         rc = small_smb2_init(SMB2_NEGOTIATE, NULL, (void **) &req);
411         if (rc)
412                 return rc;
413
414         req->hdr.SessionId = 0;
415
416         req->Dialects[0] = cpu_to_le16(ses->server->vals->protocol_id);
417
418         req->DialectCount = cpu_to_le16(1); /* One vers= at a time for now */
419         inc_rfc1001_len(req, 2);
420
421         /* only one of SMB2 signing flags may be set in SMB2 request */
422         if (ses->sign)
423                 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
424         else if (global_secflags & CIFSSEC_MAY_SIGN)
425                 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
426         else
427                 req->SecurityMode = 0;
428
429         req->Capabilities = cpu_to_le32(ses->server->vals->req_capabilities);
430
431         /* ClientGUID must be zero for SMB2.02 dialect */
432         if (ses->server->vals->protocol_id == SMB20_PROT_ID)
433                 memset(req->ClientGUID, 0, SMB2_CLIENT_GUID_SIZE);
434         else {
435                 memcpy(req->ClientGUID, server->client_guid,
436                         SMB2_CLIENT_GUID_SIZE);
437                 if (ses->server->vals->protocol_id == SMB311_PROT_ID)
438                         assemble_neg_contexts(req);
439         }
440         iov[0].iov_base = (char *)req;
441         /* 4 for rfc1002 length field */
442         iov[0].iov_len = get_rfc1002_length(req) + 4;
443
444         rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags);
445
446         rsp = (struct smb2_negotiate_rsp *)iov[0].iov_base;
447         /*
448          * No tcon so can't do
449          * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
450          */
451         if (rc != 0)
452                 goto neg_exit;
453
454         cifs_dbg(FYI, "mode 0x%x\n", rsp->SecurityMode);
455
456         /* BB we may eventually want to match the negotiated vs. requested
457            dialect, even though we are only requesting one at a time */
458         if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID))
459                 cifs_dbg(FYI, "negotiated smb2.0 dialect\n");
460         else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID))
461                 cifs_dbg(FYI, "negotiated smb2.1 dialect\n");
462         else if (rsp->DialectRevision == cpu_to_le16(SMB30_PROT_ID))
463                 cifs_dbg(FYI, "negotiated smb3.0 dialect\n");
464         else if (rsp->DialectRevision == cpu_to_le16(SMB302_PROT_ID))
465                 cifs_dbg(FYI, "negotiated smb3.02 dialect\n");
466 #ifdef CONFIG_CIFS_SMB311
467         else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID))
468                 cifs_dbg(FYI, "negotiated smb3.1.1 dialect\n");
469 #endif /* SMB311 */
470         else {
471                 cifs_dbg(VFS, "Illegal dialect returned by server 0x%x\n",
472                          le16_to_cpu(rsp->DialectRevision));
473                 rc = -EIO;
474                 goto neg_exit;
475         }
476         server->dialect = le16_to_cpu(rsp->DialectRevision);
477
478         /* SMB2 only has an extended negflavor */
479         server->negflavor = CIFS_NEGFLAVOR_EXTENDED;
480         /* set it to the maximum buffer size value we can send with 1 credit */
481         server->maxBuf = min_t(unsigned int, le32_to_cpu(rsp->MaxTransactSize),
482                                SMB2_MAX_BUFFER_SIZE);
483         server->max_read = le32_to_cpu(rsp->MaxReadSize);
484         server->max_write = le32_to_cpu(rsp->MaxWriteSize);
485         /* BB Do we need to validate the SecurityMode? */
486         server->sec_mode = le16_to_cpu(rsp->SecurityMode);
487         server->capabilities = le32_to_cpu(rsp->Capabilities);
488         /* Internal types */
489         server->capabilities |= SMB2_NT_FIND | SMB2_LARGE_FILES;
490
491         security_blob = smb2_get_data_area_len(&blob_offset, &blob_length,
492                                                &rsp->hdr);
493         /*
494          * See MS-SMB2 section 2.2.4: if no blob, client picks default which
495          * for us will be
496          *      ses->sectype = RawNTLMSSP;
497          * but for time being this is our only auth choice so doesn't matter.
498          * We just found a server which sets blob length to zero expecting raw.
499          */
500         if (blob_length == 0)
501                 cifs_dbg(FYI, "missing security blob on negprot\n");
502
503         rc = cifs_enable_signing(server, ses->sign);
504         if (rc)
505                 goto neg_exit;
506         if (blob_length) {
507                 rc = decode_negTokenInit(security_blob, blob_length, server);
508                 if (rc == 1)
509                         rc = 0;
510                 else if (rc == 0)
511                         rc = -EIO;
512         }
513 neg_exit:
514         free_rsp_buf(resp_buftype, rsp);
515         return rc;
516 }
517
518 int smb3_validate_negotiate(const unsigned int xid, struct cifs_tcon *tcon)
519 {
520         int rc = 0;
521         struct validate_negotiate_info_req vneg_inbuf;
522         struct validate_negotiate_info_rsp *pneg_rsp;
523         u32 rsplen;
524
525         cifs_dbg(FYI, "validate negotiate\n");
526
527         /*
528          * validation ioctl must be signed, so no point sending this if we
529          * can not sign it.  We could eventually change this to selectively
530          * sign just this, the first and only signed request on a connection.
531          * This is good enough for now since a user who wants better security
532          * would also enable signing on the mount. Having validation of
533          * negotiate info for signed connections helps reduce attack vectors
534          */
535         if (tcon->ses->server->sign == false)
536                 return 0; /* validation requires signing */
537
538         vneg_inbuf.Capabilities =
539                         cpu_to_le32(tcon->ses->server->vals->req_capabilities);
540         memcpy(vneg_inbuf.Guid, tcon->ses->server->client_guid,
541                                         SMB2_CLIENT_GUID_SIZE);
542
543         if (tcon->ses->sign)
544                 vneg_inbuf.SecurityMode =
545                         cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
546         else if (global_secflags & CIFSSEC_MAY_SIGN)
547                 vneg_inbuf.SecurityMode =
548                         cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
549         else
550                 vneg_inbuf.SecurityMode = 0;
551
552         vneg_inbuf.DialectCount = cpu_to_le16(1);
553         vneg_inbuf.Dialects[0] =
554                 cpu_to_le16(tcon->ses->server->vals->protocol_id);
555
556         rc = SMB2_ioctl(xid, tcon, NO_FILE_ID, NO_FILE_ID,
557                 FSCTL_VALIDATE_NEGOTIATE_INFO, true /* is_fsctl */,
558                 (char *)&vneg_inbuf, sizeof(struct validate_negotiate_info_req),
559                 (char **)&pneg_rsp, &rsplen);
560
561         if (rc != 0) {
562                 cifs_dbg(VFS, "validate protocol negotiate failed: %d\n", rc);
563                 return -EIO;
564         }
565
566         if (rsplen != sizeof(struct validate_negotiate_info_rsp)) {
567                 cifs_dbg(VFS, "invalid size of protocol negotiate response\n");
568                 return -EIO;
569         }
570
571         /* check validate negotiate info response matches what we got earlier */
572         if (pneg_rsp->Dialect !=
573                         cpu_to_le16(tcon->ses->server->vals->protocol_id))
574                 goto vneg_out;
575
576         if (pneg_rsp->SecurityMode != cpu_to_le16(tcon->ses->server->sec_mode))
577                 goto vneg_out;
578
579         /* do not validate server guid because not saved at negprot time yet */
580
581         if ((le32_to_cpu(pneg_rsp->Capabilities) | SMB2_NT_FIND |
582               SMB2_LARGE_FILES) != tcon->ses->server->capabilities)
583                 goto vneg_out;
584
585         /* validate negotiate successful */
586         cifs_dbg(FYI, "validate negotiate info successful\n");
587         return 0;
588
589 vneg_out:
590         cifs_dbg(VFS, "protocol revalidation - security settings mismatch\n");
591         return -EIO;
592 }
593
594 int
595 SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
596                 const struct nls_table *nls_cp)
597 {
598         struct smb2_sess_setup_req *req;
599         struct smb2_sess_setup_rsp *rsp = NULL;
600         struct kvec iov[2];
601         int rc = 0;
602         int resp_buftype = CIFS_NO_BUFFER;
603         __le32 phase = NtLmNegotiate; /* NTLMSSP, if needed, is multistage */
604         struct TCP_Server_Info *server = ses->server;
605         u16 blob_length = 0;
606         struct key *spnego_key = NULL;
607         char *security_blob = NULL;
608         unsigned char *ntlmssp_blob = NULL;
609         bool use_spnego = false; /* else use raw ntlmssp */
610         u64 previous_session = ses->Suid;
611
612         cifs_dbg(FYI, "Session Setup\n");
613
614         if (!server) {
615                 WARN(1, "%s: server is NULL!\n", __func__);
616                 return -EIO;
617         }
618
619         /*
620          * If we are here due to reconnect, free per-smb session key
621          * in case signing was required.
622          */
623         kfree(ses->auth_key.response);
624         ses->auth_key.response = NULL;
625
626         /*
627          * If memory allocation is successful, caller of this function
628          * frees it.
629          */
630         ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
631         if (!ses->ntlmssp)
632                 return -ENOMEM;
633         ses->ntlmssp->sesskey_per_smbsess = true;
634
635         /* FIXME: allow for other auth types besides NTLMSSP (e.g. krb5) */
636         if (ses->sectype != Kerberos && ses->sectype != RawNTLMSSP)
637                 ses->sectype = RawNTLMSSP;
638
639 ssetup_ntlmssp_authenticate:
640         if (phase == NtLmChallenge)
641                 phase = NtLmAuthenticate; /* if ntlmssp, now final phase */
642
643         rc = small_smb2_init(SMB2_SESSION_SETUP, NULL, (void **) &req);
644         if (rc)
645                 return rc;
646
647         req->hdr.SessionId = 0; /* First session, not a reauthenticate */
648
649         /* if reconnect, we need to send previous sess id, otherwise it is 0 */
650         req->PreviousSessionId = previous_session;
651
652         req->Flags = 0; /* MBZ */
653         /* to enable echos and oplocks */
654         req->hdr.CreditRequest = cpu_to_le16(3);
655
656         /* only one of SMB2 signing flags may be set in SMB2 request */
657         if (server->sign)
658                 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_REQUIRED;
659         else if (global_secflags & CIFSSEC_MAY_SIGN) /* one flag unlike MUST_ */
660                 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED;
661         else
662                 req->SecurityMode = 0;
663
664         req->Capabilities = 0;
665         req->Channel = 0; /* MBZ */
666
667         iov[0].iov_base = (char *)req;
668         /* 4 for rfc1002 length field and 1 for pad */
669         iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
670
671         if (ses->sectype == Kerberos) {
672 #ifdef CONFIG_CIFS_UPCALL
673                 struct cifs_spnego_msg *msg;
674
675                 spnego_key = cifs_get_spnego_key(ses);
676                 if (IS_ERR(spnego_key)) {
677                         rc = PTR_ERR(spnego_key);
678                         spnego_key = NULL;
679                         goto ssetup_exit;
680                 }
681
682                 msg = spnego_key->payload.data[0];
683                 /*
684                  * check version field to make sure that cifs.upcall is
685                  * sending us a response in an expected form
686                  */
687                 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
688                         cifs_dbg(VFS,
689                                   "bad cifs.upcall version. Expected %d got %d",
690                                   CIFS_SPNEGO_UPCALL_VERSION, msg->version);
691                         rc = -EKEYREJECTED;
692                         goto ssetup_exit;
693                 }
694                 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
695                                                  GFP_KERNEL);
696                 if (!ses->auth_key.response) {
697                         cifs_dbg(VFS,
698                                 "Kerberos can't allocate (%u bytes) memory",
699                                 msg->sesskey_len);
700                         rc = -ENOMEM;
701                         goto ssetup_exit;
702                 }
703                 ses->auth_key.len = msg->sesskey_len;
704                 blob_length = msg->secblob_len;
705                 iov[1].iov_base = msg->data + msg->sesskey_len;
706                 iov[1].iov_len = blob_length;
707 #else
708                 rc = -EOPNOTSUPP;
709                 goto ssetup_exit;
710 #endif /* CONFIG_CIFS_UPCALL */
711         } else if (phase == NtLmNegotiate) { /* if not krb5 must be ntlmssp */
712                 ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE),
713                                        GFP_KERNEL);
714                 if (ntlmssp_blob == NULL) {
715                         rc = -ENOMEM;
716                         goto ssetup_exit;
717                 }
718                 build_ntlmssp_negotiate_blob(ntlmssp_blob, ses);
719                 if (use_spnego) {
720                         /* blob_length = build_spnego_ntlmssp_blob(
721                                         &security_blob,
722                                         sizeof(struct _NEGOTIATE_MESSAGE),
723                                         ntlmssp_blob); */
724                         /* BB eventually need to add this */
725                         cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
726                         rc = -EOPNOTSUPP;
727                         kfree(ntlmssp_blob);
728                         goto ssetup_exit;
729                 } else {
730                         blob_length = sizeof(struct _NEGOTIATE_MESSAGE);
731                         /* with raw NTLMSSP we don't encapsulate in SPNEGO */
732                         security_blob = ntlmssp_blob;
733                 }
734                 iov[1].iov_base = security_blob;
735                 iov[1].iov_len = blob_length;
736         } else if (phase == NtLmAuthenticate) {
737                 req->hdr.SessionId = ses->Suid;
738                 rc = build_ntlmssp_auth_blob(&ntlmssp_blob, &blob_length, ses,
739                                              nls_cp);
740                 if (rc) {
741                         cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n",
742                                  rc);
743                         goto ssetup_exit; /* BB double check error handling */
744                 }
745                 if (use_spnego) {
746                         /* blob_length = build_spnego_ntlmssp_blob(
747                                                         &security_blob,
748                                                         blob_length,
749                                                         ntlmssp_blob); */
750                         cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
751                         rc = -EOPNOTSUPP;
752                         kfree(ntlmssp_blob);
753                         goto ssetup_exit;
754                 } else {
755                         security_blob = ntlmssp_blob;
756                 }
757                 iov[1].iov_base = security_blob;
758                 iov[1].iov_len = blob_length;
759         } else {
760                 cifs_dbg(VFS, "illegal ntlmssp phase\n");
761                 rc = -EIO;
762                 goto ssetup_exit;
763         }
764
765         /* Testing shows that buffer offset must be at location of Buffer[0] */
766         req->SecurityBufferOffset =
767                                 cpu_to_le16(sizeof(struct smb2_sess_setup_req) -
768                                             1 /* pad */ - 4 /* rfc1001 len */);
769         req->SecurityBufferLength = cpu_to_le16(blob_length);
770
771         inc_rfc1001_len(req, blob_length - 1 /* pad */);
772
773         /* BB add code to build os and lm fields */
774
775         rc = SendReceive2(xid, ses, iov, 2, &resp_buftype,
776                           CIFS_LOG_ERROR | CIFS_NEG_OP);
777
778         kfree(security_blob);
779         rsp = (struct smb2_sess_setup_rsp *)iov[0].iov_base;
780         ses->Suid = rsp->hdr.SessionId;
781         if (resp_buftype != CIFS_NO_BUFFER &&
782             rsp->hdr.Status == STATUS_MORE_PROCESSING_REQUIRED) {
783                 if (phase != NtLmNegotiate) {
784                         cifs_dbg(VFS, "Unexpected more processing error\n");
785                         goto ssetup_exit;
786                 }
787                 if (offsetof(struct smb2_sess_setup_rsp, Buffer) - 4 !=
788                                 le16_to_cpu(rsp->SecurityBufferOffset)) {
789                         cifs_dbg(VFS, "Invalid security buffer offset %d\n",
790                                  le16_to_cpu(rsp->SecurityBufferOffset));
791                         rc = -EIO;
792                         goto ssetup_exit;
793                 }
794
795                 /* NTLMSSP Negotiate sent now processing challenge (response) */
796                 phase = NtLmChallenge; /* process ntlmssp challenge */
797                 rc = 0; /* MORE_PROCESSING is not an error here but expected */
798                 rc = decode_ntlmssp_challenge(rsp->Buffer,
799                                 le16_to_cpu(rsp->SecurityBufferLength), ses);
800         }
801
802         /*
803          * BB eventually add code for SPNEGO decoding of NtlmChallenge blob,
804          * but at least the raw NTLMSSP case works.
805          */
806         /*
807          * No tcon so can't do
808          * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
809          */
810         if (rc != 0)
811                 goto ssetup_exit;
812
813         ses->session_flags = le16_to_cpu(rsp->SessionFlags);
814         if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA)
815                 cifs_dbg(VFS, "SMB3 encryption not supported yet\n");
816 ssetup_exit:
817         free_rsp_buf(resp_buftype, rsp);
818
819         /* if ntlmssp, and negotiate succeeded, proceed to authenticate phase */
820         if ((phase == NtLmChallenge) && (rc == 0))
821                 goto ssetup_ntlmssp_authenticate;
822
823         if (!rc) {
824                 mutex_lock(&server->srv_mutex);
825                 if (server->sign && server->ops->generate_signingkey) {
826                         rc = server->ops->generate_signingkey(ses);
827                         kfree(ses->auth_key.response);
828                         ses->auth_key.response = NULL;
829                         if (rc) {
830                                 cifs_dbg(FYI,
831                                         "SMB3 session key generation failed\n");
832                                 mutex_unlock(&server->srv_mutex);
833                                 goto keygen_exit;
834                         }
835                 }
836                 if (!server->session_estab) {
837                         server->sequence_number = 0x2;
838                         server->session_estab = true;
839                 }
840                 mutex_unlock(&server->srv_mutex);
841
842                 cifs_dbg(FYI, "SMB2/3 session established successfully\n");
843                 spin_lock(&GlobalMid_Lock);
844                 ses->status = CifsGood;
845                 ses->need_reconnect = false;
846                 spin_unlock(&GlobalMid_Lock);
847         }
848
849 keygen_exit:
850         if (!server->sign) {
851                 kfree(ses->auth_key.response);
852                 ses->auth_key.response = NULL;
853         }
854         if (spnego_key) {
855                 key_invalidate(spnego_key);
856                 key_put(spnego_key);
857         }
858         kfree(ses->ntlmssp);
859
860         return rc;
861 }
862
863 int
864 SMB2_logoff(const unsigned int xid, struct cifs_ses *ses)
865 {
866         struct smb2_logoff_req *req; /* response is also trivial struct */
867         int rc = 0;
868         struct TCP_Server_Info *server;
869
870         cifs_dbg(FYI, "disconnect session %p\n", ses);
871
872         if (ses && (ses->server))
873                 server = ses->server;
874         else
875                 return -EIO;
876
877         /* no need to send SMB logoff if uid already closed due to reconnect */
878         if (ses->need_reconnect)
879                 goto smb2_session_already_dead;
880
881         rc = small_smb2_init(SMB2_LOGOFF, NULL, (void **) &req);
882         if (rc)
883                 return rc;
884
885          /* since no tcon, smb2_init can not do this, so do here */
886         req->hdr.SessionId = ses->Suid;
887         if (server->sign)
888                 req->hdr.Flags |= SMB2_FLAGS_SIGNED;
889
890         rc = SendReceiveNoRsp(xid, ses, (char *) &req->hdr, 0);
891         /*
892          * No tcon so can't do
893          * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
894          */
895
896 smb2_session_already_dead:
897         return rc;
898 }
899
900 static inline void cifs_stats_fail_inc(struct cifs_tcon *tcon, uint16_t code)
901 {
902         cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_failed[code]);
903 }
904
905 #define MAX_SHARENAME_LENGTH (255 /* server */ + 80 /* share */ + 1 /* NULL */)
906
907 /* These are similar values to what Windows uses */
908 static inline void init_copy_chunk_defaults(struct cifs_tcon *tcon)
909 {
910         tcon->max_chunks = 256;
911         tcon->max_bytes_chunk = 1048576;
912         tcon->max_bytes_copy = 16777216;
913 }
914
915 int
916 SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
917           struct cifs_tcon *tcon, const struct nls_table *cp)
918 {
919         struct smb2_tree_connect_req *req;
920         struct smb2_tree_connect_rsp *rsp = NULL;
921         struct kvec iov[2];
922         int rc = 0;
923         int resp_buftype;
924         int unc_path_len;
925         struct TCP_Server_Info *server;
926         __le16 *unc_path = NULL;
927
928         cifs_dbg(FYI, "TCON\n");
929
930         if ((ses->server) && tree)
931                 server = ses->server;
932         else
933                 return -EIO;
934
935         if (tcon && tcon->bad_network_name)
936                 return -ENOENT;
937
938         if ((tcon && tcon->seal) &&
939             ((ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION) == 0)) {
940                 cifs_dbg(VFS, "encryption requested but no server support");
941                 return -EOPNOTSUPP;
942         }
943
944         unc_path = kmalloc(MAX_SHARENAME_LENGTH * 2, GFP_KERNEL);
945         if (unc_path == NULL)
946                 return -ENOMEM;
947
948         unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp) + 1;
949         unc_path_len *= 2;
950         if (unc_path_len < 2) {
951                 kfree(unc_path);
952                 return -EINVAL;
953         }
954
955         rc = small_smb2_init(SMB2_TREE_CONNECT, tcon, (void **) &req);
956         if (rc) {
957                 kfree(unc_path);
958                 return rc;
959         }
960
961         if (tcon == NULL) {
962                 /* since no tcon, smb2_init can not do this, so do here */
963                 req->hdr.SessionId = ses->Suid;
964                 /* if (ses->server->sec_mode & SECMODE_SIGN_REQUIRED)
965                         req->hdr.Flags |= SMB2_FLAGS_SIGNED; */
966         }
967
968         iov[0].iov_base = (char *)req;
969         /* 4 for rfc1002 length field and 1 for pad */
970         iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
971
972         /* Testing shows that buffer offset must be at location of Buffer[0] */
973         req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)
974                         - 1 /* pad */ - 4 /* do not count rfc1001 len field */);
975         req->PathLength = cpu_to_le16(unc_path_len - 2);
976         iov[1].iov_base = unc_path;
977         iov[1].iov_len = unc_path_len;
978
979         inc_rfc1001_len(req, unc_path_len - 1 /* pad */);
980
981         rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0);
982         rsp = (struct smb2_tree_connect_rsp *)iov[0].iov_base;
983
984         if (rc != 0) {
985                 if (tcon) {
986                         cifs_stats_fail_inc(tcon, SMB2_TREE_CONNECT_HE);
987                         tcon->need_reconnect = true;
988                 }
989                 goto tcon_error_exit;
990         }
991
992         if (tcon == NULL) {
993                 ses->ipc_tid = rsp->hdr.TreeId;
994                 goto tcon_exit;
995         }
996
997         if (rsp->ShareType & SMB2_SHARE_TYPE_DISK)
998                 cifs_dbg(FYI, "connection to disk share\n");
999         else if (rsp->ShareType & SMB2_SHARE_TYPE_PIPE) {
1000                 tcon->ipc = true;
1001                 cifs_dbg(FYI, "connection to pipe share\n");
1002         } else if (rsp->ShareType & SMB2_SHARE_TYPE_PRINT) {
1003                 tcon->print = true;
1004                 cifs_dbg(FYI, "connection to printer\n");
1005         } else {
1006                 cifs_dbg(VFS, "unknown share type %d\n", rsp->ShareType);
1007                 rc = -EOPNOTSUPP;
1008                 goto tcon_error_exit;
1009         }
1010
1011         tcon->share_flags = le32_to_cpu(rsp->ShareFlags);
1012         tcon->capabilities = rsp->Capabilities; /* we keep caps little endian */
1013         tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess);
1014         tcon->tidStatus = CifsGood;
1015         tcon->need_reconnect = false;
1016         tcon->tid = rsp->hdr.TreeId;
1017         strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
1018
1019         if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) &&
1020             ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0))
1021                 cifs_dbg(VFS, "DFS capability contradicts DFS flag\n");
1022         init_copy_chunk_defaults(tcon);
1023         if (tcon->share_flags & SHI1005_FLAGS_ENCRYPT_DATA)
1024                 cifs_dbg(VFS, "Encrypted shares not supported");
1025         if (tcon->ses->server->ops->validate_negotiate)
1026                 rc = tcon->ses->server->ops->validate_negotiate(xid, tcon);
1027 tcon_exit:
1028         free_rsp_buf(resp_buftype, rsp);
1029         kfree(unc_path);
1030         return rc;
1031
1032 tcon_error_exit:
1033         if (rsp->hdr.Status == STATUS_BAD_NETWORK_NAME) {
1034                 cifs_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree);
1035                 if (tcon)
1036                         tcon->bad_network_name = true;
1037         }
1038         goto tcon_exit;
1039 }
1040
1041 int
1042 SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
1043 {
1044         struct smb2_tree_disconnect_req *req; /* response is trivial */
1045         int rc = 0;
1046         struct TCP_Server_Info *server;
1047         struct cifs_ses *ses = tcon->ses;
1048
1049         cifs_dbg(FYI, "Tree Disconnect\n");
1050
1051         if (ses && (ses->server))
1052                 server = ses->server;
1053         else
1054                 return -EIO;
1055
1056         if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
1057                 return 0;
1058
1059         rc = small_smb2_init(SMB2_TREE_DISCONNECT, tcon, (void **) &req);
1060         if (rc)
1061                 return rc;
1062
1063         rc = SendReceiveNoRsp(xid, ses, (char *)&req->hdr, 0);
1064         if (rc)
1065                 cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE);
1066
1067         return rc;
1068 }
1069
1070
1071 static struct create_durable *
1072 create_durable_buf(void)
1073 {
1074         struct create_durable *buf;
1075
1076         buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1077         if (!buf)
1078                 return NULL;
1079
1080         buf->ccontext.DataOffset = cpu_to_le16(offsetof
1081                                         (struct create_durable, Data));
1082         buf->ccontext.DataLength = cpu_to_le32(16);
1083         buf->ccontext.NameOffset = cpu_to_le16(offsetof
1084                                 (struct create_durable, Name));
1085         buf->ccontext.NameLength = cpu_to_le16(4);
1086         /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DHnQ" */
1087         buf->Name[0] = 'D';
1088         buf->Name[1] = 'H';
1089         buf->Name[2] = 'n';
1090         buf->Name[3] = 'Q';
1091         return buf;
1092 }
1093
1094 static struct create_durable *
1095 create_reconnect_durable_buf(struct cifs_fid *fid)
1096 {
1097         struct create_durable *buf;
1098
1099         buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1100         if (!buf)
1101                 return NULL;
1102
1103         buf->ccontext.DataOffset = cpu_to_le16(offsetof
1104                                         (struct create_durable, Data));
1105         buf->ccontext.DataLength = cpu_to_le32(16);
1106         buf->ccontext.NameOffset = cpu_to_le16(offsetof
1107                                 (struct create_durable, Name));
1108         buf->ccontext.NameLength = cpu_to_le16(4);
1109         buf->Data.Fid.PersistentFileId = fid->persistent_fid;
1110         buf->Data.Fid.VolatileFileId = fid->volatile_fid;
1111         /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT is "DHnC" */
1112         buf->Name[0] = 'D';
1113         buf->Name[1] = 'H';
1114         buf->Name[2] = 'n';
1115         buf->Name[3] = 'C';
1116         return buf;
1117 }
1118
1119 static __u8
1120 parse_lease_state(struct TCP_Server_Info *server, struct smb2_create_rsp *rsp,
1121                   unsigned int *epoch)
1122 {
1123         char *data_offset;
1124         struct create_context *cc;
1125         unsigned int next;
1126         unsigned int remaining;
1127         char *name;
1128
1129         data_offset = (char *)rsp + 4 + le32_to_cpu(rsp->CreateContextsOffset);
1130         remaining = le32_to_cpu(rsp->CreateContextsLength);
1131         cc = (struct create_context *)data_offset;
1132         while (remaining >= sizeof(struct create_context)) {
1133                 name = le16_to_cpu(cc->NameOffset) + (char *)cc;
1134                 if (le16_to_cpu(cc->NameLength) == 4 &&
1135                     strncmp(name, "RqLs", 4) == 0)
1136                         return server->ops->parse_lease_buf(cc, epoch);
1137
1138                 next = le32_to_cpu(cc->Next);
1139                 if (!next)
1140                         break;
1141                 remaining -= next;
1142                 cc = (struct create_context *)((char *)cc + next);
1143         }
1144
1145         return 0;
1146 }
1147
1148 static int
1149 add_lease_context(struct TCP_Server_Info *server, struct kvec *iov,
1150                   unsigned int *num_iovec, __u8 *oplock)
1151 {
1152         struct smb2_create_req *req = iov[0].iov_base;
1153         unsigned int num = *num_iovec;
1154
1155         iov[num].iov_base = server->ops->create_lease_buf(oplock+1, *oplock);
1156         if (iov[num].iov_base == NULL)
1157                 return -ENOMEM;
1158         iov[num].iov_len = server->vals->create_lease_size;
1159         req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_LEASE;
1160         if (!req->CreateContextsOffset)
1161                 req->CreateContextsOffset = cpu_to_le32(
1162                                 sizeof(struct smb2_create_req) - 4 +
1163                                 iov[num - 1].iov_len);
1164         le32_add_cpu(&req->CreateContextsLength,
1165                      server->vals->create_lease_size);
1166         inc_rfc1001_len(&req->hdr, server->vals->create_lease_size);
1167         *num_iovec = num + 1;
1168         return 0;
1169 }
1170
1171 static struct create_durable_v2 *
1172 create_durable_v2_buf(struct cifs_fid *pfid)
1173 {
1174         struct create_durable_v2 *buf;
1175
1176         buf = kzalloc(sizeof(struct create_durable_v2), GFP_KERNEL);
1177         if (!buf)
1178                 return NULL;
1179
1180         buf->ccontext.DataOffset = cpu_to_le16(offsetof
1181                                         (struct create_durable_v2, dcontext));
1182         buf->ccontext.DataLength = cpu_to_le32(sizeof(struct durable_context_v2));
1183         buf->ccontext.NameOffset = cpu_to_le16(offsetof
1184                                 (struct create_durable_v2, Name));
1185         buf->ccontext.NameLength = cpu_to_le16(4);
1186
1187         buf->dcontext.Timeout = 0; /* Should this be configurable by workload */
1188         buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
1189         generate_random_uuid(buf->dcontext.CreateGuid);
1190         memcpy(pfid->create_guid, buf->dcontext.CreateGuid, 16);
1191
1192         /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DH2Q" */
1193         buf->Name[0] = 'D';
1194         buf->Name[1] = 'H';
1195         buf->Name[2] = '2';
1196         buf->Name[3] = 'Q';
1197         return buf;
1198 }
1199
1200 static struct create_durable_handle_reconnect_v2 *
1201 create_reconnect_durable_v2_buf(struct cifs_fid *fid)
1202 {
1203         struct create_durable_handle_reconnect_v2 *buf;
1204
1205         buf = kzalloc(sizeof(struct create_durable_handle_reconnect_v2),
1206                         GFP_KERNEL);
1207         if (!buf)
1208                 return NULL;
1209
1210         buf->ccontext.DataOffset =
1211                 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
1212                                      dcontext));
1213         buf->ccontext.DataLength =
1214                 cpu_to_le32(sizeof(struct durable_reconnect_context_v2));
1215         buf->ccontext.NameOffset =
1216                 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
1217                             Name));
1218         buf->ccontext.NameLength = cpu_to_le16(4);
1219
1220         buf->dcontext.Fid.PersistentFileId = fid->persistent_fid;
1221         buf->dcontext.Fid.VolatileFileId = fid->volatile_fid;
1222         buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
1223         memcpy(buf->dcontext.CreateGuid, fid->create_guid, 16);
1224
1225         /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 is "DH2C" */
1226         buf->Name[0] = 'D';
1227         buf->Name[1] = 'H';
1228         buf->Name[2] = '2';
1229         buf->Name[3] = 'C';
1230         return buf;
1231 }
1232
1233 static int
1234 add_durable_v2_context(struct kvec *iov, unsigned int *num_iovec,
1235                     struct cifs_open_parms *oparms)
1236 {
1237         struct smb2_create_req *req = iov[0].iov_base;
1238         unsigned int num = *num_iovec;
1239
1240         iov[num].iov_base = create_durable_v2_buf(oparms->fid);
1241         if (iov[num].iov_base == NULL)
1242                 return -ENOMEM;
1243         iov[num].iov_len = sizeof(struct create_durable_v2);
1244         if (!req->CreateContextsOffset)
1245                 req->CreateContextsOffset =
1246                         cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1247                                                                 iov[1].iov_len);
1248         le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable_v2));
1249         inc_rfc1001_len(&req->hdr, sizeof(struct create_durable_v2));
1250         *num_iovec = num + 1;
1251         return 0;
1252 }
1253
1254 static int
1255 add_durable_reconnect_v2_context(struct kvec *iov, unsigned int *num_iovec,
1256                     struct cifs_open_parms *oparms)
1257 {
1258         struct smb2_create_req *req = iov[0].iov_base;
1259         unsigned int num = *num_iovec;
1260
1261         /* indicate that we don't need to relock the file */
1262         oparms->reconnect = false;
1263
1264         iov[num].iov_base = create_reconnect_durable_v2_buf(oparms->fid);
1265         if (iov[num].iov_base == NULL)
1266                 return -ENOMEM;
1267         iov[num].iov_len = sizeof(struct create_durable_handle_reconnect_v2);
1268         if (!req->CreateContextsOffset)
1269                 req->CreateContextsOffset =
1270                         cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1271                                                                 iov[1].iov_len);
1272         le32_add_cpu(&req->CreateContextsLength,
1273                         sizeof(struct create_durable_handle_reconnect_v2));
1274         inc_rfc1001_len(&req->hdr,
1275                         sizeof(struct create_durable_handle_reconnect_v2));
1276         *num_iovec = num + 1;
1277         return 0;
1278 }
1279
1280 static int
1281 add_durable_context(struct kvec *iov, unsigned int *num_iovec,
1282                     struct cifs_open_parms *oparms, bool use_persistent)
1283 {
1284         struct smb2_create_req *req = iov[0].iov_base;
1285         unsigned int num = *num_iovec;
1286
1287         if (use_persistent) {
1288                 if (oparms->reconnect)
1289                         return add_durable_reconnect_v2_context(iov, num_iovec,
1290                                                                 oparms);
1291                 else
1292                         return add_durable_v2_context(iov, num_iovec, oparms);
1293         }
1294
1295         if (oparms->reconnect) {
1296                 iov[num].iov_base = create_reconnect_durable_buf(oparms->fid);
1297                 /* indicate that we don't need to relock the file */
1298                 oparms->reconnect = false;
1299         } else
1300                 iov[num].iov_base = create_durable_buf();
1301         if (iov[num].iov_base == NULL)
1302                 return -ENOMEM;
1303         iov[num].iov_len = sizeof(struct create_durable);
1304         if (!req->CreateContextsOffset)
1305                 req->CreateContextsOffset =
1306                         cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1307                                                                 iov[1].iov_len);
1308         le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable));
1309         inc_rfc1001_len(&req->hdr, sizeof(struct create_durable));
1310         *num_iovec = num + 1;
1311         return 0;
1312 }
1313
1314 int
1315 SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, __le16 *path,
1316           __u8 *oplock, struct smb2_file_all_info *buf,
1317           struct smb2_err_rsp **err_buf)
1318 {
1319         struct smb2_create_req *req;
1320         struct smb2_create_rsp *rsp;
1321         struct TCP_Server_Info *server;
1322         struct cifs_tcon *tcon = oparms->tcon;
1323         struct cifs_ses *ses = tcon->ses;
1324         struct kvec iov[4];
1325         int resp_buftype;
1326         int uni_path_len;
1327         __le16 *copy_path = NULL;
1328         int copy_size;
1329         int rc = 0;
1330         unsigned int num_iovecs = 2;
1331         __u32 file_attributes = 0;
1332         char *dhc_buf = NULL, *lc_buf = NULL;
1333
1334         cifs_dbg(FYI, "create/open\n");
1335
1336         if (ses && (ses->server))
1337                 server = ses->server;
1338         else
1339                 return -EIO;
1340
1341         rc = small_smb2_init(SMB2_CREATE, tcon, (void **) &req);
1342         if (rc)
1343                 return rc;
1344
1345         if (oparms->create_options & CREATE_OPTION_READONLY)
1346                 file_attributes |= ATTR_READONLY;
1347         if (oparms->create_options & CREATE_OPTION_SPECIAL)
1348                 file_attributes |= ATTR_SYSTEM;
1349
1350         req->ImpersonationLevel = IL_IMPERSONATION;
1351         req->DesiredAccess = cpu_to_le32(oparms->desired_access);
1352         /* File attributes ignored on open (used in create though) */
1353         req->FileAttributes = cpu_to_le32(file_attributes);
1354         req->ShareAccess = FILE_SHARE_ALL_LE;
1355         req->CreateDisposition = cpu_to_le32(oparms->disposition);
1356         req->CreateOptions = cpu_to_le32(oparms->create_options & CREATE_OPTIONS_MASK);
1357         uni_path_len = (2 * UniStrnlen((wchar_t *)path, PATH_MAX)) + 2;
1358         /* do not count rfc1001 len field */
1359         req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req) - 4);
1360
1361         iov[0].iov_base = (char *)req;
1362         /* 4 for rfc1002 length field */
1363         iov[0].iov_len = get_rfc1002_length(req) + 4;
1364
1365         /* MUST set path len (NameLength) to 0 opening root of share */
1366         req->NameLength = cpu_to_le16(uni_path_len - 2);
1367         /* -1 since last byte is buf[0] which is sent below (path) */
1368         iov[0].iov_len--;
1369         if (uni_path_len % 8 != 0) {
1370                 copy_size = uni_path_len / 8 * 8;
1371                 if (copy_size < uni_path_len)
1372                         copy_size += 8;
1373
1374                 copy_path = kzalloc(copy_size, GFP_KERNEL);
1375                 if (!copy_path)
1376                         return -ENOMEM;
1377                 memcpy((char *)copy_path, (const char *)path,
1378                         uni_path_len);
1379                 uni_path_len = copy_size;
1380                 path = copy_path;
1381         }
1382
1383         iov[1].iov_len = uni_path_len;
1384         iov[1].iov_base = path;
1385         /* -1 since last byte is buf[0] which was counted in smb2_buf_len */
1386         inc_rfc1001_len(req, uni_path_len - 1);
1387
1388         if (!server->oplocks)
1389                 *oplock = SMB2_OPLOCK_LEVEL_NONE;
1390
1391         if (!(server->capabilities & SMB2_GLOBAL_CAP_LEASING) ||
1392             *oplock == SMB2_OPLOCK_LEVEL_NONE)
1393                 req->RequestedOplockLevel = *oplock;
1394         else {
1395                 rc = add_lease_context(server, iov, &num_iovecs, oplock);
1396                 if (rc) {
1397                         cifs_small_buf_release(req);
1398                         kfree(copy_path);
1399                         return rc;
1400                 }
1401                 lc_buf = iov[num_iovecs-1].iov_base;
1402         }
1403
1404         if (*oplock == SMB2_OPLOCK_LEVEL_BATCH) {
1405                 /* need to set Next field of lease context if we request it */
1406                 if (server->capabilities & SMB2_GLOBAL_CAP_LEASING) {
1407                         struct create_context *ccontext =
1408                             (struct create_context *)iov[num_iovecs-1].iov_base;
1409                         ccontext->Next =
1410                                 cpu_to_le32(server->vals->create_lease_size);
1411                 }
1412
1413                 rc = add_durable_context(iov, &num_iovecs, oparms,
1414                                         tcon->use_persistent);
1415                 if (rc) {
1416                         cifs_small_buf_release(req);
1417                         kfree(copy_path);
1418                         kfree(lc_buf);
1419                         return rc;
1420                 }
1421                 dhc_buf = iov[num_iovecs-1].iov_base;
1422         }
1423
1424         rc = SendReceive2(xid, ses, iov, num_iovecs, &resp_buftype, 0);
1425         rsp = (struct smb2_create_rsp *)iov[0].iov_base;
1426
1427         if (rc != 0) {
1428                 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
1429                 if (err_buf)
1430                         *err_buf = kmemdup(rsp, get_rfc1002_length(rsp) + 4,
1431                                            GFP_KERNEL);
1432                 goto creat_exit;
1433         }
1434
1435         oparms->fid->persistent_fid = rsp->PersistentFileId;
1436         oparms->fid->volatile_fid = rsp->VolatileFileId;
1437
1438         if (buf) {
1439                 memcpy(buf, &rsp->CreationTime, 32);
1440                 buf->AllocationSize = rsp->AllocationSize;
1441                 buf->EndOfFile = rsp->EndofFile;
1442                 buf->Attributes = rsp->FileAttributes;
1443                 buf->NumberOfLinks = cpu_to_le32(1);
1444                 buf->DeletePending = 0;
1445         }
1446
1447         if (rsp->OplockLevel == SMB2_OPLOCK_LEVEL_LEASE)
1448                 *oplock = parse_lease_state(server, rsp, &oparms->fid->epoch);
1449         else
1450                 *oplock = rsp->OplockLevel;
1451 creat_exit:
1452         kfree(copy_path);
1453         kfree(lc_buf);
1454         kfree(dhc_buf);
1455         free_rsp_buf(resp_buftype, rsp);
1456         return rc;
1457 }
1458
1459 /*
1460  *      SMB2 IOCTL is used for both IOCTLs and FSCTLs
1461  */
1462 int
1463 SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
1464            u64 volatile_fid, u32 opcode, bool is_fsctl, char *in_data,
1465            u32 indatalen, char **out_data, u32 *plen /* returned data len */)
1466 {
1467         struct smb2_ioctl_req *req;
1468         struct smb2_ioctl_rsp *rsp;
1469         struct TCP_Server_Info *server;
1470         struct cifs_ses *ses;
1471         struct kvec iov[2];
1472         int resp_buftype;
1473         int num_iovecs;
1474         int rc = 0;
1475
1476         cifs_dbg(FYI, "SMB2 IOCTL\n");
1477
1478         if (out_data != NULL)
1479                 *out_data = NULL;
1480
1481         /* zero out returned data len, in case of error */
1482         if (plen)
1483                 *plen = 0;
1484
1485         if (tcon)
1486                 ses = tcon->ses;
1487         else
1488                 return -EIO;
1489
1490         if (ses && (ses->server))
1491                 server = ses->server;
1492         else
1493                 return -EIO;
1494
1495         rc = small_smb2_init(SMB2_IOCTL, tcon, (void **) &req);
1496         if (rc)
1497                 return rc;
1498
1499         req->CtlCode = cpu_to_le32(opcode);
1500         req->PersistentFileId = persistent_fid;
1501         req->VolatileFileId = volatile_fid;
1502
1503         if (indatalen) {
1504                 req->InputCount = cpu_to_le32(indatalen);
1505                 /* do not set InputOffset if no input data */
1506                 req->InputOffset =
1507                        cpu_to_le32(offsetof(struct smb2_ioctl_req, Buffer) - 4);
1508                 iov[1].iov_base = in_data;
1509                 iov[1].iov_len = indatalen;
1510                 num_iovecs = 2;
1511         } else
1512                 num_iovecs = 1;
1513
1514         req->OutputOffset = 0;
1515         req->OutputCount = 0; /* MBZ */
1516
1517         /*
1518          * Could increase MaxOutputResponse, but that would require more
1519          * than one credit. Windows typically sets this smaller, but for some
1520          * ioctls it may be useful to allow server to send more. No point
1521          * limiting what the server can send as long as fits in one credit
1522          */
1523         req->MaxOutputResponse = cpu_to_le32(0xFF00); /* < 64K uses 1 credit */
1524
1525         if (is_fsctl)
1526                 req->Flags = cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL);
1527         else
1528                 req->Flags = 0;
1529
1530         iov[0].iov_base = (char *)req;
1531
1532         /*
1533          * If no input data, the size of ioctl struct in
1534          * protocol spec still includes a 1 byte data buffer,
1535          * but if input data passed to ioctl, we do not
1536          * want to double count this, so we do not send
1537          * the dummy one byte of data in iovec[0] if sending
1538          * input data (in iovec[1]). We also must add 4 bytes
1539          * in first iovec to allow for rfc1002 length field.
1540          */
1541
1542         if (indatalen) {
1543                 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1544                 inc_rfc1001_len(req, indatalen - 1);
1545         } else
1546                 iov[0].iov_len = get_rfc1002_length(req) + 4;
1547
1548
1549         rc = SendReceive2(xid, ses, iov, num_iovecs, &resp_buftype, 0);
1550         rsp = (struct smb2_ioctl_rsp *)iov[0].iov_base;
1551
1552         if ((rc != 0) && (rc != -EINVAL)) {
1553                 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
1554                 goto ioctl_exit;
1555         } else if (rc == -EINVAL) {
1556                 if ((opcode != FSCTL_SRV_COPYCHUNK_WRITE) &&
1557                     (opcode != FSCTL_SRV_COPYCHUNK)) {
1558                         cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
1559                         goto ioctl_exit;
1560                 }
1561         }
1562
1563         /* check if caller wants to look at return data or just return rc */
1564         if ((plen == NULL) || (out_data == NULL))
1565                 goto ioctl_exit;
1566
1567         *plen = le32_to_cpu(rsp->OutputCount);
1568
1569         /* We check for obvious errors in the output buffer length and offset */
1570         if (*plen == 0)
1571                 goto ioctl_exit; /* server returned no data */
1572         else if (*plen > 0xFF00) {
1573                 cifs_dbg(VFS, "srv returned invalid ioctl length: %d\n", *plen);
1574                 *plen = 0;
1575                 rc = -EIO;
1576                 goto ioctl_exit;
1577         }
1578
1579         if (get_rfc1002_length(rsp) < le32_to_cpu(rsp->OutputOffset) + *plen) {
1580                 cifs_dbg(VFS, "Malformed ioctl resp: len %d offset %d\n", *plen,
1581                         le32_to_cpu(rsp->OutputOffset));
1582                 *plen = 0;
1583                 rc = -EIO;
1584                 goto ioctl_exit;
1585         }
1586
1587         *out_data = kmalloc(*plen, GFP_KERNEL);
1588         if (*out_data == NULL) {
1589                 rc = -ENOMEM;
1590                 goto ioctl_exit;
1591         }
1592
1593         memcpy(*out_data, rsp->hdr.ProtocolId + le32_to_cpu(rsp->OutputOffset),
1594                *plen);
1595 ioctl_exit:
1596         free_rsp_buf(resp_buftype, rsp);
1597         return rc;
1598 }
1599
1600 /*
1601  *   Individual callers to ioctl worker function follow
1602  */
1603
1604 int
1605 SMB2_set_compression(const unsigned int xid, struct cifs_tcon *tcon,
1606                      u64 persistent_fid, u64 volatile_fid)
1607 {
1608         int rc;
1609         struct  compress_ioctl fsctl_input;
1610         char *ret_data = NULL;
1611
1612         fsctl_input.CompressionState =
1613                         cpu_to_le16(COMPRESSION_FORMAT_DEFAULT);
1614
1615         rc = SMB2_ioctl(xid, tcon, persistent_fid, volatile_fid,
1616                         FSCTL_SET_COMPRESSION, true /* is_fsctl */,
1617                         (char *)&fsctl_input /* data input */,
1618                         2 /* in data len */, &ret_data /* out data */, NULL);
1619
1620         cifs_dbg(FYI, "set compression rc %d\n", rc);
1621
1622         return rc;
1623 }
1624
1625 int
1626 SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
1627            u64 persistent_fid, u64 volatile_fid)
1628 {
1629         struct smb2_close_req *req;
1630         struct smb2_close_rsp *rsp;
1631         struct TCP_Server_Info *server;
1632         struct cifs_ses *ses = tcon->ses;
1633         struct kvec iov[1];
1634         int resp_buftype;
1635         int rc = 0;
1636
1637         cifs_dbg(FYI, "Close\n");
1638
1639         if (ses && (ses->server))
1640                 server = ses->server;
1641         else
1642                 return -EIO;
1643
1644         rc = small_smb2_init(SMB2_CLOSE, tcon, (void **) &req);
1645         if (rc)
1646                 return rc;
1647
1648         req->PersistentFileId = persistent_fid;
1649         req->VolatileFileId = volatile_fid;
1650
1651         iov[0].iov_base = (char *)req;
1652         /* 4 for rfc1002 length field */
1653         iov[0].iov_len = get_rfc1002_length(req) + 4;
1654
1655         rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
1656         rsp = (struct smb2_close_rsp *)iov[0].iov_base;
1657
1658         if (rc != 0) {
1659                 cifs_stats_fail_inc(tcon, SMB2_CLOSE_HE);
1660                 goto close_exit;
1661         }
1662
1663         /* BB FIXME - decode close response, update inode for caching */
1664
1665 close_exit:
1666         free_rsp_buf(resp_buftype, rsp);
1667         return rc;
1668 }
1669
1670 static int
1671 validate_buf(unsigned int offset, unsigned int buffer_length,
1672              struct smb2_hdr *hdr, unsigned int min_buf_size)
1673
1674 {
1675         unsigned int smb_len = be32_to_cpu(hdr->smb2_buf_length);
1676         char *end_of_smb = smb_len + 4 /* RFC1001 length field */ + (char *)hdr;
1677         char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
1678         char *end_of_buf = begin_of_buf + buffer_length;
1679
1680
1681         if (buffer_length < min_buf_size) {
1682                 cifs_dbg(VFS, "buffer length %d smaller than minimum size %d\n",
1683                          buffer_length, min_buf_size);
1684                 return -EINVAL;
1685         }
1686
1687         /* check if beyond RFC1001 maximum length */
1688         if ((smb_len > 0x7FFFFF) || (buffer_length > 0x7FFFFF)) {
1689                 cifs_dbg(VFS, "buffer length %d or smb length %d too large\n",
1690                          buffer_length, smb_len);
1691                 return -EINVAL;
1692         }
1693
1694         if ((begin_of_buf > end_of_smb) || (end_of_buf > end_of_smb)) {
1695                 cifs_dbg(VFS, "illegal server response, bad offset to data\n");
1696                 return -EINVAL;
1697         }
1698
1699         return 0;
1700 }
1701
1702 /*
1703  * If SMB buffer fields are valid, copy into temporary buffer to hold result.
1704  * Caller must free buffer.
1705  */
1706 static int
1707 validate_and_copy_buf(unsigned int offset, unsigned int buffer_length,
1708                       struct smb2_hdr *hdr, unsigned int minbufsize,
1709                       char *data)
1710
1711 {
1712         char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
1713         int rc;
1714
1715         if (!data)
1716                 return -EINVAL;
1717
1718         rc = validate_buf(offset, buffer_length, hdr, minbufsize);
1719         if (rc)
1720                 return rc;
1721
1722         memcpy(data, begin_of_buf, buffer_length);
1723
1724         return 0;
1725 }
1726
1727 static int
1728 query_info(const unsigned int xid, struct cifs_tcon *tcon,
1729            u64 persistent_fid, u64 volatile_fid, u8 info_class,
1730            size_t output_len, size_t min_len, void *data)
1731 {
1732         struct smb2_query_info_req *req;
1733         struct smb2_query_info_rsp *rsp = NULL;
1734         struct kvec iov[2];
1735         int rc = 0;
1736         int resp_buftype;
1737         struct TCP_Server_Info *server;
1738         struct cifs_ses *ses = tcon->ses;
1739
1740         cifs_dbg(FYI, "Query Info\n");
1741
1742         if (ses && (ses->server))
1743                 server = ses->server;
1744         else
1745                 return -EIO;
1746
1747         rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
1748         if (rc)
1749                 return rc;
1750
1751         req->InfoType = SMB2_O_INFO_FILE;
1752         req->FileInfoClass = info_class;
1753         req->PersistentFileId = persistent_fid;
1754         req->VolatileFileId = volatile_fid;
1755         /* 4 for rfc1002 length field and 1 for Buffer */
1756         req->InputBufferOffset =
1757                 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
1758         req->OutputBufferLength = cpu_to_le32(output_len);
1759
1760         iov[0].iov_base = (char *)req;
1761         /* 4 for rfc1002 length field */
1762         iov[0].iov_len = get_rfc1002_length(req) + 4;
1763
1764         rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
1765         rsp = (struct smb2_query_info_rsp *)iov[0].iov_base;
1766
1767         if (rc) {
1768                 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
1769                 goto qinf_exit;
1770         }
1771
1772         rc = validate_and_copy_buf(le16_to_cpu(rsp->OutputBufferOffset),
1773                                    le32_to_cpu(rsp->OutputBufferLength),
1774                                    &rsp->hdr, min_len, data);
1775
1776 qinf_exit:
1777         free_rsp_buf(resp_buftype, rsp);
1778         return rc;
1779 }
1780
1781 int
1782 SMB2_query_info(const unsigned int xid, struct cifs_tcon *tcon,
1783                 u64 persistent_fid, u64 volatile_fid,
1784                 struct smb2_file_all_info *data)
1785 {
1786         return query_info(xid, tcon, persistent_fid, volatile_fid,
1787                           FILE_ALL_INFORMATION,
1788                           sizeof(struct smb2_file_all_info) + PATH_MAX * 2,
1789                           sizeof(struct smb2_file_all_info), data);
1790 }
1791
1792 int
1793 SMB2_get_srv_num(const unsigned int xid, struct cifs_tcon *tcon,
1794                  u64 persistent_fid, u64 volatile_fid, __le64 *uniqueid)
1795 {
1796         return query_info(xid, tcon, persistent_fid, volatile_fid,
1797                           FILE_INTERNAL_INFORMATION,
1798                           sizeof(struct smb2_file_internal_info),
1799                           sizeof(struct smb2_file_internal_info), uniqueid);
1800 }
1801
1802 /*
1803  * This is a no-op for now. We're not really interested in the reply, but
1804  * rather in the fact that the server sent one and that server->lstrp
1805  * gets updated.
1806  *
1807  * FIXME: maybe we should consider checking that the reply matches request?
1808  */
1809 static void
1810 smb2_echo_callback(struct mid_q_entry *mid)
1811 {
1812         struct TCP_Server_Info *server = mid->callback_data;
1813         struct smb2_echo_rsp *smb2 = (struct smb2_echo_rsp *)mid->resp_buf;
1814         unsigned int credits_received = 1;
1815
1816         if (mid->mid_state == MID_RESPONSE_RECEIVED)
1817                 credits_received = le16_to_cpu(smb2->hdr.CreditRequest);
1818
1819         mutex_lock(&server->srv_mutex);
1820         DeleteMidQEntry(mid);
1821         mutex_unlock(&server->srv_mutex);
1822         add_credits(server, credits_received, CIFS_ECHO_OP);
1823 }
1824
1825 void smb2_reconnect_server(struct work_struct *work)
1826 {
1827         struct TCP_Server_Info *server = container_of(work,
1828                                         struct TCP_Server_Info, reconnect.work);
1829         struct cifs_ses *ses;
1830         struct cifs_tcon *tcon, *tcon2;
1831         struct list_head tmp_list;
1832         int tcon_exist = false;
1833
1834         /* Prevent simultaneous reconnects that can corrupt tcon->rlist list */
1835         mutex_lock(&server->reconnect_mutex);
1836
1837         INIT_LIST_HEAD(&tmp_list);
1838         cifs_dbg(FYI, "Need negotiate, reconnecting tcons\n");
1839
1840         spin_lock(&cifs_tcp_ses_lock);
1841         list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
1842                 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
1843                         if (tcon->need_reconnect) {
1844                                 tcon->tc_count++;
1845                                 list_add_tail(&tcon->rlist, &tmp_list);
1846                                 tcon_exist = true;
1847                         }
1848                 }
1849         }
1850         /*
1851          * Get the reference to server struct to be sure that the last call of
1852          * cifs_put_tcon() in the loop below won't release the server pointer.
1853          */
1854         if (tcon_exist)
1855                 server->srv_count++;
1856
1857         spin_unlock(&cifs_tcp_ses_lock);
1858
1859         list_for_each_entry_safe(tcon, tcon2, &tmp_list, rlist) {
1860                 smb2_reconnect(SMB2_ECHO, tcon);
1861                 list_del_init(&tcon->rlist);
1862                 cifs_put_tcon(tcon);
1863         }
1864
1865         cifs_dbg(FYI, "Reconnecting tcons finished\n");
1866         mutex_unlock(&server->reconnect_mutex);
1867
1868         /* now we can safely release srv struct */
1869         if (tcon_exist)
1870                 cifs_put_tcp_session(server, 1);
1871 }
1872
1873 int
1874 SMB2_echo(struct TCP_Server_Info *server)
1875 {
1876         struct smb2_echo_req *req;
1877         int rc = 0;
1878         struct kvec iov;
1879         struct smb_rqst rqst = { .rq_iov = &iov,
1880                                  .rq_nvec = 1 };
1881
1882         cifs_dbg(FYI, "In echo request\n");
1883
1884         if (server->tcpStatus == CifsNeedNegotiate) {
1885                 /* No need to send echo on newly established connections */
1886                 queue_delayed_work(cifsiod_wq, &server->reconnect, 0);
1887                 return rc;
1888         }
1889
1890         rc = small_smb2_init(SMB2_ECHO, NULL, (void **)&req);
1891         if (rc)
1892                 return rc;
1893
1894         req->hdr.CreditRequest = cpu_to_le16(1);
1895
1896         iov.iov_base = (char *)req;
1897         /* 4 for rfc1002 length field */
1898         iov.iov_len = get_rfc1002_length(req) + 4;
1899
1900         rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, server,
1901                              CIFS_ECHO_OP);
1902         if (rc)
1903                 cifs_dbg(FYI, "Echo request failed: %d\n", rc);
1904
1905         cifs_small_buf_release(req);
1906         return rc;
1907 }
1908
1909 int
1910 SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
1911            u64 volatile_fid)
1912 {
1913         struct smb2_flush_req *req;
1914         struct TCP_Server_Info *server;
1915         struct cifs_ses *ses = tcon->ses;
1916         struct kvec iov[1];
1917         int resp_buftype;
1918         int rc = 0;
1919
1920         cifs_dbg(FYI, "Flush\n");
1921
1922         if (ses && (ses->server))
1923                 server = ses->server;
1924         else
1925                 return -EIO;
1926
1927         rc = small_smb2_init(SMB2_FLUSH, tcon, (void **) &req);
1928         if (rc)
1929                 return rc;
1930
1931         req->PersistentFileId = persistent_fid;
1932         req->VolatileFileId = volatile_fid;
1933
1934         iov[0].iov_base = (char *)req;
1935         /* 4 for rfc1002 length field */
1936         iov[0].iov_len = get_rfc1002_length(req) + 4;
1937
1938         rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
1939
1940         if (rc != 0)
1941                 cifs_stats_fail_inc(tcon, SMB2_FLUSH_HE);
1942
1943         free_rsp_buf(resp_buftype, iov[0].iov_base);
1944         return rc;
1945 }
1946
1947 /*
1948  * To form a chain of read requests, any read requests after the first should
1949  * have the end_of_chain boolean set to true.
1950  */
1951 static int
1952 smb2_new_read_req(struct kvec *iov, struct cifs_io_parms *io_parms,
1953                   unsigned int remaining_bytes, int request_type)
1954 {
1955         int rc = -EACCES;
1956         struct smb2_read_req *req = NULL;
1957
1958         rc = small_smb2_init(SMB2_READ, io_parms->tcon, (void **) &req);
1959         if (rc)
1960                 return rc;
1961         if (io_parms->tcon->ses->server == NULL)
1962                 return -ECONNABORTED;
1963
1964         req->hdr.ProcessId = cpu_to_le32(io_parms->pid);
1965
1966         req->PersistentFileId = io_parms->persistent_fid;
1967         req->VolatileFileId = io_parms->volatile_fid;
1968         req->ReadChannelInfoOffset = 0; /* reserved */
1969         req->ReadChannelInfoLength = 0; /* reserved */
1970         req->Channel = 0; /* reserved */
1971         req->MinimumCount = 0;
1972         req->Length = cpu_to_le32(io_parms->length);
1973         req->Offset = cpu_to_le64(io_parms->offset);
1974
1975         if (request_type & CHAINED_REQUEST) {
1976                 if (!(request_type & END_OF_CHAIN)) {
1977                         /* 4 for rfc1002 length field */
1978                         req->hdr.NextCommand =
1979                                 cpu_to_le32(get_rfc1002_length(req) + 4);
1980                 } else /* END_OF_CHAIN */
1981                         req->hdr.NextCommand = 0;
1982                 if (request_type & RELATED_REQUEST) {
1983                         req->hdr.Flags |= SMB2_FLAGS_RELATED_OPERATIONS;
1984                         /*
1985                          * Related requests use info from previous read request
1986                          * in chain.
1987                          */
1988                         req->hdr.SessionId = 0xFFFFFFFF;
1989                         req->hdr.TreeId = 0xFFFFFFFF;
1990                         req->PersistentFileId = 0xFFFFFFFF;
1991                         req->VolatileFileId = 0xFFFFFFFF;
1992                 }
1993         }
1994         if (remaining_bytes > io_parms->length)
1995                 req->RemainingBytes = cpu_to_le32(remaining_bytes);
1996         else
1997                 req->RemainingBytes = 0;
1998
1999         iov[0].iov_base = (char *)req;
2000         /* 4 for rfc1002 length field */
2001         iov[0].iov_len = get_rfc1002_length(req) + 4;
2002         return rc;
2003 }
2004
2005 static void
2006 smb2_readv_callback(struct mid_q_entry *mid)
2007 {
2008         struct cifs_readdata *rdata = mid->callback_data;
2009         struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
2010         struct TCP_Server_Info *server = tcon->ses->server;
2011         struct smb2_hdr *buf = (struct smb2_hdr *)rdata->iov.iov_base;
2012         unsigned int credits_received = 1;
2013         struct smb_rqst rqst = { .rq_iov = &rdata->iov,
2014                                  .rq_nvec = 1,
2015                                  .rq_pages = rdata->pages,
2016                                  .rq_npages = rdata->nr_pages,
2017                                  .rq_pagesz = rdata->pagesz,
2018                                  .rq_tailsz = rdata->tailsz };
2019
2020         cifs_dbg(FYI, "%s: mid=%llu state=%d result=%d bytes=%u\n",
2021                  __func__, mid->mid, mid->mid_state, rdata->result,
2022                  rdata->bytes);
2023
2024         switch (mid->mid_state) {
2025         case MID_RESPONSE_RECEIVED:
2026                 credits_received = le16_to_cpu(buf->CreditRequest);
2027                 /* result already set, check signature */
2028                 if (server->sign) {
2029                         int rc;
2030
2031                         rc = smb2_verify_signature(&rqst, server);
2032                         if (rc)
2033                                 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
2034                                          rc);
2035                 }
2036                 /* FIXME: should this be counted toward the initiating task? */
2037                 task_io_account_read(rdata->got_bytes);
2038                 cifs_stats_bytes_read(tcon, rdata->got_bytes);
2039                 break;
2040         case MID_REQUEST_SUBMITTED:
2041         case MID_RETRY_NEEDED:
2042                 rdata->result = -EAGAIN;
2043                 if (server->sign && rdata->got_bytes)
2044                         /* reset bytes number since we can not check a sign */
2045                         rdata->got_bytes = 0;
2046                 /* FIXME: should this be counted toward the initiating task? */
2047                 task_io_account_read(rdata->got_bytes);
2048                 cifs_stats_bytes_read(tcon, rdata->got_bytes);
2049                 break;
2050         default:
2051                 if (rdata->result != -ENODATA)
2052                         rdata->result = -EIO;
2053         }
2054
2055         if (rdata->result)
2056                 cifs_stats_fail_inc(tcon, SMB2_READ_HE);
2057
2058         queue_work(cifsiod_wq, &rdata->work);
2059         mutex_lock(&server->srv_mutex);
2060         DeleteMidQEntry(mid);
2061         mutex_unlock(&server->srv_mutex);
2062         add_credits(server, credits_received, 0);
2063 }
2064
2065 /* smb2_async_readv - send an async write, and set up mid to handle result */
2066 int
2067 smb2_async_readv(struct cifs_readdata *rdata)
2068 {
2069         int rc, flags = 0;
2070         struct smb2_hdr *buf;
2071         struct cifs_io_parms io_parms;
2072         struct smb_rqst rqst = { .rq_iov = &rdata->iov,
2073                                  .rq_nvec = 1 };
2074         struct TCP_Server_Info *server;
2075
2076         cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n",
2077                  __func__, rdata->offset, rdata->bytes);
2078
2079         io_parms.tcon = tlink_tcon(rdata->cfile->tlink);
2080         io_parms.offset = rdata->offset;
2081         io_parms.length = rdata->bytes;
2082         io_parms.persistent_fid = rdata->cfile->fid.persistent_fid;
2083         io_parms.volatile_fid = rdata->cfile->fid.volatile_fid;
2084         io_parms.pid = rdata->pid;
2085
2086         server = io_parms.tcon->ses->server;
2087
2088         rc = smb2_new_read_req(&rdata->iov, &io_parms, 0, 0);
2089         if (rc) {
2090                 if (rc == -EAGAIN && rdata->credits) {
2091                         /* credits was reset by reconnect */
2092                         rdata->credits = 0;
2093                         /* reduce in_flight value since we won't send the req */
2094                         spin_lock(&server->req_lock);
2095                         server->in_flight--;
2096                         spin_unlock(&server->req_lock);
2097                 }
2098                 return rc;
2099         }
2100
2101         buf = (struct smb2_hdr *)rdata->iov.iov_base;
2102         /* 4 for rfc1002 length field */
2103         rdata->iov.iov_len = get_rfc1002_length(rdata->iov.iov_base) + 4;
2104
2105         if (rdata->credits) {
2106                 buf->CreditCharge = cpu_to_le16(DIV_ROUND_UP(rdata->bytes,
2107                                                 SMB2_MAX_BUFFER_SIZE));
2108                 buf->CreditRequest = buf->CreditCharge;
2109                 spin_lock(&server->req_lock);
2110                 server->credits += rdata->credits -
2111                                                 le16_to_cpu(buf->CreditCharge);
2112                 spin_unlock(&server->req_lock);
2113                 wake_up(&server->request_q);
2114                 flags = CIFS_HAS_CREDITS;
2115         }
2116
2117         kref_get(&rdata->refcount);
2118         rc = cifs_call_async(io_parms.tcon->ses->server, &rqst,
2119                              cifs_readv_receive, smb2_readv_callback,
2120                              rdata, flags);
2121         if (rc) {
2122                 kref_put(&rdata->refcount, cifs_readdata_release);
2123                 cifs_stats_fail_inc(io_parms.tcon, SMB2_READ_HE);
2124         }
2125
2126         cifs_small_buf_release(buf);
2127         return rc;
2128 }
2129
2130 int
2131 SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms,
2132           unsigned int *nbytes, char **buf, int *buf_type)
2133 {
2134         int resp_buftype, rc = -EACCES;
2135         struct smb2_read_rsp *rsp = NULL;
2136         struct kvec iov[1];
2137
2138         *nbytes = 0;
2139         rc = smb2_new_read_req(iov, io_parms, 0, 0);
2140         if (rc)
2141                 return rc;
2142
2143         rc = SendReceive2(xid, io_parms->tcon->ses, iov, 1,
2144                           &resp_buftype, CIFS_LOG_ERROR);
2145
2146         rsp = (struct smb2_read_rsp *)iov[0].iov_base;
2147
2148         if (rsp->hdr.Status == STATUS_END_OF_FILE) {
2149                 free_rsp_buf(resp_buftype, iov[0].iov_base);
2150                 return 0;
2151         }
2152
2153         if (rc) {
2154                 cifs_stats_fail_inc(io_parms->tcon, SMB2_READ_HE);
2155                 cifs_dbg(VFS, "Send error in read = %d\n", rc);
2156         } else {
2157                 *nbytes = le32_to_cpu(rsp->DataLength);
2158                 if ((*nbytes > CIFS_MAX_MSGSIZE) ||
2159                     (*nbytes > io_parms->length)) {
2160                         cifs_dbg(FYI, "bad length %d for count %d\n",
2161                                  *nbytes, io_parms->length);
2162                         rc = -EIO;
2163                         *nbytes = 0;
2164                 }
2165         }
2166
2167         if (*buf) {
2168                 memcpy(*buf, (char *)rsp->hdr.ProtocolId + rsp->DataOffset,
2169                        *nbytes);
2170                 free_rsp_buf(resp_buftype, iov[0].iov_base);
2171         } else if (resp_buftype != CIFS_NO_BUFFER) {
2172                 *buf = iov[0].iov_base;
2173                 if (resp_buftype == CIFS_SMALL_BUFFER)
2174                         *buf_type = CIFS_SMALL_BUFFER;
2175                 else if (resp_buftype == CIFS_LARGE_BUFFER)
2176                         *buf_type = CIFS_LARGE_BUFFER;
2177         }
2178         return rc;
2179 }
2180
2181 /*
2182  * Check the mid_state and signature on received buffer (if any), and queue the
2183  * workqueue completion task.
2184  */
2185 static void
2186 smb2_writev_callback(struct mid_q_entry *mid)
2187 {
2188         struct cifs_writedata *wdata = mid->callback_data;
2189         struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
2190         struct TCP_Server_Info *server = tcon->ses->server;
2191         unsigned int written;
2192         struct smb2_write_rsp *rsp = (struct smb2_write_rsp *)mid->resp_buf;
2193         unsigned int credits_received = 1;
2194
2195         switch (mid->mid_state) {
2196         case MID_RESPONSE_RECEIVED:
2197                 credits_received = le16_to_cpu(rsp->hdr.CreditRequest);
2198                 wdata->result = smb2_check_receive(mid, tcon->ses->server, 0);
2199                 if (wdata->result != 0)
2200                         break;
2201
2202                 written = le32_to_cpu(rsp->DataLength);
2203                 /*
2204                  * Mask off high 16 bits when bytes written as returned
2205                  * by the server is greater than bytes requested by the
2206                  * client. OS/2 servers are known to set incorrect
2207                  * CountHigh values.
2208                  */
2209                 if (written > wdata->bytes)
2210                         written &= 0xFFFF;
2211
2212                 if (written < wdata->bytes)
2213                         wdata->result = -ENOSPC;
2214                 else
2215                         wdata->bytes = written;
2216                 break;
2217         case MID_REQUEST_SUBMITTED:
2218         case MID_RETRY_NEEDED:
2219                 wdata->result = -EAGAIN;
2220                 break;
2221         default:
2222                 wdata->result = -EIO;
2223                 break;
2224         }
2225
2226         if (wdata->result)
2227                 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
2228
2229         queue_work(cifsiod_wq, &wdata->work);
2230         mutex_lock(&server->srv_mutex);
2231         DeleteMidQEntry(mid);
2232         mutex_unlock(&server->srv_mutex);
2233         add_credits(tcon->ses->server, credits_received, 0);
2234 }
2235
2236 /* smb2_async_writev - send an async write, and set up mid to handle result */
2237 int
2238 smb2_async_writev(struct cifs_writedata *wdata,
2239                   void (*release)(struct kref *kref))
2240 {
2241         int rc = -EACCES, flags = 0;
2242         struct smb2_write_req *req = NULL;
2243         struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
2244         struct TCP_Server_Info *server = tcon->ses->server;
2245         struct kvec iov;
2246         struct smb_rqst rqst;
2247
2248         rc = small_smb2_init(SMB2_WRITE, tcon, (void **) &req);
2249         if (rc) {
2250                 if (rc == -EAGAIN && wdata->credits) {
2251                         /* credits was reset by reconnect */
2252                         wdata->credits = 0;
2253                         /* reduce in_flight value since we won't send the req */
2254                         spin_lock(&server->req_lock);
2255                         server->in_flight--;
2256                         spin_unlock(&server->req_lock);
2257                 }
2258                 goto async_writev_out;
2259         }
2260
2261         req->hdr.ProcessId = cpu_to_le32(wdata->cfile->pid);
2262
2263         req->PersistentFileId = wdata->cfile->fid.persistent_fid;
2264         req->VolatileFileId = wdata->cfile->fid.volatile_fid;
2265         req->WriteChannelInfoOffset = 0;
2266         req->WriteChannelInfoLength = 0;
2267         req->Channel = 0;
2268         req->Offset = cpu_to_le64(wdata->offset);
2269         /* 4 for rfc1002 length field */
2270         req->DataOffset = cpu_to_le16(
2271                                 offsetof(struct smb2_write_req, Buffer) - 4);
2272         req->RemainingBytes = 0;
2273
2274         /* 4 for rfc1002 length field and 1 for Buffer */
2275         iov.iov_len = get_rfc1002_length(req) + 4 - 1;
2276         iov.iov_base = req;
2277
2278         rqst.rq_iov = &iov;
2279         rqst.rq_nvec = 1;
2280         rqst.rq_pages = wdata->pages;
2281         rqst.rq_npages = wdata->nr_pages;
2282         rqst.rq_pagesz = wdata->pagesz;
2283         rqst.rq_tailsz = wdata->tailsz;
2284
2285         cifs_dbg(FYI, "async write at %llu %u bytes\n",
2286                  wdata->offset, wdata->bytes);
2287
2288         req->Length = cpu_to_le32(wdata->bytes);
2289
2290         inc_rfc1001_len(&req->hdr, wdata->bytes - 1 /* Buffer */);
2291
2292         if (wdata->credits) {
2293                 req->hdr.CreditCharge = cpu_to_le16(DIV_ROUND_UP(wdata->bytes,
2294                                                     SMB2_MAX_BUFFER_SIZE));
2295                 req->hdr.CreditRequest = req->hdr.CreditCharge;
2296                 spin_lock(&server->req_lock);
2297                 server->credits += wdata->credits -
2298                                         le16_to_cpu(req->hdr.CreditCharge);
2299                 spin_unlock(&server->req_lock);
2300                 wake_up(&server->request_q);
2301                 flags = CIFS_HAS_CREDITS;
2302         }
2303
2304         kref_get(&wdata->refcount);
2305         rc = cifs_call_async(server, &rqst, NULL, smb2_writev_callback, wdata,
2306                              flags);
2307
2308         if (rc) {
2309                 kref_put(&wdata->refcount, release);
2310                 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
2311         }
2312
2313 async_writev_out:
2314         cifs_small_buf_release(req);
2315         return rc;
2316 }
2317
2318 /*
2319  * SMB2_write function gets iov pointer to kvec array with n_vec as a length.
2320  * The length field from io_parms must be at least 1 and indicates a number of
2321  * elements with data to write that begins with position 1 in iov array. All
2322  * data length is specified by count.
2323  */
2324 int
2325 SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms,
2326            unsigned int *nbytes, struct kvec *iov, int n_vec)
2327 {
2328         int rc = 0;
2329         struct smb2_write_req *req = NULL;
2330         struct smb2_write_rsp *rsp = NULL;
2331         int resp_buftype;
2332         *nbytes = 0;
2333
2334         if (n_vec < 1)
2335                 return rc;
2336
2337         rc = small_smb2_init(SMB2_WRITE, io_parms->tcon, (void **) &req);
2338         if (rc)
2339                 return rc;
2340
2341         if (io_parms->tcon->ses->server == NULL)
2342                 return -ECONNABORTED;
2343
2344         req->hdr.ProcessId = cpu_to_le32(io_parms->pid);
2345
2346         req->PersistentFileId = io_parms->persistent_fid;
2347         req->VolatileFileId = io_parms->volatile_fid;
2348         req->WriteChannelInfoOffset = 0;
2349         req->WriteChannelInfoLength = 0;
2350         req->Channel = 0;
2351         req->Length = cpu_to_le32(io_parms->length);
2352         req->Offset = cpu_to_le64(io_parms->offset);
2353         /* 4 for rfc1002 length field */
2354         req->DataOffset = cpu_to_le16(
2355                                 offsetof(struct smb2_write_req, Buffer) - 4);
2356         req->RemainingBytes = 0;
2357
2358         iov[0].iov_base = (char *)req;
2359         /* 4 for rfc1002 length field and 1 for Buffer */
2360         iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
2361
2362         /* length of entire message including data to be written */
2363         inc_rfc1001_len(req, io_parms->length - 1 /* Buffer */);
2364
2365         rc = SendReceive2(xid, io_parms->tcon->ses, iov, n_vec + 1,
2366                           &resp_buftype, 0);
2367         rsp = (struct smb2_write_rsp *)iov[0].iov_base;
2368
2369         if (rc) {
2370                 cifs_stats_fail_inc(io_parms->tcon, SMB2_WRITE_HE);
2371                 cifs_dbg(VFS, "Send error in write = %d\n", rc);
2372         } else
2373                 *nbytes = le32_to_cpu(rsp->DataLength);
2374
2375         free_rsp_buf(resp_buftype, rsp);
2376         return rc;
2377 }
2378
2379 static unsigned int
2380 num_entries(char *bufstart, char *end_of_buf, char **lastentry, size_t size)
2381 {
2382         int len;
2383         unsigned int entrycount = 0;
2384         unsigned int next_offset = 0;
2385         FILE_DIRECTORY_INFO *entryptr;
2386
2387         if (bufstart == NULL)
2388                 return 0;
2389
2390         entryptr = (FILE_DIRECTORY_INFO *)bufstart;
2391
2392         while (1) {
2393                 entryptr = (FILE_DIRECTORY_INFO *)
2394                                         ((char *)entryptr + next_offset);
2395
2396                 if ((char *)entryptr + size > end_of_buf) {
2397                         cifs_dbg(VFS, "malformed search entry would overflow\n");
2398                         break;
2399                 }
2400
2401                 len = le32_to_cpu(entryptr->FileNameLength);
2402                 if ((char *)entryptr + len + size > end_of_buf) {
2403                         cifs_dbg(VFS, "directory entry name would overflow frame end of buf %p\n",
2404                                  end_of_buf);
2405                         break;
2406                 }
2407
2408                 *lastentry = (char *)entryptr;
2409                 entrycount++;
2410
2411                 next_offset = le32_to_cpu(entryptr->NextEntryOffset);
2412                 if (!next_offset)
2413                         break;
2414         }
2415
2416         return entrycount;
2417 }
2418
2419 /*
2420  * Readdir/FindFirst
2421  */
2422 int
2423 SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon,
2424                      u64 persistent_fid, u64 volatile_fid, int index,
2425                      struct cifs_search_info *srch_inf)
2426 {
2427         struct smb2_query_directory_req *req;
2428         struct smb2_query_directory_rsp *rsp = NULL;
2429         struct kvec iov[2];
2430         int rc = 0;
2431         int len;
2432         int resp_buftype = CIFS_NO_BUFFER;
2433         unsigned char *bufptr;
2434         struct TCP_Server_Info *server;
2435         struct cifs_ses *ses = tcon->ses;
2436         __le16 asteriks = cpu_to_le16('*');
2437         char *end_of_smb;
2438         unsigned int output_size = CIFSMaxBufSize;
2439         size_t info_buf_size;
2440
2441         if (ses && (ses->server))
2442                 server = ses->server;
2443         else
2444                 return -EIO;
2445
2446         rc = small_smb2_init(SMB2_QUERY_DIRECTORY, tcon, (void **) &req);
2447         if (rc)
2448                 return rc;
2449
2450         switch (srch_inf->info_level) {
2451         case SMB_FIND_FILE_DIRECTORY_INFO:
2452                 req->FileInformationClass = FILE_DIRECTORY_INFORMATION;
2453                 info_buf_size = sizeof(FILE_DIRECTORY_INFO) - 1;
2454                 break;
2455         case SMB_FIND_FILE_ID_FULL_DIR_INFO:
2456                 req->FileInformationClass = FILEID_FULL_DIRECTORY_INFORMATION;
2457                 info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO) - 1;
2458                 break;
2459         default:
2460                 cifs_dbg(VFS, "info level %u isn't supported\n",
2461                          srch_inf->info_level);
2462                 rc = -EINVAL;
2463                 goto qdir_exit;
2464         }
2465
2466         req->FileIndex = cpu_to_le32(index);
2467         req->PersistentFileId = persistent_fid;
2468         req->VolatileFileId = volatile_fid;
2469
2470         len = 0x2;
2471         bufptr = req->Buffer;
2472         memcpy(bufptr, &asteriks, len);
2473
2474         req->FileNameOffset =
2475                 cpu_to_le16(sizeof(struct smb2_query_directory_req) - 1 - 4);
2476         req->FileNameLength = cpu_to_le16(len);
2477         /*
2478          * BB could be 30 bytes or so longer if we used SMB2 specific
2479          * buffer lengths, but this is safe and close enough.
2480          */
2481         output_size = min_t(unsigned int, output_size, server->maxBuf);
2482         output_size = min_t(unsigned int, output_size, 2 << 15);
2483         req->OutputBufferLength = cpu_to_le32(output_size);
2484
2485         iov[0].iov_base = (char *)req;
2486         /* 4 for RFC1001 length and 1 for Buffer */
2487         iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
2488
2489         iov[1].iov_base = (char *)(req->Buffer);
2490         iov[1].iov_len = len;
2491
2492         inc_rfc1001_len(req, len - 1 /* Buffer */);
2493
2494         rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0);
2495         rsp = (struct smb2_query_directory_rsp *)iov[0].iov_base;
2496
2497         if (rc) {
2498                 if (rc == -ENODATA && rsp->hdr.Status == STATUS_NO_MORE_FILES) {
2499                         srch_inf->endOfSearch = true;
2500                         rc = 0;
2501                 }
2502                 cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
2503                 goto qdir_exit;
2504         }
2505
2506         rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
2507                           le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
2508                           info_buf_size);
2509         if (rc)
2510                 goto qdir_exit;
2511
2512         srch_inf->unicode = true;
2513
2514         if (srch_inf->ntwrk_buf_start) {
2515                 if (srch_inf->smallBuf)
2516                         cifs_small_buf_release(srch_inf->ntwrk_buf_start);
2517                 else
2518                         cifs_buf_release(srch_inf->ntwrk_buf_start);
2519         }
2520         srch_inf->ntwrk_buf_start = (char *)rsp;
2521         srch_inf->srch_entries_start = srch_inf->last_entry = 4 /* rfclen */ +
2522                 (char *)&rsp->hdr + le16_to_cpu(rsp->OutputBufferOffset);
2523         /* 4 for rfc1002 length field */
2524         end_of_smb = get_rfc1002_length(rsp) + 4 + (char *)&rsp->hdr;
2525         srch_inf->entries_in_buffer =
2526                         num_entries(srch_inf->srch_entries_start, end_of_smb,
2527                                     &srch_inf->last_entry, info_buf_size);
2528         srch_inf->index_of_last_entry += srch_inf->entries_in_buffer;
2529         cifs_dbg(FYI, "num entries %d last_index %lld srch start %p srch end %p\n",
2530                  srch_inf->entries_in_buffer, srch_inf->index_of_last_entry,
2531                  srch_inf->srch_entries_start, srch_inf->last_entry);
2532         if (resp_buftype == CIFS_LARGE_BUFFER)
2533                 srch_inf->smallBuf = false;
2534         else if (resp_buftype == CIFS_SMALL_BUFFER)
2535                 srch_inf->smallBuf = true;
2536         else
2537                 cifs_dbg(VFS, "illegal search buffer type\n");
2538
2539         return rc;
2540
2541 qdir_exit:
2542         free_rsp_buf(resp_buftype, rsp);
2543         return rc;
2544 }
2545
2546 static int
2547 send_set_info(const unsigned int xid, struct cifs_tcon *tcon,
2548                u64 persistent_fid, u64 volatile_fid, u32 pid, int info_class,
2549                unsigned int num, void **data, unsigned int *size)
2550 {
2551         struct smb2_set_info_req *req;
2552         struct smb2_set_info_rsp *rsp = NULL;
2553         struct kvec *iov;
2554         int rc = 0;
2555         int resp_buftype;
2556         unsigned int i;
2557         struct TCP_Server_Info *server;
2558         struct cifs_ses *ses = tcon->ses;
2559
2560         if (ses && (ses->server))
2561                 server = ses->server;
2562         else
2563                 return -EIO;
2564
2565         if (!num)
2566                 return -EINVAL;
2567
2568         iov = kmalloc(sizeof(struct kvec) * num, GFP_KERNEL);
2569         if (!iov)
2570                 return -ENOMEM;
2571
2572         rc = small_smb2_init(SMB2_SET_INFO, tcon, (void **) &req);
2573         if (rc) {
2574                 kfree(iov);
2575                 return rc;
2576         }
2577
2578         req->hdr.ProcessId = cpu_to_le32(pid);
2579
2580         req->InfoType = SMB2_O_INFO_FILE;
2581         req->FileInfoClass = info_class;
2582         req->PersistentFileId = persistent_fid;
2583         req->VolatileFileId = volatile_fid;
2584
2585         /* 4 for RFC1001 length and 1 for Buffer */
2586         req->BufferOffset =
2587                         cpu_to_le16(sizeof(struct smb2_set_info_req) - 1 - 4);
2588         req->BufferLength = cpu_to_le32(*size);
2589
2590         inc_rfc1001_len(req, *size - 1 /* Buffer */);
2591
2592         memcpy(req->Buffer, *data, *size);
2593
2594         iov[0].iov_base = (char *)req;
2595         /* 4 for RFC1001 length */
2596         iov[0].iov_len = get_rfc1002_length(req) + 4;
2597
2598         for (i = 1; i < num; i++) {
2599                 inc_rfc1001_len(req, size[i]);
2600                 le32_add_cpu(&req->BufferLength, size[i]);
2601                 iov[i].iov_base = (char *)data[i];
2602                 iov[i].iov_len = size[i];
2603         }
2604
2605         rc = SendReceive2(xid, ses, iov, num, &resp_buftype, 0);
2606         rsp = (struct smb2_set_info_rsp *)iov[0].iov_base;
2607
2608         if (rc != 0)
2609                 cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE);
2610
2611         free_rsp_buf(resp_buftype, rsp);
2612         kfree(iov);
2613         return rc;
2614 }
2615
2616 int
2617 SMB2_rename(const unsigned int xid, struct cifs_tcon *tcon,
2618             u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
2619 {
2620         struct smb2_file_rename_info info;
2621         void **data;
2622         unsigned int size[2];
2623         int rc;
2624         int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
2625
2626         data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
2627         if (!data)
2628                 return -ENOMEM;
2629
2630         info.ReplaceIfExists = 1; /* 1 = replace existing target with new */
2631                               /* 0 = fail if target already exists */
2632         info.RootDirectory = 0;  /* MBZ for network ops (why does spec say?) */
2633         info.FileNameLength = cpu_to_le32(len);
2634
2635         data[0] = &info;
2636         size[0] = sizeof(struct smb2_file_rename_info);
2637
2638         data[1] = target_file;
2639         size[1] = len + 2 /* null */;
2640
2641         rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
2642                            current->tgid, FILE_RENAME_INFORMATION, 2, data,
2643                            size);
2644         kfree(data);
2645         return rc;
2646 }
2647
2648 int
2649 SMB2_rmdir(const unsigned int xid, struct cifs_tcon *tcon,
2650                   u64 persistent_fid, u64 volatile_fid)
2651 {
2652         __u8 delete_pending = 1;
2653         void *data;
2654         unsigned int size;
2655
2656         data = &delete_pending;
2657         size = 1; /* sizeof __u8 */
2658
2659         return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2660                         current->tgid, FILE_DISPOSITION_INFORMATION, 1, &data,
2661                         &size);
2662 }
2663
2664 int
2665 SMB2_set_hardlink(const unsigned int xid, struct cifs_tcon *tcon,
2666                   u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
2667 {
2668         struct smb2_file_link_info info;
2669         void **data;
2670         unsigned int size[2];
2671         int rc;
2672         int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
2673
2674         data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
2675         if (!data)
2676                 return -ENOMEM;
2677
2678         info.ReplaceIfExists = 0; /* 1 = replace existing link with new */
2679                               /* 0 = fail if link already exists */
2680         info.RootDirectory = 0;  /* MBZ for network ops (why does spec say?) */
2681         info.FileNameLength = cpu_to_le32(len);
2682
2683         data[0] = &info;
2684         size[0] = sizeof(struct smb2_file_link_info);
2685
2686         data[1] = target_file;
2687         size[1] = len + 2 /* null */;
2688
2689         rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
2690                            current->tgid, FILE_LINK_INFORMATION, 2, data, size);
2691         kfree(data);
2692         return rc;
2693 }
2694
2695 int
2696 SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
2697              u64 volatile_fid, u32 pid, __le64 *eof, bool is_falloc)
2698 {
2699         struct smb2_file_eof_info info;
2700         void *data;
2701         unsigned int size;
2702
2703         info.EndOfFile = *eof;
2704
2705         data = &info;
2706         size = sizeof(struct smb2_file_eof_info);
2707
2708         if (is_falloc)
2709                 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2710                         pid, FILE_ALLOCATION_INFORMATION, 1, &data, &size);
2711         else
2712                 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2713                         pid, FILE_END_OF_FILE_INFORMATION, 1, &data, &size);
2714 }
2715
2716 int
2717 SMB2_set_info(const unsigned int xid, struct cifs_tcon *tcon,
2718               u64 persistent_fid, u64 volatile_fid, FILE_BASIC_INFO *buf)
2719 {
2720         unsigned int size;
2721         size = sizeof(FILE_BASIC_INFO);
2722         return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2723                              current->tgid, FILE_BASIC_INFORMATION, 1,
2724                              (void **)&buf, &size);
2725 }
2726
2727 int
2728 SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon,
2729                   const u64 persistent_fid, const u64 volatile_fid,
2730                   __u8 oplock_level)
2731 {
2732         int rc;
2733         struct smb2_oplock_break *req = NULL;
2734
2735         cifs_dbg(FYI, "SMB2_oplock_break\n");
2736         rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
2737
2738         if (rc)
2739                 return rc;
2740
2741         req->VolatileFid = volatile_fid;
2742         req->PersistentFid = persistent_fid;
2743         req->OplockLevel = oplock_level;
2744         req->hdr.CreditRequest = cpu_to_le16(1);
2745
2746         rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP);
2747         /* SMB2 buffer freed by function above */
2748
2749         if (rc) {
2750                 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
2751                 cifs_dbg(FYI, "Send error in Oplock Break = %d\n", rc);
2752         }
2753
2754         return rc;
2755 }
2756
2757 static void
2758 copy_fs_info_to_kstatfs(struct smb2_fs_full_size_info *pfs_inf,
2759                         struct kstatfs *kst)
2760 {
2761         kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) *
2762                           le32_to_cpu(pfs_inf->SectorsPerAllocationUnit);
2763         kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits);
2764         kst->f_bfree  = le64_to_cpu(pfs_inf->ActualAvailableAllocationUnits);
2765         kst->f_bavail = le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits);
2766         return;
2767 }
2768
2769 static int
2770 build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon, int level,
2771                    int outbuf_len, u64 persistent_fid, u64 volatile_fid)
2772 {
2773         int rc;
2774         struct smb2_query_info_req *req;
2775
2776         cifs_dbg(FYI, "Query FSInfo level %d\n", level);
2777
2778         if ((tcon->ses == NULL) || (tcon->ses->server == NULL))
2779                 return -EIO;
2780
2781         rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
2782         if (rc)
2783                 return rc;
2784
2785         req->InfoType = SMB2_O_INFO_FILESYSTEM;
2786         req->FileInfoClass = level;
2787         req->PersistentFileId = persistent_fid;
2788         req->VolatileFileId = volatile_fid;
2789         /* 4 for rfc1002 length field and 1 for pad */
2790         req->InputBufferOffset =
2791                         cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
2792         req->OutputBufferLength = cpu_to_le32(
2793                 outbuf_len + sizeof(struct smb2_query_info_rsp) - 1 - 4);
2794
2795         iov->iov_base = (char *)req;
2796         /* 4 for rfc1002 length field */
2797         iov->iov_len = get_rfc1002_length(req) + 4;
2798         return 0;
2799 }
2800
2801 int
2802 SMB2_QFS_info(const unsigned int xid, struct cifs_tcon *tcon,
2803               u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
2804 {
2805         struct smb2_query_info_rsp *rsp = NULL;
2806         struct kvec iov;
2807         int rc = 0;
2808         int resp_buftype;
2809         struct cifs_ses *ses = tcon->ses;
2810         struct smb2_fs_full_size_info *info = NULL;
2811
2812         rc = build_qfs_info_req(&iov, tcon, FS_FULL_SIZE_INFORMATION,
2813                                 sizeof(struct smb2_fs_full_size_info),
2814                                 persistent_fid, volatile_fid);
2815         if (rc)
2816                 return rc;
2817
2818         rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, 0);
2819         if (rc) {
2820                 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
2821                 goto qfsinf_exit;
2822         }
2823         rsp = (struct smb2_query_info_rsp *)iov.iov_base;
2824
2825         info = (struct smb2_fs_full_size_info *)(4 /* RFC1001 len */ +
2826                 le16_to_cpu(rsp->OutputBufferOffset) + (char *)&rsp->hdr);
2827         rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
2828                           le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
2829                           sizeof(struct smb2_fs_full_size_info));
2830         if (!rc)
2831                 copy_fs_info_to_kstatfs(info, fsdata);
2832
2833 qfsinf_exit:
2834         free_rsp_buf(resp_buftype, iov.iov_base);
2835         return rc;
2836 }
2837
2838 int
2839 SMB2_QFS_attr(const unsigned int xid, struct cifs_tcon *tcon,
2840               u64 persistent_fid, u64 volatile_fid, int level)
2841 {
2842         struct smb2_query_info_rsp *rsp = NULL;
2843         struct kvec iov;
2844         int rc = 0;
2845         int resp_buftype, max_len, min_len;
2846         struct cifs_ses *ses = tcon->ses;
2847         unsigned int rsp_len, offset;
2848
2849         if (level == FS_DEVICE_INFORMATION) {
2850                 max_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
2851                 min_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
2852         } else if (level == FS_ATTRIBUTE_INFORMATION) {
2853                 max_len = sizeof(FILE_SYSTEM_ATTRIBUTE_INFO);
2854                 min_len = MIN_FS_ATTR_INFO_SIZE;
2855         } else if (level == FS_SECTOR_SIZE_INFORMATION) {
2856                 max_len = sizeof(struct smb3_fs_ss_info);
2857                 min_len = sizeof(struct smb3_fs_ss_info);
2858         } else {
2859                 cifs_dbg(FYI, "Invalid qfsinfo level %d\n", level);
2860                 return -EINVAL;
2861         }
2862
2863         rc = build_qfs_info_req(&iov, tcon, level, max_len,
2864                                 persistent_fid, volatile_fid);
2865         if (rc)
2866                 return rc;
2867
2868         rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, 0);
2869         if (rc) {
2870                 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
2871                 goto qfsattr_exit;
2872         }
2873         rsp = (struct smb2_query_info_rsp *)iov.iov_base;
2874
2875         rsp_len = le32_to_cpu(rsp->OutputBufferLength);
2876         offset = le16_to_cpu(rsp->OutputBufferOffset);
2877         rc = validate_buf(offset, rsp_len, &rsp->hdr, min_len);
2878         if (rc)
2879                 goto qfsattr_exit;
2880
2881         if (level == FS_ATTRIBUTE_INFORMATION)
2882                 memcpy(&tcon->fsAttrInfo, 4 /* RFC1001 len */ + offset
2883                         + (char *)&rsp->hdr, min_t(unsigned int,
2884                         rsp_len, max_len));
2885         else if (level == FS_DEVICE_INFORMATION)
2886                 memcpy(&tcon->fsDevInfo, 4 /* RFC1001 len */ + offset
2887                         + (char *)&rsp->hdr, sizeof(FILE_SYSTEM_DEVICE_INFO));
2888         else if (level == FS_SECTOR_SIZE_INFORMATION) {
2889                 struct smb3_fs_ss_info *ss_info = (struct smb3_fs_ss_info *)
2890                         (4 /* RFC1001 len */ + offset + (char *)&rsp->hdr);
2891                 tcon->ss_flags = le32_to_cpu(ss_info->Flags);
2892                 tcon->perf_sector_size =
2893                         le32_to_cpu(ss_info->PhysicalBytesPerSectorForPerf);
2894         }
2895
2896 qfsattr_exit:
2897         free_rsp_buf(resp_buftype, iov.iov_base);
2898         return rc;
2899 }
2900
2901 int
2902 smb2_lockv(const unsigned int xid, struct cifs_tcon *tcon,
2903            const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
2904            const __u32 num_lock, struct smb2_lock_element *buf)
2905 {
2906         int rc = 0;
2907         struct smb2_lock_req *req = NULL;
2908         struct kvec iov[2];
2909         int resp_buf_type;
2910         unsigned int count;
2911
2912         cifs_dbg(FYI, "smb2_lockv num lock %d\n", num_lock);
2913
2914         rc = small_smb2_init(SMB2_LOCK, tcon, (void **) &req);
2915         if (rc)
2916                 return rc;
2917
2918         req->hdr.ProcessId = cpu_to_le32(pid);
2919         req->LockCount = cpu_to_le16(num_lock);
2920
2921         req->PersistentFileId = persist_fid;
2922         req->VolatileFileId = volatile_fid;
2923
2924         count = num_lock * sizeof(struct smb2_lock_element);
2925         inc_rfc1001_len(req, count - sizeof(struct smb2_lock_element));
2926
2927         iov[0].iov_base = (char *)req;
2928         /* 4 for rfc1002 length field and count for all locks */
2929         iov[0].iov_len = get_rfc1002_length(req) + 4 - count;
2930         iov[1].iov_base = (char *)buf;
2931         iov[1].iov_len = count;
2932
2933         cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
2934         rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, CIFS_NO_RESP);
2935         if (rc) {
2936                 cifs_dbg(FYI, "Send error in smb2_lockv = %d\n", rc);
2937                 cifs_stats_fail_inc(tcon, SMB2_LOCK_HE);
2938         }
2939
2940         return rc;
2941 }
2942
2943 int
2944 SMB2_lock(const unsigned int xid, struct cifs_tcon *tcon,
2945           const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
2946           const __u64 length, const __u64 offset, const __u32 lock_flags,
2947           const bool wait)
2948 {
2949         struct smb2_lock_element lock;
2950
2951         lock.Offset = cpu_to_le64(offset);
2952         lock.Length = cpu_to_le64(length);
2953         lock.Flags = cpu_to_le32(lock_flags);
2954         if (!wait && lock_flags != SMB2_LOCKFLAG_UNLOCK)
2955                 lock.Flags |= cpu_to_le32(SMB2_LOCKFLAG_FAIL_IMMEDIATELY);
2956
2957         return smb2_lockv(xid, tcon, persist_fid, volatile_fid, pid, 1, &lock);
2958 }
2959
2960 int
2961 SMB2_lease_break(const unsigned int xid, struct cifs_tcon *tcon,
2962                  __u8 *lease_key, const __le32 lease_state)
2963 {
2964         int rc;
2965         struct smb2_lease_ack *req = NULL;
2966
2967         cifs_dbg(FYI, "SMB2_lease_break\n");
2968         rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
2969
2970         if (rc)
2971                 return rc;
2972
2973         req->hdr.CreditRequest = cpu_to_le16(1);
2974         req->StructureSize = cpu_to_le16(36);
2975         inc_rfc1001_len(req, 12);
2976
2977         memcpy(req->LeaseKey, lease_key, 16);
2978         req->LeaseState = lease_state;
2979
2980         rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP);
2981         /* SMB2 buffer freed by function above */
2982
2983         if (rc) {
2984                 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
2985                 cifs_dbg(FYI, "Send error in Lease Break = %d\n", rc);
2986         }
2987
2988         return rc;
2989 }