CIFS: Add SMB2.1 lease break support
[firefly-linux-kernel-4.4.55.git] / fs / cifs / smb2pdu.c
1 /*
2  *   fs/cifs/smb2pdu.c
3  *
4  *   Copyright (C) International Business Machines  Corp., 2009, 2011
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
50 /*
51  *  The following table defines the expected "StructureSize" of SMB2 requests
52  *  in order by SMB2 command.  This is similar to "wct" in SMB/CIFS requests.
53  *
54  *  Note that commands are defined in smb2pdu.h in le16 but the array below is
55  *  indexed by command in host byte order.
56  */
57 static const int smb2_req_struct_sizes[NUMBER_OF_SMB2_COMMANDS] = {
58         /* SMB2_NEGOTIATE */ 36,
59         /* SMB2_SESSION_SETUP */ 25,
60         /* SMB2_LOGOFF */ 4,
61         /* SMB2_TREE_CONNECT */ 9,
62         /* SMB2_TREE_DISCONNECT */ 4,
63         /* SMB2_CREATE */ 57,
64         /* SMB2_CLOSE */ 24,
65         /* SMB2_FLUSH */ 24,
66         /* SMB2_READ */ 49,
67         /* SMB2_WRITE */ 49,
68         /* SMB2_LOCK */ 48,
69         /* SMB2_IOCTL */ 57,
70         /* SMB2_CANCEL */ 4,
71         /* SMB2_ECHO */ 4,
72         /* SMB2_QUERY_DIRECTORY */ 33,
73         /* SMB2_CHANGE_NOTIFY */ 32,
74         /* SMB2_QUERY_INFO */ 41,
75         /* SMB2_SET_INFO */ 33,
76         /* SMB2_OPLOCK_BREAK */ 24 /* BB this is 36 for LEASE_BREAK variant */
77 };
78
79
80 static void
81 smb2_hdr_assemble(struct smb2_hdr *hdr, __le16 smb2_cmd /* command */ ,
82                   const struct cifs_tcon *tcon)
83 {
84         struct smb2_pdu *pdu = (struct smb2_pdu *)hdr;
85         char *temp = (char *)hdr;
86         /* lookup word count ie StructureSize from table */
87         __u16 parmsize = smb2_req_struct_sizes[le16_to_cpu(smb2_cmd)];
88
89         /*
90          * smaller than SMALL_BUFFER_SIZE but bigger than fixed area of
91          * largest operations (Create)
92          */
93         memset(temp, 0, 256);
94
95         /* Note this is only network field converted to big endian */
96         hdr->smb2_buf_length = cpu_to_be32(parmsize + sizeof(struct smb2_hdr)
97                         - 4 /*  RFC 1001 length field itself not counted */);
98
99         hdr->ProtocolId[0] = 0xFE;
100         hdr->ProtocolId[1] = 'S';
101         hdr->ProtocolId[2] = 'M';
102         hdr->ProtocolId[3] = 'B';
103         hdr->StructureSize = cpu_to_le16(64);
104         hdr->Command = smb2_cmd;
105         hdr->CreditRequest = cpu_to_le16(2); /* BB make this dynamic */
106         hdr->ProcessId = cpu_to_le32((__u16)current->tgid);
107
108         if (!tcon)
109                 goto out;
110
111         hdr->TreeId = tcon->tid;
112         /* Uid is not converted */
113         if (tcon->ses)
114                 hdr->SessionId = tcon->ses->Suid;
115         /* BB check following DFS flags BB */
116         /* BB do we have to add check for SHI1005_FLAGS_DFS_ROOT too? */
117         if (tcon->share_flags & SHI1005_FLAGS_DFS)
118                 hdr->Flags |= SMB2_FLAGS_DFS_OPERATIONS;
119         /* BB how does SMB2 do case sensitive? */
120         /* if (tcon->nocase)
121                 hdr->Flags |= SMBFLG_CASELESS; */
122         if (tcon->ses && tcon->ses->server &&
123             (tcon->ses->server->sec_mode & SECMODE_SIGN_REQUIRED))
124                 hdr->Flags |= SMB2_FLAGS_SIGNED;
125 out:
126         pdu->StructureSize2 = cpu_to_le16(parmsize);
127         return;
128 }
129
130 static int
131 smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon)
132 {
133         int rc = 0;
134         struct nls_table *nls_codepage;
135         struct cifs_ses *ses;
136         struct TCP_Server_Info *server;
137
138         /*
139          * SMB2s NegProt, SessSetup, Logoff do not have tcon yet so
140          * check for tcp and smb session status done differently
141          * for those three - in the calling routine.
142          */
143         if (tcon == NULL)
144                 return rc;
145
146         if (smb2_command == SMB2_TREE_CONNECT)
147                 return rc;
148
149         if (tcon->tidStatus == CifsExiting) {
150                 /*
151                  * only tree disconnect, open, and write,
152                  * (and ulogoff which does not have tcon)
153                  * are allowed as we start force umount.
154                  */
155                 if ((smb2_command != SMB2_WRITE) &&
156                    (smb2_command != SMB2_CREATE) &&
157                    (smb2_command != SMB2_TREE_DISCONNECT)) {
158                         cFYI(1, "can not send cmd %d while umounting",
159                                 smb2_command);
160                         return -ENODEV;
161                 }
162         }
163         if ((!tcon->ses) || (tcon->ses->status == CifsExiting) ||
164             (!tcon->ses->server))
165                 return -EIO;
166
167         ses = tcon->ses;
168         server = ses->server;
169
170         /*
171          * Give demultiplex thread up to 10 seconds to reconnect, should be
172          * greater than cifs socket timeout which is 7 seconds
173          */
174         while (server->tcpStatus == CifsNeedReconnect) {
175                 /*
176                  * Return to caller for TREE_DISCONNECT and LOGOFF and CLOSE
177                  * here since they are implicitly done when session drops.
178                  */
179                 switch (smb2_command) {
180                 /*
181                  * BB Should we keep oplock break and add flush to exceptions?
182                  */
183                 case SMB2_TREE_DISCONNECT:
184                 case SMB2_CANCEL:
185                 case SMB2_CLOSE:
186                 case SMB2_OPLOCK_BREAK:
187                         return -EAGAIN;
188                 }
189
190                 wait_event_interruptible_timeout(server->response_q,
191                         (server->tcpStatus != CifsNeedReconnect), 10 * HZ);
192
193                 /* are we still trying to reconnect? */
194                 if (server->tcpStatus != CifsNeedReconnect)
195                         break;
196
197                 /*
198                  * on "soft" mounts we wait once. Hard mounts keep
199                  * retrying until process is killed or server comes
200                  * back on-line
201                  */
202                 if (!tcon->retry) {
203                         cFYI(1, "gave up waiting on reconnect in smb_init");
204                         return -EHOSTDOWN;
205                 }
206         }
207
208         if (!tcon->ses->need_reconnect && !tcon->need_reconnect)
209                 return rc;
210
211         nls_codepage = load_nls_default();
212
213         /*
214          * need to prevent multiple threads trying to simultaneously reconnect
215          * the same SMB session
216          */
217         mutex_lock(&tcon->ses->session_mutex);
218         rc = cifs_negotiate_protocol(0, tcon->ses);
219         if (!rc && tcon->ses->need_reconnect)
220                 rc = cifs_setup_session(0, tcon->ses, nls_codepage);
221
222         if (rc || !tcon->need_reconnect) {
223                 mutex_unlock(&tcon->ses->session_mutex);
224                 goto out;
225         }
226
227         cifs_mark_open_files_invalid(tcon);
228         rc = SMB2_tcon(0, tcon->ses, tcon->treeName, tcon, nls_codepage);
229         mutex_unlock(&tcon->ses->session_mutex);
230         cFYI(1, "reconnect tcon rc = %d", rc);
231         if (rc)
232                 goto out;
233         atomic_inc(&tconInfoReconnectCount);
234         /*
235          * BB FIXME add code to check if wsize needs update due to negotiated
236          * smb buffer size shrinking.
237          */
238 out:
239         /*
240          * Check if handle based operation so we know whether we can continue
241          * or not without returning to caller to reset file handle.
242          */
243         /*
244          * BB Is flush done by server on drop of tcp session? Should we special
245          * case it and skip above?
246          */
247         switch (smb2_command) {
248         case SMB2_FLUSH:
249         case SMB2_READ:
250         case SMB2_WRITE:
251         case SMB2_LOCK:
252         case SMB2_IOCTL:
253         case SMB2_QUERY_DIRECTORY:
254         case SMB2_CHANGE_NOTIFY:
255         case SMB2_QUERY_INFO:
256         case SMB2_SET_INFO:
257                 return -EAGAIN;
258         }
259         unload_nls(nls_codepage);
260         return rc;
261 }
262
263 /*
264  * Allocate and return pointer to an SMB request hdr, and set basic
265  * SMB information in the SMB header. If the return code is zero, this
266  * function must have filled in request_buf pointer.
267  */
268 static int
269 small_smb2_init(__le16 smb2_command, struct cifs_tcon *tcon,
270                 void **request_buf)
271 {
272         int rc = 0;
273
274         rc = smb2_reconnect(smb2_command, tcon);
275         if (rc)
276                 return rc;
277
278         /* BB eventually switch this to SMB2 specific small buf size */
279         *request_buf = cifs_small_buf_get();
280         if (*request_buf == NULL) {
281                 /* BB should we add a retry in here if not a writepage? */
282                 return -ENOMEM;
283         }
284
285         smb2_hdr_assemble((struct smb2_hdr *) *request_buf, smb2_command, tcon);
286
287         if (tcon != NULL) {
288 #ifdef CONFIG_CIFS_STATS2
289                 uint16_t com_code = le16_to_cpu(smb2_command);
290                 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]);
291 #endif
292                 cifs_stats_inc(&tcon->num_smbs_sent);
293         }
294
295         return rc;
296 }
297
298 static void
299 free_rsp_buf(int resp_buftype, void *rsp)
300 {
301         if (resp_buftype == CIFS_SMALL_BUFFER)
302                 cifs_small_buf_release(rsp);
303         else if (resp_buftype == CIFS_LARGE_BUFFER)
304                 cifs_buf_release(rsp);
305 }
306
307 #define SMB2_NUM_PROT 2
308
309 #define SMB2_PROT   0
310 #define SMB21_PROT  1
311 #define BAD_PROT 0xFFFF
312
313 #define SMB2_PROT_ID  0x0202
314 #define SMB21_PROT_ID 0x0210
315 #define BAD_PROT_ID   0xFFFF
316
317 static struct {
318         int index;
319         __le16 name;
320 } smb2protocols[] = {
321         {SMB2_PROT,  cpu_to_le16(SMB2_PROT_ID)},
322         {SMB21_PROT, cpu_to_le16(SMB21_PROT_ID)},
323         {BAD_PROT,   cpu_to_le16(BAD_PROT_ID)}
324 };
325
326 /*
327  *
328  *      SMB2 Worker functions follow:
329  *
330  *      The general structure of the worker functions is:
331  *      1) Call smb2_init (assembles SMB2 header)
332  *      2) Initialize SMB2 command specific fields in fixed length area of SMB
333  *      3) Call smb_sendrcv2 (sends request on socket and waits for response)
334  *      4) Decode SMB2 command specific fields in the fixed length area
335  *      5) Decode variable length data area (if any for this SMB2 command type)
336  *      6) Call free smb buffer
337  *      7) return
338  *
339  */
340
341 int
342 SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses)
343 {
344         struct smb2_negotiate_req *req;
345         struct smb2_negotiate_rsp *rsp;
346         struct kvec iov[1];
347         int rc = 0;
348         int resp_buftype;
349         struct TCP_Server_Info *server;
350         unsigned int sec_flags;
351         u16 i;
352         u16 temp = 0;
353         int blob_offset, blob_length;
354         char *security_blob;
355         int flags = CIFS_NEG_OP;
356
357         cFYI(1, "Negotiate protocol");
358
359         if (ses->server)
360                 server = ses->server;
361         else {
362                 rc = -EIO;
363                 return rc;
364         }
365
366         rc = small_smb2_init(SMB2_NEGOTIATE, NULL, (void **) &req);
367         if (rc)
368                 return rc;
369
370         /* if any of auth flags (ie not sign or seal) are overriden use them */
371         if (ses->overrideSecFlg & (~(CIFSSEC_MUST_SIGN | CIFSSEC_MUST_SEAL)))
372                 sec_flags = ses->overrideSecFlg;  /* BB FIXME fix sign flags?*/
373         else /* if override flags set only sign/seal OR them with global auth */
374                 sec_flags = global_secflags | ses->overrideSecFlg;
375
376         cFYI(1, "sec_flags 0x%x", sec_flags);
377
378         req->hdr.SessionId = 0;
379
380         for (i = 0; i < SMB2_NUM_PROT; i++)
381                 req->Dialects[i] = smb2protocols[i].name;
382
383         req->DialectCount = cpu_to_le16(i);
384         inc_rfc1001_len(req, i * 2);
385
386         /* only one of SMB2 signing flags may be set in SMB2 request */
387         if ((sec_flags & CIFSSEC_MUST_SIGN) == CIFSSEC_MUST_SIGN)
388                 temp = SMB2_NEGOTIATE_SIGNING_REQUIRED;
389         else if (sec_flags & CIFSSEC_MAY_SIGN) /* MAY_SIGN is a single flag */
390                 temp = SMB2_NEGOTIATE_SIGNING_ENABLED;
391
392         req->SecurityMode = cpu_to_le16(temp);
393
394         req->Capabilities = cpu_to_le32(SMB2_GLOBAL_CAP_DFS);
395
396         memcpy(req->ClientGUID, cifs_client_guid, SMB2_CLIENT_GUID_SIZE);
397
398         iov[0].iov_base = (char *)req;
399         /* 4 for rfc1002 length field */
400         iov[0].iov_len = get_rfc1002_length(req) + 4;
401
402         rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags);
403
404         rsp = (struct smb2_negotiate_rsp *)iov[0].iov_base;
405         /*
406          * No tcon so can't do
407          * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
408          */
409         if (rc != 0)
410                 goto neg_exit;
411
412         if (rsp == NULL) {
413                 rc = -EIO;
414                 goto neg_exit;
415         }
416
417         cFYI(1, "mode 0x%x", rsp->SecurityMode);
418
419         if (rsp->DialectRevision == smb2protocols[SMB21_PROT].name)
420                 cFYI(1, "negotiated smb2.1 dialect");
421         else if (rsp->DialectRevision == smb2protocols[SMB2_PROT].name)
422                 cFYI(1, "negotiated smb2 dialect");
423         else {
424                 cERROR(1, "Illegal dialect returned by server %d",
425                            le16_to_cpu(rsp->DialectRevision));
426                 rc = -EIO;
427                 goto neg_exit;
428         }
429         server->dialect = le16_to_cpu(rsp->DialectRevision);
430
431         server->maxBuf = le32_to_cpu(rsp->MaxTransactSize);
432         server->max_read = le32_to_cpu(rsp->MaxReadSize);
433         server->max_write = le32_to_cpu(rsp->MaxWriteSize);
434         /* BB Do we need to validate the SecurityMode? */
435         server->sec_mode = le16_to_cpu(rsp->SecurityMode);
436         server->capabilities = le32_to_cpu(rsp->Capabilities);
437         /* Internal types */
438         server->capabilities |= SMB2_NT_FIND | SMB2_LARGE_FILES;
439
440         security_blob = smb2_get_data_area_len(&blob_offset, &blob_length,
441                                                &rsp->hdr);
442         if (blob_length == 0) {
443                 cERROR(1, "missing security blob on negprot");
444                 rc = -EIO;
445                 goto neg_exit;
446         }
447
448         cFYI(1, "sec_flags 0x%x", sec_flags);
449         if (sec_flags & CIFSSEC_MUST_SIGN) {
450                 cFYI(1, "Signing required");
451                 if (!(server->sec_mode & (SMB2_NEGOTIATE_SIGNING_REQUIRED |
452                       SMB2_NEGOTIATE_SIGNING_ENABLED))) {
453                         cERROR(1, "signing required but server lacks support");
454                         rc = -EOPNOTSUPP;
455                         goto neg_exit;
456                 }
457                 server->sec_mode |= SECMODE_SIGN_REQUIRED;
458         } else if (sec_flags & CIFSSEC_MAY_SIGN) {
459                 cFYI(1, "Signing optional");
460                 if (server->sec_mode & SMB2_NEGOTIATE_SIGNING_REQUIRED) {
461                         cFYI(1, "Server requires signing");
462                         server->sec_mode |= SECMODE_SIGN_REQUIRED;
463                 } else {
464                         server->sec_mode &=
465                                 ~(SECMODE_SIGN_ENABLED | SECMODE_SIGN_REQUIRED);
466                 }
467         } else {
468                 cFYI(1, "Signing disabled");
469                 if (server->sec_mode & SMB2_NEGOTIATE_SIGNING_REQUIRED) {
470                         cERROR(1, "Server requires packet signing to be enabled"
471                                   " in /proc/fs/cifs/SecurityFlags.");
472                         rc = -EOPNOTSUPP;
473                         goto neg_exit;
474                 }
475                 server->sec_mode &=
476                         ~(SECMODE_SIGN_ENABLED | SECMODE_SIGN_REQUIRED);
477         }
478
479 #ifdef CONFIG_SMB2_ASN1  /* BB REMOVEME when updated asn1.c ready */
480         rc = decode_neg_token_init(security_blob, blob_length,
481                                    &server->sec_type);
482         if (rc == 1)
483                 rc = 0;
484         else if (rc == 0) {
485                 rc = -EIO;
486                 goto neg_exit;
487         }
488 #endif
489
490 neg_exit:
491         free_rsp_buf(resp_buftype, rsp);
492         return rc;
493 }
494
495 int
496 SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
497                 const struct nls_table *nls_cp)
498 {
499         struct smb2_sess_setup_req *req;
500         struct smb2_sess_setup_rsp *rsp = NULL;
501         struct kvec iov[2];
502         int rc = 0;
503         int resp_buftype;
504         __le32 phase = NtLmNegotiate; /* NTLMSSP, if needed, is multistage */
505         struct TCP_Server_Info *server;
506         unsigned int sec_flags;
507         u8 temp = 0;
508         u16 blob_length = 0;
509         char *security_blob;
510         char *ntlmssp_blob = NULL;
511         bool use_spnego = false; /* else use raw ntlmssp */
512
513         cFYI(1, "Session Setup");
514
515         if (ses->server)
516                 server = ses->server;
517         else {
518                 rc = -EIO;
519                 return rc;
520         }
521
522         /*
523          * If memory allocation is successful, caller of this function
524          * frees it.
525          */
526         ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
527         if (!ses->ntlmssp)
528                 return -ENOMEM;
529
530         ses->server->secType = RawNTLMSSP;
531
532 ssetup_ntlmssp_authenticate:
533         if (phase == NtLmChallenge)
534                 phase = NtLmAuthenticate; /* if ntlmssp, now final phase */
535
536         rc = small_smb2_init(SMB2_SESSION_SETUP, NULL, (void **) &req);
537         if (rc)
538                 return rc;
539
540         /* if any of auth flags (ie not sign or seal) are overriden use them */
541         if (ses->overrideSecFlg & (~(CIFSSEC_MUST_SIGN | CIFSSEC_MUST_SEAL)))
542                 sec_flags = ses->overrideSecFlg;  /* BB FIXME fix sign flags?*/
543         else /* if override flags set only sign/seal OR them with global auth */
544                 sec_flags = global_secflags | ses->overrideSecFlg;
545
546         cFYI(1, "sec_flags 0x%x", sec_flags);
547
548         req->hdr.SessionId = 0; /* First session, not a reauthenticate */
549         req->VcNumber = 0; /* MBZ */
550         /* to enable echos and oplocks */
551         req->hdr.CreditRequest = cpu_to_le16(3);
552
553         /* only one of SMB2 signing flags may be set in SMB2 request */
554         if ((sec_flags & CIFSSEC_MUST_SIGN) == CIFSSEC_MUST_SIGN)
555                 temp = SMB2_NEGOTIATE_SIGNING_REQUIRED;
556         else if (ses->server->sec_mode & SMB2_NEGOTIATE_SIGNING_REQUIRED)
557                 temp = SMB2_NEGOTIATE_SIGNING_REQUIRED;
558         else if (sec_flags & CIFSSEC_MAY_SIGN) /* MAY_SIGN is a single flag */
559                 temp = SMB2_NEGOTIATE_SIGNING_ENABLED;
560
561         req->SecurityMode = temp;
562         req->Capabilities = 0;
563         req->Channel = 0; /* MBZ */
564
565         iov[0].iov_base = (char *)req;
566         /* 4 for rfc1002 length field and 1 for pad */
567         iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
568         if (phase == NtLmNegotiate) {
569                 ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE),
570                                        GFP_KERNEL);
571                 if (ntlmssp_blob == NULL) {
572                         rc = -ENOMEM;
573                         goto ssetup_exit;
574                 }
575                 build_ntlmssp_negotiate_blob(ntlmssp_blob, ses);
576                 if (use_spnego) {
577                         /* blob_length = build_spnego_ntlmssp_blob(
578                                         &security_blob,
579                                         sizeof(struct _NEGOTIATE_MESSAGE),
580                                         ntlmssp_blob); */
581                         /* BB eventually need to add this */
582                         cERROR(1, "spnego not supported for SMB2 yet");
583                         rc = -EOPNOTSUPP;
584                         kfree(ntlmssp_blob);
585                         goto ssetup_exit;
586                 } else {
587                         blob_length = sizeof(struct _NEGOTIATE_MESSAGE);
588                         /* with raw NTLMSSP we don't encapsulate in SPNEGO */
589                         security_blob = ntlmssp_blob;
590                 }
591         } else if (phase == NtLmAuthenticate) {
592                 req->hdr.SessionId = ses->Suid;
593                 ntlmssp_blob = kzalloc(sizeof(struct _NEGOTIATE_MESSAGE) + 500,
594                                        GFP_KERNEL);
595                 if (ntlmssp_blob == NULL) {
596                         cERROR(1, "failed to malloc ntlmssp blob");
597                         rc = -ENOMEM;
598                         goto ssetup_exit;
599                 }
600                 rc = build_ntlmssp_auth_blob(ntlmssp_blob, &blob_length, ses,
601                                              nls_cp);
602                 if (rc) {
603                         cFYI(1, "build_ntlmssp_auth_blob failed %d", rc);
604                         goto ssetup_exit; /* BB double check error handling */
605                 }
606                 if (use_spnego) {
607                         /* blob_length = build_spnego_ntlmssp_blob(
608                                                         &security_blob,
609                                                         blob_length,
610                                                         ntlmssp_blob); */
611                         cERROR(1, "spnego not supported for SMB2 yet");
612                         rc = -EOPNOTSUPP;
613                         kfree(ntlmssp_blob);
614                         goto ssetup_exit;
615                 } else {
616                         security_blob = ntlmssp_blob;
617                 }
618         } else {
619                 cERROR(1, "illegal ntlmssp phase");
620                 rc = -EIO;
621                 goto ssetup_exit;
622         }
623
624         /* Testing shows that buffer offset must be at location of Buffer[0] */
625         req->SecurityBufferOffset =
626                                 cpu_to_le16(sizeof(struct smb2_sess_setup_req) -
627                                             1 /* pad */ - 4 /* rfc1001 len */);
628         req->SecurityBufferLength = cpu_to_le16(blob_length);
629         iov[1].iov_base = security_blob;
630         iov[1].iov_len = blob_length;
631
632         inc_rfc1001_len(req, blob_length - 1 /* pad */);
633
634         /* BB add code to build os and lm fields */
635
636         rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, CIFS_LOG_ERROR);
637
638         kfree(security_blob);
639         rsp = (struct smb2_sess_setup_rsp *)iov[0].iov_base;
640         if (rsp->hdr.Status == STATUS_MORE_PROCESSING_REQUIRED) {
641                 if (phase != NtLmNegotiate) {
642                         cERROR(1, "Unexpected more processing error");
643                         goto ssetup_exit;
644                 }
645                 if (offsetof(struct smb2_sess_setup_rsp, Buffer) - 4 !=
646                         le16_to_cpu(rsp->SecurityBufferOffset)) {
647                         cERROR(1, "Invalid security buffer offset %d",
648                                   le16_to_cpu(rsp->SecurityBufferOffset));
649                         rc = -EIO;
650                         goto ssetup_exit;
651                 }
652
653                 /* NTLMSSP Negotiate sent now processing challenge (response) */
654                 phase = NtLmChallenge; /* process ntlmssp challenge */
655                 rc = 0; /* MORE_PROCESSING is not an error here but expected */
656                 ses->Suid = rsp->hdr.SessionId;
657                 rc = decode_ntlmssp_challenge(rsp->Buffer,
658                                 le16_to_cpu(rsp->SecurityBufferLength), ses);
659         }
660
661         /*
662          * BB eventually add code for SPNEGO decoding of NtlmChallenge blob,
663          * but at least the raw NTLMSSP case works.
664          */
665         /*
666          * No tcon so can't do
667          * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
668          */
669         if (rc != 0)
670                 goto ssetup_exit;
671
672         if (rsp == NULL) {
673                 rc = -EIO;
674                 goto ssetup_exit;
675         }
676
677         ses->session_flags = le16_to_cpu(rsp->SessionFlags);
678 ssetup_exit:
679         free_rsp_buf(resp_buftype, rsp);
680
681         /* if ntlmssp, and negotiate succeeded, proceed to authenticate phase */
682         if ((phase == NtLmChallenge) && (rc == 0))
683                 goto ssetup_ntlmssp_authenticate;
684         return rc;
685 }
686
687 int
688 SMB2_logoff(const unsigned int xid, struct cifs_ses *ses)
689 {
690         struct smb2_logoff_req *req; /* response is also trivial struct */
691         int rc = 0;
692         struct TCP_Server_Info *server;
693
694         cFYI(1, "disconnect session %p", ses);
695
696         if (ses && (ses->server))
697                 server = ses->server;
698         else
699                 return -EIO;
700
701         rc = small_smb2_init(SMB2_LOGOFF, NULL, (void **) &req);
702         if (rc)
703                 return rc;
704
705          /* since no tcon, smb2_init can not do this, so do here */
706         req->hdr.SessionId = ses->Suid;
707         if (server->sec_mode & SECMODE_SIGN_REQUIRED)
708                 req->hdr.Flags |= SMB2_FLAGS_SIGNED;
709
710         rc = SendReceiveNoRsp(xid, ses, (char *) &req->hdr, 0);
711         /*
712          * No tcon so can't do
713          * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
714          */
715         return rc;
716 }
717
718 static inline void cifs_stats_fail_inc(struct cifs_tcon *tcon, uint16_t code)
719 {
720         cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_failed[code]);
721 }
722
723 #define MAX_SHARENAME_LENGTH (255 /* server */ + 80 /* share */ + 1 /* NULL */)
724
725 int
726 SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
727           struct cifs_tcon *tcon, const struct nls_table *cp)
728 {
729         struct smb2_tree_connect_req *req;
730         struct smb2_tree_connect_rsp *rsp = NULL;
731         struct kvec iov[2];
732         int rc = 0;
733         int resp_buftype;
734         int unc_path_len;
735         struct TCP_Server_Info *server;
736         __le16 *unc_path = NULL;
737
738         cFYI(1, "TCON");
739
740         if ((ses->server) && tree)
741                 server = ses->server;
742         else
743                 return -EIO;
744
745         if (tcon && tcon->bad_network_name)
746                 return -ENOENT;
747
748         unc_path = kmalloc(MAX_SHARENAME_LENGTH * 2, GFP_KERNEL);
749         if (unc_path == NULL)
750                 return -ENOMEM;
751
752         unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp) + 1;
753         unc_path_len *= 2;
754         if (unc_path_len < 2) {
755                 kfree(unc_path);
756                 return -EINVAL;
757         }
758
759         rc = small_smb2_init(SMB2_TREE_CONNECT, tcon, (void **) &req);
760         if (rc) {
761                 kfree(unc_path);
762                 return rc;
763         }
764
765         if (tcon == NULL) {
766                 /* since no tcon, smb2_init can not do this, so do here */
767                 req->hdr.SessionId = ses->Suid;
768                 /* if (ses->server->sec_mode & SECMODE_SIGN_REQUIRED)
769                         req->hdr.Flags |= SMB2_FLAGS_SIGNED; */
770         }
771
772         iov[0].iov_base = (char *)req;
773         /* 4 for rfc1002 length field and 1 for pad */
774         iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
775
776         /* Testing shows that buffer offset must be at location of Buffer[0] */
777         req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)
778                         - 1 /* pad */ - 4 /* do not count rfc1001 len field */);
779         req->PathLength = cpu_to_le16(unc_path_len - 2);
780         iov[1].iov_base = unc_path;
781         iov[1].iov_len = unc_path_len;
782
783         inc_rfc1001_len(req, unc_path_len - 1 /* pad */);
784
785         rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0);
786         rsp = (struct smb2_tree_connect_rsp *)iov[0].iov_base;
787
788         if (rc != 0) {
789                 if (tcon) {
790                         cifs_stats_fail_inc(tcon, SMB2_TREE_CONNECT_HE);
791                         tcon->need_reconnect = true;
792                 }
793                 goto tcon_error_exit;
794         }
795
796         if (rsp == NULL) {
797                 rc = -EIO;
798                 goto tcon_exit;
799         }
800
801         if (tcon == NULL) {
802                 ses->ipc_tid = rsp->hdr.TreeId;
803                 goto tcon_exit;
804         }
805
806         if (rsp->ShareType & SMB2_SHARE_TYPE_DISK)
807                 cFYI(1, "connection to disk share");
808         else if (rsp->ShareType & SMB2_SHARE_TYPE_PIPE) {
809                 tcon->ipc = true;
810                 cFYI(1, "connection to pipe share");
811         } else if (rsp->ShareType & SMB2_SHARE_TYPE_PRINT) {
812                 tcon->print = true;
813                 cFYI(1, "connection to printer");
814         } else {
815                 cERROR(1, "unknown share type %d", rsp->ShareType);
816                 rc = -EOPNOTSUPP;
817                 goto tcon_error_exit;
818         }
819
820         tcon->share_flags = le32_to_cpu(rsp->ShareFlags);
821         tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess);
822         tcon->tidStatus = CifsGood;
823         tcon->need_reconnect = false;
824         tcon->tid = rsp->hdr.TreeId;
825         strncpy(tcon->treeName, tree, MAX_TREE_SIZE);
826
827         if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) &&
828             ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0))
829                 cERROR(1, "DFS capability contradicts DFS flag");
830
831 tcon_exit:
832         free_rsp_buf(resp_buftype, rsp);
833         kfree(unc_path);
834         return rc;
835
836 tcon_error_exit:
837         if (rsp->hdr.Status == STATUS_BAD_NETWORK_NAME) {
838                 cERROR(1, "BAD_NETWORK_NAME: %s", tree);
839                 tcon->bad_network_name = true;
840         }
841         goto tcon_exit;
842 }
843
844 int
845 SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
846 {
847         struct smb2_tree_disconnect_req *req; /* response is trivial */
848         int rc = 0;
849         struct TCP_Server_Info *server;
850         struct cifs_ses *ses = tcon->ses;
851
852         cFYI(1, "Tree Disconnect");
853
854         if (ses && (ses->server))
855                 server = ses->server;
856         else
857                 return -EIO;
858
859         if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
860                 return 0;
861
862         rc = small_smb2_init(SMB2_TREE_DISCONNECT, tcon, (void **) &req);
863         if (rc)
864                 return rc;
865
866         rc = SendReceiveNoRsp(xid, ses, (char *)&req->hdr, 0);
867         if (rc)
868                 cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE);
869
870         return rc;
871 }
872
873 static struct create_lease *
874 create_lease_buf(u8 *lease_key, u8 oplock)
875 {
876         struct create_lease *buf;
877
878         buf = kmalloc(sizeof(struct create_lease), GFP_KERNEL);
879         if (!buf)
880                 return NULL;
881
882         memset(buf, 0, sizeof(struct create_lease));
883
884         buf->lcontext.LeaseKeyLow = cpu_to_le64(*((u64 *)lease_key));
885         buf->lcontext.LeaseKeyHigh = cpu_to_le64(*((u64 *)(lease_key + 8)));
886         if (oplock == SMB2_OPLOCK_LEVEL_EXCLUSIVE)
887                 buf->lcontext.LeaseState = SMB2_LEASE_WRITE_CACHING |
888                                            SMB2_LEASE_READ_CACHING;
889         else if (oplock == SMB2_OPLOCK_LEVEL_II)
890                 buf->lcontext.LeaseState = SMB2_LEASE_READ_CACHING;
891         else if (oplock == SMB2_OPLOCK_LEVEL_BATCH)
892                 buf->lcontext.LeaseState = SMB2_LEASE_HANDLE_CACHING |
893                                            SMB2_LEASE_READ_CACHING |
894                                            SMB2_LEASE_WRITE_CACHING;
895
896         buf->ccontext.DataOffset = cpu_to_le16(offsetof
897                                         (struct create_lease, lcontext));
898         buf->ccontext.DataLength = cpu_to_le32(sizeof(struct lease_context));
899         buf->ccontext.NameOffset = cpu_to_le16(offsetof
900                                 (struct create_lease, Name));
901         buf->ccontext.NameLength = cpu_to_le16(4);
902         buf->Name[0] = 'R';
903         buf->Name[1] = 'q';
904         buf->Name[2] = 'L';
905         buf->Name[3] = 's';
906         return buf;
907 }
908
909 static __u8
910 parse_lease_state(struct smb2_create_rsp *rsp)
911 {
912         char *data_offset;
913         struct create_lease *lc;
914         bool found = false;
915
916         data_offset = (char *)rsp;
917         data_offset += 4 + le32_to_cpu(rsp->CreateContextsOffset);
918         lc = (struct create_lease *)data_offset;
919         do {
920                 char *name = le16_to_cpu(lc->ccontext.NameOffset) + (char *)lc;
921                 if (le16_to_cpu(lc->ccontext.NameLength) != 4 ||
922                     strncmp(name, "RqLs", 4)) {
923                         lc = (struct create_lease *)((char *)lc
924                                         + le32_to_cpu(lc->ccontext.Next));
925                         continue;
926                 }
927                 if (lc->lcontext.LeaseFlags & SMB2_LEASE_FLAG_BREAK_IN_PROGRESS)
928                         return SMB2_OPLOCK_LEVEL_NOCHANGE;
929                 found = true;
930                 break;
931         } while (le32_to_cpu(lc->ccontext.Next) != 0);
932
933         if (!found)
934                 return 0;
935
936         return smb2_map_lease_to_oplock(lc->lcontext.LeaseState);
937 }
938
939 int
940 SMB2_open(const unsigned int xid, struct cifs_tcon *tcon, __le16 *path,
941           u64 *persistent_fid, u64 *volatile_fid, __u32 desired_access,
942           __u32 create_disposition, __u32 file_attributes, __u32 create_options,
943           __u8 *oplock, struct smb2_file_all_info *buf)
944 {
945         struct smb2_create_req *req;
946         struct smb2_create_rsp *rsp;
947         struct TCP_Server_Info *server;
948         struct cifs_ses *ses = tcon->ses;
949         struct kvec iov[3];
950         int resp_buftype;
951         int uni_path_len;
952         __le16 *copy_path = NULL;
953         int copy_size;
954         int rc = 0;
955         int num_iovecs = 2;
956
957         cFYI(1, "create/open");
958
959         if (ses && (ses->server))
960                 server = ses->server;
961         else
962                 return -EIO;
963
964         rc = small_smb2_init(SMB2_CREATE, tcon, (void **) &req);
965         if (rc)
966                 return rc;
967
968         req->ImpersonationLevel = IL_IMPERSONATION;
969         req->DesiredAccess = cpu_to_le32(desired_access);
970         /* File attributes ignored on open (used in create though) */
971         req->FileAttributes = cpu_to_le32(file_attributes);
972         req->ShareAccess = FILE_SHARE_ALL_LE;
973         req->CreateDisposition = cpu_to_le32(create_disposition);
974         req->CreateOptions = cpu_to_le32(create_options);
975         uni_path_len = (2 * UniStrnlen((wchar_t *)path, PATH_MAX)) + 2;
976         req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req)
977                         - 8 /* pad */ - 4 /* do not count rfc1001 len field */);
978
979         iov[0].iov_base = (char *)req;
980         /* 4 for rfc1002 length field */
981         iov[0].iov_len = get_rfc1002_length(req) + 4;
982
983         /* MUST set path len (NameLength) to 0 opening root of share */
984         if (uni_path_len >= 4) {
985                 req->NameLength = cpu_to_le16(uni_path_len - 2);
986                 /* -1 since last byte is buf[0] which is sent below (path) */
987                 iov[0].iov_len--;
988                 if (uni_path_len % 8 != 0) {
989                         copy_size = uni_path_len / 8 * 8;
990                         if (copy_size < uni_path_len)
991                                 copy_size += 8;
992
993                         copy_path = kzalloc(copy_size, GFP_KERNEL);
994                         if (!copy_path)
995                                 return -ENOMEM;
996                         memcpy((char *)copy_path, (const char *)path,
997                                 uni_path_len);
998                         uni_path_len = copy_size;
999                         path = copy_path;
1000                 }
1001
1002                 iov[1].iov_len = uni_path_len;
1003                 iov[1].iov_base = path;
1004                 /*
1005                  * -1 since last byte is buf[0] which was counted in
1006                  * smb2_buf_len.
1007                  */
1008                 inc_rfc1001_len(req, uni_path_len - 1);
1009         } else {
1010                 iov[0].iov_len += 7;
1011                 req->hdr.smb2_buf_length = cpu_to_be32(be32_to_cpu(
1012                                 req->hdr.smb2_buf_length) + 8 - 1);
1013                 num_iovecs = 1;
1014                 req->NameLength = 0;
1015         }
1016
1017         if (!server->oplocks)
1018                 *oplock = SMB2_OPLOCK_LEVEL_NONE;
1019
1020         if (!(tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LEASING) ||
1021             *oplock == SMB2_OPLOCK_LEVEL_NONE)
1022                 req->RequestedOplockLevel = *oplock;
1023         else {
1024                 iov[num_iovecs].iov_base = create_lease_buf(oplock+1, *oplock);
1025                 if (iov[num_iovecs].iov_base == NULL) {
1026                         cifs_small_buf_release(req);
1027                         kfree(copy_path);
1028                         return -ENOMEM;
1029                 }
1030                 iov[num_iovecs].iov_len = sizeof(struct create_lease);
1031                 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_LEASE;
1032                 req->CreateContextsOffset = cpu_to_le32(
1033                         sizeof(struct smb2_create_req) - 4 - 8 +
1034                         iov[num_iovecs-1].iov_len);
1035                 req->CreateContextsLength = cpu_to_le32(
1036                         sizeof(struct create_lease));
1037                 inc_rfc1001_len(&req->hdr, sizeof(struct create_lease));
1038                 num_iovecs++;
1039         }
1040
1041         rc = SendReceive2(xid, ses, iov, num_iovecs, &resp_buftype, 0);
1042         rsp = (struct smb2_create_rsp *)iov[0].iov_base;
1043
1044         if (rc != 0) {
1045                 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
1046                 goto creat_exit;
1047         }
1048
1049         if (rsp == NULL) {
1050                 rc = -EIO;
1051                 goto creat_exit;
1052         }
1053         *persistent_fid = rsp->PersistentFileId;
1054         *volatile_fid = rsp->VolatileFileId;
1055
1056         if (buf) {
1057                 memcpy(buf, &rsp->CreationTime, 32);
1058                 buf->AllocationSize = rsp->AllocationSize;
1059                 buf->EndOfFile = rsp->EndofFile;
1060                 buf->Attributes = rsp->FileAttributes;
1061                 buf->NumberOfLinks = cpu_to_le32(1);
1062                 buf->DeletePending = 0;
1063         }
1064
1065         if (rsp->OplockLevel == SMB2_OPLOCK_LEVEL_LEASE)
1066                 *oplock = parse_lease_state(rsp);
1067         else
1068                 *oplock = rsp->OplockLevel;
1069 creat_exit:
1070         kfree(copy_path);
1071         free_rsp_buf(resp_buftype, rsp);
1072         return rc;
1073 }
1074
1075 int
1076 SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
1077            u64 persistent_fid, u64 volatile_fid)
1078 {
1079         struct smb2_close_req *req;
1080         struct smb2_close_rsp *rsp;
1081         struct TCP_Server_Info *server;
1082         struct cifs_ses *ses = tcon->ses;
1083         struct kvec iov[1];
1084         int resp_buftype;
1085         int rc = 0;
1086
1087         cFYI(1, "Close");
1088
1089         if (ses && (ses->server))
1090                 server = ses->server;
1091         else
1092                 return -EIO;
1093
1094         rc = small_smb2_init(SMB2_CLOSE, tcon, (void **) &req);
1095         if (rc)
1096                 return rc;
1097
1098         req->PersistentFileId = persistent_fid;
1099         req->VolatileFileId = volatile_fid;
1100
1101         iov[0].iov_base = (char *)req;
1102         /* 4 for rfc1002 length field */
1103         iov[0].iov_len = get_rfc1002_length(req) + 4;
1104
1105         rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
1106         rsp = (struct smb2_close_rsp *)iov[0].iov_base;
1107
1108         if (rc != 0) {
1109                 if (tcon)
1110                         cifs_stats_fail_inc(tcon, SMB2_CLOSE_HE);
1111                 goto close_exit;
1112         }
1113
1114         if (rsp == NULL) {
1115                 rc = -EIO;
1116                 goto close_exit;
1117         }
1118
1119         /* BB FIXME - decode close response, update inode for caching */
1120
1121 close_exit:
1122         free_rsp_buf(resp_buftype, rsp);
1123         return rc;
1124 }
1125
1126 static int
1127 validate_buf(unsigned int offset, unsigned int buffer_length,
1128              struct smb2_hdr *hdr, unsigned int min_buf_size)
1129
1130 {
1131         unsigned int smb_len = be32_to_cpu(hdr->smb2_buf_length);
1132         char *end_of_smb = smb_len + 4 /* RFC1001 length field */ + (char *)hdr;
1133         char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
1134         char *end_of_buf = begin_of_buf + buffer_length;
1135
1136
1137         if (buffer_length < min_buf_size) {
1138                 cERROR(1, "buffer length %d smaller than minimum size %d",
1139                            buffer_length, min_buf_size);
1140                 return -EINVAL;
1141         }
1142
1143         /* check if beyond RFC1001 maximum length */
1144         if ((smb_len > 0x7FFFFF) || (buffer_length > 0x7FFFFF)) {
1145                 cERROR(1, "buffer length %d or smb length %d too large",
1146                            buffer_length, smb_len);
1147                 return -EINVAL;
1148         }
1149
1150         if ((begin_of_buf > end_of_smb) || (end_of_buf > end_of_smb)) {
1151                 cERROR(1, "illegal server response, bad offset to data");
1152                 return -EINVAL;
1153         }
1154
1155         return 0;
1156 }
1157
1158 /*
1159  * If SMB buffer fields are valid, copy into temporary buffer to hold result.
1160  * Caller must free buffer.
1161  */
1162 static int
1163 validate_and_copy_buf(unsigned int offset, unsigned int buffer_length,
1164                       struct smb2_hdr *hdr, unsigned int minbufsize,
1165                       char *data)
1166
1167 {
1168         char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
1169         int rc;
1170
1171         if (!data)
1172                 return -EINVAL;
1173
1174         rc = validate_buf(offset, buffer_length, hdr, minbufsize);
1175         if (rc)
1176                 return rc;
1177
1178         memcpy(data, begin_of_buf, buffer_length);
1179
1180         return 0;
1181 }
1182
1183 static int
1184 query_info(const unsigned int xid, struct cifs_tcon *tcon,
1185            u64 persistent_fid, u64 volatile_fid, u8 info_class,
1186            size_t output_len, size_t min_len, void *data)
1187 {
1188         struct smb2_query_info_req *req;
1189         struct smb2_query_info_rsp *rsp = NULL;
1190         struct kvec iov[2];
1191         int rc = 0;
1192         int resp_buftype;
1193         struct TCP_Server_Info *server;
1194         struct cifs_ses *ses = tcon->ses;
1195
1196         cFYI(1, "Query Info");
1197
1198         if (ses && (ses->server))
1199                 server = ses->server;
1200         else
1201                 return -EIO;
1202
1203         rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
1204         if (rc)
1205                 return rc;
1206
1207         req->InfoType = SMB2_O_INFO_FILE;
1208         req->FileInfoClass = info_class;
1209         req->PersistentFileId = persistent_fid;
1210         req->VolatileFileId = volatile_fid;
1211         /* 4 for rfc1002 length field and 1 for Buffer */
1212         req->InputBufferOffset =
1213                 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
1214         req->OutputBufferLength = cpu_to_le32(output_len);
1215
1216         iov[0].iov_base = (char *)req;
1217         /* 4 for rfc1002 length field */
1218         iov[0].iov_len = get_rfc1002_length(req) + 4;
1219
1220         rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
1221         if (rc) {
1222                 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
1223                 goto qinf_exit;
1224         }
1225
1226         rsp = (struct smb2_query_info_rsp *)iov[0].iov_base;
1227
1228         rc = validate_and_copy_buf(le16_to_cpu(rsp->OutputBufferOffset),
1229                                    le32_to_cpu(rsp->OutputBufferLength),
1230                                    &rsp->hdr, min_len, data);
1231
1232 qinf_exit:
1233         free_rsp_buf(resp_buftype, rsp);
1234         return rc;
1235 }
1236
1237 int
1238 SMB2_query_info(const unsigned int xid, struct cifs_tcon *tcon,
1239                 u64 persistent_fid, u64 volatile_fid,
1240                 struct smb2_file_all_info *data)
1241 {
1242         return query_info(xid, tcon, persistent_fid, volatile_fid,
1243                           FILE_ALL_INFORMATION,
1244                           sizeof(struct smb2_file_all_info) + MAX_NAME * 2,
1245                           sizeof(struct smb2_file_all_info), data);
1246 }
1247
1248 int
1249 SMB2_get_srv_num(const unsigned int xid, struct cifs_tcon *tcon,
1250                  u64 persistent_fid, u64 volatile_fid, __le64 *uniqueid)
1251 {
1252         return query_info(xid, tcon, persistent_fid, volatile_fid,
1253                           FILE_INTERNAL_INFORMATION,
1254                           sizeof(struct smb2_file_internal_info),
1255                           sizeof(struct smb2_file_internal_info), uniqueid);
1256 }
1257
1258 /*
1259  * This is a no-op for now. We're not really interested in the reply, but
1260  * rather in the fact that the server sent one and that server->lstrp
1261  * gets updated.
1262  *
1263  * FIXME: maybe we should consider checking that the reply matches request?
1264  */
1265 static void
1266 smb2_echo_callback(struct mid_q_entry *mid)
1267 {
1268         struct TCP_Server_Info *server = mid->callback_data;
1269         struct smb2_echo_rsp *smb2 = (struct smb2_echo_rsp *)mid->resp_buf;
1270         unsigned int credits_received = 1;
1271
1272         if (mid->mid_state == MID_RESPONSE_RECEIVED)
1273                 credits_received = le16_to_cpu(smb2->hdr.CreditRequest);
1274
1275         DeleteMidQEntry(mid);
1276         add_credits(server, credits_received, CIFS_ECHO_OP);
1277 }
1278
1279 int
1280 SMB2_echo(struct TCP_Server_Info *server)
1281 {
1282         struct smb2_echo_req *req;
1283         int rc = 0;
1284         struct kvec iov;
1285         struct smb_rqst rqst = { .rq_iov = &iov,
1286                                  .rq_nvec = 1 };
1287
1288         cFYI(1, "In echo request");
1289
1290         rc = small_smb2_init(SMB2_ECHO, NULL, (void **)&req);
1291         if (rc)
1292                 return rc;
1293
1294         req->hdr.CreditRequest = cpu_to_le16(1);
1295
1296         iov.iov_base = (char *)req;
1297         /* 4 for rfc1002 length field */
1298         iov.iov_len = get_rfc1002_length(req) + 4;
1299
1300         rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, server,
1301                              CIFS_ECHO_OP);
1302         if (rc)
1303                 cFYI(1, "Echo request failed: %d", rc);
1304
1305         cifs_small_buf_release(req);
1306         return rc;
1307 }
1308
1309 int
1310 SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
1311            u64 volatile_fid)
1312 {
1313         struct smb2_flush_req *req;
1314         struct TCP_Server_Info *server;
1315         struct cifs_ses *ses = tcon->ses;
1316         struct kvec iov[1];
1317         int resp_buftype;
1318         int rc = 0;
1319
1320         cFYI(1, "Flush");
1321
1322         if (ses && (ses->server))
1323                 server = ses->server;
1324         else
1325                 return -EIO;
1326
1327         rc = small_smb2_init(SMB2_FLUSH, tcon, (void **) &req);
1328         if (rc)
1329                 return rc;
1330
1331         req->PersistentFileId = persistent_fid;
1332         req->VolatileFileId = volatile_fid;
1333
1334         iov[0].iov_base = (char *)req;
1335         /* 4 for rfc1002 length field */
1336         iov[0].iov_len = get_rfc1002_length(req) + 4;
1337
1338         rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
1339
1340         if ((rc != 0) && tcon)
1341                 cifs_stats_fail_inc(tcon, SMB2_FLUSH_HE);
1342
1343         free_rsp_buf(resp_buftype, iov[0].iov_base);
1344         return rc;
1345 }
1346
1347 /*
1348  * To form a chain of read requests, any read requests after the first should
1349  * have the end_of_chain boolean set to true.
1350  */
1351 static int
1352 smb2_new_read_req(struct kvec *iov, struct cifs_io_parms *io_parms,
1353                   unsigned int remaining_bytes, int request_type)
1354 {
1355         int rc = -EACCES;
1356         struct smb2_read_req *req = NULL;
1357
1358         rc = small_smb2_init(SMB2_READ, io_parms->tcon, (void **) &req);
1359         if (rc)
1360                 return rc;
1361         if (io_parms->tcon->ses->server == NULL)
1362                 return -ECONNABORTED;
1363
1364         req->hdr.ProcessId = cpu_to_le32(io_parms->pid);
1365
1366         req->PersistentFileId = io_parms->persistent_fid;
1367         req->VolatileFileId = io_parms->volatile_fid;
1368         req->ReadChannelInfoOffset = 0; /* reserved */
1369         req->ReadChannelInfoLength = 0; /* reserved */
1370         req->Channel = 0; /* reserved */
1371         req->MinimumCount = 0;
1372         req->Length = cpu_to_le32(io_parms->length);
1373         req->Offset = cpu_to_le64(io_parms->offset);
1374
1375         if (request_type & CHAINED_REQUEST) {
1376                 if (!(request_type & END_OF_CHAIN)) {
1377                         /* 4 for rfc1002 length field */
1378                         req->hdr.NextCommand =
1379                                 cpu_to_le32(get_rfc1002_length(req) + 4);
1380                 } else /* END_OF_CHAIN */
1381                         req->hdr.NextCommand = 0;
1382                 if (request_type & RELATED_REQUEST) {
1383                         req->hdr.Flags |= SMB2_FLAGS_RELATED_OPERATIONS;
1384                         /*
1385                          * Related requests use info from previous read request
1386                          * in chain.
1387                          */
1388                         req->hdr.SessionId = 0xFFFFFFFF;
1389                         req->hdr.TreeId = 0xFFFFFFFF;
1390                         req->PersistentFileId = 0xFFFFFFFF;
1391                         req->VolatileFileId = 0xFFFFFFFF;
1392                 }
1393         }
1394         if (remaining_bytes > io_parms->length)
1395                 req->RemainingBytes = cpu_to_le32(remaining_bytes);
1396         else
1397                 req->RemainingBytes = 0;
1398
1399         iov[0].iov_base = (char *)req;
1400         /* 4 for rfc1002 length field */
1401         iov[0].iov_len = get_rfc1002_length(req) + 4;
1402         return rc;
1403 }
1404
1405 static void
1406 smb2_readv_callback(struct mid_q_entry *mid)
1407 {
1408         struct cifs_readdata *rdata = mid->callback_data;
1409         struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
1410         struct TCP_Server_Info *server = tcon->ses->server;
1411         struct smb2_hdr *buf = (struct smb2_hdr *)rdata->iov.iov_base;
1412         unsigned int credits_received = 1;
1413         struct smb_rqst rqst = { .rq_iov = &rdata->iov,
1414                                  .rq_nvec = 1,
1415                                  .rq_pages = rdata->pages,
1416                                  .rq_npages = rdata->nr_pages,
1417                                  .rq_pagesz = rdata->pagesz,
1418                                  .rq_tailsz = rdata->tailsz };
1419
1420         cFYI(1, "%s: mid=%llu state=%d result=%d bytes=%u", __func__,
1421                 mid->mid, mid->mid_state, rdata->result, rdata->bytes);
1422
1423         switch (mid->mid_state) {
1424         case MID_RESPONSE_RECEIVED:
1425                 credits_received = le16_to_cpu(buf->CreditRequest);
1426                 /* result already set, check signature */
1427                 if (server->sec_mode &
1428                     (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) {
1429                         int rc;
1430
1431                         rc = smb2_verify_signature(&rqst, server);
1432                         if (rc)
1433                                 cERROR(1, "SMB signature verification returned "
1434                                        "error = %d", rc);
1435                 }
1436                 /* FIXME: should this be counted toward the initiating task? */
1437                 task_io_account_read(rdata->bytes);
1438                 cifs_stats_bytes_read(tcon, rdata->bytes);
1439                 break;
1440         case MID_REQUEST_SUBMITTED:
1441         case MID_RETRY_NEEDED:
1442                 rdata->result = -EAGAIN;
1443                 break;
1444         default:
1445                 if (rdata->result != -ENODATA)
1446                         rdata->result = -EIO;
1447         }
1448
1449         if (rdata->result)
1450                 cifs_stats_fail_inc(tcon, SMB2_READ_HE);
1451
1452         queue_work(cifsiod_wq, &rdata->work);
1453         DeleteMidQEntry(mid);
1454         add_credits(server, credits_received, 0);
1455 }
1456
1457 /* smb2_async_readv - send an async write, and set up mid to handle result */
1458 int
1459 smb2_async_readv(struct cifs_readdata *rdata)
1460 {
1461         int rc;
1462         struct smb2_hdr *buf;
1463         struct cifs_io_parms io_parms;
1464         struct smb_rqst rqst = { .rq_iov = &rdata->iov,
1465                                  .rq_nvec = 1 };
1466
1467         cFYI(1, "%s: offset=%llu bytes=%u", __func__,
1468                 rdata->offset, rdata->bytes);
1469
1470         io_parms.tcon = tlink_tcon(rdata->cfile->tlink);
1471         io_parms.offset = rdata->offset;
1472         io_parms.length = rdata->bytes;
1473         io_parms.persistent_fid = rdata->cfile->fid.persistent_fid;
1474         io_parms.volatile_fid = rdata->cfile->fid.volatile_fid;
1475         io_parms.pid = rdata->pid;
1476         rc = smb2_new_read_req(&rdata->iov, &io_parms, 0, 0);
1477         if (rc)
1478                 return rc;
1479
1480         buf = (struct smb2_hdr *)rdata->iov.iov_base;
1481         /* 4 for rfc1002 length field */
1482         rdata->iov.iov_len = get_rfc1002_length(rdata->iov.iov_base) + 4;
1483
1484         kref_get(&rdata->refcount);
1485         rc = cifs_call_async(io_parms.tcon->ses->server, &rqst,
1486                              cifs_readv_receive, smb2_readv_callback,
1487                              rdata, 0);
1488         if (rc)
1489                 kref_put(&rdata->refcount, cifs_readdata_release);
1490
1491         cifs_small_buf_release(buf);
1492         return rc;
1493 }
1494
1495 int
1496 SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms,
1497           unsigned int *nbytes, char **buf, int *buf_type)
1498 {
1499         int resp_buftype, rc = -EACCES;
1500         struct smb2_read_rsp *rsp = NULL;
1501         struct kvec iov[1];
1502
1503         *nbytes = 0;
1504         rc = smb2_new_read_req(iov, io_parms, 0, 0);
1505         if (rc)
1506                 return rc;
1507
1508         rc = SendReceive2(xid, io_parms->tcon->ses, iov, 1,
1509                           &resp_buftype, CIFS_LOG_ERROR);
1510
1511         rsp = (struct smb2_read_rsp *)iov[0].iov_base;
1512
1513         if (rsp->hdr.Status == STATUS_END_OF_FILE) {
1514                 free_rsp_buf(resp_buftype, iov[0].iov_base);
1515                 return 0;
1516         }
1517
1518         if (rc) {
1519                 cifs_stats_fail_inc(io_parms->tcon, SMB2_READ_HE);
1520                 cERROR(1, "Send error in read = %d", rc);
1521         } else {
1522                 *nbytes = le32_to_cpu(rsp->DataLength);
1523                 if ((*nbytes > CIFS_MAX_MSGSIZE) ||
1524                     (*nbytes > io_parms->length)) {
1525                         cFYI(1, "bad length %d for count %d", *nbytes,
1526                                 io_parms->length);
1527                         rc = -EIO;
1528                         *nbytes = 0;
1529                 }
1530         }
1531
1532         if (*buf) {
1533                 memcpy(*buf, (char *)rsp->hdr.ProtocolId + rsp->DataOffset,
1534                        *nbytes);
1535                 free_rsp_buf(resp_buftype, iov[0].iov_base);
1536         } else if (resp_buftype != CIFS_NO_BUFFER) {
1537                 *buf = iov[0].iov_base;
1538                 if (resp_buftype == CIFS_SMALL_BUFFER)
1539                         *buf_type = CIFS_SMALL_BUFFER;
1540                 else if (resp_buftype == CIFS_LARGE_BUFFER)
1541                         *buf_type = CIFS_LARGE_BUFFER;
1542         }
1543         return rc;
1544 }
1545
1546 /*
1547  * Check the mid_state and signature on received buffer (if any), and queue the
1548  * workqueue completion task.
1549  */
1550 static void
1551 smb2_writev_callback(struct mid_q_entry *mid)
1552 {
1553         struct cifs_writedata *wdata = mid->callback_data;
1554         struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
1555         unsigned int written;
1556         struct smb2_write_rsp *rsp = (struct smb2_write_rsp *)mid->resp_buf;
1557         unsigned int credits_received = 1;
1558
1559         switch (mid->mid_state) {
1560         case MID_RESPONSE_RECEIVED:
1561                 credits_received = le16_to_cpu(rsp->hdr.CreditRequest);
1562                 wdata->result = smb2_check_receive(mid, tcon->ses->server, 0);
1563                 if (wdata->result != 0)
1564                         break;
1565
1566                 written = le32_to_cpu(rsp->DataLength);
1567                 /*
1568                  * Mask off high 16 bits when bytes written as returned
1569                  * by the server is greater than bytes requested by the
1570                  * client. OS/2 servers are known to set incorrect
1571                  * CountHigh values.
1572                  */
1573                 if (written > wdata->bytes)
1574                         written &= 0xFFFF;
1575
1576                 if (written < wdata->bytes)
1577                         wdata->result = -ENOSPC;
1578                 else
1579                         wdata->bytes = written;
1580                 break;
1581         case MID_REQUEST_SUBMITTED:
1582         case MID_RETRY_NEEDED:
1583                 wdata->result = -EAGAIN;
1584                 break;
1585         default:
1586                 wdata->result = -EIO;
1587                 break;
1588         }
1589
1590         if (wdata->result)
1591                 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
1592
1593         queue_work(cifsiod_wq, &wdata->work);
1594         DeleteMidQEntry(mid);
1595         add_credits(tcon->ses->server, credits_received, 0);
1596 }
1597
1598 /* smb2_async_writev - send an async write, and set up mid to handle result */
1599 int
1600 smb2_async_writev(struct cifs_writedata *wdata)
1601 {
1602         int rc = -EACCES;
1603         struct smb2_write_req *req = NULL;
1604         struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
1605         struct kvec iov;
1606         struct smb_rqst rqst;
1607
1608         rc = small_smb2_init(SMB2_WRITE, tcon, (void **) &req);
1609         if (rc)
1610                 goto async_writev_out;
1611
1612         req->hdr.ProcessId = cpu_to_le32(wdata->cfile->pid);
1613
1614         req->PersistentFileId = wdata->cfile->fid.persistent_fid;
1615         req->VolatileFileId = wdata->cfile->fid.volatile_fid;
1616         req->WriteChannelInfoOffset = 0;
1617         req->WriteChannelInfoLength = 0;
1618         req->Channel = 0;
1619         req->Offset = cpu_to_le64(wdata->offset);
1620         /* 4 for rfc1002 length field */
1621         req->DataOffset = cpu_to_le16(
1622                                 offsetof(struct smb2_write_req, Buffer) - 4);
1623         req->RemainingBytes = 0;
1624
1625         /* 4 for rfc1002 length field and 1 for Buffer */
1626         iov.iov_len = get_rfc1002_length(req) + 4 - 1;
1627         iov.iov_base = req;
1628
1629         rqst.rq_iov = &iov;
1630         rqst.rq_nvec = 1;
1631         rqst.rq_pages = wdata->pages;
1632         rqst.rq_npages = wdata->nr_pages;
1633         rqst.rq_pagesz = wdata->pagesz;
1634         rqst.rq_tailsz = wdata->tailsz;
1635
1636         cFYI(1, "async write at %llu %u bytes", wdata->offset, wdata->bytes);
1637
1638         req->Length = cpu_to_le32(wdata->bytes);
1639
1640         inc_rfc1001_len(&req->hdr, wdata->bytes - 1 /* Buffer */);
1641
1642         kref_get(&wdata->refcount);
1643         rc = cifs_call_async(tcon->ses->server, &rqst, NULL,
1644                                 smb2_writev_callback, wdata, 0);
1645
1646         if (rc)
1647                 kref_put(&wdata->refcount, cifs_writedata_release);
1648
1649 async_writev_out:
1650         cifs_small_buf_release(req);
1651         return rc;
1652 }
1653
1654 /*
1655  * SMB2_write function gets iov pointer to kvec array with n_vec as a length.
1656  * The length field from io_parms must be at least 1 and indicates a number of
1657  * elements with data to write that begins with position 1 in iov array. All
1658  * data length is specified by count.
1659  */
1660 int
1661 SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms,
1662            unsigned int *nbytes, struct kvec *iov, int n_vec)
1663 {
1664         int rc = 0;
1665         struct smb2_write_req *req = NULL;
1666         struct smb2_write_rsp *rsp = NULL;
1667         int resp_buftype;
1668         *nbytes = 0;
1669
1670         if (n_vec < 1)
1671                 return rc;
1672
1673         rc = small_smb2_init(SMB2_WRITE, io_parms->tcon, (void **) &req);
1674         if (rc)
1675                 return rc;
1676
1677         if (io_parms->tcon->ses->server == NULL)
1678                 return -ECONNABORTED;
1679
1680         req->hdr.ProcessId = cpu_to_le32(io_parms->pid);
1681
1682         req->PersistentFileId = io_parms->persistent_fid;
1683         req->VolatileFileId = io_parms->volatile_fid;
1684         req->WriteChannelInfoOffset = 0;
1685         req->WriteChannelInfoLength = 0;
1686         req->Channel = 0;
1687         req->Length = cpu_to_le32(io_parms->length);
1688         req->Offset = cpu_to_le64(io_parms->offset);
1689         /* 4 for rfc1002 length field */
1690         req->DataOffset = cpu_to_le16(
1691                                 offsetof(struct smb2_write_req, Buffer) - 4);
1692         req->RemainingBytes = 0;
1693
1694         iov[0].iov_base = (char *)req;
1695         /* 4 for rfc1002 length field and 1 for Buffer */
1696         iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1697
1698         /* length of entire message including data to be written */
1699         inc_rfc1001_len(req, io_parms->length - 1 /* Buffer */);
1700
1701         rc = SendReceive2(xid, io_parms->tcon->ses, iov, n_vec + 1,
1702                           &resp_buftype, 0);
1703
1704         if (rc) {
1705                 cifs_stats_fail_inc(io_parms->tcon, SMB2_WRITE_HE);
1706                 cERROR(1, "Send error in write = %d", rc);
1707         } else {
1708                 rsp = (struct smb2_write_rsp *)iov[0].iov_base;
1709                 *nbytes = le32_to_cpu(rsp->DataLength);
1710                 free_rsp_buf(resp_buftype, rsp);
1711         }
1712         return rc;
1713 }
1714
1715 static unsigned int
1716 num_entries(char *bufstart, char *end_of_buf, char **lastentry, size_t size)
1717 {
1718         int len;
1719         unsigned int entrycount = 0;
1720         unsigned int next_offset = 0;
1721         FILE_DIRECTORY_INFO *entryptr;
1722
1723         if (bufstart == NULL)
1724                 return 0;
1725
1726         entryptr = (FILE_DIRECTORY_INFO *)bufstart;
1727
1728         while (1) {
1729                 entryptr = (FILE_DIRECTORY_INFO *)
1730                                         ((char *)entryptr + next_offset);
1731
1732                 if ((char *)entryptr + size > end_of_buf) {
1733                         cERROR(1, "malformed search entry would overflow");
1734                         break;
1735                 }
1736
1737                 len = le32_to_cpu(entryptr->FileNameLength);
1738                 if ((char *)entryptr + len + size > end_of_buf) {
1739                         cERROR(1, "directory entry name would overflow frame "
1740                                   "end of buf %p", end_of_buf);
1741                         break;
1742                 }
1743
1744                 *lastentry = (char *)entryptr;
1745                 entrycount++;
1746
1747                 next_offset = le32_to_cpu(entryptr->NextEntryOffset);
1748                 if (!next_offset)
1749                         break;
1750         }
1751
1752         return entrycount;
1753 }
1754
1755 /*
1756  * Readdir/FindFirst
1757  */
1758 int
1759 SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon,
1760                      u64 persistent_fid, u64 volatile_fid, int index,
1761                      struct cifs_search_info *srch_inf)
1762 {
1763         struct smb2_query_directory_req *req;
1764         struct smb2_query_directory_rsp *rsp = NULL;
1765         struct kvec iov[2];
1766         int rc = 0;
1767         int len;
1768         int resp_buftype;
1769         unsigned char *bufptr;
1770         struct TCP_Server_Info *server;
1771         struct cifs_ses *ses = tcon->ses;
1772         __le16 asteriks = cpu_to_le16('*');
1773         char *end_of_smb;
1774         unsigned int output_size = CIFSMaxBufSize;
1775         size_t info_buf_size;
1776
1777         if (ses && (ses->server))
1778                 server = ses->server;
1779         else
1780                 return -EIO;
1781
1782         rc = small_smb2_init(SMB2_QUERY_DIRECTORY, tcon, (void **) &req);
1783         if (rc)
1784                 return rc;
1785
1786         switch (srch_inf->info_level) {
1787         case SMB_FIND_FILE_DIRECTORY_INFO:
1788                 req->FileInformationClass = FILE_DIRECTORY_INFORMATION;
1789                 info_buf_size = sizeof(FILE_DIRECTORY_INFO) - 1;
1790                 break;
1791         case SMB_FIND_FILE_ID_FULL_DIR_INFO:
1792                 req->FileInformationClass = FILEID_FULL_DIRECTORY_INFORMATION;
1793                 info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO) - 1;
1794                 break;
1795         default:
1796                 cERROR(1, "info level %u isn't supported",
1797                        srch_inf->info_level);
1798                 rc = -EINVAL;
1799                 goto qdir_exit;
1800         }
1801
1802         req->FileIndex = cpu_to_le32(index);
1803         req->PersistentFileId = persistent_fid;
1804         req->VolatileFileId = volatile_fid;
1805
1806         len = 0x2;
1807         bufptr = req->Buffer;
1808         memcpy(bufptr, &asteriks, len);
1809
1810         req->FileNameOffset =
1811                 cpu_to_le16(sizeof(struct smb2_query_directory_req) - 1 - 4);
1812         req->FileNameLength = cpu_to_le16(len);
1813         /*
1814          * BB could be 30 bytes or so longer if we used SMB2 specific
1815          * buffer lengths, but this is safe and close enough.
1816          */
1817         output_size = min_t(unsigned int, output_size, server->maxBuf);
1818         output_size = min_t(unsigned int, output_size, 2 << 15);
1819         req->OutputBufferLength = cpu_to_le32(output_size);
1820
1821         iov[0].iov_base = (char *)req;
1822         /* 4 for RFC1001 length and 1 for Buffer */
1823         iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1824
1825         iov[1].iov_base = (char *)(req->Buffer);
1826         iov[1].iov_len = len;
1827
1828         inc_rfc1001_len(req, len - 1 /* Buffer */);
1829
1830         rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0);
1831         if (rc) {
1832                 cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
1833                 goto qdir_exit;
1834         }
1835         rsp = (struct smb2_query_directory_rsp *)iov[0].iov_base;
1836
1837         rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
1838                           le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
1839                           info_buf_size);
1840         if (rc)
1841                 goto qdir_exit;
1842
1843         srch_inf->unicode = true;
1844
1845         if (srch_inf->ntwrk_buf_start) {
1846                 if (srch_inf->smallBuf)
1847                         cifs_small_buf_release(srch_inf->ntwrk_buf_start);
1848                 else
1849                         cifs_buf_release(srch_inf->ntwrk_buf_start);
1850         }
1851         srch_inf->ntwrk_buf_start = (char *)rsp;
1852         srch_inf->srch_entries_start = srch_inf->last_entry = 4 /* rfclen */ +
1853                 (char *)&rsp->hdr + le16_to_cpu(rsp->OutputBufferOffset);
1854         /* 4 for rfc1002 length field */
1855         end_of_smb = get_rfc1002_length(rsp) + 4 + (char *)&rsp->hdr;
1856         srch_inf->entries_in_buffer =
1857                         num_entries(srch_inf->srch_entries_start, end_of_smb,
1858                                     &srch_inf->last_entry, info_buf_size);
1859         srch_inf->index_of_last_entry += srch_inf->entries_in_buffer;
1860         cFYI(1, "num entries %d last_index %lld srch start %p srch end %p",
1861                 srch_inf->entries_in_buffer, srch_inf->index_of_last_entry,
1862                 srch_inf->srch_entries_start, srch_inf->last_entry);
1863         if (resp_buftype == CIFS_LARGE_BUFFER)
1864                 srch_inf->smallBuf = false;
1865         else if (resp_buftype == CIFS_SMALL_BUFFER)
1866                 srch_inf->smallBuf = true;
1867         else
1868                 cERROR(1, "illegal search buffer type");
1869
1870         if (rsp->hdr.Status == STATUS_NO_MORE_FILES)
1871                 srch_inf->endOfSearch = 1;
1872         else
1873                 srch_inf->endOfSearch = 0;
1874
1875         return rc;
1876
1877 qdir_exit:
1878         free_rsp_buf(resp_buftype, rsp);
1879         return rc;
1880 }
1881
1882 static int
1883 send_set_info(const unsigned int xid, struct cifs_tcon *tcon,
1884                u64 persistent_fid, u64 volatile_fid, u32 pid, int info_class,
1885                unsigned int num, void **data, unsigned int *size)
1886 {
1887         struct smb2_set_info_req *req;
1888         struct smb2_set_info_rsp *rsp = NULL;
1889         struct kvec *iov;
1890         int rc = 0;
1891         int resp_buftype;
1892         unsigned int i;
1893         struct TCP_Server_Info *server;
1894         struct cifs_ses *ses = tcon->ses;
1895
1896         if (ses && (ses->server))
1897                 server = ses->server;
1898         else
1899                 return -EIO;
1900
1901         if (!num)
1902                 return -EINVAL;
1903
1904         iov = kmalloc(sizeof(struct kvec) * num, GFP_KERNEL);
1905         if (!iov)
1906                 return -ENOMEM;
1907
1908         rc = small_smb2_init(SMB2_SET_INFO, tcon, (void **) &req);
1909         if (rc) {
1910                 kfree(iov);
1911                 return rc;
1912         }
1913
1914         req->hdr.ProcessId = cpu_to_le32(pid);
1915
1916         req->InfoType = SMB2_O_INFO_FILE;
1917         req->FileInfoClass = info_class;
1918         req->PersistentFileId = persistent_fid;
1919         req->VolatileFileId = volatile_fid;
1920
1921         /* 4 for RFC1001 length and 1 for Buffer */
1922         req->BufferOffset =
1923                         cpu_to_le16(sizeof(struct smb2_set_info_req) - 1 - 4);
1924         req->BufferLength = cpu_to_le32(*size);
1925
1926         inc_rfc1001_len(req, *size - 1 /* Buffer */);
1927
1928         memcpy(req->Buffer, *data, *size);
1929
1930         iov[0].iov_base = (char *)req;
1931         /* 4 for RFC1001 length */
1932         iov[0].iov_len = get_rfc1002_length(req) + 4;
1933
1934         for (i = 1; i < num; i++) {
1935                 inc_rfc1001_len(req, size[i]);
1936                 le32_add_cpu(&req->BufferLength, size[i]);
1937                 iov[i].iov_base = (char *)data[i];
1938                 iov[i].iov_len = size[i];
1939         }
1940
1941         rc = SendReceive2(xid, ses, iov, num, &resp_buftype, 0);
1942         rsp = (struct smb2_set_info_rsp *)iov[0].iov_base;
1943
1944         if (rc != 0) {
1945                 cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE);
1946                 goto out;
1947         }
1948
1949         if (rsp == NULL) {
1950                 rc = -EIO;
1951                 goto out;
1952         }
1953
1954 out:
1955         free_rsp_buf(resp_buftype, rsp);
1956         kfree(iov);
1957         return rc;
1958 }
1959
1960 int
1961 SMB2_rename(const unsigned int xid, struct cifs_tcon *tcon,
1962             u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
1963 {
1964         struct smb2_file_rename_info info;
1965         void **data;
1966         unsigned int size[2];
1967         int rc;
1968         int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
1969
1970         data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
1971         if (!data)
1972                 return -ENOMEM;
1973
1974         info.ReplaceIfExists = 1; /* 1 = replace existing target with new */
1975                               /* 0 = fail if target already exists */
1976         info.RootDirectory = 0;  /* MBZ for network ops (why does spec say?) */
1977         info.FileNameLength = cpu_to_le32(len);
1978
1979         data[0] = &info;
1980         size[0] = sizeof(struct smb2_file_rename_info);
1981
1982         data[1] = target_file;
1983         size[1] = len + 2 /* null */;
1984
1985         rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
1986                            current->tgid, FILE_RENAME_INFORMATION, 2, data,
1987                            size);
1988         kfree(data);
1989         return rc;
1990 }
1991
1992 int
1993 SMB2_set_hardlink(const unsigned int xid, struct cifs_tcon *tcon,
1994                   u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
1995 {
1996         struct smb2_file_link_info info;
1997         void **data;
1998         unsigned int size[2];
1999         int rc;
2000         int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
2001
2002         data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
2003         if (!data)
2004                 return -ENOMEM;
2005
2006         info.ReplaceIfExists = 0; /* 1 = replace existing link with new */
2007                               /* 0 = fail if link already exists */
2008         info.RootDirectory = 0;  /* MBZ for network ops (why does spec say?) */
2009         info.FileNameLength = cpu_to_le32(len);
2010
2011         data[0] = &info;
2012         size[0] = sizeof(struct smb2_file_link_info);
2013
2014         data[1] = target_file;
2015         size[1] = len + 2 /* null */;
2016
2017         rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
2018                            current->tgid, FILE_LINK_INFORMATION, 2, data, size);
2019         kfree(data);
2020         return rc;
2021 }
2022
2023 int
2024 SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
2025              u64 volatile_fid, u32 pid, __le64 *eof)
2026 {
2027         struct smb2_file_eof_info info;
2028         void *data;
2029         unsigned int size;
2030
2031         info.EndOfFile = *eof;
2032
2033         data = &info;
2034         size = sizeof(struct smb2_file_eof_info);
2035
2036         return send_set_info(xid, tcon, persistent_fid, volatile_fid, pid,
2037                              FILE_END_OF_FILE_INFORMATION, 1, &data, &size);
2038 }
2039
2040 int
2041 SMB2_set_info(const unsigned int xid, struct cifs_tcon *tcon,
2042               u64 persistent_fid, u64 volatile_fid, FILE_BASIC_INFO *buf)
2043 {
2044         unsigned int size;
2045         size = sizeof(FILE_BASIC_INFO);
2046         return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2047                              current->tgid, FILE_BASIC_INFORMATION, 1,
2048                              (void **)&buf, &size);
2049 }
2050
2051 int
2052 SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon,
2053                   const u64 persistent_fid, const u64 volatile_fid,
2054                   __u8 oplock_level)
2055 {
2056         int rc;
2057         struct smb2_oplock_break *req = NULL;
2058
2059         cFYI(1, "SMB2_oplock_break");
2060         rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
2061
2062         if (rc)
2063                 return rc;
2064
2065         req->VolatileFid = volatile_fid;
2066         req->PersistentFid = persistent_fid;
2067         req->OplockLevel = oplock_level;
2068         req->hdr.CreditRequest = cpu_to_le16(1);
2069
2070         rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP);
2071         /* SMB2 buffer freed by function above */
2072
2073         if (rc) {
2074                 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
2075                 cFYI(1, "Send error in Oplock Break = %d", rc);
2076         }
2077
2078         return rc;
2079 }
2080
2081 static void
2082 copy_fs_info_to_kstatfs(struct smb2_fs_full_size_info *pfs_inf,
2083                         struct kstatfs *kst)
2084 {
2085         kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) *
2086                           le32_to_cpu(pfs_inf->SectorsPerAllocationUnit);
2087         kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits);
2088         kst->f_bfree  = le64_to_cpu(pfs_inf->ActualAvailableAllocationUnits);
2089         kst->f_bavail = le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits);
2090         return;
2091 }
2092
2093 static int
2094 build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon, int level,
2095                    int outbuf_len, u64 persistent_fid, u64 volatile_fid)
2096 {
2097         int rc;
2098         struct smb2_query_info_req *req;
2099
2100         cFYI(1, "Query FSInfo level %d", level);
2101
2102         if ((tcon->ses == NULL) || (tcon->ses->server == NULL))
2103                 return -EIO;
2104
2105         rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
2106         if (rc)
2107                 return rc;
2108
2109         req->InfoType = SMB2_O_INFO_FILESYSTEM;
2110         req->FileInfoClass = level;
2111         req->PersistentFileId = persistent_fid;
2112         req->VolatileFileId = volatile_fid;
2113         /* 4 for rfc1002 length field and 1 for pad */
2114         req->InputBufferOffset =
2115                         cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
2116         req->OutputBufferLength = cpu_to_le32(
2117                 outbuf_len + sizeof(struct smb2_query_info_rsp) - 1 - 4);
2118
2119         iov->iov_base = (char *)req;
2120         /* 4 for rfc1002 length field */
2121         iov->iov_len = get_rfc1002_length(req) + 4;
2122         return 0;
2123 }
2124
2125 int
2126 SMB2_QFS_info(const unsigned int xid, struct cifs_tcon *tcon,
2127               u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
2128 {
2129         struct smb2_query_info_rsp *rsp = NULL;
2130         struct kvec iov;
2131         int rc = 0;
2132         int resp_buftype;
2133         struct cifs_ses *ses = tcon->ses;
2134         struct smb2_fs_full_size_info *info = NULL;
2135
2136         rc = build_qfs_info_req(&iov, tcon, FS_FULL_SIZE_INFORMATION,
2137                                 sizeof(struct smb2_fs_full_size_info),
2138                                 persistent_fid, volatile_fid);
2139         if (rc)
2140                 return rc;
2141
2142         rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, 0);
2143         if (rc) {
2144                 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
2145                 goto qinf_exit;
2146         }
2147         rsp = (struct smb2_query_info_rsp *)iov.iov_base;
2148
2149         info = (struct smb2_fs_full_size_info *)(4 /* RFC1001 len */ +
2150                 le16_to_cpu(rsp->OutputBufferOffset) + (char *)&rsp->hdr);
2151         rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
2152                           le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
2153                           sizeof(struct smb2_fs_full_size_info));
2154         if (!rc)
2155                 copy_fs_info_to_kstatfs(info, fsdata);
2156
2157 qinf_exit:
2158         free_rsp_buf(resp_buftype, iov.iov_base);
2159         return rc;
2160 }
2161
2162 int
2163 smb2_lockv(const unsigned int xid, struct cifs_tcon *tcon,
2164            const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
2165            const __u32 num_lock, struct smb2_lock_element *buf)
2166 {
2167         int rc = 0;
2168         struct smb2_lock_req *req = NULL;
2169         struct kvec iov[2];
2170         int resp_buf_type;
2171         unsigned int count;
2172
2173         cFYI(1, "smb2_lockv num lock %d", num_lock);
2174
2175         rc = small_smb2_init(SMB2_LOCK, tcon, (void **) &req);
2176         if (rc)
2177                 return rc;
2178
2179         req->hdr.ProcessId = cpu_to_le32(pid);
2180         req->LockCount = cpu_to_le16(num_lock);
2181
2182         req->PersistentFileId = persist_fid;
2183         req->VolatileFileId = volatile_fid;
2184
2185         count = num_lock * sizeof(struct smb2_lock_element);
2186         inc_rfc1001_len(req, count - sizeof(struct smb2_lock_element));
2187
2188         iov[0].iov_base = (char *)req;
2189         /* 4 for rfc1002 length field and count for all locks */
2190         iov[0].iov_len = get_rfc1002_length(req) + 4 - count;
2191         iov[1].iov_base = (char *)buf;
2192         iov[1].iov_len = count;
2193
2194         cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
2195         rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, CIFS_NO_RESP);
2196         if (rc) {
2197                 cFYI(1, "Send error in smb2_lockv = %d", rc);
2198                 cifs_stats_fail_inc(tcon, SMB2_LOCK_HE);
2199         }
2200
2201         return rc;
2202 }
2203
2204 int
2205 SMB2_lock(const unsigned int xid, struct cifs_tcon *tcon,
2206           const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
2207           const __u64 length, const __u64 offset, const __u32 lock_flags,
2208           const bool wait)
2209 {
2210         struct smb2_lock_element lock;
2211
2212         lock.Offset = cpu_to_le64(offset);
2213         lock.Length = cpu_to_le64(length);
2214         lock.Flags = cpu_to_le32(lock_flags);
2215         if (!wait && lock_flags != SMB2_LOCKFLAG_UNLOCK)
2216                 lock.Flags |= cpu_to_le32(SMB2_LOCKFLAG_FAIL_IMMEDIATELY);
2217
2218         return smb2_lockv(xid, tcon, persist_fid, volatile_fid, pid, 1, &lock);
2219 }
2220
2221 int
2222 SMB2_lease_break(const unsigned int xid, struct cifs_tcon *tcon,
2223                  __u8 *lease_key, const __le32 lease_state)
2224 {
2225         int rc;
2226         struct smb2_lease_ack *req = NULL;
2227
2228         cFYI(1, "SMB2_lease_break");
2229         rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
2230
2231         if (rc)
2232                 return rc;
2233
2234         req->hdr.CreditRequest = cpu_to_le16(1);
2235         req->StructureSize = cpu_to_le16(36);
2236         inc_rfc1001_len(req, 12);
2237
2238         memcpy(req->LeaseKey, lease_key, 16);
2239         req->LeaseState = lease_state;
2240
2241         rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP);
2242         /* SMB2 buffer freed by function above */
2243
2244         if (rc) {
2245                 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
2246                 cFYI(1, "Send error in Lease Break = %d", rc);
2247         }
2248
2249         return rc;
2250 }