1 // SPDX-License-Identifier: LGPL-2.1
4 * Copyright (C) International Business Machines Corp., 2009, 2013
9 * Contains the routines for constructing the SMB2 PDUs themselves
13 /* SMB2 PDU handling routines here - except for leftovers (eg session setup) */
14 /* Note that there are handle based routines which must be */
15 /* treated slightly differently for reconnection purposes since we never */
16 /* want to reuse a stale file handle and only the caller knows the file info */
19 #include <linux/kernel.h>
20 #include <linux/vfs.h>
21 #include <linux/task_io_accounting_ops.h>
22 #include <linux/uaccess.h>
23 #include <linux/uuid.h>
24 #include <linux/pagemap.h>
25 #include <linux/xattr.h>
28 #include "cifsproto.h"
29 #include "smb2proto.h"
30 #include "cifs_unicode.h"
31 #include "cifs_debug.h"
33 #include "smb2status.h"
36 #include "cifs_spnego.h"
37 #include "smbdirect.h"
39 #ifdef CONFIG_CIFS_DFS_UPCALL
40 #include "dfs_cache.h"
42 #include "cached_dir.h"
45 * The following table defines the expected "StructureSize" of SMB2 requests
46 * in order by SMB2 command. This is similar to "wct" in SMB/CIFS requests.
48 * Note that commands are defined in smb2pdu.h in le16 but the array below is
49 * indexed by command in host byte order.
51 static const int smb2_req_struct_sizes[NUMBER_OF_SMB2_COMMANDS] = {
52 /* SMB2_NEGOTIATE */ 36,
53 /* SMB2_SESSION_SETUP */ 25,
55 /* SMB2_TREE_CONNECT */ 9,
56 /* SMB2_TREE_DISCONNECT */ 4,
66 /* SMB2_QUERY_DIRECTORY */ 33,
67 /* SMB2_CHANGE_NOTIFY */ 32,
68 /* SMB2_QUERY_INFO */ 41,
69 /* SMB2_SET_INFO */ 33,
70 /* SMB2_OPLOCK_BREAK */ 24 /* BB this is 36 for LEASE_BREAK variant */
73 int smb3_encryption_required(const struct cifs_tcon *tcon)
75 if (!tcon || !tcon->ses)
77 if ((tcon->ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) ||
78 (tcon->share_flags & SHI1005_FLAGS_ENCRYPT_DATA))
81 (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION))
87 smb2_hdr_assemble(struct smb2_hdr *shdr, __le16 smb2_cmd,
88 const struct cifs_tcon *tcon,
89 struct TCP_Server_Info *server)
91 shdr->ProtocolId = SMB2_PROTO_NUMBER;
92 shdr->StructureSize = cpu_to_le16(64);
93 shdr->Command = smb2_cmd;
95 spin_lock(&server->req_lock);
96 /* Request up to 10 credits but don't go over the limit. */
97 if (server->credits >= server->max_credits)
98 shdr->CreditRequest = cpu_to_le16(0);
100 shdr->CreditRequest = cpu_to_le16(
101 min_t(int, server->max_credits -
102 server->credits, 10));
103 spin_unlock(&server->req_lock);
105 shdr->CreditRequest = cpu_to_le16(2);
107 shdr->Id.SyncId.ProcessId = cpu_to_le32((__u16)current->tgid);
112 /* GLOBAL_CAP_LARGE_MTU will only be set if dialect > SMB2.02 */
113 /* See sections 2.2.4 and 3.2.4.1.5 of MS-SMB2 */
114 if (server && (server->capabilities & SMB2_GLOBAL_CAP_LARGE_MTU))
115 shdr->CreditCharge = cpu_to_le16(1);
116 /* else CreditCharge MBZ */
118 shdr->Id.SyncId.TreeId = cpu_to_le32(tcon->tid);
119 /* Uid is not converted */
121 shdr->SessionId = cpu_to_le64(tcon->ses->Suid);
124 * If we would set SMB2_FLAGS_DFS_OPERATIONS on open we also would have
125 * to pass the path on the Open SMB prefixed by \\server\share.
126 * Not sure when we would need to do the augmented path (if ever) and
127 * setting this flag breaks the SMB2 open operation since it is
128 * illegal to send an empty path name (without \\server\share prefix)
129 * when the DFS flag is set in the SMB open header. We could
130 * consider setting the flag on all operations other than open
131 * but it is safer to net set it for now.
133 /* if (tcon->share_flags & SHI1005_FLAGS_DFS)
134 shdr->Flags |= SMB2_FLAGS_DFS_OPERATIONS; */
136 if (server && server->sign && !smb3_encryption_required(tcon))
137 shdr->Flags |= SMB2_FLAGS_SIGNED;
143 smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon,
144 struct TCP_Server_Info *server)
147 struct nls_table *nls_codepage;
148 struct cifs_ses *ses;
152 * SMB2s NegProt, SessSetup, Logoff do not have tcon yet so
153 * check for tcp and smb session status done differently
154 * for those three - in the calling routine.
160 * Need to also skip SMB2_IOCTL because it is used for checking nested dfs links in
161 * cifs_tree_connect().
163 if (smb2_command == SMB2_TREE_CONNECT || smb2_command == SMB2_IOCTL)
166 spin_lock(&tcon->tc_lock);
167 if (tcon->status == TID_EXITING) {
169 * only tree disconnect, open, and write,
170 * (and ulogoff which does not have tcon)
171 * are allowed as we start force umount.
173 if ((smb2_command != SMB2_WRITE) &&
174 (smb2_command != SMB2_CREATE) &&
175 (smb2_command != SMB2_TREE_DISCONNECT)) {
176 spin_unlock(&tcon->tc_lock);
177 cifs_dbg(FYI, "can not send cmd %d while umounting\n",
182 spin_unlock(&tcon->tc_lock);
183 if ((!tcon->ses) || (tcon->ses->ses_status == SES_EXITING) ||
184 (!tcon->ses->server) || !server)
188 retries = server->nr_targets;
191 * Give demultiplex thread up to 10 seconds to each target available for
192 * reconnect -- should be greater than cifs socket timeout which is 7
195 while (server->tcpStatus == CifsNeedReconnect) {
197 * Return to caller for TREE_DISCONNECT and LOGOFF and CLOSE
198 * here since they are implicitly done when session drops.
200 switch (smb2_command) {
202 * BB Should we keep oplock break and add flush to exceptions?
204 case SMB2_TREE_DISCONNECT:
207 case SMB2_OPLOCK_BREAK:
211 rc = wait_event_interruptible_timeout(server->response_q,
212 (server->tcpStatus != CifsNeedReconnect),
215 cifs_dbg(FYI, "%s: aborting reconnect due to a received signal by the process\n",
220 /* are we still trying to reconnect? */
221 spin_lock(&server->srv_lock);
222 if (server->tcpStatus != CifsNeedReconnect) {
223 spin_unlock(&server->srv_lock);
226 spin_unlock(&server->srv_lock);
228 if (retries && --retries)
232 * on "soft" mounts we wait once. Hard mounts keep
233 * retrying until process is killed or server comes
237 cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n");
240 retries = server->nr_targets;
243 spin_lock(&ses->chan_lock);
244 if (!cifs_chan_needs_reconnect(ses, server) && !tcon->need_reconnect) {
245 spin_unlock(&ses->chan_lock);
248 spin_unlock(&ses->chan_lock);
249 cifs_dbg(FYI, "sess reconnect mask: 0x%lx, tcon reconnect: %d",
250 tcon->ses->chans_need_reconnect,
251 tcon->need_reconnect);
253 nls_codepage = load_nls_default();
256 * Recheck after acquire mutex. If another thread is negotiating
257 * and the server never sends an answer the socket will be closed
258 * and tcpStatus set to reconnect.
260 spin_lock(&server->srv_lock);
261 if (server->tcpStatus == CifsNeedReconnect) {
262 spin_unlock(&server->srv_lock);
266 spin_unlock(&server->srv_lock);
269 * need to prevent multiple threads trying to simultaneously
270 * reconnect the same SMB session
272 spin_lock(&ses->chan_lock);
273 if (!cifs_chan_needs_reconnect(ses, server)) {
274 spin_unlock(&ses->chan_lock);
276 /* this means that we only need to tree connect */
277 if (tcon->need_reconnect)
278 goto skip_sess_setup;
282 spin_unlock(&ses->chan_lock);
284 mutex_lock(&ses->session_mutex);
285 rc = cifs_negotiate_protocol(0, ses, server);
287 rc = cifs_setup_session(0, ses, server, nls_codepage);
288 if ((rc == -EACCES) && !tcon->retry) {
289 mutex_unlock(&ses->session_mutex);
293 mutex_unlock(&ses->session_mutex);
297 mutex_unlock(&ses->session_mutex);
300 mutex_unlock(&ses->session_mutex);
303 mutex_lock(&ses->session_mutex);
304 if (!tcon->need_reconnect) {
305 mutex_unlock(&ses->session_mutex);
308 cifs_mark_open_files_invalid(tcon);
309 if (tcon->use_persistent)
310 tcon->need_reopen_files = true;
312 rc = cifs_tree_connect(0, tcon, nls_codepage);
313 mutex_unlock(&ses->session_mutex);
315 cifs_dbg(FYI, "reconnect tcon rc = %d\n", rc);
317 /* If sess reconnected but tcon didn't, something strange ... */
318 pr_warn_once("reconnect tcon failed rc = %d\n", rc);
322 if (smb2_command != SMB2_INTERNAL_CMD)
323 mod_delayed_work(cifsiod_wq, &server->reconnect, 0);
325 atomic_inc(&tconInfoReconnectCount);
328 * Check if handle based operation so we know whether we can continue
329 * or not without returning to caller to reset file handle.
332 * BB Is flush done by server on drop of tcp session? Should we special
333 * case it and skip above?
335 switch (smb2_command) {
341 case SMB2_QUERY_DIRECTORY:
342 case SMB2_CHANGE_NOTIFY:
343 case SMB2_QUERY_INFO:
348 unload_nls(nls_codepage);
353 fill_small_buf(__le16 smb2_command, struct cifs_tcon *tcon,
354 struct TCP_Server_Info *server,
356 unsigned int *total_len)
358 struct smb2_pdu *spdu = buf;
359 /* lookup word count ie StructureSize from table */
360 __u16 parmsize = smb2_req_struct_sizes[le16_to_cpu(smb2_command)];
363 * smaller than SMALL_BUFFER_SIZE but bigger than fixed area of
364 * largest operations (Create)
368 smb2_hdr_assemble(&spdu->hdr, smb2_command, tcon, server);
369 spdu->StructureSize2 = cpu_to_le16(parmsize);
371 *total_len = parmsize + sizeof(struct smb2_hdr);
375 * Allocate and return pointer to an SMB request hdr, and set basic
376 * SMB information in the SMB header. If the return code is zero, this
377 * function must have filled in request_buf pointer.
379 static int __smb2_plain_req_init(__le16 smb2_command, struct cifs_tcon *tcon,
380 struct TCP_Server_Info *server,
381 void **request_buf, unsigned int *total_len)
383 /* BB eventually switch this to SMB2 specific small buf size */
384 if (smb2_command == SMB2_SET_INFO)
385 *request_buf = cifs_buf_get();
387 *request_buf = cifs_small_buf_get();
388 if (*request_buf == NULL) {
389 /* BB should we add a retry in here if not a writepage? */
393 fill_small_buf(smb2_command, tcon, server,
394 (struct smb2_hdr *)(*request_buf),
398 uint16_t com_code = le16_to_cpu(smb2_command);
399 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]);
400 cifs_stats_inc(&tcon->num_smbs_sent);
406 static int smb2_plain_req_init(__le16 smb2_command, struct cifs_tcon *tcon,
407 struct TCP_Server_Info *server,
408 void **request_buf, unsigned int *total_len)
412 rc = smb2_reconnect(smb2_command, tcon, server);
416 return __smb2_plain_req_init(smb2_command, tcon, server, request_buf,
420 static int smb2_ioctl_req_init(u32 opcode, struct cifs_tcon *tcon,
421 struct TCP_Server_Info *server,
422 void **request_buf, unsigned int *total_len)
424 /* Skip reconnect only for FSCTL_VALIDATE_NEGOTIATE_INFO IOCTLs */
425 if (opcode == FSCTL_VALIDATE_NEGOTIATE_INFO) {
426 return __smb2_plain_req_init(SMB2_IOCTL, tcon, server,
427 request_buf, total_len);
429 return smb2_plain_req_init(SMB2_IOCTL, tcon, server,
430 request_buf, total_len);
433 /* For explanation of negotiate contexts see MS-SMB2 section 2.2.3.1 */
436 build_preauth_ctxt(struct smb2_preauth_neg_context *pneg_ctxt)
438 pneg_ctxt->ContextType = SMB2_PREAUTH_INTEGRITY_CAPABILITIES;
439 pneg_ctxt->DataLength = cpu_to_le16(38);
440 pneg_ctxt->HashAlgorithmCount = cpu_to_le16(1);
441 pneg_ctxt->SaltLength = cpu_to_le16(SMB311_SALT_SIZE);
442 get_random_bytes(pneg_ctxt->Salt, SMB311_SALT_SIZE);
443 pneg_ctxt->HashAlgorithms = SMB2_PREAUTH_INTEGRITY_SHA512;
447 build_compression_ctxt(struct smb2_compression_capabilities_context *pneg_ctxt)
449 pneg_ctxt->ContextType = SMB2_COMPRESSION_CAPABILITIES;
450 pneg_ctxt->DataLength =
451 cpu_to_le16(sizeof(struct smb2_compression_capabilities_context)
452 - sizeof(struct smb2_neg_context));
453 pneg_ctxt->CompressionAlgorithmCount = cpu_to_le16(3);
454 pneg_ctxt->CompressionAlgorithms[0] = SMB3_COMPRESS_LZ77;
455 pneg_ctxt->CompressionAlgorithms[1] = SMB3_COMPRESS_LZ77_HUFF;
456 pneg_ctxt->CompressionAlgorithms[2] = SMB3_COMPRESS_LZNT1;
460 build_signing_ctxt(struct smb2_signing_capabilities *pneg_ctxt)
462 unsigned int ctxt_len = sizeof(struct smb2_signing_capabilities);
463 unsigned short num_algs = 1; /* number of signing algorithms sent */
465 pneg_ctxt->ContextType = SMB2_SIGNING_CAPABILITIES;
467 * Context Data length must be rounded to multiple of 8 for some servers
469 pneg_ctxt->DataLength = cpu_to_le16(DIV_ROUND_UP(
470 sizeof(struct smb2_signing_capabilities) -
471 sizeof(struct smb2_neg_context) +
472 (num_algs * 2 /* sizeof u16 */), 8) * 8);
473 pneg_ctxt->SigningAlgorithmCount = cpu_to_le16(num_algs);
474 pneg_ctxt->SigningAlgorithms[0] = cpu_to_le16(SIGNING_ALG_AES_CMAC);
476 ctxt_len += 2 /* sizeof le16 */ * num_algs;
477 ctxt_len = DIV_ROUND_UP(ctxt_len, 8) * 8;
479 /* TBD add SIGNING_ALG_AES_GMAC and/or SIGNING_ALG_HMAC_SHA256 */
483 build_encrypt_ctxt(struct smb2_encryption_neg_context *pneg_ctxt)
485 pneg_ctxt->ContextType = SMB2_ENCRYPTION_CAPABILITIES;
486 if (require_gcm_256) {
487 pneg_ctxt->DataLength = cpu_to_le16(4); /* Cipher Count + 1 cipher */
488 pneg_ctxt->CipherCount = cpu_to_le16(1);
489 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES256_GCM;
490 } else if (enable_gcm_256) {
491 pneg_ctxt->DataLength = cpu_to_le16(8); /* Cipher Count + 3 ciphers */
492 pneg_ctxt->CipherCount = cpu_to_le16(3);
493 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_GCM;
494 pneg_ctxt->Ciphers[1] = SMB2_ENCRYPTION_AES256_GCM;
495 pneg_ctxt->Ciphers[2] = SMB2_ENCRYPTION_AES128_CCM;
497 pneg_ctxt->DataLength = cpu_to_le16(6); /* Cipher Count + 2 ciphers */
498 pneg_ctxt->CipherCount = cpu_to_le16(2);
499 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_GCM;
500 pneg_ctxt->Ciphers[1] = SMB2_ENCRYPTION_AES128_CCM;
505 build_netname_ctxt(struct smb2_netname_neg_context *pneg_ctxt, char *hostname)
507 struct nls_table *cp = load_nls_default();
509 pneg_ctxt->ContextType = SMB2_NETNAME_NEGOTIATE_CONTEXT_ID;
511 /* copy up to max of first 100 bytes of server name to NetName field */
512 pneg_ctxt->DataLength = cpu_to_le16(2 * cifs_strtoUTF16(pneg_ctxt->NetName, hostname, 100, cp));
513 /* context size is DataLength + minimal smb2_neg_context */
514 return DIV_ROUND_UP(le16_to_cpu(pneg_ctxt->DataLength) +
515 sizeof(struct smb2_neg_context), 8) * 8;
519 build_posix_ctxt(struct smb2_posix_neg_context *pneg_ctxt)
521 pneg_ctxt->ContextType = SMB2_POSIX_EXTENSIONS_AVAILABLE;
522 pneg_ctxt->DataLength = cpu_to_le16(POSIX_CTXT_DATA_LEN);
523 /* SMB2_CREATE_TAG_POSIX is "0x93AD25509CB411E7B42383DE968BCD7C" */
524 pneg_ctxt->Name[0] = 0x93;
525 pneg_ctxt->Name[1] = 0xAD;
526 pneg_ctxt->Name[2] = 0x25;
527 pneg_ctxt->Name[3] = 0x50;
528 pneg_ctxt->Name[4] = 0x9C;
529 pneg_ctxt->Name[5] = 0xB4;
530 pneg_ctxt->Name[6] = 0x11;
531 pneg_ctxt->Name[7] = 0xE7;
532 pneg_ctxt->Name[8] = 0xB4;
533 pneg_ctxt->Name[9] = 0x23;
534 pneg_ctxt->Name[10] = 0x83;
535 pneg_ctxt->Name[11] = 0xDE;
536 pneg_ctxt->Name[12] = 0x96;
537 pneg_ctxt->Name[13] = 0x8B;
538 pneg_ctxt->Name[14] = 0xCD;
539 pneg_ctxt->Name[15] = 0x7C;
543 assemble_neg_contexts(struct smb2_negotiate_req *req,
544 struct TCP_Server_Info *server, unsigned int *total_len)
547 char *hostname = NULL;
548 unsigned int ctxt_len, neg_context_count;
550 if (*total_len > 200) {
551 /* In case length corrupted don't want to overrun smb buffer */
552 cifs_server_dbg(VFS, "Bad frame length assembling neg contexts\n");
557 * round up total_len of fixed part of SMB3 negotiate request to 8
558 * byte boundary before adding negotiate contexts
560 *total_len = roundup(*total_len, 8);
562 pneg_ctxt = (*total_len) + (char *)req;
563 req->NegotiateContextOffset = cpu_to_le32(*total_len);
565 build_preauth_ctxt((struct smb2_preauth_neg_context *)pneg_ctxt);
566 ctxt_len = DIV_ROUND_UP(sizeof(struct smb2_preauth_neg_context), 8) * 8;
567 *total_len += ctxt_len;
568 pneg_ctxt += ctxt_len;
570 build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt);
571 ctxt_len = DIV_ROUND_UP(sizeof(struct smb2_encryption_neg_context), 8) * 8;
572 *total_len += ctxt_len;
573 pneg_ctxt += ctxt_len;
576 * secondary channels don't have the hostname field populated
577 * use the hostname field in the primary channel instead
579 hostname = CIFS_SERVER_IS_CHAN(server) ?
580 server->primary_server->hostname : server->hostname;
581 if (hostname && (hostname[0] != 0)) {
582 ctxt_len = build_netname_ctxt((struct smb2_netname_neg_context *)pneg_ctxt,
584 *total_len += ctxt_len;
585 pneg_ctxt += ctxt_len;
586 neg_context_count = 3;
588 neg_context_count = 2;
590 build_posix_ctxt((struct smb2_posix_neg_context *)pneg_ctxt);
591 *total_len += sizeof(struct smb2_posix_neg_context);
592 pneg_ctxt += sizeof(struct smb2_posix_neg_context);
595 if (server->compress_algorithm) {
596 build_compression_ctxt((struct smb2_compression_capabilities_context *)
598 ctxt_len = DIV_ROUND_UP(
599 sizeof(struct smb2_compression_capabilities_context),
601 *total_len += ctxt_len;
602 pneg_ctxt += ctxt_len;
606 if (enable_negotiate_signing) {
607 ctxt_len = build_signing_ctxt((struct smb2_signing_capabilities *)
609 *total_len += ctxt_len;
610 pneg_ctxt += ctxt_len;
614 /* check for and add transport_capabilities and signing capabilities */
615 req->NegotiateContextCount = cpu_to_le16(neg_context_count);
619 static void decode_preauth_context(struct smb2_preauth_neg_context *ctxt)
621 unsigned int len = le16_to_cpu(ctxt->DataLength);
623 /* If invalid preauth context warn but use what we requested, SHA-512 */
624 if (len < MIN_PREAUTH_CTXT_DATA_LEN) {
625 pr_warn_once("server sent bad preauth context\n");
627 } else if (len < MIN_PREAUTH_CTXT_DATA_LEN + le16_to_cpu(ctxt->SaltLength)) {
628 pr_warn_once("server sent invalid SaltLength\n");
631 if (le16_to_cpu(ctxt->HashAlgorithmCount) != 1)
632 pr_warn_once("Invalid SMB3 hash algorithm count\n");
633 if (ctxt->HashAlgorithms != SMB2_PREAUTH_INTEGRITY_SHA512)
634 pr_warn_once("unknown SMB3 hash algorithm\n");
637 static void decode_compress_ctx(struct TCP_Server_Info *server,
638 struct smb2_compression_capabilities_context *ctxt)
640 unsigned int len = le16_to_cpu(ctxt->DataLength);
642 /* sizeof compress context is a one element compression capbility struct */
644 pr_warn_once("server sent bad compression cntxt\n");
647 if (le16_to_cpu(ctxt->CompressionAlgorithmCount) != 1) {
648 pr_warn_once("Invalid SMB3 compress algorithm count\n");
651 if (le16_to_cpu(ctxt->CompressionAlgorithms[0]) > 3) {
652 pr_warn_once("unknown compression algorithm\n");
655 server->compress_algorithm = ctxt->CompressionAlgorithms[0];
658 static int decode_encrypt_ctx(struct TCP_Server_Info *server,
659 struct smb2_encryption_neg_context *ctxt)
661 unsigned int len = le16_to_cpu(ctxt->DataLength);
663 cifs_dbg(FYI, "decode SMB3.11 encryption neg context of len %d\n", len);
664 if (len < MIN_ENCRYPT_CTXT_DATA_LEN) {
665 pr_warn_once("server sent bad crypto ctxt len\n");
669 if (le16_to_cpu(ctxt->CipherCount) != 1) {
670 pr_warn_once("Invalid SMB3.11 cipher count\n");
673 cifs_dbg(FYI, "SMB311 cipher type:%d\n", le16_to_cpu(ctxt->Ciphers[0]));
674 if (require_gcm_256) {
675 if (ctxt->Ciphers[0] != SMB2_ENCRYPTION_AES256_GCM) {
676 cifs_dbg(VFS, "Server does not support requested encryption type (AES256 GCM)\n");
679 } else if (ctxt->Ciphers[0] == 0) {
681 * e.g. if server only supported AES256_CCM (very unlikely)
682 * or server supported no encryption types or had all disabled.
683 * Since GLOBAL_CAP_ENCRYPTION will be not set, in the case
684 * in which mount requested encryption ("seal") checks later
685 * on during tree connection will return proper rc, but if
686 * seal not requested by client, since server is allowed to
687 * return 0 to indicate no supported cipher, we can't fail here
689 server->cipher_type = 0;
690 server->capabilities &= ~SMB2_GLOBAL_CAP_ENCRYPTION;
691 pr_warn_once("Server does not support requested encryption types\n");
693 } else if ((ctxt->Ciphers[0] != SMB2_ENCRYPTION_AES128_CCM) &&
694 (ctxt->Ciphers[0] != SMB2_ENCRYPTION_AES128_GCM) &&
695 (ctxt->Ciphers[0] != SMB2_ENCRYPTION_AES256_GCM)) {
696 /* server returned a cipher we didn't ask for */
697 pr_warn_once("Invalid SMB3.11 cipher returned\n");
700 server->cipher_type = ctxt->Ciphers[0];
701 server->capabilities |= SMB2_GLOBAL_CAP_ENCRYPTION;
705 static void decode_signing_ctx(struct TCP_Server_Info *server,
706 struct smb2_signing_capabilities *pctxt)
708 unsigned int len = le16_to_cpu(pctxt->DataLength);
710 if ((len < 4) || (len > 16)) {
711 pr_warn_once("server sent bad signing negcontext\n");
714 if (le16_to_cpu(pctxt->SigningAlgorithmCount) != 1) {
715 pr_warn_once("Invalid signing algorithm count\n");
718 if (le16_to_cpu(pctxt->SigningAlgorithms[0]) > 2) {
719 pr_warn_once("unknown signing algorithm\n");
723 server->signing_negotiated = true;
724 server->signing_algorithm = le16_to_cpu(pctxt->SigningAlgorithms[0]);
725 cifs_dbg(FYI, "signing algorithm %d chosen\n",
726 server->signing_algorithm);
730 static int smb311_decode_neg_context(struct smb2_negotiate_rsp *rsp,
731 struct TCP_Server_Info *server,
732 unsigned int len_of_smb)
734 struct smb2_neg_context *pctx;
735 unsigned int offset = le32_to_cpu(rsp->NegotiateContextOffset);
736 unsigned int ctxt_cnt = le16_to_cpu(rsp->NegotiateContextCount);
737 unsigned int len_of_ctxts, i;
740 cifs_dbg(FYI, "decoding %d negotiate contexts\n", ctxt_cnt);
741 if (len_of_smb <= offset) {
742 cifs_server_dbg(VFS, "Invalid response: negotiate context offset\n");
746 len_of_ctxts = len_of_smb - offset;
748 for (i = 0; i < ctxt_cnt; i++) {
750 /* check that offset is not beyond end of SMB */
751 if (len_of_ctxts == 0)
754 if (len_of_ctxts < sizeof(struct smb2_neg_context))
757 pctx = (struct smb2_neg_context *)(offset + (char *)rsp);
758 clen = le16_to_cpu(pctx->DataLength);
759 if (clen > len_of_ctxts)
762 if (pctx->ContextType == SMB2_PREAUTH_INTEGRITY_CAPABILITIES)
763 decode_preauth_context(
764 (struct smb2_preauth_neg_context *)pctx);
765 else if (pctx->ContextType == SMB2_ENCRYPTION_CAPABILITIES)
766 rc = decode_encrypt_ctx(server,
767 (struct smb2_encryption_neg_context *)pctx);
768 else if (pctx->ContextType == SMB2_COMPRESSION_CAPABILITIES)
769 decode_compress_ctx(server,
770 (struct smb2_compression_capabilities_context *)pctx);
771 else if (pctx->ContextType == SMB2_POSIX_EXTENSIONS_AVAILABLE)
772 server->posix_ext_supported = true;
773 else if (pctx->ContextType == SMB2_SIGNING_CAPABILITIES)
774 decode_signing_ctx(server,
775 (struct smb2_signing_capabilities *)pctx);
777 cifs_server_dbg(VFS, "unknown negcontext of type %d ignored\n",
778 le16_to_cpu(pctx->ContextType));
782 /* offsets must be 8 byte aligned */
783 clen = (clen + 7) & ~0x7;
784 offset += clen + sizeof(struct smb2_neg_context);
785 len_of_ctxts -= clen;
790 static struct create_posix *
791 create_posix_buf(umode_t mode)
793 struct create_posix *buf;
795 buf = kzalloc(sizeof(struct create_posix),
800 buf->ccontext.DataOffset =
801 cpu_to_le16(offsetof(struct create_posix, Mode));
802 buf->ccontext.DataLength = cpu_to_le32(4);
803 buf->ccontext.NameOffset =
804 cpu_to_le16(offsetof(struct create_posix, Name));
805 buf->ccontext.NameLength = cpu_to_le16(16);
807 /* SMB2_CREATE_TAG_POSIX is "0x93AD25509CB411E7B42383DE968BCD7C" */
818 buf->Name[10] = 0x83;
819 buf->Name[11] = 0xDE;
820 buf->Name[12] = 0x96;
821 buf->Name[13] = 0x8B;
822 buf->Name[14] = 0xCD;
823 buf->Name[15] = 0x7C;
824 buf->Mode = cpu_to_le32(mode);
825 cifs_dbg(FYI, "mode on posix create 0%o\n", mode);
830 add_posix_context(struct kvec *iov, unsigned int *num_iovec, umode_t mode)
832 struct smb2_create_req *req = iov[0].iov_base;
833 unsigned int num = *num_iovec;
835 iov[num].iov_base = create_posix_buf(mode);
836 if (mode == ACL_NO_MODE)
837 cifs_dbg(FYI, "Invalid mode\n");
838 if (iov[num].iov_base == NULL)
840 iov[num].iov_len = sizeof(struct create_posix);
841 if (!req->CreateContextsOffset)
842 req->CreateContextsOffset = cpu_to_le32(
843 sizeof(struct smb2_create_req) +
844 iov[num - 1].iov_len);
845 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_posix));
846 *num_iovec = num + 1;
853 * SMB2 Worker functions follow:
855 * The general structure of the worker functions is:
856 * 1) Call smb2_init (assembles SMB2 header)
857 * 2) Initialize SMB2 command specific fields in fixed length area of SMB
858 * 3) Call smb_sendrcv2 (sends request on socket and waits for response)
859 * 4) Decode SMB2 command specific fields in the fixed length area
860 * 5) Decode variable length data area (if any for this SMB2 command type)
861 * 6) Call free smb buffer
867 SMB2_negotiate(const unsigned int xid,
868 struct cifs_ses *ses,
869 struct TCP_Server_Info *server)
871 struct smb_rqst rqst;
872 struct smb2_negotiate_req *req;
873 struct smb2_negotiate_rsp *rsp;
878 int blob_offset, blob_length;
880 int flags = CIFS_NEG_OP;
881 unsigned int total_len;
883 cifs_dbg(FYI, "Negotiate protocol\n");
886 WARN(1, "%s: server is NULL!\n", __func__);
890 rc = smb2_plain_req_init(SMB2_NEGOTIATE, NULL, server,
891 (void **) &req, &total_len);
895 req->hdr.SessionId = 0;
897 memset(server->preauth_sha_hash, 0, SMB2_PREAUTH_HASH_SIZE);
898 memset(ses->preauth_sha_hash, 0, SMB2_PREAUTH_HASH_SIZE);
900 if (strcmp(server->vals->version_string,
901 SMB3ANY_VERSION_STRING) == 0) {
902 req->Dialects[0] = cpu_to_le16(SMB30_PROT_ID);
903 req->Dialects[1] = cpu_to_le16(SMB302_PROT_ID);
904 req->Dialects[2] = cpu_to_le16(SMB311_PROT_ID);
905 req->DialectCount = cpu_to_le16(3);
907 } else if (strcmp(server->vals->version_string,
908 SMBDEFAULT_VERSION_STRING) == 0) {
909 req->Dialects[0] = cpu_to_le16(SMB21_PROT_ID);
910 req->Dialects[1] = cpu_to_le16(SMB30_PROT_ID);
911 req->Dialects[2] = cpu_to_le16(SMB302_PROT_ID);
912 req->Dialects[3] = cpu_to_le16(SMB311_PROT_ID);
913 req->DialectCount = cpu_to_le16(4);
916 /* otherwise send specific dialect */
917 req->Dialects[0] = cpu_to_le16(server->vals->protocol_id);
918 req->DialectCount = cpu_to_le16(1);
922 /* only one of SMB2 signing flags may be set in SMB2 request */
924 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
925 else if (global_secflags & CIFSSEC_MAY_SIGN)
926 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
928 req->SecurityMode = 0;
930 req->Capabilities = cpu_to_le32(server->vals->req_capabilities);
931 if (ses->chan_max > 1)
932 req->Capabilities |= cpu_to_le32(SMB2_GLOBAL_CAP_MULTI_CHANNEL);
934 /* ClientGUID must be zero for SMB2.02 dialect */
935 if (server->vals->protocol_id == SMB20_PROT_ID)
936 memset(req->ClientGUID, 0, SMB2_CLIENT_GUID_SIZE);
938 memcpy(req->ClientGUID, server->client_guid,
939 SMB2_CLIENT_GUID_SIZE);
940 if ((server->vals->protocol_id == SMB311_PROT_ID) ||
941 (strcmp(server->vals->version_string,
942 SMB3ANY_VERSION_STRING) == 0) ||
943 (strcmp(server->vals->version_string,
944 SMBDEFAULT_VERSION_STRING) == 0))
945 assemble_neg_contexts(req, server, &total_len);
947 iov[0].iov_base = (char *)req;
948 iov[0].iov_len = total_len;
950 memset(&rqst, 0, sizeof(struct smb_rqst));
954 rc = cifs_send_recv(xid, ses, server,
955 &rqst, &resp_buftype, flags, &rsp_iov);
956 cifs_small_buf_release(req);
957 rsp = (struct smb2_negotiate_rsp *)rsp_iov.iov_base;
959 * No tcon so can't do
960 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
962 if (rc == -EOPNOTSUPP) {
963 cifs_server_dbg(VFS, "Dialect not supported by server. Consider specifying vers=1.0 or vers=2.0 on mount for accessing older servers\n");
968 if (strcmp(server->vals->version_string,
969 SMB3ANY_VERSION_STRING) == 0) {
970 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID)) {
972 "SMB2 dialect returned but not requested\n");
974 } else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID)) {
976 "SMB2.1 dialect returned but not requested\n");
978 } else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID)) {
979 /* ops set to 3.0 by default for default so update */
980 server->ops = &smb311_operations;
981 server->vals = &smb311_values;
983 } else if (strcmp(server->vals->version_string,
984 SMBDEFAULT_VERSION_STRING) == 0) {
985 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID)) {
987 "SMB2 dialect returned but not requested\n");
989 } else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID)) {
990 /* ops set to 3.0 by default for default so update */
991 server->ops = &smb21_operations;
992 server->vals = &smb21_values;
993 } else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID)) {
994 server->ops = &smb311_operations;
995 server->vals = &smb311_values;
997 } else if (le16_to_cpu(rsp->DialectRevision) !=
998 server->vals->protocol_id) {
999 /* if requested single dialect ensure returned dialect matched */
1000 cifs_server_dbg(VFS, "Invalid 0x%x dialect returned: not requested\n",
1001 le16_to_cpu(rsp->DialectRevision));
1005 cifs_dbg(FYI, "mode 0x%x\n", rsp->SecurityMode);
1007 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID))
1008 cifs_dbg(FYI, "negotiated smb2.0 dialect\n");
1009 else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID))
1010 cifs_dbg(FYI, "negotiated smb2.1 dialect\n");
1011 else if (rsp->DialectRevision == cpu_to_le16(SMB30_PROT_ID))
1012 cifs_dbg(FYI, "negotiated smb3.0 dialect\n");
1013 else if (rsp->DialectRevision == cpu_to_le16(SMB302_PROT_ID))
1014 cifs_dbg(FYI, "negotiated smb3.02 dialect\n");
1015 else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID))
1016 cifs_dbg(FYI, "negotiated smb3.1.1 dialect\n");
1018 cifs_server_dbg(VFS, "Invalid dialect returned by server 0x%x\n",
1019 le16_to_cpu(rsp->DialectRevision));
1023 server->dialect = le16_to_cpu(rsp->DialectRevision);
1026 * Keep a copy of the hash after negprot. This hash will be
1027 * the starting hash value for all sessions made from this
1030 memcpy(server->preauth_sha_hash, ses->preauth_sha_hash,
1031 SMB2_PREAUTH_HASH_SIZE);
1033 /* SMB2 only has an extended negflavor */
1034 server->negflavor = CIFS_NEGFLAVOR_EXTENDED;
1035 /* set it to the maximum buffer size value we can send with 1 credit */
1036 server->maxBuf = min_t(unsigned int, le32_to_cpu(rsp->MaxTransactSize),
1037 SMB2_MAX_BUFFER_SIZE);
1038 server->max_read = le32_to_cpu(rsp->MaxReadSize);
1039 server->max_write = le32_to_cpu(rsp->MaxWriteSize);
1040 server->sec_mode = le16_to_cpu(rsp->SecurityMode);
1041 if ((server->sec_mode & SMB2_SEC_MODE_FLAGS_ALL) != server->sec_mode)
1042 cifs_dbg(FYI, "Server returned unexpected security mode 0x%x\n",
1044 server->capabilities = le32_to_cpu(rsp->Capabilities);
1045 /* Internal types */
1046 server->capabilities |= SMB2_NT_FIND | SMB2_LARGE_FILES;
1049 * SMB3.0 supports only 1 cipher and doesn't have a encryption neg context
1050 * Set the cipher type manually.
1052 if (server->dialect == SMB30_PROT_ID && (server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION))
1053 server->cipher_type = SMB2_ENCRYPTION_AES128_CCM;
1055 security_blob = smb2_get_data_area_len(&blob_offset, &blob_length,
1056 (struct smb2_hdr *)rsp);
1058 * See MS-SMB2 section 2.2.4: if no blob, client picks default which
1060 * ses->sectype = RawNTLMSSP;
1061 * but for time being this is our only auth choice so doesn't matter.
1062 * We just found a server which sets blob length to zero expecting raw.
1064 if (blob_length == 0) {
1065 cifs_dbg(FYI, "missing security blob on negprot\n");
1066 server->sec_ntlmssp = true;
1069 rc = cifs_enable_signing(server, ses->sign);
1073 rc = decode_negTokenInit(security_blob, blob_length, server);
1080 if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID)) {
1081 if (rsp->NegotiateContextCount)
1082 rc = smb311_decode_neg_context(rsp, server,
1085 cifs_server_dbg(VFS, "Missing expected negotiate contexts\n");
1088 free_rsp_buf(resp_buftype, rsp);
1092 int smb3_validate_negotiate(const unsigned int xid, struct cifs_tcon *tcon)
1095 struct validate_negotiate_info_req *pneg_inbuf;
1096 struct validate_negotiate_info_rsp *pneg_rsp = NULL;
1098 u32 inbuflen; /* max of 4 dialects */
1099 struct TCP_Server_Info *server = tcon->ses->server;
1101 cifs_dbg(FYI, "validate negotiate\n");
1103 /* In SMB3.11 preauth integrity supersedes validate negotiate */
1104 if (server->dialect == SMB311_PROT_ID)
1108 * validation ioctl must be signed, so no point sending this if we
1109 * can not sign it (ie are not known user). Even if signing is not
1110 * required (enabled but not negotiated), in those cases we selectively
1111 * sign just this, the first and only signed request on a connection.
1112 * Having validation of negotiate info helps reduce attack vectors.
1114 if (tcon->ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST)
1115 return 0; /* validation requires signing */
1117 if (tcon->ses->user_name == NULL) {
1118 cifs_dbg(FYI, "Can't validate negotiate: null user mount\n");
1119 return 0; /* validation requires signing */
1122 if (tcon->ses->session_flags & SMB2_SESSION_FLAG_IS_NULL)
1123 cifs_tcon_dbg(VFS, "Unexpected null user (anonymous) auth flag sent by server\n");
1125 pneg_inbuf = kmalloc(sizeof(*pneg_inbuf), GFP_NOFS);
1129 pneg_inbuf->Capabilities =
1130 cpu_to_le32(server->vals->req_capabilities);
1131 if (tcon->ses->chan_max > 1)
1132 pneg_inbuf->Capabilities |= cpu_to_le32(SMB2_GLOBAL_CAP_MULTI_CHANNEL);
1134 memcpy(pneg_inbuf->Guid, server->client_guid,
1135 SMB2_CLIENT_GUID_SIZE);
1137 if (tcon->ses->sign)
1138 pneg_inbuf->SecurityMode =
1139 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
1140 else if (global_secflags & CIFSSEC_MAY_SIGN)
1141 pneg_inbuf->SecurityMode =
1142 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
1144 pneg_inbuf->SecurityMode = 0;
1147 if (strcmp(server->vals->version_string,
1148 SMB3ANY_VERSION_STRING) == 0) {
1149 pneg_inbuf->Dialects[0] = cpu_to_le16(SMB30_PROT_ID);
1150 pneg_inbuf->Dialects[1] = cpu_to_le16(SMB302_PROT_ID);
1151 pneg_inbuf->Dialects[2] = cpu_to_le16(SMB311_PROT_ID);
1152 pneg_inbuf->DialectCount = cpu_to_le16(3);
1153 /* SMB 2.1 not included so subtract one dialect from len */
1154 inbuflen = sizeof(*pneg_inbuf) -
1155 (sizeof(pneg_inbuf->Dialects[0]));
1156 } else if (strcmp(server->vals->version_string,
1157 SMBDEFAULT_VERSION_STRING) == 0) {
1158 pneg_inbuf->Dialects[0] = cpu_to_le16(SMB21_PROT_ID);
1159 pneg_inbuf->Dialects[1] = cpu_to_le16(SMB30_PROT_ID);
1160 pneg_inbuf->Dialects[2] = cpu_to_le16(SMB302_PROT_ID);
1161 pneg_inbuf->Dialects[3] = cpu_to_le16(SMB311_PROT_ID);
1162 pneg_inbuf->DialectCount = cpu_to_le16(4);
1163 /* structure is big enough for 4 dialects */
1164 inbuflen = sizeof(*pneg_inbuf);
1166 /* otherwise specific dialect was requested */
1167 pneg_inbuf->Dialects[0] =
1168 cpu_to_le16(server->vals->protocol_id);
1169 pneg_inbuf->DialectCount = cpu_to_le16(1);
1170 /* structure is big enough for 3 dialects, sending only 1 */
1171 inbuflen = sizeof(*pneg_inbuf) -
1172 sizeof(pneg_inbuf->Dialects[0]) * 2;
1175 rc = SMB2_ioctl(xid, tcon, NO_FILE_ID, NO_FILE_ID,
1176 FSCTL_VALIDATE_NEGOTIATE_INFO,
1177 (char *)pneg_inbuf, inbuflen, CIFSMaxBufSize,
1178 (char **)&pneg_rsp, &rsplen);
1179 if (rc == -EOPNOTSUPP) {
1181 * Old Windows versions or Netapp SMB server can return
1182 * not supported error. Client should accept it.
1184 cifs_tcon_dbg(VFS, "Server does not support validate negotiate\n");
1186 goto out_free_inbuf;
1187 } else if (rc != 0) {
1188 cifs_tcon_dbg(VFS, "validate protocol negotiate failed: %d\n",
1191 goto out_free_inbuf;
1195 if (rsplen != sizeof(*pneg_rsp)) {
1196 cifs_tcon_dbg(VFS, "Invalid protocol negotiate response size: %d\n",
1199 /* relax check since Mac returns max bufsize allowed on ioctl */
1200 if (rsplen > CIFSMaxBufSize || rsplen < sizeof(*pneg_rsp))
1204 /* check validate negotiate info response matches what we got earlier */
1205 if (pneg_rsp->Dialect != cpu_to_le16(server->dialect))
1208 if (pneg_rsp->SecurityMode != cpu_to_le16(server->sec_mode))
1211 /* do not validate server guid because not saved at negprot time yet */
1213 if ((le32_to_cpu(pneg_rsp->Capabilities) | SMB2_NT_FIND |
1214 SMB2_LARGE_FILES) != server->capabilities)
1217 /* validate negotiate successful */
1219 cifs_dbg(FYI, "validate negotiate info successful\n");
1223 cifs_tcon_dbg(VFS, "protocol revalidation - security settings mismatch\n");
1232 smb2_select_sectype(struct TCP_Server_Info *server, enum securityEnum requested)
1234 switch (requested) {
1241 if (server->sec_ntlmssp &&
1242 (global_secflags & CIFSSEC_MAY_NTLMSSP))
1244 if ((server->sec_kerberos || server->sec_mskerberos) &&
1245 (global_secflags & CIFSSEC_MAY_KRB5))
1253 struct SMB2_sess_data {
1255 struct cifs_ses *ses;
1256 struct TCP_Server_Info *server;
1257 struct nls_table *nls_cp;
1258 void (*func)(struct SMB2_sess_data *);
1260 u64 previous_session;
1262 /* we will send the SMB in three pieces:
1263 * a fixed length beginning part, an optional
1264 * SPNEGO blob (which can be zero length), and a
1265 * last part which will include the strings
1266 * and rest of bcc area. This allows us to avoid
1267 * a large buffer 17K allocation
1274 SMB2_sess_alloc_buffer(struct SMB2_sess_data *sess_data)
1277 struct cifs_ses *ses = sess_data->ses;
1278 struct TCP_Server_Info *server = sess_data->server;
1279 struct smb2_sess_setup_req *req;
1280 unsigned int total_len;
1281 bool is_binding = false;
1283 rc = smb2_plain_req_init(SMB2_SESSION_SETUP, NULL, server,
1289 spin_lock(&ses->chan_lock);
1290 is_binding = !CIFS_ALL_CHANS_NEED_RECONNECT(ses);
1291 spin_unlock(&ses->chan_lock);
1294 req->hdr.SessionId = cpu_to_le64(ses->Suid);
1295 req->hdr.Flags |= SMB2_FLAGS_SIGNED;
1296 req->PreviousSessionId = 0;
1297 req->Flags = SMB2_SESSION_REQ_FLAG_BINDING;
1298 cifs_dbg(FYI, "Binding to sess id: %llx\n", ses->Suid);
1300 /* First session, not a reauthenticate */
1301 req->hdr.SessionId = 0;
1303 * if reconnect, we need to send previous sess id
1306 req->PreviousSessionId = cpu_to_le64(sess_data->previous_session);
1307 req->Flags = 0; /* MBZ */
1308 cifs_dbg(FYI, "Fresh session. Previous: %llx\n",
1309 sess_data->previous_session);
1312 /* enough to enable echos and oplocks and one max size write */
1313 req->hdr.CreditRequest = cpu_to_le16(130);
1315 /* only one of SMB2 signing flags may be set in SMB2 request */
1317 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_REQUIRED;
1318 else if (global_secflags & CIFSSEC_MAY_SIGN) /* one flag unlike MUST_ */
1319 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED;
1321 req->SecurityMode = 0;
1323 #ifdef CONFIG_CIFS_DFS_UPCALL
1324 req->Capabilities = cpu_to_le32(SMB2_GLOBAL_CAP_DFS);
1326 req->Capabilities = 0;
1327 #endif /* DFS_UPCALL */
1329 req->Channel = 0; /* MBZ */
1331 sess_data->iov[0].iov_base = (char *)req;
1333 sess_data->iov[0].iov_len = total_len - 1;
1335 * This variable will be used to clear the buffer
1336 * allocated above in case of any error in the calling function.
1338 sess_data->buf0_type = CIFS_SMALL_BUFFER;
1344 SMB2_sess_free_buffer(struct SMB2_sess_data *sess_data)
1346 free_rsp_buf(sess_data->buf0_type, sess_data->iov[0].iov_base);
1347 sess_data->buf0_type = CIFS_NO_BUFFER;
1351 SMB2_sess_sendreceive(struct SMB2_sess_data *sess_data)
1354 struct smb_rqst rqst;
1355 struct smb2_sess_setup_req *req = sess_data->iov[0].iov_base;
1356 struct kvec rsp_iov = { NULL, 0 };
1358 /* Testing shows that buffer offset must be at location of Buffer[0] */
1359 req->SecurityBufferOffset =
1360 cpu_to_le16(sizeof(struct smb2_sess_setup_req) - 1 /* pad */);
1361 req->SecurityBufferLength = cpu_to_le16(sess_data->iov[1].iov_len);
1363 memset(&rqst, 0, sizeof(struct smb_rqst));
1364 rqst.rq_iov = sess_data->iov;
1367 /* BB add code to build os and lm fields */
1368 rc = cifs_send_recv(sess_data->xid, sess_data->ses,
1371 &sess_data->buf0_type,
1372 CIFS_LOG_ERROR | CIFS_SESS_OP, &rsp_iov);
1373 cifs_small_buf_release(sess_data->iov[0].iov_base);
1374 memcpy(&sess_data->iov[0], &rsp_iov, sizeof(struct kvec));
1380 SMB2_sess_establish_session(struct SMB2_sess_data *sess_data)
1383 struct cifs_ses *ses = sess_data->ses;
1384 struct TCP_Server_Info *server = sess_data->server;
1386 cifs_server_lock(server);
1387 if (server->ops->generate_signingkey) {
1388 rc = server->ops->generate_signingkey(ses, server);
1391 "SMB3 session key generation failed\n");
1392 cifs_server_unlock(server);
1396 if (!server->session_estab) {
1397 server->sequence_number = 0x2;
1398 server->session_estab = true;
1400 cifs_server_unlock(server);
1402 cifs_dbg(FYI, "SMB2/3 session established successfully\n");
1406 #ifdef CONFIG_CIFS_UPCALL
1408 SMB2_auth_kerberos(struct SMB2_sess_data *sess_data)
1411 struct cifs_ses *ses = sess_data->ses;
1412 struct TCP_Server_Info *server = sess_data->server;
1413 struct cifs_spnego_msg *msg;
1414 struct key *spnego_key = NULL;
1415 struct smb2_sess_setup_rsp *rsp = NULL;
1416 bool is_binding = false;
1418 rc = SMB2_sess_alloc_buffer(sess_data);
1422 spnego_key = cifs_get_spnego_key(ses, server);
1423 if (IS_ERR(spnego_key)) {
1424 rc = PTR_ERR(spnego_key);
1426 cifs_dbg(VFS, "Verify user has a krb5 ticket and keyutils is installed\n");
1431 msg = spnego_key->payload.data[0];
1433 * check version field to make sure that cifs.upcall is
1434 * sending us a response in an expected form
1436 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
1437 cifs_dbg(VFS, "bad cifs.upcall version. Expected %d got %d\n",
1438 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
1440 goto out_put_spnego_key;
1443 spin_lock(&ses->chan_lock);
1444 is_binding = !CIFS_ALL_CHANS_NEED_RECONNECT(ses);
1445 spin_unlock(&ses->chan_lock);
1447 /* keep session key if binding */
1449 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
1451 if (!ses->auth_key.response) {
1452 cifs_dbg(VFS, "Kerberos can't allocate (%u bytes) memory\n",
1455 goto out_put_spnego_key;
1457 ses->auth_key.len = msg->sesskey_len;
1460 sess_data->iov[1].iov_base = msg->data + msg->sesskey_len;
1461 sess_data->iov[1].iov_len = msg->secblob_len;
1463 rc = SMB2_sess_sendreceive(sess_data);
1465 goto out_put_spnego_key;
1467 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
1468 /* keep session id and flags if binding */
1470 ses->Suid = le64_to_cpu(rsp->hdr.SessionId);
1471 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
1474 rc = SMB2_sess_establish_session(sess_data);
1476 key_invalidate(spnego_key);
1477 key_put(spnego_key);
1479 sess_data->result = rc;
1480 sess_data->func = NULL;
1481 SMB2_sess_free_buffer(sess_data);
1485 SMB2_auth_kerberos(struct SMB2_sess_data *sess_data)
1487 cifs_dbg(VFS, "Kerberos negotiated but upcall support disabled!\n");
1488 sess_data->result = -EOPNOTSUPP;
1489 sess_data->func = NULL;
1494 SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data);
1497 SMB2_sess_auth_rawntlmssp_negotiate(struct SMB2_sess_data *sess_data)
1500 struct cifs_ses *ses = sess_data->ses;
1501 struct TCP_Server_Info *server = sess_data->server;
1502 struct smb2_sess_setup_rsp *rsp = NULL;
1503 unsigned char *ntlmssp_blob = NULL;
1504 bool use_spnego = false; /* else use raw ntlmssp */
1505 u16 blob_length = 0;
1506 bool is_binding = false;
1509 * If memory allocation is successful, caller of this function
1512 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
1513 if (!ses->ntlmssp) {
1517 ses->ntlmssp->sesskey_per_smbsess = true;
1519 rc = SMB2_sess_alloc_buffer(sess_data);
1523 rc = build_ntlmssp_smb3_negotiate_blob(&ntlmssp_blob,
1524 &blob_length, ses, server,
1530 /* BB eventually need to add this */
1531 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
1535 sess_data->iov[1].iov_base = ntlmssp_blob;
1536 sess_data->iov[1].iov_len = blob_length;
1538 rc = SMB2_sess_sendreceive(sess_data);
1539 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
1541 /* If true, rc here is expected and not an error */
1542 if (sess_data->buf0_type != CIFS_NO_BUFFER &&
1543 rsp->hdr.Status == STATUS_MORE_PROCESSING_REQUIRED)
1549 if (offsetof(struct smb2_sess_setup_rsp, Buffer) !=
1550 le16_to_cpu(rsp->SecurityBufferOffset)) {
1551 cifs_dbg(VFS, "Invalid security buffer offset %d\n",
1552 le16_to_cpu(rsp->SecurityBufferOffset));
1556 rc = decode_ntlmssp_challenge(rsp->Buffer,
1557 le16_to_cpu(rsp->SecurityBufferLength), ses);
1561 cifs_dbg(FYI, "rawntlmssp session setup challenge phase\n");
1563 spin_lock(&ses->chan_lock);
1564 is_binding = !CIFS_ALL_CHANS_NEED_RECONNECT(ses);
1565 spin_unlock(&ses->chan_lock);
1567 /* keep existing ses id and flags if binding */
1569 ses->Suid = le64_to_cpu(rsp->hdr.SessionId);
1570 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
1574 kfree(ntlmssp_blob);
1575 SMB2_sess_free_buffer(sess_data);
1577 sess_data->result = 0;
1578 sess_data->func = SMB2_sess_auth_rawntlmssp_authenticate;
1582 kfree(ses->ntlmssp);
1583 ses->ntlmssp = NULL;
1584 sess_data->result = rc;
1585 sess_data->func = NULL;
1589 SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data)
1592 struct cifs_ses *ses = sess_data->ses;
1593 struct TCP_Server_Info *server = sess_data->server;
1594 struct smb2_sess_setup_req *req;
1595 struct smb2_sess_setup_rsp *rsp = NULL;
1596 unsigned char *ntlmssp_blob = NULL;
1597 bool use_spnego = false; /* else use raw ntlmssp */
1598 u16 blob_length = 0;
1599 bool is_binding = false;
1601 rc = SMB2_sess_alloc_buffer(sess_data);
1605 req = (struct smb2_sess_setup_req *) sess_data->iov[0].iov_base;
1606 req->hdr.SessionId = cpu_to_le64(ses->Suid);
1608 rc = build_ntlmssp_auth_blob(&ntlmssp_blob, &blob_length,
1612 cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n", rc);
1617 /* BB eventually need to add this */
1618 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
1622 sess_data->iov[1].iov_base = ntlmssp_blob;
1623 sess_data->iov[1].iov_len = blob_length;
1625 rc = SMB2_sess_sendreceive(sess_data);
1629 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
1631 spin_lock(&ses->chan_lock);
1632 is_binding = !CIFS_ALL_CHANS_NEED_RECONNECT(ses);
1633 spin_unlock(&ses->chan_lock);
1635 /* keep existing ses id and flags if binding */
1637 ses->Suid = le64_to_cpu(rsp->hdr.SessionId);
1638 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
1641 rc = SMB2_sess_establish_session(sess_data);
1642 #ifdef CONFIG_CIFS_DEBUG_DUMP_KEYS
1643 if (ses->server->dialect < SMB30_PROT_ID) {
1644 cifs_dbg(VFS, "%s: dumping generated SMB2 session keys\n", __func__);
1646 * The session id is opaque in terms of endianness, so we can't
1647 * print it as a long long. we dump it as we got it on the wire
1649 cifs_dbg(VFS, "Session Id %*ph\n", (int)sizeof(ses->Suid),
1651 cifs_dbg(VFS, "Session Key %*ph\n",
1652 SMB2_NTLMV2_SESSKEY_SIZE, ses->auth_key.response);
1653 cifs_dbg(VFS, "Signing Key %*ph\n",
1654 SMB3_SIGN_KEY_SIZE, ses->auth_key.response);
1658 kfree(ntlmssp_blob);
1659 SMB2_sess_free_buffer(sess_data);
1660 kfree(ses->ntlmssp);
1661 ses->ntlmssp = NULL;
1662 sess_data->result = rc;
1663 sess_data->func = NULL;
1667 SMB2_select_sec(struct SMB2_sess_data *sess_data)
1670 struct cifs_ses *ses = sess_data->ses;
1671 struct TCP_Server_Info *server = sess_data->server;
1673 type = smb2_select_sectype(server, ses->sectype);
1674 cifs_dbg(FYI, "sess setup type %d\n", type);
1675 if (type == Unspecified) {
1676 cifs_dbg(VFS, "Unable to select appropriate authentication method!\n");
1682 sess_data->func = SMB2_auth_kerberos;
1685 sess_data->func = SMB2_sess_auth_rawntlmssp_negotiate;
1688 cifs_dbg(VFS, "secType %d not supported!\n", type);
1696 SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
1697 struct TCP_Server_Info *server,
1698 const struct nls_table *nls_cp)
1701 struct SMB2_sess_data *sess_data;
1703 cifs_dbg(FYI, "Session Setup\n");
1706 WARN(1, "%s: server is NULL!\n", __func__);
1710 sess_data = kzalloc(sizeof(struct SMB2_sess_data), GFP_KERNEL);
1714 sess_data->xid = xid;
1715 sess_data->ses = ses;
1716 sess_data->server = server;
1717 sess_data->buf0_type = CIFS_NO_BUFFER;
1718 sess_data->nls_cp = (struct nls_table *) nls_cp;
1719 sess_data->previous_session = ses->Suid;
1721 rc = SMB2_select_sec(sess_data);
1726 * Initialize the session hash with the server one.
1728 memcpy(ses->preauth_sha_hash, server->preauth_sha_hash,
1729 SMB2_PREAUTH_HASH_SIZE);
1731 while (sess_data->func)
1732 sess_data->func(sess_data);
1734 if ((ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST) && (ses->sign))
1735 cifs_server_dbg(VFS, "signing requested but authenticated as guest\n");
1736 rc = sess_data->result;
1743 SMB2_logoff(const unsigned int xid, struct cifs_ses *ses)
1745 struct smb_rqst rqst;
1746 struct smb2_logoff_req *req; /* response is also trivial struct */
1748 struct TCP_Server_Info *server;
1750 unsigned int total_len;
1752 struct kvec rsp_iov;
1755 cifs_dbg(FYI, "disconnect session %p\n", ses);
1757 if (ses && (ses->server))
1758 server = ses->server;
1762 /* no need to send SMB logoff if uid already closed due to reconnect */
1763 spin_lock(&ses->chan_lock);
1764 if (CIFS_ALL_CHANS_NEED_RECONNECT(ses)) {
1765 spin_unlock(&ses->chan_lock);
1766 goto smb2_session_already_dead;
1768 spin_unlock(&ses->chan_lock);
1770 rc = smb2_plain_req_init(SMB2_LOGOFF, NULL, ses->server,
1771 (void **) &req, &total_len);
1775 /* since no tcon, smb2_init can not do this, so do here */
1776 req->hdr.SessionId = cpu_to_le64(ses->Suid);
1778 if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA)
1779 flags |= CIFS_TRANSFORM_REQ;
1780 else if (server->sign)
1781 req->hdr.Flags |= SMB2_FLAGS_SIGNED;
1783 flags |= CIFS_NO_RSP_BUF;
1785 iov[0].iov_base = (char *)req;
1786 iov[0].iov_len = total_len;
1788 memset(&rqst, 0, sizeof(struct smb_rqst));
1792 rc = cifs_send_recv(xid, ses, ses->server,
1793 &rqst, &resp_buf_type, flags, &rsp_iov);
1794 cifs_small_buf_release(req);
1796 * No tcon so can't do
1797 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
1800 smb2_session_already_dead:
1804 static inline void cifs_stats_fail_inc(struct cifs_tcon *tcon, uint16_t code)
1806 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_failed[code]);
1809 #define MAX_SHARENAME_LENGTH (255 /* server */ + 80 /* share */ + 1 /* NULL */)
1811 /* These are similar values to what Windows uses */
1812 static inline void init_copy_chunk_defaults(struct cifs_tcon *tcon)
1814 tcon->max_chunks = 256;
1815 tcon->max_bytes_chunk = 1048576;
1816 tcon->max_bytes_copy = 16777216;
1820 SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
1821 struct cifs_tcon *tcon, const struct nls_table *cp)
1823 struct smb_rqst rqst;
1824 struct smb2_tree_connect_req *req;
1825 struct smb2_tree_connect_rsp *rsp = NULL;
1827 struct kvec rsp_iov = { NULL, 0 };
1831 __le16 *unc_path = NULL;
1833 unsigned int total_len;
1834 struct TCP_Server_Info *server;
1836 /* always use master channel */
1837 server = ses->server;
1839 cifs_dbg(FYI, "TCON\n");
1841 if (!server || !tree)
1844 unc_path = kmalloc(MAX_SHARENAME_LENGTH * 2, GFP_KERNEL);
1845 if (unc_path == NULL)
1848 unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp) + 1;
1850 if (unc_path_len < 2) {
1855 /* SMB2 TREE_CONNECT request must be called with TreeId == 0 */
1857 atomic_set(&tcon->num_remote_opens, 0);
1858 rc = smb2_plain_req_init(SMB2_TREE_CONNECT, tcon, server,
1859 (void **) &req, &total_len);
1865 if (smb3_encryption_required(tcon))
1866 flags |= CIFS_TRANSFORM_REQ;
1868 iov[0].iov_base = (char *)req;
1870 iov[0].iov_len = total_len - 1;
1872 /* Testing shows that buffer offset must be at location of Buffer[0] */
1873 req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)
1875 req->PathLength = cpu_to_le16(unc_path_len - 2);
1876 iov[1].iov_base = unc_path;
1877 iov[1].iov_len = unc_path_len;
1880 * 3.11 tcon req must be signed if not encrypted. See MS-SMB2 3.2.4.1.1
1881 * unless it is guest or anonymous user. See MS-SMB2 3.2.5.3.1
1882 * (Samba servers don't always set the flag so also check if null user)
1884 if ((server->dialect == SMB311_PROT_ID) &&
1885 !smb3_encryption_required(tcon) &&
1886 !(ses->session_flags &
1887 (SMB2_SESSION_FLAG_IS_GUEST|SMB2_SESSION_FLAG_IS_NULL)) &&
1888 ((ses->user_name != NULL) || (ses->sectype == Kerberos)))
1889 req->hdr.Flags |= SMB2_FLAGS_SIGNED;
1891 memset(&rqst, 0, sizeof(struct smb_rqst));
1895 /* Need 64 for max size write so ask for more in case not there yet */
1896 req->hdr.CreditRequest = cpu_to_le16(64);
1898 rc = cifs_send_recv(xid, ses, server,
1899 &rqst, &resp_buftype, flags, &rsp_iov);
1900 cifs_small_buf_release(req);
1901 rsp = (struct smb2_tree_connect_rsp *)rsp_iov.iov_base;
1902 trace_smb3_tcon(xid, tcon->tid, ses->Suid, tree, rc);
1903 if ((rc != 0) || (rsp == NULL)) {
1904 cifs_stats_fail_inc(tcon, SMB2_TREE_CONNECT_HE);
1905 tcon->need_reconnect = true;
1906 goto tcon_error_exit;
1909 switch (rsp->ShareType) {
1910 case SMB2_SHARE_TYPE_DISK:
1911 cifs_dbg(FYI, "connection to disk share\n");
1913 case SMB2_SHARE_TYPE_PIPE:
1915 cifs_dbg(FYI, "connection to pipe share\n");
1917 case SMB2_SHARE_TYPE_PRINT:
1919 cifs_dbg(FYI, "connection to printer\n");
1922 cifs_server_dbg(VFS, "unknown share type %d\n", rsp->ShareType);
1924 goto tcon_error_exit;
1927 tcon->share_flags = le32_to_cpu(rsp->ShareFlags);
1928 tcon->capabilities = rsp->Capabilities; /* we keep caps little endian */
1929 tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess);
1930 tcon->tid = le32_to_cpu(rsp->hdr.Id.SyncId.TreeId);
1931 strscpy(tcon->treeName, tree, sizeof(tcon->treeName));
1933 if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) &&
1934 ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0))
1935 cifs_tcon_dbg(VFS, "DFS capability contradicts DFS flag\n");
1938 !(server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION))
1939 cifs_tcon_dbg(VFS, "Encryption is requested but not supported\n");
1941 init_copy_chunk_defaults(tcon);
1942 if (server->ops->validate_negotiate)
1943 rc = server->ops->validate_negotiate(xid, tcon);
1946 free_rsp_buf(resp_buftype, rsp);
1951 if (rsp && rsp->hdr.Status == STATUS_BAD_NETWORK_NAME)
1952 cifs_tcon_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree);
1957 SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
1959 struct smb_rqst rqst;
1960 struct smb2_tree_disconnect_req *req; /* response is trivial */
1962 struct cifs_ses *ses = tcon->ses;
1964 unsigned int total_len;
1966 struct kvec rsp_iov;
1969 cifs_dbg(FYI, "Tree Disconnect\n");
1971 if (!ses || !(ses->server))
1974 spin_lock(&ses->chan_lock);
1975 if ((tcon->need_reconnect) ||
1976 (CIFS_ALL_CHANS_NEED_RECONNECT(tcon->ses))) {
1977 spin_unlock(&ses->chan_lock);
1980 spin_unlock(&ses->chan_lock);
1982 invalidate_all_cached_dirs(tcon);
1984 rc = smb2_plain_req_init(SMB2_TREE_DISCONNECT, tcon, ses->server,
1990 if (smb3_encryption_required(tcon))
1991 flags |= CIFS_TRANSFORM_REQ;
1993 flags |= CIFS_NO_RSP_BUF;
1995 iov[0].iov_base = (char *)req;
1996 iov[0].iov_len = total_len;
1998 memset(&rqst, 0, sizeof(struct smb_rqst));
2002 rc = cifs_send_recv(xid, ses, ses->server,
2003 &rqst, &resp_buf_type, flags, &rsp_iov);
2004 cifs_small_buf_release(req);
2006 cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE);
2012 static struct create_durable *
2013 create_durable_buf(void)
2015 struct create_durable *buf;
2017 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
2021 buf->ccontext.DataOffset = cpu_to_le16(offsetof
2022 (struct create_durable, Data));
2023 buf->ccontext.DataLength = cpu_to_le32(16);
2024 buf->ccontext.NameOffset = cpu_to_le16(offsetof
2025 (struct create_durable, Name));
2026 buf->ccontext.NameLength = cpu_to_le16(4);
2027 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DHnQ" */
2035 static struct create_durable *
2036 create_reconnect_durable_buf(struct cifs_fid *fid)
2038 struct create_durable *buf;
2040 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
2044 buf->ccontext.DataOffset = cpu_to_le16(offsetof
2045 (struct create_durable, Data));
2046 buf->ccontext.DataLength = cpu_to_le32(16);
2047 buf->ccontext.NameOffset = cpu_to_le16(offsetof
2048 (struct create_durable, Name));
2049 buf->ccontext.NameLength = cpu_to_le16(4);
2050 buf->Data.Fid.PersistentFileId = fid->persistent_fid;
2051 buf->Data.Fid.VolatileFileId = fid->volatile_fid;
2052 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT is "DHnC" */
2061 parse_query_id_ctxt(struct create_context *cc, struct smb2_file_all_info *buf)
2063 struct create_on_disk_id *pdisk_id = (struct create_on_disk_id *)cc;
2065 cifs_dbg(FYI, "parse query id context 0x%llx 0x%llx\n",
2066 pdisk_id->DiskFileId, pdisk_id->VolumeId);
2067 buf->IndexNumber = pdisk_id->DiskFileId;
2071 parse_posix_ctxt(struct create_context *cc, struct smb2_file_all_info *info,
2072 struct create_posix_rsp *posix)
2075 u8 *beg = (u8 *)cc + le16_to_cpu(cc->DataOffset);
2076 u8 *end = beg + le32_to_cpu(cc->DataLength);
2079 memset(posix, 0, sizeof(*posix));
2081 posix->nlink = le32_to_cpu(*(__le32 *)(beg + 0));
2082 posix->reparse_tag = le32_to_cpu(*(__le32 *)(beg + 4));
2083 posix->mode = le32_to_cpu(*(__le32 *)(beg + 8));
2086 sid_len = posix_info_sid_size(sid, end);
2088 cifs_dbg(VFS, "bad owner sid in posix create response\n");
2091 memcpy(&posix->owner, sid, sid_len);
2093 sid = sid + sid_len;
2094 sid_len = posix_info_sid_size(sid, end);
2096 cifs_dbg(VFS, "bad group sid in posix create response\n");
2099 memcpy(&posix->group, sid, sid_len);
2101 cifs_dbg(FYI, "nlink=%d mode=%o reparse_tag=%x\n",
2102 posix->nlink, posix->mode, posix->reparse_tag);
2106 smb2_parse_contexts(struct TCP_Server_Info *server,
2107 struct smb2_create_rsp *rsp,
2108 unsigned int *epoch, char *lease_key, __u8 *oplock,
2109 struct smb2_file_all_info *buf,
2110 struct create_posix_rsp *posix)
2113 struct create_context *cc;
2115 unsigned int remaining;
2117 static const char smb3_create_tag_posix[] = {
2118 0x93, 0xAD, 0x25, 0x50, 0x9C,
2119 0xB4, 0x11, 0xE7, 0xB4, 0x23, 0x83,
2120 0xDE, 0x96, 0x8B, 0xCD, 0x7C
2124 data_offset = (char *)rsp + le32_to_cpu(rsp->CreateContextsOffset);
2125 remaining = le32_to_cpu(rsp->CreateContextsLength);
2126 cc = (struct create_context *)data_offset;
2128 /* Initialize inode number to 0 in case no valid data in qfid context */
2130 buf->IndexNumber = 0;
2132 while (remaining >= sizeof(struct create_context)) {
2133 name = le16_to_cpu(cc->NameOffset) + (char *)cc;
2134 if (le16_to_cpu(cc->NameLength) == 4 &&
2135 strncmp(name, SMB2_CREATE_REQUEST_LEASE, 4) == 0)
2136 *oplock = server->ops->parse_lease_buf(cc, epoch,
2138 else if (buf && (le16_to_cpu(cc->NameLength) == 4) &&
2139 strncmp(name, SMB2_CREATE_QUERY_ON_DISK_ID, 4) == 0)
2140 parse_query_id_ctxt(cc, buf);
2141 else if ((le16_to_cpu(cc->NameLength) == 16)) {
2143 memcmp(name, smb3_create_tag_posix, 16) == 0)
2144 parse_posix_ctxt(cc, buf, posix);
2147 cifs_dbg(FYI, "Context not matched with len %d\n",
2148 le16_to_cpu(cc->NameLength));
2149 cifs_dump_mem("Cctxt name: ", name, 4);
2152 next = le32_to_cpu(cc->Next);
2156 cc = (struct create_context *)((char *)cc + next);
2159 if (rsp->OplockLevel != SMB2_OPLOCK_LEVEL_LEASE)
2160 *oplock = rsp->OplockLevel;
2166 add_lease_context(struct TCP_Server_Info *server, struct kvec *iov,
2167 unsigned int *num_iovec, u8 *lease_key, __u8 *oplock)
2169 struct smb2_create_req *req = iov[0].iov_base;
2170 unsigned int num = *num_iovec;
2172 iov[num].iov_base = server->ops->create_lease_buf(lease_key, *oplock);
2173 if (iov[num].iov_base == NULL)
2175 iov[num].iov_len = server->vals->create_lease_size;
2176 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_LEASE;
2177 if (!req->CreateContextsOffset)
2178 req->CreateContextsOffset = cpu_to_le32(
2179 sizeof(struct smb2_create_req) +
2180 iov[num - 1].iov_len);
2181 le32_add_cpu(&req->CreateContextsLength,
2182 server->vals->create_lease_size);
2183 *num_iovec = num + 1;
2187 static struct create_durable_v2 *
2188 create_durable_v2_buf(struct cifs_open_parms *oparms)
2190 struct cifs_fid *pfid = oparms->fid;
2191 struct create_durable_v2 *buf;
2193 buf = kzalloc(sizeof(struct create_durable_v2), GFP_KERNEL);
2197 buf->ccontext.DataOffset = cpu_to_le16(offsetof
2198 (struct create_durable_v2, dcontext));
2199 buf->ccontext.DataLength = cpu_to_le32(sizeof(struct durable_context_v2));
2200 buf->ccontext.NameOffset = cpu_to_le16(offsetof
2201 (struct create_durable_v2, Name));
2202 buf->ccontext.NameLength = cpu_to_le16(4);
2205 * NB: Handle timeout defaults to 0, which allows server to choose
2206 * (most servers default to 120 seconds) and most clients default to 0.
2207 * This can be overridden at mount ("handletimeout=") if the user wants
2208 * a different persistent (or resilient) handle timeout for all opens
2209 * opens on a particular SMB3 mount.
2211 buf->dcontext.Timeout = cpu_to_le32(oparms->tcon->handle_timeout);
2212 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
2213 generate_random_uuid(buf->dcontext.CreateGuid);
2214 memcpy(pfid->create_guid, buf->dcontext.CreateGuid, 16);
2216 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DH2Q" */
2224 static struct create_durable_handle_reconnect_v2 *
2225 create_reconnect_durable_v2_buf(struct cifs_fid *fid)
2227 struct create_durable_handle_reconnect_v2 *buf;
2229 buf = kzalloc(sizeof(struct create_durable_handle_reconnect_v2),
2234 buf->ccontext.DataOffset =
2235 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
2237 buf->ccontext.DataLength =
2238 cpu_to_le32(sizeof(struct durable_reconnect_context_v2));
2239 buf->ccontext.NameOffset =
2240 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
2242 buf->ccontext.NameLength = cpu_to_le16(4);
2244 buf->dcontext.Fid.PersistentFileId = fid->persistent_fid;
2245 buf->dcontext.Fid.VolatileFileId = fid->volatile_fid;
2246 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
2247 memcpy(buf->dcontext.CreateGuid, fid->create_guid, 16);
2249 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 is "DH2C" */
2258 add_durable_v2_context(struct kvec *iov, unsigned int *num_iovec,
2259 struct cifs_open_parms *oparms)
2261 struct smb2_create_req *req = iov[0].iov_base;
2262 unsigned int num = *num_iovec;
2264 iov[num].iov_base = create_durable_v2_buf(oparms);
2265 if (iov[num].iov_base == NULL)
2267 iov[num].iov_len = sizeof(struct create_durable_v2);
2268 if (!req->CreateContextsOffset)
2269 req->CreateContextsOffset =
2270 cpu_to_le32(sizeof(struct smb2_create_req) +
2272 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable_v2));
2273 *num_iovec = num + 1;
2278 add_durable_reconnect_v2_context(struct kvec *iov, unsigned int *num_iovec,
2279 struct cifs_open_parms *oparms)
2281 struct smb2_create_req *req = iov[0].iov_base;
2282 unsigned int num = *num_iovec;
2284 /* indicate that we don't need to relock the file */
2285 oparms->reconnect = false;
2287 iov[num].iov_base = create_reconnect_durable_v2_buf(oparms->fid);
2288 if (iov[num].iov_base == NULL)
2290 iov[num].iov_len = sizeof(struct create_durable_handle_reconnect_v2);
2291 if (!req->CreateContextsOffset)
2292 req->CreateContextsOffset =
2293 cpu_to_le32(sizeof(struct smb2_create_req) +
2295 le32_add_cpu(&req->CreateContextsLength,
2296 sizeof(struct create_durable_handle_reconnect_v2));
2297 *num_iovec = num + 1;
2302 add_durable_context(struct kvec *iov, unsigned int *num_iovec,
2303 struct cifs_open_parms *oparms, bool use_persistent)
2305 struct smb2_create_req *req = iov[0].iov_base;
2306 unsigned int num = *num_iovec;
2308 if (use_persistent) {
2309 if (oparms->reconnect)
2310 return add_durable_reconnect_v2_context(iov, num_iovec,
2313 return add_durable_v2_context(iov, num_iovec, oparms);
2316 if (oparms->reconnect) {
2317 iov[num].iov_base = create_reconnect_durable_buf(oparms->fid);
2318 /* indicate that we don't need to relock the file */
2319 oparms->reconnect = false;
2321 iov[num].iov_base = create_durable_buf();
2322 if (iov[num].iov_base == NULL)
2324 iov[num].iov_len = sizeof(struct create_durable);
2325 if (!req->CreateContextsOffset)
2326 req->CreateContextsOffset =
2327 cpu_to_le32(sizeof(struct smb2_create_req) +
2329 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable));
2330 *num_iovec = num + 1;
2334 /* See MS-SMB2 2.2.13.2.7 */
2335 static struct crt_twarp_ctxt *
2336 create_twarp_buf(__u64 timewarp)
2338 struct crt_twarp_ctxt *buf;
2340 buf = kzalloc(sizeof(struct crt_twarp_ctxt), GFP_KERNEL);
2344 buf->ccontext.DataOffset = cpu_to_le16(offsetof
2345 (struct crt_twarp_ctxt, Timestamp));
2346 buf->ccontext.DataLength = cpu_to_le32(8);
2347 buf->ccontext.NameOffset = cpu_to_le16(offsetof
2348 (struct crt_twarp_ctxt, Name));
2349 buf->ccontext.NameLength = cpu_to_le16(4);
2350 /* SMB2_CREATE_TIMEWARP_TOKEN is "TWrp" */
2355 buf->Timestamp = cpu_to_le64(timewarp);
2359 /* See MS-SMB2 2.2.13.2.7 */
2361 add_twarp_context(struct kvec *iov, unsigned int *num_iovec, __u64 timewarp)
2363 struct smb2_create_req *req = iov[0].iov_base;
2364 unsigned int num = *num_iovec;
2366 iov[num].iov_base = create_twarp_buf(timewarp);
2367 if (iov[num].iov_base == NULL)
2369 iov[num].iov_len = sizeof(struct crt_twarp_ctxt);
2370 if (!req->CreateContextsOffset)
2371 req->CreateContextsOffset = cpu_to_le32(
2372 sizeof(struct smb2_create_req) +
2373 iov[num - 1].iov_len);
2374 le32_add_cpu(&req->CreateContextsLength, sizeof(struct crt_twarp_ctxt));
2375 *num_iovec = num + 1;
2379 /* See See http://technet.microsoft.com/en-us/library/hh509017(v=ws.10).aspx */
2380 static void setup_owner_group_sids(char *buf)
2382 struct owner_group_sids *sids = (struct owner_group_sids *)buf;
2384 /* Populate the user ownership fields S-1-5-88-1 */
2385 sids->owner.Revision = 1;
2386 sids->owner.NumAuth = 3;
2387 sids->owner.Authority[5] = 5;
2388 sids->owner.SubAuthorities[0] = cpu_to_le32(88);
2389 sids->owner.SubAuthorities[1] = cpu_to_le32(1);
2390 sids->owner.SubAuthorities[2] = cpu_to_le32(current_fsuid().val);
2392 /* Populate the group ownership fields S-1-5-88-2 */
2393 sids->group.Revision = 1;
2394 sids->group.NumAuth = 3;
2395 sids->group.Authority[5] = 5;
2396 sids->group.SubAuthorities[0] = cpu_to_le32(88);
2397 sids->group.SubAuthorities[1] = cpu_to_le32(2);
2398 sids->group.SubAuthorities[2] = cpu_to_le32(current_fsgid().val);
2400 cifs_dbg(FYI, "owner S-1-5-88-1-%d, group S-1-5-88-2-%d\n", current_fsuid().val, current_fsgid().val);
2403 /* See MS-SMB2 2.2.13.2.2 and MS-DTYP 2.4.6 */
2404 static struct crt_sd_ctxt *
2405 create_sd_buf(umode_t mode, bool set_owner, unsigned int *len)
2407 struct crt_sd_ctxt *buf;
2409 unsigned int acelen, acl_size, ace_count;
2410 unsigned int owner_offset = 0;
2411 unsigned int group_offset = 0;
2412 struct smb3_acl acl;
2414 *len = roundup(sizeof(struct crt_sd_ctxt) + (sizeof(struct cifs_ace) * 4), 8);
2417 /* sizeof(struct owner_group_sids) is already multiple of 8 so no need to round */
2418 *len += sizeof(struct owner_group_sids);
2421 buf = kzalloc(*len, GFP_KERNEL);
2425 ptr = (__u8 *)&buf[1];
2427 /* offset fields are from beginning of security descriptor not of create context */
2428 owner_offset = ptr - (__u8 *)&buf->sd;
2429 buf->sd.OffsetOwner = cpu_to_le32(owner_offset);
2430 group_offset = owner_offset + offsetof(struct owner_group_sids, group);
2431 buf->sd.OffsetGroup = cpu_to_le32(group_offset);
2433 setup_owner_group_sids(ptr);
2434 ptr += sizeof(struct owner_group_sids);
2436 buf->sd.OffsetOwner = 0;
2437 buf->sd.OffsetGroup = 0;
2440 buf->ccontext.DataOffset = cpu_to_le16(offsetof(struct crt_sd_ctxt, sd));
2441 buf->ccontext.NameOffset = cpu_to_le16(offsetof(struct crt_sd_ctxt, Name));
2442 buf->ccontext.NameLength = cpu_to_le16(4);
2443 /* SMB2_CREATE_SD_BUFFER_TOKEN is "SecD" */
2448 buf->sd.Revision = 1; /* Must be one see MS-DTYP 2.4.6 */
2451 * ACL is "self relative" ie ACL is stored in contiguous block of memory
2452 * and "DP" ie the DACL is present
2454 buf->sd.Control = cpu_to_le16(ACL_CONTROL_SR | ACL_CONTROL_DP);
2456 /* offset owner, group and Sbz1 and SACL are all zero */
2457 buf->sd.OffsetDacl = cpu_to_le32(ptr - (__u8 *)&buf->sd);
2458 /* Ship the ACL for now. we will copy it into buf later. */
2460 ptr += sizeof(struct smb3_acl);
2462 /* create one ACE to hold the mode embedded in reserved special SID */
2463 acelen = setup_special_mode_ACE((struct cifs_ace *)ptr, (__u64)mode);
2465 acl_size = acelen + sizeof(struct smb3_acl);
2469 /* we do not need to reallocate buffer to add the two more ACEs. plenty of space */
2470 acelen = setup_special_user_owner_ACE((struct cifs_ace *)ptr);
2476 /* and one more ACE to allow access for authenticated users */
2477 acelen = setup_authusers_ACE((struct cifs_ace *)ptr);
2482 acl.AclRevision = ACL_REVISION; /* See 2.4.4.1 of MS-DTYP */
2483 acl.AclSize = cpu_to_le16(acl_size);
2484 acl.AceCount = cpu_to_le16(ace_count);
2485 memcpy(aclptr, &acl, sizeof(struct smb3_acl));
2487 buf->ccontext.DataLength = cpu_to_le32(ptr - (__u8 *)&buf->sd);
2488 *len = roundup(ptr - (__u8 *)buf, 8);
2494 add_sd_context(struct kvec *iov, unsigned int *num_iovec, umode_t mode, bool set_owner)
2496 struct smb2_create_req *req = iov[0].iov_base;
2497 unsigned int num = *num_iovec;
2498 unsigned int len = 0;
2500 iov[num].iov_base = create_sd_buf(mode, set_owner, &len);
2501 if (iov[num].iov_base == NULL)
2503 iov[num].iov_len = len;
2504 if (!req->CreateContextsOffset)
2505 req->CreateContextsOffset = cpu_to_le32(
2506 sizeof(struct smb2_create_req) +
2507 iov[num - 1].iov_len);
2508 le32_add_cpu(&req->CreateContextsLength, len);
2509 *num_iovec = num + 1;
2513 static struct crt_query_id_ctxt *
2514 create_query_id_buf(void)
2516 struct crt_query_id_ctxt *buf;
2518 buf = kzalloc(sizeof(struct crt_query_id_ctxt), GFP_KERNEL);
2522 buf->ccontext.DataOffset = cpu_to_le16(0);
2523 buf->ccontext.DataLength = cpu_to_le32(0);
2524 buf->ccontext.NameOffset = cpu_to_le16(offsetof
2525 (struct crt_query_id_ctxt, Name));
2526 buf->ccontext.NameLength = cpu_to_le16(4);
2527 /* SMB2_CREATE_QUERY_ON_DISK_ID is "QFid" */
2535 /* See MS-SMB2 2.2.13.2.9 */
2537 add_query_id_context(struct kvec *iov, unsigned int *num_iovec)
2539 struct smb2_create_req *req = iov[0].iov_base;
2540 unsigned int num = *num_iovec;
2542 iov[num].iov_base = create_query_id_buf();
2543 if (iov[num].iov_base == NULL)
2545 iov[num].iov_len = sizeof(struct crt_query_id_ctxt);
2546 if (!req->CreateContextsOffset)
2547 req->CreateContextsOffset = cpu_to_le32(
2548 sizeof(struct smb2_create_req) +
2549 iov[num - 1].iov_len);
2550 le32_add_cpu(&req->CreateContextsLength, sizeof(struct crt_query_id_ctxt));
2551 *num_iovec = num + 1;
2556 alloc_path_with_tree_prefix(__le16 **out_path, int *out_size, int *out_len,
2557 const char *treename, const __le16 *path)
2559 int treename_len, path_len;
2560 struct nls_table *cp;
2561 const __le16 sep[] = {cpu_to_le16('\\'), cpu_to_le16(0x0000)};
2566 treename_len = strlen(treename);
2567 if (treename_len < 2 || !(treename[0] == '\\' && treename[1] == '\\'))
2573 path_len = UniStrnlen((wchar_t *)path, PATH_MAX);
2576 * make room for one path separator between the treename and
2579 *out_len = treename_len + 1 + path_len;
2582 * final path needs to be null-terminated UTF16 with a
2586 *out_size = roundup((*out_len+1)*2, 8);
2587 *out_path = kzalloc(*out_size, GFP_KERNEL);
2591 cp = load_nls_default();
2592 cifs_strtoUTF16(*out_path, treename, treename_len, cp);
2594 /* Do not append the separator if the path is empty */
2595 if (path[0] != cpu_to_le16(0x0000)) {
2596 UniStrcat(*out_path, sep);
2597 UniStrcat(*out_path, path);
2605 int smb311_posix_mkdir(const unsigned int xid, struct inode *inode,
2606 umode_t mode, struct cifs_tcon *tcon,
2607 const char *full_path,
2608 struct cifs_sb_info *cifs_sb)
2610 struct smb_rqst rqst;
2611 struct smb2_create_req *req;
2612 struct smb2_create_rsp *rsp = NULL;
2613 struct cifs_ses *ses = tcon->ses;
2614 struct kvec iov[3]; /* make sure at least one for each open context */
2615 struct kvec rsp_iov = {NULL, 0};
2618 __le16 *copy_path = NULL;
2621 unsigned int n_iov = 2;
2622 __u32 file_attributes = 0;
2623 char *pc_buf = NULL;
2625 unsigned int total_len;
2626 __le16 *utf16_path = NULL;
2627 struct TCP_Server_Info *server = cifs_pick_channel(ses);
2629 cifs_dbg(FYI, "mkdir\n");
2631 /* resource #1: path allocation */
2632 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb);
2636 if (!ses || !server) {
2641 /* resource #2: request */
2642 rc = smb2_plain_req_init(SMB2_CREATE, tcon, server,
2643 (void **) &req, &total_len);
2648 if (smb3_encryption_required(tcon))
2649 flags |= CIFS_TRANSFORM_REQ;
2651 req->ImpersonationLevel = IL_IMPERSONATION;
2652 req->DesiredAccess = cpu_to_le32(FILE_WRITE_ATTRIBUTES);
2653 /* File attributes ignored on open (used in create though) */
2654 req->FileAttributes = cpu_to_le32(file_attributes);
2655 req->ShareAccess = FILE_SHARE_ALL_LE;
2656 req->CreateDisposition = cpu_to_le32(FILE_CREATE);
2657 req->CreateOptions = cpu_to_le32(CREATE_NOT_FILE);
2659 iov[0].iov_base = (char *)req;
2660 /* -1 since last byte is buf[0] which is sent below (path) */
2661 iov[0].iov_len = total_len - 1;
2663 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req));
2665 /* [MS-SMB2] 2.2.13 NameOffset:
2666 * If SMB2_FLAGS_DFS_OPERATIONS is set in the Flags field of
2667 * the SMB2 header, the file name includes a prefix that will
2668 * be processed during DFS name normalization as specified in
2669 * section 3.3.5.9. Otherwise, the file name is relative to
2670 * the share that is identified by the TreeId in the SMB2
2673 if (tcon->share_flags & SHI1005_FLAGS_DFS) {
2676 req->hdr.Flags |= SMB2_FLAGS_DFS_OPERATIONS;
2677 rc = alloc_path_with_tree_prefix(©_path, ©_size,
2679 tcon->treeName, utf16_path);
2683 req->NameLength = cpu_to_le16(name_len * 2);
2684 uni_path_len = copy_size;
2685 /* free before overwriting resource */
2687 utf16_path = copy_path;
2689 uni_path_len = (2 * UniStrnlen((wchar_t *)utf16_path, PATH_MAX)) + 2;
2690 /* MUST set path len (NameLength) to 0 opening root of share */
2691 req->NameLength = cpu_to_le16(uni_path_len - 2);
2692 if (uni_path_len % 8 != 0) {
2693 copy_size = roundup(uni_path_len, 8);
2694 copy_path = kzalloc(copy_size, GFP_KERNEL);
2699 memcpy((char *)copy_path, (const char *)utf16_path,
2701 uni_path_len = copy_size;
2702 /* free before overwriting resource */
2704 utf16_path = copy_path;
2708 iov[1].iov_len = uni_path_len;
2709 iov[1].iov_base = utf16_path;
2710 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_NONE;
2712 if (tcon->posix_extensions) {
2713 /* resource #3: posix buf */
2714 rc = add_posix_context(iov, &n_iov, mode);
2717 pc_buf = iov[n_iov-1].iov_base;
2721 memset(&rqst, 0, sizeof(struct smb_rqst));
2723 rqst.rq_nvec = n_iov;
2725 /* no need to inc num_remote_opens because we close it just below */
2726 trace_smb3_posix_mkdir_enter(xid, tcon->tid, ses->Suid, CREATE_NOT_FILE,
2727 FILE_WRITE_ATTRIBUTES);
2728 /* resource #4: response buffer */
2729 rc = cifs_send_recv(xid, ses, server,
2730 &rqst, &resp_buftype, flags, &rsp_iov);
2732 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
2733 trace_smb3_posix_mkdir_err(xid, tcon->tid, ses->Suid,
2735 FILE_WRITE_ATTRIBUTES, rc);
2736 goto err_free_rsp_buf;
2740 * Although unlikely to be possible for rsp to be null and rc not set,
2741 * adding check below is slightly safer long term (and quiets Coverity
2744 rsp = (struct smb2_create_rsp *)rsp_iov.iov_base;
2751 trace_smb3_posix_mkdir_done(xid, rsp->PersistentFileId, tcon->tid, ses->Suid,
2752 CREATE_NOT_FILE, FILE_WRITE_ATTRIBUTES);
2754 SMB2_close(xid, tcon, rsp->PersistentFileId, rsp->VolatileFileId);
2756 /* Eventually save off posix specific response info and timestaps */
2759 free_rsp_buf(resp_buftype, rsp);
2762 cifs_small_buf_release(req);
2769 SMB2_open_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server,
2770 struct smb_rqst *rqst, __u8 *oplock,
2771 struct cifs_open_parms *oparms, __le16 *path)
2773 struct smb2_create_req *req;
2774 unsigned int n_iov = 2;
2775 __u32 file_attributes = 0;
2778 unsigned int total_len;
2779 struct kvec *iov = rqst->rq_iov;
2783 rc = smb2_plain_req_init(SMB2_CREATE, tcon, server,
2784 (void **) &req, &total_len);
2788 iov[0].iov_base = (char *)req;
2789 /* -1 since last byte is buf[0] which is sent below (path) */
2790 iov[0].iov_len = total_len - 1;
2792 if (oparms->create_options & CREATE_OPTION_READONLY)
2793 file_attributes |= ATTR_READONLY;
2794 if (oparms->create_options & CREATE_OPTION_SPECIAL)
2795 file_attributes |= ATTR_SYSTEM;
2797 req->ImpersonationLevel = IL_IMPERSONATION;
2798 req->DesiredAccess = cpu_to_le32(oparms->desired_access);
2799 /* File attributes ignored on open (used in create though) */
2800 req->FileAttributes = cpu_to_le32(file_attributes);
2801 req->ShareAccess = FILE_SHARE_ALL_LE;
2803 req->CreateDisposition = cpu_to_le32(oparms->disposition);
2804 req->CreateOptions = cpu_to_le32(oparms->create_options & CREATE_OPTIONS_MASK);
2805 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req));
2807 /* [MS-SMB2] 2.2.13 NameOffset:
2808 * If SMB2_FLAGS_DFS_OPERATIONS is set in the Flags field of
2809 * the SMB2 header, the file name includes a prefix that will
2810 * be processed during DFS name normalization as specified in
2811 * section 3.3.5.9. Otherwise, the file name is relative to
2812 * the share that is identified by the TreeId in the SMB2
2815 if (tcon->share_flags & SHI1005_FLAGS_DFS) {
2818 req->hdr.Flags |= SMB2_FLAGS_DFS_OPERATIONS;
2819 rc = alloc_path_with_tree_prefix(©_path, ©_size,
2821 tcon->treeName, path);
2824 req->NameLength = cpu_to_le16(name_len * 2);
2825 uni_path_len = copy_size;
2828 uni_path_len = (2 * UniStrnlen((wchar_t *)path, PATH_MAX)) + 2;
2829 /* MUST set path len (NameLength) to 0 opening root of share */
2830 req->NameLength = cpu_to_le16(uni_path_len - 2);
2831 copy_size = uni_path_len;
2832 if (copy_size % 8 != 0)
2833 copy_size = roundup(copy_size, 8);
2834 copy_path = kzalloc(copy_size, GFP_KERNEL);
2837 memcpy((char *)copy_path, (const char *)path,
2839 uni_path_len = copy_size;
2843 iov[1].iov_len = uni_path_len;
2844 iov[1].iov_base = path;
2846 if ((!server->oplocks) || (tcon->no_lease))
2847 *oplock = SMB2_OPLOCK_LEVEL_NONE;
2849 if (!(server->capabilities & SMB2_GLOBAL_CAP_LEASING) ||
2850 *oplock == SMB2_OPLOCK_LEVEL_NONE)
2851 req->RequestedOplockLevel = *oplock;
2852 else if (!(server->capabilities & SMB2_GLOBAL_CAP_DIRECTORY_LEASING) &&
2853 (oparms->create_options & CREATE_NOT_FILE))
2854 req->RequestedOplockLevel = *oplock; /* no srv lease support */
2856 rc = add_lease_context(server, iov, &n_iov,
2857 oparms->fid->lease_key, oplock);
2862 if (*oplock == SMB2_OPLOCK_LEVEL_BATCH) {
2863 /* need to set Next field of lease context if we request it */
2864 if (server->capabilities & SMB2_GLOBAL_CAP_LEASING) {
2865 struct create_context *ccontext =
2866 (struct create_context *)iov[n_iov-1].iov_base;
2868 cpu_to_le32(server->vals->create_lease_size);
2871 rc = add_durable_context(iov, &n_iov, oparms,
2872 tcon->use_persistent);
2877 if (tcon->posix_extensions) {
2879 struct create_context *ccontext =
2880 (struct create_context *)iov[n_iov-1].iov_base;
2882 cpu_to_le32(iov[n_iov-1].iov_len);
2885 rc = add_posix_context(iov, &n_iov, oparms->mode);
2890 if (tcon->snapshot_time) {
2891 cifs_dbg(FYI, "adding snapshot context\n");
2893 struct create_context *ccontext =
2894 (struct create_context *)iov[n_iov-1].iov_base;
2896 cpu_to_le32(iov[n_iov-1].iov_len);
2899 rc = add_twarp_context(iov, &n_iov, tcon->snapshot_time);
2904 if ((oparms->disposition != FILE_OPEN) && (oparms->cifs_sb)) {
2908 if ((oparms->cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MODE_FROM_SID) &&
2909 (oparms->mode != ACL_NO_MODE))
2913 oparms->mode = ACL_NO_MODE;
2916 if (oparms->cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UID_FROM_ACL)
2921 if (set_owner | set_mode) {
2923 struct create_context *ccontext =
2924 (struct create_context *)iov[n_iov-1].iov_base;
2925 ccontext->Next = cpu_to_le32(iov[n_iov-1].iov_len);
2928 cifs_dbg(FYI, "add sd with mode 0x%x\n", oparms->mode);
2929 rc = add_sd_context(iov, &n_iov, oparms->mode, set_owner);
2936 struct create_context *ccontext =
2937 (struct create_context *)iov[n_iov-1].iov_base;
2938 ccontext->Next = cpu_to_le32(iov[n_iov-1].iov_len);
2940 add_query_id_context(iov, &n_iov);
2942 rqst->rq_nvec = n_iov;
2946 /* rq_iov[0] is the request and is released by cifs_small_buf_release().
2947 * All other vectors are freed by kfree().
2950 SMB2_open_free(struct smb_rqst *rqst)
2954 if (rqst && rqst->rq_iov) {
2955 cifs_small_buf_release(rqst->rq_iov[0].iov_base);
2956 for (i = 1; i < rqst->rq_nvec; i++)
2957 if (rqst->rq_iov[i].iov_base != smb2_padding)
2958 kfree(rqst->rq_iov[i].iov_base);
2963 SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, __le16 *path,
2964 __u8 *oplock, struct smb2_file_all_info *buf,
2965 struct create_posix_rsp *posix,
2966 struct kvec *err_iov, int *buftype)
2968 struct smb_rqst rqst;
2969 struct smb2_create_rsp *rsp = NULL;
2970 struct cifs_tcon *tcon = oparms->tcon;
2971 struct cifs_ses *ses = tcon->ses;
2972 struct TCP_Server_Info *server = cifs_pick_channel(ses);
2973 struct kvec iov[SMB2_CREATE_IOV_SIZE];
2974 struct kvec rsp_iov = {NULL, 0};
2975 int resp_buftype = CIFS_NO_BUFFER;
2979 cifs_dbg(FYI, "create/open\n");
2980 if (!ses || !server)
2983 if (smb3_encryption_required(tcon))
2984 flags |= CIFS_TRANSFORM_REQ;
2986 memset(&rqst, 0, sizeof(struct smb_rqst));
2987 memset(&iov, 0, sizeof(iov));
2989 rqst.rq_nvec = SMB2_CREATE_IOV_SIZE;
2991 rc = SMB2_open_init(tcon, server,
2992 &rqst, oplock, oparms, path);
2996 trace_smb3_open_enter(xid, tcon->tid, tcon->ses->Suid,
2997 oparms->create_options, oparms->desired_access);
2999 rc = cifs_send_recv(xid, ses, server,
3000 &rqst, &resp_buftype, flags,
3002 rsp = (struct smb2_create_rsp *)rsp_iov.iov_base;
3005 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
3006 if (err_iov && rsp) {
3008 *buftype = resp_buftype;
3009 resp_buftype = CIFS_NO_BUFFER;
3012 trace_smb3_open_err(xid, tcon->tid, ses->Suid,
3013 oparms->create_options, oparms->desired_access, rc);
3014 if (rc == -EREMCHG) {
3015 pr_warn_once("server share %s deleted\n",
3017 tcon->need_reconnect = true;
3020 } else if (rsp == NULL) /* unlikely to happen, but safer to check */
3023 trace_smb3_open_done(xid, rsp->PersistentFileId, tcon->tid, ses->Suid,
3024 oparms->create_options, oparms->desired_access);
3026 atomic_inc(&tcon->num_remote_opens);
3027 oparms->fid->persistent_fid = rsp->PersistentFileId;
3028 oparms->fid->volatile_fid = rsp->VolatileFileId;
3029 oparms->fid->access = oparms->desired_access;
3030 #ifdef CONFIG_CIFS_DEBUG2
3031 oparms->fid->mid = le64_to_cpu(rsp->hdr.MessageId);
3032 #endif /* CIFS_DEBUG2 */
3035 buf->CreationTime = rsp->CreationTime;
3036 buf->LastAccessTime = rsp->LastAccessTime;
3037 buf->LastWriteTime = rsp->LastWriteTime;
3038 buf->ChangeTime = rsp->ChangeTime;
3039 buf->AllocationSize = rsp->AllocationSize;
3040 buf->EndOfFile = rsp->EndofFile;
3041 buf->Attributes = rsp->FileAttributes;
3042 buf->NumberOfLinks = cpu_to_le32(1);
3043 buf->DeletePending = 0;
3047 smb2_parse_contexts(server, rsp, &oparms->fid->epoch,
3048 oparms->fid->lease_key, oplock, buf, posix);
3050 SMB2_open_free(&rqst);
3051 free_rsp_buf(resp_buftype, rsp);
3056 SMB2_ioctl_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server,
3057 struct smb_rqst *rqst,
3058 u64 persistent_fid, u64 volatile_fid, u32 opcode,
3059 char *in_data, u32 indatalen,
3060 __u32 max_response_size)
3062 struct smb2_ioctl_req *req;
3063 struct kvec *iov = rqst->rq_iov;
3064 unsigned int total_len;
3068 rc = smb2_ioctl_req_init(opcode, tcon, server,
3069 (void **) &req, &total_len);
3075 * indatalen is usually small at a couple of bytes max, so
3076 * just allocate through generic pool
3078 in_data_buf = kmemdup(in_data, indatalen, GFP_NOFS);
3080 cifs_small_buf_release(req);
3085 req->CtlCode = cpu_to_le32(opcode);
3086 req->PersistentFileId = persistent_fid;
3087 req->VolatileFileId = volatile_fid;
3089 iov[0].iov_base = (char *)req;
3091 * If no input data, the size of ioctl struct in
3092 * protocol spec still includes a 1 byte data buffer,
3093 * but if input data passed to ioctl, we do not
3094 * want to double count this, so we do not send
3095 * the dummy one byte of data in iovec[0] if sending
3096 * input data (in iovec[1]).
3099 req->InputCount = cpu_to_le32(indatalen);
3100 /* do not set InputOffset if no input data */
3102 cpu_to_le32(offsetof(struct smb2_ioctl_req, Buffer));
3104 iov[0].iov_len = total_len - 1;
3105 iov[1].iov_base = in_data_buf;
3106 iov[1].iov_len = indatalen;
3109 iov[0].iov_len = total_len;
3112 req->OutputOffset = 0;
3113 req->OutputCount = 0; /* MBZ */
3116 * In most cases max_response_size is set to 16K (CIFSMaxBufSize)
3117 * We Could increase default MaxOutputResponse, but that could require
3118 * more credits. Windows typically sets this smaller, but for some
3119 * ioctls it may be useful to allow server to send more. No point
3120 * limiting what the server can send as long as fits in one credit
3121 * We can not handle more than CIFS_MAX_BUF_SIZE yet but may want
3122 * to increase this limit up in the future.
3123 * Note that for snapshot queries that servers like Azure expect that
3124 * the first query be minimal size (and just used to get the number/size
3125 * of previous versions) so response size must be specified as EXACTLY
3126 * sizeof(struct snapshot_array) which is 16 when rounded up to multiple
3127 * of eight bytes. Currently that is the only case where we set max
3128 * response size smaller.
3130 req->MaxOutputResponse = cpu_to_le32(max_response_size);
3131 req->hdr.CreditCharge =
3132 cpu_to_le16(DIV_ROUND_UP(max(indatalen, max_response_size),
3133 SMB2_MAX_BUFFER_SIZE));
3134 /* always an FSCTL (for now) */
3135 req->Flags = cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL);
3137 /* validate negotiate request must be signed - see MS-SMB2 3.2.5.5 */
3138 if (opcode == FSCTL_VALIDATE_NEGOTIATE_INFO)
3139 req->hdr.Flags |= SMB2_FLAGS_SIGNED;
3145 SMB2_ioctl_free(struct smb_rqst *rqst)
3148 if (rqst && rqst->rq_iov) {
3149 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
3150 for (i = 1; i < rqst->rq_nvec; i++)
3151 if (rqst->rq_iov[i].iov_base != smb2_padding)
3152 kfree(rqst->rq_iov[i].iov_base);
3158 * SMB2 IOCTL is used for both IOCTLs and FSCTLs
3161 SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
3162 u64 volatile_fid, u32 opcode, char *in_data, u32 indatalen,
3163 u32 max_out_data_len, char **out_data,
3164 u32 *plen /* returned data len */)
3166 struct smb_rqst rqst;
3167 struct smb2_ioctl_rsp *rsp = NULL;
3168 struct cifs_ses *ses;
3169 struct TCP_Server_Info *server;
3170 struct kvec iov[SMB2_IOCTL_IOV_SIZE];
3171 struct kvec rsp_iov = {NULL, 0};
3172 int resp_buftype = CIFS_NO_BUFFER;
3176 cifs_dbg(FYI, "SMB2 IOCTL\n");
3178 if (out_data != NULL)
3181 /* zero out returned data len, in case of error */
3192 server = cifs_pick_channel(ses);
3196 if (smb3_encryption_required(tcon))
3197 flags |= CIFS_TRANSFORM_REQ;
3199 memset(&rqst, 0, sizeof(struct smb_rqst));
3200 memset(&iov, 0, sizeof(iov));
3202 rqst.rq_nvec = SMB2_IOCTL_IOV_SIZE;
3204 rc = SMB2_ioctl_init(tcon, server,
3205 &rqst, persistent_fid, volatile_fid, opcode,
3206 in_data, indatalen, max_out_data_len);
3210 rc = cifs_send_recv(xid, ses, server,
3211 &rqst, &resp_buftype, flags,
3213 rsp = (struct smb2_ioctl_rsp *)rsp_iov.iov_base;
3216 trace_smb3_fsctl_err(xid, persistent_fid, tcon->tid,
3217 ses->Suid, 0, opcode, rc);
3219 if ((rc != 0) && (rc != -EINVAL) && (rc != -E2BIG)) {
3220 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
3222 } else if (rc == -EINVAL) {
3223 if ((opcode != FSCTL_SRV_COPYCHUNK_WRITE) &&
3224 (opcode != FSCTL_SRV_COPYCHUNK)) {
3225 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
3228 } else if (rc == -E2BIG) {
3229 if (opcode != FSCTL_QUERY_ALLOCATED_RANGES) {
3230 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
3235 /* check if caller wants to look at return data or just return rc */
3236 if ((plen == NULL) || (out_data == NULL))
3240 * Although unlikely to be possible for rsp to be null and rc not set,
3241 * adding check below is slightly safer long term (and quiets Coverity
3249 *plen = le32_to_cpu(rsp->OutputCount);
3251 /* We check for obvious errors in the output buffer length and offset */
3253 goto ioctl_exit; /* server returned no data */
3254 else if (*plen > rsp_iov.iov_len || *plen > 0xFF00) {
3255 cifs_tcon_dbg(VFS, "srv returned invalid ioctl length: %d\n", *plen);
3261 if (rsp_iov.iov_len - *plen < le32_to_cpu(rsp->OutputOffset)) {
3262 cifs_tcon_dbg(VFS, "Malformed ioctl resp: len %d offset %d\n", *plen,
3263 le32_to_cpu(rsp->OutputOffset));
3269 *out_data = kmemdup((char *)rsp + le32_to_cpu(rsp->OutputOffset),
3271 if (*out_data == NULL) {
3277 SMB2_ioctl_free(&rqst);
3278 free_rsp_buf(resp_buftype, rsp);
3283 * Individual callers to ioctl worker function follow
3287 SMB2_set_compression(const unsigned int xid, struct cifs_tcon *tcon,
3288 u64 persistent_fid, u64 volatile_fid)
3291 struct compress_ioctl fsctl_input;
3292 char *ret_data = NULL;
3294 fsctl_input.CompressionState =
3295 cpu_to_le16(COMPRESSION_FORMAT_DEFAULT);
3297 rc = SMB2_ioctl(xid, tcon, persistent_fid, volatile_fid,
3298 FSCTL_SET_COMPRESSION,
3299 (char *)&fsctl_input /* data input */,
3300 2 /* in data len */, CIFSMaxBufSize /* max out data */,
3301 &ret_data /* out data */, NULL);
3303 cifs_dbg(FYI, "set compression rc %d\n", rc);
3309 SMB2_close_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server,
3310 struct smb_rqst *rqst,
3311 u64 persistent_fid, u64 volatile_fid, bool query_attrs)
3313 struct smb2_close_req *req;
3314 struct kvec *iov = rqst->rq_iov;
3315 unsigned int total_len;
3318 rc = smb2_plain_req_init(SMB2_CLOSE, tcon, server,
3319 (void **) &req, &total_len);
3323 req->PersistentFileId = persistent_fid;
3324 req->VolatileFileId = volatile_fid;
3326 req->Flags = SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB;
3329 iov[0].iov_base = (char *)req;
3330 iov[0].iov_len = total_len;
3336 SMB2_close_free(struct smb_rqst *rqst)
3338 if (rqst && rqst->rq_iov)
3339 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
3343 __SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
3344 u64 persistent_fid, u64 volatile_fid,
3345 struct smb2_file_network_open_info *pbuf)
3347 struct smb_rqst rqst;
3348 struct smb2_close_rsp *rsp = NULL;
3349 struct cifs_ses *ses = tcon->ses;
3350 struct TCP_Server_Info *server = cifs_pick_channel(ses);
3352 struct kvec rsp_iov;
3353 int resp_buftype = CIFS_NO_BUFFER;
3356 bool query_attrs = false;
3358 cifs_dbg(FYI, "Close\n");
3360 if (!ses || !server)
3363 if (smb3_encryption_required(tcon))
3364 flags |= CIFS_TRANSFORM_REQ;
3366 memset(&rqst, 0, sizeof(struct smb_rqst));
3367 memset(&iov, 0, sizeof(iov));
3371 /* check if need to ask server to return timestamps in close response */
3375 trace_smb3_close_enter(xid, persistent_fid, tcon->tid, ses->Suid);
3376 rc = SMB2_close_init(tcon, server,
3377 &rqst, persistent_fid, volatile_fid,
3382 rc = cifs_send_recv(xid, ses, server,
3383 &rqst, &resp_buftype, flags, &rsp_iov);
3384 rsp = (struct smb2_close_rsp *)rsp_iov.iov_base;
3387 cifs_stats_fail_inc(tcon, SMB2_CLOSE_HE);
3388 trace_smb3_close_err(xid, persistent_fid, tcon->tid, ses->Suid,
3392 trace_smb3_close_done(xid, persistent_fid, tcon->tid,
3395 * Note that have to subtract 4 since struct network_open_info
3396 * has a final 4 byte pad that close response does not have
3399 memcpy(pbuf, (char *)&rsp->CreationTime, sizeof(*pbuf) - 4);
3402 atomic_dec(&tcon->num_remote_opens);
3404 SMB2_close_free(&rqst);
3405 free_rsp_buf(resp_buftype, rsp);
3407 /* retry close in a worker thread if this one is interrupted */
3408 if (is_interrupt_error(rc)) {
3411 tmp_rc = smb2_handle_cancelled_close(tcon, persistent_fid,
3414 cifs_dbg(VFS, "handle cancelled close fid 0x%llx returned error %d\n",
3415 persistent_fid, tmp_rc);
3421 SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
3422 u64 persistent_fid, u64 volatile_fid)
3424 return __SMB2_close(xid, tcon, persistent_fid, volatile_fid, NULL);
3428 smb2_validate_iov(unsigned int offset, unsigned int buffer_length,
3429 struct kvec *iov, unsigned int min_buf_size)
3431 unsigned int smb_len = iov->iov_len;
3432 char *end_of_smb = smb_len + (char *)iov->iov_base;
3433 char *begin_of_buf = offset + (char *)iov->iov_base;
3434 char *end_of_buf = begin_of_buf + buffer_length;
3437 if (buffer_length < min_buf_size) {
3438 cifs_dbg(VFS, "buffer length %d smaller than minimum size %d\n",
3439 buffer_length, min_buf_size);
3443 /* check if beyond RFC1001 maximum length */
3444 if ((smb_len > 0x7FFFFF) || (buffer_length > 0x7FFFFF)) {
3445 cifs_dbg(VFS, "buffer length %d or smb length %d too large\n",
3446 buffer_length, smb_len);
3450 if ((begin_of_buf > end_of_smb) || (end_of_buf > end_of_smb)) {
3451 cifs_dbg(VFS, "Invalid server response, bad offset to data\n");
3459 * If SMB buffer fields are valid, copy into temporary buffer to hold result.
3460 * Caller must free buffer.
3463 smb2_validate_and_copy_iov(unsigned int offset, unsigned int buffer_length,
3464 struct kvec *iov, unsigned int minbufsize,
3467 char *begin_of_buf = offset + (char *)iov->iov_base;
3473 rc = smb2_validate_iov(offset, buffer_length, iov, minbufsize);
3477 memcpy(data, begin_of_buf, buffer_length);
3483 SMB2_query_info_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server,
3484 struct smb_rqst *rqst,
3485 u64 persistent_fid, u64 volatile_fid,
3486 u8 info_class, u8 info_type, u32 additional_info,
3487 size_t output_len, size_t input_len, void *input)
3489 struct smb2_query_info_req *req;
3490 struct kvec *iov = rqst->rq_iov;
3491 unsigned int total_len;
3494 rc = smb2_plain_req_init(SMB2_QUERY_INFO, tcon, server,
3495 (void **) &req, &total_len);
3499 req->InfoType = info_type;
3500 req->FileInfoClass = info_class;
3501 req->PersistentFileId = persistent_fid;
3502 req->VolatileFileId = volatile_fid;
3503 req->AdditionalInformation = cpu_to_le32(additional_info);
3505 req->OutputBufferLength = cpu_to_le32(output_len);
3507 req->InputBufferLength = cpu_to_le32(input_len);
3508 /* total_len for smb query request never close to le16 max */
3509 req->InputBufferOffset = cpu_to_le16(total_len - 1);
3510 memcpy(req->Buffer, input, input_len);
3513 iov[0].iov_base = (char *)req;
3515 iov[0].iov_len = total_len - 1 + input_len;
3520 SMB2_query_info_free(struct smb_rqst *rqst)
3522 if (rqst && rqst->rq_iov)
3523 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
3527 query_info(const unsigned int xid, struct cifs_tcon *tcon,
3528 u64 persistent_fid, u64 volatile_fid, u8 info_class, u8 info_type,
3529 u32 additional_info, size_t output_len, size_t min_len, void **data,
3532 struct smb_rqst rqst;
3533 struct smb2_query_info_rsp *rsp = NULL;
3535 struct kvec rsp_iov;
3537 int resp_buftype = CIFS_NO_BUFFER;
3538 struct cifs_ses *ses = tcon->ses;
3539 struct TCP_Server_Info *server;
3541 bool allocated = false;
3543 cifs_dbg(FYI, "Query Info\n");
3547 server = cifs_pick_channel(ses);
3551 if (smb3_encryption_required(tcon))
3552 flags |= CIFS_TRANSFORM_REQ;
3554 memset(&rqst, 0, sizeof(struct smb_rqst));
3555 memset(&iov, 0, sizeof(iov));
3559 rc = SMB2_query_info_init(tcon, server,
3560 &rqst, persistent_fid, volatile_fid,
3561 info_class, info_type, additional_info,
3562 output_len, 0, NULL);
3566 trace_smb3_query_info_enter(xid, persistent_fid, tcon->tid,
3567 ses->Suid, info_class, (__u32)info_type);
3569 rc = cifs_send_recv(xid, ses, server,
3570 &rqst, &resp_buftype, flags, &rsp_iov);
3571 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
3574 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
3575 trace_smb3_query_info_err(xid, persistent_fid, tcon->tid,
3576 ses->Suid, info_class, (__u32)info_type, rc);
3580 trace_smb3_query_info_done(xid, persistent_fid, tcon->tid,
3581 ses->Suid, info_class, (__u32)info_type);
3584 *dlen = le32_to_cpu(rsp->OutputBufferLength);
3586 *data = kmalloc(*dlen, GFP_KERNEL);
3589 "Error %d allocating memory for acl\n",
3599 rc = smb2_validate_and_copy_iov(le16_to_cpu(rsp->OutputBufferOffset),
3600 le32_to_cpu(rsp->OutputBufferLength),
3601 &rsp_iov, min_len, *data);
3602 if (rc && allocated) {
3609 SMB2_query_info_free(&rqst);
3610 free_rsp_buf(resp_buftype, rsp);
3614 int SMB2_query_info(const unsigned int xid, struct cifs_tcon *tcon,
3615 u64 persistent_fid, u64 volatile_fid, struct smb2_file_all_info *data)
3617 return query_info(xid, tcon, persistent_fid, volatile_fid,
3618 FILE_ALL_INFORMATION, SMB2_O_INFO_FILE, 0,
3619 sizeof(struct smb2_file_all_info) + PATH_MAX * 2,
3620 sizeof(struct smb2_file_all_info), (void **)&data,
3625 /* currently unused, as now we are doing compounding instead (see smb311_posix_query_path_info) */
3627 SMB311_posix_query_info(const unsigned int xid, struct cifs_tcon *tcon,
3628 u64 persistent_fid, u64 volatile_fid, struct smb311_posix_qinfo *data, u32 *plen)
3630 size_t output_len = sizeof(struct smb311_posix_qinfo *) +
3631 (sizeof(struct cifs_sid) * 2) + (PATH_MAX * 2);
3634 return query_info(xid, tcon, persistent_fid, volatile_fid,
3635 SMB_FIND_FILE_POSIX_INFO, SMB2_O_INFO_FILE, 0,
3636 output_len, sizeof(struct smb311_posix_qinfo), (void **)&data, plen);
3637 /* Note caller must free "data" (passed in above). It may be allocated in query_info call */
3642 SMB2_query_acl(const unsigned int xid, struct cifs_tcon *tcon,
3643 u64 persistent_fid, u64 volatile_fid,
3644 void **data, u32 *plen, u32 extra_info)
3646 __u32 additional_info = OWNER_SECINFO | GROUP_SECINFO | DACL_SECINFO |
3650 return query_info(xid, tcon, persistent_fid, volatile_fid,
3651 0, SMB2_O_INFO_SECURITY, additional_info,
3652 SMB2_MAX_BUFFER_SIZE, MIN_SEC_DESC_LEN, data, plen);
3656 SMB2_get_srv_num(const unsigned int xid, struct cifs_tcon *tcon,
3657 u64 persistent_fid, u64 volatile_fid, __le64 *uniqueid)
3659 return query_info(xid, tcon, persistent_fid, volatile_fid,
3660 FILE_INTERNAL_INFORMATION, SMB2_O_INFO_FILE, 0,
3661 sizeof(struct smb2_file_internal_info),
3662 sizeof(struct smb2_file_internal_info),
3663 (void **)&uniqueid, NULL);
3667 * CHANGE_NOTIFY Request is sent to get notifications on changes to a directory
3668 * See MS-SMB2 2.2.35 and 2.2.36
3672 SMB2_notify_init(const unsigned int xid, struct smb_rqst *rqst,
3673 struct cifs_tcon *tcon, struct TCP_Server_Info *server,
3674 u64 persistent_fid, u64 volatile_fid,
3675 u32 completion_filter, bool watch_tree)
3677 struct smb2_change_notify_req *req;
3678 struct kvec *iov = rqst->rq_iov;
3679 unsigned int total_len;
3682 rc = smb2_plain_req_init(SMB2_CHANGE_NOTIFY, tcon, server,
3683 (void **) &req, &total_len);
3687 req->PersistentFileId = persistent_fid;
3688 req->VolatileFileId = volatile_fid;
3689 /* See note 354 of MS-SMB2, 64K max */
3690 req->OutputBufferLength =
3691 cpu_to_le32(SMB2_MAX_BUFFER_SIZE - MAX_SMB2_HDR_SIZE);
3692 req->CompletionFilter = cpu_to_le32(completion_filter);
3694 req->Flags = cpu_to_le16(SMB2_WATCH_TREE);
3698 iov[0].iov_base = (char *)req;
3699 iov[0].iov_len = total_len;
3705 SMB2_change_notify(const unsigned int xid, struct cifs_tcon *tcon,
3706 u64 persistent_fid, u64 volatile_fid, bool watch_tree,
3707 u32 completion_filter)
3709 struct cifs_ses *ses = tcon->ses;
3710 struct TCP_Server_Info *server = cifs_pick_channel(ses);
3711 struct smb_rqst rqst;
3713 struct kvec rsp_iov = {NULL, 0};
3714 int resp_buftype = CIFS_NO_BUFFER;
3718 cifs_dbg(FYI, "change notify\n");
3719 if (!ses || !server)
3722 if (smb3_encryption_required(tcon))
3723 flags |= CIFS_TRANSFORM_REQ;
3725 memset(&rqst, 0, sizeof(struct smb_rqst));
3726 memset(&iov, 0, sizeof(iov));
3730 rc = SMB2_notify_init(xid, &rqst, tcon, server,
3731 persistent_fid, volatile_fid,
3732 completion_filter, watch_tree);
3736 trace_smb3_notify_enter(xid, persistent_fid, tcon->tid, ses->Suid,
3737 (u8)watch_tree, completion_filter);
3738 rc = cifs_send_recv(xid, ses, server,
3739 &rqst, &resp_buftype, flags, &rsp_iov);
3742 cifs_stats_fail_inc(tcon, SMB2_CHANGE_NOTIFY_HE);
3743 trace_smb3_notify_err(xid, persistent_fid, tcon->tid, ses->Suid,
3744 (u8)watch_tree, completion_filter, rc);
3746 trace_smb3_notify_done(xid, persistent_fid, tcon->tid,
3747 ses->Suid, (u8)watch_tree, completion_filter);
3751 cifs_small_buf_release(rqst.rq_iov[0].iov_base); /* request */
3752 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
3759 * This is a no-op for now. We're not really interested in the reply, but
3760 * rather in the fact that the server sent one and that server->lstrp
3763 * FIXME: maybe we should consider checking that the reply matches request?
3766 smb2_echo_callback(struct mid_q_entry *mid)
3768 struct TCP_Server_Info *server = mid->callback_data;
3769 struct smb2_echo_rsp *rsp = (struct smb2_echo_rsp *)mid->resp_buf;
3770 struct cifs_credits credits = { .value = 0, .instance = 0 };
3772 if (mid->mid_state == MID_RESPONSE_RECEIVED
3773 || mid->mid_state == MID_RESPONSE_MALFORMED) {
3774 credits.value = le16_to_cpu(rsp->hdr.CreditRequest);
3775 credits.instance = server->reconnect_instance;
3779 add_credits(server, &credits, CIFS_ECHO_OP);
3782 void smb2_reconnect_server(struct work_struct *work)
3784 struct TCP_Server_Info *server = container_of(work,
3785 struct TCP_Server_Info, reconnect.work);
3786 struct TCP_Server_Info *pserver;
3787 struct cifs_ses *ses, *ses2;
3788 struct cifs_tcon *tcon, *tcon2;
3789 struct list_head tmp_list, tmp_ses_list;
3790 bool tcon_exist = false, ses_exist = false;
3791 bool tcon_selected = false;
3793 bool resched = false;
3795 /* If server is a channel, select the primary channel */
3796 pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server;
3798 /* Prevent simultaneous reconnects that can corrupt tcon->rlist list */
3799 mutex_lock(&pserver->reconnect_mutex);
3801 INIT_LIST_HEAD(&tmp_list);
3802 INIT_LIST_HEAD(&tmp_ses_list);
3803 cifs_dbg(FYI, "Reconnecting tcons and channels\n");
3805 spin_lock(&cifs_tcp_ses_lock);
3806 list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) {
3808 tcon_selected = false;
3810 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
3811 if (tcon->need_reconnect || tcon->need_reopen_files) {
3813 list_add_tail(&tcon->rlist, &tmp_list);
3814 tcon_selected = tcon_exist = true;
3818 * IPC has the same lifetime as its session and uses its
3821 if (ses->tcon_ipc && ses->tcon_ipc->need_reconnect) {
3822 list_add_tail(&ses->tcon_ipc->rlist, &tmp_list);
3823 tcon_selected = tcon_exist = true;
3827 * handle the case where channel needs to reconnect
3828 * binding session, but tcon is healthy (some other channel
3831 spin_lock(&ses->chan_lock);
3832 if (!tcon_selected && cifs_chan_needs_reconnect(ses, server)) {
3833 list_add_tail(&ses->rlist, &tmp_ses_list);
3837 spin_unlock(&ses->chan_lock);
3840 * Get the reference to server struct to be sure that the last call of
3841 * cifs_put_tcon() in the loop below won't release the server pointer.
3843 if (tcon_exist || ses_exist)
3844 server->srv_count++;
3846 spin_unlock(&cifs_tcp_ses_lock);
3848 list_for_each_entry_safe(tcon, tcon2, &tmp_list, rlist) {
3849 rc = smb2_reconnect(SMB2_INTERNAL_CMD, tcon, server);
3851 cifs_reopen_persistent_handles(tcon);
3854 list_del_init(&tcon->rlist);
3856 cifs_put_smb_ses(tcon->ses);
3858 cifs_put_tcon(tcon);
3864 /* allocate a dummy tcon struct used for reconnect */
3865 tcon = kzalloc(sizeof(struct cifs_tcon), GFP_KERNEL);
3868 list_for_each_entry_safe(ses, ses2, &tmp_ses_list, rlist) {
3869 list_del_init(&ses->rlist);
3870 cifs_put_smb_ses(ses);
3875 tcon->status = TID_GOOD;
3876 tcon->retry = false;
3877 tcon->need_reconnect = false;
3879 /* now reconnect sessions for necessary channels */
3880 list_for_each_entry_safe(ses, ses2, &tmp_ses_list, rlist) {
3882 rc = smb2_reconnect(SMB2_INTERNAL_CMD, tcon, server);
3885 list_del_init(&ses->rlist);
3886 cifs_put_smb_ses(ses);
3891 cifs_dbg(FYI, "Reconnecting tcons and channels finished\n");
3893 queue_delayed_work(cifsiod_wq, &server->reconnect, 2 * HZ);
3894 mutex_unlock(&pserver->reconnect_mutex);
3896 /* now we can safely release srv struct */
3897 if (tcon_exist || ses_exist)
3898 cifs_put_tcp_session(server, 1);
3902 SMB2_echo(struct TCP_Server_Info *server)
3904 struct smb2_echo_req *req;
3907 struct smb_rqst rqst = { .rq_iov = iov,
3909 unsigned int total_len;
3911 cifs_dbg(FYI, "In echo request for conn_id %lld\n", server->conn_id);
3913 spin_lock(&server->srv_lock);
3914 if (server->ops->need_neg &&
3915 server->ops->need_neg(server)) {
3916 spin_unlock(&server->srv_lock);
3917 /* No need to send echo on newly established connections */
3918 mod_delayed_work(cifsiod_wq, &server->reconnect, 0);
3921 spin_unlock(&server->srv_lock);
3923 rc = smb2_plain_req_init(SMB2_ECHO, NULL, server,
3924 (void **)&req, &total_len);
3928 req->hdr.CreditRequest = cpu_to_le16(1);
3930 iov[0].iov_len = total_len;
3931 iov[0].iov_base = (char *)req;
3933 rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, NULL,
3934 server, CIFS_ECHO_OP, NULL);
3936 cifs_dbg(FYI, "Echo request failed: %d\n", rc);
3938 cifs_small_buf_release(req);
3943 SMB2_flush_free(struct smb_rqst *rqst)
3945 if (rqst && rqst->rq_iov)
3946 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
3950 SMB2_flush_init(const unsigned int xid, struct smb_rqst *rqst,
3951 struct cifs_tcon *tcon, struct TCP_Server_Info *server,
3952 u64 persistent_fid, u64 volatile_fid)
3954 struct smb2_flush_req *req;
3955 struct kvec *iov = rqst->rq_iov;
3956 unsigned int total_len;
3959 rc = smb2_plain_req_init(SMB2_FLUSH, tcon, server,
3960 (void **) &req, &total_len);
3964 req->PersistentFileId = persistent_fid;
3965 req->VolatileFileId = volatile_fid;
3967 iov[0].iov_base = (char *)req;
3968 iov[0].iov_len = total_len;
3974 SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
3977 struct cifs_ses *ses = tcon->ses;
3978 struct smb_rqst rqst;
3980 struct kvec rsp_iov = {NULL, 0};
3981 struct TCP_Server_Info *server = cifs_pick_channel(ses);
3982 int resp_buftype = CIFS_NO_BUFFER;
3986 cifs_dbg(FYI, "flush\n");
3987 if (!ses || !(ses->server))
3990 if (smb3_encryption_required(tcon))
3991 flags |= CIFS_TRANSFORM_REQ;
3993 memset(&rqst, 0, sizeof(struct smb_rqst));
3994 memset(&iov, 0, sizeof(iov));
3998 rc = SMB2_flush_init(xid, &rqst, tcon, server,
3999 persistent_fid, volatile_fid);
4003 trace_smb3_flush_enter(xid, persistent_fid, tcon->tid, ses->Suid);
4004 rc = cifs_send_recv(xid, ses, server,
4005 &rqst, &resp_buftype, flags, &rsp_iov);
4008 cifs_stats_fail_inc(tcon, SMB2_FLUSH_HE);
4009 trace_smb3_flush_err(xid, persistent_fid, tcon->tid, ses->Suid,
4012 trace_smb3_flush_done(xid, persistent_fid, tcon->tid,
4016 SMB2_flush_free(&rqst);
4017 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
4022 * To form a chain of read requests, any read requests after the first should
4023 * have the end_of_chain boolean set to true.
4026 smb2_new_read_req(void **buf, unsigned int *total_len,
4027 struct cifs_io_parms *io_parms, struct cifs_readdata *rdata,
4028 unsigned int remaining_bytes, int request_type)
4031 struct smb2_read_req *req = NULL;
4032 struct smb2_hdr *shdr;
4033 struct TCP_Server_Info *server = io_parms->server;
4035 rc = smb2_plain_req_init(SMB2_READ, io_parms->tcon, server,
4036 (void **) &req, total_len);
4041 return -ECONNABORTED;
4044 shdr->Id.SyncId.ProcessId = cpu_to_le32(io_parms->pid);
4046 req->PersistentFileId = io_parms->persistent_fid;
4047 req->VolatileFileId = io_parms->volatile_fid;
4048 req->ReadChannelInfoOffset = 0; /* reserved */
4049 req->ReadChannelInfoLength = 0; /* reserved */
4050 req->Channel = 0; /* reserved */
4051 req->MinimumCount = 0;
4052 req->Length = cpu_to_le32(io_parms->length);
4053 req->Offset = cpu_to_le64(io_parms->offset);
4055 trace_smb3_read_enter(0 /* xid */,
4056 io_parms->persistent_fid,
4057 io_parms->tcon->tid, io_parms->tcon->ses->Suid,
4058 io_parms->offset, io_parms->length);
4059 #ifdef CONFIG_CIFS_SMB_DIRECT
4061 * If we want to do a RDMA write, fill in and append
4062 * smbd_buffer_descriptor_v1 to the end of read request
4064 if (server->rdma && rdata && !server->sign &&
4065 rdata->bytes >= server->smbd_conn->rdma_readwrite_threshold) {
4067 struct smbd_buffer_descriptor_v1 *v1;
4068 bool need_invalidate = server->dialect == SMB30_PROT_ID;
4070 rdata->mr = smbd_register_mr(
4071 server->smbd_conn, rdata->pages,
4072 rdata->nr_pages, rdata->page_offset,
4073 rdata->tailsz, true, need_invalidate);
4077 req->Channel = SMB2_CHANNEL_RDMA_V1_INVALIDATE;
4078 if (need_invalidate)
4079 req->Channel = SMB2_CHANNEL_RDMA_V1;
4080 req->ReadChannelInfoOffset =
4081 cpu_to_le16(offsetof(struct smb2_read_req, Buffer));
4082 req->ReadChannelInfoLength =
4083 cpu_to_le16(sizeof(struct smbd_buffer_descriptor_v1));
4084 v1 = (struct smbd_buffer_descriptor_v1 *) &req->Buffer[0];
4085 v1->offset = cpu_to_le64(rdata->mr->mr->iova);
4086 v1->token = cpu_to_le32(rdata->mr->mr->rkey);
4087 v1->length = cpu_to_le32(rdata->mr->mr->length);
4089 *total_len += sizeof(*v1) - 1;
4092 if (request_type & CHAINED_REQUEST) {
4093 if (!(request_type & END_OF_CHAIN)) {
4094 /* next 8-byte aligned request */
4095 *total_len = DIV_ROUND_UP(*total_len, 8) * 8;
4096 shdr->NextCommand = cpu_to_le32(*total_len);
4097 } else /* END_OF_CHAIN */
4098 shdr->NextCommand = 0;
4099 if (request_type & RELATED_REQUEST) {
4100 shdr->Flags |= SMB2_FLAGS_RELATED_OPERATIONS;
4102 * Related requests use info from previous read request
4105 shdr->SessionId = cpu_to_le64(0xFFFFFFFFFFFFFFFF);
4106 shdr->Id.SyncId.TreeId = cpu_to_le32(0xFFFFFFFF);
4107 req->PersistentFileId = (u64)-1;
4108 req->VolatileFileId = (u64)-1;
4111 if (remaining_bytes > io_parms->length)
4112 req->RemainingBytes = cpu_to_le32(remaining_bytes);
4114 req->RemainingBytes = 0;
4121 smb2_readv_callback(struct mid_q_entry *mid)
4123 struct cifs_readdata *rdata = mid->callback_data;
4124 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
4125 struct TCP_Server_Info *server = rdata->server;
4126 struct smb2_hdr *shdr =
4127 (struct smb2_hdr *)rdata->iov[0].iov_base;
4128 struct cifs_credits credits = { .value = 0, .instance = 0 };
4129 struct smb_rqst rqst = { .rq_iov = &rdata->iov[1],
4131 .rq_pages = rdata->pages,
4132 .rq_offset = rdata->page_offset,
4133 .rq_npages = rdata->nr_pages,
4134 .rq_pagesz = rdata->pagesz,
4135 .rq_tailsz = rdata->tailsz };
4137 WARN_ONCE(rdata->server != mid->server,
4138 "rdata server %p != mid server %p",
4139 rdata->server, mid->server);
4141 cifs_dbg(FYI, "%s: mid=%llu state=%d result=%d bytes=%u\n",
4142 __func__, mid->mid, mid->mid_state, rdata->result,
4145 switch (mid->mid_state) {
4146 case MID_RESPONSE_RECEIVED:
4147 credits.value = le16_to_cpu(shdr->CreditRequest);
4148 credits.instance = server->reconnect_instance;
4149 /* result already set, check signature */
4150 if (server->sign && !mid->decrypted) {
4153 rc = smb2_verify_signature(&rqst, server);
4155 cifs_tcon_dbg(VFS, "SMB signature verification returned error = %d\n",
4158 /* FIXME: should this be counted toward the initiating task? */
4159 task_io_account_read(rdata->got_bytes);
4160 cifs_stats_bytes_read(tcon, rdata->got_bytes);
4162 case MID_REQUEST_SUBMITTED:
4163 case MID_RETRY_NEEDED:
4164 rdata->result = -EAGAIN;
4165 if (server->sign && rdata->got_bytes)
4166 /* reset bytes number since we can not check a sign */
4167 rdata->got_bytes = 0;
4168 /* FIXME: should this be counted toward the initiating task? */
4169 task_io_account_read(rdata->got_bytes);
4170 cifs_stats_bytes_read(tcon, rdata->got_bytes);
4172 case MID_RESPONSE_MALFORMED:
4173 credits.value = le16_to_cpu(shdr->CreditRequest);
4174 credits.instance = server->reconnect_instance;
4177 rdata->result = -EIO;
4179 #ifdef CONFIG_CIFS_SMB_DIRECT
4181 * If this rdata has a memmory registered, the MR can be freed
4182 * MR needs to be freed as soon as I/O finishes to prevent deadlock
4183 * because they have limited number and are used for future I/Os
4186 smbd_deregister_mr(rdata->mr);
4190 if (rdata->result && rdata->result != -ENODATA) {
4191 cifs_stats_fail_inc(tcon, SMB2_READ_HE);
4192 trace_smb3_read_err(0 /* xid */,
4193 rdata->cfile->fid.persistent_fid,
4194 tcon->tid, tcon->ses->Suid, rdata->offset,
4195 rdata->bytes, rdata->result);
4197 trace_smb3_read_done(0 /* xid */,
4198 rdata->cfile->fid.persistent_fid,
4199 tcon->tid, tcon->ses->Suid,
4200 rdata->offset, rdata->got_bytes);
4202 queue_work(cifsiod_wq, &rdata->work);
4204 add_credits(server, &credits, 0);
4207 /* smb2_async_readv - send an async read, and set up mid to handle result */
4209 smb2_async_readv(struct cifs_readdata *rdata)
4213 struct smb2_hdr *shdr;
4214 struct cifs_io_parms io_parms;
4215 struct smb_rqst rqst = { .rq_iov = rdata->iov,
4217 struct TCP_Server_Info *server;
4218 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
4219 unsigned int total_len;
4221 cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n",
4222 __func__, rdata->offset, rdata->bytes);
4225 rdata->server = cifs_pick_channel(tcon->ses);
4227 io_parms.tcon = tlink_tcon(rdata->cfile->tlink);
4228 io_parms.server = server = rdata->server;
4229 io_parms.offset = rdata->offset;
4230 io_parms.length = rdata->bytes;
4231 io_parms.persistent_fid = rdata->cfile->fid.persistent_fid;
4232 io_parms.volatile_fid = rdata->cfile->fid.volatile_fid;
4233 io_parms.pid = rdata->pid;
4235 rc = smb2_new_read_req(
4236 (void **) &buf, &total_len, &io_parms, rdata, 0, 0);
4240 if (smb3_encryption_required(io_parms.tcon))
4241 flags |= CIFS_TRANSFORM_REQ;
4243 rdata->iov[0].iov_base = buf;
4244 rdata->iov[0].iov_len = total_len;
4246 shdr = (struct smb2_hdr *)buf;
4248 if (rdata->credits.value > 0) {
4249 shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(rdata->bytes,
4250 SMB2_MAX_BUFFER_SIZE));
4251 shdr->CreditRequest = cpu_to_le16(le16_to_cpu(shdr->CreditCharge) + 8);
4253 rc = adjust_credits(server, &rdata->credits, rdata->bytes);
4255 goto async_readv_out;
4257 flags |= CIFS_HAS_CREDITS;
4260 kref_get(&rdata->refcount);
4261 rc = cifs_call_async(server, &rqst,
4262 cifs_readv_receive, smb2_readv_callback,
4263 smb3_handle_read_data, rdata, flags,
4266 kref_put(&rdata->refcount, cifs_readdata_release);
4267 cifs_stats_fail_inc(io_parms.tcon, SMB2_READ_HE);
4268 trace_smb3_read_err(0 /* xid */, io_parms.persistent_fid,
4270 io_parms.tcon->ses->Suid,
4271 io_parms.offset, io_parms.length, rc);
4275 cifs_small_buf_release(buf);
4280 SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms,
4281 unsigned int *nbytes, char **buf, int *buf_type)
4283 struct smb_rqst rqst;
4284 int resp_buftype, rc;
4285 struct smb2_read_req *req = NULL;
4286 struct smb2_read_rsp *rsp = NULL;
4288 struct kvec rsp_iov;
4289 unsigned int total_len;
4290 int flags = CIFS_LOG_ERROR;
4291 struct cifs_ses *ses = io_parms->tcon->ses;
4293 if (!io_parms->server)
4294 io_parms->server = cifs_pick_channel(io_parms->tcon->ses);
4297 rc = smb2_new_read_req((void **)&req, &total_len, io_parms, NULL, 0, 0);
4301 if (smb3_encryption_required(io_parms->tcon))
4302 flags |= CIFS_TRANSFORM_REQ;
4304 iov[0].iov_base = (char *)req;
4305 iov[0].iov_len = total_len;
4307 memset(&rqst, 0, sizeof(struct smb_rqst));
4311 rc = cifs_send_recv(xid, ses, io_parms->server,
4312 &rqst, &resp_buftype, flags, &rsp_iov);
4313 rsp = (struct smb2_read_rsp *)rsp_iov.iov_base;
4316 if (rc != -ENODATA) {
4317 cifs_stats_fail_inc(io_parms->tcon, SMB2_READ_HE);
4318 cifs_dbg(VFS, "Send error in read = %d\n", rc);
4319 trace_smb3_read_err(xid,
4320 req->PersistentFileId,
4321 io_parms->tcon->tid, ses->Suid,
4322 io_parms->offset, io_parms->length,
4325 trace_smb3_read_done(xid, req->PersistentFileId, io_parms->tcon->tid,
4326 ses->Suid, io_parms->offset, 0);
4327 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
4328 cifs_small_buf_release(req);
4329 return rc == -ENODATA ? 0 : rc;
4331 trace_smb3_read_done(xid,
4332 req->PersistentFileId,
4333 io_parms->tcon->tid, ses->Suid,
4334 io_parms->offset, io_parms->length);
4336 cifs_small_buf_release(req);
4338 *nbytes = le32_to_cpu(rsp->DataLength);
4339 if ((*nbytes > CIFS_MAX_MSGSIZE) ||
4340 (*nbytes > io_parms->length)) {
4341 cifs_dbg(FYI, "bad length %d for count %d\n",
4342 *nbytes, io_parms->length);
4348 memcpy(*buf, (char *)rsp + rsp->DataOffset, *nbytes);
4349 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
4350 } else if (resp_buftype != CIFS_NO_BUFFER) {
4351 *buf = rsp_iov.iov_base;
4352 if (resp_buftype == CIFS_SMALL_BUFFER)
4353 *buf_type = CIFS_SMALL_BUFFER;
4354 else if (resp_buftype == CIFS_LARGE_BUFFER)
4355 *buf_type = CIFS_LARGE_BUFFER;
4361 * Check the mid_state and signature on received buffer (if any), and queue the
4362 * workqueue completion task.
4365 smb2_writev_callback(struct mid_q_entry *mid)
4367 struct cifs_writedata *wdata = mid->callback_data;
4368 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
4369 struct TCP_Server_Info *server = wdata->server;
4370 unsigned int written;
4371 struct smb2_write_rsp *rsp = (struct smb2_write_rsp *)mid->resp_buf;
4372 struct cifs_credits credits = { .value = 0, .instance = 0 };
4374 WARN_ONCE(wdata->server != mid->server,
4375 "wdata server %p != mid server %p",
4376 wdata->server, mid->server);
4378 switch (mid->mid_state) {
4379 case MID_RESPONSE_RECEIVED:
4380 credits.value = le16_to_cpu(rsp->hdr.CreditRequest);
4381 credits.instance = server->reconnect_instance;
4382 wdata->result = smb2_check_receive(mid, server, 0);
4383 if (wdata->result != 0)
4386 written = le32_to_cpu(rsp->DataLength);
4388 * Mask off high 16 bits when bytes written as returned
4389 * by the server is greater than bytes requested by the
4390 * client. OS/2 servers are known to set incorrect
4393 if (written > wdata->bytes)
4396 if (written < wdata->bytes)
4397 wdata->result = -ENOSPC;
4399 wdata->bytes = written;
4401 case MID_REQUEST_SUBMITTED:
4402 case MID_RETRY_NEEDED:
4403 wdata->result = -EAGAIN;
4405 case MID_RESPONSE_MALFORMED:
4406 credits.value = le16_to_cpu(rsp->hdr.CreditRequest);
4407 credits.instance = server->reconnect_instance;
4410 wdata->result = -EIO;
4413 #ifdef CONFIG_CIFS_SMB_DIRECT
4415 * If this wdata has a memory registered, the MR can be freed
4416 * The number of MRs available is limited, it's important to recover
4417 * used MR as soon as I/O is finished. Hold MR longer in the later
4418 * I/O process can possibly result in I/O deadlock due to lack of MR
4419 * to send request on I/O retry
4422 smbd_deregister_mr(wdata->mr);
4426 if (wdata->result) {
4427 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
4428 trace_smb3_write_err(0 /* no xid */,
4429 wdata->cfile->fid.persistent_fid,
4430 tcon->tid, tcon->ses->Suid, wdata->offset,
4431 wdata->bytes, wdata->result);
4432 if (wdata->result == -ENOSPC)
4433 pr_warn_once("Out of space writing to %s\n",
4436 trace_smb3_write_done(0 /* no xid */,
4437 wdata->cfile->fid.persistent_fid,
4438 tcon->tid, tcon->ses->Suid,
4439 wdata->offset, wdata->bytes);
4441 queue_work(cifsiod_wq, &wdata->work);
4443 add_credits(server, &credits, 0);
4446 /* smb2_async_writev - send an async write, and set up mid to handle result */
4448 smb2_async_writev(struct cifs_writedata *wdata,
4449 void (*release)(struct kref *kref))
4451 int rc = -EACCES, flags = 0;
4452 struct smb2_write_req *req = NULL;
4453 struct smb2_hdr *shdr;
4454 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
4455 struct TCP_Server_Info *server = wdata->server;
4457 struct smb_rqst rqst = { };
4458 unsigned int total_len;
4461 server = wdata->server = cifs_pick_channel(tcon->ses);
4463 rc = smb2_plain_req_init(SMB2_WRITE, tcon, server,
4464 (void **) &req, &total_len);
4468 if (smb3_encryption_required(tcon))
4469 flags |= CIFS_TRANSFORM_REQ;
4471 shdr = (struct smb2_hdr *)req;
4472 shdr->Id.SyncId.ProcessId = cpu_to_le32(wdata->cfile->pid);
4474 req->PersistentFileId = wdata->cfile->fid.persistent_fid;
4475 req->VolatileFileId = wdata->cfile->fid.volatile_fid;
4476 req->WriteChannelInfoOffset = 0;
4477 req->WriteChannelInfoLength = 0;
4479 req->Offset = cpu_to_le64(wdata->offset);
4480 req->DataOffset = cpu_to_le16(
4481 offsetof(struct smb2_write_req, Buffer));
4482 req->RemainingBytes = 0;
4484 trace_smb3_write_enter(0 /* xid */, wdata->cfile->fid.persistent_fid,
4485 tcon->tid, tcon->ses->Suid, wdata->offset, wdata->bytes);
4486 #ifdef CONFIG_CIFS_SMB_DIRECT
4488 * If we want to do a server RDMA read, fill in and append
4489 * smbd_buffer_descriptor_v1 to the end of write request
4491 if (server->rdma && !server->sign && wdata->bytes >=
4492 server->smbd_conn->rdma_readwrite_threshold) {
4494 struct smbd_buffer_descriptor_v1 *v1;
4495 bool need_invalidate = server->dialect == SMB30_PROT_ID;
4497 wdata->mr = smbd_register_mr(
4498 server->smbd_conn, wdata->pages,
4499 wdata->nr_pages, wdata->page_offset,
4500 wdata->tailsz, false, need_invalidate);
4503 goto async_writev_out;
4506 req->DataOffset = 0;
4507 if (wdata->nr_pages > 1)
4508 req->RemainingBytes =
4510 (wdata->nr_pages - 1) * wdata->pagesz -
4511 wdata->page_offset + wdata->tailsz
4514 req->RemainingBytes = cpu_to_le32(wdata->tailsz);
4515 req->Channel = SMB2_CHANNEL_RDMA_V1_INVALIDATE;
4516 if (need_invalidate)
4517 req->Channel = SMB2_CHANNEL_RDMA_V1;
4518 req->WriteChannelInfoOffset =
4519 cpu_to_le16(offsetof(struct smb2_write_req, Buffer));
4520 req->WriteChannelInfoLength =
4521 cpu_to_le16(sizeof(struct smbd_buffer_descriptor_v1));
4522 v1 = (struct smbd_buffer_descriptor_v1 *) &req->Buffer[0];
4523 v1->offset = cpu_to_le64(wdata->mr->mr->iova);
4524 v1->token = cpu_to_le32(wdata->mr->mr->rkey);
4525 v1->length = cpu_to_le32(wdata->mr->mr->length);
4528 iov[0].iov_len = total_len - 1;
4529 iov[0].iov_base = (char *)req;
4533 rqst.rq_pages = wdata->pages;
4534 rqst.rq_offset = wdata->page_offset;
4535 rqst.rq_npages = wdata->nr_pages;
4536 rqst.rq_pagesz = wdata->pagesz;
4537 rqst.rq_tailsz = wdata->tailsz;
4538 #ifdef CONFIG_CIFS_SMB_DIRECT
4540 iov[0].iov_len += sizeof(struct smbd_buffer_descriptor_v1);
4544 cifs_dbg(FYI, "async write at %llu %u bytes\n",
4545 wdata->offset, wdata->bytes);
4547 #ifdef CONFIG_CIFS_SMB_DIRECT
4548 /* For RDMA read, I/O size is in RemainingBytes not in Length */
4550 req->Length = cpu_to_le32(wdata->bytes);
4552 req->Length = cpu_to_le32(wdata->bytes);
4555 if (wdata->credits.value > 0) {
4556 shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(wdata->bytes,
4557 SMB2_MAX_BUFFER_SIZE));
4558 shdr->CreditRequest = cpu_to_le16(le16_to_cpu(shdr->CreditCharge) + 8);
4560 rc = adjust_credits(server, &wdata->credits, wdata->bytes);
4562 goto async_writev_out;
4564 flags |= CIFS_HAS_CREDITS;
4567 kref_get(&wdata->refcount);
4568 rc = cifs_call_async(server, &rqst, NULL, smb2_writev_callback, NULL,
4569 wdata, flags, &wdata->credits);
4572 trace_smb3_write_err(0 /* no xid */,
4573 req->PersistentFileId,
4574 tcon->tid, tcon->ses->Suid, wdata->offset,
4576 kref_put(&wdata->refcount, release);
4577 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
4581 cifs_small_buf_release(req);
4586 * SMB2_write function gets iov pointer to kvec array with n_vec as a length.
4587 * The length field from io_parms must be at least 1 and indicates a number of
4588 * elements with data to write that begins with position 1 in iov array. All
4589 * data length is specified by count.
4592 SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms,
4593 unsigned int *nbytes, struct kvec *iov, int n_vec)
4595 struct smb_rqst rqst;
4597 struct smb2_write_req *req = NULL;
4598 struct smb2_write_rsp *rsp = NULL;
4600 struct kvec rsp_iov;
4602 unsigned int total_len;
4603 struct TCP_Server_Info *server;
4610 if (!io_parms->server)
4611 io_parms->server = cifs_pick_channel(io_parms->tcon->ses);
4612 server = io_parms->server;
4614 return -ECONNABORTED;
4616 rc = smb2_plain_req_init(SMB2_WRITE, io_parms->tcon, server,
4617 (void **) &req, &total_len);
4621 if (smb3_encryption_required(io_parms->tcon))
4622 flags |= CIFS_TRANSFORM_REQ;
4624 req->hdr.Id.SyncId.ProcessId = cpu_to_le32(io_parms->pid);
4626 req->PersistentFileId = io_parms->persistent_fid;
4627 req->VolatileFileId = io_parms->volatile_fid;
4628 req->WriteChannelInfoOffset = 0;
4629 req->WriteChannelInfoLength = 0;
4631 req->Length = cpu_to_le32(io_parms->length);
4632 req->Offset = cpu_to_le64(io_parms->offset);
4633 req->DataOffset = cpu_to_le16(
4634 offsetof(struct smb2_write_req, Buffer));
4635 req->RemainingBytes = 0;
4637 trace_smb3_write_enter(xid, io_parms->persistent_fid,
4638 io_parms->tcon->tid, io_parms->tcon->ses->Suid,
4639 io_parms->offset, io_parms->length);
4641 iov[0].iov_base = (char *)req;
4643 iov[0].iov_len = total_len - 1;
4645 memset(&rqst, 0, sizeof(struct smb_rqst));
4647 rqst.rq_nvec = n_vec + 1;
4649 rc = cifs_send_recv(xid, io_parms->tcon->ses, server,
4651 &resp_buftype, flags, &rsp_iov);
4652 rsp = (struct smb2_write_rsp *)rsp_iov.iov_base;
4655 trace_smb3_write_err(xid,
4656 req->PersistentFileId,
4657 io_parms->tcon->tid,
4658 io_parms->tcon->ses->Suid,
4659 io_parms->offset, io_parms->length, rc);
4660 cifs_stats_fail_inc(io_parms->tcon, SMB2_WRITE_HE);
4661 cifs_dbg(VFS, "Send error in write = %d\n", rc);
4663 *nbytes = le32_to_cpu(rsp->DataLength);
4664 trace_smb3_write_done(xid,
4665 req->PersistentFileId,
4666 io_parms->tcon->tid,
4667 io_parms->tcon->ses->Suid,
4668 io_parms->offset, *nbytes);
4671 cifs_small_buf_release(req);
4672 free_rsp_buf(resp_buftype, rsp);
4676 int posix_info_sid_size(const void *beg, const void *end)
4684 subauth = *(u8 *)(beg+1);
4685 if (subauth < 1 || subauth > 15)
4688 total = 1 + 1 + 6 + 4*subauth;
4689 if (beg + total > end)
4695 int posix_info_parse(const void *beg, const void *end,
4696 struct smb2_posix_info_parsed *out)
4700 int owner_len, group_len;
4702 const void *owner_sid;
4703 const void *group_sid;
4706 /* if no end bound given, assume payload to be correct */
4708 const struct smb2_posix_info *p = beg;
4710 end = beg + le32_to_cpu(p->NextEntryOffset);
4711 /* last element will have a 0 offset, pick a sensible bound */
4716 /* check base buf */
4717 if (beg + sizeof(struct smb2_posix_info) > end)
4719 total_len = sizeof(struct smb2_posix_info);
4721 /* check owner sid */
4722 owner_sid = beg + total_len;
4723 owner_len = posix_info_sid_size(owner_sid, end);
4726 total_len += owner_len;
4728 /* check group sid */
4729 group_sid = beg + total_len;
4730 group_len = posix_info_sid_size(group_sid, end);
4733 total_len += group_len;
4735 /* check name len */
4736 if (beg + total_len + 4 > end)
4738 name_len = le32_to_cpu(*(__le32 *)(beg + total_len));
4739 if (name_len < 1 || name_len > 0xFFFF)
4744 name = beg + total_len;
4745 if (name + name_len > end)
4747 total_len += name_len;
4751 out->size = total_len;
4752 out->name_len = name_len;
4754 memcpy(&out->owner, owner_sid, owner_len);
4755 memcpy(&out->group, group_sid, group_len);
4760 static int posix_info_extra_size(const void *beg, const void *end)
4762 int len = posix_info_parse(beg, end, NULL);
4766 return len - sizeof(struct smb2_posix_info);
4770 num_entries(int infotype, char *bufstart, char *end_of_buf, char **lastentry,
4774 unsigned int entrycount = 0;
4775 unsigned int next_offset = 0;
4777 FILE_DIRECTORY_INFO *dir_info;
4779 if (bufstart == NULL)
4782 entryptr = bufstart;
4785 if (entryptr + next_offset < entryptr ||
4786 entryptr + next_offset > end_of_buf ||
4787 entryptr + next_offset + size > end_of_buf) {
4788 cifs_dbg(VFS, "malformed search entry would overflow\n");
4792 entryptr = entryptr + next_offset;
4793 dir_info = (FILE_DIRECTORY_INFO *)entryptr;
4795 if (infotype == SMB_FIND_FILE_POSIX_INFO)
4796 len = posix_info_extra_size(entryptr, end_of_buf);
4798 len = le32_to_cpu(dir_info->FileNameLength);
4801 entryptr + len < entryptr ||
4802 entryptr + len > end_of_buf ||
4803 entryptr + len + size > end_of_buf) {
4804 cifs_dbg(VFS, "directory entry name would overflow frame end of buf %p\n",
4809 *lastentry = entryptr;
4812 next_offset = le32_to_cpu(dir_info->NextEntryOffset);
4823 int SMB2_query_directory_init(const unsigned int xid,
4824 struct cifs_tcon *tcon,
4825 struct TCP_Server_Info *server,
4826 struct smb_rqst *rqst,
4827 u64 persistent_fid, u64 volatile_fid,
4828 int index, int info_level)
4830 struct smb2_query_directory_req *req;
4831 unsigned char *bufptr;
4832 __le16 asteriks = cpu_to_le16('*');
4833 unsigned int output_size = CIFSMaxBufSize -
4834 MAX_SMB2_CREATE_RESPONSE_SIZE -
4835 MAX_SMB2_CLOSE_RESPONSE_SIZE;
4836 unsigned int total_len;
4837 struct kvec *iov = rqst->rq_iov;
4840 rc = smb2_plain_req_init(SMB2_QUERY_DIRECTORY, tcon, server,
4841 (void **) &req, &total_len);
4845 switch (info_level) {
4846 case SMB_FIND_FILE_DIRECTORY_INFO:
4847 req->FileInformationClass = FILE_DIRECTORY_INFORMATION;
4849 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
4850 req->FileInformationClass = FILEID_FULL_DIRECTORY_INFORMATION;
4852 case SMB_FIND_FILE_POSIX_INFO:
4853 req->FileInformationClass = SMB_FIND_FILE_POSIX_INFO;
4856 cifs_tcon_dbg(VFS, "info level %u isn't supported\n",
4861 req->FileIndex = cpu_to_le32(index);
4862 req->PersistentFileId = persistent_fid;
4863 req->VolatileFileId = volatile_fid;
4866 bufptr = req->Buffer;
4867 memcpy(bufptr, &asteriks, len);
4869 req->FileNameOffset =
4870 cpu_to_le16(sizeof(struct smb2_query_directory_req) - 1);
4871 req->FileNameLength = cpu_to_le16(len);
4873 * BB could be 30 bytes or so longer if we used SMB2 specific
4874 * buffer lengths, but this is safe and close enough.
4876 output_size = min_t(unsigned int, output_size, server->maxBuf);
4877 output_size = min_t(unsigned int, output_size, 2 << 15);
4878 req->OutputBufferLength = cpu_to_le32(output_size);
4880 iov[0].iov_base = (char *)req;
4882 iov[0].iov_len = total_len - 1;
4884 iov[1].iov_base = (char *)(req->Buffer);
4885 iov[1].iov_len = len;
4887 trace_smb3_query_dir_enter(xid, persistent_fid, tcon->tid,
4888 tcon->ses->Suid, index, output_size);
4893 void SMB2_query_directory_free(struct smb_rqst *rqst)
4895 if (rqst && rqst->rq_iov) {
4896 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
4901 smb2_parse_query_directory(struct cifs_tcon *tcon,
4902 struct kvec *rsp_iov,
4904 struct cifs_search_info *srch_inf)
4906 struct smb2_query_directory_rsp *rsp;
4907 size_t info_buf_size;
4911 rsp = (struct smb2_query_directory_rsp *)rsp_iov->iov_base;
4913 switch (srch_inf->info_level) {
4914 case SMB_FIND_FILE_DIRECTORY_INFO:
4915 info_buf_size = sizeof(FILE_DIRECTORY_INFO) - 1;
4917 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
4918 info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO) - 1;
4920 case SMB_FIND_FILE_POSIX_INFO:
4921 /* note that posix payload are variable size */
4922 info_buf_size = sizeof(struct smb2_posix_info);
4925 cifs_tcon_dbg(VFS, "info level %u isn't supported\n",
4926 srch_inf->info_level);
4930 rc = smb2_validate_iov(le16_to_cpu(rsp->OutputBufferOffset),
4931 le32_to_cpu(rsp->OutputBufferLength), rsp_iov,
4934 cifs_tcon_dbg(VFS, "bad info payload");
4938 srch_inf->unicode = true;
4940 if (srch_inf->ntwrk_buf_start) {
4941 if (srch_inf->smallBuf)
4942 cifs_small_buf_release(srch_inf->ntwrk_buf_start);
4944 cifs_buf_release(srch_inf->ntwrk_buf_start);
4946 srch_inf->ntwrk_buf_start = (char *)rsp;
4947 srch_inf->srch_entries_start = srch_inf->last_entry =
4948 (char *)rsp + le16_to_cpu(rsp->OutputBufferOffset);
4949 end_of_smb = rsp_iov->iov_len + (char *)rsp;
4951 srch_inf->entries_in_buffer = num_entries(
4952 srch_inf->info_level,
4953 srch_inf->srch_entries_start,
4955 &srch_inf->last_entry,
4958 srch_inf->index_of_last_entry += srch_inf->entries_in_buffer;
4959 cifs_dbg(FYI, "num entries %d last_index %lld srch start %p srch end %p\n",
4960 srch_inf->entries_in_buffer, srch_inf->index_of_last_entry,
4961 srch_inf->srch_entries_start, srch_inf->last_entry);
4962 if (resp_buftype == CIFS_LARGE_BUFFER)
4963 srch_inf->smallBuf = false;
4964 else if (resp_buftype == CIFS_SMALL_BUFFER)
4965 srch_inf->smallBuf = true;
4967 cifs_tcon_dbg(VFS, "Invalid search buffer type\n");
4973 SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon,
4974 u64 persistent_fid, u64 volatile_fid, int index,
4975 struct cifs_search_info *srch_inf)
4977 struct smb_rqst rqst;
4978 struct kvec iov[SMB2_QUERY_DIRECTORY_IOV_SIZE];
4979 struct smb2_query_directory_rsp *rsp = NULL;
4980 int resp_buftype = CIFS_NO_BUFFER;
4981 struct kvec rsp_iov;
4983 struct cifs_ses *ses = tcon->ses;
4984 struct TCP_Server_Info *server = cifs_pick_channel(ses);
4987 if (!ses || !(ses->server))
4990 if (smb3_encryption_required(tcon))
4991 flags |= CIFS_TRANSFORM_REQ;
4993 memset(&rqst, 0, sizeof(struct smb_rqst));
4994 memset(&iov, 0, sizeof(iov));
4996 rqst.rq_nvec = SMB2_QUERY_DIRECTORY_IOV_SIZE;
4998 rc = SMB2_query_directory_init(xid, tcon, server,
4999 &rqst, persistent_fid,
5000 volatile_fid, index,
5001 srch_inf->info_level);
5005 rc = cifs_send_recv(xid, ses, server,
5006 &rqst, &resp_buftype, flags, &rsp_iov);
5007 rsp = (struct smb2_query_directory_rsp *)rsp_iov.iov_base;
5010 if (rc == -ENODATA &&
5011 rsp->hdr.Status == STATUS_NO_MORE_FILES) {
5012 trace_smb3_query_dir_done(xid, persistent_fid,
5013 tcon->tid, tcon->ses->Suid, index, 0);
5014 srch_inf->endOfSearch = true;
5017 trace_smb3_query_dir_err(xid, persistent_fid, tcon->tid,
5018 tcon->ses->Suid, index, 0, rc);
5019 cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
5024 rc = smb2_parse_query_directory(tcon, &rsp_iov, resp_buftype,
5027 trace_smb3_query_dir_err(xid, persistent_fid, tcon->tid,
5028 tcon->ses->Suid, index, 0, rc);
5031 resp_buftype = CIFS_NO_BUFFER;
5033 trace_smb3_query_dir_done(xid, persistent_fid, tcon->tid,
5034 tcon->ses->Suid, index, srch_inf->entries_in_buffer);
5037 SMB2_query_directory_free(&rqst);
5038 free_rsp_buf(resp_buftype, rsp);
5043 SMB2_set_info_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server,
5044 struct smb_rqst *rqst,
5045 u64 persistent_fid, u64 volatile_fid, u32 pid,
5046 u8 info_class, u8 info_type, u32 additional_info,
5047 void **data, unsigned int *size)
5049 struct smb2_set_info_req *req;
5050 struct kvec *iov = rqst->rq_iov;
5051 unsigned int i, total_len;
5054 rc = smb2_plain_req_init(SMB2_SET_INFO, tcon, server,
5055 (void **) &req, &total_len);
5059 req->hdr.Id.SyncId.ProcessId = cpu_to_le32(pid);
5060 req->InfoType = info_type;
5061 req->FileInfoClass = info_class;
5062 req->PersistentFileId = persistent_fid;
5063 req->VolatileFileId = volatile_fid;
5064 req->AdditionalInformation = cpu_to_le32(additional_info);
5067 cpu_to_le16(sizeof(struct smb2_set_info_req) - 1);
5068 req->BufferLength = cpu_to_le32(*size);
5070 memcpy(req->Buffer, *data, *size);
5073 iov[0].iov_base = (char *)req;
5075 iov[0].iov_len = total_len - 1;
5077 for (i = 1; i < rqst->rq_nvec; i++) {
5078 le32_add_cpu(&req->BufferLength, size[i]);
5079 iov[i].iov_base = (char *)data[i];
5080 iov[i].iov_len = size[i];
5087 SMB2_set_info_free(struct smb_rqst *rqst)
5089 if (rqst && rqst->rq_iov)
5090 cifs_buf_release(rqst->rq_iov[0].iov_base); /* request */
5094 send_set_info(const unsigned int xid, struct cifs_tcon *tcon,
5095 u64 persistent_fid, u64 volatile_fid, u32 pid, u8 info_class,
5096 u8 info_type, u32 additional_info, unsigned int num,
5097 void **data, unsigned int *size)
5099 struct smb_rqst rqst;
5100 struct smb2_set_info_rsp *rsp = NULL;
5102 struct kvec rsp_iov;
5105 struct cifs_ses *ses = tcon->ses;
5106 struct TCP_Server_Info *server = cifs_pick_channel(ses);
5109 if (!ses || !server)
5115 if (smb3_encryption_required(tcon))
5116 flags |= CIFS_TRANSFORM_REQ;
5118 iov = kmalloc_array(num, sizeof(struct kvec), GFP_KERNEL);
5122 memset(&rqst, 0, sizeof(struct smb_rqst));
5126 rc = SMB2_set_info_init(tcon, server,
5127 &rqst, persistent_fid, volatile_fid, pid,
5128 info_class, info_type, additional_info,
5136 rc = cifs_send_recv(xid, ses, server,
5137 &rqst, &resp_buftype, flags,
5139 SMB2_set_info_free(&rqst);
5140 rsp = (struct smb2_set_info_rsp *)rsp_iov.iov_base;
5143 cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE);
5144 trace_smb3_set_info_err(xid, persistent_fid, tcon->tid,
5145 ses->Suid, info_class, (__u32)info_type, rc);
5148 free_rsp_buf(resp_buftype, rsp);
5154 SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
5155 u64 volatile_fid, u32 pid, __le64 *eof)
5157 struct smb2_file_eof_info info;
5161 info.EndOfFile = *eof;
5164 size = sizeof(struct smb2_file_eof_info);
5166 trace_smb3_set_eof(xid, persistent_fid, tcon->tid, tcon->ses->Suid, le64_to_cpu(*eof));
5168 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
5169 pid, FILE_END_OF_FILE_INFORMATION, SMB2_O_INFO_FILE,
5170 0, 1, &data, &size);
5174 SMB2_set_acl(const unsigned int xid, struct cifs_tcon *tcon,
5175 u64 persistent_fid, u64 volatile_fid,
5176 struct cifs_ntsd *pnntsd, int pacllen, int aclflag)
5178 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
5179 current->tgid, 0, SMB2_O_INFO_SECURITY, aclflag,
5180 1, (void **)&pnntsd, &pacllen);
5184 SMB2_set_ea(const unsigned int xid, struct cifs_tcon *tcon,
5185 u64 persistent_fid, u64 volatile_fid,
5186 struct smb2_file_full_ea_info *buf, int len)
5188 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
5189 current->tgid, FILE_FULL_EA_INFORMATION, SMB2_O_INFO_FILE,
5190 0, 1, (void **)&buf, &len);
5194 SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon,
5195 const u64 persistent_fid, const u64 volatile_fid,
5198 struct smb_rqst rqst;
5200 struct smb2_oplock_break *req = NULL;
5201 struct cifs_ses *ses = tcon->ses;
5202 struct TCP_Server_Info *server = cifs_pick_channel(ses);
5203 int flags = CIFS_OBREAK_OP;
5204 unsigned int total_len;
5206 struct kvec rsp_iov;
5209 cifs_dbg(FYI, "SMB2_oplock_break\n");
5210 rc = smb2_plain_req_init(SMB2_OPLOCK_BREAK, tcon, server,
5211 (void **) &req, &total_len);
5215 if (smb3_encryption_required(tcon))
5216 flags |= CIFS_TRANSFORM_REQ;
5218 req->VolatileFid = volatile_fid;
5219 req->PersistentFid = persistent_fid;
5220 req->OplockLevel = oplock_level;
5221 req->hdr.CreditRequest = cpu_to_le16(1);
5223 flags |= CIFS_NO_RSP_BUF;
5225 iov[0].iov_base = (char *)req;
5226 iov[0].iov_len = total_len;
5228 memset(&rqst, 0, sizeof(struct smb_rqst));
5232 rc = cifs_send_recv(xid, ses, server,
5233 &rqst, &resp_buf_type, flags, &rsp_iov);
5234 cifs_small_buf_release(req);
5237 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
5238 cifs_dbg(FYI, "Send error in Oplock Break = %d\n", rc);
5245 smb2_copy_fs_info_to_kstatfs(struct smb2_fs_full_size_info *pfs_inf,
5246 struct kstatfs *kst)
5248 kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) *
5249 le32_to_cpu(pfs_inf->SectorsPerAllocationUnit);
5250 kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits);
5251 kst->f_bfree = kst->f_bavail =
5252 le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits);
5257 copy_posix_fs_info_to_kstatfs(FILE_SYSTEM_POSIX_INFO *response_data,
5258 struct kstatfs *kst)
5260 kst->f_bsize = le32_to_cpu(response_data->BlockSize);
5261 kst->f_blocks = le64_to_cpu(response_data->TotalBlocks);
5262 kst->f_bfree = le64_to_cpu(response_data->BlocksAvail);
5263 if (response_data->UserBlocksAvail == cpu_to_le64(-1))
5264 kst->f_bavail = kst->f_bfree;
5266 kst->f_bavail = le64_to_cpu(response_data->UserBlocksAvail);
5267 if (response_data->TotalFileNodes != cpu_to_le64(-1))
5268 kst->f_files = le64_to_cpu(response_data->TotalFileNodes);
5269 if (response_data->FreeFileNodes != cpu_to_le64(-1))
5270 kst->f_ffree = le64_to_cpu(response_data->FreeFileNodes);
5276 build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon,
5277 struct TCP_Server_Info *server,
5278 int level, int outbuf_len, u64 persistent_fid,
5282 struct smb2_query_info_req *req;
5283 unsigned int total_len;
5285 cifs_dbg(FYI, "Query FSInfo level %d\n", level);
5287 if ((tcon->ses == NULL) || server == NULL)
5290 rc = smb2_plain_req_init(SMB2_QUERY_INFO, tcon, server,
5291 (void **) &req, &total_len);
5295 req->InfoType = SMB2_O_INFO_FILESYSTEM;
5296 req->FileInfoClass = level;
5297 req->PersistentFileId = persistent_fid;
5298 req->VolatileFileId = volatile_fid;
5300 req->InputBufferOffset =
5301 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1);
5302 req->OutputBufferLength = cpu_to_le32(
5303 outbuf_len + sizeof(struct smb2_query_info_rsp) - 1);
5305 iov->iov_base = (char *)req;
5306 iov->iov_len = total_len;
5311 SMB311_posix_qfs_info(const unsigned int xid, struct cifs_tcon *tcon,
5312 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
5314 struct smb_rqst rqst;
5315 struct smb2_query_info_rsp *rsp = NULL;
5317 struct kvec rsp_iov;
5320 struct cifs_ses *ses = tcon->ses;
5321 struct TCP_Server_Info *server = cifs_pick_channel(ses);
5322 FILE_SYSTEM_POSIX_INFO *info = NULL;
5325 rc = build_qfs_info_req(&iov, tcon, server,
5326 FS_POSIX_INFORMATION,
5327 sizeof(FILE_SYSTEM_POSIX_INFO),
5328 persistent_fid, volatile_fid);
5332 if (smb3_encryption_required(tcon))
5333 flags |= CIFS_TRANSFORM_REQ;
5335 memset(&rqst, 0, sizeof(struct smb_rqst));
5339 rc = cifs_send_recv(xid, ses, server,
5340 &rqst, &resp_buftype, flags, &rsp_iov);
5341 cifs_small_buf_release(iov.iov_base);
5343 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
5344 goto posix_qfsinf_exit;
5346 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
5348 info = (FILE_SYSTEM_POSIX_INFO *)(
5349 le16_to_cpu(rsp->OutputBufferOffset) + (char *)rsp);
5350 rc = smb2_validate_iov(le16_to_cpu(rsp->OutputBufferOffset),
5351 le32_to_cpu(rsp->OutputBufferLength), &rsp_iov,
5352 sizeof(FILE_SYSTEM_POSIX_INFO));
5354 copy_posix_fs_info_to_kstatfs(info, fsdata);
5357 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
5362 SMB2_QFS_info(const unsigned int xid, struct cifs_tcon *tcon,
5363 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
5365 struct smb_rqst rqst;
5366 struct smb2_query_info_rsp *rsp = NULL;
5368 struct kvec rsp_iov;
5371 struct cifs_ses *ses = tcon->ses;
5372 struct TCP_Server_Info *server = cifs_pick_channel(ses);
5373 struct smb2_fs_full_size_info *info = NULL;
5376 rc = build_qfs_info_req(&iov, tcon, server,
5377 FS_FULL_SIZE_INFORMATION,
5378 sizeof(struct smb2_fs_full_size_info),
5379 persistent_fid, volatile_fid);
5383 if (smb3_encryption_required(tcon))
5384 flags |= CIFS_TRANSFORM_REQ;
5386 memset(&rqst, 0, sizeof(struct smb_rqst));
5390 rc = cifs_send_recv(xid, ses, server,
5391 &rqst, &resp_buftype, flags, &rsp_iov);
5392 cifs_small_buf_release(iov.iov_base);
5394 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
5397 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
5399 info = (struct smb2_fs_full_size_info *)(
5400 le16_to_cpu(rsp->OutputBufferOffset) + (char *)rsp);
5401 rc = smb2_validate_iov(le16_to_cpu(rsp->OutputBufferOffset),
5402 le32_to_cpu(rsp->OutputBufferLength), &rsp_iov,
5403 sizeof(struct smb2_fs_full_size_info));
5405 smb2_copy_fs_info_to_kstatfs(info, fsdata);
5408 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
5413 SMB2_QFS_attr(const unsigned int xid, struct cifs_tcon *tcon,
5414 u64 persistent_fid, u64 volatile_fid, int level)
5416 struct smb_rqst rqst;
5417 struct smb2_query_info_rsp *rsp = NULL;
5419 struct kvec rsp_iov;
5421 int resp_buftype, max_len, min_len;
5422 struct cifs_ses *ses = tcon->ses;
5423 struct TCP_Server_Info *server = cifs_pick_channel(ses);
5424 unsigned int rsp_len, offset;
5427 if (level == FS_DEVICE_INFORMATION) {
5428 max_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
5429 min_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
5430 } else if (level == FS_ATTRIBUTE_INFORMATION) {
5431 max_len = sizeof(FILE_SYSTEM_ATTRIBUTE_INFO);
5432 min_len = MIN_FS_ATTR_INFO_SIZE;
5433 } else if (level == FS_SECTOR_SIZE_INFORMATION) {
5434 max_len = sizeof(struct smb3_fs_ss_info);
5435 min_len = sizeof(struct smb3_fs_ss_info);
5436 } else if (level == FS_VOLUME_INFORMATION) {
5437 max_len = sizeof(struct smb3_fs_vol_info) + MAX_VOL_LABEL_LEN;
5438 min_len = sizeof(struct smb3_fs_vol_info);
5440 cifs_dbg(FYI, "Invalid qfsinfo level %d\n", level);
5444 rc = build_qfs_info_req(&iov, tcon, server,
5446 persistent_fid, volatile_fid);
5450 if (smb3_encryption_required(tcon))
5451 flags |= CIFS_TRANSFORM_REQ;
5453 memset(&rqst, 0, sizeof(struct smb_rqst));
5457 rc = cifs_send_recv(xid, ses, server,
5458 &rqst, &resp_buftype, flags, &rsp_iov);
5459 cifs_small_buf_release(iov.iov_base);
5461 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
5464 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
5466 rsp_len = le32_to_cpu(rsp->OutputBufferLength);
5467 offset = le16_to_cpu(rsp->OutputBufferOffset);
5468 rc = smb2_validate_iov(offset, rsp_len, &rsp_iov, min_len);
5472 if (level == FS_ATTRIBUTE_INFORMATION)
5473 memcpy(&tcon->fsAttrInfo, offset
5474 + (char *)rsp, min_t(unsigned int,
5476 else if (level == FS_DEVICE_INFORMATION)
5477 memcpy(&tcon->fsDevInfo, offset
5478 + (char *)rsp, sizeof(FILE_SYSTEM_DEVICE_INFO));
5479 else if (level == FS_SECTOR_SIZE_INFORMATION) {
5480 struct smb3_fs_ss_info *ss_info = (struct smb3_fs_ss_info *)
5481 (offset + (char *)rsp);
5482 tcon->ss_flags = le32_to_cpu(ss_info->Flags);
5483 tcon->perf_sector_size =
5484 le32_to_cpu(ss_info->PhysicalBytesPerSectorForPerf);
5485 } else if (level == FS_VOLUME_INFORMATION) {
5486 struct smb3_fs_vol_info *vol_info = (struct smb3_fs_vol_info *)
5487 (offset + (char *)rsp);
5488 tcon->vol_serial_number = vol_info->VolumeSerialNumber;
5489 tcon->vol_create_time = vol_info->VolumeCreationTime;
5493 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
5498 smb2_lockv(const unsigned int xid, struct cifs_tcon *tcon,
5499 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
5500 const __u32 num_lock, struct smb2_lock_element *buf)
5502 struct smb_rqst rqst;
5504 struct smb2_lock_req *req = NULL;
5506 struct kvec rsp_iov;
5509 int flags = CIFS_NO_RSP_BUF;
5510 unsigned int total_len;
5511 struct TCP_Server_Info *server = cifs_pick_channel(tcon->ses);
5513 cifs_dbg(FYI, "smb2_lockv num lock %d\n", num_lock);
5515 rc = smb2_plain_req_init(SMB2_LOCK, tcon, server,
5516 (void **) &req, &total_len);
5520 if (smb3_encryption_required(tcon))
5521 flags |= CIFS_TRANSFORM_REQ;
5523 req->hdr.Id.SyncId.ProcessId = cpu_to_le32(pid);
5524 req->LockCount = cpu_to_le16(num_lock);
5526 req->PersistentFileId = persist_fid;
5527 req->VolatileFileId = volatile_fid;
5529 count = num_lock * sizeof(struct smb2_lock_element);
5531 iov[0].iov_base = (char *)req;
5532 iov[0].iov_len = total_len - sizeof(struct smb2_lock_element);
5533 iov[1].iov_base = (char *)buf;
5534 iov[1].iov_len = count;
5536 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
5538 memset(&rqst, 0, sizeof(struct smb_rqst));
5542 rc = cifs_send_recv(xid, tcon->ses, server,
5543 &rqst, &resp_buf_type, flags,
5545 cifs_small_buf_release(req);
5547 cifs_dbg(FYI, "Send error in smb2_lockv = %d\n", rc);
5548 cifs_stats_fail_inc(tcon, SMB2_LOCK_HE);
5549 trace_smb3_lock_err(xid, persist_fid, tcon->tid,
5550 tcon->ses->Suid, rc);
5557 SMB2_lock(const unsigned int xid, struct cifs_tcon *tcon,
5558 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
5559 const __u64 length, const __u64 offset, const __u32 lock_flags,
5562 struct smb2_lock_element lock;
5564 lock.Offset = cpu_to_le64(offset);
5565 lock.Length = cpu_to_le64(length);
5566 lock.Flags = cpu_to_le32(lock_flags);
5567 if (!wait && lock_flags != SMB2_LOCKFLAG_UNLOCK)
5568 lock.Flags |= cpu_to_le32(SMB2_LOCKFLAG_FAIL_IMMEDIATELY);
5570 return smb2_lockv(xid, tcon, persist_fid, volatile_fid, pid, 1, &lock);
5574 SMB2_lease_break(const unsigned int xid, struct cifs_tcon *tcon,
5575 __u8 *lease_key, const __le32 lease_state)
5577 struct smb_rqst rqst;
5579 struct smb2_lease_ack *req = NULL;
5580 struct cifs_ses *ses = tcon->ses;
5581 int flags = CIFS_OBREAK_OP;
5582 unsigned int total_len;
5584 struct kvec rsp_iov;
5586 __u64 *please_key_high;
5587 __u64 *please_key_low;
5588 struct TCP_Server_Info *server = cifs_pick_channel(tcon->ses);
5590 cifs_dbg(FYI, "SMB2_lease_break\n");
5591 rc = smb2_plain_req_init(SMB2_OPLOCK_BREAK, tcon, server,
5592 (void **) &req, &total_len);
5596 if (smb3_encryption_required(tcon))
5597 flags |= CIFS_TRANSFORM_REQ;
5599 req->hdr.CreditRequest = cpu_to_le16(1);
5600 req->StructureSize = cpu_to_le16(36);
5603 memcpy(req->LeaseKey, lease_key, 16);
5604 req->LeaseState = lease_state;
5606 flags |= CIFS_NO_RSP_BUF;
5608 iov[0].iov_base = (char *)req;
5609 iov[0].iov_len = total_len;
5611 memset(&rqst, 0, sizeof(struct smb_rqst));
5615 rc = cifs_send_recv(xid, ses, server,
5616 &rqst, &resp_buf_type, flags, &rsp_iov);
5617 cifs_small_buf_release(req);
5619 please_key_low = (__u64 *)lease_key;
5620 please_key_high = (__u64 *)(lease_key+8);
5622 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
5623 trace_smb3_lease_err(le32_to_cpu(lease_state), tcon->tid,
5624 ses->Suid, *please_key_low, *please_key_high, rc);
5625 cifs_dbg(FYI, "Send error in Lease Break = %d\n", rc);
5627 trace_smb3_lease_done(le32_to_cpu(lease_state), tcon->tid,
5628 ses->Suid, *please_key_low, *please_key_high);