4 * Copyright (C) International Business Machines Corp., 2009, 2013
6 * Author(s): Steve French (sfrench@us.ibm.com)
7 * Pavel Shilovsky (pshilovsky@samba.org) 2012
9 * Contains the routines for constructing the SMB2 PDUs themselves
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.
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.
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
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 */
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/uuid.h>
37 #include <linux/pagemap.h>
38 #include <linux/xattr.h>
42 #include "cifsproto.h"
43 #include "smb2proto.h"
44 #include "cifs_unicode.h"
45 #include "cifs_debug.h"
47 #include "smb2status.h"
50 #include "cifs_spnego.h"
53 * The following table defines the expected "StructureSize" of SMB2 requests
54 * in order by SMB2 command. This is similar to "wct" in SMB/CIFS requests.
56 * Note that commands are defined in smb2pdu.h in le16 but the array below is
57 * indexed by command in host byte order.
59 static const int smb2_req_struct_sizes[NUMBER_OF_SMB2_COMMANDS] = {
60 /* SMB2_NEGOTIATE */ 36,
61 /* SMB2_SESSION_SETUP */ 25,
63 /* SMB2_TREE_CONNECT */ 9,
64 /* SMB2_TREE_DISCONNECT */ 4,
74 /* SMB2_QUERY_DIRECTORY */ 33,
75 /* SMB2_CHANGE_NOTIFY */ 32,
76 /* SMB2_QUERY_INFO */ 41,
77 /* SMB2_SET_INFO */ 33,
78 /* SMB2_OPLOCK_BREAK */ 24 /* BB this is 36 for LEASE_BREAK variant */
81 static int encryption_required(const struct cifs_tcon *tcon)
85 if ((tcon->ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) ||
86 (tcon->share_flags & SHI1005_FLAGS_ENCRYPT_DATA))
89 (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION))
95 smb2_hdr_assemble(struct smb2_sync_hdr *shdr, __le16 smb2_cmd,
96 const struct cifs_tcon *tcon)
98 shdr->ProtocolId = SMB2_PROTO_NUMBER;
99 shdr->StructureSize = cpu_to_le16(64);
100 shdr->Command = smb2_cmd;
101 if (tcon && tcon->ses && tcon->ses->server) {
102 struct TCP_Server_Info *server = tcon->ses->server;
104 spin_lock(&server->req_lock);
105 /* Request up to 2 credits but don't go over the limit. */
106 if (server->credits >= server->max_credits)
107 shdr->CreditRequest = cpu_to_le16(0);
109 shdr->CreditRequest = cpu_to_le16(
110 min_t(int, server->max_credits -
111 server->credits, 2));
112 spin_unlock(&server->req_lock);
114 shdr->CreditRequest = cpu_to_le16(2);
116 shdr->ProcessId = cpu_to_le32((__u16)current->tgid);
121 /* GLOBAL_CAP_LARGE_MTU will only be set if dialect > SMB2.02 */
122 /* See sections 2.2.4 and 3.2.4.1.5 of MS-SMB2 */
123 if ((tcon->ses) && (tcon->ses->server) &&
124 (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LARGE_MTU))
125 shdr->CreditCharge = cpu_to_le16(1);
126 /* else CreditCharge MBZ */
128 shdr->TreeId = tcon->tid;
129 /* Uid is not converted */
131 shdr->SessionId = tcon->ses->Suid;
134 * If we would set SMB2_FLAGS_DFS_OPERATIONS on open we also would have
135 * to pass the path on the Open SMB prefixed by \\server\share.
136 * Not sure when we would need to do the augmented path (if ever) and
137 * setting this flag breaks the SMB2 open operation since it is
138 * illegal to send an empty path name (without \\server\share prefix)
139 * when the DFS flag is set in the SMB open header. We could
140 * consider setting the flag on all operations other than open
141 * but it is safer to net set it for now.
143 /* if (tcon->share_flags & SHI1005_FLAGS_DFS)
144 shdr->Flags |= SMB2_FLAGS_DFS_OPERATIONS; */
146 if (tcon->ses && tcon->ses->server && tcon->ses->server->sign &&
147 !encryption_required(tcon))
148 shdr->Flags |= SMB2_FLAGS_SIGNED;
154 smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon)
157 struct nls_table *nls_codepage;
158 struct cifs_ses *ses;
159 struct TCP_Server_Info *server;
162 * SMB2s NegProt, SessSetup, Logoff do not have tcon yet so
163 * check for tcp and smb session status done differently
164 * for those three - in the calling routine.
169 if (smb2_command == SMB2_TREE_CONNECT)
172 if (tcon->tidStatus == CifsExiting) {
174 * only tree disconnect, open, and write,
175 * (and ulogoff which does not have tcon)
176 * are allowed as we start force umount.
178 if ((smb2_command != SMB2_WRITE) &&
179 (smb2_command != SMB2_CREATE) &&
180 (smb2_command != SMB2_TREE_DISCONNECT)) {
181 cifs_dbg(FYI, "can not send cmd %d while umounting\n",
186 if ((!tcon->ses) || (tcon->ses->status == CifsExiting) ||
187 (!tcon->ses->server))
191 server = ses->server;
194 * Give demultiplex thread up to 10 seconds to reconnect, should be
195 * greater than cifs socket timeout which is 7 seconds
197 while (server->tcpStatus == CifsNeedReconnect) {
199 * Return to caller for TREE_DISCONNECT and LOGOFF and CLOSE
200 * here since they are implicitly done when session drops.
202 switch (smb2_command) {
204 * BB Should we keep oplock break and add flush to exceptions?
206 case SMB2_TREE_DISCONNECT:
209 case SMB2_OPLOCK_BREAK:
213 wait_event_interruptible_timeout(server->response_q,
214 (server->tcpStatus != CifsNeedReconnect), 10 * HZ);
216 /* are we still trying to reconnect? */
217 if (server->tcpStatus != CifsNeedReconnect)
221 * on "soft" mounts we wait once. Hard mounts keep
222 * retrying until process is killed or server comes
226 cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n");
231 if (!tcon->ses->need_reconnect && !tcon->need_reconnect)
234 nls_codepage = load_nls_default();
237 * need to prevent multiple threads trying to simultaneously reconnect
238 * the same SMB session
240 mutex_lock(&tcon->ses->session_mutex);
241 rc = cifs_negotiate_protocol(0, tcon->ses);
242 if (!rc && tcon->ses->need_reconnect)
243 rc = cifs_setup_session(0, tcon->ses, nls_codepage);
245 if (rc || !tcon->need_reconnect) {
246 mutex_unlock(&tcon->ses->session_mutex);
250 cifs_mark_open_files_invalid(tcon);
251 if (tcon->use_persistent)
252 tcon->need_reopen_files = true;
254 rc = SMB2_tcon(0, tcon->ses, tcon->treeName, tcon, nls_codepage);
255 mutex_unlock(&tcon->ses->session_mutex);
257 cifs_dbg(FYI, "reconnect tcon rc = %d\n", rc);
261 if (smb2_command != SMB2_INTERNAL_CMD)
262 queue_delayed_work(cifsiod_wq, &server->reconnect, 0);
264 atomic_inc(&tconInfoReconnectCount);
267 * Check if handle based operation so we know whether we can continue
268 * or not without returning to caller to reset file handle.
271 * BB Is flush done by server on drop of tcp session? Should we special
272 * case it and skip above?
274 switch (smb2_command) {
280 case SMB2_QUERY_DIRECTORY:
281 case SMB2_CHANGE_NOTIFY:
282 case SMB2_QUERY_INFO:
286 unload_nls(nls_codepage);
291 fill_small_buf(__le16 smb2_command, struct cifs_tcon *tcon, void *buf,
292 unsigned int *total_len)
294 struct smb2_sync_pdu *spdu = (struct smb2_sync_pdu *)buf;
295 /* lookup word count ie StructureSize from table */
296 __u16 parmsize = smb2_req_struct_sizes[le16_to_cpu(smb2_command)];
299 * smaller than SMALL_BUFFER_SIZE but bigger than fixed area of
300 * largest operations (Create)
304 smb2_hdr_assemble(&spdu->sync_hdr, smb2_command, tcon);
305 spdu->StructureSize2 = cpu_to_le16(parmsize);
307 *total_len = parmsize + sizeof(struct smb2_sync_hdr);
310 /* init request without RFC1001 length at the beginning */
312 smb2_plain_req_init(__le16 smb2_command, struct cifs_tcon *tcon,
313 void **request_buf, unsigned int *total_len)
316 struct smb2_sync_hdr *shdr;
318 rc = smb2_reconnect(smb2_command, tcon);
322 /* BB eventually switch this to SMB2 specific small buf size */
323 *request_buf = cifs_small_buf_get();
324 if (*request_buf == NULL) {
325 /* BB should we add a retry in here if not a writepage? */
329 shdr = (struct smb2_sync_hdr *)(*request_buf);
331 fill_small_buf(smb2_command, tcon, shdr, total_len);
334 #ifdef CONFIG_CIFS_STATS2
335 uint16_t com_code = le16_to_cpu(smb2_command);
337 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]);
339 cifs_stats_inc(&tcon->num_smbs_sent);
346 * Allocate and return pointer to an SMB request hdr, and set basic
347 * SMB information in the SMB header. If the return code is zero, this
348 * function must have filled in request_buf pointer. The returned buffer
349 * has RFC1001 length at the beginning.
352 small_smb2_init(__le16 smb2_command, struct cifs_tcon *tcon,
356 unsigned int total_len;
357 struct smb2_pdu *pdu;
359 rc = smb2_reconnect(smb2_command, tcon);
363 /* BB eventually switch this to SMB2 specific small buf size */
364 *request_buf = cifs_small_buf_get();
365 if (*request_buf == NULL) {
366 /* BB should we add a retry in here if not a writepage? */
370 pdu = (struct smb2_pdu *)(*request_buf);
372 fill_small_buf(smb2_command, tcon, get_sync_hdr(pdu), &total_len);
374 /* Note this is only network field converted to big endian */
375 pdu->hdr.smb2_buf_length = cpu_to_be32(total_len);
378 #ifdef CONFIG_CIFS_STATS2
379 uint16_t com_code = le16_to_cpu(smb2_command);
380 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]);
382 cifs_stats_inc(&tcon->num_smbs_sent);
388 #ifdef CONFIG_CIFS_SMB311
389 /* offset is sizeof smb2_negotiate_req - 4 but rounded up to 8 bytes */
390 #define OFFSET_OF_NEG_CONTEXT 0x68 /* sizeof(struct smb2_negotiate_req) - 4 */
393 #define SMB2_PREAUTH_INTEGRITY_CAPABILITIES cpu_to_le16(1)
394 #define SMB2_ENCRYPTION_CAPABILITIES cpu_to_le16(2)
397 build_preauth_ctxt(struct smb2_preauth_neg_context *pneg_ctxt)
399 pneg_ctxt->ContextType = SMB2_PREAUTH_INTEGRITY_CAPABILITIES;
400 pneg_ctxt->DataLength = cpu_to_le16(38);
401 pneg_ctxt->HashAlgorithmCount = cpu_to_le16(1);
402 pneg_ctxt->SaltLength = cpu_to_le16(SMB311_SALT_SIZE);
403 get_random_bytes(pneg_ctxt->Salt, SMB311_SALT_SIZE);
404 pneg_ctxt->HashAlgorithms = SMB2_PREAUTH_INTEGRITY_SHA512;
408 build_encrypt_ctxt(struct smb2_encryption_neg_context *pneg_ctxt)
410 pneg_ctxt->ContextType = SMB2_ENCRYPTION_CAPABILITIES;
411 pneg_ctxt->DataLength = cpu_to_le16(6);
412 pneg_ctxt->CipherCount = cpu_to_le16(2);
413 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_GCM;
414 pneg_ctxt->Ciphers[1] = SMB2_ENCRYPTION_AES128_CCM;
418 assemble_neg_contexts(struct smb2_negotiate_req *req)
421 /* +4 is to account for the RFC1001 len field */
422 char *pneg_ctxt = (char *)req + OFFSET_OF_NEG_CONTEXT + 4;
424 build_preauth_ctxt((struct smb2_preauth_neg_context *)pneg_ctxt);
425 /* Add 2 to size to round to 8 byte boundary */
426 pneg_ctxt += 2 + sizeof(struct smb2_preauth_neg_context);
427 build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt);
428 req->NegotiateContextOffset = cpu_to_le32(OFFSET_OF_NEG_CONTEXT);
429 req->NegotiateContextCount = cpu_to_le16(2);
430 inc_rfc1001_len(req, 4 + sizeof(struct smb2_preauth_neg_context) + 2
431 + sizeof(struct smb2_encryption_neg_context)); /* calculate hash */
434 static void assemble_neg_contexts(struct smb2_negotiate_req *req)
442 * SMB2 Worker functions follow:
444 * The general structure of the worker functions is:
445 * 1) Call smb2_init (assembles SMB2 header)
446 * 2) Initialize SMB2 command specific fields in fixed length area of SMB
447 * 3) Call smb_sendrcv2 (sends request on socket and waits for response)
448 * 4) Decode SMB2 command specific fields in the fixed length area
449 * 5) Decode variable length data area (if any for this SMB2 command type)
450 * 6) Call free smb buffer
456 SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses)
458 struct smb2_negotiate_req *req;
459 struct smb2_negotiate_rsp *rsp;
464 struct TCP_Server_Info *server = ses->server;
465 int blob_offset, blob_length;
467 int flags = CIFS_NEG_OP;
469 cifs_dbg(FYI, "Negotiate protocol\n");
472 WARN(1, "%s: server is NULL!\n", __func__);
476 rc = small_smb2_init(SMB2_NEGOTIATE, NULL, (void **) &req);
480 req->hdr.sync_hdr.SessionId = 0;
482 req->Dialects[0] = cpu_to_le16(ses->server->vals->protocol_id);
484 req->DialectCount = cpu_to_le16(1); /* One vers= at a time for now */
485 inc_rfc1001_len(req, 2);
487 /* only one of SMB2 signing flags may be set in SMB2 request */
489 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
490 else if (global_secflags & CIFSSEC_MAY_SIGN)
491 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
493 req->SecurityMode = 0;
495 req->Capabilities = cpu_to_le32(ses->server->vals->req_capabilities);
497 /* ClientGUID must be zero for SMB2.02 dialect */
498 if (ses->server->vals->protocol_id == SMB20_PROT_ID)
499 memset(req->ClientGUID, 0, SMB2_CLIENT_GUID_SIZE);
501 memcpy(req->ClientGUID, server->client_guid,
502 SMB2_CLIENT_GUID_SIZE);
503 if (ses->server->vals->protocol_id == SMB311_PROT_ID)
504 assemble_neg_contexts(req);
506 iov[0].iov_base = (char *)req;
507 /* 4 for rfc1002 length field */
508 iov[0].iov_len = get_rfc1002_length(req) + 4;
510 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags, &rsp_iov);
511 cifs_small_buf_release(req);
512 rsp = (struct smb2_negotiate_rsp *)rsp_iov.iov_base;
514 * No tcon so can't do
515 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
520 cifs_dbg(FYI, "mode 0x%x\n", rsp->SecurityMode);
522 /* BB we may eventually want to match the negotiated vs. requested
523 dialect, even though we are only requesting one at a time */
524 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID))
525 cifs_dbg(FYI, "negotiated smb2.0 dialect\n");
526 else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID))
527 cifs_dbg(FYI, "negotiated smb2.1 dialect\n");
528 else if (rsp->DialectRevision == cpu_to_le16(SMB30_PROT_ID))
529 cifs_dbg(FYI, "negotiated smb3.0 dialect\n");
530 else if (rsp->DialectRevision == cpu_to_le16(SMB302_PROT_ID))
531 cifs_dbg(FYI, "negotiated smb3.02 dialect\n");
532 #ifdef CONFIG_CIFS_SMB311
533 else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID))
534 cifs_dbg(FYI, "negotiated smb3.1.1 dialect\n");
537 cifs_dbg(VFS, "Illegal dialect returned by server 0x%x\n",
538 le16_to_cpu(rsp->DialectRevision));
542 server->dialect = le16_to_cpu(rsp->DialectRevision);
544 /* SMB2 only has an extended negflavor */
545 server->negflavor = CIFS_NEGFLAVOR_EXTENDED;
546 /* set it to the maximum buffer size value we can send with 1 credit */
547 server->maxBuf = min_t(unsigned int, le32_to_cpu(rsp->MaxTransactSize),
548 SMB2_MAX_BUFFER_SIZE);
549 server->max_read = le32_to_cpu(rsp->MaxReadSize);
550 server->max_write = le32_to_cpu(rsp->MaxWriteSize);
551 /* BB Do we need to validate the SecurityMode? */
552 server->sec_mode = le16_to_cpu(rsp->SecurityMode);
553 server->capabilities = le32_to_cpu(rsp->Capabilities);
555 server->capabilities |= SMB2_NT_FIND | SMB2_LARGE_FILES;
557 security_blob = smb2_get_data_area_len(&blob_offset, &blob_length,
560 * See MS-SMB2 section 2.2.4: if no blob, client picks default which
562 * ses->sectype = RawNTLMSSP;
563 * but for time being this is our only auth choice so doesn't matter.
564 * We just found a server which sets blob length to zero expecting raw.
566 if (blob_length == 0) {
567 cifs_dbg(FYI, "missing security blob on negprot\n");
568 server->sec_ntlmssp = true;
571 rc = cifs_enable_signing(server, ses->sign);
575 rc = decode_negTokenInit(security_blob, blob_length, server);
582 free_rsp_buf(resp_buftype, rsp);
586 int smb3_validate_negotiate(const unsigned int xid, struct cifs_tcon *tcon)
589 struct validate_negotiate_info_req vneg_inbuf;
590 struct validate_negotiate_info_rsp *pneg_rsp;
593 cifs_dbg(FYI, "validate negotiate\n");
596 * validation ioctl must be signed, so no point sending this if we
597 * can not sign it. We could eventually change this to selectively
598 * sign just this, the first and only signed request on a connection.
599 * This is good enough for now since a user who wants better security
600 * would also enable signing on the mount. Having validation of
601 * negotiate info for signed connections helps reduce attack vectors
603 if (tcon->ses->server->sign == false)
604 return 0; /* validation requires signing */
606 vneg_inbuf.Capabilities =
607 cpu_to_le32(tcon->ses->server->vals->req_capabilities);
608 memcpy(vneg_inbuf.Guid, tcon->ses->server->client_guid,
609 SMB2_CLIENT_GUID_SIZE);
612 vneg_inbuf.SecurityMode =
613 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
614 else if (global_secflags & CIFSSEC_MAY_SIGN)
615 vneg_inbuf.SecurityMode =
616 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
618 vneg_inbuf.SecurityMode = 0;
620 vneg_inbuf.DialectCount = cpu_to_le16(1);
621 vneg_inbuf.Dialects[0] =
622 cpu_to_le16(tcon->ses->server->vals->protocol_id);
624 rc = SMB2_ioctl(xid, tcon, NO_FILE_ID, NO_FILE_ID,
625 FSCTL_VALIDATE_NEGOTIATE_INFO, true /* is_fsctl */,
627 (char *)&vneg_inbuf, sizeof(struct validate_negotiate_info_req),
628 (char **)&pneg_rsp, &rsplen);
631 cifs_dbg(VFS, "validate protocol negotiate failed: %d\n", rc);
635 if (rsplen != sizeof(struct validate_negotiate_info_rsp)) {
636 cifs_dbg(VFS, "invalid protocol negotiate response size: %d\n",
639 /* relax check since Mac returns max bufsize allowed on ioctl */
640 if (rsplen > CIFSMaxBufSize)
644 /* check validate negotiate info response matches what we got earlier */
645 if (pneg_rsp->Dialect !=
646 cpu_to_le16(tcon->ses->server->vals->protocol_id))
649 if (pneg_rsp->SecurityMode != cpu_to_le16(tcon->ses->server->sec_mode))
652 /* do not validate server guid because not saved at negprot time yet */
654 if ((le32_to_cpu(pneg_rsp->Capabilities) | SMB2_NT_FIND |
655 SMB2_LARGE_FILES) != tcon->ses->server->capabilities)
658 /* validate negotiate successful */
659 cifs_dbg(FYI, "validate negotiate info successful\n");
663 cifs_dbg(VFS, "protocol revalidation - security settings mismatch\n");
668 smb2_select_sectype(struct TCP_Server_Info *server, enum securityEnum requested)
677 if (server->sec_ntlmssp &&
678 (global_secflags & CIFSSEC_MAY_NTLMSSP))
680 if ((server->sec_kerberos || server->sec_mskerberos) &&
681 (global_secflags & CIFSSEC_MAY_KRB5))
689 struct SMB2_sess_data {
691 struct cifs_ses *ses;
692 struct nls_table *nls_cp;
693 void (*func)(struct SMB2_sess_data *);
695 u64 previous_session;
697 /* we will send the SMB in three pieces:
698 * a fixed length beginning part, an optional
699 * SPNEGO blob (which can be zero length), and a
700 * last part which will include the strings
701 * and rest of bcc area. This allows us to avoid
702 * a large buffer 17K allocation
709 SMB2_sess_alloc_buffer(struct SMB2_sess_data *sess_data)
712 struct cifs_ses *ses = sess_data->ses;
713 struct smb2_sess_setup_req *req;
714 struct TCP_Server_Info *server = ses->server;
716 rc = small_smb2_init(SMB2_SESSION_SETUP, NULL, (void **) &req);
720 /* First session, not a reauthenticate */
721 req->hdr.sync_hdr.SessionId = 0;
723 /* if reconnect, we need to send previous sess id, otherwise it is 0 */
724 req->PreviousSessionId = sess_data->previous_session;
726 req->Flags = 0; /* MBZ */
727 /* to enable echos and oplocks */
728 req->hdr.sync_hdr.CreditRequest = cpu_to_le16(3);
730 /* only one of SMB2 signing flags may be set in SMB2 request */
732 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_REQUIRED;
733 else if (global_secflags & CIFSSEC_MAY_SIGN) /* one flag unlike MUST_ */
734 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED;
736 req->SecurityMode = 0;
738 req->Capabilities = 0;
739 req->Channel = 0; /* MBZ */
741 sess_data->iov[0].iov_base = (char *)req;
742 /* 4 for rfc1002 length field and 1 for pad */
743 sess_data->iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
745 * This variable will be used to clear the buffer
746 * allocated above in case of any error in the calling function.
748 sess_data->buf0_type = CIFS_SMALL_BUFFER;
754 SMB2_sess_free_buffer(struct SMB2_sess_data *sess_data)
756 free_rsp_buf(sess_data->buf0_type, sess_data->iov[0].iov_base);
757 sess_data->buf0_type = CIFS_NO_BUFFER;
761 SMB2_sess_sendreceive(struct SMB2_sess_data *sess_data)
764 struct smb2_sess_setup_req *req = sess_data->iov[0].iov_base;
765 struct kvec rsp_iov = { NULL, 0 };
767 /* Testing shows that buffer offset must be at location of Buffer[0] */
768 req->SecurityBufferOffset =
769 cpu_to_le16(sizeof(struct smb2_sess_setup_req) -
770 1 /* pad */ - 4 /* rfc1001 len */);
771 req->SecurityBufferLength = cpu_to_le16(sess_data->iov[1].iov_len);
773 inc_rfc1001_len(req, sess_data->iov[1].iov_len - 1 /* pad */);
775 /* BB add code to build os and lm fields */
777 rc = SendReceive2(sess_data->xid, sess_data->ses,
779 &sess_data->buf0_type,
780 CIFS_LOG_ERROR | CIFS_NEG_OP, &rsp_iov);
781 cifs_small_buf_release(sess_data->iov[0].iov_base);
782 memcpy(&sess_data->iov[0], &rsp_iov, sizeof(struct kvec));
788 SMB2_sess_establish_session(struct SMB2_sess_data *sess_data)
791 struct cifs_ses *ses = sess_data->ses;
793 mutex_lock(&ses->server->srv_mutex);
794 if (ses->server->ops->generate_signingkey) {
795 rc = ses->server->ops->generate_signingkey(ses);
798 "SMB3 session key generation failed\n");
799 mutex_unlock(&ses->server->srv_mutex);
803 if (!ses->server->session_estab) {
804 ses->server->sequence_number = 0x2;
805 ses->server->session_estab = true;
807 mutex_unlock(&ses->server->srv_mutex);
809 cifs_dbg(FYI, "SMB2/3 session established successfully\n");
810 spin_lock(&GlobalMid_Lock);
811 ses->status = CifsGood;
812 ses->need_reconnect = false;
813 spin_unlock(&GlobalMid_Lock);
817 #ifdef CONFIG_CIFS_UPCALL
819 SMB2_auth_kerberos(struct SMB2_sess_data *sess_data)
822 struct cifs_ses *ses = sess_data->ses;
823 struct cifs_spnego_msg *msg;
824 struct key *spnego_key = NULL;
825 struct smb2_sess_setup_rsp *rsp = NULL;
827 rc = SMB2_sess_alloc_buffer(sess_data);
831 spnego_key = cifs_get_spnego_key(ses);
832 if (IS_ERR(spnego_key)) {
833 rc = PTR_ERR(spnego_key);
838 msg = spnego_key->payload.data[0];
840 * check version field to make sure that cifs.upcall is
841 * sending us a response in an expected form
843 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
845 "bad cifs.upcall version. Expected %d got %d",
846 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
848 goto out_put_spnego_key;
851 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
853 if (!ses->auth_key.response) {
855 "Kerberos can't allocate (%u bytes) memory",
858 goto out_put_spnego_key;
860 ses->auth_key.len = msg->sesskey_len;
862 sess_data->iov[1].iov_base = msg->data + msg->sesskey_len;
863 sess_data->iov[1].iov_len = msg->secblob_len;
865 rc = SMB2_sess_sendreceive(sess_data);
867 goto out_put_spnego_key;
869 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
870 ses->Suid = rsp->hdr.sync_hdr.SessionId;
872 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
874 rc = SMB2_sess_establish_session(sess_data);
876 key_invalidate(spnego_key);
879 sess_data->result = rc;
880 sess_data->func = NULL;
881 SMB2_sess_free_buffer(sess_data);
885 SMB2_auth_kerberos(struct SMB2_sess_data *sess_data)
887 cifs_dbg(VFS, "Kerberos negotiated but upcall support disabled!\n");
888 sess_data->result = -EOPNOTSUPP;
889 sess_data->func = NULL;
894 SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data);
897 SMB2_sess_auth_rawntlmssp_negotiate(struct SMB2_sess_data *sess_data)
900 struct cifs_ses *ses = sess_data->ses;
901 struct smb2_sess_setup_rsp *rsp = NULL;
902 char *ntlmssp_blob = NULL;
903 bool use_spnego = false; /* else use raw ntlmssp */
907 * If memory allocation is successful, caller of this function
910 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
915 ses->ntlmssp->sesskey_per_smbsess = true;
917 rc = SMB2_sess_alloc_buffer(sess_data);
921 ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE),
923 if (ntlmssp_blob == NULL) {
928 build_ntlmssp_negotiate_blob(ntlmssp_blob, ses);
930 /* BB eventually need to add this */
931 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
935 blob_length = sizeof(struct _NEGOTIATE_MESSAGE);
936 /* with raw NTLMSSP we don't encapsulate in SPNEGO */
938 sess_data->iov[1].iov_base = ntlmssp_blob;
939 sess_data->iov[1].iov_len = blob_length;
941 rc = SMB2_sess_sendreceive(sess_data);
942 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
944 /* If true, rc here is expected and not an error */
945 if (sess_data->buf0_type != CIFS_NO_BUFFER &&
946 rsp->hdr.sync_hdr.Status == STATUS_MORE_PROCESSING_REQUIRED)
952 if (offsetof(struct smb2_sess_setup_rsp, Buffer) - 4 !=
953 le16_to_cpu(rsp->SecurityBufferOffset)) {
954 cifs_dbg(VFS, "Invalid security buffer offset %d\n",
955 le16_to_cpu(rsp->SecurityBufferOffset));
959 rc = decode_ntlmssp_challenge(rsp->Buffer,
960 le16_to_cpu(rsp->SecurityBufferLength), ses);
964 cifs_dbg(FYI, "rawntlmssp session setup challenge phase\n");
967 ses->Suid = rsp->hdr.sync_hdr.SessionId;
968 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
972 SMB2_sess_free_buffer(sess_data);
974 sess_data->result = 0;
975 sess_data->func = SMB2_sess_auth_rawntlmssp_authenticate;
981 sess_data->result = rc;
982 sess_data->func = NULL;
986 SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data)
989 struct cifs_ses *ses = sess_data->ses;
990 struct smb2_sess_setup_req *req;
991 struct smb2_sess_setup_rsp *rsp = NULL;
992 unsigned char *ntlmssp_blob = NULL;
993 bool use_spnego = false; /* else use raw ntlmssp */
996 rc = SMB2_sess_alloc_buffer(sess_data);
1000 req = (struct smb2_sess_setup_req *) sess_data->iov[0].iov_base;
1001 req->hdr.sync_hdr.SessionId = ses->Suid;
1003 rc = build_ntlmssp_auth_blob(&ntlmssp_blob, &blob_length, ses,
1006 cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n", rc);
1011 /* BB eventually need to add this */
1012 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
1016 sess_data->iov[1].iov_base = ntlmssp_blob;
1017 sess_data->iov[1].iov_len = blob_length;
1019 rc = SMB2_sess_sendreceive(sess_data);
1023 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
1025 ses->Suid = rsp->hdr.sync_hdr.SessionId;
1026 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
1028 rc = SMB2_sess_establish_session(sess_data);
1030 kfree(ntlmssp_blob);
1031 SMB2_sess_free_buffer(sess_data);
1032 kfree(ses->ntlmssp);
1033 ses->ntlmssp = NULL;
1034 sess_data->result = rc;
1035 sess_data->func = NULL;
1039 SMB2_select_sec(struct cifs_ses *ses, struct SMB2_sess_data *sess_data)
1043 type = smb2_select_sectype(ses->server, ses->sectype);
1044 cifs_dbg(FYI, "sess setup type %d\n", type);
1045 if (type == Unspecified) {
1047 "Unable to select appropriate authentication method!");
1053 sess_data->func = SMB2_auth_kerberos;
1056 sess_data->func = SMB2_sess_auth_rawntlmssp_negotiate;
1059 cifs_dbg(VFS, "secType %d not supported!\n", type);
1067 SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
1068 const struct nls_table *nls_cp)
1071 struct TCP_Server_Info *server = ses->server;
1072 struct SMB2_sess_data *sess_data;
1074 cifs_dbg(FYI, "Session Setup\n");
1077 WARN(1, "%s: server is NULL!\n", __func__);
1081 sess_data = kzalloc(sizeof(struct SMB2_sess_data), GFP_KERNEL);
1085 rc = SMB2_select_sec(ses, sess_data);
1088 sess_data->xid = xid;
1089 sess_data->ses = ses;
1090 sess_data->buf0_type = CIFS_NO_BUFFER;
1091 sess_data->nls_cp = (struct nls_table *) nls_cp;
1093 while (sess_data->func)
1094 sess_data->func(sess_data);
1096 rc = sess_data->result;
1103 SMB2_logoff(const unsigned int xid, struct cifs_ses *ses)
1105 struct smb2_logoff_req *req; /* response is also trivial struct */
1107 struct TCP_Server_Info *server;
1110 cifs_dbg(FYI, "disconnect session %p\n", ses);
1112 if (ses && (ses->server))
1113 server = ses->server;
1117 /* no need to send SMB logoff if uid already closed due to reconnect */
1118 if (ses->need_reconnect)
1119 goto smb2_session_already_dead;
1121 rc = small_smb2_init(SMB2_LOGOFF, NULL, (void **) &req);
1125 /* since no tcon, smb2_init can not do this, so do here */
1126 req->hdr.sync_hdr.SessionId = ses->Suid;
1128 if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA)
1129 flags |= CIFS_TRANSFORM_REQ;
1130 else if (server->sign)
1131 req->hdr.sync_hdr.Flags |= SMB2_FLAGS_SIGNED;
1133 rc = SendReceiveNoRsp(xid, ses, (char *) req, flags);
1134 cifs_small_buf_release(req);
1136 * No tcon so can't do
1137 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
1140 smb2_session_already_dead:
1144 static inline void cifs_stats_fail_inc(struct cifs_tcon *tcon, uint16_t code)
1146 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_failed[code]);
1149 #define MAX_SHARENAME_LENGTH (255 /* server */ + 80 /* share */ + 1 /* NULL */)
1151 /* These are similar values to what Windows uses */
1152 static inline void init_copy_chunk_defaults(struct cifs_tcon *tcon)
1154 tcon->max_chunks = 256;
1155 tcon->max_bytes_chunk = 1048576;
1156 tcon->max_bytes_copy = 16777216;
1160 SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
1161 struct cifs_tcon *tcon, const struct nls_table *cp)
1163 struct smb2_tree_connect_req *req;
1164 struct smb2_tree_connect_rsp *rsp = NULL;
1166 struct kvec rsp_iov;
1170 struct TCP_Server_Info *server;
1171 __le16 *unc_path = NULL;
1174 cifs_dbg(FYI, "TCON\n");
1176 if ((ses->server) && tree)
1177 server = ses->server;
1181 unc_path = kmalloc(MAX_SHARENAME_LENGTH * 2, GFP_KERNEL);
1182 if (unc_path == NULL)
1185 unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp) + 1;
1187 if (unc_path_len < 2) {
1192 /* SMB2 TREE_CONNECT request must be called with TreeId == 0 */
1196 rc = small_smb2_init(SMB2_TREE_CONNECT, tcon, (void **) &req);
1203 if ((ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA))
1204 flags |= CIFS_TRANSFORM_REQ;
1206 /* since no tcon, smb2_init can not do this, so do here */
1207 req->hdr.sync_hdr.SessionId = ses->Suid;
1208 if (ses->server->sign)
1209 req->hdr.sync_hdr.Flags |= SMB2_FLAGS_SIGNED;
1210 } else if (encryption_required(tcon))
1211 flags |= CIFS_TRANSFORM_REQ;
1213 iov[0].iov_base = (char *)req;
1214 /* 4 for rfc1002 length field and 1 for pad */
1215 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1217 /* Testing shows that buffer offset must be at location of Buffer[0] */
1218 req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)
1219 - 1 /* pad */ - 4 /* do not count rfc1001 len field */);
1220 req->PathLength = cpu_to_le16(unc_path_len - 2);
1221 iov[1].iov_base = unc_path;
1222 iov[1].iov_len = unc_path_len;
1224 inc_rfc1001_len(req, unc_path_len - 1 /* pad */);
1226 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, flags, &rsp_iov);
1227 cifs_small_buf_release(req);
1228 rsp = (struct smb2_tree_connect_rsp *)rsp_iov.iov_base;
1232 cifs_stats_fail_inc(tcon, SMB2_TREE_CONNECT_HE);
1233 tcon->need_reconnect = true;
1235 goto tcon_error_exit;
1239 ses->ipc_tid = rsp->hdr.sync_hdr.TreeId;
1243 if (rsp->ShareType & SMB2_SHARE_TYPE_DISK)
1244 cifs_dbg(FYI, "connection to disk share\n");
1245 else if (rsp->ShareType & SMB2_SHARE_TYPE_PIPE) {
1247 cifs_dbg(FYI, "connection to pipe share\n");
1248 } else if (rsp->ShareType & SMB2_SHARE_TYPE_PRINT) {
1250 cifs_dbg(FYI, "connection to printer\n");
1252 cifs_dbg(VFS, "unknown share type %d\n", rsp->ShareType);
1254 goto tcon_error_exit;
1257 tcon->share_flags = le32_to_cpu(rsp->ShareFlags);
1258 tcon->capabilities = rsp->Capabilities; /* we keep caps little endian */
1259 tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess);
1260 tcon->tidStatus = CifsGood;
1261 tcon->need_reconnect = false;
1262 tcon->tid = rsp->hdr.sync_hdr.TreeId;
1263 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
1265 if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) &&
1266 ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0))
1267 cifs_dbg(VFS, "DFS capability contradicts DFS flag\n");
1270 !(tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION))
1271 cifs_dbg(VFS, "Encryption is requested but not supported\n");
1273 init_copy_chunk_defaults(tcon);
1274 if (tcon->ses->server->ops->validate_negotiate)
1275 rc = tcon->ses->server->ops->validate_negotiate(xid, tcon);
1277 free_rsp_buf(resp_buftype, rsp);
1282 if (rsp->hdr.sync_hdr.Status == STATUS_BAD_NETWORK_NAME) {
1283 cifs_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree);
1289 SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
1291 struct smb2_tree_disconnect_req *req; /* response is trivial */
1293 struct TCP_Server_Info *server;
1294 struct cifs_ses *ses = tcon->ses;
1297 cifs_dbg(FYI, "Tree Disconnect\n");
1299 if (ses && (ses->server))
1300 server = ses->server;
1304 if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
1307 rc = small_smb2_init(SMB2_TREE_DISCONNECT, tcon, (void **) &req);
1311 if (encryption_required(tcon))
1312 flags |= CIFS_TRANSFORM_REQ;
1314 rc = SendReceiveNoRsp(xid, ses, (char *)req, flags);
1315 cifs_small_buf_release(req);
1317 cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE);
1323 static struct create_durable *
1324 create_durable_buf(void)
1326 struct create_durable *buf;
1328 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1332 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1333 (struct create_durable, Data));
1334 buf->ccontext.DataLength = cpu_to_le32(16);
1335 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1336 (struct create_durable, Name));
1337 buf->ccontext.NameLength = cpu_to_le16(4);
1338 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DHnQ" */
1346 static struct create_durable *
1347 create_reconnect_durable_buf(struct cifs_fid *fid)
1349 struct create_durable *buf;
1351 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1355 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1356 (struct create_durable, Data));
1357 buf->ccontext.DataLength = cpu_to_le32(16);
1358 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1359 (struct create_durable, Name));
1360 buf->ccontext.NameLength = cpu_to_le16(4);
1361 buf->Data.Fid.PersistentFileId = fid->persistent_fid;
1362 buf->Data.Fid.VolatileFileId = fid->volatile_fid;
1363 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT is "DHnC" */
1372 parse_lease_state(struct TCP_Server_Info *server, struct smb2_create_rsp *rsp,
1373 unsigned int *epoch)
1376 struct create_context *cc;
1378 unsigned int remaining;
1381 data_offset = (char *)rsp + 4 + le32_to_cpu(rsp->CreateContextsOffset);
1382 remaining = le32_to_cpu(rsp->CreateContextsLength);
1383 cc = (struct create_context *)data_offset;
1384 while (remaining >= sizeof(struct create_context)) {
1385 name = le16_to_cpu(cc->NameOffset) + (char *)cc;
1386 if (le16_to_cpu(cc->NameLength) == 4 &&
1387 strncmp(name, "RqLs", 4) == 0)
1388 return server->ops->parse_lease_buf(cc, epoch);
1390 next = le32_to_cpu(cc->Next);
1394 cc = (struct create_context *)((char *)cc + next);
1401 add_lease_context(struct TCP_Server_Info *server, struct kvec *iov,
1402 unsigned int *num_iovec, __u8 *oplock)
1404 struct smb2_create_req *req = iov[0].iov_base;
1405 unsigned int num = *num_iovec;
1407 iov[num].iov_base = server->ops->create_lease_buf(oplock+1, *oplock);
1408 if (iov[num].iov_base == NULL)
1410 iov[num].iov_len = server->vals->create_lease_size;
1411 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_LEASE;
1412 if (!req->CreateContextsOffset)
1413 req->CreateContextsOffset = cpu_to_le32(
1414 sizeof(struct smb2_create_req) - 4 +
1415 iov[num - 1].iov_len);
1416 le32_add_cpu(&req->CreateContextsLength,
1417 server->vals->create_lease_size);
1418 inc_rfc1001_len(&req->hdr, server->vals->create_lease_size);
1419 *num_iovec = num + 1;
1423 static struct create_durable_v2 *
1424 create_durable_v2_buf(struct cifs_fid *pfid)
1426 struct create_durable_v2 *buf;
1428 buf = kzalloc(sizeof(struct create_durable_v2), GFP_KERNEL);
1432 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1433 (struct create_durable_v2, dcontext));
1434 buf->ccontext.DataLength = cpu_to_le32(sizeof(struct durable_context_v2));
1435 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1436 (struct create_durable_v2, Name));
1437 buf->ccontext.NameLength = cpu_to_le16(4);
1439 buf->dcontext.Timeout = 0; /* Should this be configurable by workload */
1440 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
1441 generate_random_uuid(buf->dcontext.CreateGuid);
1442 memcpy(pfid->create_guid, buf->dcontext.CreateGuid, 16);
1444 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DH2Q" */
1452 static struct create_durable_handle_reconnect_v2 *
1453 create_reconnect_durable_v2_buf(struct cifs_fid *fid)
1455 struct create_durable_handle_reconnect_v2 *buf;
1457 buf = kzalloc(sizeof(struct create_durable_handle_reconnect_v2),
1462 buf->ccontext.DataOffset =
1463 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
1465 buf->ccontext.DataLength =
1466 cpu_to_le32(sizeof(struct durable_reconnect_context_v2));
1467 buf->ccontext.NameOffset =
1468 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
1470 buf->ccontext.NameLength = cpu_to_le16(4);
1472 buf->dcontext.Fid.PersistentFileId = fid->persistent_fid;
1473 buf->dcontext.Fid.VolatileFileId = fid->volatile_fid;
1474 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
1475 memcpy(buf->dcontext.CreateGuid, fid->create_guid, 16);
1477 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 is "DH2C" */
1486 add_durable_v2_context(struct kvec *iov, unsigned int *num_iovec,
1487 struct cifs_open_parms *oparms)
1489 struct smb2_create_req *req = iov[0].iov_base;
1490 unsigned int num = *num_iovec;
1492 iov[num].iov_base = create_durable_v2_buf(oparms->fid);
1493 if (iov[num].iov_base == NULL)
1495 iov[num].iov_len = sizeof(struct create_durable_v2);
1496 if (!req->CreateContextsOffset)
1497 req->CreateContextsOffset =
1498 cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1500 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable_v2));
1501 inc_rfc1001_len(&req->hdr, sizeof(struct create_durable_v2));
1502 *num_iovec = num + 1;
1507 add_durable_reconnect_v2_context(struct kvec *iov, unsigned int *num_iovec,
1508 struct cifs_open_parms *oparms)
1510 struct smb2_create_req *req = iov[0].iov_base;
1511 unsigned int num = *num_iovec;
1513 /* indicate that we don't need to relock the file */
1514 oparms->reconnect = false;
1516 iov[num].iov_base = create_reconnect_durable_v2_buf(oparms->fid);
1517 if (iov[num].iov_base == NULL)
1519 iov[num].iov_len = sizeof(struct create_durable_handle_reconnect_v2);
1520 if (!req->CreateContextsOffset)
1521 req->CreateContextsOffset =
1522 cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1524 le32_add_cpu(&req->CreateContextsLength,
1525 sizeof(struct create_durable_handle_reconnect_v2));
1526 inc_rfc1001_len(&req->hdr,
1527 sizeof(struct create_durable_handle_reconnect_v2));
1528 *num_iovec = num + 1;
1533 add_durable_context(struct kvec *iov, unsigned int *num_iovec,
1534 struct cifs_open_parms *oparms, bool use_persistent)
1536 struct smb2_create_req *req = iov[0].iov_base;
1537 unsigned int num = *num_iovec;
1539 if (use_persistent) {
1540 if (oparms->reconnect)
1541 return add_durable_reconnect_v2_context(iov, num_iovec,
1544 return add_durable_v2_context(iov, num_iovec, oparms);
1547 if (oparms->reconnect) {
1548 iov[num].iov_base = create_reconnect_durable_buf(oparms->fid);
1549 /* indicate that we don't need to relock the file */
1550 oparms->reconnect = false;
1552 iov[num].iov_base = create_durable_buf();
1553 if (iov[num].iov_base == NULL)
1555 iov[num].iov_len = sizeof(struct create_durable);
1556 if (!req->CreateContextsOffset)
1557 req->CreateContextsOffset =
1558 cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1560 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable));
1561 inc_rfc1001_len(&req->hdr, sizeof(struct create_durable));
1562 *num_iovec = num + 1;
1567 alloc_path_with_tree_prefix(__le16 **out_path, int *out_size, int *out_len,
1568 const char *treename, const __le16 *path)
1570 int treename_len, path_len;
1571 struct nls_table *cp;
1572 const __le16 sep[] = {cpu_to_le16('\\'), cpu_to_le16(0x0000)};
1577 treename_len = strlen(treename);
1578 if (treename_len < 2 || !(treename[0] == '\\' && treename[1] == '\\'))
1584 path_len = UniStrnlen((wchar_t *)path, PATH_MAX);
1587 * make room for one path separator between the treename and
1590 *out_len = treename_len + 1 + path_len;
1593 * final path needs to be null-terminated UTF16 with a
1597 *out_size = roundup((*out_len+1)*2, 8);
1598 *out_path = kzalloc(*out_size, GFP_KERNEL);
1602 cp = load_nls_default();
1603 cifs_strtoUTF16(*out_path, treename, treename_len, cp);
1604 UniStrcat(*out_path, sep);
1605 UniStrcat(*out_path, path);
1612 SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, __le16 *path,
1613 __u8 *oplock, struct smb2_file_all_info *buf,
1614 struct smb2_err_rsp **err_buf)
1616 struct smb2_create_req *req;
1617 struct smb2_create_rsp *rsp;
1618 struct TCP_Server_Info *server;
1619 struct cifs_tcon *tcon = oparms->tcon;
1620 struct cifs_ses *ses = tcon->ses;
1622 struct kvec rsp_iov;
1625 __le16 *copy_path = NULL;
1628 unsigned int n_iov = 2;
1629 __u32 file_attributes = 0;
1630 char *dhc_buf = NULL, *lc_buf = NULL;
1633 cifs_dbg(FYI, "create/open\n");
1635 if (ses && (ses->server))
1636 server = ses->server;
1640 rc = small_smb2_init(SMB2_CREATE, tcon, (void **) &req);
1644 if (encryption_required(tcon))
1645 flags |= CIFS_TRANSFORM_REQ;
1647 if (oparms->create_options & CREATE_OPTION_READONLY)
1648 file_attributes |= ATTR_READONLY;
1649 if (oparms->create_options & CREATE_OPTION_SPECIAL)
1650 file_attributes |= ATTR_SYSTEM;
1652 req->ImpersonationLevel = IL_IMPERSONATION;
1653 req->DesiredAccess = cpu_to_le32(oparms->desired_access);
1654 /* File attributes ignored on open (used in create though) */
1655 req->FileAttributes = cpu_to_le32(file_attributes);
1656 req->ShareAccess = FILE_SHARE_ALL_LE;
1657 req->CreateDisposition = cpu_to_le32(oparms->disposition);
1658 req->CreateOptions = cpu_to_le32(oparms->create_options & CREATE_OPTIONS_MASK);
1660 iov[0].iov_base = (char *)req;
1661 /* 4 for rfc1002 length field */
1662 iov[0].iov_len = get_rfc1002_length(req) + 4;
1663 /* -1 since last byte is buf[0] which is sent below (path) */
1666 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req) - 4);
1668 /* [MS-SMB2] 2.2.13 NameOffset:
1669 * If SMB2_FLAGS_DFS_OPERATIONS is set in the Flags field of
1670 * the SMB2 header, the file name includes a prefix that will
1671 * be processed during DFS name normalization as specified in
1672 * section 3.3.5.9. Otherwise, the file name is relative to
1673 * the share that is identified by the TreeId in the SMB2
1676 if (tcon->share_flags & SHI1005_FLAGS_DFS) {
1679 req->hdr.sync_hdr.Flags |= SMB2_FLAGS_DFS_OPERATIONS;
1680 rc = alloc_path_with_tree_prefix(©_path, ©_size,
1682 tcon->treeName, path);
1685 req->NameLength = cpu_to_le16(name_len * 2);
1686 uni_path_len = copy_size;
1689 uni_path_len = (2 * UniStrnlen((wchar_t *)path, PATH_MAX)) + 2;
1690 /* MUST set path len (NameLength) to 0 opening root of share */
1691 req->NameLength = cpu_to_le16(uni_path_len - 2);
1692 if (uni_path_len % 8 != 0) {
1693 copy_size = roundup(uni_path_len, 8);
1694 copy_path = kzalloc(copy_size, GFP_KERNEL);
1697 memcpy((char *)copy_path, (const char *)path,
1699 uni_path_len = copy_size;
1704 iov[1].iov_len = uni_path_len;
1705 iov[1].iov_base = path;
1706 /* -1 since last byte is buf[0] which was counted in smb2_buf_len */
1707 inc_rfc1001_len(req, uni_path_len - 1);
1709 if (!server->oplocks)
1710 *oplock = SMB2_OPLOCK_LEVEL_NONE;
1712 if (!(server->capabilities & SMB2_GLOBAL_CAP_LEASING) ||
1713 *oplock == SMB2_OPLOCK_LEVEL_NONE)
1714 req->RequestedOplockLevel = *oplock;
1716 rc = add_lease_context(server, iov, &n_iov, oplock);
1718 cifs_small_buf_release(req);
1722 lc_buf = iov[n_iov-1].iov_base;
1725 if (*oplock == SMB2_OPLOCK_LEVEL_BATCH) {
1726 /* need to set Next field of lease context if we request it */
1727 if (server->capabilities & SMB2_GLOBAL_CAP_LEASING) {
1728 struct create_context *ccontext =
1729 (struct create_context *)iov[n_iov-1].iov_base;
1731 cpu_to_le32(server->vals->create_lease_size);
1734 rc = add_durable_context(iov, &n_iov, oparms,
1735 tcon->use_persistent);
1737 cifs_small_buf_release(req);
1742 dhc_buf = iov[n_iov-1].iov_base;
1745 rc = SendReceive2(xid, ses, iov, n_iov, &resp_buftype, flags, &rsp_iov);
1746 cifs_small_buf_release(req);
1747 rsp = (struct smb2_create_rsp *)rsp_iov.iov_base;
1750 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
1752 *err_buf = kmemdup(rsp, get_rfc1002_length(rsp) + 4,
1757 oparms->fid->persistent_fid = rsp->PersistentFileId;
1758 oparms->fid->volatile_fid = rsp->VolatileFileId;
1761 memcpy(buf, &rsp->CreationTime, 32);
1762 buf->AllocationSize = rsp->AllocationSize;
1763 buf->EndOfFile = rsp->EndofFile;
1764 buf->Attributes = rsp->FileAttributes;
1765 buf->NumberOfLinks = cpu_to_le32(1);
1766 buf->DeletePending = 0;
1769 if (rsp->OplockLevel == SMB2_OPLOCK_LEVEL_LEASE)
1770 *oplock = parse_lease_state(server, rsp, &oparms->fid->epoch);
1772 *oplock = rsp->OplockLevel;
1777 free_rsp_buf(resp_buftype, rsp);
1782 * SMB2 IOCTL is used for both IOCTLs and FSCTLs
1785 SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
1786 u64 volatile_fid, u32 opcode, bool is_fsctl, bool use_ipc,
1787 char *in_data, u32 indatalen,
1788 char **out_data, u32 *plen /* returned data len */)
1790 struct smb2_ioctl_req *req;
1791 struct smb2_ioctl_rsp *rsp;
1792 struct smb2_sync_hdr *shdr;
1793 struct TCP_Server_Info *server;
1794 struct cifs_ses *ses;
1796 struct kvec rsp_iov;
1802 cifs_dbg(FYI, "SMB2 IOCTL\n");
1804 if (out_data != NULL)
1807 /* zero out returned data len, in case of error */
1816 if (ses && (ses->server))
1817 server = ses->server;
1821 rc = small_smb2_init(SMB2_IOCTL, tcon, (void **) &req);
1826 if (ses->ipc_tid == 0) {
1827 cifs_small_buf_release(req);
1831 cifs_dbg(FYI, "replacing tid 0x%x with IPC tid 0x%x\n",
1832 req->hdr.sync_hdr.TreeId, ses->ipc_tid);
1833 req->hdr.sync_hdr.TreeId = ses->ipc_tid;
1835 if (encryption_required(tcon))
1836 flags |= CIFS_TRANSFORM_REQ;
1838 req->CtlCode = cpu_to_le32(opcode);
1839 req->PersistentFileId = persistent_fid;
1840 req->VolatileFileId = volatile_fid;
1843 req->InputCount = cpu_to_le32(indatalen);
1844 /* do not set InputOffset if no input data */
1846 cpu_to_le32(offsetof(struct smb2_ioctl_req, Buffer) - 4);
1847 iov[1].iov_base = in_data;
1848 iov[1].iov_len = indatalen;
1853 req->OutputOffset = 0;
1854 req->OutputCount = 0; /* MBZ */
1857 * Could increase MaxOutputResponse, but that would require more
1858 * than one credit. Windows typically sets this smaller, but for some
1859 * ioctls it may be useful to allow server to send more. No point
1860 * limiting what the server can send as long as fits in one credit
1861 * Unfortunately - we can not handle more than CIFS_MAX_MSG_SIZE
1862 * (by default, note that it can be overridden to make max larger)
1863 * in responses (except for read responses which can be bigger.
1864 * We may want to bump this limit up
1866 req->MaxOutputResponse = cpu_to_le32(CIFSMaxBufSize);
1869 req->Flags = cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL);
1873 iov[0].iov_base = (char *)req;
1876 * If no input data, the size of ioctl struct in
1877 * protocol spec still includes a 1 byte data buffer,
1878 * but if input data passed to ioctl, we do not
1879 * want to double count this, so we do not send
1880 * the dummy one byte of data in iovec[0] if sending
1881 * input data (in iovec[1]). We also must add 4 bytes
1882 * in first iovec to allow for rfc1002 length field.
1886 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1887 inc_rfc1001_len(req, indatalen - 1);
1889 iov[0].iov_len = get_rfc1002_length(req) + 4;
1892 rc = SendReceive2(xid, ses, iov, n_iov, &resp_buftype, flags, &rsp_iov);
1893 cifs_small_buf_release(req);
1894 rsp = (struct smb2_ioctl_rsp *)rsp_iov.iov_base;
1896 if ((rc != 0) && (rc != -EINVAL)) {
1897 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
1899 } else if (rc == -EINVAL) {
1900 if ((opcode != FSCTL_SRV_COPYCHUNK_WRITE) &&
1901 (opcode != FSCTL_SRV_COPYCHUNK)) {
1902 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
1907 /* check if caller wants to look at return data or just return rc */
1908 if ((plen == NULL) || (out_data == NULL))
1911 *plen = le32_to_cpu(rsp->OutputCount);
1913 /* We check for obvious errors in the output buffer length and offset */
1915 goto ioctl_exit; /* server returned no data */
1916 else if (*plen > 0xFF00) {
1917 cifs_dbg(VFS, "srv returned invalid ioctl length: %d\n", *plen);
1923 if (get_rfc1002_length(rsp) < le32_to_cpu(rsp->OutputOffset) + *plen) {
1924 cifs_dbg(VFS, "Malformed ioctl resp: len %d offset %d\n", *plen,
1925 le32_to_cpu(rsp->OutputOffset));
1931 *out_data = kmalloc(*plen, GFP_KERNEL);
1932 if (*out_data == NULL) {
1937 shdr = get_sync_hdr(rsp);
1938 memcpy(*out_data, (char *)shdr + le32_to_cpu(rsp->OutputOffset), *plen);
1940 free_rsp_buf(resp_buftype, rsp);
1945 * Individual callers to ioctl worker function follow
1949 SMB2_set_compression(const unsigned int xid, struct cifs_tcon *tcon,
1950 u64 persistent_fid, u64 volatile_fid)
1953 struct compress_ioctl fsctl_input;
1954 char *ret_data = NULL;
1956 fsctl_input.CompressionState =
1957 cpu_to_le16(COMPRESSION_FORMAT_DEFAULT);
1959 rc = SMB2_ioctl(xid, tcon, persistent_fid, volatile_fid,
1960 FSCTL_SET_COMPRESSION, true /* is_fsctl */,
1961 false /* use_ipc */,
1962 (char *)&fsctl_input /* data input */,
1963 2 /* in data len */, &ret_data /* out data */, NULL);
1965 cifs_dbg(FYI, "set compression rc %d\n", rc);
1971 SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
1972 u64 persistent_fid, u64 volatile_fid)
1974 struct smb2_close_req *req;
1975 struct smb2_close_rsp *rsp;
1976 struct TCP_Server_Info *server;
1977 struct cifs_ses *ses = tcon->ses;
1979 struct kvec rsp_iov;
1984 cifs_dbg(FYI, "Close\n");
1986 if (ses && (ses->server))
1987 server = ses->server;
1991 rc = small_smb2_init(SMB2_CLOSE, tcon, (void **) &req);
1995 if (encryption_required(tcon))
1996 flags |= CIFS_TRANSFORM_REQ;
1998 req->PersistentFileId = persistent_fid;
1999 req->VolatileFileId = volatile_fid;
2001 iov[0].iov_base = (char *)req;
2002 /* 4 for rfc1002 length field */
2003 iov[0].iov_len = get_rfc1002_length(req) + 4;
2005 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags, &rsp_iov);
2006 cifs_small_buf_release(req);
2007 rsp = (struct smb2_close_rsp *)rsp_iov.iov_base;
2010 cifs_stats_fail_inc(tcon, SMB2_CLOSE_HE);
2014 /* BB FIXME - decode close response, update inode for caching */
2017 free_rsp_buf(resp_buftype, rsp);
2022 validate_buf(unsigned int offset, unsigned int buffer_length,
2023 struct smb2_hdr *hdr, unsigned int min_buf_size)
2026 unsigned int smb_len = be32_to_cpu(hdr->smb2_buf_length);
2027 char *end_of_smb = smb_len + 4 /* RFC1001 length field */ + (char *)hdr;
2028 char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
2029 char *end_of_buf = begin_of_buf + buffer_length;
2032 if (buffer_length < min_buf_size) {
2033 cifs_dbg(VFS, "buffer length %d smaller than minimum size %d\n",
2034 buffer_length, min_buf_size);
2038 /* check if beyond RFC1001 maximum length */
2039 if ((smb_len > 0x7FFFFF) || (buffer_length > 0x7FFFFF)) {
2040 cifs_dbg(VFS, "buffer length %d or smb length %d too large\n",
2041 buffer_length, smb_len);
2045 if ((begin_of_buf > end_of_smb) || (end_of_buf > end_of_smb)) {
2046 cifs_dbg(VFS, "illegal server response, bad offset to data\n");
2054 * If SMB buffer fields are valid, copy into temporary buffer to hold result.
2055 * Caller must free buffer.
2058 validate_and_copy_buf(unsigned int offset, unsigned int buffer_length,
2059 struct smb2_hdr *hdr, unsigned int minbufsize,
2063 char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
2069 rc = validate_buf(offset, buffer_length, hdr, minbufsize);
2073 memcpy(data, begin_of_buf, buffer_length);
2079 query_info(const unsigned int xid, struct cifs_tcon *tcon,
2080 u64 persistent_fid, u64 volatile_fid, u8 info_class,
2081 size_t output_len, size_t min_len, void *data)
2083 struct smb2_query_info_req *req;
2084 struct smb2_query_info_rsp *rsp = NULL;
2086 struct kvec rsp_iov;
2089 struct TCP_Server_Info *server;
2090 struct cifs_ses *ses = tcon->ses;
2093 cifs_dbg(FYI, "Query Info\n");
2095 if (ses && (ses->server))
2096 server = ses->server;
2100 rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
2104 if (encryption_required(tcon))
2105 flags |= CIFS_TRANSFORM_REQ;
2107 req->InfoType = SMB2_O_INFO_FILE;
2108 req->FileInfoClass = info_class;
2109 req->PersistentFileId = persistent_fid;
2110 req->VolatileFileId = volatile_fid;
2111 /* 4 for rfc1002 length field and 1 for Buffer */
2112 req->InputBufferOffset =
2113 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
2114 req->OutputBufferLength = cpu_to_le32(output_len);
2116 iov[0].iov_base = (char *)req;
2117 /* 4 for rfc1002 length field */
2118 iov[0].iov_len = get_rfc1002_length(req) + 4;
2120 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags, &rsp_iov);
2121 cifs_small_buf_release(req);
2122 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
2125 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
2129 rc = validate_and_copy_buf(le16_to_cpu(rsp->OutputBufferOffset),
2130 le32_to_cpu(rsp->OutputBufferLength),
2131 &rsp->hdr, min_len, data);
2134 free_rsp_buf(resp_buftype, rsp);
2139 SMB2_query_info(const unsigned int xid, struct cifs_tcon *tcon,
2140 u64 persistent_fid, u64 volatile_fid,
2141 struct smb2_file_all_info *data)
2143 return query_info(xid, tcon, persistent_fid, volatile_fid,
2144 FILE_ALL_INFORMATION,
2145 sizeof(struct smb2_file_all_info) + PATH_MAX * 2,
2146 sizeof(struct smb2_file_all_info), data);
2150 SMB2_get_srv_num(const unsigned int xid, struct cifs_tcon *tcon,
2151 u64 persistent_fid, u64 volatile_fid, __le64 *uniqueid)
2153 return query_info(xid, tcon, persistent_fid, volatile_fid,
2154 FILE_INTERNAL_INFORMATION,
2155 sizeof(struct smb2_file_internal_info),
2156 sizeof(struct smb2_file_internal_info), uniqueid);
2160 * This is a no-op for now. We're not really interested in the reply, but
2161 * rather in the fact that the server sent one and that server->lstrp
2164 * FIXME: maybe we should consider checking that the reply matches request?
2167 smb2_echo_callback(struct mid_q_entry *mid)
2169 struct TCP_Server_Info *server = mid->callback_data;
2170 struct smb2_echo_rsp *rsp = (struct smb2_echo_rsp *)mid->resp_buf;
2171 unsigned int credits_received = 1;
2173 if (mid->mid_state == MID_RESPONSE_RECEIVED)
2174 credits_received = le16_to_cpu(rsp->hdr.sync_hdr.CreditRequest);
2176 DeleteMidQEntry(mid);
2177 add_credits(server, credits_received, CIFS_ECHO_OP);
2180 void smb2_reconnect_server(struct work_struct *work)
2182 struct TCP_Server_Info *server = container_of(work,
2183 struct TCP_Server_Info, reconnect.work);
2184 struct cifs_ses *ses;
2185 struct cifs_tcon *tcon, *tcon2;
2186 struct list_head tmp_list;
2187 int tcon_exist = false;
2189 int resched = false;
2192 /* Prevent simultaneous reconnects that can corrupt tcon->rlist list */
2193 mutex_lock(&server->reconnect_mutex);
2195 INIT_LIST_HEAD(&tmp_list);
2196 cifs_dbg(FYI, "Need negotiate, reconnecting tcons\n");
2198 spin_lock(&cifs_tcp_ses_lock);
2199 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
2200 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
2201 if (tcon->need_reconnect || tcon->need_reopen_files) {
2203 list_add_tail(&tcon->rlist, &tmp_list);
2209 * Get the reference to server struct to be sure that the last call of
2210 * cifs_put_tcon() in the loop below won't release the server pointer.
2213 server->srv_count++;
2215 spin_unlock(&cifs_tcp_ses_lock);
2217 list_for_each_entry_safe(tcon, tcon2, &tmp_list, rlist) {
2218 rc = smb2_reconnect(SMB2_INTERNAL_CMD, tcon);
2220 cifs_reopen_persistent_handles(tcon);
2223 list_del_init(&tcon->rlist);
2224 cifs_put_tcon(tcon);
2227 cifs_dbg(FYI, "Reconnecting tcons finished\n");
2229 queue_delayed_work(cifsiod_wq, &server->reconnect, 2 * HZ);
2230 mutex_unlock(&server->reconnect_mutex);
2232 /* now we can safely release srv struct */
2234 cifs_put_tcp_session(server, 1);
2238 SMB2_echo(struct TCP_Server_Info *server)
2240 struct smb2_echo_req *req;
2243 struct smb_rqst rqst = { .rq_iov = iov,
2246 cifs_dbg(FYI, "In echo request\n");
2248 if (server->tcpStatus == CifsNeedNegotiate) {
2249 /* No need to send echo on newly established connections */
2250 queue_delayed_work(cifsiod_wq, &server->reconnect, 0);
2254 rc = small_smb2_init(SMB2_ECHO, NULL, (void **)&req);
2258 req->hdr.sync_hdr.CreditRequest = cpu_to_le16(1);
2260 /* 4 for rfc1002 length field */
2262 iov[0].iov_base = (char *)req;
2263 iov[1].iov_len = get_rfc1002_length(req);
2264 iov[1].iov_base = (char *)req + 4;
2266 rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, NULL,
2267 server, CIFS_ECHO_OP);
2269 cifs_dbg(FYI, "Echo request failed: %d\n", rc);
2271 cifs_small_buf_release(req);
2276 SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
2279 struct smb2_flush_req *req;
2280 struct TCP_Server_Info *server;
2281 struct cifs_ses *ses = tcon->ses;
2283 struct kvec rsp_iov;
2288 cifs_dbg(FYI, "Flush\n");
2290 if (ses && (ses->server))
2291 server = ses->server;
2295 rc = small_smb2_init(SMB2_FLUSH, tcon, (void **) &req);
2299 if (encryption_required(tcon))
2300 flags |= CIFS_TRANSFORM_REQ;
2302 req->PersistentFileId = persistent_fid;
2303 req->VolatileFileId = volatile_fid;
2305 iov[0].iov_base = (char *)req;
2306 /* 4 for rfc1002 length field */
2307 iov[0].iov_len = get_rfc1002_length(req) + 4;
2309 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags, &rsp_iov);
2310 cifs_small_buf_release(req);
2313 cifs_stats_fail_inc(tcon, SMB2_FLUSH_HE);
2315 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
2320 * To form a chain of read requests, any read requests after the first should
2321 * have the end_of_chain boolean set to true.
2324 smb2_new_read_req(void **buf, unsigned int *total_len,
2325 struct cifs_io_parms *io_parms, unsigned int remaining_bytes,
2329 struct smb2_read_plain_req *req = NULL;
2330 struct smb2_sync_hdr *shdr;
2332 rc = smb2_plain_req_init(SMB2_READ, io_parms->tcon, (void **) &req,
2336 if (io_parms->tcon->ses->server == NULL)
2337 return -ECONNABORTED;
2339 shdr = &req->sync_hdr;
2340 shdr->ProcessId = cpu_to_le32(io_parms->pid);
2342 req->PersistentFileId = io_parms->persistent_fid;
2343 req->VolatileFileId = io_parms->volatile_fid;
2344 req->ReadChannelInfoOffset = 0; /* reserved */
2345 req->ReadChannelInfoLength = 0; /* reserved */
2346 req->Channel = 0; /* reserved */
2347 req->MinimumCount = 0;
2348 req->Length = cpu_to_le32(io_parms->length);
2349 req->Offset = cpu_to_le64(io_parms->offset);
2351 if (request_type & CHAINED_REQUEST) {
2352 if (!(request_type & END_OF_CHAIN)) {
2353 /* next 8-byte aligned request */
2354 *total_len = DIV_ROUND_UP(*total_len, 8) * 8;
2355 shdr->NextCommand = cpu_to_le32(*total_len);
2356 } else /* END_OF_CHAIN */
2357 shdr->NextCommand = 0;
2358 if (request_type & RELATED_REQUEST) {
2359 shdr->Flags |= SMB2_FLAGS_RELATED_OPERATIONS;
2361 * Related requests use info from previous read request
2364 shdr->SessionId = 0xFFFFFFFF;
2365 shdr->TreeId = 0xFFFFFFFF;
2366 req->PersistentFileId = 0xFFFFFFFF;
2367 req->VolatileFileId = 0xFFFFFFFF;
2370 if (remaining_bytes > io_parms->length)
2371 req->RemainingBytes = cpu_to_le32(remaining_bytes);
2373 req->RemainingBytes = 0;
2380 smb2_readv_callback(struct mid_q_entry *mid)
2382 struct cifs_readdata *rdata = mid->callback_data;
2383 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
2384 struct TCP_Server_Info *server = tcon->ses->server;
2385 struct smb2_sync_hdr *shdr =
2386 (struct smb2_sync_hdr *)rdata->iov[1].iov_base;
2387 unsigned int credits_received = 1;
2388 struct smb_rqst rqst = { .rq_iov = rdata->iov,
2390 .rq_pages = rdata->pages,
2391 .rq_npages = rdata->nr_pages,
2392 .rq_pagesz = rdata->pagesz,
2393 .rq_tailsz = rdata->tailsz };
2395 cifs_dbg(FYI, "%s: mid=%llu state=%d result=%d bytes=%u\n",
2396 __func__, mid->mid, mid->mid_state, rdata->result,
2399 switch (mid->mid_state) {
2400 case MID_RESPONSE_RECEIVED:
2401 credits_received = le16_to_cpu(shdr->CreditRequest);
2402 /* result already set, check signature */
2403 if (server->sign && !mid->decrypted) {
2406 rc = smb2_verify_signature(&rqst, server);
2408 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
2411 /* FIXME: should this be counted toward the initiating task? */
2412 task_io_account_read(rdata->got_bytes);
2413 cifs_stats_bytes_read(tcon, rdata->got_bytes);
2415 case MID_REQUEST_SUBMITTED:
2416 case MID_RETRY_NEEDED:
2417 rdata->result = -EAGAIN;
2418 if (server->sign && rdata->got_bytes)
2419 /* reset bytes number since we can not check a sign */
2420 rdata->got_bytes = 0;
2421 /* FIXME: should this be counted toward the initiating task? */
2422 task_io_account_read(rdata->got_bytes);
2423 cifs_stats_bytes_read(tcon, rdata->got_bytes);
2426 if (rdata->result != -ENODATA)
2427 rdata->result = -EIO;
2431 cifs_stats_fail_inc(tcon, SMB2_READ_HE);
2433 queue_work(cifsiod_wq, &rdata->work);
2434 DeleteMidQEntry(mid);
2435 add_credits(server, credits_received, 0);
2438 /* smb2_async_readv - send an async read, and set up mid to handle result */
2440 smb2_async_readv(struct cifs_readdata *rdata)
2444 struct smb2_sync_hdr *shdr;
2445 struct cifs_io_parms io_parms;
2446 struct smb_rqst rqst = { .rq_iov = rdata->iov,
2448 struct TCP_Server_Info *server;
2449 unsigned int total_len;
2452 cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n",
2453 __func__, rdata->offset, rdata->bytes);
2455 io_parms.tcon = tlink_tcon(rdata->cfile->tlink);
2456 io_parms.offset = rdata->offset;
2457 io_parms.length = rdata->bytes;
2458 io_parms.persistent_fid = rdata->cfile->fid.persistent_fid;
2459 io_parms.volatile_fid = rdata->cfile->fid.volatile_fid;
2460 io_parms.pid = rdata->pid;
2462 server = io_parms.tcon->ses->server;
2464 rc = smb2_new_read_req((void **) &buf, &total_len, &io_parms, 0, 0);
2466 if (rc == -EAGAIN && rdata->credits) {
2467 /* credits was reset by reconnect */
2469 /* reduce in_flight value since we won't send the req */
2470 spin_lock(&server->req_lock);
2471 server->in_flight--;
2472 spin_unlock(&server->req_lock);
2477 if (encryption_required(io_parms.tcon))
2478 flags |= CIFS_TRANSFORM_REQ;
2480 req_len = cpu_to_be32(total_len);
2482 rdata->iov[0].iov_base = &req_len;
2483 rdata->iov[0].iov_len = sizeof(__be32);
2484 rdata->iov[1].iov_base = buf;
2485 rdata->iov[1].iov_len = total_len;
2487 shdr = (struct smb2_sync_hdr *)buf;
2489 if (rdata->credits) {
2490 shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(rdata->bytes,
2491 SMB2_MAX_BUFFER_SIZE));
2492 shdr->CreditRequest = shdr->CreditCharge;
2493 spin_lock(&server->req_lock);
2494 server->credits += rdata->credits -
2495 le16_to_cpu(shdr->CreditCharge);
2496 spin_unlock(&server->req_lock);
2497 wake_up(&server->request_q);
2498 flags |= CIFS_HAS_CREDITS;
2501 kref_get(&rdata->refcount);
2502 rc = cifs_call_async(io_parms.tcon->ses->server, &rqst,
2503 cifs_readv_receive, smb2_readv_callback,
2504 smb3_handle_read_data, rdata, flags);
2506 kref_put(&rdata->refcount, cifs_readdata_release);
2507 cifs_stats_fail_inc(io_parms.tcon, SMB2_READ_HE);
2510 cifs_small_buf_release(buf);
2515 SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms,
2516 unsigned int *nbytes, char **buf, int *buf_type)
2518 int resp_buftype, rc = -EACCES;
2519 struct smb2_read_plain_req *req = NULL;
2520 struct smb2_read_rsp *rsp = NULL;
2521 struct smb2_sync_hdr *shdr;
2523 struct kvec rsp_iov;
2524 unsigned int total_len;
2526 struct smb_rqst rqst = { .rq_iov = iov,
2528 int flags = CIFS_LOG_ERROR;
2529 struct cifs_ses *ses = io_parms->tcon->ses;
2532 rc = smb2_new_read_req((void **)&req, &total_len, io_parms, 0, 0);
2536 if (encryption_required(io_parms->tcon))
2537 flags |= CIFS_TRANSFORM_REQ;
2539 req_len = cpu_to_be32(total_len);
2541 iov[0].iov_base = &req_len;
2542 iov[0].iov_len = sizeof(__be32);
2543 iov[1].iov_base = req;
2544 iov[1].iov_len = total_len;
2546 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
2547 cifs_small_buf_release(req);
2549 rsp = (struct smb2_read_rsp *)rsp_iov.iov_base;
2550 shdr = get_sync_hdr(rsp);
2552 if (shdr->Status == STATUS_END_OF_FILE) {
2553 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
2558 cifs_stats_fail_inc(io_parms->tcon, SMB2_READ_HE);
2559 cifs_dbg(VFS, "Send error in read = %d\n", rc);
2561 *nbytes = le32_to_cpu(rsp->DataLength);
2562 if ((*nbytes > CIFS_MAX_MSGSIZE) ||
2563 (*nbytes > io_parms->length)) {
2564 cifs_dbg(FYI, "bad length %d for count %d\n",
2565 *nbytes, io_parms->length);
2572 memcpy(*buf, (char *)shdr + rsp->DataOffset, *nbytes);
2573 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
2574 } else if (resp_buftype != CIFS_NO_BUFFER) {
2575 *buf = rsp_iov.iov_base;
2576 if (resp_buftype == CIFS_SMALL_BUFFER)
2577 *buf_type = CIFS_SMALL_BUFFER;
2578 else if (resp_buftype == CIFS_LARGE_BUFFER)
2579 *buf_type = CIFS_LARGE_BUFFER;
2585 * Check the mid_state and signature on received buffer (if any), and queue the
2586 * workqueue completion task.
2589 smb2_writev_callback(struct mid_q_entry *mid)
2591 struct cifs_writedata *wdata = mid->callback_data;
2592 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
2593 unsigned int written;
2594 struct smb2_write_rsp *rsp = (struct smb2_write_rsp *)mid->resp_buf;
2595 unsigned int credits_received = 1;
2597 switch (mid->mid_state) {
2598 case MID_RESPONSE_RECEIVED:
2599 credits_received = le16_to_cpu(rsp->hdr.sync_hdr.CreditRequest);
2600 wdata->result = smb2_check_receive(mid, tcon->ses->server, 0);
2601 if (wdata->result != 0)
2604 written = le32_to_cpu(rsp->DataLength);
2606 * Mask off high 16 bits when bytes written as returned
2607 * by the server is greater than bytes requested by the
2608 * client. OS/2 servers are known to set incorrect
2611 if (written > wdata->bytes)
2614 if (written < wdata->bytes)
2615 wdata->result = -ENOSPC;
2617 wdata->bytes = written;
2619 case MID_REQUEST_SUBMITTED:
2620 case MID_RETRY_NEEDED:
2621 wdata->result = -EAGAIN;
2624 wdata->result = -EIO;
2629 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
2631 queue_work(cifsiod_wq, &wdata->work);
2632 DeleteMidQEntry(mid);
2633 add_credits(tcon->ses->server, credits_received, 0);
2636 /* smb2_async_writev - send an async write, and set up mid to handle result */
2638 smb2_async_writev(struct cifs_writedata *wdata,
2639 void (*release)(struct kref *kref))
2641 int rc = -EACCES, flags = 0;
2642 struct smb2_write_req *req = NULL;
2643 struct smb2_sync_hdr *shdr;
2644 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
2645 struct TCP_Server_Info *server = tcon->ses->server;
2647 struct smb_rqst rqst = { };
2649 rc = small_smb2_init(SMB2_WRITE, tcon, (void **) &req);
2651 if (rc == -EAGAIN && wdata->credits) {
2652 /* credits was reset by reconnect */
2654 /* reduce in_flight value since we won't send the req */
2655 spin_lock(&server->req_lock);
2656 server->in_flight--;
2657 spin_unlock(&server->req_lock);
2659 goto async_writev_out;
2662 if (encryption_required(tcon))
2663 flags |= CIFS_TRANSFORM_REQ;
2665 shdr = get_sync_hdr(req);
2666 shdr->ProcessId = cpu_to_le32(wdata->cfile->pid);
2668 req->PersistentFileId = wdata->cfile->fid.persistent_fid;
2669 req->VolatileFileId = wdata->cfile->fid.volatile_fid;
2670 req->WriteChannelInfoOffset = 0;
2671 req->WriteChannelInfoLength = 0;
2673 req->Offset = cpu_to_le64(wdata->offset);
2674 /* 4 for rfc1002 length field */
2675 req->DataOffset = cpu_to_le16(
2676 offsetof(struct smb2_write_req, Buffer) - 4);
2677 req->RemainingBytes = 0;
2679 /* 4 for rfc1002 length field and 1 for Buffer */
2681 iov[0].iov_base = req;
2682 iov[1].iov_len = get_rfc1002_length(req) - 1;
2683 iov[1].iov_base = (char *)req + 4;
2687 rqst.rq_pages = wdata->pages;
2688 rqst.rq_npages = wdata->nr_pages;
2689 rqst.rq_pagesz = wdata->pagesz;
2690 rqst.rq_tailsz = wdata->tailsz;
2692 cifs_dbg(FYI, "async write at %llu %u bytes\n",
2693 wdata->offset, wdata->bytes);
2695 req->Length = cpu_to_le32(wdata->bytes);
2697 inc_rfc1001_len(&req->hdr, wdata->bytes - 1 /* Buffer */);
2699 if (wdata->credits) {
2700 shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(wdata->bytes,
2701 SMB2_MAX_BUFFER_SIZE));
2702 shdr->CreditRequest = shdr->CreditCharge;
2703 spin_lock(&server->req_lock);
2704 server->credits += wdata->credits -
2705 le16_to_cpu(shdr->CreditCharge);
2706 spin_unlock(&server->req_lock);
2707 wake_up(&server->request_q);
2708 flags |= CIFS_HAS_CREDITS;
2711 kref_get(&wdata->refcount);
2712 rc = cifs_call_async(server, &rqst, NULL, smb2_writev_callback, NULL,
2716 kref_put(&wdata->refcount, release);
2717 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
2721 cifs_small_buf_release(req);
2726 * SMB2_write function gets iov pointer to kvec array with n_vec as a length.
2727 * The length field from io_parms must be at least 1 and indicates a number of
2728 * elements with data to write that begins with position 1 in iov array. All
2729 * data length is specified by count.
2732 SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms,
2733 unsigned int *nbytes, struct kvec *iov, int n_vec)
2736 struct smb2_write_req *req = NULL;
2737 struct smb2_write_rsp *rsp = NULL;
2739 struct kvec rsp_iov;
2747 rc = small_smb2_init(SMB2_WRITE, io_parms->tcon, (void **) &req);
2751 if (io_parms->tcon->ses->server == NULL)
2752 return -ECONNABORTED;
2754 if (encryption_required(io_parms->tcon))
2755 flags |= CIFS_TRANSFORM_REQ;
2757 req->hdr.sync_hdr.ProcessId = cpu_to_le32(io_parms->pid);
2759 req->PersistentFileId = io_parms->persistent_fid;
2760 req->VolatileFileId = io_parms->volatile_fid;
2761 req->WriteChannelInfoOffset = 0;
2762 req->WriteChannelInfoLength = 0;
2764 req->Length = cpu_to_le32(io_parms->length);
2765 req->Offset = cpu_to_le64(io_parms->offset);
2766 /* 4 for rfc1002 length field */
2767 req->DataOffset = cpu_to_le16(
2768 offsetof(struct smb2_write_req, Buffer) - 4);
2769 req->RemainingBytes = 0;
2771 iov[0].iov_base = (char *)req;
2772 /* 4 for rfc1002 length field and 1 for Buffer */
2773 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
2775 /* length of entire message including data to be written */
2776 inc_rfc1001_len(req, io_parms->length - 1 /* Buffer */);
2778 rc = SendReceive2(xid, io_parms->tcon->ses, iov, n_vec + 1,
2779 &resp_buftype, flags, &rsp_iov);
2780 cifs_small_buf_release(req);
2781 rsp = (struct smb2_write_rsp *)rsp_iov.iov_base;
2784 cifs_stats_fail_inc(io_parms->tcon, SMB2_WRITE_HE);
2785 cifs_dbg(VFS, "Send error in write = %d\n", rc);
2787 *nbytes = le32_to_cpu(rsp->DataLength);
2789 free_rsp_buf(resp_buftype, rsp);
2794 num_entries(char *bufstart, char *end_of_buf, char **lastentry, size_t size)
2797 unsigned int entrycount = 0;
2798 unsigned int next_offset = 0;
2799 FILE_DIRECTORY_INFO *entryptr;
2801 if (bufstart == NULL)
2804 entryptr = (FILE_DIRECTORY_INFO *)bufstart;
2807 entryptr = (FILE_DIRECTORY_INFO *)
2808 ((char *)entryptr + next_offset);
2810 if ((char *)entryptr + size > end_of_buf) {
2811 cifs_dbg(VFS, "malformed search entry would overflow\n");
2815 len = le32_to_cpu(entryptr->FileNameLength);
2816 if ((char *)entryptr + len + size > end_of_buf) {
2817 cifs_dbg(VFS, "directory entry name would overflow frame end of buf %p\n",
2822 *lastentry = (char *)entryptr;
2825 next_offset = le32_to_cpu(entryptr->NextEntryOffset);
2837 SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon,
2838 u64 persistent_fid, u64 volatile_fid, int index,
2839 struct cifs_search_info *srch_inf)
2841 struct smb2_query_directory_req *req;
2842 struct smb2_query_directory_rsp *rsp = NULL;
2844 struct kvec rsp_iov;
2847 int resp_buftype = CIFS_NO_BUFFER;
2848 unsigned char *bufptr;
2849 struct TCP_Server_Info *server;
2850 struct cifs_ses *ses = tcon->ses;
2851 __le16 asteriks = cpu_to_le16('*');
2853 unsigned int output_size = CIFSMaxBufSize;
2854 size_t info_buf_size;
2857 if (ses && (ses->server))
2858 server = ses->server;
2862 rc = small_smb2_init(SMB2_QUERY_DIRECTORY, tcon, (void **) &req);
2866 if (encryption_required(tcon))
2867 flags |= CIFS_TRANSFORM_REQ;
2869 switch (srch_inf->info_level) {
2870 case SMB_FIND_FILE_DIRECTORY_INFO:
2871 req->FileInformationClass = FILE_DIRECTORY_INFORMATION;
2872 info_buf_size = sizeof(FILE_DIRECTORY_INFO) - 1;
2874 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
2875 req->FileInformationClass = FILEID_FULL_DIRECTORY_INFORMATION;
2876 info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO) - 1;
2879 cifs_dbg(VFS, "info level %u isn't supported\n",
2880 srch_inf->info_level);
2885 req->FileIndex = cpu_to_le32(index);
2886 req->PersistentFileId = persistent_fid;
2887 req->VolatileFileId = volatile_fid;
2890 bufptr = req->Buffer;
2891 memcpy(bufptr, &asteriks, len);
2893 req->FileNameOffset =
2894 cpu_to_le16(sizeof(struct smb2_query_directory_req) - 1 - 4);
2895 req->FileNameLength = cpu_to_le16(len);
2897 * BB could be 30 bytes or so longer if we used SMB2 specific
2898 * buffer lengths, but this is safe and close enough.
2900 output_size = min_t(unsigned int, output_size, server->maxBuf);
2901 output_size = min_t(unsigned int, output_size, 2 << 15);
2902 req->OutputBufferLength = cpu_to_le32(output_size);
2904 iov[0].iov_base = (char *)req;
2905 /* 4 for RFC1001 length and 1 for Buffer */
2906 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
2908 iov[1].iov_base = (char *)(req->Buffer);
2909 iov[1].iov_len = len;
2911 inc_rfc1001_len(req, len - 1 /* Buffer */);
2913 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, flags, &rsp_iov);
2914 cifs_small_buf_release(req);
2915 rsp = (struct smb2_query_directory_rsp *)rsp_iov.iov_base;
2918 if (rc == -ENODATA &&
2919 rsp->hdr.sync_hdr.Status == STATUS_NO_MORE_FILES) {
2920 srch_inf->endOfSearch = true;
2923 cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
2927 rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
2928 le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
2933 srch_inf->unicode = true;
2935 if (srch_inf->ntwrk_buf_start) {
2936 if (srch_inf->smallBuf)
2937 cifs_small_buf_release(srch_inf->ntwrk_buf_start);
2939 cifs_buf_release(srch_inf->ntwrk_buf_start);
2941 srch_inf->ntwrk_buf_start = (char *)rsp;
2942 srch_inf->srch_entries_start = srch_inf->last_entry = 4 /* rfclen */ +
2943 (char *)&rsp->hdr + le16_to_cpu(rsp->OutputBufferOffset);
2944 /* 4 for rfc1002 length field */
2945 end_of_smb = get_rfc1002_length(rsp) + 4 + (char *)&rsp->hdr;
2946 srch_inf->entries_in_buffer =
2947 num_entries(srch_inf->srch_entries_start, end_of_smb,
2948 &srch_inf->last_entry, info_buf_size);
2949 srch_inf->index_of_last_entry += srch_inf->entries_in_buffer;
2950 cifs_dbg(FYI, "num entries %d last_index %lld srch start %p srch end %p\n",
2951 srch_inf->entries_in_buffer, srch_inf->index_of_last_entry,
2952 srch_inf->srch_entries_start, srch_inf->last_entry);
2953 if (resp_buftype == CIFS_LARGE_BUFFER)
2954 srch_inf->smallBuf = false;
2955 else if (resp_buftype == CIFS_SMALL_BUFFER)
2956 srch_inf->smallBuf = true;
2958 cifs_dbg(VFS, "illegal search buffer type\n");
2963 free_rsp_buf(resp_buftype, rsp);
2968 send_set_info(const unsigned int xid, struct cifs_tcon *tcon,
2969 u64 persistent_fid, u64 volatile_fid, u32 pid, int info_class,
2970 unsigned int num, void **data, unsigned int *size)
2972 struct smb2_set_info_req *req;
2973 struct smb2_set_info_rsp *rsp = NULL;
2975 struct kvec rsp_iov;
2979 struct TCP_Server_Info *server;
2980 struct cifs_ses *ses = tcon->ses;
2983 if (ses && (ses->server))
2984 server = ses->server;
2991 iov = kmalloc(sizeof(struct kvec) * num, GFP_KERNEL);
2995 rc = small_smb2_init(SMB2_SET_INFO, tcon, (void **) &req);
3001 if (encryption_required(tcon))
3002 flags |= CIFS_TRANSFORM_REQ;
3004 req->hdr.sync_hdr.ProcessId = cpu_to_le32(pid);
3006 req->InfoType = SMB2_O_INFO_FILE;
3007 req->FileInfoClass = info_class;
3008 req->PersistentFileId = persistent_fid;
3009 req->VolatileFileId = volatile_fid;
3011 /* 4 for RFC1001 length and 1 for Buffer */
3013 cpu_to_le16(sizeof(struct smb2_set_info_req) - 1 - 4);
3014 req->BufferLength = cpu_to_le32(*size);
3016 inc_rfc1001_len(req, *size - 1 /* Buffer */);
3018 memcpy(req->Buffer, *data, *size);
3020 iov[0].iov_base = (char *)req;
3021 /* 4 for RFC1001 length */
3022 iov[0].iov_len = get_rfc1002_length(req) + 4;
3024 for (i = 1; i < num; i++) {
3025 inc_rfc1001_len(req, size[i]);
3026 le32_add_cpu(&req->BufferLength, size[i]);
3027 iov[i].iov_base = (char *)data[i];
3028 iov[i].iov_len = size[i];
3031 rc = SendReceive2(xid, ses, iov, num, &resp_buftype, flags, &rsp_iov);
3032 cifs_small_buf_release(req);
3033 rsp = (struct smb2_set_info_rsp *)rsp_iov.iov_base;
3036 cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE);
3038 free_rsp_buf(resp_buftype, rsp);
3044 SMB2_rename(const unsigned int xid, struct cifs_tcon *tcon,
3045 u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
3047 struct smb2_file_rename_info info;
3049 unsigned int size[2];
3051 int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
3053 data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
3057 info.ReplaceIfExists = 1; /* 1 = replace existing target with new */
3058 /* 0 = fail if target already exists */
3059 info.RootDirectory = 0; /* MBZ for network ops (why does spec say?) */
3060 info.FileNameLength = cpu_to_le32(len);
3063 size[0] = sizeof(struct smb2_file_rename_info);
3065 data[1] = target_file;
3066 size[1] = len + 2 /* null */;
3068 rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
3069 current->tgid, FILE_RENAME_INFORMATION, 2, data,
3076 SMB2_rmdir(const unsigned int xid, struct cifs_tcon *tcon,
3077 u64 persistent_fid, u64 volatile_fid)
3079 __u8 delete_pending = 1;
3083 data = &delete_pending;
3084 size = 1; /* sizeof __u8 */
3086 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
3087 current->tgid, FILE_DISPOSITION_INFORMATION, 1, &data,
3092 SMB2_set_hardlink(const unsigned int xid, struct cifs_tcon *tcon,
3093 u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
3095 struct smb2_file_link_info info;
3097 unsigned int size[2];
3099 int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
3101 data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
3105 info.ReplaceIfExists = 0; /* 1 = replace existing link with new */
3106 /* 0 = fail if link already exists */
3107 info.RootDirectory = 0; /* MBZ for network ops (why does spec say?) */
3108 info.FileNameLength = cpu_to_le32(len);
3111 size[0] = sizeof(struct smb2_file_link_info);
3113 data[1] = target_file;
3114 size[1] = len + 2 /* null */;
3116 rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
3117 current->tgid, FILE_LINK_INFORMATION, 2, data, size);
3123 SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
3124 u64 volatile_fid, u32 pid, __le64 *eof, bool is_falloc)
3126 struct smb2_file_eof_info info;
3130 info.EndOfFile = *eof;
3133 size = sizeof(struct smb2_file_eof_info);
3136 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
3137 pid, FILE_ALLOCATION_INFORMATION, 1, &data, &size);
3139 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
3140 pid, FILE_END_OF_FILE_INFORMATION, 1, &data, &size);
3144 SMB2_set_info(const unsigned int xid, struct cifs_tcon *tcon,
3145 u64 persistent_fid, u64 volatile_fid, FILE_BASIC_INFO *buf)
3148 size = sizeof(FILE_BASIC_INFO);
3149 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
3150 current->tgid, FILE_BASIC_INFORMATION, 1,
3151 (void **)&buf, &size);
3155 SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon,
3156 const u64 persistent_fid, const u64 volatile_fid,
3160 struct smb2_oplock_break *req = NULL;
3161 int flags = CIFS_OBREAK_OP;
3163 cifs_dbg(FYI, "SMB2_oplock_break\n");
3164 rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
3168 if (encryption_required(tcon))
3169 flags |= CIFS_TRANSFORM_REQ;
3171 req->VolatileFid = volatile_fid;
3172 req->PersistentFid = persistent_fid;
3173 req->OplockLevel = oplock_level;
3174 req->hdr.sync_hdr.CreditRequest = cpu_to_le16(1);
3176 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, flags);
3177 cifs_small_buf_release(req);
3180 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
3181 cifs_dbg(FYI, "Send error in Oplock Break = %d\n", rc);
3188 copy_fs_info_to_kstatfs(struct smb2_fs_full_size_info *pfs_inf,
3189 struct kstatfs *kst)
3191 kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) *
3192 le32_to_cpu(pfs_inf->SectorsPerAllocationUnit);
3193 kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits);
3194 kst->f_bfree = le64_to_cpu(pfs_inf->ActualAvailableAllocationUnits);
3195 kst->f_bavail = le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits);
3200 build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon, int level,
3201 int outbuf_len, u64 persistent_fid, u64 volatile_fid)
3204 struct smb2_query_info_req *req;
3206 cifs_dbg(FYI, "Query FSInfo level %d\n", level);
3208 if ((tcon->ses == NULL) || (tcon->ses->server == NULL))
3211 rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
3215 req->InfoType = SMB2_O_INFO_FILESYSTEM;
3216 req->FileInfoClass = level;
3217 req->PersistentFileId = persistent_fid;
3218 req->VolatileFileId = volatile_fid;
3219 /* 4 for rfc1002 length field and 1 for pad */
3220 req->InputBufferOffset =
3221 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
3222 req->OutputBufferLength = cpu_to_le32(
3223 outbuf_len + sizeof(struct smb2_query_info_rsp) - 1 - 4);
3225 iov->iov_base = (char *)req;
3226 /* 4 for rfc1002 length field */
3227 iov->iov_len = get_rfc1002_length(req) + 4;
3232 SMB2_QFS_info(const unsigned int xid, struct cifs_tcon *tcon,
3233 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
3235 struct smb2_query_info_rsp *rsp = NULL;
3237 struct kvec rsp_iov;
3240 struct cifs_ses *ses = tcon->ses;
3241 struct smb2_fs_full_size_info *info = NULL;
3244 rc = build_qfs_info_req(&iov, tcon, FS_FULL_SIZE_INFORMATION,
3245 sizeof(struct smb2_fs_full_size_info),
3246 persistent_fid, volatile_fid);
3250 if (encryption_required(tcon))
3251 flags |= CIFS_TRANSFORM_REQ;
3253 rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, flags, &rsp_iov);
3254 cifs_small_buf_release(iov.iov_base);
3256 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
3259 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
3261 info = (struct smb2_fs_full_size_info *)(4 /* RFC1001 len */ +
3262 le16_to_cpu(rsp->OutputBufferOffset) + (char *)&rsp->hdr);
3263 rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
3264 le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
3265 sizeof(struct smb2_fs_full_size_info));
3267 copy_fs_info_to_kstatfs(info, fsdata);
3270 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
3275 SMB2_QFS_attr(const unsigned int xid, struct cifs_tcon *tcon,
3276 u64 persistent_fid, u64 volatile_fid, int level)
3278 struct smb2_query_info_rsp *rsp = NULL;
3280 struct kvec rsp_iov;
3282 int resp_buftype, max_len, min_len;
3283 struct cifs_ses *ses = tcon->ses;
3284 unsigned int rsp_len, offset;
3287 if (level == FS_DEVICE_INFORMATION) {
3288 max_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
3289 min_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
3290 } else if (level == FS_ATTRIBUTE_INFORMATION) {
3291 max_len = sizeof(FILE_SYSTEM_ATTRIBUTE_INFO);
3292 min_len = MIN_FS_ATTR_INFO_SIZE;
3293 } else if (level == FS_SECTOR_SIZE_INFORMATION) {
3294 max_len = sizeof(struct smb3_fs_ss_info);
3295 min_len = sizeof(struct smb3_fs_ss_info);
3297 cifs_dbg(FYI, "Invalid qfsinfo level %d\n", level);
3301 rc = build_qfs_info_req(&iov, tcon, level, max_len,
3302 persistent_fid, volatile_fid);
3306 if (encryption_required(tcon))
3307 flags |= CIFS_TRANSFORM_REQ;
3309 rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, flags, &rsp_iov);
3310 cifs_small_buf_release(iov.iov_base);
3312 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
3315 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
3317 rsp_len = le32_to_cpu(rsp->OutputBufferLength);
3318 offset = le16_to_cpu(rsp->OutputBufferOffset);
3319 rc = validate_buf(offset, rsp_len, &rsp->hdr, min_len);
3323 if (level == FS_ATTRIBUTE_INFORMATION)
3324 memcpy(&tcon->fsAttrInfo, 4 /* RFC1001 len */ + offset
3325 + (char *)&rsp->hdr, min_t(unsigned int,
3327 else if (level == FS_DEVICE_INFORMATION)
3328 memcpy(&tcon->fsDevInfo, 4 /* RFC1001 len */ + offset
3329 + (char *)&rsp->hdr, sizeof(FILE_SYSTEM_DEVICE_INFO));
3330 else if (level == FS_SECTOR_SIZE_INFORMATION) {
3331 struct smb3_fs_ss_info *ss_info = (struct smb3_fs_ss_info *)
3332 (4 /* RFC1001 len */ + offset + (char *)&rsp->hdr);
3333 tcon->ss_flags = le32_to_cpu(ss_info->Flags);
3334 tcon->perf_sector_size =
3335 le32_to_cpu(ss_info->PhysicalBytesPerSectorForPerf);
3339 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
3344 smb2_lockv(const unsigned int xid, struct cifs_tcon *tcon,
3345 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
3346 const __u32 num_lock, struct smb2_lock_element *buf)
3349 struct smb2_lock_req *req = NULL;
3351 struct kvec rsp_iov;
3354 int flags = CIFS_NO_RESP;
3356 cifs_dbg(FYI, "smb2_lockv num lock %d\n", num_lock);
3358 rc = small_smb2_init(SMB2_LOCK, tcon, (void **) &req);
3362 if (encryption_required(tcon))
3363 flags |= CIFS_TRANSFORM_REQ;
3365 req->hdr.sync_hdr.ProcessId = cpu_to_le32(pid);
3366 req->LockCount = cpu_to_le16(num_lock);
3368 req->PersistentFileId = persist_fid;
3369 req->VolatileFileId = volatile_fid;
3371 count = num_lock * sizeof(struct smb2_lock_element);
3372 inc_rfc1001_len(req, count - sizeof(struct smb2_lock_element));
3374 iov[0].iov_base = (char *)req;
3375 /* 4 for rfc1002 length field and count for all locks */
3376 iov[0].iov_len = get_rfc1002_length(req) + 4 - count;
3377 iov[1].iov_base = (char *)buf;
3378 iov[1].iov_len = count;
3380 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
3381 rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, flags,
3383 cifs_small_buf_release(req);
3385 cifs_dbg(FYI, "Send error in smb2_lockv = %d\n", rc);
3386 cifs_stats_fail_inc(tcon, SMB2_LOCK_HE);
3393 SMB2_lock(const unsigned int xid, struct cifs_tcon *tcon,
3394 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
3395 const __u64 length, const __u64 offset, const __u32 lock_flags,
3398 struct smb2_lock_element lock;
3400 lock.Offset = cpu_to_le64(offset);
3401 lock.Length = cpu_to_le64(length);
3402 lock.Flags = cpu_to_le32(lock_flags);
3403 if (!wait && lock_flags != SMB2_LOCKFLAG_UNLOCK)
3404 lock.Flags |= cpu_to_le32(SMB2_LOCKFLAG_FAIL_IMMEDIATELY);
3406 return smb2_lockv(xid, tcon, persist_fid, volatile_fid, pid, 1, &lock);
3410 SMB2_lease_break(const unsigned int xid, struct cifs_tcon *tcon,
3411 __u8 *lease_key, const __le32 lease_state)
3414 struct smb2_lease_ack *req = NULL;
3415 int flags = CIFS_OBREAK_OP;
3417 cifs_dbg(FYI, "SMB2_lease_break\n");
3418 rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
3422 if (encryption_required(tcon))
3423 flags |= CIFS_TRANSFORM_REQ;
3425 req->hdr.sync_hdr.CreditRequest = cpu_to_le16(1);
3426 req->StructureSize = cpu_to_le16(36);
3427 inc_rfc1001_len(req, 12);
3429 memcpy(req->LeaseKey, lease_key, 16);
3430 req->LeaseState = lease_state;
3432 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, flags);
3433 cifs_small_buf_release(req);
3436 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
3437 cifs_dbg(FYI, "Send error in Lease Break = %d\n", rc);