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