1 // SPDX-License-Identifier: LGPL-2.1
4 * Copyright (C) International Business Machines Corp., 2002,2011
10 #include <linux/string.h>
11 #include <linux/sched/mm.h>
12 #include <linux/sched/signal.h>
13 #include <linux/list.h>
14 #include <linux/wait.h>
15 #include <linux/slab.h>
16 #include <linux/pagemap.h>
17 #include <linux/ctype.h>
18 #include <linux/utsname.h>
19 #include <linux/mempool.h>
20 #include <linux/delay.h>
21 #include <linux/completion.h>
22 #include <linux/kthread.h>
23 #include <linux/pagevec.h>
24 #include <linux/freezer.h>
25 #include <linux/namei.h>
26 #include <linux/uuid.h>
27 #include <linux/uaccess.h>
28 #include <asm/processor.h>
29 #include <linux/inet.h>
30 #include <linux/module.h>
31 #include <keys/user-type.h>
33 #include <linux/parser.h>
34 #include <linux/bvec.h>
37 #include "cifsproto.h"
38 #include "cifs_unicode.h"
39 #include "cifs_debug.h"
40 #include "cifs_fs_sb.h"
43 #include "rfc1002pdu.h"
45 #include "smb2proto.h"
46 #include "smbdirect.h"
47 #include "dns_resolve.h"
48 #ifdef CONFIG_CIFS_DFS_UPCALL
49 #include "dfs_cache.h"
51 #include "fs_context.h"
54 extern mempool_t *cifs_req_poolp;
55 extern bool disable_legacy_dialects;
57 /* FIXME: should these be tunable? */
58 #define TLINK_ERROR_EXPIRE (1 * HZ)
59 #define TLINK_IDLE_EXPIRE (600 * HZ)
61 /* Drop the connection to not overload the server */
62 #define NUM_STATUS_IO_TIMEOUT 5
65 struct cifs_sb_info *cifs_sb;
66 struct smb3_fs_context *fs_ctx;
68 struct TCP_Server_Info *server;
70 struct cifs_tcon *tcon;
71 #ifdef CONFIG_CIFS_DFS_UPCALL
72 struct cifs_ses *root_ses;
74 char *origin_fullpath, *leaf_fullpath;
78 static int ip_connect(struct TCP_Server_Info *server);
79 static int generic_ip_connect(struct TCP_Server_Info *server);
80 static void tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink);
81 static void cifs_prune_tlinks(struct work_struct *work);
84 * Resolve hostname and set ip addr in tcp ses. Useful for hostnames that may
85 * get their ip addresses changed at some point.
87 * This should be called with server->srv_mutex held.
89 static int reconn_set_ipaddr_from_hostname(struct TCP_Server_Info *server)
93 char *unc, *ipaddr = NULL;
95 unsigned long ttl = SMB_DNS_RESOLVE_INTERVAL_DEFAULT;
97 if (!server->hostname)
100 len = strlen(server->hostname) + 3;
102 unc = kmalloc(len, GFP_KERNEL);
104 cifs_dbg(FYI, "%s: failed to create UNC path\n", __func__);
107 scnprintf(unc, len, "\\\\%s", server->hostname);
109 rc = dns_resolve_server_name_to_ip(unc, &ipaddr, &expiry);
113 cifs_dbg(FYI, "%s: failed to resolve server part of %s to IP: %d\n",
114 __func__, server->hostname, rc);
115 goto requeue_resolve;
118 spin_lock(&cifs_tcp_ses_lock);
119 rc = cifs_convert_address((struct sockaddr *)&server->dstaddr, ipaddr,
121 spin_unlock(&cifs_tcp_ses_lock);
124 /* rc == 1 means success here */
126 now = ktime_get_real_seconds();
127 if (expiry && expiry > now)
129 * To make sure we don't use the cached entry, retry 1s
132 ttl = max_t(unsigned long, expiry - now, SMB_DNS_RESOLVE_INTERVAL_MIN) + 1;
137 cifs_dbg(FYI, "%s: next dns resolution scheduled for %lu seconds in the future\n",
139 mod_delayed_work(cifsiod_wq, &server->resolve, (ttl * HZ));
145 static void cifs_resolve_server(struct work_struct *work)
148 struct TCP_Server_Info *server = container_of(work,
149 struct TCP_Server_Info, resolve.work);
151 mutex_lock(&server->srv_mutex);
154 * Resolve the hostname again to make sure that IP address is up-to-date.
156 rc = reconn_set_ipaddr_from_hostname(server);
158 cifs_dbg(FYI, "%s: failed to resolve hostname: %d\n",
162 mutex_unlock(&server->srv_mutex);
166 * Update the tcpStatus for the server.
167 * This is used to signal the cifsd thread to call cifs_reconnect
168 * ONLY cifsd thread should call cifs_reconnect. For any other
169 * thread, use this function
171 * @server: the tcp ses for which reconnect is needed
172 * @all_channels: if this needs to be done for all channels
175 cifs_signal_cifsd_for_reconnect(struct TCP_Server_Info *server,
178 struct TCP_Server_Info *pserver;
179 struct cifs_ses *ses;
182 /* If server is a channel, select the primary channel */
183 pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server;
185 spin_lock(&cifs_tcp_ses_lock);
187 pserver->tcpStatus = CifsNeedReconnect;
188 spin_unlock(&cifs_tcp_ses_lock);
192 list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) {
193 spin_lock(&ses->chan_lock);
194 for (i = 0; i < ses->chan_count; i++)
195 ses->chans[i].server->tcpStatus = CifsNeedReconnect;
196 spin_unlock(&ses->chan_lock);
198 spin_unlock(&cifs_tcp_ses_lock);
202 * Mark all sessions and tcons for reconnect.
203 * IMPORTANT: make sure that this gets called only from
204 * cifsd thread. For any other thread, use
205 * cifs_signal_cifsd_for_reconnect
207 * @server: the tcp ses for which reconnect is needed
208 * @server needs to be previously set to CifsNeedReconnect.
209 * @mark_smb_session: whether even sessions need to be marked
212 cifs_mark_tcp_ses_conns_for_reconnect(struct TCP_Server_Info *server,
213 bool mark_smb_session)
215 struct TCP_Server_Info *pserver;
216 struct cifs_ses *ses;
217 struct cifs_tcon *tcon;
220 * before reconnecting the tcp session, mark the smb session (uid) and the tid bad so they
221 * are not used until reconnected.
223 cifs_dbg(FYI, "%s: marking necessary sessions and tcons for reconnect\n", __func__);
225 /* If server is a channel, select the primary channel */
226 pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server;
229 spin_lock(&cifs_tcp_ses_lock);
230 list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) {
231 spin_lock(&ses->chan_lock);
232 if (!mark_smb_session && cifs_chan_needs_reconnect(ses, server))
235 if (mark_smb_session)
236 CIFS_SET_ALL_CHANS_NEED_RECONNECT(ses);
238 cifs_chan_set_need_reconnect(ses, server);
240 /* If all channels need reconnect, then tcon needs reconnect */
241 if (!mark_smb_session && !CIFS_ALL_CHANS_NEED_RECONNECT(ses))
244 ses->status = CifsNeedReconnect;
246 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
247 tcon->need_reconnect = true;
248 tcon->status = TID_NEED_RECON;
251 ses->tcon_ipc->need_reconnect = true;
254 spin_unlock(&ses->chan_lock);
256 spin_unlock(&cifs_tcp_ses_lock);
260 cifs_abort_connection(struct TCP_Server_Info *server)
262 struct mid_q_entry *mid, *nmid;
263 struct list_head retry_list;
266 server->max_read = 0;
268 /* do not want to be sending data on a socket we are freeing */
269 cifs_dbg(FYI, "%s: tearing down socket\n", __func__);
270 mutex_lock(&server->srv_mutex);
271 if (server->ssocket) {
272 cifs_dbg(FYI, "State: 0x%x Flags: 0x%lx\n", server->ssocket->state,
273 server->ssocket->flags);
274 kernel_sock_shutdown(server->ssocket, SHUT_WR);
275 cifs_dbg(FYI, "Post shutdown state: 0x%x Flags: 0x%lx\n", server->ssocket->state,
276 server->ssocket->flags);
277 sock_release(server->ssocket);
278 server->ssocket = NULL;
280 server->sequence_number = 0;
281 server->session_estab = false;
282 kfree(server->session_key.response);
283 server->session_key.response = NULL;
284 server->session_key.len = 0;
285 server->lstrp = jiffies;
287 /* mark submitted MIDs for retry and issue callback */
288 INIT_LIST_HEAD(&retry_list);
289 cifs_dbg(FYI, "%s: moving mids to private list\n", __func__);
290 spin_lock(&GlobalMid_Lock);
291 list_for_each_entry_safe(mid, nmid, &server->pending_mid_q, qhead) {
292 kref_get(&mid->refcount);
293 if (mid->mid_state == MID_REQUEST_SUBMITTED)
294 mid->mid_state = MID_RETRY_NEEDED;
295 list_move(&mid->qhead, &retry_list);
296 mid->mid_flags |= MID_DELETED;
298 spin_unlock(&GlobalMid_Lock);
299 mutex_unlock(&server->srv_mutex);
301 cifs_dbg(FYI, "%s: issuing mid callbacks\n", __func__);
302 list_for_each_entry_safe(mid, nmid, &retry_list, qhead) {
303 list_del_init(&mid->qhead);
305 cifs_mid_q_entry_release(mid);
308 if (cifs_rdma_enabled(server)) {
309 mutex_lock(&server->srv_mutex);
310 smbd_destroy(server);
311 mutex_unlock(&server->srv_mutex);
315 static bool cifs_tcp_ses_needs_reconnect(struct TCP_Server_Info *server, int num_targets)
317 spin_lock(&cifs_tcp_ses_lock);
318 server->nr_targets = num_targets;
319 if (server->tcpStatus == CifsExiting) {
320 /* the demux thread will exit normally next time through the loop */
321 spin_unlock(&cifs_tcp_ses_lock);
322 wake_up(&server->response_q);
326 cifs_dbg(FYI, "Mark tcp session as need reconnect\n");
327 trace_smb3_reconnect(server->CurrentMid, server->conn_id,
329 server->tcpStatus = CifsNeedReconnect;
331 spin_unlock(&cifs_tcp_ses_lock);
336 * cifs tcp session reconnection
338 * mark tcp session as reconnecting so temporarily locked
339 * mark all smb sessions as reconnecting for tcp session
340 * reconnect tcp session
341 * wake up waiters on reconnection? - (not needed currently)
343 * if mark_smb_session is passed as true, unconditionally mark
344 * the smb session (and tcon) for reconnect as well. This value
345 * doesn't really matter for non-multichannel scenario.
348 static int __cifs_reconnect(struct TCP_Server_Info *server,
349 bool mark_smb_session)
353 if (!cifs_tcp_ses_needs_reconnect(server, 1))
356 cifs_mark_tcp_ses_conns_for_reconnect(server, mark_smb_session);
358 cifs_abort_connection(server);
362 mutex_lock(&server->srv_mutex);
364 if (!cifs_swn_set_server_dstaddr(server)) {
365 /* resolve the hostname again to make sure that IP address is up-to-date */
366 rc = reconn_set_ipaddr_from_hostname(server);
367 cifs_dbg(FYI, "%s: reconn_set_ipaddr_from_hostname: rc=%d\n", __func__, rc);
370 if (cifs_rdma_enabled(server))
371 rc = smbd_reconnect(server);
373 rc = generic_ip_connect(server);
375 mutex_unlock(&server->srv_mutex);
376 cifs_dbg(FYI, "%s: reconnect error %d\n", __func__, rc);
379 atomic_inc(&tcpSesReconnectCount);
380 set_credits(server, 1);
381 spin_lock(&cifs_tcp_ses_lock);
382 if (server->tcpStatus != CifsExiting)
383 server->tcpStatus = CifsNeedNegotiate;
384 spin_unlock(&cifs_tcp_ses_lock);
385 cifs_swn_reset_server_dstaddr(server);
386 mutex_unlock(&server->srv_mutex);
387 mod_delayed_work(cifsiod_wq, &server->reconnect, 0);
389 } while (server->tcpStatus == CifsNeedReconnect);
391 spin_lock(&cifs_tcp_ses_lock);
392 if (server->tcpStatus == CifsNeedNegotiate)
393 mod_delayed_work(cifsiod_wq, &server->echo, 0);
394 spin_unlock(&cifs_tcp_ses_lock);
396 wake_up(&server->response_q);
400 #ifdef CONFIG_CIFS_DFS_UPCALL
401 static int __reconnect_target_unlocked(struct TCP_Server_Info *server, const char *target)
406 if (!cifs_swn_set_server_dstaddr(server)) {
407 if (server->hostname != target) {
408 hostname = extract_hostname(target);
409 if (!IS_ERR(hostname)) {
410 kfree(server->hostname);
411 server->hostname = hostname;
413 cifs_dbg(FYI, "%s: couldn't extract hostname or address from dfs target: %ld\n",
414 __func__, PTR_ERR(hostname));
415 cifs_dbg(FYI, "%s: default to last target server: %s\n", __func__,
419 /* resolve the hostname again to make sure that IP address is up-to-date. */
420 rc = reconn_set_ipaddr_from_hostname(server);
421 cifs_dbg(FYI, "%s: reconn_set_ipaddr_from_hostname: rc=%d\n", __func__, rc);
423 /* Reconnect the socket */
424 if (cifs_rdma_enabled(server))
425 rc = smbd_reconnect(server);
427 rc = generic_ip_connect(server);
432 static int reconnect_target_unlocked(struct TCP_Server_Info *server, struct dfs_cache_tgt_list *tl,
433 struct dfs_cache_tgt_iterator **target_hint)
436 struct dfs_cache_tgt_iterator *tit;
440 /* If dfs target list is empty, then reconnect to last server */
441 tit = dfs_cache_get_tgt_iterator(tl);
443 return __reconnect_target_unlocked(server, server->hostname);
445 /* Otherwise, try every dfs target in @tl */
446 for (; tit; tit = dfs_cache_get_next_tgt(tl, tit)) {
447 rc = __reconnect_target_unlocked(server, dfs_cache_get_tgt_name(tit));
456 static int reconnect_dfs_server(struct TCP_Server_Info *server)
459 const char *refpath = server->current_fullpath + 1;
460 struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl);
461 struct dfs_cache_tgt_iterator *target_hint = NULL;
465 * Determine the number of dfs targets the referral path in @cifs_sb resolves to.
467 * smb2_reconnect() needs to know how long it should wait based upon the number of dfs
468 * targets (server->nr_targets). It's also possible that the cached referral was cleared
469 * through /proc/fs/cifs/dfscache or the target list is empty due to server settings after
470 * refreshing the referral, so, in this case, default it to 1.
472 if (!dfs_cache_noreq_find(refpath, NULL, &tl))
473 num_targets = dfs_cache_get_nr_tgts(&tl);
477 if (!cifs_tcp_ses_needs_reconnect(server, num_targets))
481 * Unconditionally mark all sessions & tcons for reconnect as we might be connecting to a
482 * different server or share during failover. It could be improved by adding some logic to
483 * only do that in case it connects to a different server or share, though.
485 cifs_mark_tcp_ses_conns_for_reconnect(server, true);
487 cifs_abort_connection(server);
491 mutex_lock(&server->srv_mutex);
493 rc = reconnect_target_unlocked(server, &tl, &target_hint);
495 /* Failed to reconnect socket */
496 mutex_unlock(&server->srv_mutex);
497 cifs_dbg(FYI, "%s: reconnect error %d\n", __func__, rc);
502 * Socket was created. Update tcp session status to CifsNeedNegotiate so that a
503 * process waiting for reconnect will know it needs to re-establish session and tcon
504 * through the reconnected target server.
506 atomic_inc(&tcpSesReconnectCount);
507 set_credits(server, 1);
508 spin_lock(&cifs_tcp_ses_lock);
509 if (server->tcpStatus != CifsExiting)
510 server->tcpStatus = CifsNeedNegotiate;
511 spin_unlock(&cifs_tcp_ses_lock);
512 cifs_swn_reset_server_dstaddr(server);
513 mutex_unlock(&server->srv_mutex);
514 mod_delayed_work(cifsiod_wq, &server->reconnect, 0);
515 } while (server->tcpStatus == CifsNeedReconnect);
518 dfs_cache_noreq_update_tgthint(refpath, target_hint);
520 dfs_cache_free_tgts(&tl);
522 /* Need to set up echo worker again once connection has been established */
523 spin_lock(&cifs_tcp_ses_lock);
524 if (server->tcpStatus == CifsNeedNegotiate)
525 mod_delayed_work(cifsiod_wq, &server->echo, 0);
527 spin_unlock(&cifs_tcp_ses_lock);
529 wake_up(&server->response_q);
533 int cifs_reconnect(struct TCP_Server_Info *server, bool mark_smb_session)
535 /* If tcp session is not an dfs connection, then reconnect to last target server */
536 spin_lock(&cifs_tcp_ses_lock);
537 if (!server->is_dfs_conn) {
538 spin_unlock(&cifs_tcp_ses_lock);
539 return __cifs_reconnect(server, mark_smb_session);
541 spin_unlock(&cifs_tcp_ses_lock);
543 mutex_lock(&server->refpath_lock);
544 if (!server->origin_fullpath || !server->leaf_fullpath) {
545 mutex_unlock(&server->refpath_lock);
546 return __cifs_reconnect(server, mark_smb_session);
548 mutex_unlock(&server->refpath_lock);
550 return reconnect_dfs_server(server);
553 int cifs_reconnect(struct TCP_Server_Info *server, bool mark_smb_session)
555 return __cifs_reconnect(server, mark_smb_session);
560 cifs_echo_request(struct work_struct *work)
563 struct TCP_Server_Info *server = container_of(work,
564 struct TCP_Server_Info, echo.work);
567 * We cannot send an echo if it is disabled.
568 * Also, no need to ping if we got a response recently.
571 if (server->tcpStatus == CifsNeedReconnect ||
572 server->tcpStatus == CifsExiting ||
573 server->tcpStatus == CifsNew ||
574 (server->ops->can_echo && !server->ops->can_echo(server)) ||
575 time_before(jiffies, server->lstrp + server->echo_interval - HZ))
578 rc = server->ops->echo ? server->ops->echo(server) : -ENOSYS;
580 cifs_dbg(FYI, "Unable to send echo request to server: %s\n",
583 /* Check witness registrations */
587 queue_delayed_work(cifsiod_wq, &server->echo, server->echo_interval);
591 allocate_buffers(struct TCP_Server_Info *server)
593 if (!server->bigbuf) {
594 server->bigbuf = (char *)cifs_buf_get();
595 if (!server->bigbuf) {
596 cifs_server_dbg(VFS, "No memory for large SMB response\n");
598 /* retry will check if exiting */
601 } else if (server->large_buf) {
602 /* we are reusing a dirty large buf, clear its start */
603 memset(server->bigbuf, 0, HEADER_SIZE(server));
606 if (!server->smallbuf) {
607 server->smallbuf = (char *)cifs_small_buf_get();
608 if (!server->smallbuf) {
609 cifs_server_dbg(VFS, "No memory for SMB response\n");
611 /* retry will check if exiting */
614 /* beginning of smb buffer is cleared in our buf_get */
616 /* if existing small buf clear beginning */
617 memset(server->smallbuf, 0, HEADER_SIZE(server));
624 server_unresponsive(struct TCP_Server_Info *server)
627 * We need to wait 3 echo intervals to make sure we handle such
629 * 1s client sends a normal SMB request
630 * 2s client gets a response
631 * 30s echo workqueue job pops, and decides we got a response recently
632 * and don't need to send another
634 * 65s kernel_recvmsg times out, and we see that we haven't gotten
635 * a response in >60s.
637 spin_lock(&cifs_tcp_ses_lock);
638 if ((server->tcpStatus == CifsGood ||
639 server->tcpStatus == CifsNeedNegotiate) &&
640 (!server->ops->can_echo || server->ops->can_echo(server)) &&
641 time_after(jiffies, server->lstrp + 3 * server->echo_interval)) {
642 spin_unlock(&cifs_tcp_ses_lock);
643 cifs_server_dbg(VFS, "has not responded in %lu seconds. Reconnecting...\n",
644 (3 * server->echo_interval) / HZ);
645 cifs_reconnect(server, false);
648 spin_unlock(&cifs_tcp_ses_lock);
654 zero_credits(struct TCP_Server_Info *server)
658 spin_lock(&server->req_lock);
659 val = server->credits + server->echo_credits + server->oplock_credits;
660 if (server->in_flight == 0 && val == 0) {
661 spin_unlock(&server->req_lock);
664 spin_unlock(&server->req_lock);
669 cifs_readv_from_socket(struct TCP_Server_Info *server, struct msghdr *smb_msg)
674 smb_msg->msg_control = NULL;
675 smb_msg->msg_controllen = 0;
677 for (total_read = 0; msg_data_left(smb_msg); total_read += length) {
680 /* reconnect if no credits and no requests in flight */
681 if (zero_credits(server)) {
682 cifs_reconnect(server, false);
683 return -ECONNABORTED;
686 if (server_unresponsive(server))
687 return -ECONNABORTED;
688 if (cifs_rdma_enabled(server) && server->smbd_conn)
689 length = smbd_recv(server->smbd_conn, smb_msg);
691 length = sock_recvmsg(server->ssocket, smb_msg, 0);
693 spin_lock(&cifs_tcp_ses_lock);
694 if (server->tcpStatus == CifsExiting) {
695 spin_unlock(&cifs_tcp_ses_lock);
699 if (server->tcpStatus == CifsNeedReconnect) {
700 spin_unlock(&cifs_tcp_ses_lock);
701 cifs_reconnect(server, false);
702 return -ECONNABORTED;
704 spin_unlock(&cifs_tcp_ses_lock);
706 if (length == -ERESTARTSYS ||
710 * Minimum sleep to prevent looping, allowing socket
711 * to clear and app threads to set tcpStatus
712 * CifsNeedReconnect if server hung.
714 usleep_range(1000, 2000);
720 cifs_dbg(FYI, "Received no data or error: %d\n", length);
721 cifs_reconnect(server, false);
722 return -ECONNABORTED;
729 cifs_read_from_socket(struct TCP_Server_Info *server, char *buf,
730 unsigned int to_read)
732 struct msghdr smb_msg;
733 struct kvec iov = {.iov_base = buf, .iov_len = to_read};
734 iov_iter_kvec(&smb_msg.msg_iter, READ, &iov, 1, to_read);
736 return cifs_readv_from_socket(server, &smb_msg);
740 cifs_discard_from_socket(struct TCP_Server_Info *server, size_t to_read)
742 struct msghdr smb_msg;
745 * iov_iter_discard already sets smb_msg.type and count and iov_offset
746 * and cifs_readv_from_socket sets msg_control and msg_controllen
747 * so little to initialize in struct msghdr
749 smb_msg.msg_name = NULL;
750 smb_msg.msg_namelen = 0;
751 iov_iter_discard(&smb_msg.msg_iter, READ, to_read);
753 return cifs_readv_from_socket(server, &smb_msg);
757 cifs_read_page_from_socket(struct TCP_Server_Info *server, struct page *page,
758 unsigned int page_offset, unsigned int to_read)
760 struct msghdr smb_msg;
761 struct bio_vec bv = {
762 .bv_page = page, .bv_len = to_read, .bv_offset = page_offset};
763 iov_iter_bvec(&smb_msg.msg_iter, READ, &bv, 1, to_read);
764 return cifs_readv_from_socket(server, &smb_msg);
768 is_smb_response(struct TCP_Server_Info *server, unsigned char type)
771 * The first byte big endian of the length field,
772 * is actually not part of the length but the type
773 * with the most common, zero, as regular data.
776 case RFC1002_SESSION_MESSAGE:
777 /* Regular SMB response */
779 case RFC1002_SESSION_KEEP_ALIVE:
780 cifs_dbg(FYI, "RFC 1002 session keep alive\n");
782 case RFC1002_POSITIVE_SESSION_RESPONSE:
783 cifs_dbg(FYI, "RFC 1002 positive session response\n");
785 case RFC1002_NEGATIVE_SESSION_RESPONSE:
787 * We get this from Windows 98 instead of an error on
788 * SMB negprot response.
790 cifs_dbg(FYI, "RFC 1002 negative session response\n");
791 /* give server a second to clean up */
794 * Always try 445 first on reconnect since we get NACK
795 * on some if we ever connected to port 139 (the NACK
796 * is since we do not begin with RFC1001 session
799 cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT);
800 cifs_reconnect(server, true);
803 cifs_server_dbg(VFS, "RFC 1002 unknown response type 0x%x\n", type);
804 cifs_reconnect(server, true);
811 dequeue_mid(struct mid_q_entry *mid, bool malformed)
813 #ifdef CONFIG_CIFS_STATS2
814 mid->when_received = jiffies;
816 spin_lock(&GlobalMid_Lock);
818 mid->mid_state = MID_RESPONSE_RECEIVED;
820 mid->mid_state = MID_RESPONSE_MALFORMED;
822 * Trying to handle/dequeue a mid after the send_recv()
823 * function has finished processing it is a bug.
825 if (mid->mid_flags & MID_DELETED) {
826 spin_unlock(&GlobalMid_Lock);
827 pr_warn_once("trying to dequeue a deleted mid\n");
829 list_del_init(&mid->qhead);
830 mid->mid_flags |= MID_DELETED;
831 spin_unlock(&GlobalMid_Lock);
836 smb2_get_credits_from_hdr(char *buffer, struct TCP_Server_Info *server)
838 struct smb2_hdr *shdr = (struct smb2_hdr *)buffer;
841 * SMB1 does not use credits.
843 if (server->vals->header_preamble_size)
846 return le16_to_cpu(shdr->CreditRequest);
850 handle_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server,
851 char *buf, int malformed)
853 if (server->ops->check_trans2 &&
854 server->ops->check_trans2(mid, server, buf, malformed))
856 mid->credits_received = smb2_get_credits_from_hdr(buf, server);
858 mid->large_buf = server->large_buf;
859 /* Was previous buf put in mpx struct for multi-rsp? */
860 if (!mid->multiRsp) {
861 /* smb buffer will be freed by user thread */
862 if (server->large_buf)
863 server->bigbuf = NULL;
865 server->smallbuf = NULL;
867 dequeue_mid(mid, malformed);
870 static void clean_demultiplex_info(struct TCP_Server_Info *server)
874 /* take it off the list, if it's not already */
875 spin_lock(&cifs_tcp_ses_lock);
876 list_del_init(&server->tcp_ses_list);
877 spin_unlock(&cifs_tcp_ses_lock);
879 cancel_delayed_work_sync(&server->echo);
880 cancel_delayed_work_sync(&server->resolve);
882 spin_lock(&cifs_tcp_ses_lock);
883 server->tcpStatus = CifsExiting;
884 spin_unlock(&cifs_tcp_ses_lock);
885 wake_up_all(&server->response_q);
887 /* check if we have blocked requests that need to free */
888 spin_lock(&server->req_lock);
889 if (server->credits <= 0)
891 spin_unlock(&server->req_lock);
893 * Although there should not be any requests blocked on this queue it
894 * can not hurt to be paranoid and try to wake up requests that may
895 * haven been blocked when more than 50 at time were on the wire to the
896 * same server - they now will see the session is in exit state and get
897 * out of SendReceive.
899 wake_up_all(&server->request_q);
900 /* give those requests time to exit */
902 if (cifs_rdma_enabled(server))
903 smbd_destroy(server);
904 if (server->ssocket) {
905 sock_release(server->ssocket);
906 server->ssocket = NULL;
909 if (!list_empty(&server->pending_mid_q)) {
910 struct list_head dispose_list;
911 struct mid_q_entry *mid_entry;
912 struct list_head *tmp, *tmp2;
914 INIT_LIST_HEAD(&dispose_list);
915 spin_lock(&GlobalMid_Lock);
916 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
917 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
918 cifs_dbg(FYI, "Clearing mid %llu\n", mid_entry->mid);
919 kref_get(&mid_entry->refcount);
920 mid_entry->mid_state = MID_SHUTDOWN;
921 list_move(&mid_entry->qhead, &dispose_list);
922 mid_entry->mid_flags |= MID_DELETED;
924 spin_unlock(&GlobalMid_Lock);
926 /* now walk dispose list and issue callbacks */
927 list_for_each_safe(tmp, tmp2, &dispose_list) {
928 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
929 cifs_dbg(FYI, "Callback mid %llu\n", mid_entry->mid);
930 list_del_init(&mid_entry->qhead);
931 mid_entry->callback(mid_entry);
932 cifs_mid_q_entry_release(mid_entry);
934 /* 1/8th of sec is more than enough time for them to exit */
938 if (!list_empty(&server->pending_mid_q)) {
940 * mpx threads have not exited yet give them at least the smb
941 * send timeout time for long ops.
943 * Due to delays on oplock break requests, we need to wait at
944 * least 45 seconds before giving up on a request getting a
945 * response and going ahead and killing cifsd.
947 cifs_dbg(FYI, "Wait for exit from demultiplex thread\n");
950 * If threads still have not exited they are probably never
951 * coming home not much else we can do but free the memory.
955 #ifdef CONFIG_CIFS_DFS_UPCALL
956 kfree(server->origin_fullpath);
957 kfree(server->leaf_fullpath);
961 length = atomic_dec_return(&tcpSesAllocCount);
963 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
967 standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid)
970 char *buf = server->smallbuf;
971 unsigned int pdu_length = server->pdu_size;
973 /* make sure this will fit in a large buffer */
974 if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) -
975 server->vals->header_preamble_size) {
976 cifs_server_dbg(VFS, "SMB response too long (%u bytes)\n", pdu_length);
977 cifs_reconnect(server, true);
978 return -ECONNABORTED;
981 /* switch to large buffer if too big for a small one */
982 if (pdu_length > MAX_CIFS_SMALL_BUFFER_SIZE - 4) {
983 server->large_buf = true;
984 memcpy(server->bigbuf, buf, server->total_read);
985 buf = server->bigbuf;
988 /* now read the rest */
989 length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1,
990 pdu_length - HEADER_SIZE(server) + 1
991 + server->vals->header_preamble_size);
995 server->total_read += length;
997 dump_smb(buf, server->total_read);
999 return cifs_handle_standard(server, mid);
1003 cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid)
1005 char *buf = server->large_buf ? server->bigbuf : server->smallbuf;
1009 * We know that we received enough to get to the MID as we
1010 * checked the pdu_length earlier. Now check to see
1011 * if the rest of the header is OK. We borrow the length
1012 * var for the rest of the loop to avoid a new stack var.
1014 * 48 bytes is enough to display the header and a little bit
1015 * into the payload for debugging purposes.
1017 length = server->ops->check_message(buf, server->total_read, server);
1019 cifs_dump_mem("Bad SMB: ", buf,
1020 min_t(unsigned int, server->total_read, 48));
1022 if (server->ops->is_session_expired &&
1023 server->ops->is_session_expired(buf)) {
1024 cifs_reconnect(server, true);
1028 if (server->ops->is_status_pending &&
1029 server->ops->is_status_pending(buf, server))
1035 handle_mid(mid, server, buf, length);
1040 smb2_add_credits_from_hdr(char *buffer, struct TCP_Server_Info *server)
1042 struct smb2_hdr *shdr = (struct smb2_hdr *)buffer;
1043 int scredits, in_flight;
1046 * SMB1 does not use credits.
1048 if (server->vals->header_preamble_size)
1051 if (shdr->CreditRequest) {
1052 spin_lock(&server->req_lock);
1053 server->credits += le16_to_cpu(shdr->CreditRequest);
1054 scredits = server->credits;
1055 in_flight = server->in_flight;
1056 spin_unlock(&server->req_lock);
1057 wake_up(&server->request_q);
1059 trace_smb3_hdr_credits(server->CurrentMid,
1060 server->conn_id, server->hostname, scredits,
1061 le16_to_cpu(shdr->CreditRequest), in_flight);
1062 cifs_server_dbg(FYI, "%s: added %u credits total=%d\n",
1063 __func__, le16_to_cpu(shdr->CreditRequest),
1070 cifs_demultiplex_thread(void *p)
1072 int i, num_mids, length;
1073 struct TCP_Server_Info *server = p;
1074 unsigned int pdu_length;
1075 unsigned int next_offset;
1077 struct task_struct *task_to_wake = NULL;
1078 struct mid_q_entry *mids[MAX_COMPOUND];
1079 char *bufs[MAX_COMPOUND];
1080 unsigned int noreclaim_flag, num_io_timeout = 0;
1082 noreclaim_flag = memalloc_noreclaim_save();
1083 cifs_dbg(FYI, "Demultiplex PID: %d\n", task_pid_nr(current));
1085 length = atomic_inc_return(&tcpSesAllocCount);
1087 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
1090 allow_kernel_signal(SIGKILL);
1091 while (server->tcpStatus != CifsExiting) {
1092 if (try_to_freeze())
1095 if (!allocate_buffers(server))
1098 server->large_buf = false;
1099 buf = server->smallbuf;
1100 pdu_length = 4; /* enough to get RFC1001 header */
1102 length = cifs_read_from_socket(server, buf, pdu_length);
1106 if (server->vals->header_preamble_size == 0)
1107 server->total_read = 0;
1109 server->total_read = length;
1112 * The right amount was read from socket - 4 bytes,
1113 * so we can now interpret the length field.
1115 pdu_length = get_rfc1002_length(buf);
1117 cifs_dbg(FYI, "RFC1002 header 0x%x\n", pdu_length);
1118 if (!is_smb_response(server, buf[0]))
1121 server->pdu_size = pdu_length;
1123 /* make sure we have enough to get to the MID */
1124 if (server->pdu_size < HEADER_SIZE(server) - 1 -
1125 server->vals->header_preamble_size) {
1126 cifs_server_dbg(VFS, "SMB response too short (%u bytes)\n",
1128 cifs_reconnect(server, true);
1132 /* read down to the MID */
1133 length = cifs_read_from_socket(server,
1134 buf + server->vals->header_preamble_size,
1135 HEADER_SIZE(server) - 1
1136 - server->vals->header_preamble_size);
1139 server->total_read += length;
1141 if (server->ops->next_header) {
1142 next_offset = server->ops->next_header(buf);
1144 server->pdu_size = next_offset;
1147 memset(mids, 0, sizeof(mids));
1148 memset(bufs, 0, sizeof(bufs));
1151 if (server->ops->is_transform_hdr &&
1152 server->ops->receive_transform &&
1153 server->ops->is_transform_hdr(buf)) {
1154 length = server->ops->receive_transform(server,
1159 mids[0] = server->ops->find_mid(server, buf);
1163 if (!mids[0] || !mids[0]->receive)
1164 length = standard_receive3(server, mids[0]);
1166 length = mids[0]->receive(server, mids[0]);
1170 for (i = 0; i < num_mids; i++)
1172 cifs_mid_q_entry_release(mids[i]);
1176 if (server->ops->is_status_io_timeout &&
1177 server->ops->is_status_io_timeout(buf)) {
1179 if (num_io_timeout > NUM_STATUS_IO_TIMEOUT) {
1180 cifs_reconnect(server, false);
1186 server->lstrp = jiffies;
1188 for (i = 0; i < num_mids; i++) {
1189 if (mids[i] != NULL) {
1190 mids[i]->resp_buf_size = server->pdu_size;
1192 if (bufs[i] && server->ops->is_network_name_deleted)
1193 server->ops->is_network_name_deleted(bufs[i],
1196 if (!mids[i]->multiRsp || mids[i]->multiEnd)
1197 mids[i]->callback(mids[i]);
1199 cifs_mid_q_entry_release(mids[i]);
1200 } else if (server->ops->is_oplock_break &&
1201 server->ops->is_oplock_break(bufs[i],
1203 smb2_add_credits_from_hdr(bufs[i], server);
1204 cifs_dbg(FYI, "Received oplock break\n");
1206 cifs_server_dbg(VFS, "No task to wake, unknown frame received! NumMids %d\n",
1207 atomic_read(&midCount));
1208 cifs_dump_mem("Received Data is: ", bufs[i],
1209 HEADER_SIZE(server));
1210 smb2_add_credits_from_hdr(bufs[i], server);
1211 #ifdef CONFIG_CIFS_DEBUG2
1212 if (server->ops->dump_detail)
1213 server->ops->dump_detail(bufs[i],
1215 cifs_dump_mids(server);
1216 #endif /* CIFS_DEBUG2 */
1220 if (pdu_length > server->pdu_size) {
1221 if (!allocate_buffers(server))
1223 pdu_length -= server->pdu_size;
1224 server->total_read = 0;
1225 server->large_buf = false;
1226 buf = server->smallbuf;
1229 } /* end while !EXITING */
1231 /* buffer usually freed in free_mid - need to free it here on exit */
1232 cifs_buf_release(server->bigbuf);
1233 if (server->smallbuf) /* no sense logging a debug message if NULL */
1234 cifs_small_buf_release(server->smallbuf);
1236 task_to_wake = xchg(&server->tsk, NULL);
1237 clean_demultiplex_info(server);
1239 /* if server->tsk was NULL then wait for a signal before exiting */
1240 if (!task_to_wake) {
1241 set_current_state(TASK_INTERRUPTIBLE);
1242 while (!signal_pending(current)) {
1244 set_current_state(TASK_INTERRUPTIBLE);
1246 set_current_state(TASK_RUNNING);
1249 memalloc_noreclaim_restore(noreclaim_flag);
1250 module_put_and_kthread_exit(0);
1254 * Returns true if srcaddr isn't specified and rhs isn't specified, or
1255 * if srcaddr is specified and matches the IP address of the rhs argument
1258 cifs_match_ipaddr(struct sockaddr *srcaddr, struct sockaddr *rhs)
1260 switch (srcaddr->sa_family) {
1262 return (rhs->sa_family == AF_UNSPEC);
1264 struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr;
1265 struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs;
1266 return (saddr4->sin_addr.s_addr == vaddr4->sin_addr.s_addr);
1269 struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr;
1270 struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs;
1271 return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr);
1275 return false; /* don't expect to be here */
1280 * If no port is specified in addr structure, we try to match with 445 port
1281 * and if it fails - with 139 ports. It should be called only if address
1282 * families of server and addr are equal.
1285 match_port(struct TCP_Server_Info *server, struct sockaddr *addr)
1287 __be16 port, *sport;
1289 /* SMBDirect manages its own ports, don't match it here */
1293 switch (addr->sa_family) {
1295 sport = &((struct sockaddr_in *) &server->dstaddr)->sin_port;
1296 port = ((struct sockaddr_in *) addr)->sin_port;
1299 sport = &((struct sockaddr_in6 *) &server->dstaddr)->sin6_port;
1300 port = ((struct sockaddr_in6 *) addr)->sin6_port;
1308 port = htons(CIFS_PORT);
1312 port = htons(RFC1001_PORT);
1315 return port == *sport;
1319 match_address(struct TCP_Server_Info *server, struct sockaddr *addr,
1320 struct sockaddr *srcaddr)
1322 switch (addr->sa_family) {
1324 struct sockaddr_in *addr4 = (struct sockaddr_in *)addr;
1325 struct sockaddr_in *srv_addr4 =
1326 (struct sockaddr_in *)&server->dstaddr;
1328 if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr)
1333 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr;
1334 struct sockaddr_in6 *srv_addr6 =
1335 (struct sockaddr_in6 *)&server->dstaddr;
1337 if (!ipv6_addr_equal(&addr6->sin6_addr,
1338 &srv_addr6->sin6_addr))
1340 if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id)
1346 return false; /* don't expect to be here */
1349 if (!cifs_match_ipaddr(srcaddr, (struct sockaddr *)&server->srcaddr))
1356 match_security(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
1359 * The select_sectype function should either return the ctx->sectype
1360 * that was specified, or "Unspecified" if that sectype was not
1361 * compatible with the given NEGOTIATE request.
1363 if (server->ops->select_sectype(server, ctx->sectype)
1368 * Now check if signing mode is acceptable. No need to check
1369 * global_secflags at this point since if MUST_SIGN is set then
1370 * the server->sign had better be too.
1372 if (ctx->sign && !server->sign)
1378 static int match_server(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
1380 struct sockaddr *addr = (struct sockaddr *)&ctx->dstaddr;
1382 if (ctx->nosharesock)
1385 /* this server does not share socket */
1386 if (server->nosharesock)
1389 /* If multidialect negotiation see if existing sessions match one */
1390 if (strcmp(ctx->vals->version_string, SMB3ANY_VERSION_STRING) == 0) {
1391 if (server->vals->protocol_id < SMB30_PROT_ID)
1393 } else if (strcmp(ctx->vals->version_string,
1394 SMBDEFAULT_VERSION_STRING) == 0) {
1395 if (server->vals->protocol_id < SMB21_PROT_ID)
1397 } else if ((server->vals != ctx->vals) || (server->ops != ctx->ops))
1400 if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns))
1403 if (strcasecmp(server->hostname, ctx->server_hostname))
1406 if (!match_address(server, addr,
1407 (struct sockaddr *)&ctx->srcaddr))
1410 if (!match_port(server, addr))
1413 if (!match_security(server, ctx))
1416 if (server->echo_interval != ctx->echo_interval * HZ)
1419 if (server->rdma != ctx->rdma)
1422 if (server->ignore_signature != ctx->ignore_signature)
1425 if (server->min_offload != ctx->min_offload)
1431 struct TCP_Server_Info *
1432 cifs_find_tcp_session(struct smb3_fs_context *ctx)
1434 struct TCP_Server_Info *server;
1436 spin_lock(&cifs_tcp_ses_lock);
1437 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
1438 #ifdef CONFIG_CIFS_DFS_UPCALL
1440 * DFS failover implementation in cifs_reconnect() requires unique tcp sessions for
1441 * DFS connections to do failover properly, so avoid sharing them with regular
1442 * shares or even links that may connect to same server but having completely
1443 * different failover targets.
1445 if (server->is_dfs_conn)
1449 * Skip ses channels since they're only handled in lower layers
1450 * (e.g. cifs_send_recv).
1452 if (CIFS_SERVER_IS_CHAN(server) || !match_server(server, ctx))
1455 ++server->srv_count;
1456 spin_unlock(&cifs_tcp_ses_lock);
1457 cifs_dbg(FYI, "Existing tcp session with server found\n");
1460 spin_unlock(&cifs_tcp_ses_lock);
1465 cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect)
1467 struct task_struct *task;
1469 spin_lock(&cifs_tcp_ses_lock);
1470 if (--server->srv_count > 0) {
1471 spin_unlock(&cifs_tcp_ses_lock);
1475 /* srv_count can never go negative */
1476 WARN_ON(server->srv_count < 0);
1478 put_net(cifs_net_ns(server));
1480 list_del_init(&server->tcp_ses_list);
1481 spin_unlock(&cifs_tcp_ses_lock);
1483 /* For secondary channels, we pick up ref-count on the primary server */
1484 if (CIFS_SERVER_IS_CHAN(server))
1485 cifs_put_tcp_session(server->primary_server, from_reconnect);
1487 cancel_delayed_work_sync(&server->echo);
1488 cancel_delayed_work_sync(&server->resolve);
1492 * Avoid deadlock here: reconnect work calls
1493 * cifs_put_tcp_session() at its end. Need to be sure
1494 * that reconnect work does nothing with server pointer after
1497 cancel_delayed_work(&server->reconnect);
1499 cancel_delayed_work_sync(&server->reconnect);
1501 spin_lock(&cifs_tcp_ses_lock);
1502 server->tcpStatus = CifsExiting;
1503 spin_unlock(&cifs_tcp_ses_lock);
1505 cifs_crypto_secmech_release(server);
1507 kfree(server->session_key.response);
1508 server->session_key.response = NULL;
1509 server->session_key.len = 0;
1510 kfree(server->hostname);
1512 task = xchg(&server->tsk, NULL);
1514 send_sig(SIGKILL, task, 1);
1517 struct TCP_Server_Info *
1518 cifs_get_tcp_session(struct smb3_fs_context *ctx,
1519 struct TCP_Server_Info *primary_server)
1521 struct TCP_Server_Info *tcp_ses = NULL;
1524 cifs_dbg(FYI, "UNC: %s\n", ctx->UNC);
1526 /* see if we already have a matching tcp_ses */
1527 tcp_ses = cifs_find_tcp_session(ctx);
1531 tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL);
1537 tcp_ses->hostname = kstrdup(ctx->server_hostname, GFP_KERNEL);
1538 if (!tcp_ses->hostname) {
1543 if (ctx->nosharesock)
1544 tcp_ses->nosharesock = true;
1546 tcp_ses->ops = ctx->ops;
1547 tcp_ses->vals = ctx->vals;
1548 cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns));
1550 tcp_ses->conn_id = atomic_inc_return(&tcpSesNextId);
1551 tcp_ses->noblockcnt = ctx->rootfs;
1552 tcp_ses->noblocksnd = ctx->noblocksnd || ctx->rootfs;
1553 tcp_ses->noautotune = ctx->noautotune;
1554 tcp_ses->tcp_nodelay = ctx->sockopt_tcp_nodelay;
1555 tcp_ses->rdma = ctx->rdma;
1556 tcp_ses->in_flight = 0;
1557 tcp_ses->max_in_flight = 0;
1558 tcp_ses->credits = 1;
1559 if (primary_server) {
1560 spin_lock(&cifs_tcp_ses_lock);
1561 ++primary_server->srv_count;
1562 tcp_ses->primary_server = primary_server;
1563 spin_unlock(&cifs_tcp_ses_lock);
1565 init_waitqueue_head(&tcp_ses->response_q);
1566 init_waitqueue_head(&tcp_ses->request_q);
1567 INIT_LIST_HEAD(&tcp_ses->pending_mid_q);
1568 mutex_init(&tcp_ses->srv_mutex);
1569 memcpy(tcp_ses->workstation_RFC1001_name,
1570 ctx->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
1571 memcpy(tcp_ses->server_RFC1001_name,
1572 ctx->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
1573 tcp_ses->session_estab = false;
1574 tcp_ses->sequence_number = 0;
1575 tcp_ses->reconnect_instance = 1;
1576 tcp_ses->lstrp = jiffies;
1577 tcp_ses->compress_algorithm = cpu_to_le16(ctx->compression);
1578 spin_lock_init(&tcp_ses->req_lock);
1579 INIT_LIST_HEAD(&tcp_ses->tcp_ses_list);
1580 INIT_LIST_HEAD(&tcp_ses->smb_ses_list);
1581 INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request);
1582 INIT_DELAYED_WORK(&tcp_ses->resolve, cifs_resolve_server);
1583 INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server);
1584 mutex_init(&tcp_ses->reconnect_mutex);
1585 #ifdef CONFIG_CIFS_DFS_UPCALL
1586 mutex_init(&tcp_ses->refpath_lock);
1588 memcpy(&tcp_ses->srcaddr, &ctx->srcaddr,
1589 sizeof(tcp_ses->srcaddr));
1590 memcpy(&tcp_ses->dstaddr, &ctx->dstaddr,
1591 sizeof(tcp_ses->dstaddr));
1592 if (ctx->use_client_guid)
1593 memcpy(tcp_ses->client_guid, ctx->client_guid,
1594 SMB2_CLIENT_GUID_SIZE);
1596 generate_random_uuid(tcp_ses->client_guid);
1598 * at this point we are the only ones with the pointer
1599 * to the struct since the kernel thread not created yet
1600 * no need to spinlock this init of tcpStatus or srv_count
1602 tcp_ses->tcpStatus = CifsNew;
1603 ++tcp_ses->srv_count;
1605 if (ctx->echo_interval >= SMB_ECHO_INTERVAL_MIN &&
1606 ctx->echo_interval <= SMB_ECHO_INTERVAL_MAX)
1607 tcp_ses->echo_interval = ctx->echo_interval * HZ;
1609 tcp_ses->echo_interval = SMB_ECHO_INTERVAL_DEFAULT * HZ;
1610 if (tcp_ses->rdma) {
1611 #ifndef CONFIG_CIFS_SMB_DIRECT
1612 cifs_dbg(VFS, "CONFIG_CIFS_SMB_DIRECT is not enabled\n");
1614 goto out_err_crypto_release;
1616 tcp_ses->smbd_conn = smbd_get_connection(
1617 tcp_ses, (struct sockaddr *)&ctx->dstaddr);
1618 if (tcp_ses->smbd_conn) {
1619 cifs_dbg(VFS, "RDMA transport established\n");
1621 goto smbd_connected;
1624 goto out_err_crypto_release;
1627 rc = ip_connect(tcp_ses);
1629 cifs_dbg(VFS, "Error connecting to socket. Aborting operation.\n");
1630 goto out_err_crypto_release;
1634 * since we're in a cifs function already, we know that
1635 * this will succeed. No need for try_module_get().
1637 __module_get(THIS_MODULE);
1638 tcp_ses->tsk = kthread_run(cifs_demultiplex_thread,
1640 if (IS_ERR(tcp_ses->tsk)) {
1641 rc = PTR_ERR(tcp_ses->tsk);
1642 cifs_dbg(VFS, "error %d create cifsd thread\n", rc);
1643 module_put(THIS_MODULE);
1644 goto out_err_crypto_release;
1646 tcp_ses->min_offload = ctx->min_offload;
1648 * at this point we are the only ones with the pointer
1649 * to the struct since the kernel thread not created yet
1650 * no need to spinlock this update of tcpStatus
1652 spin_lock(&cifs_tcp_ses_lock);
1653 tcp_ses->tcpStatus = CifsNeedNegotiate;
1654 spin_unlock(&cifs_tcp_ses_lock);
1656 if ((ctx->max_credits < 20) || (ctx->max_credits > 60000))
1657 tcp_ses->max_credits = SMB2_MAX_CREDITS_AVAILABLE;
1659 tcp_ses->max_credits = ctx->max_credits;
1661 tcp_ses->nr_targets = 1;
1662 tcp_ses->ignore_signature = ctx->ignore_signature;
1663 /* thread spawned, put it on the list */
1664 spin_lock(&cifs_tcp_ses_lock);
1665 list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list);
1666 spin_unlock(&cifs_tcp_ses_lock);
1668 /* queue echo request delayed work */
1669 queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval);
1671 /* queue dns resolution delayed work */
1672 cifs_dbg(FYI, "%s: next dns resolution scheduled for %d seconds in the future\n",
1673 __func__, SMB_DNS_RESOLVE_INTERVAL_DEFAULT);
1675 queue_delayed_work(cifsiod_wq, &tcp_ses->resolve, (SMB_DNS_RESOLVE_INTERVAL_DEFAULT * HZ));
1679 out_err_crypto_release:
1680 cifs_crypto_secmech_release(tcp_ses);
1682 put_net(cifs_net_ns(tcp_ses));
1686 if (CIFS_SERVER_IS_CHAN(tcp_ses))
1687 cifs_put_tcp_session(tcp_ses->primary_server, false);
1688 kfree(tcp_ses->hostname);
1689 if (tcp_ses->ssocket)
1690 sock_release(tcp_ses->ssocket);
1696 static int match_session(struct cifs_ses *ses, struct smb3_fs_context *ctx)
1698 if (ctx->sectype != Unspecified &&
1699 ctx->sectype != ses->sectype)
1703 * If an existing session is limited to less channels than
1704 * requested, it should not be reused
1706 spin_lock(&ses->chan_lock);
1707 if (ses->chan_max < ctx->max_channels) {
1708 spin_unlock(&ses->chan_lock);
1711 spin_unlock(&ses->chan_lock);
1713 switch (ses->sectype) {
1715 if (!uid_eq(ctx->cred_uid, ses->cred_uid))
1719 /* NULL username means anonymous session */
1720 if (ses->user_name == NULL) {
1726 /* anything else takes username/password */
1727 if (strncmp(ses->user_name,
1728 ctx->username ? ctx->username : "",
1729 CIFS_MAX_USERNAME_LEN))
1731 if ((ctx->username && strlen(ctx->username) != 0) &&
1732 ses->password != NULL &&
1733 strncmp(ses->password,
1734 ctx->password ? ctx->password : "",
1735 CIFS_MAX_PASSWORD_LEN))
1742 * cifs_setup_ipc - helper to setup the IPC tcon for the session
1743 * @ses: smb session to issue the request on
1744 * @ctx: the superblock configuration context to use for building the
1745 * new tree connection for the IPC (interprocess communication RPC)
1747 * A new IPC connection is made and stored in the session
1748 * tcon_ipc. The IPC tcon has the same lifetime as the session.
1751 cifs_setup_ipc(struct cifs_ses *ses, struct smb3_fs_context *ctx)
1754 struct cifs_tcon *tcon;
1755 char unc[SERVER_NAME_LENGTH + sizeof("//x/IPC$")] = {0};
1757 struct TCP_Server_Info *server = ses->server;
1760 * If the mount request that resulted in the creation of the
1761 * session requires encryption, force IPC to be encrypted too.
1764 if (server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION)
1767 cifs_server_dbg(VFS,
1768 "IPC: server doesn't support encryption\n");
1773 tcon = tconInfoAlloc();
1777 scnprintf(unc, sizeof(unc), "\\\\%s\\IPC$", server->hostname);
1783 rc = server->ops->tree_connect(xid, ses, unc, tcon, ctx->local_nls);
1787 cifs_server_dbg(VFS, "failed to connect to IPC (rc=%d)\n", rc);
1792 cifs_dbg(FYI, "IPC tcon rc = %d ipc tid = %d\n", rc, tcon->tid);
1794 ses->tcon_ipc = tcon;
1800 * cifs_free_ipc - helper to release the session IPC tcon
1801 * @ses: smb session to unmount the IPC from
1803 * Needs to be called everytime a session is destroyed.
1805 * On session close, the IPC is closed and the server must release all tcons of the session.
1806 * No need to send a tree disconnect here.
1808 * Besides, it will make the server to not close durable and resilient files on session close, as
1809 * specified in MS-SMB2 3.3.5.6 Receiving an SMB2 LOGOFF Request.
1812 cifs_free_ipc(struct cifs_ses *ses)
1814 struct cifs_tcon *tcon = ses->tcon_ipc;
1820 ses->tcon_ipc = NULL;
1824 static struct cifs_ses *
1825 cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
1827 struct cifs_ses *ses;
1829 spin_lock(&cifs_tcp_ses_lock);
1830 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
1831 if (ses->status == CifsExiting)
1833 if (!match_session(ses, ctx))
1836 spin_unlock(&cifs_tcp_ses_lock);
1839 spin_unlock(&cifs_tcp_ses_lock);
1843 void cifs_put_smb_ses(struct cifs_ses *ses)
1845 unsigned int rc, xid;
1846 unsigned int chan_count;
1847 struct TCP_Server_Info *server = ses->server;
1848 cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count);
1850 spin_lock(&cifs_tcp_ses_lock);
1851 if (ses->status == CifsExiting) {
1852 spin_unlock(&cifs_tcp_ses_lock);
1856 cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count);
1857 cifs_dbg(FYI, "%s: ses ipc: %s\n", __func__, ses->tcon_ipc ? ses->tcon_ipc->treeName : "NONE");
1859 if (--ses->ses_count > 0) {
1860 spin_unlock(&cifs_tcp_ses_lock);
1864 /* ses_count can never go negative */
1865 WARN_ON(ses->ses_count < 0);
1867 if (ses->status == CifsGood)
1868 ses->status = CifsExiting;
1869 spin_unlock(&cifs_tcp_ses_lock);
1873 if (ses->status == CifsExiting && server->ops->logoff) {
1875 rc = server->ops->logoff(xid, ses);
1877 cifs_server_dbg(VFS, "%s: Session Logoff failure rc=%d\n",
1882 spin_lock(&cifs_tcp_ses_lock);
1883 list_del_init(&ses->smb_ses_list);
1884 spin_unlock(&cifs_tcp_ses_lock);
1886 spin_lock(&ses->chan_lock);
1887 chan_count = ses->chan_count;
1889 /* close any extra channels */
1890 if (chan_count > 1) {
1893 for (i = 1; i < chan_count; i++) {
1894 spin_unlock(&ses->chan_lock);
1895 cifs_put_tcp_session(ses->chans[i].server, 0);
1896 spin_lock(&ses->chan_lock);
1897 ses->chans[i].server = NULL;
1900 spin_unlock(&ses->chan_lock);
1903 cifs_put_tcp_session(server, 0);
1908 /* strlen("cifs:a:") + CIFS_MAX_DOMAINNAME_LEN + 1 */
1909 #define CIFSCREDS_DESC_SIZE (7 + CIFS_MAX_DOMAINNAME_LEN + 1)
1911 /* Populate username and pw fields from keyring if possible */
1913 cifs_set_cifscreds(struct smb3_fs_context *ctx, struct cifs_ses *ses)
1917 const char *delim, *payload;
1921 struct TCP_Server_Info *server = ses->server;
1922 struct sockaddr_in *sa;
1923 struct sockaddr_in6 *sa6;
1924 const struct user_key_payload *upayload;
1926 desc = kmalloc(CIFSCREDS_DESC_SIZE, GFP_KERNEL);
1930 /* try to find an address key first */
1931 switch (server->dstaddr.ss_family) {
1933 sa = (struct sockaddr_in *)&server->dstaddr;
1934 sprintf(desc, "cifs:a:%pI4", &sa->sin_addr.s_addr);
1937 sa6 = (struct sockaddr_in6 *)&server->dstaddr;
1938 sprintf(desc, "cifs:a:%pI6c", &sa6->sin6_addr.s6_addr);
1941 cifs_dbg(FYI, "Bad ss_family (%hu)\n",
1942 server->dstaddr.ss_family);
1947 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
1948 key = request_key(&key_type_logon, desc, "");
1950 if (!ses->domainName) {
1951 cifs_dbg(FYI, "domainName is NULL\n");
1956 /* didn't work, try to find a domain key */
1957 sprintf(desc, "cifs:d:%s", ses->domainName);
1958 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
1959 key = request_key(&key_type_logon, desc, "");
1967 down_read(&key->sem);
1968 upayload = user_key_payload_locked(key);
1969 if (IS_ERR_OR_NULL(upayload)) {
1970 rc = upayload ? PTR_ERR(upayload) : -EINVAL;
1974 /* find first : in payload */
1975 payload = upayload->data;
1976 delim = strnchr(payload, upayload->datalen, ':');
1977 cifs_dbg(FYI, "payload=%s\n", payload);
1979 cifs_dbg(FYI, "Unable to find ':' in payload (datalen=%d)\n",
1985 len = delim - payload;
1986 if (len > CIFS_MAX_USERNAME_LEN || len <= 0) {
1987 cifs_dbg(FYI, "Bad value from username search (len=%zd)\n",
1993 ctx->username = kstrndup(payload, len, GFP_KERNEL);
1994 if (!ctx->username) {
1995 cifs_dbg(FYI, "Unable to allocate %zd bytes for username\n",
2000 cifs_dbg(FYI, "%s: username=%s\n", __func__, ctx->username);
2002 len = key->datalen - (len + 1);
2003 if (len > CIFS_MAX_PASSWORD_LEN || len <= 0) {
2004 cifs_dbg(FYI, "Bad len for password search (len=%zd)\n", len);
2006 kfree(ctx->username);
2007 ctx->username = NULL;
2012 ctx->password = kstrndup(delim, len, GFP_KERNEL);
2013 if (!ctx->password) {
2014 cifs_dbg(FYI, "Unable to allocate %zd bytes for password\n",
2017 kfree(ctx->username);
2018 ctx->username = NULL;
2023 * If we have a domain key then we must set the domainName in the
2026 if (is_domain && ses->domainName) {
2027 ctx->domainname = kstrdup(ses->domainName, GFP_KERNEL);
2028 if (!ctx->domainname) {
2029 cifs_dbg(FYI, "Unable to allocate %zd bytes for domain\n",
2032 kfree(ctx->username);
2033 ctx->username = NULL;
2034 kfree_sensitive(ctx->password);
2035 ctx->password = NULL;
2040 ctx->workstation_name = kstrdup(ses->workstation_name, GFP_KERNEL);
2041 if (!ctx->workstation_name) {
2042 cifs_dbg(FYI, "Unable to allocate memory for workstation_name\n");
2044 kfree(ctx->username);
2045 ctx->username = NULL;
2046 kfree_sensitive(ctx->password);
2047 ctx->password = NULL;
2048 kfree(ctx->domainname);
2049 ctx->domainname = NULL;
2058 cifs_dbg(FYI, "%s: returning %d\n", __func__, rc);
2061 #else /* ! CONFIG_KEYS */
2063 cifs_set_cifscreds(struct smb3_fs_context *ctx __attribute__((unused)),
2064 struct cifs_ses *ses __attribute__((unused)))
2068 #endif /* CONFIG_KEYS */
2071 * cifs_get_smb_ses - get a session matching @ctx data from @server
2072 * @server: server to setup the session to
2073 * @ctx: superblock configuration context to use to setup the session
2075 * This function assumes it is being called from cifs_mount() where we
2076 * already got a server reference (server refcount +1). See
2077 * cifs_get_tcon() for refcount explanations.
2080 cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
2084 struct cifs_ses *ses;
2085 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
2086 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
2090 ses = cifs_find_smb_ses(server, ctx);
2092 cifs_dbg(FYI, "Existing smb sess found (status=%d)\n",
2095 spin_lock(&ses->chan_lock);
2096 if (cifs_chan_needs_reconnect(ses, server)) {
2097 spin_unlock(&ses->chan_lock);
2098 cifs_dbg(FYI, "Session needs reconnect\n");
2100 mutex_lock(&ses->session_mutex);
2101 rc = cifs_negotiate_protocol(xid, ses, server);
2103 mutex_unlock(&ses->session_mutex);
2104 /* problem -- put our ses reference */
2105 cifs_put_smb_ses(ses);
2110 rc = cifs_setup_session(xid, ses, server,
2113 mutex_unlock(&ses->session_mutex);
2114 /* problem -- put our reference */
2115 cifs_put_smb_ses(ses);
2119 mutex_unlock(&ses->session_mutex);
2121 spin_lock(&ses->chan_lock);
2123 spin_unlock(&ses->chan_lock);
2125 /* existing SMB ses has a server reference already */
2126 cifs_put_tcp_session(server, 0);
2131 cifs_dbg(FYI, "Existing smb sess not found\n");
2132 ses = sesInfoAlloc();
2136 /* new SMB session uses our server ref */
2137 ses->server = server;
2138 if (server->dstaddr.ss_family == AF_INET6)
2139 sprintf(ses->ip_addr, "%pI6", &addr6->sin6_addr);
2141 sprintf(ses->ip_addr, "%pI4", &addr->sin_addr);
2143 if (ctx->username) {
2144 ses->user_name = kstrdup(ctx->username, GFP_KERNEL);
2145 if (!ses->user_name)
2149 /* ctx->password freed at unmount */
2150 if (ctx->password) {
2151 ses->password = kstrdup(ctx->password, GFP_KERNEL);
2155 if (ctx->domainname) {
2156 ses->domainName = kstrdup(ctx->domainname, GFP_KERNEL);
2157 if (!ses->domainName)
2160 if (ctx->workstation_name) {
2161 ses->workstation_name = kstrdup(ctx->workstation_name,
2163 if (!ses->workstation_name)
2166 if (ctx->domainauto)
2167 ses->domainAuto = ctx->domainauto;
2168 ses->cred_uid = ctx->cred_uid;
2169 ses->linux_uid = ctx->linux_uid;
2171 ses->sectype = ctx->sectype;
2172 ses->sign = ctx->sign;
2174 /* add server as first channel */
2175 spin_lock(&ses->chan_lock);
2176 ses->chans[0].server = server;
2177 ses->chan_count = 1;
2178 ses->chan_max = ctx->multichannel ? ctx->max_channels:1;
2179 ses->chans_need_reconnect = 1;
2180 spin_unlock(&ses->chan_lock);
2182 mutex_lock(&ses->session_mutex);
2183 rc = cifs_negotiate_protocol(xid, ses, server);
2185 rc = cifs_setup_session(xid, ses, server, ctx->local_nls);
2186 mutex_unlock(&ses->session_mutex);
2188 /* each channel uses a different signing key */
2189 spin_lock(&ses->chan_lock);
2190 memcpy(ses->chans[0].signkey, ses->smb3signingkey,
2191 sizeof(ses->smb3signingkey));
2192 spin_unlock(&ses->chan_lock);
2198 * success, put it on the list and add it as first channel
2199 * note: the session becomes active soon after this. So you'll
2200 * need to lock before changing something in the session.
2202 spin_lock(&cifs_tcp_ses_lock);
2203 list_add(&ses->smb_ses_list, &server->smb_ses_list);
2204 spin_unlock(&cifs_tcp_ses_lock);
2208 cifs_setup_ipc(ses, ctx);
2218 static int match_tcon(struct cifs_tcon *tcon, struct smb3_fs_context *ctx)
2220 if (tcon->status == TID_EXITING)
2222 if (strncmp(tcon->treeName, ctx->UNC, MAX_TREE_SIZE))
2224 if (tcon->seal != ctx->seal)
2226 if (tcon->snapshot_time != ctx->snapshot_time)
2228 if (tcon->handle_timeout != ctx->handle_timeout)
2230 if (tcon->no_lease != ctx->no_lease)
2232 if (tcon->nodelete != ctx->nodelete)
2237 static struct cifs_tcon *
2238 cifs_find_tcon(struct cifs_ses *ses, struct smb3_fs_context *ctx)
2240 struct list_head *tmp;
2241 struct cifs_tcon *tcon;
2243 spin_lock(&cifs_tcp_ses_lock);
2244 list_for_each(tmp, &ses->tcon_list) {
2245 tcon = list_entry(tmp, struct cifs_tcon, tcon_list);
2247 if (!match_tcon(tcon, ctx))
2250 spin_unlock(&cifs_tcp_ses_lock);
2253 spin_unlock(&cifs_tcp_ses_lock);
2258 cifs_put_tcon(struct cifs_tcon *tcon)
2261 struct cifs_ses *ses;
2264 * IPC tcon share the lifetime of their session and are
2265 * destroyed in the session put function
2267 if (tcon == NULL || tcon->ipc)
2271 cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count);
2272 spin_lock(&cifs_tcp_ses_lock);
2273 if (--tcon->tc_count > 0) {
2274 spin_unlock(&cifs_tcp_ses_lock);
2278 /* tc_count can never go negative */
2279 WARN_ON(tcon->tc_count < 0);
2281 list_del_init(&tcon->tcon_list);
2282 spin_unlock(&cifs_tcp_ses_lock);
2284 if (tcon->use_witness) {
2287 rc = cifs_swn_unregister(tcon);
2289 cifs_dbg(VFS, "%s: Failed to unregister for witness notifications: %d\n",
2295 if (ses->server->ops->tree_disconnect)
2296 ses->server->ops->tree_disconnect(xid, tcon);
2299 cifs_fscache_release_super_cookie(tcon);
2301 cifs_put_smb_ses(ses);
2305 * cifs_get_tcon - get a tcon matching @ctx data from @ses
2306 * @ses: smb session to issue the request on
2307 * @ctx: the superblock configuration context to use for building the
2309 * - tcon refcount is the number of mount points using the tcon.
2310 * - ses refcount is the number of tcon using the session.
2312 * 1. This function assumes it is being called from cifs_mount() where
2313 * we already got a session reference (ses refcount +1).
2315 * 2. Since we're in the context of adding a mount point, the end
2316 * result should be either:
2318 * a) a new tcon already allocated with refcount=1 (1 mount point) and
2319 * its session refcount incremented (1 new tcon). This +1 was
2320 * already done in (1).
2322 * b) an existing tcon with refcount+1 (add a mount point to it) and
2323 * identical ses refcount (no new tcon). Because of (1) we need to
2324 * decrement the ses refcount.
2326 static struct cifs_tcon *
2327 cifs_get_tcon(struct cifs_ses *ses, struct smb3_fs_context *ctx)
2330 struct cifs_tcon *tcon;
2332 tcon = cifs_find_tcon(ses, ctx);
2335 * tcon has refcount already incremented but we need to
2336 * decrement extra ses reference gotten by caller (case b)
2338 cifs_dbg(FYI, "Found match on UNC path\n");
2339 cifs_put_smb_ses(ses);
2343 if (!ses->server->ops->tree_connect) {
2348 tcon = tconInfoAlloc();
2354 if (ctx->snapshot_time) {
2355 if (ses->server->vals->protocol_id == 0) {
2357 "Use SMB2 or later for snapshot mount option\n");
2361 tcon->snapshot_time = ctx->snapshot_time;
2364 if (ctx->handle_timeout) {
2365 if (ses->server->vals->protocol_id == 0) {
2367 "Use SMB2.1 or later for handle timeout option\n");
2371 tcon->handle_timeout = ctx->handle_timeout;
2375 if (ctx->password) {
2376 tcon->password = kstrdup(ctx->password, GFP_KERNEL);
2377 if (!tcon->password) {
2384 if (ses->server->vals->protocol_id == 0) {
2386 "SMB3 or later required for encryption\n");
2389 } else if (tcon->ses->server->capabilities &
2390 SMB2_GLOBAL_CAP_ENCRYPTION)
2393 cifs_dbg(VFS, "Encryption is not supported on share\n");
2399 if (ctx->linux_ext) {
2400 if (ses->server->posix_ext_supported) {
2401 tcon->posix_extensions = true;
2402 pr_warn_once("SMB3.11 POSIX Extensions are experimental\n");
2403 } else if ((ses->server->vals->protocol_id == SMB311_PROT_ID) ||
2404 (strcmp(ses->server->vals->version_string,
2405 SMB3ANY_VERSION_STRING) == 0) ||
2406 (strcmp(ses->server->vals->version_string,
2407 SMBDEFAULT_VERSION_STRING) == 0)) {
2408 cifs_dbg(VFS, "Server does not support mounting with posix SMB3.11 extensions\n");
2412 cifs_dbg(VFS, "Check vers= mount option. SMB3.11 "
2413 "disabled but required for POSIX extensions\n");
2420 rc = ses->server->ops->tree_connect(xid, ses, ctx->UNC, tcon,
2423 cifs_dbg(FYI, "Tcon rc = %d\n", rc);
2427 tcon->use_persistent = false;
2428 /* check if SMB2 or later, CIFS does not support persistent handles */
2429 if (ctx->persistent) {
2430 if (ses->server->vals->protocol_id == 0) {
2432 "SMB3 or later required for persistent handles\n");
2435 } else if (ses->server->capabilities &
2436 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
2437 tcon->use_persistent = true;
2438 else /* persistent handles requested but not supported */ {
2440 "Persistent handles not supported on share\n");
2444 } else if ((tcon->capabilities & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY)
2445 && (ses->server->capabilities & SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
2446 && (ctx->nopersistent == false)) {
2447 cifs_dbg(FYI, "enabling persistent handles\n");
2448 tcon->use_persistent = true;
2449 } else if (ctx->resilient) {
2450 if (ses->server->vals->protocol_id == 0) {
2452 "SMB2.1 or later required for resilient handles\n");
2456 tcon->use_resilient = true;
2459 tcon->use_witness = false;
2460 if (IS_ENABLED(CONFIG_CIFS_SWN_UPCALL) && ctx->witness) {
2461 if (ses->server->vals->protocol_id >= SMB30_PROT_ID) {
2462 if (tcon->capabilities & SMB2_SHARE_CAP_CLUSTER) {
2464 * Set witness in use flag in first place
2465 * to retry registration in the echo task
2467 tcon->use_witness = true;
2468 /* And try to register immediately */
2469 rc = cifs_swn_register(tcon);
2471 cifs_dbg(VFS, "Failed to register for witness notifications: %d\n", rc);
2475 /* TODO: try to extend for non-cluster uses (eg multichannel) */
2476 cifs_dbg(VFS, "witness requested on mount but no CLUSTER capability on share\n");
2481 cifs_dbg(VFS, "SMB3 or later required for witness option\n");
2487 /* If the user really knows what they are doing they can override */
2488 if (tcon->share_flags & SMB2_SHAREFLAG_NO_CACHING) {
2490 cifs_dbg(VFS, "cache=ro requested on mount but NO_CACHING flag set on share\n");
2491 else if (ctx->cache_rw)
2492 cifs_dbg(VFS, "cache=singleclient requested on mount but NO_CACHING flag set on share\n");
2495 if (ctx->no_lease) {
2496 if (ses->server->vals->protocol_id == 0) {
2498 "SMB2 or later required for nolease option\n");
2502 tcon->no_lease = ctx->no_lease;
2506 * We can have only one retry value for a connection to a share so for
2507 * resources mounted more than once to the same server share the last
2508 * value passed in for the retry flag is used.
2510 tcon->retry = ctx->retry;
2511 tcon->nocase = ctx->nocase;
2512 if (ses->server->capabilities & SMB2_GLOBAL_CAP_DIRECTORY_LEASING)
2513 tcon->nohandlecache = ctx->nohandlecache;
2515 tcon->nohandlecache = true;
2516 tcon->nodelete = ctx->nodelete;
2517 tcon->local_lease = ctx->local_lease;
2518 INIT_LIST_HEAD(&tcon->pending_opens);
2520 spin_lock(&cifs_tcp_ses_lock);
2521 list_add(&tcon->tcon_list, &ses->tcon_list);
2522 spin_unlock(&cifs_tcp_ses_lock);
2532 cifs_put_tlink(struct tcon_link *tlink)
2534 if (!tlink || IS_ERR(tlink))
2537 if (!atomic_dec_and_test(&tlink->tl_count) ||
2538 test_bit(TCON_LINK_IN_TREE, &tlink->tl_flags)) {
2539 tlink->tl_time = jiffies;
2543 if (!IS_ERR(tlink_tcon(tlink)))
2544 cifs_put_tcon(tlink_tcon(tlink));
2550 compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2552 struct cifs_sb_info *old = CIFS_SB(sb);
2553 struct cifs_sb_info *new = mnt_data->cifs_sb;
2554 unsigned int oldflags = old->mnt_cifs_flags & CIFS_MOUNT_MASK;
2555 unsigned int newflags = new->mnt_cifs_flags & CIFS_MOUNT_MASK;
2557 if ((sb->s_flags & CIFS_MS_MASK) != (mnt_data->flags & CIFS_MS_MASK))
2560 if (old->mnt_cifs_serverino_autodisabled)
2561 newflags &= ~CIFS_MOUNT_SERVER_INUM;
2563 if (oldflags != newflags)
2567 * We want to share sb only if we don't specify an r/wsize or
2568 * specified r/wsize is greater than or equal to existing one.
2570 if (new->ctx->wsize && new->ctx->wsize < old->ctx->wsize)
2573 if (new->ctx->rsize && new->ctx->rsize < old->ctx->rsize)
2576 if (!uid_eq(old->ctx->linux_uid, new->ctx->linux_uid) ||
2577 !gid_eq(old->ctx->linux_gid, new->ctx->linux_gid))
2580 if (old->ctx->file_mode != new->ctx->file_mode ||
2581 old->ctx->dir_mode != new->ctx->dir_mode)
2584 if (strcmp(old->local_nls->charset, new->local_nls->charset))
2587 if (old->ctx->acregmax != new->ctx->acregmax)
2589 if (old->ctx->acdirmax != new->ctx->acdirmax)
2596 match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2598 struct cifs_sb_info *old = CIFS_SB(sb);
2599 struct cifs_sb_info *new = mnt_data->cifs_sb;
2600 bool old_set = (old->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) &&
2602 bool new_set = (new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) &&
2605 if (old_set && new_set && !strcmp(new->prepath, old->prepath))
2607 else if (!old_set && !new_set)
2614 cifs_match_super(struct super_block *sb, void *data)
2616 struct cifs_mnt_data *mnt_data = (struct cifs_mnt_data *)data;
2617 struct smb3_fs_context *ctx;
2618 struct cifs_sb_info *cifs_sb;
2619 struct TCP_Server_Info *tcp_srv;
2620 struct cifs_ses *ses;
2621 struct cifs_tcon *tcon;
2622 struct tcon_link *tlink;
2625 spin_lock(&cifs_tcp_ses_lock);
2626 cifs_sb = CIFS_SB(sb);
2627 tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
2628 if (tlink == NULL) {
2629 /* can not match superblock if tlink were ever null */
2630 spin_unlock(&cifs_tcp_ses_lock);
2633 tcon = tlink_tcon(tlink);
2635 tcp_srv = ses->server;
2637 ctx = mnt_data->ctx;
2639 if (!match_server(tcp_srv, ctx) ||
2640 !match_session(ses, ctx) ||
2641 !match_tcon(tcon, ctx) ||
2642 !match_prepath(sb, mnt_data)) {
2647 rc = compare_mount_options(sb, mnt_data);
2649 spin_unlock(&cifs_tcp_ses_lock);
2650 cifs_put_tlink(tlink);
2654 #ifdef CONFIG_DEBUG_LOCK_ALLOC
2655 static struct lock_class_key cifs_key[2];
2656 static struct lock_class_key cifs_slock_key[2];
2659 cifs_reclassify_socket4(struct socket *sock)
2661 struct sock *sk = sock->sk;
2662 BUG_ON(!sock_allow_reclassification(sk));
2663 sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS",
2664 &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]);
2668 cifs_reclassify_socket6(struct socket *sock)
2670 struct sock *sk = sock->sk;
2671 BUG_ON(!sock_allow_reclassification(sk));
2672 sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS",
2673 &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]);
2677 cifs_reclassify_socket4(struct socket *sock)
2682 cifs_reclassify_socket6(struct socket *sock)
2687 /* See RFC1001 section 14 on representation of Netbios names */
2688 static void rfc1002mangle(char *target, char *source, unsigned int length)
2692 for (i = 0, j = 0; i < (length); i++) {
2693 /* mask a nibble at a time and encode */
2694 target[j] = 'A' + (0x0F & (source[i] >> 4));
2695 target[j+1] = 'A' + (0x0F & source[i]);
2702 bind_socket(struct TCP_Server_Info *server)
2705 if (server->srcaddr.ss_family != AF_UNSPEC) {
2706 /* Bind to the specified local IP address */
2707 struct socket *socket = server->ssocket;
2708 rc = socket->ops->bind(socket,
2709 (struct sockaddr *) &server->srcaddr,
2710 sizeof(server->srcaddr));
2712 struct sockaddr_in *saddr4;
2713 struct sockaddr_in6 *saddr6;
2714 saddr4 = (struct sockaddr_in *)&server->srcaddr;
2715 saddr6 = (struct sockaddr_in6 *)&server->srcaddr;
2716 if (saddr6->sin6_family == AF_INET6)
2717 cifs_server_dbg(VFS, "Failed to bind to: %pI6c, error: %d\n",
2718 &saddr6->sin6_addr, rc);
2720 cifs_server_dbg(VFS, "Failed to bind to: %pI4, error: %d\n",
2721 &saddr4->sin_addr.s_addr, rc);
2728 ip_rfc1001_connect(struct TCP_Server_Info *server)
2732 * some servers require RFC1001 sessinit before sending
2733 * negprot - BB check reconnection in case where second
2734 * sessinit is sent but no second negprot
2736 struct rfc1002_session_packet *ses_init_buf;
2737 struct smb_hdr *smb_buf;
2738 ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet),
2741 ses_init_buf->trailer.session_req.called_len = 32;
2743 if (server->server_RFC1001_name[0] != 0)
2744 rfc1002mangle(ses_init_buf->trailer.
2745 session_req.called_name,
2746 server->server_RFC1001_name,
2747 RFC1001_NAME_LEN_WITH_NULL);
2749 rfc1002mangle(ses_init_buf->trailer.
2750 session_req.called_name,
2751 DEFAULT_CIFS_CALLED_NAME,
2752 RFC1001_NAME_LEN_WITH_NULL);
2754 ses_init_buf->trailer.session_req.calling_len = 32;
2757 * calling name ends in null (byte 16) from old smb
2760 if (server->workstation_RFC1001_name[0] != 0)
2761 rfc1002mangle(ses_init_buf->trailer.
2762 session_req.calling_name,
2763 server->workstation_RFC1001_name,
2764 RFC1001_NAME_LEN_WITH_NULL);
2766 rfc1002mangle(ses_init_buf->trailer.
2767 session_req.calling_name,
2769 RFC1001_NAME_LEN_WITH_NULL);
2771 ses_init_buf->trailer.session_req.scope1 = 0;
2772 ses_init_buf->trailer.session_req.scope2 = 0;
2773 smb_buf = (struct smb_hdr *)ses_init_buf;
2775 /* sizeof RFC1002_SESSION_REQUEST with no scope */
2776 smb_buf->smb_buf_length = cpu_to_be32(0x81000044);
2777 rc = smb_send(server, smb_buf, 0x44);
2778 kfree(ses_init_buf);
2780 * RFC1001 layer in at least one server
2781 * requires very short break before negprot
2782 * presumably because not expecting negprot
2783 * to follow so fast. This is a simple
2784 * solution that works without
2785 * complicating the code and causes no
2786 * significant slowing down on mount
2789 usleep_range(1000, 2000);
2792 * else the negprot may still work without this
2793 * even though malloc failed
2800 generic_ip_connect(struct TCP_Server_Info *server)
2805 struct socket *socket = server->ssocket;
2806 struct sockaddr *saddr;
2808 saddr = (struct sockaddr *) &server->dstaddr;
2810 if (server->dstaddr.ss_family == AF_INET6) {
2811 struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)&server->dstaddr;
2813 sport = ipv6->sin6_port;
2814 slen = sizeof(struct sockaddr_in6);
2816 cifs_dbg(FYI, "%s: connecting to [%pI6]:%d\n", __func__, &ipv6->sin6_addr,
2819 struct sockaddr_in *ipv4 = (struct sockaddr_in *)&server->dstaddr;
2821 sport = ipv4->sin_port;
2822 slen = sizeof(struct sockaddr_in);
2824 cifs_dbg(FYI, "%s: connecting to %pI4:%d\n", __func__, &ipv4->sin_addr,
2828 if (socket == NULL) {
2829 rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM,
2830 IPPROTO_TCP, &socket, 1);
2832 cifs_server_dbg(VFS, "Error %d creating socket\n", rc);
2833 server->ssocket = NULL;
2837 /* BB other socket options to set KEEPALIVE, NODELAY? */
2838 cifs_dbg(FYI, "Socket created\n");
2839 server->ssocket = socket;
2840 socket->sk->sk_allocation = GFP_NOFS;
2841 if (sfamily == AF_INET6)
2842 cifs_reclassify_socket6(socket);
2844 cifs_reclassify_socket4(socket);
2847 rc = bind_socket(server);
2852 * Eventually check for other socket options to change from
2853 * the default. sock_setsockopt not used because it expects
2856 socket->sk->sk_rcvtimeo = 7 * HZ;
2857 socket->sk->sk_sndtimeo = 5 * HZ;
2859 /* make the bufsizes depend on wsize/rsize and max requests */
2860 if (server->noautotune) {
2861 if (socket->sk->sk_sndbuf < (200 * 1024))
2862 socket->sk->sk_sndbuf = 200 * 1024;
2863 if (socket->sk->sk_rcvbuf < (140 * 1024))
2864 socket->sk->sk_rcvbuf = 140 * 1024;
2867 if (server->tcp_nodelay)
2868 tcp_sock_set_nodelay(socket->sk);
2870 cifs_dbg(FYI, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx\n",
2871 socket->sk->sk_sndbuf,
2872 socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo);
2874 rc = socket->ops->connect(socket, saddr, slen,
2875 server->noblockcnt ? O_NONBLOCK : 0);
2877 * When mounting SMB root file systems, we do not want to block in
2878 * connect. Otherwise bail out and then let cifs_reconnect() perform
2879 * reconnect failover - if possible.
2881 if (server->noblockcnt && rc == -EINPROGRESS)
2884 cifs_dbg(FYI, "Error %d connecting to server\n", rc);
2885 trace_smb3_connect_err(server->hostname, server->conn_id, &server->dstaddr, rc);
2886 sock_release(socket);
2887 server->ssocket = NULL;
2890 trace_smb3_connect_done(server->hostname, server->conn_id, &server->dstaddr);
2891 if (sport == htons(RFC1001_PORT))
2892 rc = ip_rfc1001_connect(server);
2898 ip_connect(struct TCP_Server_Info *server)
2901 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
2902 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
2904 if (server->dstaddr.ss_family == AF_INET6)
2905 sport = &addr6->sin6_port;
2907 sport = &addr->sin_port;
2912 /* try with 445 port at first */
2913 *sport = htons(CIFS_PORT);
2915 rc = generic_ip_connect(server);
2919 /* if it failed, try with 139 port */
2920 *sport = htons(RFC1001_PORT);
2923 return generic_ip_connect(server);
2926 void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon,
2927 struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
2930 * If we are reconnecting then should we check to see if
2931 * any requested capabilities changed locally e.g. via
2932 * remount but we can not do much about it here
2933 * if they have (even if we could detect it by the following)
2934 * Perhaps we could add a backpointer to array of sb from tcon
2935 * or if we change to make all sb to same share the same
2936 * sb as NFS - then we only have one backpointer to sb.
2937 * What if we wanted to mount the server share twice once with
2938 * and once without posixacls or posix paths?
2940 __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
2942 if (ctx && ctx->no_linux_ext) {
2943 tcon->fsUnixInfo.Capability = 0;
2944 tcon->unix_ext = 0; /* Unix Extensions disabled */
2945 cifs_dbg(FYI, "Linux protocol extensions disabled\n");
2948 tcon->unix_ext = 1; /* Unix Extensions supported */
2950 if (!tcon->unix_ext) {
2951 cifs_dbg(FYI, "Unix extensions disabled so not set on reconnect\n");
2955 if (!CIFSSMBQFSUnixInfo(xid, tcon)) {
2956 __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
2957 cifs_dbg(FYI, "unix caps which server supports %lld\n", cap);
2959 * check for reconnect case in which we do not
2960 * want to change the mount behavior if we can avoid it
2964 * turn off POSIX ACL and PATHNAMES if not set
2965 * originally at mount time
2967 if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0)
2968 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
2969 if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
2970 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
2971 cifs_dbg(VFS, "POSIXPATH support change\n");
2972 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
2973 } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
2974 cifs_dbg(VFS, "possible reconnect error\n");
2975 cifs_dbg(VFS, "server disabled POSIX path support\n");
2979 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
2980 cifs_dbg(VFS, "per-share encryption not supported yet\n");
2982 cap &= CIFS_UNIX_CAP_MASK;
2983 if (ctx && ctx->no_psx_acl)
2984 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
2985 else if (CIFS_UNIX_POSIX_ACL_CAP & cap) {
2986 cifs_dbg(FYI, "negotiated posix acl support\n");
2988 cifs_sb->mnt_cifs_flags |=
2989 CIFS_MOUNT_POSIXACL;
2992 if (ctx && ctx->posix_paths == 0)
2993 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
2994 else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2995 cifs_dbg(FYI, "negotiate posix pathnames\n");
2997 cifs_sb->mnt_cifs_flags |=
2998 CIFS_MOUNT_POSIX_PATHS;
3001 cifs_dbg(FYI, "Negotiate caps 0x%x\n", (int)cap);
3002 #ifdef CONFIG_CIFS_DEBUG2
3003 if (cap & CIFS_UNIX_FCNTL_CAP)
3004 cifs_dbg(FYI, "FCNTL cap\n");
3005 if (cap & CIFS_UNIX_EXTATTR_CAP)
3006 cifs_dbg(FYI, "EXTATTR cap\n");
3007 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
3008 cifs_dbg(FYI, "POSIX path cap\n");
3009 if (cap & CIFS_UNIX_XATTR_CAP)
3010 cifs_dbg(FYI, "XATTR cap\n");
3011 if (cap & CIFS_UNIX_POSIX_ACL_CAP)
3012 cifs_dbg(FYI, "POSIX ACL cap\n");
3013 if (cap & CIFS_UNIX_LARGE_READ_CAP)
3014 cifs_dbg(FYI, "very large read cap\n");
3015 if (cap & CIFS_UNIX_LARGE_WRITE_CAP)
3016 cifs_dbg(FYI, "very large write cap\n");
3017 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)
3018 cifs_dbg(FYI, "transport encryption cap\n");
3019 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
3020 cifs_dbg(FYI, "mandatory transport encryption cap\n");
3021 #endif /* CIFS_DEBUG2 */
3022 if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) {
3024 cifs_dbg(FYI, "resetting capabilities failed\n");
3026 cifs_dbg(VFS, "Negotiating Unix capabilities with the server failed. Consider mounting with the Unix Extensions disabled if problems are found by specifying the nounix mount option.\n");
3032 int cifs_setup_cifs_sb(struct cifs_sb_info *cifs_sb)
3034 struct smb3_fs_context *ctx = cifs_sb->ctx;
3036 INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks);
3038 spin_lock_init(&cifs_sb->tlink_tree_lock);
3039 cifs_sb->tlink_tree = RB_ROOT;
3041 cifs_dbg(FYI, "file mode: %04ho dir mode: %04ho\n",
3042 ctx->file_mode, ctx->dir_mode);
3044 /* this is needed for ASCII cp to Unicode converts */
3045 if (ctx->iocharset == NULL) {
3046 /* load_nls_default cannot return null */
3047 cifs_sb->local_nls = load_nls_default();
3049 cifs_sb->local_nls = load_nls(ctx->iocharset);
3050 if (cifs_sb->local_nls == NULL) {
3051 cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n",
3056 ctx->local_nls = cifs_sb->local_nls;
3058 smb3_update_mnt_flags(cifs_sb);
3061 cifs_dbg(FYI, "mounting share using direct i/o\n");
3062 if (ctx->cache_ro) {
3063 cifs_dbg(VFS, "mounting share with read only caching. Ensure that the share will not be modified while in use.\n");
3064 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RO_CACHE;
3065 } else if (ctx->cache_rw) {
3066 cifs_dbg(VFS, "mounting share in single client RW caching mode. Ensure that no other systems will be accessing the share.\n");
3067 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_RO_CACHE |
3068 CIFS_MOUNT_RW_CACHE);
3071 if ((ctx->cifs_acl) && (ctx->dynperm))
3072 cifs_dbg(VFS, "mount option dynperm ignored if cifsacl mount option supported\n");
3075 cifs_sb->prepath = kstrdup(ctx->prepath, GFP_KERNEL);
3076 if (cifs_sb->prepath == NULL)
3078 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3084 /* Release all succeed connections */
3085 static inline void mount_put_conns(struct mount_ctx *mnt_ctx)
3090 cifs_put_tcon(mnt_ctx->tcon);
3091 else if (mnt_ctx->ses)
3092 cifs_put_smb_ses(mnt_ctx->ses);
3093 else if (mnt_ctx->server)
3094 cifs_put_tcp_session(mnt_ctx->server, 0);
3095 mnt_ctx->cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_POSIX_PATHS;
3096 free_xid(mnt_ctx->xid);
3099 /* Get connections for tcp, ses and tcon */
3100 static int mount_get_conns(struct mount_ctx *mnt_ctx)
3103 struct TCP_Server_Info *server = NULL;
3104 struct cifs_ses *ses = NULL;
3105 struct cifs_tcon *tcon = NULL;
3106 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3107 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3112 /* get a reference to a tcp session */
3113 server = cifs_get_tcp_session(ctx, NULL);
3114 if (IS_ERR(server)) {
3115 rc = PTR_ERR(server);
3120 /* get a reference to a SMB session */
3121 ses = cifs_get_smb_ses(server, ctx);
3128 if ((ctx->persistent == true) && (!(ses->server->capabilities &
3129 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES))) {
3130 cifs_server_dbg(VFS, "persistent handles not supported by server\n");
3135 /* search for existing tcon to this server share */
3136 tcon = cifs_get_tcon(ses, ctx);
3143 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
3144 if (tcon->posix_extensions)
3145 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS;
3147 /* tell server which Unix caps we support */
3148 if (cap_unix(tcon->ses)) {
3150 * reset of caps checks mount to see if unix extensions disabled
3151 * for just this mount.
3153 reset_cifs_unix_caps(xid, tcon, cifs_sb, ctx);
3154 spin_lock(&cifs_tcp_ses_lock);
3155 if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) &&
3156 (le64_to_cpu(tcon->fsUnixInfo.Capability) &
3157 CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)) {
3158 spin_unlock(&cifs_tcp_ses_lock);
3162 spin_unlock(&cifs_tcp_ses_lock);
3164 tcon->unix_ext = 0; /* server does not support them */
3166 /* do not care if a following call succeed - informational */
3167 if (!tcon->pipe && server->ops->qfs_tcon) {
3168 server->ops->qfs_tcon(xid, tcon, cifs_sb);
3169 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE) {
3170 if (tcon->fsDevInfo.DeviceCharacteristics &
3171 cpu_to_le32(FILE_READ_ONLY_DEVICE))
3172 cifs_dbg(VFS, "mounted to read only share\n");
3173 else if ((cifs_sb->mnt_cifs_flags &
3174 CIFS_MOUNT_RW_CACHE) == 0)
3175 cifs_dbg(VFS, "read only mount of RW share\n");
3176 /* no need to log a RW mount of a typical RW share */
3181 * Clamp the rsize/wsize mount arguments if they are too big for the server
3182 * and set the rsize/wsize to the negotiated values if not passed in by
3185 if ((cifs_sb->ctx->wsize == 0) ||
3186 (cifs_sb->ctx->wsize > server->ops->negotiate_wsize(tcon, ctx)))
3187 cifs_sb->ctx->wsize = server->ops->negotiate_wsize(tcon, ctx);
3188 if ((cifs_sb->ctx->rsize == 0) ||
3189 (cifs_sb->ctx->rsize > server->ops->negotiate_rsize(tcon, ctx)))
3190 cifs_sb->ctx->rsize = server->ops->negotiate_rsize(tcon, ctx);
3193 * The cookie is initialized from volume info returned above.
3194 * Inside cifs_fscache_get_super_cookie it checks
3195 * that we do not get super cookie twice.
3197 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE)
3198 cifs_fscache_get_super_cookie(tcon);
3201 mnt_ctx->server = server;
3203 mnt_ctx->tcon = tcon;
3209 static int mount_setup_tlink(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses,
3210 struct cifs_tcon *tcon)
3212 struct tcon_link *tlink;
3214 /* hang the tcon off of the superblock */
3215 tlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
3219 tlink->tl_uid = ses->linux_uid;
3220 tlink->tl_tcon = tcon;
3221 tlink->tl_time = jiffies;
3222 set_bit(TCON_LINK_MASTER, &tlink->tl_flags);
3223 set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
3225 cifs_sb->master_tlink = tlink;
3226 spin_lock(&cifs_sb->tlink_tree_lock);
3227 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
3228 spin_unlock(&cifs_sb->tlink_tree_lock);
3230 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
3235 #ifdef CONFIG_CIFS_DFS_UPCALL
3236 /* Get unique dfs connections */
3237 static int mount_get_dfs_conns(struct mount_ctx *mnt_ctx)
3241 mnt_ctx->fs_ctx->nosharesock = true;
3242 rc = mount_get_conns(mnt_ctx);
3243 if (mnt_ctx->server) {
3244 cifs_dbg(FYI, "%s: marking tcp session as a dfs connection\n", __func__);
3245 spin_lock(&cifs_tcp_ses_lock);
3246 mnt_ctx->server->is_dfs_conn = true;
3247 spin_unlock(&cifs_tcp_ses_lock);
3253 * cifs_build_path_to_root returns full path to root when we do not have an
3254 * existing connection (tcon)
3257 build_unc_path_to_root(const struct smb3_fs_context *ctx,
3258 const struct cifs_sb_info *cifs_sb, bool useppath)
3260 char *full_path, *pos;
3261 unsigned int pplen = useppath && ctx->prepath ?
3262 strlen(ctx->prepath) + 1 : 0;
3263 unsigned int unc_len = strnlen(ctx->UNC, MAX_TREE_SIZE + 1);
3265 if (unc_len > MAX_TREE_SIZE)
3266 return ERR_PTR(-EINVAL);
3268 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL);
3269 if (full_path == NULL)
3270 return ERR_PTR(-ENOMEM);
3272 memcpy(full_path, ctx->UNC, unc_len);
3273 pos = full_path + unc_len;
3276 *pos = CIFS_DIR_SEP(cifs_sb);
3277 memcpy(pos + 1, ctx->prepath, pplen);
3281 *pos = '\0'; /* add trailing null */
3282 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
3283 cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path);
3288 * expand_dfs_referral - Update cifs_sb from dfs referral path
3290 * cifs_sb->ctx->mount_options will be (re-)allocated to a string containing updated options for the
3291 * submount. Otherwise it will be left untouched.
3293 static int expand_dfs_referral(struct mount_ctx *mnt_ctx, const char *full_path,
3294 struct dfs_info3_param *referral)
3297 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3298 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3299 char *fake_devname = NULL, *mdata = NULL;
3301 mdata = cifs_compose_mount_options(cifs_sb->ctx->mount_options, full_path + 1, referral,
3303 if (IS_ERR(mdata)) {
3304 rc = PTR_ERR(mdata);
3308 * We can not clear out the whole structure since we no longer have an explicit
3309 * function to parse a mount-string. Instead we need to clear out the individual
3310 * fields that are no longer valid.
3312 kfree(ctx->prepath);
3313 ctx->prepath = NULL;
3314 rc = cifs_setup_volume_info(ctx, mdata, fake_devname);
3316 kfree(fake_devname);
3317 kfree(cifs_sb->ctx->mount_options);
3318 cifs_sb->ctx->mount_options = mdata;
3324 /* TODO: all callers to this are broken. We are not parsing mount_options here
3325 * we should pass a clone of the original context?
3328 cifs_setup_volume_info(struct smb3_fs_context *ctx, const char *mntopts, const char *devname)
3333 cifs_dbg(FYI, "%s: devname=%s\n", __func__, devname);
3334 rc = smb3_parse_devname(devname, ctx);
3336 cifs_dbg(VFS, "%s: failed to parse %s: %d\n", __func__, devname, rc);
3344 rc = smb3_parse_opt(mntopts, "ip", &ip);
3346 cifs_dbg(VFS, "%s: failed to parse ip options: %d\n", __func__, rc);
3350 rc = cifs_convert_address((struct sockaddr *)&ctx->dstaddr, ip, strlen(ip));
3353 cifs_dbg(VFS, "%s: failed to convert ip address\n", __func__);
3358 if (ctx->nullauth) {
3359 cifs_dbg(FYI, "Anonymous login\n");
3360 kfree(ctx->username);
3361 ctx->username = NULL;
3362 } else if (ctx->username) {
3363 /* BB fixme parse for domain name here */
3364 cifs_dbg(FYI, "Username: %s\n", ctx->username);
3366 cifs_dbg(VFS, "No username specified\n");
3367 /* In userspace mount helper we can get user name from alternate
3368 locations such as env variables and files on disk */
3376 cifs_are_all_path_components_accessible(struct TCP_Server_Info *server,
3378 struct cifs_tcon *tcon,
3379 struct cifs_sb_info *cifs_sb,
3386 int skip = added_treename ? 1 : 0;
3388 sep = CIFS_DIR_SEP(cifs_sb);
3391 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, "");
3393 /* skip separators */
3398 /* next separator */
3399 while (*s && *s != sep)
3402 * if the treename is added, we then have to skip the first
3403 * part within the separators
3410 * temporarily null-terminate the path at the end of
3411 * the current component
3415 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3423 * Check if path is remote (e.g. a DFS share). Return -EREMOTE if it is,
3426 static int is_path_remote(struct mount_ctx *mnt_ctx)
3429 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3430 struct TCP_Server_Info *server = mnt_ctx->server;
3431 unsigned int xid = mnt_ctx->xid;
3432 struct cifs_tcon *tcon = mnt_ctx->tcon;
3433 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3436 if (!server->ops->is_path_accessible)
3440 * cifs_build_path_to_root works only when we have a valid tcon
3442 full_path = cifs_build_path_to_root(ctx, cifs_sb, tcon,
3443 tcon->Flags & SMB_SHARE_IS_IN_DFS);
3444 if (full_path == NULL)
3447 cifs_dbg(FYI, "%s: full_path: %s\n", __func__, full_path);
3449 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3451 #ifdef CONFIG_CIFS_DFS_UPCALL
3452 if (rc == -ENOENT && is_tcon_dfs(tcon))
3453 rc = cifs_dfs_query_info_nonascii_quirk(xid, tcon, cifs_sb,
3456 if (rc != 0 && rc != -EREMOTE) {
3461 if (rc != -EREMOTE) {
3462 rc = cifs_are_all_path_components_accessible(server, xid, tcon,
3463 cifs_sb, full_path, tcon->Flags & SMB_SHARE_IS_IN_DFS);
3465 cifs_server_dbg(VFS, "cannot query dirs between root and final path, enabling CIFS_MOUNT_USE_PREFIX_PATH\n");
3466 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3475 #ifdef CONFIG_CIFS_DFS_UPCALL
3476 static void set_root_ses(struct mount_ctx *mnt_ctx)
3479 spin_lock(&cifs_tcp_ses_lock);
3480 mnt_ctx->ses->ses_count++;
3481 spin_unlock(&cifs_tcp_ses_lock);
3482 dfs_cache_add_refsrv_session(&mnt_ctx->mount_id, mnt_ctx->ses);
3484 mnt_ctx->root_ses = mnt_ctx->ses;
3487 static int is_dfs_mount(struct mount_ctx *mnt_ctx, bool *isdfs, struct dfs_cache_tgt_list *root_tl)
3490 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3491 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3495 rc = mount_get_conns(mnt_ctx);
3497 * If called with 'nodfs' mount option, then skip DFS resolving. Otherwise unconditionally
3498 * try to get an DFS referral (even cached) to determine whether it is an DFS mount.
3500 * Skip prefix path to provide support for DFS referrals from w2k8 servers which don't seem
3501 * to respond with PATH_NOT_COVERED to requests that include the prefix.
3503 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS) ||
3504 dfs_cache_find(mnt_ctx->xid, mnt_ctx->ses, cifs_sb->local_nls, cifs_remap(cifs_sb),
3505 ctx->UNC + 1, NULL, root_tl)) {
3508 /* Check if it is fully accessible and then mount it */
3509 rc = is_path_remote(mnt_ctx);
3512 else if (rc != -EREMOTE)
3518 static int connect_dfs_target(struct mount_ctx *mnt_ctx, const char *full_path,
3519 const char *ref_path, struct dfs_cache_tgt_iterator *tit)
3522 struct dfs_info3_param ref = {};
3523 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3524 char *oldmnt = cifs_sb->ctx->mount_options;
3526 cifs_dbg(FYI, "%s: full_path=%s ref_path=%s target=%s\n", __func__, full_path, ref_path,
3527 dfs_cache_get_tgt_name(tit));
3529 rc = dfs_cache_get_tgt_referral(ref_path, tit, &ref);
3533 rc = expand_dfs_referral(mnt_ctx, full_path, &ref);
3537 /* Connect to new target only if we were redirected (e.g. mount options changed) */
3538 if (oldmnt != cifs_sb->ctx->mount_options) {
3539 mount_put_conns(mnt_ctx);
3540 rc = mount_get_dfs_conns(mnt_ctx);
3543 if (cifs_is_referral_server(mnt_ctx->tcon, &ref))
3544 set_root_ses(mnt_ctx);
3545 rc = dfs_cache_update_tgthint(mnt_ctx->xid, mnt_ctx->root_ses, cifs_sb->local_nls,
3546 cifs_remap(cifs_sb), ref_path, tit);
3550 free_dfs_info_param(&ref);
3554 static int connect_dfs_root(struct mount_ctx *mnt_ctx, struct dfs_cache_tgt_list *root_tl)
3558 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3559 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3560 struct dfs_cache_tgt_iterator *tit;
3562 /* Put initial connections as they might be shared with other mounts. We need unique dfs
3563 * connections per mount to properly failover, so mount_get_dfs_conns() must be used from
3566 mount_put_conns(mnt_ctx);
3567 mount_get_dfs_conns(mnt_ctx);
3568 set_root_ses(mnt_ctx);
3570 full_path = build_unc_path_to_root(ctx, cifs_sb, true);
3571 if (IS_ERR(full_path))
3572 return PTR_ERR(full_path);
3574 mnt_ctx->origin_fullpath = dfs_cache_canonical_path(ctx->UNC, cifs_sb->local_nls,
3575 cifs_remap(cifs_sb));
3576 if (IS_ERR(mnt_ctx->origin_fullpath)) {
3577 rc = PTR_ERR(mnt_ctx->origin_fullpath);
3578 mnt_ctx->origin_fullpath = NULL;
3582 /* Try all dfs root targets */
3583 for (rc = -ENOENT, tit = dfs_cache_get_tgt_iterator(root_tl);
3584 tit; tit = dfs_cache_get_next_tgt(root_tl, tit)) {
3585 rc = connect_dfs_target(mnt_ctx, full_path, mnt_ctx->origin_fullpath + 1, tit);
3587 mnt_ctx->leaf_fullpath = kstrdup(mnt_ctx->origin_fullpath, GFP_KERNEL);
3588 if (!mnt_ctx->leaf_fullpath)
3599 static int __follow_dfs_link(struct mount_ctx *mnt_ctx)
3602 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3603 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3605 struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl);
3606 struct dfs_cache_tgt_iterator *tit;
3608 full_path = build_unc_path_to_root(ctx, cifs_sb, true);
3609 if (IS_ERR(full_path))
3610 return PTR_ERR(full_path);
3612 kfree(mnt_ctx->leaf_fullpath);
3613 mnt_ctx->leaf_fullpath = dfs_cache_canonical_path(full_path, cifs_sb->local_nls,
3614 cifs_remap(cifs_sb));
3615 if (IS_ERR(mnt_ctx->leaf_fullpath)) {
3616 rc = PTR_ERR(mnt_ctx->leaf_fullpath);
3617 mnt_ctx->leaf_fullpath = NULL;
3621 /* Get referral from dfs link */
3622 rc = dfs_cache_find(mnt_ctx->xid, mnt_ctx->root_ses, cifs_sb->local_nls,
3623 cifs_remap(cifs_sb), mnt_ctx->leaf_fullpath + 1, NULL, &tl);
3627 /* Try all dfs link targets. If an I/O fails from currently connected DFS target with an
3628 * error other than STATUS_PATH_NOT_COVERED (-EREMOTE), then retry it from other targets as
3629 * specified in MS-DFSC "3.1.5.2 I/O Operation to Target Fails with an Error Other Than
3630 * STATUS_PATH_NOT_COVERED."
3632 for (rc = -ENOENT, tit = dfs_cache_get_tgt_iterator(&tl);
3633 tit; tit = dfs_cache_get_next_tgt(&tl, tit)) {
3634 rc = connect_dfs_target(mnt_ctx, full_path, mnt_ctx->leaf_fullpath + 1, tit);
3636 rc = is_path_remote(mnt_ctx);
3637 if (!rc || rc == -EREMOTE)
3644 dfs_cache_free_tgts(&tl);
3648 static int follow_dfs_link(struct mount_ctx *mnt_ctx)
3651 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3652 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3656 full_path = build_unc_path_to_root(ctx, cifs_sb, true);
3657 if (IS_ERR(full_path))
3658 return PTR_ERR(full_path);
3660 kfree(mnt_ctx->origin_fullpath);
3661 mnt_ctx->origin_fullpath = dfs_cache_canonical_path(full_path, cifs_sb->local_nls,
3662 cifs_remap(cifs_sb));
3665 if (IS_ERR(mnt_ctx->origin_fullpath)) {
3666 rc = PTR_ERR(mnt_ctx->origin_fullpath);
3667 mnt_ctx->origin_fullpath = NULL;
3672 rc = __follow_dfs_link(mnt_ctx);
3673 if (!rc || rc != -EREMOTE)
3675 } while (rc = -ELOOP, ++num_links < MAX_NESTED_LINKS);
3680 /* Set up DFS referral paths for failover */
3681 static void setup_server_referral_paths(struct mount_ctx *mnt_ctx)
3683 struct TCP_Server_Info *server = mnt_ctx->server;
3685 mutex_lock(&server->refpath_lock);
3686 server->origin_fullpath = mnt_ctx->origin_fullpath;
3687 server->leaf_fullpath = mnt_ctx->leaf_fullpath;
3688 server->current_fullpath = mnt_ctx->leaf_fullpath;
3689 mutex_unlock(&server->refpath_lock);
3690 mnt_ctx->origin_fullpath = mnt_ctx->leaf_fullpath = NULL;
3693 int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
3696 struct mount_ctx mnt_ctx = { .cifs_sb = cifs_sb, .fs_ctx = ctx, };
3697 struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl);
3700 rc = is_dfs_mount(&mnt_ctx, &isdfs, &tl);
3706 uuid_gen(&mnt_ctx.mount_id);
3707 rc = connect_dfs_root(&mnt_ctx, &tl);
3708 dfs_cache_free_tgts(&tl);
3713 rc = is_path_remote(&mnt_ctx);
3715 rc = follow_dfs_link(&mnt_ctx);
3719 setup_server_referral_paths(&mnt_ctx);
3721 * After reconnecting to a different server, unique ids won't match anymore, so we disable
3722 * serverino. This prevents dentry revalidation to think the dentry are stale (ESTALE).
3724 cifs_autodisable_serverino(cifs_sb);
3726 * Force the use of prefix path to support failover on DFS paths that resolve to targets
3727 * that have different prefix paths.
3729 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3730 kfree(cifs_sb->prepath);
3731 cifs_sb->prepath = ctx->prepath;
3732 ctx->prepath = NULL;
3733 uuid_copy(&cifs_sb->dfs_mount_id, &mnt_ctx.mount_id);
3736 free_xid(mnt_ctx.xid);
3737 cifs_try_adding_channels(cifs_sb, mnt_ctx.ses);
3738 return mount_setup_tlink(cifs_sb, mnt_ctx.ses, mnt_ctx.tcon);
3741 dfs_cache_put_refsrv_sessions(&mnt_ctx.mount_id);
3742 kfree(mnt_ctx.origin_fullpath);
3743 kfree(mnt_ctx.leaf_fullpath);
3744 mount_put_conns(&mnt_ctx);
3748 int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
3751 struct mount_ctx mnt_ctx = { .cifs_sb = cifs_sb, .fs_ctx = ctx, };
3753 rc = mount_get_conns(&mnt_ctx);
3758 rc = is_path_remote(&mnt_ctx);
3765 free_xid(mnt_ctx.xid);
3766 return mount_setup_tlink(cifs_sb, mnt_ctx.ses, mnt_ctx.tcon);
3769 mount_put_conns(&mnt_ctx);
3775 * Issue a TREE_CONNECT request.
3778 CIFSTCon(const unsigned int xid, struct cifs_ses *ses,
3779 const char *tree, struct cifs_tcon *tcon,
3780 const struct nls_table *nls_codepage)
3782 struct smb_hdr *smb_buffer;
3783 struct smb_hdr *smb_buffer_response;
3786 unsigned char *bcc_ptr;
3789 __u16 bytes_left, count;
3794 smb_buffer = cifs_buf_get();
3795 if (smb_buffer == NULL)
3798 smb_buffer_response = smb_buffer;
3800 header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX,
3801 NULL /*no tid */ , 4 /*wct */ );
3803 smb_buffer->Mid = get_next_mid(ses->server);
3804 smb_buffer->Uid = ses->Suid;
3805 pSMB = (TCONX_REQ *) smb_buffer;
3806 pSMBr = (TCONX_RSP *) smb_buffer_response;
3808 pSMB->AndXCommand = 0xFF;
3809 pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO);
3810 bcc_ptr = &pSMB->Password[0];
3811 if (tcon->pipe || (ses->server->sec_mode & SECMODE_USER)) {
3812 pSMB->PasswordLength = cpu_to_le16(1); /* minimum */
3813 *bcc_ptr = 0; /* password is null byte */
3814 bcc_ptr++; /* skip password */
3815 /* already aligned so no need to do it below */
3818 if (ses->server->sign)
3819 smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
3821 if (ses->capabilities & CAP_STATUS32) {
3822 smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS;
3824 if (ses->capabilities & CAP_DFS) {
3825 smb_buffer->Flags2 |= SMBFLG2_DFS;
3827 if (ses->capabilities & CAP_UNICODE) {
3828 smb_buffer->Flags2 |= SMBFLG2_UNICODE;
3830 cifs_strtoUTF16((__le16 *) bcc_ptr, tree,
3831 6 /* max utf8 char length in bytes */ *
3832 (/* server len*/ + 256 /* share len */), nls_codepage);
3833 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */
3834 bcc_ptr += 2; /* skip trailing null */
3835 } else { /* ASCII */
3836 strcpy(bcc_ptr, tree);
3837 bcc_ptr += strlen(tree) + 1;
3839 strcpy(bcc_ptr, "?????");
3840 bcc_ptr += strlen("?????");
3842 count = bcc_ptr - &pSMB->Password[0];
3843 be32_add_cpu(&pSMB->hdr.smb_buf_length, count);
3844 pSMB->ByteCount = cpu_to_le16(count);
3846 rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length,
3849 /* above now done in SendReceive */
3853 tcon->tid = smb_buffer_response->Tid;
3854 bcc_ptr = pByteArea(smb_buffer_response);
3855 bytes_left = get_bcc(smb_buffer_response);
3856 length = strnlen(bcc_ptr, bytes_left - 2);
3857 if (smb_buffer->Flags2 & SMBFLG2_UNICODE)
3863 /* skip service field (NB: this field is always ASCII) */
3865 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') &&
3866 (bcc_ptr[2] == 'C')) {
3867 cifs_dbg(FYI, "IPC connection\n");
3871 } else if (length == 2) {
3872 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) {
3873 /* the most common case */
3874 cifs_dbg(FYI, "disk share connection\n");
3877 bcc_ptr += length + 1;
3878 bytes_left -= (length + 1);
3879 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
3881 /* mostly informational -- no need to fail on error here */
3882 kfree(tcon->nativeFileSystem);
3883 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr,
3884 bytes_left, is_unicode,
3887 cifs_dbg(FYI, "nativeFileSystem=%s\n", tcon->nativeFileSystem);
3889 if ((smb_buffer_response->WordCount == 3) ||
3890 (smb_buffer_response->WordCount == 7))
3891 /* field is in same location */
3892 tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport);
3895 cifs_dbg(FYI, "Tcon flags: 0x%x\n", tcon->Flags);
3898 cifs_buf_release(smb_buffer);
3902 static void delayed_free(struct rcu_head *p)
3904 struct cifs_sb_info *cifs_sb = container_of(p, struct cifs_sb_info, rcu);
3906 unload_nls(cifs_sb->local_nls);
3907 smb3_cleanup_fs_context(cifs_sb->ctx);
3912 cifs_umount(struct cifs_sb_info *cifs_sb)
3914 struct rb_root *root = &cifs_sb->tlink_tree;
3915 struct rb_node *node;
3916 struct tcon_link *tlink;
3918 cancel_delayed_work_sync(&cifs_sb->prune_tlinks);
3920 spin_lock(&cifs_sb->tlink_tree_lock);
3921 while ((node = rb_first(root))) {
3922 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
3923 cifs_get_tlink(tlink);
3924 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
3925 rb_erase(node, root);
3927 spin_unlock(&cifs_sb->tlink_tree_lock);
3928 cifs_put_tlink(tlink);
3929 spin_lock(&cifs_sb->tlink_tree_lock);
3931 spin_unlock(&cifs_sb->tlink_tree_lock);
3933 kfree(cifs_sb->prepath);
3934 #ifdef CONFIG_CIFS_DFS_UPCALL
3935 dfs_cache_put_refsrv_sessions(&cifs_sb->dfs_mount_id);
3937 call_rcu(&cifs_sb->rcu, delayed_free);
3941 cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses,
3942 struct TCP_Server_Info *server)
3946 if (!server->ops->need_neg || !server->ops->negotiate)
3949 /* only send once per connect */
3950 spin_lock(&cifs_tcp_ses_lock);
3951 if (!server->ops->need_neg(server) ||
3952 server->tcpStatus != CifsNeedNegotiate) {
3953 spin_unlock(&cifs_tcp_ses_lock);
3956 server->tcpStatus = CifsInNegotiate;
3957 spin_unlock(&cifs_tcp_ses_lock);
3959 rc = server->ops->negotiate(xid, ses, server);
3961 spin_lock(&cifs_tcp_ses_lock);
3962 if (server->tcpStatus == CifsInNegotiate)
3963 server->tcpStatus = CifsNeedSessSetup;
3966 spin_unlock(&cifs_tcp_ses_lock);
3968 spin_lock(&cifs_tcp_ses_lock);
3969 if (server->tcpStatus == CifsInNegotiate)
3970 server->tcpStatus = CifsNeedNegotiate;
3971 spin_unlock(&cifs_tcp_ses_lock);
3978 cifs_setup_session(const unsigned int xid, struct cifs_ses *ses,
3979 struct TCP_Server_Info *server,
3980 struct nls_table *nls_info)
3983 bool is_binding = false;
3985 /* only send once per connect */
3986 spin_lock(&cifs_tcp_ses_lock);
3987 if ((server->tcpStatus != CifsNeedSessSetup) &&
3988 (ses->status == CifsGood)) {
3989 spin_unlock(&cifs_tcp_ses_lock);
3992 server->tcpStatus = CifsInSessSetup;
3993 spin_unlock(&cifs_tcp_ses_lock);
3995 spin_lock(&ses->chan_lock);
3996 is_binding = !CIFS_ALL_CHANS_NEED_RECONNECT(ses);
3997 spin_unlock(&ses->chan_lock);
4000 ses->capabilities = server->capabilities;
4001 if (!linuxExtEnabled)
4002 ses->capabilities &= (~server->vals->cap_unix);
4004 if (ses->auth_key.response) {
4005 cifs_dbg(FYI, "Free previous auth_key.response = %p\n",
4006 ses->auth_key.response);
4007 kfree(ses->auth_key.response);
4008 ses->auth_key.response = NULL;
4009 ses->auth_key.len = 0;
4013 cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n",
4014 server->sec_mode, server->capabilities, server->timeAdj);
4016 if (server->ops->sess_setup)
4017 rc = server->ops->sess_setup(xid, ses, server, nls_info);
4020 cifs_server_dbg(VFS, "Send error in SessSetup = %d\n", rc);
4021 spin_lock(&cifs_tcp_ses_lock);
4022 if (server->tcpStatus == CifsInSessSetup)
4023 server->tcpStatus = CifsNeedSessSetup;
4024 spin_unlock(&cifs_tcp_ses_lock);
4026 spin_lock(&cifs_tcp_ses_lock);
4027 if (server->tcpStatus == CifsInSessSetup)
4028 server->tcpStatus = CifsGood;
4029 /* Even if one channel is active, session is in good state */
4030 ses->status = CifsGood;
4031 spin_unlock(&cifs_tcp_ses_lock);
4033 spin_lock(&ses->chan_lock);
4034 cifs_chan_clear_need_reconnect(ses, server);
4035 spin_unlock(&ses->chan_lock);
4042 cifs_set_vol_auth(struct smb3_fs_context *ctx, struct cifs_ses *ses)
4044 ctx->sectype = ses->sectype;
4046 /* krb5 is special, since we don't need username or pw */
4047 if (ctx->sectype == Kerberos)
4050 return cifs_set_cifscreds(ctx, ses);
4053 static struct cifs_tcon *
4054 cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid)
4057 struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb);
4058 struct cifs_ses *ses;
4059 struct cifs_tcon *tcon = NULL;
4060 struct smb3_fs_context *ctx;
4062 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
4064 return ERR_PTR(-ENOMEM);
4066 ctx->local_nls = cifs_sb->local_nls;
4067 ctx->linux_uid = fsuid;
4068 ctx->cred_uid = fsuid;
4069 ctx->UNC = master_tcon->treeName;
4070 ctx->retry = master_tcon->retry;
4071 ctx->nocase = master_tcon->nocase;
4072 ctx->nohandlecache = master_tcon->nohandlecache;
4073 ctx->local_lease = master_tcon->local_lease;
4074 ctx->no_lease = master_tcon->no_lease;
4075 ctx->resilient = master_tcon->use_resilient;
4076 ctx->persistent = master_tcon->use_persistent;
4077 ctx->handle_timeout = master_tcon->handle_timeout;
4078 ctx->no_linux_ext = !master_tcon->unix_ext;
4079 ctx->linux_ext = master_tcon->posix_extensions;
4080 ctx->sectype = master_tcon->ses->sectype;
4081 ctx->sign = master_tcon->ses->sign;
4082 ctx->seal = master_tcon->seal;
4083 ctx->witness = master_tcon->use_witness;
4085 rc = cifs_set_vol_auth(ctx, master_tcon->ses);
4091 /* get a reference for the same TCP session */
4092 spin_lock(&cifs_tcp_ses_lock);
4093 ++master_tcon->ses->server->srv_count;
4094 spin_unlock(&cifs_tcp_ses_lock);
4096 ses = cifs_get_smb_ses(master_tcon->ses->server, ctx);
4098 tcon = (struct cifs_tcon *)ses;
4099 cifs_put_tcp_session(master_tcon->ses->server, 0);
4103 tcon = cifs_get_tcon(ses, ctx);
4105 cifs_put_smb_ses(ses);
4110 reset_cifs_unix_caps(0, tcon, NULL, ctx);
4113 kfree(ctx->username);
4114 kfree_sensitive(ctx->password);
4121 cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb)
4123 return tlink_tcon(cifs_sb_master_tlink(cifs_sb));
4126 /* find and return a tlink with given uid */
4127 static struct tcon_link *
4128 tlink_rb_search(struct rb_root *root, kuid_t uid)
4130 struct rb_node *node = root->rb_node;
4131 struct tcon_link *tlink;
4134 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
4136 if (uid_gt(tlink->tl_uid, uid))
4137 node = node->rb_left;
4138 else if (uid_lt(tlink->tl_uid, uid))
4139 node = node->rb_right;
4146 /* insert a tcon_link into the tree */
4148 tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink)
4150 struct rb_node **new = &(root->rb_node), *parent = NULL;
4151 struct tcon_link *tlink;
4154 tlink = rb_entry(*new, struct tcon_link, tl_rbnode);
4157 if (uid_gt(tlink->tl_uid, new_tlink->tl_uid))
4158 new = &((*new)->rb_left);
4160 new = &((*new)->rb_right);
4163 rb_link_node(&new_tlink->tl_rbnode, parent, new);
4164 rb_insert_color(&new_tlink->tl_rbnode, root);
4168 * Find or construct an appropriate tcon given a cifs_sb and the fsuid of the
4171 * If the superblock doesn't refer to a multiuser mount, then just return
4172 * the master tcon for the mount.
4174 * First, search the rbtree for an existing tcon for this fsuid. If one
4175 * exists, then check to see if it's pending construction. If it is then wait
4176 * for construction to complete. Once it's no longer pending, check to see if
4177 * it failed and either return an error or retry construction, depending on
4180 * If one doesn't exist then insert a new tcon_link struct into the tree and
4181 * try to construct a new one.
4184 cifs_sb_tlink(struct cifs_sb_info *cifs_sb)
4187 kuid_t fsuid = current_fsuid();
4188 struct tcon_link *tlink, *newtlink;
4190 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
4191 return cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
4193 spin_lock(&cifs_sb->tlink_tree_lock);
4194 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
4196 cifs_get_tlink(tlink);
4197 spin_unlock(&cifs_sb->tlink_tree_lock);
4199 if (tlink == NULL) {
4200 newtlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
4201 if (newtlink == NULL)
4202 return ERR_PTR(-ENOMEM);
4203 newtlink->tl_uid = fsuid;
4204 newtlink->tl_tcon = ERR_PTR(-EACCES);
4205 set_bit(TCON_LINK_PENDING, &newtlink->tl_flags);
4206 set_bit(TCON_LINK_IN_TREE, &newtlink->tl_flags);
4207 cifs_get_tlink(newtlink);
4209 spin_lock(&cifs_sb->tlink_tree_lock);
4210 /* was one inserted after previous search? */
4211 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
4213 cifs_get_tlink(tlink);
4214 spin_unlock(&cifs_sb->tlink_tree_lock);
4216 goto wait_for_construction;
4219 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
4220 spin_unlock(&cifs_sb->tlink_tree_lock);
4222 wait_for_construction:
4223 ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING,
4224 TASK_INTERRUPTIBLE);
4226 cifs_put_tlink(tlink);
4227 return ERR_PTR(-ERESTARTSYS);
4230 /* if it's good, return it */
4231 if (!IS_ERR(tlink->tl_tcon))
4234 /* return error if we tried this already recently */
4235 if (time_before(jiffies, tlink->tl_time + TLINK_ERROR_EXPIRE)) {
4236 cifs_put_tlink(tlink);
4237 return ERR_PTR(-EACCES);
4240 if (test_and_set_bit(TCON_LINK_PENDING, &tlink->tl_flags))
4241 goto wait_for_construction;
4244 tlink->tl_tcon = cifs_construct_tcon(cifs_sb, fsuid);
4245 clear_bit(TCON_LINK_PENDING, &tlink->tl_flags);
4246 wake_up_bit(&tlink->tl_flags, TCON_LINK_PENDING);
4248 if (IS_ERR(tlink->tl_tcon)) {
4249 cifs_put_tlink(tlink);
4250 return ERR_PTR(-EACCES);
4257 * periodic workqueue job that scans tcon_tree for a superblock and closes
4261 cifs_prune_tlinks(struct work_struct *work)
4263 struct cifs_sb_info *cifs_sb = container_of(work, struct cifs_sb_info,
4265 struct rb_root *root = &cifs_sb->tlink_tree;
4266 struct rb_node *node;
4267 struct rb_node *tmp;
4268 struct tcon_link *tlink;
4271 * Because we drop the spinlock in the loop in order to put the tlink
4272 * it's not guarded against removal of links from the tree. The only
4273 * places that remove entries from the tree are this function and
4274 * umounts. Because this function is non-reentrant and is canceled
4275 * before umount can proceed, this is safe.
4277 spin_lock(&cifs_sb->tlink_tree_lock);
4278 node = rb_first(root);
4279 while (node != NULL) {
4281 node = rb_next(tmp);
4282 tlink = rb_entry(tmp, struct tcon_link, tl_rbnode);
4284 if (test_bit(TCON_LINK_MASTER, &tlink->tl_flags) ||
4285 atomic_read(&tlink->tl_count) != 0 ||
4286 time_after(tlink->tl_time + TLINK_IDLE_EXPIRE, jiffies))
4289 cifs_get_tlink(tlink);
4290 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4291 rb_erase(tmp, root);
4293 spin_unlock(&cifs_sb->tlink_tree_lock);
4294 cifs_put_tlink(tlink);
4295 spin_lock(&cifs_sb->tlink_tree_lock);
4297 spin_unlock(&cifs_sb->tlink_tree_lock);
4299 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
4303 #ifdef CONFIG_CIFS_DFS_UPCALL
4304 /* Update dfs referral path of superblock */
4305 static int update_server_fullpath(struct TCP_Server_Info *server, struct cifs_sb_info *cifs_sb,
4309 size_t len = strlen(target);
4310 char *refpath, *npath;
4312 if (unlikely(len < 2 || *target != '\\'))
4315 if (target[1] == '\\') {
4317 refpath = kmalloc(len, GFP_KERNEL);
4321 scnprintf(refpath, len, "%s", target);
4323 len += sizeof("\\");
4324 refpath = kmalloc(len, GFP_KERNEL);
4328 scnprintf(refpath, len, "\\%s", target);
4331 npath = dfs_cache_canonical_path(refpath, cifs_sb->local_nls, cifs_remap(cifs_sb));
4334 if (IS_ERR(npath)) {
4335 rc = PTR_ERR(npath);
4337 mutex_lock(&server->refpath_lock);
4338 kfree(server->leaf_fullpath);
4339 server->leaf_fullpath = npath;
4340 mutex_unlock(&server->refpath_lock);
4341 server->current_fullpath = server->leaf_fullpath;
4346 static int target_share_matches_server(struct TCP_Server_Info *server, const char *tcp_host,
4347 size_t tcp_host_len, char *share, bool *target_match)
4350 const char *dfs_host;
4351 size_t dfs_host_len;
4353 *target_match = true;
4354 extract_unc_hostname(share, &dfs_host, &dfs_host_len);
4356 /* Check if hostnames or addresses match */
4357 if (dfs_host_len != tcp_host_len || strncasecmp(dfs_host, tcp_host, dfs_host_len) != 0) {
4358 cifs_dbg(FYI, "%s: %.*s doesn't match %.*s\n", __func__, (int)dfs_host_len,
4359 dfs_host, (int)tcp_host_len, tcp_host);
4360 rc = match_target_ip(server, dfs_host, dfs_host_len, target_match);
4362 cifs_dbg(VFS, "%s: failed to match target ip: %d\n", __func__, rc);
4367 static int __tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon,
4368 struct cifs_sb_info *cifs_sb, char *tree, bool islink,
4369 struct dfs_cache_tgt_list *tl)
4372 struct TCP_Server_Info *server = tcon->ses->server;
4373 const struct smb_version_operations *ops = server->ops;
4374 struct cifs_tcon *ipc = tcon->ses->tcon_ipc;
4375 char *share = NULL, *prefix = NULL;
4376 const char *tcp_host;
4377 size_t tcp_host_len;
4378 struct dfs_cache_tgt_iterator *tit;
4381 extract_unc_hostname(server->hostname, &tcp_host, &tcp_host_len);
4383 tit = dfs_cache_get_tgt_iterator(tl);
4389 /* Try to tree connect to all dfs targets */
4390 for (; tit; tit = dfs_cache_get_next_tgt(tl, tit)) {
4391 const char *target = dfs_cache_get_tgt_name(tit);
4392 struct dfs_cache_tgt_list ntl = DFS_CACHE_TGT_LIST_INIT(ntl);
4396 share = prefix = NULL;
4398 /* Check if share matches with tcp ses */
4399 rc = dfs_cache_get_tgt_share(server->current_fullpath + 1, tit, &share, &prefix);
4401 cifs_dbg(VFS, "%s: failed to parse target share: %d\n", __func__, rc);
4405 rc = target_share_matches_server(server, tcp_host, tcp_host_len, share,
4409 if (!target_match) {
4414 if (ipc->need_reconnect) {
4415 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname);
4416 rc = ops->tree_connect(xid, ipc->ses, tree, ipc, cifs_sb->local_nls);
4421 scnprintf(tree, MAX_TREE_SIZE, "\\%s", share);
4423 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, cifs_sb->local_nls);
4427 * If no dfs referrals were returned from link target, then just do a TREE_CONNECT
4428 * to it. Otherwise, cache the dfs referral and then mark current tcp ses for
4429 * reconnect so either the demultiplex thread or the echo worker will reconnect to
4430 * newly resolved target.
4432 if (dfs_cache_find(xid, tcon->ses, cifs_sb->local_nls, cifs_remap(cifs_sb), target,
4434 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, cifs_sb->local_nls);
4437 rc = dfs_cache_noreq_update_tgthint(server->current_fullpath + 1, tit);
4439 rc = cifs_update_super_prepath(cifs_sb, prefix);
4441 /* Target is another dfs share */
4442 rc = update_server_fullpath(server, cifs_sb, target);
4443 dfs_cache_free_tgts(tl);
4447 list_replace_init(&ntl.tl_list, &tl->tl_list);
4449 dfs_cache_free_tgts(&ntl);
4461 static int tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon,
4462 struct cifs_sb_info *cifs_sb, char *tree, bool islink,
4463 struct dfs_cache_tgt_list *tl)
4467 struct TCP_Server_Info *server = tcon->ses->server;
4470 rc = __tree_connect_dfs_target(xid, tcon, cifs_sb, tree, islink, tl);
4471 if (!rc || rc != -EREMOTE)
4473 } while (rc = -ELOOP, ++num_links < MAX_NESTED_LINKS);
4475 * If we couldn't tree connect to any targets from last referral path, then retry from
4476 * original referral path.
4478 if (rc && server->current_fullpath != server->origin_fullpath) {
4479 server->current_fullpath = server->origin_fullpath;
4480 cifs_signal_cifsd_for_reconnect(server, true);
4483 dfs_cache_free_tgts(tl);
4487 int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc)
4490 struct TCP_Server_Info *server = tcon->ses->server;
4491 const struct smb_version_operations *ops = server->ops;
4492 struct super_block *sb = NULL;
4493 struct cifs_sb_info *cifs_sb;
4494 struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl);
4496 struct dfs_info3_param ref = {0};
4498 /* only send once per connect */
4499 spin_lock(&cifs_tcp_ses_lock);
4500 if (tcon->ses->status != CifsGood ||
4501 (tcon->status != TID_NEW &&
4502 tcon->status != TID_NEED_TCON)) {
4503 spin_unlock(&cifs_tcp_ses_lock);
4506 tcon->status = TID_IN_TCON;
4507 spin_unlock(&cifs_tcp_ses_lock);
4509 tree = kzalloc(MAX_TREE_SIZE, GFP_KERNEL);
4516 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname);
4517 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc);
4521 sb = cifs_get_tcp_super(server);
4524 cifs_dbg(VFS, "%s: could not find superblock: %d\n", __func__, rc);
4528 cifs_sb = CIFS_SB(sb);
4530 /* If it is not dfs or there was no cached dfs referral, then reconnect to same share */
4531 if (!server->current_fullpath ||
4532 dfs_cache_noreq_find(server->current_fullpath + 1, &ref, &tl)) {
4533 rc = ops->tree_connect(xid, tcon->ses, tcon->treeName, tcon, cifs_sb->local_nls);
4537 rc = tree_connect_dfs_target(xid, tcon, cifs_sb, tree, ref.server_type == DFS_TYPE_LINK,
4539 free_dfs_info_param(&ref);
4543 cifs_put_tcp_super(sb);
4546 spin_lock(&cifs_tcp_ses_lock);
4547 if (tcon->status == TID_IN_TCON)
4548 tcon->status = TID_NEED_TCON;
4549 spin_unlock(&cifs_tcp_ses_lock);
4551 spin_lock(&cifs_tcp_ses_lock);
4552 if (tcon->status == TID_IN_TCON)
4553 tcon->status = TID_GOOD;
4554 spin_unlock(&cifs_tcp_ses_lock);
4555 tcon->need_reconnect = false;
4561 int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc)
4564 const struct smb_version_operations *ops = tcon->ses->server->ops;
4566 /* only send once per connect */
4567 spin_lock(&cifs_tcp_ses_lock);
4568 if (tcon->ses->status != CifsGood ||
4569 (tcon->status != TID_NEW &&
4570 tcon->status != TID_NEED_TCON)) {
4571 spin_unlock(&cifs_tcp_ses_lock);
4574 tcon->status = TID_IN_TCON;
4575 spin_unlock(&cifs_tcp_ses_lock);
4577 rc = ops->tree_connect(xid, tcon->ses, tcon->treeName, tcon, nlsc);
4579 spin_lock(&cifs_tcp_ses_lock);
4580 if (tcon->status == TID_IN_TCON)
4581 tcon->status = TID_NEED_TCON;
4582 spin_unlock(&cifs_tcp_ses_lock);
4584 spin_lock(&cifs_tcp_ses_lock);
4585 if (tcon->status == TID_IN_TCON)
4586 tcon->status = TID_GOOD;
4587 spin_unlock(&cifs_tcp_ses_lock);
4588 tcon->need_reconnect = false;