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(ALIGN(sizeof(struct smb2_signing_capabilities) -
470 sizeof(struct smb2_neg_context) +
471 (num_algs * sizeof(u16)), 8));
472 pneg_ctxt->SigningAlgorithmCount = cpu_to_le16(num_algs);
473 pneg_ctxt->SigningAlgorithms[0] = cpu_to_le16(SIGNING_ALG_AES_CMAC);
475 ctxt_len += sizeof(__le16) * num_algs;
476 ctxt_len = ALIGN(ctxt_len, 8);
478 /* TBD add SIGNING_ALG_AES_GMAC and/or SIGNING_ALG_HMAC_SHA256 */
482 build_encrypt_ctxt(struct smb2_encryption_neg_context *pneg_ctxt)
484 pneg_ctxt->ContextType = SMB2_ENCRYPTION_CAPABILITIES;
485 if (require_gcm_256) {
486 pneg_ctxt->DataLength = cpu_to_le16(4); /* Cipher Count + 1 cipher */
487 pneg_ctxt->CipherCount = cpu_to_le16(1);
488 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES256_GCM;
489 } else if (enable_gcm_256) {
490 pneg_ctxt->DataLength = cpu_to_le16(8); /* Cipher Count + 3 ciphers */
491 pneg_ctxt->CipherCount = cpu_to_le16(3);
492 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_GCM;
493 pneg_ctxt->Ciphers[1] = SMB2_ENCRYPTION_AES256_GCM;
494 pneg_ctxt->Ciphers[2] = SMB2_ENCRYPTION_AES128_CCM;
496 pneg_ctxt->DataLength = cpu_to_le16(6); /* Cipher Count + 2 ciphers */
497 pneg_ctxt->CipherCount = cpu_to_le16(2);
498 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_GCM;
499 pneg_ctxt->Ciphers[1] = SMB2_ENCRYPTION_AES128_CCM;
504 build_netname_ctxt(struct smb2_netname_neg_context *pneg_ctxt, char *hostname)
506 struct nls_table *cp = load_nls_default();
508 pneg_ctxt->ContextType = SMB2_NETNAME_NEGOTIATE_CONTEXT_ID;
510 /* copy up to max of first 100 bytes of server name to NetName field */
511 pneg_ctxt->DataLength = cpu_to_le16(2 * cifs_strtoUTF16(pneg_ctxt->NetName, hostname, 100, cp));
512 /* context size is DataLength + minimal smb2_neg_context */
513 return ALIGN(le16_to_cpu(pneg_ctxt->DataLength) + sizeof(struct smb2_neg_context), 8);
517 build_posix_ctxt(struct smb2_posix_neg_context *pneg_ctxt)
519 pneg_ctxt->ContextType = SMB2_POSIX_EXTENSIONS_AVAILABLE;
520 pneg_ctxt->DataLength = cpu_to_le16(POSIX_CTXT_DATA_LEN);
521 /* SMB2_CREATE_TAG_POSIX is "0x93AD25509CB411E7B42383DE968BCD7C" */
522 pneg_ctxt->Name[0] = 0x93;
523 pneg_ctxt->Name[1] = 0xAD;
524 pneg_ctxt->Name[2] = 0x25;
525 pneg_ctxt->Name[3] = 0x50;
526 pneg_ctxt->Name[4] = 0x9C;
527 pneg_ctxt->Name[5] = 0xB4;
528 pneg_ctxt->Name[6] = 0x11;
529 pneg_ctxt->Name[7] = 0xE7;
530 pneg_ctxt->Name[8] = 0xB4;
531 pneg_ctxt->Name[9] = 0x23;
532 pneg_ctxt->Name[10] = 0x83;
533 pneg_ctxt->Name[11] = 0xDE;
534 pneg_ctxt->Name[12] = 0x96;
535 pneg_ctxt->Name[13] = 0x8B;
536 pneg_ctxt->Name[14] = 0xCD;
537 pneg_ctxt->Name[15] = 0x7C;
541 assemble_neg_contexts(struct smb2_negotiate_req *req,
542 struct TCP_Server_Info *server, unsigned int *total_len)
545 char *hostname = NULL;
546 unsigned int ctxt_len, neg_context_count;
548 if (*total_len > 200) {
549 /* In case length corrupted don't want to overrun smb buffer */
550 cifs_server_dbg(VFS, "Bad frame length assembling neg contexts\n");
555 * round up total_len of fixed part of SMB3 negotiate request to 8
556 * byte boundary before adding negotiate contexts
558 *total_len = ALIGN(*total_len, 8);
560 pneg_ctxt = (*total_len) + (char *)req;
561 req->NegotiateContextOffset = cpu_to_le32(*total_len);
563 build_preauth_ctxt((struct smb2_preauth_neg_context *)pneg_ctxt);
564 ctxt_len = ALIGN(sizeof(struct smb2_preauth_neg_context), 8);
565 *total_len += ctxt_len;
566 pneg_ctxt += ctxt_len;
568 build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt);
569 ctxt_len = ALIGN(sizeof(struct smb2_encryption_neg_context), 8);
570 *total_len += ctxt_len;
571 pneg_ctxt += ctxt_len;
574 * secondary channels don't have the hostname field populated
575 * use the hostname field in the primary channel instead
577 hostname = CIFS_SERVER_IS_CHAN(server) ?
578 server->primary_server->hostname : server->hostname;
579 if (hostname && (hostname[0] != 0)) {
580 ctxt_len = build_netname_ctxt((struct smb2_netname_neg_context *)pneg_ctxt,
582 *total_len += ctxt_len;
583 pneg_ctxt += ctxt_len;
584 neg_context_count = 3;
586 neg_context_count = 2;
588 build_posix_ctxt((struct smb2_posix_neg_context *)pneg_ctxt);
589 *total_len += sizeof(struct smb2_posix_neg_context);
590 pneg_ctxt += sizeof(struct smb2_posix_neg_context);
593 if (server->compress_algorithm) {
594 build_compression_ctxt((struct smb2_compression_capabilities_context *)
596 ctxt_len = ALIGN(sizeof(struct smb2_compression_capabilities_context), 8);
597 *total_len += ctxt_len;
598 pneg_ctxt += ctxt_len;
602 if (enable_negotiate_signing) {
603 ctxt_len = build_signing_ctxt((struct smb2_signing_capabilities *)
605 *total_len += ctxt_len;
606 pneg_ctxt += ctxt_len;
610 /* check for and add transport_capabilities and signing capabilities */
611 req->NegotiateContextCount = cpu_to_le16(neg_context_count);
615 static void decode_preauth_context(struct smb2_preauth_neg_context *ctxt)
617 unsigned int len = le16_to_cpu(ctxt->DataLength);
619 /* If invalid preauth context warn but use what we requested, SHA-512 */
620 if (len < MIN_PREAUTH_CTXT_DATA_LEN) {
621 pr_warn_once("server sent bad preauth context\n");
623 } else if (len < MIN_PREAUTH_CTXT_DATA_LEN + le16_to_cpu(ctxt->SaltLength)) {
624 pr_warn_once("server sent invalid SaltLength\n");
627 if (le16_to_cpu(ctxt->HashAlgorithmCount) != 1)
628 pr_warn_once("Invalid SMB3 hash algorithm count\n");
629 if (ctxt->HashAlgorithms != SMB2_PREAUTH_INTEGRITY_SHA512)
630 pr_warn_once("unknown SMB3 hash algorithm\n");
633 static void decode_compress_ctx(struct TCP_Server_Info *server,
634 struct smb2_compression_capabilities_context *ctxt)
636 unsigned int len = le16_to_cpu(ctxt->DataLength);
638 /* sizeof compress context is a one element compression capbility struct */
640 pr_warn_once("server sent bad compression cntxt\n");
643 if (le16_to_cpu(ctxt->CompressionAlgorithmCount) != 1) {
644 pr_warn_once("Invalid SMB3 compress algorithm count\n");
647 if (le16_to_cpu(ctxt->CompressionAlgorithms[0]) > 3) {
648 pr_warn_once("unknown compression algorithm\n");
651 server->compress_algorithm = ctxt->CompressionAlgorithms[0];
654 static int decode_encrypt_ctx(struct TCP_Server_Info *server,
655 struct smb2_encryption_neg_context *ctxt)
657 unsigned int len = le16_to_cpu(ctxt->DataLength);
659 cifs_dbg(FYI, "decode SMB3.11 encryption neg context of len %d\n", len);
660 if (len < MIN_ENCRYPT_CTXT_DATA_LEN) {
661 pr_warn_once("server sent bad crypto ctxt len\n");
665 if (le16_to_cpu(ctxt->CipherCount) != 1) {
666 pr_warn_once("Invalid SMB3.11 cipher count\n");
669 cifs_dbg(FYI, "SMB311 cipher type:%d\n", le16_to_cpu(ctxt->Ciphers[0]));
670 if (require_gcm_256) {
671 if (ctxt->Ciphers[0] != SMB2_ENCRYPTION_AES256_GCM) {
672 cifs_dbg(VFS, "Server does not support requested encryption type (AES256 GCM)\n");
675 } else if (ctxt->Ciphers[0] == 0) {
677 * e.g. if server only supported AES256_CCM (very unlikely)
678 * or server supported no encryption types or had all disabled.
679 * Since GLOBAL_CAP_ENCRYPTION will be not set, in the case
680 * in which mount requested encryption ("seal") checks later
681 * on during tree connection will return proper rc, but if
682 * seal not requested by client, since server is allowed to
683 * return 0 to indicate no supported cipher, we can't fail here
685 server->cipher_type = 0;
686 server->capabilities &= ~SMB2_GLOBAL_CAP_ENCRYPTION;
687 pr_warn_once("Server does not support requested encryption types\n");
689 } else if ((ctxt->Ciphers[0] != SMB2_ENCRYPTION_AES128_CCM) &&
690 (ctxt->Ciphers[0] != SMB2_ENCRYPTION_AES128_GCM) &&
691 (ctxt->Ciphers[0] != SMB2_ENCRYPTION_AES256_GCM)) {
692 /* server returned a cipher we didn't ask for */
693 pr_warn_once("Invalid SMB3.11 cipher returned\n");
696 server->cipher_type = ctxt->Ciphers[0];
697 server->capabilities |= SMB2_GLOBAL_CAP_ENCRYPTION;
701 static void decode_signing_ctx(struct TCP_Server_Info *server,
702 struct smb2_signing_capabilities *pctxt)
704 unsigned int len = le16_to_cpu(pctxt->DataLength);
706 if ((len < 4) || (len > 16)) {
707 pr_warn_once("server sent bad signing negcontext\n");
710 if (le16_to_cpu(pctxt->SigningAlgorithmCount) != 1) {
711 pr_warn_once("Invalid signing algorithm count\n");
714 if (le16_to_cpu(pctxt->SigningAlgorithms[0]) > 2) {
715 pr_warn_once("unknown signing algorithm\n");
719 server->signing_negotiated = true;
720 server->signing_algorithm = le16_to_cpu(pctxt->SigningAlgorithms[0]);
721 cifs_dbg(FYI, "signing algorithm %d chosen\n",
722 server->signing_algorithm);
726 static int smb311_decode_neg_context(struct smb2_negotiate_rsp *rsp,
727 struct TCP_Server_Info *server,
728 unsigned int len_of_smb)
730 struct smb2_neg_context *pctx;
731 unsigned int offset = le32_to_cpu(rsp->NegotiateContextOffset);
732 unsigned int ctxt_cnt = le16_to_cpu(rsp->NegotiateContextCount);
733 unsigned int len_of_ctxts, i;
736 cifs_dbg(FYI, "decoding %d negotiate contexts\n", ctxt_cnt);
737 if (len_of_smb <= offset) {
738 cifs_server_dbg(VFS, "Invalid response: negotiate context offset\n");
742 len_of_ctxts = len_of_smb - offset;
744 for (i = 0; i < ctxt_cnt; i++) {
746 /* check that offset is not beyond end of SMB */
747 if (len_of_ctxts == 0)
750 if (len_of_ctxts < sizeof(struct smb2_neg_context))
753 pctx = (struct smb2_neg_context *)(offset + (char *)rsp);
754 clen = le16_to_cpu(pctx->DataLength);
755 if (clen > len_of_ctxts)
758 if (pctx->ContextType == SMB2_PREAUTH_INTEGRITY_CAPABILITIES)
759 decode_preauth_context(
760 (struct smb2_preauth_neg_context *)pctx);
761 else if (pctx->ContextType == SMB2_ENCRYPTION_CAPABILITIES)
762 rc = decode_encrypt_ctx(server,
763 (struct smb2_encryption_neg_context *)pctx);
764 else if (pctx->ContextType == SMB2_COMPRESSION_CAPABILITIES)
765 decode_compress_ctx(server,
766 (struct smb2_compression_capabilities_context *)pctx);
767 else if (pctx->ContextType == SMB2_POSIX_EXTENSIONS_AVAILABLE)
768 server->posix_ext_supported = true;
769 else if (pctx->ContextType == SMB2_SIGNING_CAPABILITIES)
770 decode_signing_ctx(server,
771 (struct smb2_signing_capabilities *)pctx);
773 cifs_server_dbg(VFS, "unknown negcontext of type %d ignored\n",
774 le16_to_cpu(pctx->ContextType));
778 /* offsets must be 8 byte aligned */
779 clen = ALIGN(clen, 8);
780 offset += clen + sizeof(struct smb2_neg_context);
781 len_of_ctxts -= clen;
786 static struct create_posix *
787 create_posix_buf(umode_t mode)
789 struct create_posix *buf;
791 buf = kzalloc(sizeof(struct create_posix),
796 buf->ccontext.DataOffset =
797 cpu_to_le16(offsetof(struct create_posix, Mode));
798 buf->ccontext.DataLength = cpu_to_le32(4);
799 buf->ccontext.NameOffset =
800 cpu_to_le16(offsetof(struct create_posix, Name));
801 buf->ccontext.NameLength = cpu_to_le16(16);
803 /* SMB2_CREATE_TAG_POSIX is "0x93AD25509CB411E7B42383DE968BCD7C" */
814 buf->Name[10] = 0x83;
815 buf->Name[11] = 0xDE;
816 buf->Name[12] = 0x96;
817 buf->Name[13] = 0x8B;
818 buf->Name[14] = 0xCD;
819 buf->Name[15] = 0x7C;
820 buf->Mode = cpu_to_le32(mode);
821 cifs_dbg(FYI, "mode on posix create 0%o\n", mode);
826 add_posix_context(struct kvec *iov, unsigned int *num_iovec, umode_t mode)
828 struct smb2_create_req *req = iov[0].iov_base;
829 unsigned int num = *num_iovec;
831 iov[num].iov_base = create_posix_buf(mode);
832 if (mode == ACL_NO_MODE)
833 cifs_dbg(FYI, "Invalid mode\n");
834 if (iov[num].iov_base == NULL)
836 iov[num].iov_len = sizeof(struct create_posix);
837 if (!req->CreateContextsOffset)
838 req->CreateContextsOffset = cpu_to_le32(
839 sizeof(struct smb2_create_req) +
840 iov[num - 1].iov_len);
841 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_posix));
842 *num_iovec = num + 1;
849 * SMB2 Worker functions follow:
851 * The general structure of the worker functions is:
852 * 1) Call smb2_init (assembles SMB2 header)
853 * 2) Initialize SMB2 command specific fields in fixed length area of SMB
854 * 3) Call smb_sendrcv2 (sends request on socket and waits for response)
855 * 4) Decode SMB2 command specific fields in the fixed length area
856 * 5) Decode variable length data area (if any for this SMB2 command type)
857 * 6) Call free smb buffer
863 SMB2_negotiate(const unsigned int xid,
864 struct cifs_ses *ses,
865 struct TCP_Server_Info *server)
867 struct smb_rqst rqst;
868 struct smb2_negotiate_req *req;
869 struct smb2_negotiate_rsp *rsp;
874 int blob_offset, blob_length;
876 int flags = CIFS_NEG_OP;
877 unsigned int total_len;
879 cifs_dbg(FYI, "Negotiate protocol\n");
882 WARN(1, "%s: server is NULL!\n", __func__);
886 rc = smb2_plain_req_init(SMB2_NEGOTIATE, NULL, server,
887 (void **) &req, &total_len);
891 req->hdr.SessionId = 0;
893 memset(server->preauth_sha_hash, 0, SMB2_PREAUTH_HASH_SIZE);
894 memset(ses->preauth_sha_hash, 0, SMB2_PREAUTH_HASH_SIZE);
896 if (strcmp(server->vals->version_string,
897 SMB3ANY_VERSION_STRING) == 0) {
898 req->Dialects[0] = cpu_to_le16(SMB30_PROT_ID);
899 req->Dialects[1] = cpu_to_le16(SMB302_PROT_ID);
900 req->Dialects[2] = cpu_to_le16(SMB311_PROT_ID);
901 req->DialectCount = cpu_to_le16(3);
903 } else if (strcmp(server->vals->version_string,
904 SMBDEFAULT_VERSION_STRING) == 0) {
905 req->Dialects[0] = cpu_to_le16(SMB21_PROT_ID);
906 req->Dialects[1] = cpu_to_le16(SMB30_PROT_ID);
907 req->Dialects[2] = cpu_to_le16(SMB302_PROT_ID);
908 req->Dialects[3] = cpu_to_le16(SMB311_PROT_ID);
909 req->DialectCount = cpu_to_le16(4);
912 /* otherwise send specific dialect */
913 req->Dialects[0] = cpu_to_le16(server->vals->protocol_id);
914 req->DialectCount = cpu_to_le16(1);
918 /* only one of SMB2 signing flags may be set in SMB2 request */
920 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
921 else if (global_secflags & CIFSSEC_MAY_SIGN)
922 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
924 req->SecurityMode = 0;
926 req->Capabilities = cpu_to_le32(server->vals->req_capabilities);
927 if (ses->chan_max > 1)
928 req->Capabilities |= cpu_to_le32(SMB2_GLOBAL_CAP_MULTI_CHANNEL);
930 /* ClientGUID must be zero for SMB2.02 dialect */
931 if (server->vals->protocol_id == SMB20_PROT_ID)
932 memset(req->ClientGUID, 0, SMB2_CLIENT_GUID_SIZE);
934 memcpy(req->ClientGUID, server->client_guid,
935 SMB2_CLIENT_GUID_SIZE);
936 if ((server->vals->protocol_id == SMB311_PROT_ID) ||
937 (strcmp(server->vals->version_string,
938 SMB3ANY_VERSION_STRING) == 0) ||
939 (strcmp(server->vals->version_string,
940 SMBDEFAULT_VERSION_STRING) == 0))
941 assemble_neg_contexts(req, server, &total_len);
943 iov[0].iov_base = (char *)req;
944 iov[0].iov_len = total_len;
946 memset(&rqst, 0, sizeof(struct smb_rqst));
950 rc = cifs_send_recv(xid, ses, server,
951 &rqst, &resp_buftype, flags, &rsp_iov);
952 cifs_small_buf_release(req);
953 rsp = (struct smb2_negotiate_rsp *)rsp_iov.iov_base;
955 * No tcon so can't do
956 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
958 if (rc == -EOPNOTSUPP) {
959 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");
965 if (strcmp(server->vals->version_string,
966 SMB3ANY_VERSION_STRING) == 0) {
967 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID)) {
969 "SMB2 dialect returned but not requested\n");
971 } else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID)) {
973 "SMB2.1 dialect returned but not requested\n");
975 } else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID)) {
976 /* ops set to 3.0 by default for default so update */
977 server->ops = &smb311_operations;
978 server->vals = &smb311_values;
980 } else if (strcmp(server->vals->version_string,
981 SMBDEFAULT_VERSION_STRING) == 0) {
982 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID)) {
984 "SMB2 dialect returned but not requested\n");
986 } else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID)) {
987 /* ops set to 3.0 by default for default so update */
988 server->ops = &smb21_operations;
989 server->vals = &smb21_values;
990 } else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID)) {
991 server->ops = &smb311_operations;
992 server->vals = &smb311_values;
994 } else if (le16_to_cpu(rsp->DialectRevision) !=
995 server->vals->protocol_id) {
996 /* if requested single dialect ensure returned dialect matched */
997 cifs_server_dbg(VFS, "Invalid 0x%x dialect returned: not requested\n",
998 le16_to_cpu(rsp->DialectRevision));
1002 cifs_dbg(FYI, "mode 0x%x\n", rsp->SecurityMode);
1004 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID))
1005 cifs_dbg(FYI, "negotiated smb2.0 dialect\n");
1006 else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID))
1007 cifs_dbg(FYI, "negotiated smb2.1 dialect\n");
1008 else if (rsp->DialectRevision == cpu_to_le16(SMB30_PROT_ID))
1009 cifs_dbg(FYI, "negotiated smb3.0 dialect\n");
1010 else if (rsp->DialectRevision == cpu_to_le16(SMB302_PROT_ID))
1011 cifs_dbg(FYI, "negotiated smb3.02 dialect\n");
1012 else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID))
1013 cifs_dbg(FYI, "negotiated smb3.1.1 dialect\n");
1015 cifs_server_dbg(VFS, "Invalid dialect returned by server 0x%x\n",
1016 le16_to_cpu(rsp->DialectRevision));
1021 server->dialect = le16_to_cpu(rsp->DialectRevision);
1024 * Keep a copy of the hash after negprot. This hash will be
1025 * the starting hash value for all sessions made from this
1028 memcpy(server->preauth_sha_hash, ses->preauth_sha_hash,
1029 SMB2_PREAUTH_HASH_SIZE);
1031 /* SMB2 only has an extended negflavor */
1032 server->negflavor = CIFS_NEGFLAVOR_EXTENDED;
1033 /* set it to the maximum buffer size value we can send with 1 credit */
1034 server->maxBuf = min_t(unsigned int, le32_to_cpu(rsp->MaxTransactSize),
1035 SMB2_MAX_BUFFER_SIZE);
1036 server->max_read = le32_to_cpu(rsp->MaxReadSize);
1037 server->max_write = le32_to_cpu(rsp->MaxWriteSize);
1038 server->sec_mode = le16_to_cpu(rsp->SecurityMode);
1039 if ((server->sec_mode & SMB2_SEC_MODE_FLAGS_ALL) != server->sec_mode)
1040 cifs_dbg(FYI, "Server returned unexpected security mode 0x%x\n",
1042 server->capabilities = le32_to_cpu(rsp->Capabilities);
1043 /* Internal types */
1044 server->capabilities |= SMB2_NT_FIND | SMB2_LARGE_FILES;
1047 * SMB3.0 supports only 1 cipher and doesn't have a encryption neg context
1048 * Set the cipher type manually.
1050 if (server->dialect == SMB30_PROT_ID && (server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION))
1051 server->cipher_type = SMB2_ENCRYPTION_AES128_CCM;
1053 security_blob = smb2_get_data_area_len(&blob_offset, &blob_length,
1054 (struct smb2_hdr *)rsp);
1056 * See MS-SMB2 section 2.2.4: if no blob, client picks default which
1058 * ses->sectype = RawNTLMSSP;
1059 * but for time being this is our only auth choice so doesn't matter.
1060 * We just found a server which sets blob length to zero expecting raw.
1062 if (blob_length == 0) {
1063 cifs_dbg(FYI, "missing security blob on negprot\n");
1064 server->sec_ntlmssp = true;
1067 rc = cifs_enable_signing(server, ses->sign);
1071 rc = decode_negTokenInit(security_blob, blob_length, server);
1078 if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID)) {
1079 if (rsp->NegotiateContextCount)
1080 rc = smb311_decode_neg_context(rsp, server,
1083 cifs_server_dbg(VFS, "Missing expected negotiate contexts\n");
1086 free_rsp_buf(resp_buftype, rsp);
1090 int smb3_validate_negotiate(const unsigned int xid, struct cifs_tcon *tcon)
1093 struct validate_negotiate_info_req *pneg_inbuf;
1094 struct validate_negotiate_info_rsp *pneg_rsp = NULL;
1096 u32 inbuflen; /* max of 4 dialects */
1097 struct TCP_Server_Info *server = tcon->ses->server;
1099 cifs_dbg(FYI, "validate negotiate\n");
1101 /* In SMB3.11 preauth integrity supersedes validate negotiate */
1102 if (server->dialect == SMB311_PROT_ID)
1106 * validation ioctl must be signed, so no point sending this if we
1107 * can not sign it (ie are not known user). Even if signing is not
1108 * required (enabled but not negotiated), in those cases we selectively
1109 * sign just this, the first and only signed request on a connection.
1110 * Having validation of negotiate info helps reduce attack vectors.
1112 if (tcon->ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST)
1113 return 0; /* validation requires signing */
1115 if (tcon->ses->user_name == NULL) {
1116 cifs_dbg(FYI, "Can't validate negotiate: null user mount\n");
1117 return 0; /* validation requires signing */
1120 if (tcon->ses->session_flags & SMB2_SESSION_FLAG_IS_NULL)
1121 cifs_tcon_dbg(VFS, "Unexpected null user (anonymous) auth flag sent by server\n");
1123 pneg_inbuf = kmalloc(sizeof(*pneg_inbuf), GFP_NOFS);
1127 pneg_inbuf->Capabilities =
1128 cpu_to_le32(server->vals->req_capabilities);
1129 if (tcon->ses->chan_max > 1)
1130 pneg_inbuf->Capabilities |= cpu_to_le32(SMB2_GLOBAL_CAP_MULTI_CHANNEL);
1132 memcpy(pneg_inbuf->Guid, server->client_guid,
1133 SMB2_CLIENT_GUID_SIZE);
1135 if (tcon->ses->sign)
1136 pneg_inbuf->SecurityMode =
1137 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
1138 else if (global_secflags & CIFSSEC_MAY_SIGN)
1139 pneg_inbuf->SecurityMode =
1140 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
1142 pneg_inbuf->SecurityMode = 0;
1145 if (strcmp(server->vals->version_string,
1146 SMB3ANY_VERSION_STRING) == 0) {
1147 pneg_inbuf->Dialects[0] = cpu_to_le16(SMB30_PROT_ID);
1148 pneg_inbuf->Dialects[1] = cpu_to_le16(SMB302_PROT_ID);
1149 pneg_inbuf->Dialects[2] = cpu_to_le16(SMB311_PROT_ID);
1150 pneg_inbuf->DialectCount = cpu_to_le16(3);
1151 /* SMB 2.1 not included so subtract one dialect from len */
1152 inbuflen = sizeof(*pneg_inbuf) -
1153 (sizeof(pneg_inbuf->Dialects[0]));
1154 } else if (strcmp(server->vals->version_string,
1155 SMBDEFAULT_VERSION_STRING) == 0) {
1156 pneg_inbuf->Dialects[0] = cpu_to_le16(SMB21_PROT_ID);
1157 pneg_inbuf->Dialects[1] = cpu_to_le16(SMB30_PROT_ID);
1158 pneg_inbuf->Dialects[2] = cpu_to_le16(SMB302_PROT_ID);
1159 pneg_inbuf->Dialects[3] = cpu_to_le16(SMB311_PROT_ID);
1160 pneg_inbuf->DialectCount = cpu_to_le16(4);
1161 /* structure is big enough for 4 dialects */
1162 inbuflen = sizeof(*pneg_inbuf);
1164 /* otherwise specific dialect was requested */
1165 pneg_inbuf->Dialects[0] =
1166 cpu_to_le16(server->vals->protocol_id);
1167 pneg_inbuf->DialectCount = cpu_to_le16(1);
1168 /* structure is big enough for 4 dialects, sending only 1 */
1169 inbuflen = sizeof(*pneg_inbuf) -
1170 sizeof(pneg_inbuf->Dialects[0]) * 3;
1173 rc = SMB2_ioctl(xid, tcon, NO_FILE_ID, NO_FILE_ID,
1174 FSCTL_VALIDATE_NEGOTIATE_INFO,
1175 (char *)pneg_inbuf, inbuflen, CIFSMaxBufSize,
1176 (char **)&pneg_rsp, &rsplen);
1177 if (rc == -EOPNOTSUPP) {
1179 * Old Windows versions or Netapp SMB server can return
1180 * not supported error. Client should accept it.
1182 cifs_tcon_dbg(VFS, "Server does not support validate negotiate\n");
1184 goto out_free_inbuf;
1185 } else if (rc != 0) {
1186 cifs_tcon_dbg(VFS, "validate protocol negotiate failed: %d\n",
1189 goto out_free_inbuf;
1193 if (rsplen != sizeof(*pneg_rsp)) {
1194 cifs_tcon_dbg(VFS, "Invalid protocol negotiate response size: %d\n",
1197 /* relax check since Mac returns max bufsize allowed on ioctl */
1198 if (rsplen > CIFSMaxBufSize || rsplen < sizeof(*pneg_rsp))
1202 /* check validate negotiate info response matches what we got earlier */
1203 if (pneg_rsp->Dialect != cpu_to_le16(server->dialect))
1206 if (pneg_rsp->SecurityMode != cpu_to_le16(server->sec_mode))
1209 /* do not validate server guid because not saved at negprot time yet */
1211 if ((le32_to_cpu(pneg_rsp->Capabilities) | SMB2_NT_FIND |
1212 SMB2_LARGE_FILES) != server->capabilities)
1215 /* validate negotiate successful */
1217 cifs_dbg(FYI, "validate negotiate info successful\n");
1221 cifs_tcon_dbg(VFS, "protocol revalidation - security settings mismatch\n");
1230 smb2_select_sectype(struct TCP_Server_Info *server, enum securityEnum requested)
1232 switch (requested) {
1239 if (server->sec_ntlmssp &&
1240 (global_secflags & CIFSSEC_MAY_NTLMSSP))
1242 if ((server->sec_kerberos || server->sec_mskerberos) &&
1243 (global_secflags & CIFSSEC_MAY_KRB5))
1251 struct SMB2_sess_data {
1253 struct cifs_ses *ses;
1254 struct TCP_Server_Info *server;
1255 struct nls_table *nls_cp;
1256 void (*func)(struct SMB2_sess_data *);
1258 u64 previous_session;
1260 /* we will send the SMB in three pieces:
1261 * a fixed length beginning part, an optional
1262 * SPNEGO blob (which can be zero length), and a
1263 * last part which will include the strings
1264 * and rest of bcc area. This allows us to avoid
1265 * a large buffer 17K allocation
1272 SMB2_sess_alloc_buffer(struct SMB2_sess_data *sess_data)
1275 struct cifs_ses *ses = sess_data->ses;
1276 struct TCP_Server_Info *server = sess_data->server;
1277 struct smb2_sess_setup_req *req;
1278 unsigned int total_len;
1279 bool is_binding = false;
1281 rc = smb2_plain_req_init(SMB2_SESSION_SETUP, NULL, server,
1287 spin_lock(&ses->chan_lock);
1288 is_binding = !CIFS_ALL_CHANS_NEED_RECONNECT(ses);
1289 spin_unlock(&ses->chan_lock);
1292 req->hdr.SessionId = cpu_to_le64(ses->Suid);
1293 req->hdr.Flags |= SMB2_FLAGS_SIGNED;
1294 req->PreviousSessionId = 0;
1295 req->Flags = SMB2_SESSION_REQ_FLAG_BINDING;
1296 cifs_dbg(FYI, "Binding to sess id: %llx\n", ses->Suid);
1298 /* First session, not a reauthenticate */
1299 req->hdr.SessionId = 0;
1301 * if reconnect, we need to send previous sess id
1304 req->PreviousSessionId = cpu_to_le64(sess_data->previous_session);
1305 req->Flags = 0; /* MBZ */
1306 cifs_dbg(FYI, "Fresh session. Previous: %llx\n",
1307 sess_data->previous_session);
1310 /* enough to enable echos and oplocks and one max size write */
1311 req->hdr.CreditRequest = cpu_to_le16(130);
1313 /* only one of SMB2 signing flags may be set in SMB2 request */
1315 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_REQUIRED;
1316 else if (global_secflags & CIFSSEC_MAY_SIGN) /* one flag unlike MUST_ */
1317 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED;
1319 req->SecurityMode = 0;
1321 #ifdef CONFIG_CIFS_DFS_UPCALL
1322 req->Capabilities = cpu_to_le32(SMB2_GLOBAL_CAP_DFS);
1324 req->Capabilities = 0;
1325 #endif /* DFS_UPCALL */
1327 req->Channel = 0; /* MBZ */
1329 sess_data->iov[0].iov_base = (char *)req;
1331 sess_data->iov[0].iov_len = total_len - 1;
1333 * This variable will be used to clear the buffer
1334 * allocated above in case of any error in the calling function.
1336 sess_data->buf0_type = CIFS_SMALL_BUFFER;
1342 SMB2_sess_free_buffer(struct SMB2_sess_data *sess_data)
1344 struct kvec *iov = sess_data->iov;
1346 /* iov[1] is already freed by caller */
1347 if (sess_data->buf0_type != CIFS_NO_BUFFER && iov[0].iov_base)
1348 memzero_explicit(iov[0].iov_base, iov[0].iov_len);
1350 free_rsp_buf(sess_data->buf0_type, iov[0].iov_base);
1351 sess_data->buf0_type = CIFS_NO_BUFFER;
1355 SMB2_sess_sendreceive(struct SMB2_sess_data *sess_data)
1358 struct smb_rqst rqst;
1359 struct smb2_sess_setup_req *req = sess_data->iov[0].iov_base;
1360 struct kvec rsp_iov = { NULL, 0 };
1362 /* Testing shows that buffer offset must be at location of Buffer[0] */
1363 req->SecurityBufferOffset =
1364 cpu_to_le16(sizeof(struct smb2_sess_setup_req) - 1 /* pad */);
1365 req->SecurityBufferLength = cpu_to_le16(sess_data->iov[1].iov_len);
1367 memset(&rqst, 0, sizeof(struct smb_rqst));
1368 rqst.rq_iov = sess_data->iov;
1371 /* BB add code to build os and lm fields */
1372 rc = cifs_send_recv(sess_data->xid, sess_data->ses,
1375 &sess_data->buf0_type,
1376 CIFS_LOG_ERROR | CIFS_SESS_OP, &rsp_iov);
1377 cifs_small_buf_release(sess_data->iov[0].iov_base);
1378 memcpy(&sess_data->iov[0], &rsp_iov, sizeof(struct kvec));
1384 SMB2_sess_establish_session(struct SMB2_sess_data *sess_data)
1387 struct cifs_ses *ses = sess_data->ses;
1388 struct TCP_Server_Info *server = sess_data->server;
1390 cifs_server_lock(server);
1391 if (server->ops->generate_signingkey) {
1392 rc = server->ops->generate_signingkey(ses, server);
1395 "SMB3 session key generation failed\n");
1396 cifs_server_unlock(server);
1400 if (!server->session_estab) {
1401 server->sequence_number = 0x2;
1402 server->session_estab = true;
1404 cifs_server_unlock(server);
1406 cifs_dbg(FYI, "SMB2/3 session established successfully\n");
1410 #ifdef CONFIG_CIFS_UPCALL
1412 SMB2_auth_kerberos(struct SMB2_sess_data *sess_data)
1415 struct cifs_ses *ses = sess_data->ses;
1416 struct TCP_Server_Info *server = sess_data->server;
1417 struct cifs_spnego_msg *msg;
1418 struct key *spnego_key = NULL;
1419 struct smb2_sess_setup_rsp *rsp = NULL;
1420 bool is_binding = false;
1422 rc = SMB2_sess_alloc_buffer(sess_data);
1426 spnego_key = cifs_get_spnego_key(ses, server);
1427 if (IS_ERR(spnego_key)) {
1428 rc = PTR_ERR(spnego_key);
1430 cifs_dbg(VFS, "Verify user has a krb5 ticket and keyutils is installed\n");
1435 msg = spnego_key->payload.data[0];
1437 * check version field to make sure that cifs.upcall is
1438 * sending us a response in an expected form
1440 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
1441 cifs_dbg(VFS, "bad cifs.upcall version. Expected %d got %d\n",
1442 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
1444 goto out_put_spnego_key;
1447 spin_lock(&ses->chan_lock);
1448 is_binding = !CIFS_ALL_CHANS_NEED_RECONNECT(ses);
1449 spin_unlock(&ses->chan_lock);
1451 /* keep session key if binding */
1453 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
1455 if (!ses->auth_key.response) {
1456 cifs_dbg(VFS, "Kerberos can't allocate (%u bytes) memory\n",
1459 goto out_put_spnego_key;
1461 ses->auth_key.len = msg->sesskey_len;
1464 sess_data->iov[1].iov_base = msg->data + msg->sesskey_len;
1465 sess_data->iov[1].iov_len = msg->secblob_len;
1467 rc = SMB2_sess_sendreceive(sess_data);
1469 goto out_put_spnego_key;
1471 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
1472 /* keep session id and flags if binding */
1474 ses->Suid = le64_to_cpu(rsp->hdr.SessionId);
1475 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
1478 rc = SMB2_sess_establish_session(sess_data);
1480 key_invalidate(spnego_key);
1481 key_put(spnego_key);
1483 kfree_sensitive(ses->auth_key.response);
1485 sess_data->result = rc;
1486 sess_data->func = NULL;
1487 SMB2_sess_free_buffer(sess_data);
1491 SMB2_auth_kerberos(struct SMB2_sess_data *sess_data)
1493 cifs_dbg(VFS, "Kerberos negotiated but upcall support disabled!\n");
1494 sess_data->result = -EOPNOTSUPP;
1495 sess_data->func = NULL;
1500 SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data);
1503 SMB2_sess_auth_rawntlmssp_negotiate(struct SMB2_sess_data *sess_data)
1506 struct cifs_ses *ses = sess_data->ses;
1507 struct TCP_Server_Info *server = sess_data->server;
1508 struct smb2_sess_setup_rsp *rsp = NULL;
1509 unsigned char *ntlmssp_blob = NULL;
1510 bool use_spnego = false; /* else use raw ntlmssp */
1511 u16 blob_length = 0;
1512 bool is_binding = false;
1515 * If memory allocation is successful, caller of this function
1518 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
1519 if (!ses->ntlmssp) {
1523 ses->ntlmssp->sesskey_per_smbsess = true;
1525 rc = SMB2_sess_alloc_buffer(sess_data);
1529 rc = build_ntlmssp_smb3_negotiate_blob(&ntlmssp_blob,
1530 &blob_length, ses, server,
1536 /* BB eventually need to add this */
1537 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
1541 sess_data->iov[1].iov_base = ntlmssp_blob;
1542 sess_data->iov[1].iov_len = blob_length;
1544 rc = SMB2_sess_sendreceive(sess_data);
1545 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
1547 /* If true, rc here is expected and not an error */
1548 if (sess_data->buf0_type != CIFS_NO_BUFFER &&
1549 rsp->hdr.Status == STATUS_MORE_PROCESSING_REQUIRED)
1555 if (offsetof(struct smb2_sess_setup_rsp, Buffer) !=
1556 le16_to_cpu(rsp->SecurityBufferOffset)) {
1557 cifs_dbg(VFS, "Invalid security buffer offset %d\n",
1558 le16_to_cpu(rsp->SecurityBufferOffset));
1562 rc = decode_ntlmssp_challenge(rsp->Buffer,
1563 le16_to_cpu(rsp->SecurityBufferLength), ses);
1567 cifs_dbg(FYI, "rawntlmssp session setup challenge phase\n");
1569 spin_lock(&ses->chan_lock);
1570 is_binding = !CIFS_ALL_CHANS_NEED_RECONNECT(ses);
1571 spin_unlock(&ses->chan_lock);
1573 /* keep existing ses id and flags if binding */
1575 ses->Suid = le64_to_cpu(rsp->hdr.SessionId);
1576 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
1580 kfree_sensitive(ntlmssp_blob);
1581 SMB2_sess_free_buffer(sess_data);
1583 sess_data->result = 0;
1584 sess_data->func = SMB2_sess_auth_rawntlmssp_authenticate;
1588 kfree_sensitive(ses->ntlmssp);
1589 ses->ntlmssp = NULL;
1590 sess_data->result = rc;
1591 sess_data->func = NULL;
1595 SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data)
1598 struct cifs_ses *ses = sess_data->ses;
1599 struct TCP_Server_Info *server = sess_data->server;
1600 struct smb2_sess_setup_req *req;
1601 struct smb2_sess_setup_rsp *rsp = NULL;
1602 unsigned char *ntlmssp_blob = NULL;
1603 bool use_spnego = false; /* else use raw ntlmssp */
1604 u16 blob_length = 0;
1605 bool is_binding = false;
1607 rc = SMB2_sess_alloc_buffer(sess_data);
1611 req = (struct smb2_sess_setup_req *) sess_data->iov[0].iov_base;
1612 req->hdr.SessionId = cpu_to_le64(ses->Suid);
1614 rc = build_ntlmssp_auth_blob(&ntlmssp_blob, &blob_length,
1618 cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n", rc);
1623 /* BB eventually need to add this */
1624 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
1628 sess_data->iov[1].iov_base = ntlmssp_blob;
1629 sess_data->iov[1].iov_len = blob_length;
1631 rc = SMB2_sess_sendreceive(sess_data);
1635 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
1637 spin_lock(&ses->chan_lock);
1638 is_binding = !CIFS_ALL_CHANS_NEED_RECONNECT(ses);
1639 spin_unlock(&ses->chan_lock);
1641 /* keep existing ses id and flags if binding */
1643 ses->Suid = le64_to_cpu(rsp->hdr.SessionId);
1644 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
1647 rc = SMB2_sess_establish_session(sess_data);
1648 #ifdef CONFIG_CIFS_DEBUG_DUMP_KEYS
1649 if (ses->server->dialect < SMB30_PROT_ID) {
1650 cifs_dbg(VFS, "%s: dumping generated SMB2 session keys\n", __func__);
1652 * The session id is opaque in terms of endianness, so we can't
1653 * print it as a long long. we dump it as we got it on the wire
1655 cifs_dbg(VFS, "Session Id %*ph\n", (int)sizeof(ses->Suid),
1657 cifs_dbg(VFS, "Session Key %*ph\n",
1658 SMB2_NTLMV2_SESSKEY_SIZE, ses->auth_key.response);
1659 cifs_dbg(VFS, "Signing Key %*ph\n",
1660 SMB3_SIGN_KEY_SIZE, ses->auth_key.response);
1664 kfree_sensitive(ntlmssp_blob);
1665 SMB2_sess_free_buffer(sess_data);
1666 kfree_sensitive(ses->ntlmssp);
1667 ses->ntlmssp = NULL;
1668 sess_data->result = rc;
1669 sess_data->func = NULL;
1673 SMB2_select_sec(struct SMB2_sess_data *sess_data)
1676 struct cifs_ses *ses = sess_data->ses;
1677 struct TCP_Server_Info *server = sess_data->server;
1679 type = smb2_select_sectype(server, ses->sectype);
1680 cifs_dbg(FYI, "sess setup type %d\n", type);
1681 if (type == Unspecified) {
1682 cifs_dbg(VFS, "Unable to select appropriate authentication method!\n");
1688 sess_data->func = SMB2_auth_kerberos;
1691 sess_data->func = SMB2_sess_auth_rawntlmssp_negotiate;
1694 cifs_dbg(VFS, "secType %d not supported!\n", type);
1702 SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
1703 struct TCP_Server_Info *server,
1704 const struct nls_table *nls_cp)
1707 struct SMB2_sess_data *sess_data;
1709 cifs_dbg(FYI, "Session Setup\n");
1712 WARN(1, "%s: server is NULL!\n", __func__);
1716 sess_data = kzalloc(sizeof(struct SMB2_sess_data), GFP_KERNEL);
1720 sess_data->xid = xid;
1721 sess_data->ses = ses;
1722 sess_data->server = server;
1723 sess_data->buf0_type = CIFS_NO_BUFFER;
1724 sess_data->nls_cp = (struct nls_table *) nls_cp;
1725 sess_data->previous_session = ses->Suid;
1727 rc = SMB2_select_sec(sess_data);
1732 * Initialize the session hash with the server one.
1734 memcpy(ses->preauth_sha_hash, server->preauth_sha_hash,
1735 SMB2_PREAUTH_HASH_SIZE);
1737 while (sess_data->func)
1738 sess_data->func(sess_data);
1740 if ((ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST) && (ses->sign))
1741 cifs_server_dbg(VFS, "signing requested but authenticated as guest\n");
1742 rc = sess_data->result;
1744 kfree_sensitive(sess_data);
1749 SMB2_logoff(const unsigned int xid, struct cifs_ses *ses)
1751 struct smb_rqst rqst;
1752 struct smb2_logoff_req *req; /* response is also trivial struct */
1754 struct TCP_Server_Info *server;
1756 unsigned int total_len;
1758 struct kvec rsp_iov;
1761 cifs_dbg(FYI, "disconnect session %p\n", ses);
1763 if (ses && (ses->server))
1764 server = ses->server;
1768 /* no need to send SMB logoff if uid already closed due to reconnect */
1769 spin_lock(&ses->chan_lock);
1770 if (CIFS_ALL_CHANS_NEED_RECONNECT(ses)) {
1771 spin_unlock(&ses->chan_lock);
1772 goto smb2_session_already_dead;
1774 spin_unlock(&ses->chan_lock);
1776 rc = smb2_plain_req_init(SMB2_LOGOFF, NULL, ses->server,
1777 (void **) &req, &total_len);
1781 /* since no tcon, smb2_init can not do this, so do here */
1782 req->hdr.SessionId = cpu_to_le64(ses->Suid);
1784 if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA)
1785 flags |= CIFS_TRANSFORM_REQ;
1786 else if (server->sign)
1787 req->hdr.Flags |= SMB2_FLAGS_SIGNED;
1789 flags |= CIFS_NO_RSP_BUF;
1791 iov[0].iov_base = (char *)req;
1792 iov[0].iov_len = total_len;
1794 memset(&rqst, 0, sizeof(struct smb_rqst));
1798 rc = cifs_send_recv(xid, ses, ses->server,
1799 &rqst, &resp_buf_type, flags, &rsp_iov);
1800 cifs_small_buf_release(req);
1802 * No tcon so can't do
1803 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
1806 smb2_session_already_dead:
1810 static inline void cifs_stats_fail_inc(struct cifs_tcon *tcon, uint16_t code)
1812 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_failed[code]);
1815 #define MAX_SHARENAME_LENGTH (255 /* server */ + 80 /* share */ + 1 /* NULL */)
1817 /* These are similar values to what Windows uses */
1818 static inline void init_copy_chunk_defaults(struct cifs_tcon *tcon)
1820 tcon->max_chunks = 256;
1821 tcon->max_bytes_chunk = 1048576;
1822 tcon->max_bytes_copy = 16777216;
1826 SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
1827 struct cifs_tcon *tcon, const struct nls_table *cp)
1829 struct smb_rqst rqst;
1830 struct smb2_tree_connect_req *req;
1831 struct smb2_tree_connect_rsp *rsp = NULL;
1833 struct kvec rsp_iov = { NULL, 0 };
1837 __le16 *unc_path = NULL;
1839 unsigned int total_len;
1840 struct TCP_Server_Info *server;
1842 /* always use master channel */
1843 server = ses->server;
1845 cifs_dbg(FYI, "TCON\n");
1847 if (!server || !tree)
1850 unc_path = kmalloc(MAX_SHARENAME_LENGTH * 2, GFP_KERNEL);
1851 if (unc_path == NULL)
1854 unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp) + 1;
1856 if (unc_path_len < 2) {
1861 /* SMB2 TREE_CONNECT request must be called with TreeId == 0 */
1863 atomic_set(&tcon->num_remote_opens, 0);
1864 rc = smb2_plain_req_init(SMB2_TREE_CONNECT, tcon, server,
1865 (void **) &req, &total_len);
1871 if (smb3_encryption_required(tcon))
1872 flags |= CIFS_TRANSFORM_REQ;
1874 iov[0].iov_base = (char *)req;
1876 iov[0].iov_len = total_len - 1;
1878 /* Testing shows that buffer offset must be at location of Buffer[0] */
1879 req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)
1881 req->PathLength = cpu_to_le16(unc_path_len - 2);
1882 iov[1].iov_base = unc_path;
1883 iov[1].iov_len = unc_path_len;
1886 * 3.11 tcon req must be signed if not encrypted. See MS-SMB2 3.2.4.1.1
1887 * unless it is guest or anonymous user. See MS-SMB2 3.2.5.3.1
1888 * (Samba servers don't always set the flag so also check if null user)
1890 if ((server->dialect == SMB311_PROT_ID) &&
1891 !smb3_encryption_required(tcon) &&
1892 !(ses->session_flags &
1893 (SMB2_SESSION_FLAG_IS_GUEST|SMB2_SESSION_FLAG_IS_NULL)) &&
1894 ((ses->user_name != NULL) || (ses->sectype == Kerberos)))
1895 req->hdr.Flags |= SMB2_FLAGS_SIGNED;
1897 memset(&rqst, 0, sizeof(struct smb_rqst));
1901 /* Need 64 for max size write so ask for more in case not there yet */
1902 req->hdr.CreditRequest = cpu_to_le16(64);
1904 rc = cifs_send_recv(xid, ses, server,
1905 &rqst, &resp_buftype, flags, &rsp_iov);
1906 cifs_small_buf_release(req);
1907 rsp = (struct smb2_tree_connect_rsp *)rsp_iov.iov_base;
1908 trace_smb3_tcon(xid, tcon->tid, ses->Suid, tree, rc);
1909 if ((rc != 0) || (rsp == NULL)) {
1910 cifs_stats_fail_inc(tcon, SMB2_TREE_CONNECT_HE);
1911 tcon->need_reconnect = true;
1912 goto tcon_error_exit;
1915 switch (rsp->ShareType) {
1916 case SMB2_SHARE_TYPE_DISK:
1917 cifs_dbg(FYI, "connection to disk share\n");
1919 case SMB2_SHARE_TYPE_PIPE:
1921 cifs_dbg(FYI, "connection to pipe share\n");
1923 case SMB2_SHARE_TYPE_PRINT:
1925 cifs_dbg(FYI, "connection to printer\n");
1928 cifs_server_dbg(VFS, "unknown share type %d\n", rsp->ShareType);
1930 goto tcon_error_exit;
1933 tcon->share_flags = le32_to_cpu(rsp->ShareFlags);
1934 tcon->capabilities = rsp->Capabilities; /* we keep caps little endian */
1935 tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess);
1936 tcon->tid = le32_to_cpu(rsp->hdr.Id.SyncId.TreeId);
1937 strscpy(tcon->tree_name, tree, sizeof(tcon->tree_name));
1939 if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) &&
1940 ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0))
1941 cifs_tcon_dbg(VFS, "DFS capability contradicts DFS flag\n");
1944 !(server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION))
1945 cifs_tcon_dbg(VFS, "Encryption is requested but not supported\n");
1947 init_copy_chunk_defaults(tcon);
1948 if (server->ops->validate_negotiate)
1949 rc = server->ops->validate_negotiate(xid, tcon);
1952 free_rsp_buf(resp_buftype, rsp);
1957 if (rsp && rsp->hdr.Status == STATUS_BAD_NETWORK_NAME)
1958 cifs_tcon_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree);
1963 SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
1965 struct smb_rqst rqst;
1966 struct smb2_tree_disconnect_req *req; /* response is trivial */
1968 struct cifs_ses *ses = tcon->ses;
1970 unsigned int total_len;
1972 struct kvec rsp_iov;
1975 cifs_dbg(FYI, "Tree Disconnect\n");
1977 if (!ses || !(ses->server))
1980 trace_smb3_tdis_enter(xid, tcon->tid, ses->Suid, tcon->tree_name);
1981 spin_lock(&ses->chan_lock);
1982 if ((tcon->need_reconnect) ||
1983 (CIFS_ALL_CHANS_NEED_RECONNECT(tcon->ses))) {
1984 spin_unlock(&ses->chan_lock);
1987 spin_unlock(&ses->chan_lock);
1989 invalidate_all_cached_dirs(tcon);
1991 rc = smb2_plain_req_init(SMB2_TREE_DISCONNECT, tcon, ses->server,
1997 if (smb3_encryption_required(tcon))
1998 flags |= CIFS_TRANSFORM_REQ;
2000 flags |= CIFS_NO_RSP_BUF;
2002 iov[0].iov_base = (char *)req;
2003 iov[0].iov_len = total_len;
2005 memset(&rqst, 0, sizeof(struct smb_rqst));
2009 rc = cifs_send_recv(xid, ses, ses->server,
2010 &rqst, &resp_buf_type, flags, &rsp_iov);
2011 cifs_small_buf_release(req);
2013 cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE);
2014 trace_smb3_tdis_err(xid, tcon->tid, ses->Suid, rc);
2016 trace_smb3_tdis_done(xid, tcon->tid, ses->Suid);
2022 static struct create_durable *
2023 create_durable_buf(void)
2025 struct create_durable *buf;
2027 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
2031 buf->ccontext.DataOffset = cpu_to_le16(offsetof
2032 (struct create_durable, Data));
2033 buf->ccontext.DataLength = cpu_to_le32(16);
2034 buf->ccontext.NameOffset = cpu_to_le16(offsetof
2035 (struct create_durable, Name));
2036 buf->ccontext.NameLength = cpu_to_le16(4);
2037 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DHnQ" */
2045 static struct create_durable *
2046 create_reconnect_durable_buf(struct cifs_fid *fid)
2048 struct create_durable *buf;
2050 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
2054 buf->ccontext.DataOffset = cpu_to_le16(offsetof
2055 (struct create_durable, Data));
2056 buf->ccontext.DataLength = cpu_to_le32(16);
2057 buf->ccontext.NameOffset = cpu_to_le16(offsetof
2058 (struct create_durable, Name));
2059 buf->ccontext.NameLength = cpu_to_le16(4);
2060 buf->Data.Fid.PersistentFileId = fid->persistent_fid;
2061 buf->Data.Fid.VolatileFileId = fid->volatile_fid;
2062 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT is "DHnC" */
2071 parse_query_id_ctxt(struct create_context *cc, struct smb2_file_all_info *buf)
2073 struct create_on_disk_id *pdisk_id = (struct create_on_disk_id *)cc;
2075 cifs_dbg(FYI, "parse query id context 0x%llx 0x%llx\n",
2076 pdisk_id->DiskFileId, pdisk_id->VolumeId);
2077 buf->IndexNumber = pdisk_id->DiskFileId;
2081 parse_posix_ctxt(struct create_context *cc, struct smb2_file_all_info *info,
2082 struct create_posix_rsp *posix)
2085 u8 *beg = (u8 *)cc + le16_to_cpu(cc->DataOffset);
2086 u8 *end = beg + le32_to_cpu(cc->DataLength);
2089 memset(posix, 0, sizeof(*posix));
2091 posix->nlink = le32_to_cpu(*(__le32 *)(beg + 0));
2092 posix->reparse_tag = le32_to_cpu(*(__le32 *)(beg + 4));
2093 posix->mode = le32_to_cpu(*(__le32 *)(beg + 8));
2096 sid_len = posix_info_sid_size(sid, end);
2098 cifs_dbg(VFS, "bad owner sid in posix create response\n");
2101 memcpy(&posix->owner, sid, sid_len);
2103 sid = sid + sid_len;
2104 sid_len = posix_info_sid_size(sid, end);
2106 cifs_dbg(VFS, "bad group sid in posix create response\n");
2109 memcpy(&posix->group, sid, sid_len);
2111 cifs_dbg(FYI, "nlink=%d mode=%o reparse_tag=%x\n",
2112 posix->nlink, posix->mode, posix->reparse_tag);
2116 smb2_parse_contexts(struct TCP_Server_Info *server,
2117 struct smb2_create_rsp *rsp,
2118 unsigned int *epoch, char *lease_key, __u8 *oplock,
2119 struct smb2_file_all_info *buf,
2120 struct create_posix_rsp *posix)
2123 struct create_context *cc;
2125 unsigned int remaining;
2127 static const char smb3_create_tag_posix[] = {
2128 0x93, 0xAD, 0x25, 0x50, 0x9C,
2129 0xB4, 0x11, 0xE7, 0xB4, 0x23, 0x83,
2130 0xDE, 0x96, 0x8B, 0xCD, 0x7C
2134 data_offset = (char *)rsp + le32_to_cpu(rsp->CreateContextsOffset);
2135 remaining = le32_to_cpu(rsp->CreateContextsLength);
2136 cc = (struct create_context *)data_offset;
2138 /* Initialize inode number to 0 in case no valid data in qfid context */
2140 buf->IndexNumber = 0;
2142 while (remaining >= sizeof(struct create_context)) {
2143 name = le16_to_cpu(cc->NameOffset) + (char *)cc;
2144 if (le16_to_cpu(cc->NameLength) == 4 &&
2145 strncmp(name, SMB2_CREATE_REQUEST_LEASE, 4) == 0)
2146 *oplock = server->ops->parse_lease_buf(cc, epoch,
2148 else if (buf && (le16_to_cpu(cc->NameLength) == 4) &&
2149 strncmp(name, SMB2_CREATE_QUERY_ON_DISK_ID, 4) == 0)
2150 parse_query_id_ctxt(cc, buf);
2151 else if ((le16_to_cpu(cc->NameLength) == 16)) {
2153 memcmp(name, smb3_create_tag_posix, 16) == 0)
2154 parse_posix_ctxt(cc, buf, posix);
2157 cifs_dbg(FYI, "Context not matched with len %d\n",
2158 le16_to_cpu(cc->NameLength));
2159 cifs_dump_mem("Cctxt name: ", name, 4);
2162 next = le32_to_cpu(cc->Next);
2166 cc = (struct create_context *)((char *)cc + next);
2169 if (rsp->OplockLevel != SMB2_OPLOCK_LEVEL_LEASE)
2170 *oplock = rsp->OplockLevel;
2176 add_lease_context(struct TCP_Server_Info *server, struct kvec *iov,
2177 unsigned int *num_iovec, u8 *lease_key, __u8 *oplock)
2179 struct smb2_create_req *req = iov[0].iov_base;
2180 unsigned int num = *num_iovec;
2182 iov[num].iov_base = server->ops->create_lease_buf(lease_key, *oplock);
2183 if (iov[num].iov_base == NULL)
2185 iov[num].iov_len = server->vals->create_lease_size;
2186 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_LEASE;
2187 if (!req->CreateContextsOffset)
2188 req->CreateContextsOffset = cpu_to_le32(
2189 sizeof(struct smb2_create_req) +
2190 iov[num - 1].iov_len);
2191 le32_add_cpu(&req->CreateContextsLength,
2192 server->vals->create_lease_size);
2193 *num_iovec = num + 1;
2197 static struct create_durable_v2 *
2198 create_durable_v2_buf(struct cifs_open_parms *oparms)
2200 struct cifs_fid *pfid = oparms->fid;
2201 struct create_durable_v2 *buf;
2203 buf = kzalloc(sizeof(struct create_durable_v2), GFP_KERNEL);
2207 buf->ccontext.DataOffset = cpu_to_le16(offsetof
2208 (struct create_durable_v2, dcontext));
2209 buf->ccontext.DataLength = cpu_to_le32(sizeof(struct durable_context_v2));
2210 buf->ccontext.NameOffset = cpu_to_le16(offsetof
2211 (struct create_durable_v2, Name));
2212 buf->ccontext.NameLength = cpu_to_le16(4);
2215 * NB: Handle timeout defaults to 0, which allows server to choose
2216 * (most servers default to 120 seconds) and most clients default to 0.
2217 * This can be overridden at mount ("handletimeout=") if the user wants
2218 * a different persistent (or resilient) handle timeout for all opens
2219 * opens on a particular SMB3 mount.
2221 buf->dcontext.Timeout = cpu_to_le32(oparms->tcon->handle_timeout);
2222 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
2223 generate_random_uuid(buf->dcontext.CreateGuid);
2224 memcpy(pfid->create_guid, buf->dcontext.CreateGuid, 16);
2226 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DH2Q" */
2234 static struct create_durable_handle_reconnect_v2 *
2235 create_reconnect_durable_v2_buf(struct cifs_fid *fid)
2237 struct create_durable_handle_reconnect_v2 *buf;
2239 buf = kzalloc(sizeof(struct create_durable_handle_reconnect_v2),
2244 buf->ccontext.DataOffset =
2245 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
2247 buf->ccontext.DataLength =
2248 cpu_to_le32(sizeof(struct durable_reconnect_context_v2));
2249 buf->ccontext.NameOffset =
2250 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
2252 buf->ccontext.NameLength = cpu_to_le16(4);
2254 buf->dcontext.Fid.PersistentFileId = fid->persistent_fid;
2255 buf->dcontext.Fid.VolatileFileId = fid->volatile_fid;
2256 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
2257 memcpy(buf->dcontext.CreateGuid, fid->create_guid, 16);
2259 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 is "DH2C" */
2268 add_durable_v2_context(struct kvec *iov, unsigned int *num_iovec,
2269 struct cifs_open_parms *oparms)
2271 struct smb2_create_req *req = iov[0].iov_base;
2272 unsigned int num = *num_iovec;
2274 iov[num].iov_base = create_durable_v2_buf(oparms);
2275 if (iov[num].iov_base == NULL)
2277 iov[num].iov_len = sizeof(struct create_durable_v2);
2278 if (!req->CreateContextsOffset)
2279 req->CreateContextsOffset =
2280 cpu_to_le32(sizeof(struct smb2_create_req) +
2282 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable_v2));
2283 *num_iovec = num + 1;
2288 add_durable_reconnect_v2_context(struct kvec *iov, unsigned int *num_iovec,
2289 struct cifs_open_parms *oparms)
2291 struct smb2_create_req *req = iov[0].iov_base;
2292 unsigned int num = *num_iovec;
2294 /* indicate that we don't need to relock the file */
2295 oparms->reconnect = false;
2297 iov[num].iov_base = create_reconnect_durable_v2_buf(oparms->fid);
2298 if (iov[num].iov_base == NULL)
2300 iov[num].iov_len = sizeof(struct create_durable_handle_reconnect_v2);
2301 if (!req->CreateContextsOffset)
2302 req->CreateContextsOffset =
2303 cpu_to_le32(sizeof(struct smb2_create_req) +
2305 le32_add_cpu(&req->CreateContextsLength,
2306 sizeof(struct create_durable_handle_reconnect_v2));
2307 *num_iovec = num + 1;
2312 add_durable_context(struct kvec *iov, unsigned int *num_iovec,
2313 struct cifs_open_parms *oparms, bool use_persistent)
2315 struct smb2_create_req *req = iov[0].iov_base;
2316 unsigned int num = *num_iovec;
2318 if (use_persistent) {
2319 if (oparms->reconnect)
2320 return add_durable_reconnect_v2_context(iov, num_iovec,
2323 return add_durable_v2_context(iov, num_iovec, oparms);
2326 if (oparms->reconnect) {
2327 iov[num].iov_base = create_reconnect_durable_buf(oparms->fid);
2328 /* indicate that we don't need to relock the file */
2329 oparms->reconnect = false;
2331 iov[num].iov_base = create_durable_buf();
2332 if (iov[num].iov_base == NULL)
2334 iov[num].iov_len = sizeof(struct create_durable);
2335 if (!req->CreateContextsOffset)
2336 req->CreateContextsOffset =
2337 cpu_to_le32(sizeof(struct smb2_create_req) +
2339 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable));
2340 *num_iovec = num + 1;
2344 /* See MS-SMB2 2.2.13.2.7 */
2345 static struct crt_twarp_ctxt *
2346 create_twarp_buf(__u64 timewarp)
2348 struct crt_twarp_ctxt *buf;
2350 buf = kzalloc(sizeof(struct crt_twarp_ctxt), GFP_KERNEL);
2354 buf->ccontext.DataOffset = cpu_to_le16(offsetof
2355 (struct crt_twarp_ctxt, Timestamp));
2356 buf->ccontext.DataLength = cpu_to_le32(8);
2357 buf->ccontext.NameOffset = cpu_to_le16(offsetof
2358 (struct crt_twarp_ctxt, Name));
2359 buf->ccontext.NameLength = cpu_to_le16(4);
2360 /* SMB2_CREATE_TIMEWARP_TOKEN is "TWrp" */
2365 buf->Timestamp = cpu_to_le64(timewarp);
2369 /* See MS-SMB2 2.2.13.2.7 */
2371 add_twarp_context(struct kvec *iov, unsigned int *num_iovec, __u64 timewarp)
2373 struct smb2_create_req *req = iov[0].iov_base;
2374 unsigned int num = *num_iovec;
2376 iov[num].iov_base = create_twarp_buf(timewarp);
2377 if (iov[num].iov_base == NULL)
2379 iov[num].iov_len = sizeof(struct crt_twarp_ctxt);
2380 if (!req->CreateContextsOffset)
2381 req->CreateContextsOffset = cpu_to_le32(
2382 sizeof(struct smb2_create_req) +
2383 iov[num - 1].iov_len);
2384 le32_add_cpu(&req->CreateContextsLength, sizeof(struct crt_twarp_ctxt));
2385 *num_iovec = num + 1;
2389 /* See See http://technet.microsoft.com/en-us/library/hh509017(v=ws.10).aspx */
2390 static void setup_owner_group_sids(char *buf)
2392 struct owner_group_sids *sids = (struct owner_group_sids *)buf;
2394 /* Populate the user ownership fields S-1-5-88-1 */
2395 sids->owner.Revision = 1;
2396 sids->owner.NumAuth = 3;
2397 sids->owner.Authority[5] = 5;
2398 sids->owner.SubAuthorities[0] = cpu_to_le32(88);
2399 sids->owner.SubAuthorities[1] = cpu_to_le32(1);
2400 sids->owner.SubAuthorities[2] = cpu_to_le32(current_fsuid().val);
2402 /* Populate the group ownership fields S-1-5-88-2 */
2403 sids->group.Revision = 1;
2404 sids->group.NumAuth = 3;
2405 sids->group.Authority[5] = 5;
2406 sids->group.SubAuthorities[0] = cpu_to_le32(88);
2407 sids->group.SubAuthorities[1] = cpu_to_le32(2);
2408 sids->group.SubAuthorities[2] = cpu_to_le32(current_fsgid().val);
2410 cifs_dbg(FYI, "owner S-1-5-88-1-%d, group S-1-5-88-2-%d\n", current_fsuid().val, current_fsgid().val);
2413 /* See MS-SMB2 2.2.13.2.2 and MS-DTYP 2.4.6 */
2414 static struct crt_sd_ctxt *
2415 create_sd_buf(umode_t mode, bool set_owner, unsigned int *len)
2417 struct crt_sd_ctxt *buf;
2419 unsigned int acelen, acl_size, ace_count;
2420 unsigned int owner_offset = 0;
2421 unsigned int group_offset = 0;
2422 struct smb3_acl acl = {};
2424 *len = round_up(sizeof(struct crt_sd_ctxt) + (sizeof(struct cifs_ace) * 4), 8);
2427 /* sizeof(struct owner_group_sids) is already multiple of 8 so no need to round */
2428 *len += sizeof(struct owner_group_sids);
2431 buf = kzalloc(*len, GFP_KERNEL);
2435 ptr = (__u8 *)&buf[1];
2437 /* offset fields are from beginning of security descriptor not of create context */
2438 owner_offset = ptr - (__u8 *)&buf->sd;
2439 buf->sd.OffsetOwner = cpu_to_le32(owner_offset);
2440 group_offset = owner_offset + offsetof(struct owner_group_sids, group);
2441 buf->sd.OffsetGroup = cpu_to_le32(group_offset);
2443 setup_owner_group_sids(ptr);
2444 ptr += sizeof(struct owner_group_sids);
2446 buf->sd.OffsetOwner = 0;
2447 buf->sd.OffsetGroup = 0;
2450 buf->ccontext.DataOffset = cpu_to_le16(offsetof(struct crt_sd_ctxt, sd));
2451 buf->ccontext.NameOffset = cpu_to_le16(offsetof(struct crt_sd_ctxt, Name));
2452 buf->ccontext.NameLength = cpu_to_le16(4);
2453 /* SMB2_CREATE_SD_BUFFER_TOKEN is "SecD" */
2458 buf->sd.Revision = 1; /* Must be one see MS-DTYP 2.4.6 */
2461 * ACL is "self relative" ie ACL is stored in contiguous block of memory
2462 * and "DP" ie the DACL is present
2464 buf->sd.Control = cpu_to_le16(ACL_CONTROL_SR | ACL_CONTROL_DP);
2466 /* offset owner, group and Sbz1 and SACL are all zero */
2467 buf->sd.OffsetDacl = cpu_to_le32(ptr - (__u8 *)&buf->sd);
2468 /* Ship the ACL for now. we will copy it into buf later. */
2470 ptr += sizeof(struct smb3_acl);
2472 /* create one ACE to hold the mode embedded in reserved special SID */
2473 acelen = setup_special_mode_ACE((struct cifs_ace *)ptr, (__u64)mode);
2475 acl_size = acelen + sizeof(struct smb3_acl);
2479 /* we do not need to reallocate buffer to add the two more ACEs. plenty of space */
2480 acelen = setup_special_user_owner_ACE((struct cifs_ace *)ptr);
2486 /* and one more ACE to allow access for authenticated users */
2487 acelen = setup_authusers_ACE((struct cifs_ace *)ptr);
2492 acl.AclRevision = ACL_REVISION; /* See 2.4.4.1 of MS-DTYP */
2493 acl.AclSize = cpu_to_le16(acl_size);
2494 acl.AceCount = cpu_to_le16(ace_count);
2495 /* acl.Sbz1 and Sbz2 MBZ so are not set here, but initialized above */
2496 memcpy(aclptr, &acl, sizeof(struct smb3_acl));
2498 buf->ccontext.DataLength = cpu_to_le32(ptr - (__u8 *)&buf->sd);
2499 *len = round_up((unsigned int)(ptr - (__u8 *)buf), 8);
2505 add_sd_context(struct kvec *iov, unsigned int *num_iovec, umode_t mode, bool set_owner)
2507 struct smb2_create_req *req = iov[0].iov_base;
2508 unsigned int num = *num_iovec;
2509 unsigned int len = 0;
2511 iov[num].iov_base = create_sd_buf(mode, set_owner, &len);
2512 if (iov[num].iov_base == NULL)
2514 iov[num].iov_len = len;
2515 if (!req->CreateContextsOffset)
2516 req->CreateContextsOffset = cpu_to_le32(
2517 sizeof(struct smb2_create_req) +
2518 iov[num - 1].iov_len);
2519 le32_add_cpu(&req->CreateContextsLength, len);
2520 *num_iovec = num + 1;
2524 static struct crt_query_id_ctxt *
2525 create_query_id_buf(void)
2527 struct crt_query_id_ctxt *buf;
2529 buf = kzalloc(sizeof(struct crt_query_id_ctxt), GFP_KERNEL);
2533 buf->ccontext.DataOffset = cpu_to_le16(0);
2534 buf->ccontext.DataLength = cpu_to_le32(0);
2535 buf->ccontext.NameOffset = cpu_to_le16(offsetof
2536 (struct crt_query_id_ctxt, Name));
2537 buf->ccontext.NameLength = cpu_to_le16(4);
2538 /* SMB2_CREATE_QUERY_ON_DISK_ID is "QFid" */
2546 /* See MS-SMB2 2.2.13.2.9 */
2548 add_query_id_context(struct kvec *iov, unsigned int *num_iovec)
2550 struct smb2_create_req *req = iov[0].iov_base;
2551 unsigned int num = *num_iovec;
2553 iov[num].iov_base = create_query_id_buf();
2554 if (iov[num].iov_base == NULL)
2556 iov[num].iov_len = sizeof(struct crt_query_id_ctxt);
2557 if (!req->CreateContextsOffset)
2558 req->CreateContextsOffset = cpu_to_le32(
2559 sizeof(struct smb2_create_req) +
2560 iov[num - 1].iov_len);
2561 le32_add_cpu(&req->CreateContextsLength, sizeof(struct crt_query_id_ctxt));
2562 *num_iovec = num + 1;
2567 alloc_path_with_tree_prefix(__le16 **out_path, int *out_size, int *out_len,
2568 const char *treename, const __le16 *path)
2570 int treename_len, path_len;
2571 struct nls_table *cp;
2572 const __le16 sep[] = {cpu_to_le16('\\'), cpu_to_le16(0x0000)};
2577 treename_len = strlen(treename);
2578 if (treename_len < 2 || !(treename[0] == '\\' && treename[1] == '\\'))
2584 path_len = UniStrnlen((wchar_t *)path, PATH_MAX);
2586 /* make room for one path separator only if @path isn't empty */
2587 *out_len = treename_len + (path[0] ? 1 : 0) + path_len;
2590 * final path needs to be 8-byte aligned as specified in
2591 * MS-SMB2 2.2.13 SMB2 CREATE Request.
2593 *out_size = round_up(*out_len * sizeof(__le16), 8);
2594 *out_path = kzalloc(*out_size + sizeof(__le16) /* null */, GFP_KERNEL);
2598 cp = load_nls_default();
2599 cifs_strtoUTF16(*out_path, treename, treename_len, cp);
2601 /* Do not append the separator if the path is empty */
2602 if (path[0] != cpu_to_le16(0x0000)) {
2603 UniStrcat(*out_path, sep);
2604 UniStrcat(*out_path, path);
2612 int smb311_posix_mkdir(const unsigned int xid, struct inode *inode,
2613 umode_t mode, struct cifs_tcon *tcon,
2614 const char *full_path,
2615 struct cifs_sb_info *cifs_sb)
2617 struct smb_rqst rqst;
2618 struct smb2_create_req *req;
2619 struct smb2_create_rsp *rsp = NULL;
2620 struct cifs_ses *ses = tcon->ses;
2621 struct kvec iov[3]; /* make sure at least one for each open context */
2622 struct kvec rsp_iov = {NULL, 0};
2625 __le16 *copy_path = NULL;
2628 unsigned int n_iov = 2;
2629 __u32 file_attributes = 0;
2630 char *pc_buf = NULL;
2632 unsigned int total_len;
2633 __le16 *utf16_path = NULL;
2634 struct TCP_Server_Info *server = cifs_pick_channel(ses);
2636 cifs_dbg(FYI, "mkdir\n");
2638 /* resource #1: path allocation */
2639 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb);
2643 if (!ses || !server) {
2648 /* resource #2: request */
2649 rc = smb2_plain_req_init(SMB2_CREATE, tcon, server,
2650 (void **) &req, &total_len);
2655 if (smb3_encryption_required(tcon))
2656 flags |= CIFS_TRANSFORM_REQ;
2658 req->ImpersonationLevel = IL_IMPERSONATION;
2659 req->DesiredAccess = cpu_to_le32(FILE_WRITE_ATTRIBUTES);
2660 /* File attributes ignored on open (used in create though) */
2661 req->FileAttributes = cpu_to_le32(file_attributes);
2662 req->ShareAccess = FILE_SHARE_ALL_LE;
2663 req->CreateDisposition = cpu_to_le32(FILE_CREATE);
2664 req->CreateOptions = cpu_to_le32(CREATE_NOT_FILE);
2666 iov[0].iov_base = (char *)req;
2667 /* -1 since last byte is buf[0] which is sent below (path) */
2668 iov[0].iov_len = total_len - 1;
2670 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req));
2672 /* [MS-SMB2] 2.2.13 NameOffset:
2673 * If SMB2_FLAGS_DFS_OPERATIONS is set in the Flags field of
2674 * the SMB2 header, the file name includes a prefix that will
2675 * be processed during DFS name normalization as specified in
2676 * section 3.3.5.9. Otherwise, the file name is relative to
2677 * the share that is identified by the TreeId in the SMB2
2680 if (tcon->share_flags & SHI1005_FLAGS_DFS) {
2683 req->hdr.Flags |= SMB2_FLAGS_DFS_OPERATIONS;
2684 rc = alloc_path_with_tree_prefix(©_path, ©_size,
2686 tcon->tree_name, utf16_path);
2690 req->NameLength = cpu_to_le16(name_len * 2);
2691 uni_path_len = copy_size;
2692 /* free before overwriting resource */
2694 utf16_path = copy_path;
2696 uni_path_len = (2 * UniStrnlen((wchar_t *)utf16_path, PATH_MAX)) + 2;
2697 /* MUST set path len (NameLength) to 0 opening root of share */
2698 req->NameLength = cpu_to_le16(uni_path_len - 2);
2699 if (uni_path_len % 8 != 0) {
2700 copy_size = roundup(uni_path_len, 8);
2701 copy_path = kzalloc(copy_size, GFP_KERNEL);
2706 memcpy((char *)copy_path, (const char *)utf16_path,
2708 uni_path_len = copy_size;
2709 /* free before overwriting resource */
2711 utf16_path = copy_path;
2715 iov[1].iov_len = uni_path_len;
2716 iov[1].iov_base = utf16_path;
2717 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_NONE;
2719 if (tcon->posix_extensions) {
2720 /* resource #3: posix buf */
2721 rc = add_posix_context(iov, &n_iov, mode);
2724 pc_buf = iov[n_iov-1].iov_base;
2728 memset(&rqst, 0, sizeof(struct smb_rqst));
2730 rqst.rq_nvec = n_iov;
2732 /* no need to inc num_remote_opens because we close it just below */
2733 trace_smb3_posix_mkdir_enter(xid, tcon->tid, ses->Suid, CREATE_NOT_FILE,
2734 FILE_WRITE_ATTRIBUTES);
2735 /* resource #4: response buffer */
2736 rc = cifs_send_recv(xid, ses, server,
2737 &rqst, &resp_buftype, flags, &rsp_iov);
2739 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
2740 trace_smb3_posix_mkdir_err(xid, tcon->tid, ses->Suid,
2742 FILE_WRITE_ATTRIBUTES, rc);
2743 goto err_free_rsp_buf;
2747 * Although unlikely to be possible for rsp to be null and rc not set,
2748 * adding check below is slightly safer long term (and quiets Coverity
2751 rsp = (struct smb2_create_rsp *)rsp_iov.iov_base;
2758 trace_smb3_posix_mkdir_done(xid, rsp->PersistentFileId, tcon->tid, ses->Suid,
2759 CREATE_NOT_FILE, FILE_WRITE_ATTRIBUTES);
2761 SMB2_close(xid, tcon, rsp->PersistentFileId, rsp->VolatileFileId);
2763 /* Eventually save off posix specific response info and timestaps */
2766 free_rsp_buf(resp_buftype, rsp);
2769 cifs_small_buf_release(req);
2776 SMB2_open_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server,
2777 struct smb_rqst *rqst, __u8 *oplock,
2778 struct cifs_open_parms *oparms, __le16 *path)
2780 struct smb2_create_req *req;
2781 unsigned int n_iov = 2;
2782 __u32 file_attributes = 0;
2785 unsigned int total_len;
2786 struct kvec *iov = rqst->rq_iov;
2790 rc = smb2_plain_req_init(SMB2_CREATE, tcon, server,
2791 (void **) &req, &total_len);
2795 iov[0].iov_base = (char *)req;
2796 /* -1 since last byte is buf[0] which is sent below (path) */
2797 iov[0].iov_len = total_len - 1;
2799 if (oparms->create_options & CREATE_OPTION_READONLY)
2800 file_attributes |= ATTR_READONLY;
2801 if (oparms->create_options & CREATE_OPTION_SPECIAL)
2802 file_attributes |= ATTR_SYSTEM;
2804 req->ImpersonationLevel = IL_IMPERSONATION;
2805 req->DesiredAccess = cpu_to_le32(oparms->desired_access);
2806 /* File attributes ignored on open (used in create though) */
2807 req->FileAttributes = cpu_to_le32(file_attributes);
2808 req->ShareAccess = FILE_SHARE_ALL_LE;
2810 req->CreateDisposition = cpu_to_le32(oparms->disposition);
2811 req->CreateOptions = cpu_to_le32(oparms->create_options & CREATE_OPTIONS_MASK);
2812 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req));
2814 /* [MS-SMB2] 2.2.13 NameOffset:
2815 * If SMB2_FLAGS_DFS_OPERATIONS is set in the Flags field of
2816 * the SMB2 header, the file name includes a prefix that will
2817 * be processed during DFS name normalization as specified in
2818 * section 3.3.5.9. Otherwise, the file name is relative to
2819 * the share that is identified by the TreeId in the SMB2
2822 if (tcon->share_flags & SHI1005_FLAGS_DFS) {
2825 req->hdr.Flags |= SMB2_FLAGS_DFS_OPERATIONS;
2826 rc = alloc_path_with_tree_prefix(©_path, ©_size,
2828 tcon->tree_name, path);
2831 req->NameLength = cpu_to_le16(name_len * 2);
2832 uni_path_len = copy_size;
2835 uni_path_len = (2 * UniStrnlen((wchar_t *)path, PATH_MAX)) + 2;
2836 /* MUST set path len (NameLength) to 0 opening root of share */
2837 req->NameLength = cpu_to_le16(uni_path_len - 2);
2838 copy_size = round_up(uni_path_len, 8);
2839 copy_path = kzalloc(copy_size, GFP_KERNEL);
2842 memcpy((char *)copy_path, (const char *)path,
2844 uni_path_len = copy_size;
2848 iov[1].iov_len = uni_path_len;
2849 iov[1].iov_base = path;
2851 if ((!server->oplocks) || (tcon->no_lease))
2852 *oplock = SMB2_OPLOCK_LEVEL_NONE;
2854 if (!(server->capabilities & SMB2_GLOBAL_CAP_LEASING) ||
2855 *oplock == SMB2_OPLOCK_LEVEL_NONE)
2856 req->RequestedOplockLevel = *oplock;
2857 else if (!(server->capabilities & SMB2_GLOBAL_CAP_DIRECTORY_LEASING) &&
2858 (oparms->create_options & CREATE_NOT_FILE))
2859 req->RequestedOplockLevel = *oplock; /* no srv lease support */
2861 rc = add_lease_context(server, iov, &n_iov,
2862 oparms->fid->lease_key, oplock);
2867 if (*oplock == SMB2_OPLOCK_LEVEL_BATCH) {
2868 /* need to set Next field of lease context if we request it */
2869 if (server->capabilities & SMB2_GLOBAL_CAP_LEASING) {
2870 struct create_context *ccontext =
2871 (struct create_context *)iov[n_iov-1].iov_base;
2873 cpu_to_le32(server->vals->create_lease_size);
2876 rc = add_durable_context(iov, &n_iov, oparms,
2877 tcon->use_persistent);
2882 if (tcon->posix_extensions) {
2884 struct create_context *ccontext =
2885 (struct create_context *)iov[n_iov-1].iov_base;
2887 cpu_to_le32(iov[n_iov-1].iov_len);
2890 rc = add_posix_context(iov, &n_iov, oparms->mode);
2895 if (tcon->snapshot_time) {
2896 cifs_dbg(FYI, "adding snapshot context\n");
2898 struct create_context *ccontext =
2899 (struct create_context *)iov[n_iov-1].iov_base;
2901 cpu_to_le32(iov[n_iov-1].iov_len);
2904 rc = add_twarp_context(iov, &n_iov, tcon->snapshot_time);
2909 if ((oparms->disposition != FILE_OPEN) && (oparms->cifs_sb)) {
2913 if ((oparms->cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MODE_FROM_SID) &&
2914 (oparms->mode != ACL_NO_MODE))
2918 oparms->mode = ACL_NO_MODE;
2921 if (oparms->cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UID_FROM_ACL)
2926 if (set_owner | set_mode) {
2928 struct create_context *ccontext =
2929 (struct create_context *)iov[n_iov-1].iov_base;
2930 ccontext->Next = cpu_to_le32(iov[n_iov-1].iov_len);
2933 cifs_dbg(FYI, "add sd with mode 0x%x\n", oparms->mode);
2934 rc = add_sd_context(iov, &n_iov, oparms->mode, set_owner);
2941 struct create_context *ccontext =
2942 (struct create_context *)iov[n_iov-1].iov_base;
2943 ccontext->Next = cpu_to_le32(iov[n_iov-1].iov_len);
2945 add_query_id_context(iov, &n_iov);
2947 rqst->rq_nvec = n_iov;
2951 /* rq_iov[0] is the request and is released by cifs_small_buf_release().
2952 * All other vectors are freed by kfree().
2955 SMB2_open_free(struct smb_rqst *rqst)
2959 if (rqst && rqst->rq_iov) {
2960 cifs_small_buf_release(rqst->rq_iov[0].iov_base);
2961 for (i = 1; i < rqst->rq_nvec; i++)
2962 if (rqst->rq_iov[i].iov_base != smb2_padding)
2963 kfree(rqst->rq_iov[i].iov_base);
2968 SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, __le16 *path,
2969 __u8 *oplock, struct smb2_file_all_info *buf,
2970 struct create_posix_rsp *posix,
2971 struct kvec *err_iov, int *buftype)
2973 struct smb_rqst rqst;
2974 struct smb2_create_rsp *rsp = NULL;
2975 struct cifs_tcon *tcon = oparms->tcon;
2976 struct cifs_ses *ses = tcon->ses;
2977 struct TCP_Server_Info *server = cifs_pick_channel(ses);
2978 struct kvec iov[SMB2_CREATE_IOV_SIZE];
2979 struct kvec rsp_iov = {NULL, 0};
2980 int resp_buftype = CIFS_NO_BUFFER;
2984 cifs_dbg(FYI, "create/open\n");
2985 if (!ses || !server)
2988 if (smb3_encryption_required(tcon))
2989 flags |= CIFS_TRANSFORM_REQ;
2991 memset(&rqst, 0, sizeof(struct smb_rqst));
2992 memset(&iov, 0, sizeof(iov));
2994 rqst.rq_nvec = SMB2_CREATE_IOV_SIZE;
2996 rc = SMB2_open_init(tcon, server,
2997 &rqst, oplock, oparms, path);
3001 trace_smb3_open_enter(xid, tcon->tid, tcon->ses->Suid,
3002 oparms->create_options, oparms->desired_access);
3004 rc = cifs_send_recv(xid, ses, server,
3005 &rqst, &resp_buftype, flags,
3007 rsp = (struct smb2_create_rsp *)rsp_iov.iov_base;
3010 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
3011 if (err_iov && rsp) {
3013 *buftype = resp_buftype;
3014 resp_buftype = CIFS_NO_BUFFER;
3017 trace_smb3_open_err(xid, tcon->tid, ses->Suid,
3018 oparms->create_options, oparms->desired_access, rc);
3019 if (rc == -EREMCHG) {
3020 pr_warn_once("server share %s deleted\n",
3022 tcon->need_reconnect = true;
3025 } else if (rsp == NULL) /* unlikely to happen, but safer to check */
3028 trace_smb3_open_done(xid, rsp->PersistentFileId, tcon->tid, ses->Suid,
3029 oparms->create_options, oparms->desired_access);
3031 atomic_inc(&tcon->num_remote_opens);
3032 oparms->fid->persistent_fid = rsp->PersistentFileId;
3033 oparms->fid->volatile_fid = rsp->VolatileFileId;
3034 oparms->fid->access = oparms->desired_access;
3035 #ifdef CONFIG_CIFS_DEBUG2
3036 oparms->fid->mid = le64_to_cpu(rsp->hdr.MessageId);
3037 #endif /* CIFS_DEBUG2 */
3040 buf->CreationTime = rsp->CreationTime;
3041 buf->LastAccessTime = rsp->LastAccessTime;
3042 buf->LastWriteTime = rsp->LastWriteTime;
3043 buf->ChangeTime = rsp->ChangeTime;
3044 buf->AllocationSize = rsp->AllocationSize;
3045 buf->EndOfFile = rsp->EndofFile;
3046 buf->Attributes = rsp->FileAttributes;
3047 buf->NumberOfLinks = cpu_to_le32(1);
3048 buf->DeletePending = 0;
3052 smb2_parse_contexts(server, rsp, &oparms->fid->epoch,
3053 oparms->fid->lease_key, oplock, buf, posix);
3055 SMB2_open_free(&rqst);
3056 free_rsp_buf(resp_buftype, rsp);
3061 SMB2_ioctl_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server,
3062 struct smb_rqst *rqst,
3063 u64 persistent_fid, u64 volatile_fid, u32 opcode,
3064 char *in_data, u32 indatalen,
3065 __u32 max_response_size)
3067 struct smb2_ioctl_req *req;
3068 struct kvec *iov = rqst->rq_iov;
3069 unsigned int total_len;
3073 rc = smb2_ioctl_req_init(opcode, tcon, server,
3074 (void **) &req, &total_len);
3080 * indatalen is usually small at a couple of bytes max, so
3081 * just allocate through generic pool
3083 in_data_buf = kmemdup(in_data, indatalen, GFP_NOFS);
3085 cifs_small_buf_release(req);
3090 req->CtlCode = cpu_to_le32(opcode);
3091 req->PersistentFileId = persistent_fid;
3092 req->VolatileFileId = volatile_fid;
3094 iov[0].iov_base = (char *)req;
3096 * If no input data, the size of ioctl struct in
3097 * protocol spec still includes a 1 byte data buffer,
3098 * but if input data passed to ioctl, we do not
3099 * want to double count this, so we do not send
3100 * the dummy one byte of data in iovec[0] if sending
3101 * input data (in iovec[1]).
3104 req->InputCount = cpu_to_le32(indatalen);
3105 /* do not set InputOffset if no input data */
3107 cpu_to_le32(offsetof(struct smb2_ioctl_req, Buffer));
3109 iov[0].iov_len = total_len - 1;
3110 iov[1].iov_base = in_data_buf;
3111 iov[1].iov_len = indatalen;
3114 iov[0].iov_len = total_len;
3117 req->OutputOffset = 0;
3118 req->OutputCount = 0; /* MBZ */
3121 * In most cases max_response_size is set to 16K (CIFSMaxBufSize)
3122 * We Could increase default MaxOutputResponse, but that could require
3123 * more credits. Windows typically sets this smaller, but for some
3124 * ioctls it may be useful to allow server to send more. No point
3125 * limiting what the server can send as long as fits in one credit
3126 * We can not handle more than CIFS_MAX_BUF_SIZE yet but may want
3127 * to increase this limit up in the future.
3128 * Note that for snapshot queries that servers like Azure expect that
3129 * the first query be minimal size (and just used to get the number/size
3130 * of previous versions) so response size must be specified as EXACTLY
3131 * sizeof(struct snapshot_array) which is 16 when rounded up to multiple
3132 * of eight bytes. Currently that is the only case where we set max
3133 * response size smaller.
3135 req->MaxOutputResponse = cpu_to_le32(max_response_size);
3136 req->hdr.CreditCharge =
3137 cpu_to_le16(DIV_ROUND_UP(max(indatalen, max_response_size),
3138 SMB2_MAX_BUFFER_SIZE));
3139 /* always an FSCTL (for now) */
3140 req->Flags = cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL);
3142 /* validate negotiate request must be signed - see MS-SMB2 3.2.5.5 */
3143 if (opcode == FSCTL_VALIDATE_NEGOTIATE_INFO)
3144 req->hdr.Flags |= SMB2_FLAGS_SIGNED;
3150 SMB2_ioctl_free(struct smb_rqst *rqst)
3153 if (rqst && rqst->rq_iov) {
3154 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
3155 for (i = 1; i < rqst->rq_nvec; i++)
3156 if (rqst->rq_iov[i].iov_base != smb2_padding)
3157 kfree(rqst->rq_iov[i].iov_base);
3163 * SMB2 IOCTL is used for both IOCTLs and FSCTLs
3166 SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
3167 u64 volatile_fid, u32 opcode, char *in_data, u32 indatalen,
3168 u32 max_out_data_len, char **out_data,
3169 u32 *plen /* returned data len */)
3171 struct smb_rqst rqst;
3172 struct smb2_ioctl_rsp *rsp = NULL;
3173 struct cifs_ses *ses;
3174 struct TCP_Server_Info *server;
3175 struct kvec iov[SMB2_IOCTL_IOV_SIZE];
3176 struct kvec rsp_iov = {NULL, 0};
3177 int resp_buftype = CIFS_NO_BUFFER;
3181 cifs_dbg(FYI, "SMB2 IOCTL\n");
3183 if (out_data != NULL)
3186 /* zero out returned data len, in case of error */
3197 server = cifs_pick_channel(ses);
3201 if (smb3_encryption_required(tcon))
3202 flags |= CIFS_TRANSFORM_REQ;
3204 memset(&rqst, 0, sizeof(struct smb_rqst));
3205 memset(&iov, 0, sizeof(iov));
3207 rqst.rq_nvec = SMB2_IOCTL_IOV_SIZE;
3209 rc = SMB2_ioctl_init(tcon, server,
3210 &rqst, persistent_fid, volatile_fid, opcode,
3211 in_data, indatalen, max_out_data_len);
3215 rc = cifs_send_recv(xid, ses, server,
3216 &rqst, &resp_buftype, flags,
3218 rsp = (struct smb2_ioctl_rsp *)rsp_iov.iov_base;
3221 trace_smb3_fsctl_err(xid, persistent_fid, tcon->tid,
3222 ses->Suid, 0, opcode, rc);
3224 if ((rc != 0) && (rc != -EINVAL) && (rc != -E2BIG)) {
3225 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
3227 } else if (rc == -EINVAL) {
3228 if ((opcode != FSCTL_SRV_COPYCHUNK_WRITE) &&
3229 (opcode != FSCTL_SRV_COPYCHUNK)) {
3230 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
3233 } else if (rc == -E2BIG) {
3234 if (opcode != FSCTL_QUERY_ALLOCATED_RANGES) {
3235 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
3240 /* check if caller wants to look at return data or just return rc */
3241 if ((plen == NULL) || (out_data == NULL))
3245 * Although unlikely to be possible for rsp to be null and rc not set,
3246 * adding check below is slightly safer long term (and quiets Coverity
3254 *plen = le32_to_cpu(rsp->OutputCount);
3256 /* We check for obvious errors in the output buffer length and offset */
3258 goto ioctl_exit; /* server returned no data */
3259 else if (*plen > rsp_iov.iov_len || *plen > 0xFF00) {
3260 cifs_tcon_dbg(VFS, "srv returned invalid ioctl length: %d\n", *plen);
3266 if (rsp_iov.iov_len - *plen < le32_to_cpu(rsp->OutputOffset)) {
3267 cifs_tcon_dbg(VFS, "Malformed ioctl resp: len %d offset %d\n", *plen,
3268 le32_to_cpu(rsp->OutputOffset));
3274 *out_data = kmemdup((char *)rsp + le32_to_cpu(rsp->OutputOffset),
3276 if (*out_data == NULL) {
3282 SMB2_ioctl_free(&rqst);
3283 free_rsp_buf(resp_buftype, rsp);
3288 * Individual callers to ioctl worker function follow
3292 SMB2_set_compression(const unsigned int xid, struct cifs_tcon *tcon,
3293 u64 persistent_fid, u64 volatile_fid)
3296 struct compress_ioctl fsctl_input;
3297 char *ret_data = NULL;
3299 fsctl_input.CompressionState =
3300 cpu_to_le16(COMPRESSION_FORMAT_DEFAULT);
3302 rc = SMB2_ioctl(xid, tcon, persistent_fid, volatile_fid,
3303 FSCTL_SET_COMPRESSION,
3304 (char *)&fsctl_input /* data input */,
3305 2 /* in data len */, CIFSMaxBufSize /* max out data */,
3306 &ret_data /* out data */, NULL);
3308 cifs_dbg(FYI, "set compression rc %d\n", rc);
3314 SMB2_close_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server,
3315 struct smb_rqst *rqst,
3316 u64 persistent_fid, u64 volatile_fid, bool query_attrs)
3318 struct smb2_close_req *req;
3319 struct kvec *iov = rqst->rq_iov;
3320 unsigned int total_len;
3323 rc = smb2_plain_req_init(SMB2_CLOSE, tcon, server,
3324 (void **) &req, &total_len);
3328 req->PersistentFileId = persistent_fid;
3329 req->VolatileFileId = volatile_fid;
3331 req->Flags = SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB;
3334 iov[0].iov_base = (char *)req;
3335 iov[0].iov_len = total_len;
3341 SMB2_close_free(struct smb_rqst *rqst)
3343 if (rqst && rqst->rq_iov)
3344 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
3348 __SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
3349 u64 persistent_fid, u64 volatile_fid,
3350 struct smb2_file_network_open_info *pbuf)
3352 struct smb_rqst rqst;
3353 struct smb2_close_rsp *rsp = NULL;
3354 struct cifs_ses *ses = tcon->ses;
3355 struct TCP_Server_Info *server = cifs_pick_channel(ses);
3357 struct kvec rsp_iov;
3358 int resp_buftype = CIFS_NO_BUFFER;
3361 bool query_attrs = false;
3363 cifs_dbg(FYI, "Close\n");
3365 if (!ses || !server)
3368 if (smb3_encryption_required(tcon))
3369 flags |= CIFS_TRANSFORM_REQ;
3371 memset(&rqst, 0, sizeof(struct smb_rqst));
3372 memset(&iov, 0, sizeof(iov));
3376 /* check if need to ask server to return timestamps in close response */
3380 trace_smb3_close_enter(xid, persistent_fid, tcon->tid, ses->Suid);
3381 rc = SMB2_close_init(tcon, server,
3382 &rqst, persistent_fid, volatile_fid,
3387 rc = cifs_send_recv(xid, ses, server,
3388 &rqst, &resp_buftype, flags, &rsp_iov);
3389 rsp = (struct smb2_close_rsp *)rsp_iov.iov_base;
3392 cifs_stats_fail_inc(tcon, SMB2_CLOSE_HE);
3393 trace_smb3_close_err(xid, persistent_fid, tcon->tid, ses->Suid,
3397 trace_smb3_close_done(xid, persistent_fid, tcon->tid,
3400 * Note that have to subtract 4 since struct network_open_info
3401 * has a final 4 byte pad that close response does not have
3404 memcpy(pbuf, (char *)&rsp->CreationTime, sizeof(*pbuf) - 4);
3407 atomic_dec(&tcon->num_remote_opens);
3409 SMB2_close_free(&rqst);
3410 free_rsp_buf(resp_buftype, rsp);
3412 /* retry close in a worker thread if this one is interrupted */
3413 if (is_interrupt_error(rc)) {
3416 tmp_rc = smb2_handle_cancelled_close(tcon, persistent_fid,
3419 cifs_dbg(VFS, "handle cancelled close fid 0x%llx returned error %d\n",
3420 persistent_fid, tmp_rc);
3426 SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
3427 u64 persistent_fid, u64 volatile_fid)
3429 return __SMB2_close(xid, tcon, persistent_fid, volatile_fid, NULL);
3433 smb2_validate_iov(unsigned int offset, unsigned int buffer_length,
3434 struct kvec *iov, unsigned int min_buf_size)
3436 unsigned int smb_len = iov->iov_len;
3437 char *end_of_smb = smb_len + (char *)iov->iov_base;
3438 char *begin_of_buf = offset + (char *)iov->iov_base;
3439 char *end_of_buf = begin_of_buf + buffer_length;
3442 if (buffer_length < min_buf_size) {
3443 cifs_dbg(VFS, "buffer length %d smaller than minimum size %d\n",
3444 buffer_length, min_buf_size);
3448 /* check if beyond RFC1001 maximum length */
3449 if ((smb_len > 0x7FFFFF) || (buffer_length > 0x7FFFFF)) {
3450 cifs_dbg(VFS, "buffer length %d or smb length %d too large\n",
3451 buffer_length, smb_len);
3455 if ((begin_of_buf > end_of_smb) || (end_of_buf > end_of_smb)) {
3456 cifs_dbg(VFS, "Invalid server response, bad offset to data\n");
3464 * If SMB buffer fields are valid, copy into temporary buffer to hold result.
3465 * Caller must free buffer.
3468 smb2_validate_and_copy_iov(unsigned int offset, unsigned int buffer_length,
3469 struct kvec *iov, unsigned int minbufsize,
3472 char *begin_of_buf = offset + (char *)iov->iov_base;
3478 rc = smb2_validate_iov(offset, buffer_length, iov, minbufsize);
3482 memcpy(data, begin_of_buf, minbufsize);
3488 SMB2_query_info_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server,
3489 struct smb_rqst *rqst,
3490 u64 persistent_fid, u64 volatile_fid,
3491 u8 info_class, u8 info_type, u32 additional_info,
3492 size_t output_len, size_t input_len, void *input)
3494 struct smb2_query_info_req *req;
3495 struct kvec *iov = rqst->rq_iov;
3496 unsigned int total_len;
3499 rc = smb2_plain_req_init(SMB2_QUERY_INFO, tcon, server,
3500 (void **) &req, &total_len);
3504 req->InfoType = info_type;
3505 req->FileInfoClass = info_class;
3506 req->PersistentFileId = persistent_fid;
3507 req->VolatileFileId = volatile_fid;
3508 req->AdditionalInformation = cpu_to_le32(additional_info);
3510 req->OutputBufferLength = cpu_to_le32(output_len);
3512 req->InputBufferLength = cpu_to_le32(input_len);
3513 /* total_len for smb query request never close to le16 max */
3514 req->InputBufferOffset = cpu_to_le16(total_len - 1);
3515 memcpy(req->Buffer, input, input_len);
3518 iov[0].iov_base = (char *)req;
3520 iov[0].iov_len = total_len - 1 + input_len;
3525 SMB2_query_info_free(struct smb_rqst *rqst)
3527 if (rqst && rqst->rq_iov)
3528 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
3532 query_info(const unsigned int xid, struct cifs_tcon *tcon,
3533 u64 persistent_fid, u64 volatile_fid, u8 info_class, u8 info_type,
3534 u32 additional_info, size_t output_len, size_t min_len, void **data,
3537 struct smb_rqst rqst;
3538 struct smb2_query_info_rsp *rsp = NULL;
3540 struct kvec rsp_iov;
3542 int resp_buftype = CIFS_NO_BUFFER;
3543 struct cifs_ses *ses = tcon->ses;
3544 struct TCP_Server_Info *server;
3546 bool allocated = false;
3548 cifs_dbg(FYI, "Query Info\n");
3552 server = cifs_pick_channel(ses);
3556 if (smb3_encryption_required(tcon))
3557 flags |= CIFS_TRANSFORM_REQ;
3559 memset(&rqst, 0, sizeof(struct smb_rqst));
3560 memset(&iov, 0, sizeof(iov));
3564 rc = SMB2_query_info_init(tcon, server,
3565 &rqst, persistent_fid, volatile_fid,
3566 info_class, info_type, additional_info,
3567 output_len, 0, NULL);
3571 trace_smb3_query_info_enter(xid, persistent_fid, tcon->tid,
3572 ses->Suid, info_class, (__u32)info_type);
3574 rc = cifs_send_recv(xid, ses, server,
3575 &rqst, &resp_buftype, flags, &rsp_iov);
3576 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
3579 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
3580 trace_smb3_query_info_err(xid, persistent_fid, tcon->tid,
3581 ses->Suid, info_class, (__u32)info_type, rc);
3585 trace_smb3_query_info_done(xid, persistent_fid, tcon->tid,
3586 ses->Suid, info_class, (__u32)info_type);
3589 *dlen = le32_to_cpu(rsp->OutputBufferLength);
3591 *data = kmalloc(*dlen, GFP_KERNEL);
3594 "Error %d allocating memory for acl\n",
3604 rc = smb2_validate_and_copy_iov(le16_to_cpu(rsp->OutputBufferOffset),
3605 le32_to_cpu(rsp->OutputBufferLength),
3606 &rsp_iov, dlen ? *dlen : min_len, *data);
3607 if (rc && allocated) {
3614 SMB2_query_info_free(&rqst);
3615 free_rsp_buf(resp_buftype, rsp);
3619 int SMB2_query_info(const unsigned int xid, struct cifs_tcon *tcon,
3620 u64 persistent_fid, u64 volatile_fid, struct smb2_file_all_info *data)
3622 return query_info(xid, tcon, persistent_fid, volatile_fid,
3623 FILE_ALL_INFORMATION, SMB2_O_INFO_FILE, 0,
3624 sizeof(struct smb2_file_all_info) + PATH_MAX * 2,
3625 sizeof(struct smb2_file_all_info), (void **)&data,
3630 /* currently unused, as now we are doing compounding instead (see smb311_posix_query_path_info) */
3632 SMB311_posix_query_info(const unsigned int xid, struct cifs_tcon *tcon,
3633 u64 persistent_fid, u64 volatile_fid, struct smb311_posix_qinfo *data, u32 *plen)
3635 size_t output_len = sizeof(struct smb311_posix_qinfo *) +
3636 (sizeof(struct cifs_sid) * 2) + (PATH_MAX * 2);
3639 return query_info(xid, tcon, persistent_fid, volatile_fid,
3640 SMB_FIND_FILE_POSIX_INFO, SMB2_O_INFO_FILE, 0,
3641 output_len, sizeof(struct smb311_posix_qinfo), (void **)&data, plen);
3642 /* Note caller must free "data" (passed in above). It may be allocated in query_info call */
3647 SMB2_query_acl(const unsigned int xid, struct cifs_tcon *tcon,
3648 u64 persistent_fid, u64 volatile_fid,
3649 void **data, u32 *plen, u32 extra_info)
3651 __u32 additional_info = OWNER_SECINFO | GROUP_SECINFO | DACL_SECINFO |
3655 return query_info(xid, tcon, persistent_fid, volatile_fid,
3656 0, SMB2_O_INFO_SECURITY, additional_info,
3657 SMB2_MAX_BUFFER_SIZE, MIN_SEC_DESC_LEN, data, plen);
3661 SMB2_get_srv_num(const unsigned int xid, struct cifs_tcon *tcon,
3662 u64 persistent_fid, u64 volatile_fid, __le64 *uniqueid)
3664 return query_info(xid, tcon, persistent_fid, volatile_fid,
3665 FILE_INTERNAL_INFORMATION, SMB2_O_INFO_FILE, 0,
3666 sizeof(struct smb2_file_internal_info),
3667 sizeof(struct smb2_file_internal_info),
3668 (void **)&uniqueid, NULL);
3672 * CHANGE_NOTIFY Request is sent to get notifications on changes to a directory
3673 * See MS-SMB2 2.2.35 and 2.2.36
3677 SMB2_notify_init(const unsigned int xid, struct smb_rqst *rqst,
3678 struct cifs_tcon *tcon, struct TCP_Server_Info *server,
3679 u64 persistent_fid, u64 volatile_fid,
3680 u32 completion_filter, bool watch_tree)
3682 struct smb2_change_notify_req *req;
3683 struct kvec *iov = rqst->rq_iov;
3684 unsigned int total_len;
3687 rc = smb2_plain_req_init(SMB2_CHANGE_NOTIFY, tcon, server,
3688 (void **) &req, &total_len);
3692 req->PersistentFileId = persistent_fid;
3693 req->VolatileFileId = volatile_fid;
3694 /* See note 354 of MS-SMB2, 64K max */
3695 req->OutputBufferLength =
3696 cpu_to_le32(SMB2_MAX_BUFFER_SIZE - MAX_SMB2_HDR_SIZE);
3697 req->CompletionFilter = cpu_to_le32(completion_filter);
3699 req->Flags = cpu_to_le16(SMB2_WATCH_TREE);
3703 iov[0].iov_base = (char *)req;
3704 iov[0].iov_len = total_len;
3710 SMB2_change_notify(const unsigned int xid, struct cifs_tcon *tcon,
3711 u64 persistent_fid, u64 volatile_fid, bool watch_tree,
3712 u32 completion_filter, u32 max_out_data_len, char **out_data,
3713 u32 *plen /* returned data len */)
3715 struct cifs_ses *ses = tcon->ses;
3716 struct TCP_Server_Info *server = cifs_pick_channel(ses);
3717 struct smb_rqst rqst;
3718 struct smb2_change_notify_rsp *smb_rsp;
3720 struct kvec rsp_iov = {NULL, 0};
3721 int resp_buftype = CIFS_NO_BUFFER;
3725 cifs_dbg(FYI, "change notify\n");
3726 if (!ses || !server)
3729 if (smb3_encryption_required(tcon))
3730 flags |= CIFS_TRANSFORM_REQ;
3732 memset(&rqst, 0, sizeof(struct smb_rqst));
3733 memset(&iov, 0, sizeof(iov));
3740 rc = SMB2_notify_init(xid, &rqst, tcon, server,
3741 persistent_fid, volatile_fid,
3742 completion_filter, watch_tree);
3746 trace_smb3_notify_enter(xid, persistent_fid, tcon->tid, ses->Suid,
3747 (u8)watch_tree, completion_filter);
3748 rc = cifs_send_recv(xid, ses, server,
3749 &rqst, &resp_buftype, flags, &rsp_iov);
3752 cifs_stats_fail_inc(tcon, SMB2_CHANGE_NOTIFY_HE);
3753 trace_smb3_notify_err(xid, persistent_fid, tcon->tid, ses->Suid,
3754 (u8)watch_tree, completion_filter, rc);
3756 trace_smb3_notify_done(xid, persistent_fid, tcon->tid,
3757 ses->Suid, (u8)watch_tree, completion_filter);
3758 /* validate that notify information is plausible */
3759 if ((rsp_iov.iov_base == NULL) ||
3760 (rsp_iov.iov_len < sizeof(struct smb2_change_notify_rsp)))
3763 smb_rsp = (struct smb2_change_notify_rsp *)rsp_iov.iov_base;
3765 smb2_validate_iov(le16_to_cpu(smb_rsp->OutputBufferOffset),
3766 le32_to_cpu(smb_rsp->OutputBufferLength), &rsp_iov,
3767 sizeof(struct file_notify_information));
3769 *out_data = kmemdup((char *)smb_rsp + le16_to_cpu(smb_rsp->OutputBufferOffset),
3770 le32_to_cpu(smb_rsp->OutputBufferLength), GFP_KERNEL);
3771 if (*out_data == NULL) {
3775 *plen = le32_to_cpu(smb_rsp->OutputBufferLength);
3780 cifs_small_buf_release(rqst.rq_iov[0].iov_base); /* request */
3781 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
3788 * This is a no-op for now. We're not really interested in the reply, but
3789 * rather in the fact that the server sent one and that server->lstrp
3792 * FIXME: maybe we should consider checking that the reply matches request?
3795 smb2_echo_callback(struct mid_q_entry *mid)
3797 struct TCP_Server_Info *server = mid->callback_data;
3798 struct smb2_echo_rsp *rsp = (struct smb2_echo_rsp *)mid->resp_buf;
3799 struct cifs_credits credits = { .value = 0, .instance = 0 };
3801 if (mid->mid_state == MID_RESPONSE_RECEIVED
3802 || mid->mid_state == MID_RESPONSE_MALFORMED) {
3803 credits.value = le16_to_cpu(rsp->hdr.CreditRequest);
3804 credits.instance = server->reconnect_instance;
3808 add_credits(server, &credits, CIFS_ECHO_OP);
3811 void smb2_reconnect_server(struct work_struct *work)
3813 struct TCP_Server_Info *server = container_of(work,
3814 struct TCP_Server_Info, reconnect.work);
3815 struct TCP_Server_Info *pserver;
3816 struct cifs_ses *ses, *ses2;
3817 struct cifs_tcon *tcon, *tcon2;
3818 struct list_head tmp_list, tmp_ses_list;
3819 bool tcon_exist = false, ses_exist = false;
3820 bool tcon_selected = false;
3822 bool resched = false;
3824 /* If server is a channel, select the primary channel */
3825 pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server;
3827 /* Prevent simultaneous reconnects that can corrupt tcon->rlist list */
3828 mutex_lock(&pserver->reconnect_mutex);
3830 INIT_LIST_HEAD(&tmp_list);
3831 INIT_LIST_HEAD(&tmp_ses_list);
3832 cifs_dbg(FYI, "Reconnecting tcons and channels\n");
3834 spin_lock(&cifs_tcp_ses_lock);
3835 list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) {
3837 tcon_selected = false;
3839 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
3840 if (tcon->need_reconnect || tcon->need_reopen_files) {
3842 list_add_tail(&tcon->rlist, &tmp_list);
3843 tcon_selected = tcon_exist = true;
3847 * IPC has the same lifetime as its session and uses its
3850 if (ses->tcon_ipc && ses->tcon_ipc->need_reconnect) {
3851 list_add_tail(&ses->tcon_ipc->rlist, &tmp_list);
3852 tcon_selected = tcon_exist = true;
3856 * handle the case where channel needs to reconnect
3857 * binding session, but tcon is healthy (some other channel
3860 spin_lock(&ses->chan_lock);
3861 if (!tcon_selected && cifs_chan_needs_reconnect(ses, server)) {
3862 list_add_tail(&ses->rlist, &tmp_ses_list);
3866 spin_unlock(&ses->chan_lock);
3869 * Get the reference to server struct to be sure that the last call of
3870 * cifs_put_tcon() in the loop below won't release the server pointer.
3872 if (tcon_exist || ses_exist)
3873 server->srv_count++;
3875 spin_unlock(&cifs_tcp_ses_lock);
3877 list_for_each_entry_safe(tcon, tcon2, &tmp_list, rlist) {
3878 rc = smb2_reconnect(SMB2_INTERNAL_CMD, tcon, server);
3880 cifs_reopen_persistent_handles(tcon);
3883 list_del_init(&tcon->rlist);
3885 cifs_put_smb_ses(tcon->ses);
3887 cifs_put_tcon(tcon);
3893 /* allocate a dummy tcon struct used for reconnect */
3894 tcon = kzalloc(sizeof(struct cifs_tcon), GFP_KERNEL);
3897 list_for_each_entry_safe(ses, ses2, &tmp_ses_list, rlist) {
3898 list_del_init(&ses->rlist);
3899 cifs_put_smb_ses(ses);
3904 tcon->status = TID_GOOD;
3905 tcon->retry = false;
3906 tcon->need_reconnect = false;
3908 /* now reconnect sessions for necessary channels */
3909 list_for_each_entry_safe(ses, ses2, &tmp_ses_list, rlist) {
3911 rc = smb2_reconnect(SMB2_INTERNAL_CMD, tcon, server);
3914 list_del_init(&ses->rlist);
3915 cifs_put_smb_ses(ses);
3920 cifs_dbg(FYI, "Reconnecting tcons and channels finished\n");
3922 queue_delayed_work(cifsiod_wq, &server->reconnect, 2 * HZ);
3923 mutex_unlock(&pserver->reconnect_mutex);
3925 /* now we can safely release srv struct */
3926 if (tcon_exist || ses_exist)
3927 cifs_put_tcp_session(server, 1);
3931 SMB2_echo(struct TCP_Server_Info *server)
3933 struct smb2_echo_req *req;
3936 struct smb_rqst rqst = { .rq_iov = iov,
3938 unsigned int total_len;
3940 cifs_dbg(FYI, "In echo request for conn_id %lld\n", server->conn_id);
3942 spin_lock(&server->srv_lock);
3943 if (server->ops->need_neg &&
3944 server->ops->need_neg(server)) {
3945 spin_unlock(&server->srv_lock);
3946 /* No need to send echo on newly established connections */
3947 mod_delayed_work(cifsiod_wq, &server->reconnect, 0);
3950 spin_unlock(&server->srv_lock);
3952 rc = smb2_plain_req_init(SMB2_ECHO, NULL, server,
3953 (void **)&req, &total_len);
3957 req->hdr.CreditRequest = cpu_to_le16(1);
3959 iov[0].iov_len = total_len;
3960 iov[0].iov_base = (char *)req;
3962 rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, NULL,
3963 server, CIFS_ECHO_OP, NULL);
3965 cifs_dbg(FYI, "Echo request failed: %d\n", rc);
3967 cifs_small_buf_release(req);
3972 SMB2_flush_free(struct smb_rqst *rqst)
3974 if (rqst && rqst->rq_iov)
3975 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
3979 SMB2_flush_init(const unsigned int xid, struct smb_rqst *rqst,
3980 struct cifs_tcon *tcon, struct TCP_Server_Info *server,
3981 u64 persistent_fid, u64 volatile_fid)
3983 struct smb2_flush_req *req;
3984 struct kvec *iov = rqst->rq_iov;
3985 unsigned int total_len;
3988 rc = smb2_plain_req_init(SMB2_FLUSH, tcon, server,
3989 (void **) &req, &total_len);
3993 req->PersistentFileId = persistent_fid;
3994 req->VolatileFileId = volatile_fid;
3996 iov[0].iov_base = (char *)req;
3997 iov[0].iov_len = total_len;
4003 SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
4006 struct cifs_ses *ses = tcon->ses;
4007 struct smb_rqst rqst;
4009 struct kvec rsp_iov = {NULL, 0};
4010 struct TCP_Server_Info *server = cifs_pick_channel(ses);
4011 int resp_buftype = CIFS_NO_BUFFER;
4015 cifs_dbg(FYI, "flush\n");
4016 if (!ses || !(ses->server))
4019 if (smb3_encryption_required(tcon))
4020 flags |= CIFS_TRANSFORM_REQ;
4022 memset(&rqst, 0, sizeof(struct smb_rqst));
4023 memset(&iov, 0, sizeof(iov));
4027 rc = SMB2_flush_init(xid, &rqst, tcon, server,
4028 persistent_fid, volatile_fid);
4032 trace_smb3_flush_enter(xid, persistent_fid, tcon->tid, ses->Suid);
4033 rc = cifs_send_recv(xid, ses, server,
4034 &rqst, &resp_buftype, flags, &rsp_iov);
4037 cifs_stats_fail_inc(tcon, SMB2_FLUSH_HE);
4038 trace_smb3_flush_err(xid, persistent_fid, tcon->tid, ses->Suid,
4041 trace_smb3_flush_done(xid, persistent_fid, tcon->tid,
4045 SMB2_flush_free(&rqst);
4046 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
4051 * To form a chain of read requests, any read requests after the first should
4052 * have the end_of_chain boolean set to true.
4055 smb2_new_read_req(void **buf, unsigned int *total_len,
4056 struct cifs_io_parms *io_parms, struct cifs_readdata *rdata,
4057 unsigned int remaining_bytes, int request_type)
4060 struct smb2_read_req *req = NULL;
4061 struct smb2_hdr *shdr;
4062 struct TCP_Server_Info *server = io_parms->server;
4064 rc = smb2_plain_req_init(SMB2_READ, io_parms->tcon, server,
4065 (void **) &req, total_len);
4070 return -ECONNABORTED;
4073 shdr->Id.SyncId.ProcessId = cpu_to_le32(io_parms->pid);
4075 req->PersistentFileId = io_parms->persistent_fid;
4076 req->VolatileFileId = io_parms->volatile_fid;
4077 req->ReadChannelInfoOffset = 0; /* reserved */
4078 req->ReadChannelInfoLength = 0; /* reserved */
4079 req->Channel = 0; /* reserved */
4080 req->MinimumCount = 0;
4081 req->Length = cpu_to_le32(io_parms->length);
4082 req->Offset = cpu_to_le64(io_parms->offset);
4084 trace_smb3_read_enter(0 /* xid */,
4085 io_parms->persistent_fid,
4086 io_parms->tcon->tid, io_parms->tcon->ses->Suid,
4087 io_parms->offset, io_parms->length);
4088 #ifdef CONFIG_CIFS_SMB_DIRECT
4090 * If we want to do a RDMA write, fill in and append
4091 * smbd_buffer_descriptor_v1 to the end of read request
4093 if (server->rdma && rdata && !server->sign &&
4094 rdata->bytes >= server->smbd_conn->rdma_readwrite_threshold) {
4096 struct smbd_buffer_descriptor_v1 *v1;
4097 bool need_invalidate = server->dialect == SMB30_PROT_ID;
4099 rdata->mr = smbd_register_mr(
4100 server->smbd_conn, rdata->pages,
4101 rdata->nr_pages, rdata->page_offset,
4102 rdata->tailsz, true, need_invalidate);
4106 req->Channel = SMB2_CHANNEL_RDMA_V1_INVALIDATE;
4107 if (need_invalidate)
4108 req->Channel = SMB2_CHANNEL_RDMA_V1;
4109 req->ReadChannelInfoOffset =
4110 cpu_to_le16(offsetof(struct smb2_read_req, Buffer));
4111 req->ReadChannelInfoLength =
4112 cpu_to_le16(sizeof(struct smbd_buffer_descriptor_v1));
4113 v1 = (struct smbd_buffer_descriptor_v1 *) &req->Buffer[0];
4114 v1->offset = cpu_to_le64(rdata->mr->mr->iova);
4115 v1->token = cpu_to_le32(rdata->mr->mr->rkey);
4116 v1->length = cpu_to_le32(rdata->mr->mr->length);
4118 *total_len += sizeof(*v1) - 1;
4121 if (request_type & CHAINED_REQUEST) {
4122 if (!(request_type & END_OF_CHAIN)) {
4123 /* next 8-byte aligned request */
4124 *total_len = ALIGN(*total_len, 8);
4125 shdr->NextCommand = cpu_to_le32(*total_len);
4126 } else /* END_OF_CHAIN */
4127 shdr->NextCommand = 0;
4128 if (request_type & RELATED_REQUEST) {
4129 shdr->Flags |= SMB2_FLAGS_RELATED_OPERATIONS;
4131 * Related requests use info from previous read request
4134 shdr->SessionId = cpu_to_le64(0xFFFFFFFFFFFFFFFF);
4135 shdr->Id.SyncId.TreeId = cpu_to_le32(0xFFFFFFFF);
4136 req->PersistentFileId = (u64)-1;
4137 req->VolatileFileId = (u64)-1;
4140 if (remaining_bytes > io_parms->length)
4141 req->RemainingBytes = cpu_to_le32(remaining_bytes);
4143 req->RemainingBytes = 0;
4150 smb2_readv_callback(struct mid_q_entry *mid)
4152 struct cifs_readdata *rdata = mid->callback_data;
4153 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
4154 struct TCP_Server_Info *server = rdata->server;
4155 struct smb2_hdr *shdr =
4156 (struct smb2_hdr *)rdata->iov[0].iov_base;
4157 struct cifs_credits credits = { .value = 0, .instance = 0 };
4158 struct smb_rqst rqst = { .rq_iov = &rdata->iov[1],
4160 .rq_pages = rdata->pages,
4161 .rq_offset = rdata->page_offset,
4162 .rq_npages = rdata->nr_pages,
4163 .rq_pagesz = rdata->pagesz,
4164 .rq_tailsz = rdata->tailsz };
4166 WARN_ONCE(rdata->server != mid->server,
4167 "rdata server %p != mid server %p",
4168 rdata->server, mid->server);
4170 cifs_dbg(FYI, "%s: mid=%llu state=%d result=%d bytes=%u\n",
4171 __func__, mid->mid, mid->mid_state, rdata->result,
4174 switch (mid->mid_state) {
4175 case MID_RESPONSE_RECEIVED:
4176 credits.value = le16_to_cpu(shdr->CreditRequest);
4177 credits.instance = server->reconnect_instance;
4178 /* result already set, check signature */
4179 if (server->sign && !mid->decrypted) {
4182 rc = smb2_verify_signature(&rqst, server);
4184 cifs_tcon_dbg(VFS, "SMB signature verification returned error = %d\n",
4187 /* FIXME: should this be counted toward the initiating task? */
4188 task_io_account_read(rdata->got_bytes);
4189 cifs_stats_bytes_read(tcon, rdata->got_bytes);
4191 case MID_REQUEST_SUBMITTED:
4192 case MID_RETRY_NEEDED:
4193 rdata->result = -EAGAIN;
4194 if (server->sign && rdata->got_bytes)
4195 /* reset bytes number since we can not check a sign */
4196 rdata->got_bytes = 0;
4197 /* FIXME: should this be counted toward the initiating task? */
4198 task_io_account_read(rdata->got_bytes);
4199 cifs_stats_bytes_read(tcon, rdata->got_bytes);
4201 case MID_RESPONSE_MALFORMED:
4202 credits.value = le16_to_cpu(shdr->CreditRequest);
4203 credits.instance = server->reconnect_instance;
4206 rdata->result = -EIO;
4208 #ifdef CONFIG_CIFS_SMB_DIRECT
4210 * If this rdata has a memmory registered, the MR can be freed
4211 * MR needs to be freed as soon as I/O finishes to prevent deadlock
4212 * because they have limited number and are used for future I/Os
4215 smbd_deregister_mr(rdata->mr);
4219 if (rdata->result && rdata->result != -ENODATA) {
4220 cifs_stats_fail_inc(tcon, SMB2_READ_HE);
4221 trace_smb3_read_err(0 /* xid */,
4222 rdata->cfile->fid.persistent_fid,
4223 tcon->tid, tcon->ses->Suid, rdata->offset,
4224 rdata->bytes, rdata->result);
4226 trace_smb3_read_done(0 /* xid */,
4227 rdata->cfile->fid.persistent_fid,
4228 tcon->tid, tcon->ses->Suid,
4229 rdata->offset, rdata->got_bytes);
4231 queue_work(cifsiod_wq, &rdata->work);
4233 add_credits(server, &credits, 0);
4236 /* smb2_async_readv - send an async read, and set up mid to handle result */
4238 smb2_async_readv(struct cifs_readdata *rdata)
4242 struct smb2_hdr *shdr;
4243 struct cifs_io_parms io_parms;
4244 struct smb_rqst rqst = { .rq_iov = rdata->iov,
4246 struct TCP_Server_Info *server;
4247 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
4248 unsigned int total_len;
4250 cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n",
4251 __func__, rdata->offset, rdata->bytes);
4254 rdata->server = cifs_pick_channel(tcon->ses);
4256 io_parms.tcon = tlink_tcon(rdata->cfile->tlink);
4257 io_parms.server = server = rdata->server;
4258 io_parms.offset = rdata->offset;
4259 io_parms.length = rdata->bytes;
4260 io_parms.persistent_fid = rdata->cfile->fid.persistent_fid;
4261 io_parms.volatile_fid = rdata->cfile->fid.volatile_fid;
4262 io_parms.pid = rdata->pid;
4264 rc = smb2_new_read_req(
4265 (void **) &buf, &total_len, &io_parms, rdata, 0, 0);
4269 if (smb3_encryption_required(io_parms.tcon))
4270 flags |= CIFS_TRANSFORM_REQ;
4272 rdata->iov[0].iov_base = buf;
4273 rdata->iov[0].iov_len = total_len;
4275 shdr = (struct smb2_hdr *)buf;
4277 if (rdata->credits.value > 0) {
4278 shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(rdata->bytes,
4279 SMB2_MAX_BUFFER_SIZE));
4280 shdr->CreditRequest = cpu_to_le16(le16_to_cpu(shdr->CreditCharge) + 8);
4282 rc = adjust_credits(server, &rdata->credits, rdata->bytes);
4284 goto async_readv_out;
4286 flags |= CIFS_HAS_CREDITS;
4289 kref_get(&rdata->refcount);
4290 rc = cifs_call_async(server, &rqst,
4291 cifs_readv_receive, smb2_readv_callback,
4292 smb3_handle_read_data, rdata, flags,
4295 kref_put(&rdata->refcount, cifs_readdata_release);
4296 cifs_stats_fail_inc(io_parms.tcon, SMB2_READ_HE);
4297 trace_smb3_read_err(0 /* xid */, io_parms.persistent_fid,
4299 io_parms.tcon->ses->Suid,
4300 io_parms.offset, io_parms.length, rc);
4304 cifs_small_buf_release(buf);
4309 SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms,
4310 unsigned int *nbytes, char **buf, int *buf_type)
4312 struct smb_rqst rqst;
4313 int resp_buftype, rc;
4314 struct smb2_read_req *req = NULL;
4315 struct smb2_read_rsp *rsp = NULL;
4317 struct kvec rsp_iov;
4318 unsigned int total_len;
4319 int flags = CIFS_LOG_ERROR;
4320 struct cifs_ses *ses = io_parms->tcon->ses;
4322 if (!io_parms->server)
4323 io_parms->server = cifs_pick_channel(io_parms->tcon->ses);
4326 rc = smb2_new_read_req((void **)&req, &total_len, io_parms, NULL, 0, 0);
4330 if (smb3_encryption_required(io_parms->tcon))
4331 flags |= CIFS_TRANSFORM_REQ;
4333 iov[0].iov_base = (char *)req;
4334 iov[0].iov_len = total_len;
4336 memset(&rqst, 0, sizeof(struct smb_rqst));
4340 rc = cifs_send_recv(xid, ses, io_parms->server,
4341 &rqst, &resp_buftype, flags, &rsp_iov);
4342 rsp = (struct smb2_read_rsp *)rsp_iov.iov_base;
4345 if (rc != -ENODATA) {
4346 cifs_stats_fail_inc(io_parms->tcon, SMB2_READ_HE);
4347 cifs_dbg(VFS, "Send error in read = %d\n", rc);
4348 trace_smb3_read_err(xid,
4349 req->PersistentFileId,
4350 io_parms->tcon->tid, ses->Suid,
4351 io_parms->offset, io_parms->length,
4354 trace_smb3_read_done(xid, req->PersistentFileId, io_parms->tcon->tid,
4355 ses->Suid, io_parms->offset, 0);
4356 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
4357 cifs_small_buf_release(req);
4358 return rc == -ENODATA ? 0 : rc;
4360 trace_smb3_read_done(xid,
4361 req->PersistentFileId,
4362 io_parms->tcon->tid, ses->Suid,
4363 io_parms->offset, io_parms->length);
4365 cifs_small_buf_release(req);
4367 *nbytes = le32_to_cpu(rsp->DataLength);
4368 if ((*nbytes > CIFS_MAX_MSGSIZE) ||
4369 (*nbytes > io_parms->length)) {
4370 cifs_dbg(FYI, "bad length %d for count %d\n",
4371 *nbytes, io_parms->length);
4377 memcpy(*buf, (char *)rsp + rsp->DataOffset, *nbytes);
4378 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
4379 } else if (resp_buftype != CIFS_NO_BUFFER) {
4380 *buf = rsp_iov.iov_base;
4381 if (resp_buftype == CIFS_SMALL_BUFFER)
4382 *buf_type = CIFS_SMALL_BUFFER;
4383 else if (resp_buftype == CIFS_LARGE_BUFFER)
4384 *buf_type = CIFS_LARGE_BUFFER;
4390 * Check the mid_state and signature on received buffer (if any), and queue the
4391 * workqueue completion task.
4394 smb2_writev_callback(struct mid_q_entry *mid)
4396 struct cifs_writedata *wdata = mid->callback_data;
4397 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
4398 struct TCP_Server_Info *server = wdata->server;
4399 unsigned int written;
4400 struct smb2_write_rsp *rsp = (struct smb2_write_rsp *)mid->resp_buf;
4401 struct cifs_credits credits = { .value = 0, .instance = 0 };
4403 WARN_ONCE(wdata->server != mid->server,
4404 "wdata server %p != mid server %p",
4405 wdata->server, mid->server);
4407 switch (mid->mid_state) {
4408 case MID_RESPONSE_RECEIVED:
4409 credits.value = le16_to_cpu(rsp->hdr.CreditRequest);
4410 credits.instance = server->reconnect_instance;
4411 wdata->result = smb2_check_receive(mid, server, 0);
4412 if (wdata->result != 0)
4415 written = le32_to_cpu(rsp->DataLength);
4417 * Mask off high 16 bits when bytes written as returned
4418 * by the server is greater than bytes requested by the
4419 * client. OS/2 servers are known to set incorrect
4422 if (written > wdata->bytes)
4425 if (written < wdata->bytes)
4426 wdata->result = -ENOSPC;
4428 wdata->bytes = written;
4430 case MID_REQUEST_SUBMITTED:
4431 case MID_RETRY_NEEDED:
4432 wdata->result = -EAGAIN;
4434 case MID_RESPONSE_MALFORMED:
4435 credits.value = le16_to_cpu(rsp->hdr.CreditRequest);
4436 credits.instance = server->reconnect_instance;
4439 wdata->result = -EIO;
4442 #ifdef CONFIG_CIFS_SMB_DIRECT
4444 * If this wdata has a memory registered, the MR can be freed
4445 * The number of MRs available is limited, it's important to recover
4446 * used MR as soon as I/O is finished. Hold MR longer in the later
4447 * I/O process can possibly result in I/O deadlock due to lack of MR
4448 * to send request on I/O retry
4451 smbd_deregister_mr(wdata->mr);
4455 if (wdata->result) {
4456 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
4457 trace_smb3_write_err(0 /* no xid */,
4458 wdata->cfile->fid.persistent_fid,
4459 tcon->tid, tcon->ses->Suid, wdata->offset,
4460 wdata->bytes, wdata->result);
4461 if (wdata->result == -ENOSPC)
4462 pr_warn_once("Out of space writing to %s\n",
4465 trace_smb3_write_done(0 /* no xid */,
4466 wdata->cfile->fid.persistent_fid,
4467 tcon->tid, tcon->ses->Suid,
4468 wdata->offset, wdata->bytes);
4470 queue_work(cifsiod_wq, &wdata->work);
4472 add_credits(server, &credits, 0);
4475 /* smb2_async_writev - send an async write, and set up mid to handle result */
4477 smb2_async_writev(struct cifs_writedata *wdata,
4478 void (*release)(struct kref *kref))
4480 int rc = -EACCES, flags = 0;
4481 struct smb2_write_req *req = NULL;
4482 struct smb2_hdr *shdr;
4483 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
4484 struct TCP_Server_Info *server = wdata->server;
4486 struct smb_rqst rqst = { };
4487 unsigned int total_len;
4490 server = wdata->server = cifs_pick_channel(tcon->ses);
4492 rc = smb2_plain_req_init(SMB2_WRITE, tcon, server,
4493 (void **) &req, &total_len);
4497 if (smb3_encryption_required(tcon))
4498 flags |= CIFS_TRANSFORM_REQ;
4500 shdr = (struct smb2_hdr *)req;
4501 shdr->Id.SyncId.ProcessId = cpu_to_le32(wdata->cfile->pid);
4503 req->PersistentFileId = wdata->cfile->fid.persistent_fid;
4504 req->VolatileFileId = wdata->cfile->fid.volatile_fid;
4505 req->WriteChannelInfoOffset = 0;
4506 req->WriteChannelInfoLength = 0;
4508 req->Offset = cpu_to_le64(wdata->offset);
4509 req->DataOffset = cpu_to_le16(
4510 offsetof(struct smb2_write_req, Buffer));
4511 req->RemainingBytes = 0;
4513 trace_smb3_write_enter(0 /* xid */, wdata->cfile->fid.persistent_fid,
4514 tcon->tid, tcon->ses->Suid, wdata->offset, wdata->bytes);
4515 #ifdef CONFIG_CIFS_SMB_DIRECT
4517 * If we want to do a server RDMA read, fill in and append
4518 * smbd_buffer_descriptor_v1 to the end of write request
4520 if (server->rdma && !server->sign && wdata->bytes >=
4521 server->smbd_conn->rdma_readwrite_threshold) {
4523 struct smbd_buffer_descriptor_v1 *v1;
4524 bool need_invalidate = server->dialect == SMB30_PROT_ID;
4526 wdata->mr = smbd_register_mr(
4527 server->smbd_conn, wdata->pages,
4528 wdata->nr_pages, wdata->page_offset,
4529 wdata->tailsz, false, need_invalidate);
4532 goto async_writev_out;
4535 req->DataOffset = 0;
4536 if (wdata->nr_pages > 1)
4537 req->RemainingBytes =
4539 (wdata->nr_pages - 1) * wdata->pagesz -
4540 wdata->page_offset + wdata->tailsz
4543 req->RemainingBytes = cpu_to_le32(wdata->tailsz);
4544 req->Channel = SMB2_CHANNEL_RDMA_V1_INVALIDATE;
4545 if (need_invalidate)
4546 req->Channel = SMB2_CHANNEL_RDMA_V1;
4547 req->WriteChannelInfoOffset =
4548 cpu_to_le16(offsetof(struct smb2_write_req, Buffer));
4549 req->WriteChannelInfoLength =
4550 cpu_to_le16(sizeof(struct smbd_buffer_descriptor_v1));
4551 v1 = (struct smbd_buffer_descriptor_v1 *) &req->Buffer[0];
4552 v1->offset = cpu_to_le64(wdata->mr->mr->iova);
4553 v1->token = cpu_to_le32(wdata->mr->mr->rkey);
4554 v1->length = cpu_to_le32(wdata->mr->mr->length);
4557 iov[0].iov_len = total_len - 1;
4558 iov[0].iov_base = (char *)req;
4562 rqst.rq_pages = wdata->pages;
4563 rqst.rq_offset = wdata->page_offset;
4564 rqst.rq_npages = wdata->nr_pages;
4565 rqst.rq_pagesz = wdata->pagesz;
4566 rqst.rq_tailsz = wdata->tailsz;
4567 #ifdef CONFIG_CIFS_SMB_DIRECT
4569 iov[0].iov_len += sizeof(struct smbd_buffer_descriptor_v1);
4573 cifs_dbg(FYI, "async write at %llu %u bytes\n",
4574 wdata->offset, wdata->bytes);
4576 #ifdef CONFIG_CIFS_SMB_DIRECT
4577 /* For RDMA read, I/O size is in RemainingBytes not in Length */
4579 req->Length = cpu_to_le32(wdata->bytes);
4581 req->Length = cpu_to_le32(wdata->bytes);
4584 if (wdata->credits.value > 0) {
4585 shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(wdata->bytes,
4586 SMB2_MAX_BUFFER_SIZE));
4587 shdr->CreditRequest = cpu_to_le16(le16_to_cpu(shdr->CreditCharge) + 8);
4589 rc = adjust_credits(server, &wdata->credits, wdata->bytes);
4591 goto async_writev_out;
4593 flags |= CIFS_HAS_CREDITS;
4596 kref_get(&wdata->refcount);
4597 rc = cifs_call_async(server, &rqst, NULL, smb2_writev_callback, NULL,
4598 wdata, flags, &wdata->credits);
4601 trace_smb3_write_err(0 /* no xid */,
4602 req->PersistentFileId,
4603 tcon->tid, tcon->ses->Suid, wdata->offset,
4605 kref_put(&wdata->refcount, release);
4606 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
4610 cifs_small_buf_release(req);
4615 * SMB2_write function gets iov pointer to kvec array with n_vec as a length.
4616 * The length field from io_parms must be at least 1 and indicates a number of
4617 * elements with data to write that begins with position 1 in iov array. All
4618 * data length is specified by count.
4621 SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms,
4622 unsigned int *nbytes, struct kvec *iov, int n_vec)
4624 struct smb_rqst rqst;
4626 struct smb2_write_req *req = NULL;
4627 struct smb2_write_rsp *rsp = NULL;
4629 struct kvec rsp_iov;
4631 unsigned int total_len;
4632 struct TCP_Server_Info *server;
4639 if (!io_parms->server)
4640 io_parms->server = cifs_pick_channel(io_parms->tcon->ses);
4641 server = io_parms->server;
4643 return -ECONNABORTED;
4645 rc = smb2_plain_req_init(SMB2_WRITE, io_parms->tcon, server,
4646 (void **) &req, &total_len);
4650 if (smb3_encryption_required(io_parms->tcon))
4651 flags |= CIFS_TRANSFORM_REQ;
4653 req->hdr.Id.SyncId.ProcessId = cpu_to_le32(io_parms->pid);
4655 req->PersistentFileId = io_parms->persistent_fid;
4656 req->VolatileFileId = io_parms->volatile_fid;
4657 req->WriteChannelInfoOffset = 0;
4658 req->WriteChannelInfoLength = 0;
4660 req->Length = cpu_to_le32(io_parms->length);
4661 req->Offset = cpu_to_le64(io_parms->offset);
4662 req->DataOffset = cpu_to_le16(
4663 offsetof(struct smb2_write_req, Buffer));
4664 req->RemainingBytes = 0;
4666 trace_smb3_write_enter(xid, io_parms->persistent_fid,
4667 io_parms->tcon->tid, io_parms->tcon->ses->Suid,
4668 io_parms->offset, io_parms->length);
4670 iov[0].iov_base = (char *)req;
4672 iov[0].iov_len = total_len - 1;
4674 memset(&rqst, 0, sizeof(struct smb_rqst));
4676 rqst.rq_nvec = n_vec + 1;
4678 rc = cifs_send_recv(xid, io_parms->tcon->ses, server,
4680 &resp_buftype, flags, &rsp_iov);
4681 rsp = (struct smb2_write_rsp *)rsp_iov.iov_base;
4684 trace_smb3_write_err(xid,
4685 req->PersistentFileId,
4686 io_parms->tcon->tid,
4687 io_parms->tcon->ses->Suid,
4688 io_parms->offset, io_parms->length, rc);
4689 cifs_stats_fail_inc(io_parms->tcon, SMB2_WRITE_HE);
4690 cifs_dbg(VFS, "Send error in write = %d\n", rc);
4692 *nbytes = le32_to_cpu(rsp->DataLength);
4693 trace_smb3_write_done(xid,
4694 req->PersistentFileId,
4695 io_parms->tcon->tid,
4696 io_parms->tcon->ses->Suid,
4697 io_parms->offset, *nbytes);
4700 cifs_small_buf_release(req);
4701 free_rsp_buf(resp_buftype, rsp);
4705 int posix_info_sid_size(const void *beg, const void *end)
4713 subauth = *(u8 *)(beg+1);
4714 if (subauth < 1 || subauth > 15)
4717 total = 1 + 1 + 6 + 4*subauth;
4718 if (beg + total > end)
4724 int posix_info_parse(const void *beg, const void *end,
4725 struct smb2_posix_info_parsed *out)
4729 int owner_len, group_len;
4731 const void *owner_sid;
4732 const void *group_sid;
4735 /* if no end bound given, assume payload to be correct */
4737 const struct smb2_posix_info *p = beg;
4739 end = beg + le32_to_cpu(p->NextEntryOffset);
4740 /* last element will have a 0 offset, pick a sensible bound */
4745 /* check base buf */
4746 if (beg + sizeof(struct smb2_posix_info) > end)
4748 total_len = sizeof(struct smb2_posix_info);
4750 /* check owner sid */
4751 owner_sid = beg + total_len;
4752 owner_len = posix_info_sid_size(owner_sid, end);
4755 total_len += owner_len;
4757 /* check group sid */
4758 group_sid = beg + total_len;
4759 group_len = posix_info_sid_size(group_sid, end);
4762 total_len += group_len;
4764 /* check name len */
4765 if (beg + total_len + 4 > end)
4767 name_len = le32_to_cpu(*(__le32 *)(beg + total_len));
4768 if (name_len < 1 || name_len > 0xFFFF)
4773 name = beg + total_len;
4774 if (name + name_len > end)
4776 total_len += name_len;
4780 out->size = total_len;
4781 out->name_len = name_len;
4783 memcpy(&out->owner, owner_sid, owner_len);
4784 memcpy(&out->group, group_sid, group_len);
4789 static int posix_info_extra_size(const void *beg, const void *end)
4791 int len = posix_info_parse(beg, end, NULL);
4795 return len - sizeof(struct smb2_posix_info);
4799 num_entries(int infotype, char *bufstart, char *end_of_buf, char **lastentry,
4803 unsigned int entrycount = 0;
4804 unsigned int next_offset = 0;
4806 FILE_DIRECTORY_INFO *dir_info;
4808 if (bufstart == NULL)
4811 entryptr = bufstart;
4814 if (entryptr + next_offset < entryptr ||
4815 entryptr + next_offset > end_of_buf ||
4816 entryptr + next_offset + size > end_of_buf) {
4817 cifs_dbg(VFS, "malformed search entry would overflow\n");
4821 entryptr = entryptr + next_offset;
4822 dir_info = (FILE_DIRECTORY_INFO *)entryptr;
4824 if (infotype == SMB_FIND_FILE_POSIX_INFO)
4825 len = posix_info_extra_size(entryptr, end_of_buf);
4827 len = le32_to_cpu(dir_info->FileNameLength);
4830 entryptr + len < entryptr ||
4831 entryptr + len > end_of_buf ||
4832 entryptr + len + size > end_of_buf) {
4833 cifs_dbg(VFS, "directory entry name would overflow frame end of buf %p\n",
4838 *lastentry = entryptr;
4841 next_offset = le32_to_cpu(dir_info->NextEntryOffset);
4852 int SMB2_query_directory_init(const unsigned int xid,
4853 struct cifs_tcon *tcon,
4854 struct TCP_Server_Info *server,
4855 struct smb_rqst *rqst,
4856 u64 persistent_fid, u64 volatile_fid,
4857 int index, int info_level)
4859 struct smb2_query_directory_req *req;
4860 unsigned char *bufptr;
4861 __le16 asteriks = cpu_to_le16('*');
4862 unsigned int output_size = CIFSMaxBufSize -
4863 MAX_SMB2_CREATE_RESPONSE_SIZE -
4864 MAX_SMB2_CLOSE_RESPONSE_SIZE;
4865 unsigned int total_len;
4866 struct kvec *iov = rqst->rq_iov;
4869 rc = smb2_plain_req_init(SMB2_QUERY_DIRECTORY, tcon, server,
4870 (void **) &req, &total_len);
4874 switch (info_level) {
4875 case SMB_FIND_FILE_DIRECTORY_INFO:
4876 req->FileInformationClass = FILE_DIRECTORY_INFORMATION;
4878 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
4879 req->FileInformationClass = FILEID_FULL_DIRECTORY_INFORMATION;
4881 case SMB_FIND_FILE_POSIX_INFO:
4882 req->FileInformationClass = SMB_FIND_FILE_POSIX_INFO;
4885 cifs_tcon_dbg(VFS, "info level %u isn't supported\n",
4890 req->FileIndex = cpu_to_le32(index);
4891 req->PersistentFileId = persistent_fid;
4892 req->VolatileFileId = volatile_fid;
4895 bufptr = req->Buffer;
4896 memcpy(bufptr, &asteriks, len);
4898 req->FileNameOffset =
4899 cpu_to_le16(sizeof(struct smb2_query_directory_req) - 1);
4900 req->FileNameLength = cpu_to_le16(len);
4902 * BB could be 30 bytes or so longer if we used SMB2 specific
4903 * buffer lengths, but this is safe and close enough.
4905 output_size = min_t(unsigned int, output_size, server->maxBuf);
4906 output_size = min_t(unsigned int, output_size, 2 << 15);
4907 req->OutputBufferLength = cpu_to_le32(output_size);
4909 iov[0].iov_base = (char *)req;
4911 iov[0].iov_len = total_len - 1;
4913 iov[1].iov_base = (char *)(req->Buffer);
4914 iov[1].iov_len = len;
4916 trace_smb3_query_dir_enter(xid, persistent_fid, tcon->tid,
4917 tcon->ses->Suid, index, output_size);
4922 void SMB2_query_directory_free(struct smb_rqst *rqst)
4924 if (rqst && rqst->rq_iov) {
4925 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
4930 smb2_parse_query_directory(struct cifs_tcon *tcon,
4931 struct kvec *rsp_iov,
4933 struct cifs_search_info *srch_inf)
4935 struct smb2_query_directory_rsp *rsp;
4936 size_t info_buf_size;
4940 rsp = (struct smb2_query_directory_rsp *)rsp_iov->iov_base;
4942 switch (srch_inf->info_level) {
4943 case SMB_FIND_FILE_DIRECTORY_INFO:
4944 info_buf_size = sizeof(FILE_DIRECTORY_INFO) - 1;
4946 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
4947 info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO) - 1;
4949 case SMB_FIND_FILE_POSIX_INFO:
4950 /* note that posix payload are variable size */
4951 info_buf_size = sizeof(struct smb2_posix_info);
4954 cifs_tcon_dbg(VFS, "info level %u isn't supported\n",
4955 srch_inf->info_level);
4959 rc = smb2_validate_iov(le16_to_cpu(rsp->OutputBufferOffset),
4960 le32_to_cpu(rsp->OutputBufferLength), rsp_iov,
4963 cifs_tcon_dbg(VFS, "bad info payload");
4967 srch_inf->unicode = true;
4969 if (srch_inf->ntwrk_buf_start) {
4970 if (srch_inf->smallBuf)
4971 cifs_small_buf_release(srch_inf->ntwrk_buf_start);
4973 cifs_buf_release(srch_inf->ntwrk_buf_start);
4975 srch_inf->ntwrk_buf_start = (char *)rsp;
4976 srch_inf->srch_entries_start = srch_inf->last_entry =
4977 (char *)rsp + le16_to_cpu(rsp->OutputBufferOffset);
4978 end_of_smb = rsp_iov->iov_len + (char *)rsp;
4980 srch_inf->entries_in_buffer = num_entries(
4981 srch_inf->info_level,
4982 srch_inf->srch_entries_start,
4984 &srch_inf->last_entry,
4987 srch_inf->index_of_last_entry += srch_inf->entries_in_buffer;
4988 cifs_dbg(FYI, "num entries %d last_index %lld srch start %p srch end %p\n",
4989 srch_inf->entries_in_buffer, srch_inf->index_of_last_entry,
4990 srch_inf->srch_entries_start, srch_inf->last_entry);
4991 if (resp_buftype == CIFS_LARGE_BUFFER)
4992 srch_inf->smallBuf = false;
4993 else if (resp_buftype == CIFS_SMALL_BUFFER)
4994 srch_inf->smallBuf = true;
4996 cifs_tcon_dbg(VFS, "Invalid search buffer type\n");
5002 SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon,
5003 u64 persistent_fid, u64 volatile_fid, int index,
5004 struct cifs_search_info *srch_inf)
5006 struct smb_rqst rqst;
5007 struct kvec iov[SMB2_QUERY_DIRECTORY_IOV_SIZE];
5008 struct smb2_query_directory_rsp *rsp = NULL;
5009 int resp_buftype = CIFS_NO_BUFFER;
5010 struct kvec rsp_iov;
5012 struct cifs_ses *ses = tcon->ses;
5013 struct TCP_Server_Info *server = cifs_pick_channel(ses);
5016 if (!ses || !(ses->server))
5019 if (smb3_encryption_required(tcon))
5020 flags |= CIFS_TRANSFORM_REQ;
5022 memset(&rqst, 0, sizeof(struct smb_rqst));
5023 memset(&iov, 0, sizeof(iov));
5025 rqst.rq_nvec = SMB2_QUERY_DIRECTORY_IOV_SIZE;
5027 rc = SMB2_query_directory_init(xid, tcon, server,
5028 &rqst, persistent_fid,
5029 volatile_fid, index,
5030 srch_inf->info_level);
5034 rc = cifs_send_recv(xid, ses, server,
5035 &rqst, &resp_buftype, flags, &rsp_iov);
5036 rsp = (struct smb2_query_directory_rsp *)rsp_iov.iov_base;
5039 if (rc == -ENODATA &&
5040 rsp->hdr.Status == STATUS_NO_MORE_FILES) {
5041 trace_smb3_query_dir_done(xid, persistent_fid,
5042 tcon->tid, tcon->ses->Suid, index, 0);
5043 srch_inf->endOfSearch = true;
5046 trace_smb3_query_dir_err(xid, persistent_fid, tcon->tid,
5047 tcon->ses->Suid, index, 0, rc);
5048 cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
5053 rc = smb2_parse_query_directory(tcon, &rsp_iov, resp_buftype,
5056 trace_smb3_query_dir_err(xid, persistent_fid, tcon->tid,
5057 tcon->ses->Suid, index, 0, rc);
5060 resp_buftype = CIFS_NO_BUFFER;
5062 trace_smb3_query_dir_done(xid, persistent_fid, tcon->tid,
5063 tcon->ses->Suid, index, srch_inf->entries_in_buffer);
5066 SMB2_query_directory_free(&rqst);
5067 free_rsp_buf(resp_buftype, rsp);
5072 SMB2_set_info_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server,
5073 struct smb_rqst *rqst,
5074 u64 persistent_fid, u64 volatile_fid, u32 pid,
5075 u8 info_class, u8 info_type, u32 additional_info,
5076 void **data, unsigned int *size)
5078 struct smb2_set_info_req *req;
5079 struct kvec *iov = rqst->rq_iov;
5080 unsigned int i, total_len;
5083 rc = smb2_plain_req_init(SMB2_SET_INFO, tcon, server,
5084 (void **) &req, &total_len);
5088 req->hdr.Id.SyncId.ProcessId = cpu_to_le32(pid);
5089 req->InfoType = info_type;
5090 req->FileInfoClass = info_class;
5091 req->PersistentFileId = persistent_fid;
5092 req->VolatileFileId = volatile_fid;
5093 req->AdditionalInformation = cpu_to_le32(additional_info);
5096 cpu_to_le16(sizeof(struct smb2_set_info_req) - 1);
5097 req->BufferLength = cpu_to_le32(*size);
5099 memcpy(req->Buffer, *data, *size);
5102 iov[0].iov_base = (char *)req;
5104 iov[0].iov_len = total_len - 1;
5106 for (i = 1; i < rqst->rq_nvec; i++) {
5107 le32_add_cpu(&req->BufferLength, size[i]);
5108 iov[i].iov_base = (char *)data[i];
5109 iov[i].iov_len = size[i];
5116 SMB2_set_info_free(struct smb_rqst *rqst)
5118 if (rqst && rqst->rq_iov)
5119 cifs_buf_release(rqst->rq_iov[0].iov_base); /* request */
5123 send_set_info(const unsigned int xid, struct cifs_tcon *tcon,
5124 u64 persistent_fid, u64 volatile_fid, u32 pid, u8 info_class,
5125 u8 info_type, u32 additional_info, unsigned int num,
5126 void **data, unsigned int *size)
5128 struct smb_rqst rqst;
5129 struct smb2_set_info_rsp *rsp = NULL;
5131 struct kvec rsp_iov;
5134 struct cifs_ses *ses = tcon->ses;
5135 struct TCP_Server_Info *server = cifs_pick_channel(ses);
5138 if (!ses || !server)
5144 if (smb3_encryption_required(tcon))
5145 flags |= CIFS_TRANSFORM_REQ;
5147 iov = kmalloc_array(num, sizeof(struct kvec), GFP_KERNEL);
5151 memset(&rqst, 0, sizeof(struct smb_rqst));
5155 rc = SMB2_set_info_init(tcon, server,
5156 &rqst, persistent_fid, volatile_fid, pid,
5157 info_class, info_type, additional_info,
5165 rc = cifs_send_recv(xid, ses, server,
5166 &rqst, &resp_buftype, flags,
5168 SMB2_set_info_free(&rqst);
5169 rsp = (struct smb2_set_info_rsp *)rsp_iov.iov_base;
5172 cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE);
5173 trace_smb3_set_info_err(xid, persistent_fid, tcon->tid,
5174 ses->Suid, info_class, (__u32)info_type, rc);
5177 free_rsp_buf(resp_buftype, rsp);
5183 SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
5184 u64 volatile_fid, u32 pid, __le64 *eof)
5186 struct smb2_file_eof_info info;
5190 info.EndOfFile = *eof;
5193 size = sizeof(struct smb2_file_eof_info);
5195 trace_smb3_set_eof(xid, persistent_fid, tcon->tid, tcon->ses->Suid, le64_to_cpu(*eof));
5197 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
5198 pid, FILE_END_OF_FILE_INFORMATION, SMB2_O_INFO_FILE,
5199 0, 1, &data, &size);
5203 SMB2_set_acl(const unsigned int xid, struct cifs_tcon *tcon,
5204 u64 persistent_fid, u64 volatile_fid,
5205 struct cifs_ntsd *pnntsd, int pacllen, int aclflag)
5207 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
5208 current->tgid, 0, SMB2_O_INFO_SECURITY, aclflag,
5209 1, (void **)&pnntsd, &pacllen);
5213 SMB2_set_ea(const unsigned int xid, struct cifs_tcon *tcon,
5214 u64 persistent_fid, u64 volatile_fid,
5215 struct smb2_file_full_ea_info *buf, int len)
5217 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
5218 current->tgid, FILE_FULL_EA_INFORMATION, SMB2_O_INFO_FILE,
5219 0, 1, (void **)&buf, &len);
5223 SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon,
5224 const u64 persistent_fid, const u64 volatile_fid,
5227 struct smb_rqst rqst;
5229 struct smb2_oplock_break *req = NULL;
5230 struct cifs_ses *ses = tcon->ses;
5231 struct TCP_Server_Info *server = cifs_pick_channel(ses);
5232 int flags = CIFS_OBREAK_OP;
5233 unsigned int total_len;
5235 struct kvec rsp_iov;
5238 cifs_dbg(FYI, "SMB2_oplock_break\n");
5239 rc = smb2_plain_req_init(SMB2_OPLOCK_BREAK, tcon, server,
5240 (void **) &req, &total_len);
5244 if (smb3_encryption_required(tcon))
5245 flags |= CIFS_TRANSFORM_REQ;
5247 req->VolatileFid = volatile_fid;
5248 req->PersistentFid = persistent_fid;
5249 req->OplockLevel = oplock_level;
5250 req->hdr.CreditRequest = cpu_to_le16(1);
5252 flags |= CIFS_NO_RSP_BUF;
5254 iov[0].iov_base = (char *)req;
5255 iov[0].iov_len = total_len;
5257 memset(&rqst, 0, sizeof(struct smb_rqst));
5261 rc = cifs_send_recv(xid, ses, server,
5262 &rqst, &resp_buf_type, flags, &rsp_iov);
5263 cifs_small_buf_release(req);
5266 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
5267 cifs_dbg(FYI, "Send error in Oplock Break = %d\n", rc);
5274 smb2_copy_fs_info_to_kstatfs(struct smb2_fs_full_size_info *pfs_inf,
5275 struct kstatfs *kst)
5277 kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) *
5278 le32_to_cpu(pfs_inf->SectorsPerAllocationUnit);
5279 kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits);
5280 kst->f_bfree = kst->f_bavail =
5281 le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits);
5286 copy_posix_fs_info_to_kstatfs(FILE_SYSTEM_POSIX_INFO *response_data,
5287 struct kstatfs *kst)
5289 kst->f_bsize = le32_to_cpu(response_data->BlockSize);
5290 kst->f_blocks = le64_to_cpu(response_data->TotalBlocks);
5291 kst->f_bfree = le64_to_cpu(response_data->BlocksAvail);
5292 if (response_data->UserBlocksAvail == cpu_to_le64(-1))
5293 kst->f_bavail = kst->f_bfree;
5295 kst->f_bavail = le64_to_cpu(response_data->UserBlocksAvail);
5296 if (response_data->TotalFileNodes != cpu_to_le64(-1))
5297 kst->f_files = le64_to_cpu(response_data->TotalFileNodes);
5298 if (response_data->FreeFileNodes != cpu_to_le64(-1))
5299 kst->f_ffree = le64_to_cpu(response_data->FreeFileNodes);
5305 build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon,
5306 struct TCP_Server_Info *server,
5307 int level, int outbuf_len, u64 persistent_fid,
5311 struct smb2_query_info_req *req;
5312 unsigned int total_len;
5314 cifs_dbg(FYI, "Query FSInfo level %d\n", level);
5316 if ((tcon->ses == NULL) || server == NULL)
5319 rc = smb2_plain_req_init(SMB2_QUERY_INFO, tcon, server,
5320 (void **) &req, &total_len);
5324 req->InfoType = SMB2_O_INFO_FILESYSTEM;
5325 req->FileInfoClass = level;
5326 req->PersistentFileId = persistent_fid;
5327 req->VolatileFileId = volatile_fid;
5329 req->InputBufferOffset =
5330 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1);
5331 req->OutputBufferLength = cpu_to_le32(
5332 outbuf_len + sizeof(struct smb2_query_info_rsp) - 1);
5334 iov->iov_base = (char *)req;
5335 iov->iov_len = total_len;
5340 SMB311_posix_qfs_info(const unsigned int xid, struct cifs_tcon *tcon,
5341 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
5343 struct smb_rqst rqst;
5344 struct smb2_query_info_rsp *rsp = NULL;
5346 struct kvec rsp_iov;
5349 struct cifs_ses *ses = tcon->ses;
5350 struct TCP_Server_Info *server = cifs_pick_channel(ses);
5351 FILE_SYSTEM_POSIX_INFO *info = NULL;
5354 rc = build_qfs_info_req(&iov, tcon, server,
5355 FS_POSIX_INFORMATION,
5356 sizeof(FILE_SYSTEM_POSIX_INFO),
5357 persistent_fid, volatile_fid);
5361 if (smb3_encryption_required(tcon))
5362 flags |= CIFS_TRANSFORM_REQ;
5364 memset(&rqst, 0, sizeof(struct smb_rqst));
5368 rc = cifs_send_recv(xid, ses, server,
5369 &rqst, &resp_buftype, flags, &rsp_iov);
5370 cifs_small_buf_release(iov.iov_base);
5372 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
5373 goto posix_qfsinf_exit;
5375 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
5377 info = (FILE_SYSTEM_POSIX_INFO *)(
5378 le16_to_cpu(rsp->OutputBufferOffset) + (char *)rsp);
5379 rc = smb2_validate_iov(le16_to_cpu(rsp->OutputBufferOffset),
5380 le32_to_cpu(rsp->OutputBufferLength), &rsp_iov,
5381 sizeof(FILE_SYSTEM_POSIX_INFO));
5383 copy_posix_fs_info_to_kstatfs(info, fsdata);
5386 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
5391 SMB2_QFS_info(const unsigned int xid, struct cifs_tcon *tcon,
5392 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
5394 struct smb_rqst rqst;
5395 struct smb2_query_info_rsp *rsp = NULL;
5397 struct kvec rsp_iov;
5400 struct cifs_ses *ses = tcon->ses;
5401 struct TCP_Server_Info *server = cifs_pick_channel(ses);
5402 struct smb2_fs_full_size_info *info = NULL;
5405 rc = build_qfs_info_req(&iov, tcon, server,
5406 FS_FULL_SIZE_INFORMATION,
5407 sizeof(struct smb2_fs_full_size_info),
5408 persistent_fid, volatile_fid);
5412 if (smb3_encryption_required(tcon))
5413 flags |= CIFS_TRANSFORM_REQ;
5415 memset(&rqst, 0, sizeof(struct smb_rqst));
5419 rc = cifs_send_recv(xid, ses, server,
5420 &rqst, &resp_buftype, flags, &rsp_iov);
5421 cifs_small_buf_release(iov.iov_base);
5423 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
5426 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
5428 info = (struct smb2_fs_full_size_info *)(
5429 le16_to_cpu(rsp->OutputBufferOffset) + (char *)rsp);
5430 rc = smb2_validate_iov(le16_to_cpu(rsp->OutputBufferOffset),
5431 le32_to_cpu(rsp->OutputBufferLength), &rsp_iov,
5432 sizeof(struct smb2_fs_full_size_info));
5434 smb2_copy_fs_info_to_kstatfs(info, fsdata);
5437 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
5442 SMB2_QFS_attr(const unsigned int xid, struct cifs_tcon *tcon,
5443 u64 persistent_fid, u64 volatile_fid, int level)
5445 struct smb_rqst rqst;
5446 struct smb2_query_info_rsp *rsp = NULL;
5448 struct kvec rsp_iov;
5450 int resp_buftype, max_len, min_len;
5451 struct cifs_ses *ses = tcon->ses;
5452 struct TCP_Server_Info *server = cifs_pick_channel(ses);
5453 unsigned int rsp_len, offset;
5456 if (level == FS_DEVICE_INFORMATION) {
5457 max_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
5458 min_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
5459 } else if (level == FS_ATTRIBUTE_INFORMATION) {
5460 max_len = sizeof(FILE_SYSTEM_ATTRIBUTE_INFO);
5461 min_len = MIN_FS_ATTR_INFO_SIZE;
5462 } else if (level == FS_SECTOR_SIZE_INFORMATION) {
5463 max_len = sizeof(struct smb3_fs_ss_info);
5464 min_len = sizeof(struct smb3_fs_ss_info);
5465 } else if (level == FS_VOLUME_INFORMATION) {
5466 max_len = sizeof(struct smb3_fs_vol_info) + MAX_VOL_LABEL_LEN;
5467 min_len = sizeof(struct smb3_fs_vol_info);
5469 cifs_dbg(FYI, "Invalid qfsinfo level %d\n", level);
5473 rc = build_qfs_info_req(&iov, tcon, server,
5475 persistent_fid, volatile_fid);
5479 if (smb3_encryption_required(tcon))
5480 flags |= CIFS_TRANSFORM_REQ;
5482 memset(&rqst, 0, sizeof(struct smb_rqst));
5486 rc = cifs_send_recv(xid, ses, server,
5487 &rqst, &resp_buftype, flags, &rsp_iov);
5488 cifs_small_buf_release(iov.iov_base);
5490 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
5493 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
5495 rsp_len = le32_to_cpu(rsp->OutputBufferLength);
5496 offset = le16_to_cpu(rsp->OutputBufferOffset);
5497 rc = smb2_validate_iov(offset, rsp_len, &rsp_iov, min_len);
5501 if (level == FS_ATTRIBUTE_INFORMATION)
5502 memcpy(&tcon->fsAttrInfo, offset
5503 + (char *)rsp, min_t(unsigned int,
5505 else if (level == FS_DEVICE_INFORMATION)
5506 memcpy(&tcon->fsDevInfo, offset
5507 + (char *)rsp, sizeof(FILE_SYSTEM_DEVICE_INFO));
5508 else if (level == FS_SECTOR_SIZE_INFORMATION) {
5509 struct smb3_fs_ss_info *ss_info = (struct smb3_fs_ss_info *)
5510 (offset + (char *)rsp);
5511 tcon->ss_flags = le32_to_cpu(ss_info->Flags);
5512 tcon->perf_sector_size =
5513 le32_to_cpu(ss_info->PhysicalBytesPerSectorForPerf);
5514 } else if (level == FS_VOLUME_INFORMATION) {
5515 struct smb3_fs_vol_info *vol_info = (struct smb3_fs_vol_info *)
5516 (offset + (char *)rsp);
5517 tcon->vol_serial_number = vol_info->VolumeSerialNumber;
5518 tcon->vol_create_time = vol_info->VolumeCreationTime;
5522 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
5527 smb2_lockv(const unsigned int xid, struct cifs_tcon *tcon,
5528 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
5529 const __u32 num_lock, struct smb2_lock_element *buf)
5531 struct smb_rqst rqst;
5533 struct smb2_lock_req *req = NULL;
5535 struct kvec rsp_iov;
5538 int flags = CIFS_NO_RSP_BUF;
5539 unsigned int total_len;
5540 struct TCP_Server_Info *server = cifs_pick_channel(tcon->ses);
5542 cifs_dbg(FYI, "smb2_lockv num lock %d\n", num_lock);
5544 rc = smb2_plain_req_init(SMB2_LOCK, tcon, server,
5545 (void **) &req, &total_len);
5549 if (smb3_encryption_required(tcon))
5550 flags |= CIFS_TRANSFORM_REQ;
5552 req->hdr.Id.SyncId.ProcessId = cpu_to_le32(pid);
5553 req->LockCount = cpu_to_le16(num_lock);
5555 req->PersistentFileId = persist_fid;
5556 req->VolatileFileId = volatile_fid;
5558 count = num_lock * sizeof(struct smb2_lock_element);
5560 iov[0].iov_base = (char *)req;
5561 iov[0].iov_len = total_len - sizeof(struct smb2_lock_element);
5562 iov[1].iov_base = (char *)buf;
5563 iov[1].iov_len = count;
5565 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
5567 memset(&rqst, 0, sizeof(struct smb_rqst));
5571 rc = cifs_send_recv(xid, tcon->ses, server,
5572 &rqst, &resp_buf_type, flags,
5574 cifs_small_buf_release(req);
5576 cifs_dbg(FYI, "Send error in smb2_lockv = %d\n", rc);
5577 cifs_stats_fail_inc(tcon, SMB2_LOCK_HE);
5578 trace_smb3_lock_err(xid, persist_fid, tcon->tid,
5579 tcon->ses->Suid, rc);
5586 SMB2_lock(const unsigned int xid, struct cifs_tcon *tcon,
5587 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
5588 const __u64 length, const __u64 offset, const __u32 lock_flags,
5591 struct smb2_lock_element lock;
5593 lock.Offset = cpu_to_le64(offset);
5594 lock.Length = cpu_to_le64(length);
5595 lock.Flags = cpu_to_le32(lock_flags);
5596 if (!wait && lock_flags != SMB2_LOCKFLAG_UNLOCK)
5597 lock.Flags |= cpu_to_le32(SMB2_LOCKFLAG_FAIL_IMMEDIATELY);
5599 return smb2_lockv(xid, tcon, persist_fid, volatile_fid, pid, 1, &lock);
5603 SMB2_lease_break(const unsigned int xid, struct cifs_tcon *tcon,
5604 __u8 *lease_key, const __le32 lease_state)
5606 struct smb_rqst rqst;
5608 struct smb2_lease_ack *req = NULL;
5609 struct cifs_ses *ses = tcon->ses;
5610 int flags = CIFS_OBREAK_OP;
5611 unsigned int total_len;
5613 struct kvec rsp_iov;
5615 __u64 *please_key_high;
5616 __u64 *please_key_low;
5617 struct TCP_Server_Info *server = cifs_pick_channel(tcon->ses);
5619 cifs_dbg(FYI, "SMB2_lease_break\n");
5620 rc = smb2_plain_req_init(SMB2_OPLOCK_BREAK, tcon, server,
5621 (void **) &req, &total_len);
5625 if (smb3_encryption_required(tcon))
5626 flags |= CIFS_TRANSFORM_REQ;
5628 req->hdr.CreditRequest = cpu_to_le16(1);
5629 req->StructureSize = cpu_to_le16(36);
5632 memcpy(req->LeaseKey, lease_key, 16);
5633 req->LeaseState = lease_state;
5635 flags |= CIFS_NO_RSP_BUF;
5637 iov[0].iov_base = (char *)req;
5638 iov[0].iov_len = total_len;
5640 memset(&rqst, 0, sizeof(struct smb_rqst));
5644 rc = cifs_send_recv(xid, ses, server,
5645 &rqst, &resp_buf_type, flags, &rsp_iov);
5646 cifs_small_buf_release(req);
5648 please_key_low = (__u64 *)lease_key;
5649 please_key_high = (__u64 *)(lease_key+8);
5651 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
5652 trace_smb3_lease_err(le32_to_cpu(lease_state), tcon->tid,
5653 ses->Suid, *please_key_low, *please_key_high, rc);
5654 cifs_dbg(FYI, "Send error in Lease Break = %d\n", rc);
5656 trace_smb3_lease_done(le32_to_cpu(lease_state), tcon->tid,
5657 ses->Suid, *please_key_low, *please_key_high);