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 /* if server hostname isn't populated, there's nothing to do here */
101 if (server->hostname[0] == '\0')
104 len = strlen(server->hostname) + 3;
106 unc = kmalloc(len, GFP_KERNEL);
108 cifs_dbg(FYI, "%s: failed to create UNC path\n", __func__);
111 scnprintf(unc, len, "\\\\%s", server->hostname);
113 rc = dns_resolve_server_name_to_ip(unc, &ipaddr, &expiry);
117 cifs_dbg(FYI, "%s: failed to resolve server part of %s to IP: %d\n",
118 __func__, server->hostname, rc);
119 goto requeue_resolve;
122 spin_lock(&cifs_tcp_ses_lock);
123 rc = cifs_convert_address((struct sockaddr *)&server->dstaddr, ipaddr,
125 spin_unlock(&cifs_tcp_ses_lock);
128 /* rc == 1 means success here */
130 now = ktime_get_real_seconds();
131 if (expiry && expiry > now)
133 * To make sure we don't use the cached entry, retry 1s
136 ttl = max_t(unsigned long, expiry - now, SMB_DNS_RESOLVE_INTERVAL_MIN) + 1;
141 cifs_dbg(FYI, "%s: next dns resolution scheduled for %lu seconds in the future\n",
143 mod_delayed_work(cifsiod_wq, &server->resolve, (ttl * HZ));
148 static void smb2_query_server_interfaces(struct work_struct *work)
151 struct cifs_tcon *tcon = container_of(work,
153 query_interfaces.work);
156 * query server network interfaces, in case they change
158 rc = SMB3_request_interfaces(0, tcon);
160 cifs_dbg(FYI, "%s: failed to query server interfaces: %d\n",
164 queue_delayed_work(cifsiod_wq, &tcon->query_interfaces,
165 (SMB_INTERFACE_POLL_INTERVAL * HZ));
168 static void cifs_resolve_server(struct work_struct *work)
171 struct TCP_Server_Info *server = container_of(work,
172 struct TCP_Server_Info, resolve.work);
174 cifs_server_lock(server);
177 * Resolve the hostname again to make sure that IP address is up-to-date.
179 rc = reconn_set_ipaddr_from_hostname(server);
181 cifs_dbg(FYI, "%s: failed to resolve hostname: %d\n",
185 cifs_server_unlock(server);
189 * Update the tcpStatus for the server.
190 * This is used to signal the cifsd thread to call cifs_reconnect
191 * ONLY cifsd thread should call cifs_reconnect. For any other
192 * thread, use this function
194 * @server: the tcp ses for which reconnect is needed
195 * @all_channels: if this needs to be done for all channels
198 cifs_signal_cifsd_for_reconnect(struct TCP_Server_Info *server,
201 struct TCP_Server_Info *pserver;
202 struct cifs_ses *ses;
205 /* If server is a channel, select the primary channel */
206 pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server;
208 spin_lock(&cifs_tcp_ses_lock);
210 pserver->tcpStatus = CifsNeedReconnect;
211 spin_unlock(&cifs_tcp_ses_lock);
215 list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) {
216 spin_lock(&ses->chan_lock);
217 for (i = 0; i < ses->chan_count; i++)
218 ses->chans[i].server->tcpStatus = CifsNeedReconnect;
219 spin_unlock(&ses->chan_lock);
221 spin_unlock(&cifs_tcp_ses_lock);
225 * Mark all sessions and tcons for reconnect.
226 * IMPORTANT: make sure that this gets called only from
227 * cifsd thread. For any other thread, use
228 * cifs_signal_cifsd_for_reconnect
230 * @server: the tcp ses for which reconnect is needed
231 * @server needs to be previously set to CifsNeedReconnect.
232 * @mark_smb_session: whether even sessions need to be marked
235 cifs_mark_tcp_ses_conns_for_reconnect(struct TCP_Server_Info *server,
236 bool mark_smb_session)
238 struct TCP_Server_Info *pserver;
239 struct cifs_ses *ses, *nses;
240 struct cifs_tcon *tcon;
243 * before reconnecting the tcp session, mark the smb session (uid) and the tid bad so they
244 * are not used until reconnected.
246 cifs_dbg(FYI, "%s: marking necessary sessions and tcons for reconnect\n", __func__);
248 /* If server is a channel, select the primary channel */
249 pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server;
252 spin_lock(&cifs_tcp_ses_lock);
253 list_for_each_entry_safe(ses, nses, &pserver->smb_ses_list, smb_ses_list) {
254 /* check if iface is still active */
255 if (!cifs_chan_is_iface_active(ses, server)) {
257 * HACK: drop the lock before calling
258 * cifs_chan_update_iface to avoid deadlock
261 spin_unlock(&cifs_tcp_ses_lock);
262 cifs_chan_update_iface(ses, server);
263 spin_lock(&cifs_tcp_ses_lock);
267 spin_lock(&ses->chan_lock);
268 if (!mark_smb_session && cifs_chan_needs_reconnect(ses, server))
271 if (mark_smb_session)
272 CIFS_SET_ALL_CHANS_NEED_RECONNECT(ses);
274 cifs_chan_set_need_reconnect(ses, server);
276 /* If all channels need reconnect, then tcon needs reconnect */
277 if (!mark_smb_session && !CIFS_ALL_CHANS_NEED_RECONNECT(ses))
280 ses->ses_status = SES_NEED_RECON;
282 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
283 tcon->need_reconnect = true;
284 tcon->status = TID_NEED_RECON;
287 ses->tcon_ipc->need_reconnect = true;
290 spin_unlock(&ses->chan_lock);
292 spin_unlock(&cifs_tcp_ses_lock);
296 cifs_abort_connection(struct TCP_Server_Info *server)
298 struct mid_q_entry *mid, *nmid;
299 struct list_head retry_list;
302 server->max_read = 0;
304 /* do not want to be sending data on a socket we are freeing */
305 cifs_dbg(FYI, "%s: tearing down socket\n", __func__);
306 cifs_server_lock(server);
307 if (server->ssocket) {
308 cifs_dbg(FYI, "State: 0x%x Flags: 0x%lx\n", server->ssocket->state,
309 server->ssocket->flags);
310 kernel_sock_shutdown(server->ssocket, SHUT_WR);
311 cifs_dbg(FYI, "Post shutdown state: 0x%x Flags: 0x%lx\n", server->ssocket->state,
312 server->ssocket->flags);
313 sock_release(server->ssocket);
314 server->ssocket = NULL;
316 server->sequence_number = 0;
317 server->session_estab = false;
318 kfree(server->session_key.response);
319 server->session_key.response = NULL;
320 server->session_key.len = 0;
321 server->lstrp = jiffies;
323 /* mark submitted MIDs for retry and issue callback */
324 INIT_LIST_HEAD(&retry_list);
325 cifs_dbg(FYI, "%s: moving mids to private list\n", __func__);
326 spin_lock(&GlobalMid_Lock);
327 list_for_each_entry_safe(mid, nmid, &server->pending_mid_q, qhead) {
328 kref_get(&mid->refcount);
329 if (mid->mid_state == MID_REQUEST_SUBMITTED)
330 mid->mid_state = MID_RETRY_NEEDED;
331 list_move(&mid->qhead, &retry_list);
332 mid->mid_flags |= MID_DELETED;
334 spin_unlock(&GlobalMid_Lock);
335 cifs_server_unlock(server);
337 cifs_dbg(FYI, "%s: issuing mid callbacks\n", __func__);
338 list_for_each_entry_safe(mid, nmid, &retry_list, qhead) {
339 list_del_init(&mid->qhead);
341 cifs_mid_q_entry_release(mid);
344 if (cifs_rdma_enabled(server)) {
345 cifs_server_lock(server);
346 smbd_destroy(server);
347 cifs_server_unlock(server);
351 static bool cifs_tcp_ses_needs_reconnect(struct TCP_Server_Info *server, int num_targets)
353 spin_lock(&cifs_tcp_ses_lock);
354 server->nr_targets = num_targets;
355 if (server->tcpStatus == CifsExiting) {
356 /* the demux thread will exit normally next time through the loop */
357 spin_unlock(&cifs_tcp_ses_lock);
358 wake_up(&server->response_q);
362 cifs_dbg(FYI, "Mark tcp session as need reconnect\n");
363 trace_smb3_reconnect(server->CurrentMid, server->conn_id,
365 server->tcpStatus = CifsNeedReconnect;
367 spin_unlock(&cifs_tcp_ses_lock);
372 * cifs tcp session reconnection
374 * mark tcp session as reconnecting so temporarily locked
375 * mark all smb sessions as reconnecting for tcp session
376 * reconnect tcp session
377 * wake up waiters on reconnection? - (not needed currently)
379 * if mark_smb_session is passed as true, unconditionally mark
380 * the smb session (and tcon) for reconnect as well. This value
381 * doesn't really matter for non-multichannel scenario.
384 static int __cifs_reconnect(struct TCP_Server_Info *server,
385 bool mark_smb_session)
389 if (!cifs_tcp_ses_needs_reconnect(server, 1))
392 cifs_mark_tcp_ses_conns_for_reconnect(server, mark_smb_session);
394 cifs_abort_connection(server);
398 cifs_server_lock(server);
400 if (!cifs_swn_set_server_dstaddr(server)) {
401 /* resolve the hostname again to make sure that IP address is up-to-date */
402 rc = reconn_set_ipaddr_from_hostname(server);
403 cifs_dbg(FYI, "%s: reconn_set_ipaddr_from_hostname: rc=%d\n", __func__, rc);
406 if (cifs_rdma_enabled(server))
407 rc = smbd_reconnect(server);
409 rc = generic_ip_connect(server);
411 cifs_server_unlock(server);
412 cifs_dbg(FYI, "%s: reconnect error %d\n", __func__, rc);
415 atomic_inc(&tcpSesReconnectCount);
416 set_credits(server, 1);
417 spin_lock(&cifs_tcp_ses_lock);
418 if (server->tcpStatus != CifsExiting)
419 server->tcpStatus = CifsNeedNegotiate;
420 spin_unlock(&cifs_tcp_ses_lock);
421 cifs_swn_reset_server_dstaddr(server);
422 cifs_server_unlock(server);
423 mod_delayed_work(cifsiod_wq, &server->reconnect, 0);
425 } while (server->tcpStatus == CifsNeedReconnect);
427 spin_lock(&cifs_tcp_ses_lock);
428 if (server->tcpStatus == CifsNeedNegotiate)
429 mod_delayed_work(cifsiod_wq, &server->echo, 0);
430 spin_unlock(&cifs_tcp_ses_lock);
432 wake_up(&server->response_q);
436 #ifdef CONFIG_CIFS_DFS_UPCALL
437 static int __reconnect_target_unlocked(struct TCP_Server_Info *server, const char *target)
442 if (!cifs_swn_set_server_dstaddr(server)) {
443 if (server->hostname != target) {
444 hostname = extract_hostname(target);
445 if (!IS_ERR(hostname)) {
446 kfree(server->hostname);
447 server->hostname = hostname;
449 cifs_dbg(FYI, "%s: couldn't extract hostname or address from dfs target: %ld\n",
450 __func__, PTR_ERR(hostname));
451 cifs_dbg(FYI, "%s: default to last target server: %s\n", __func__,
455 /* resolve the hostname again to make sure that IP address is up-to-date. */
456 rc = reconn_set_ipaddr_from_hostname(server);
457 cifs_dbg(FYI, "%s: reconn_set_ipaddr_from_hostname: rc=%d\n", __func__, rc);
459 /* Reconnect the socket */
460 if (cifs_rdma_enabled(server))
461 rc = smbd_reconnect(server);
463 rc = generic_ip_connect(server);
468 static int reconnect_target_unlocked(struct TCP_Server_Info *server, struct dfs_cache_tgt_list *tl,
469 struct dfs_cache_tgt_iterator **target_hint)
472 struct dfs_cache_tgt_iterator *tit;
476 /* If dfs target list is empty, then reconnect to last server */
477 tit = dfs_cache_get_tgt_iterator(tl);
479 return __reconnect_target_unlocked(server, server->hostname);
481 /* Otherwise, try every dfs target in @tl */
482 for (; tit; tit = dfs_cache_get_next_tgt(tl, tit)) {
483 rc = __reconnect_target_unlocked(server, dfs_cache_get_tgt_name(tit));
492 static int reconnect_dfs_server(struct TCP_Server_Info *server)
495 const char *refpath = server->current_fullpath + 1;
496 struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl);
497 struct dfs_cache_tgt_iterator *target_hint = NULL;
501 * Determine the number of dfs targets the referral path in @cifs_sb resolves to.
503 * smb2_reconnect() needs to know how long it should wait based upon the number of dfs
504 * targets (server->nr_targets). It's also possible that the cached referral was cleared
505 * through /proc/fs/cifs/dfscache or the target list is empty due to server settings after
506 * refreshing the referral, so, in this case, default it to 1.
508 if (!dfs_cache_noreq_find(refpath, NULL, &tl))
509 num_targets = dfs_cache_get_nr_tgts(&tl);
513 if (!cifs_tcp_ses_needs_reconnect(server, num_targets))
517 * Unconditionally mark all sessions & tcons for reconnect as we might be connecting to a
518 * different server or share during failover. It could be improved by adding some logic to
519 * only do that in case it connects to a different server or share, though.
521 cifs_mark_tcp_ses_conns_for_reconnect(server, true);
523 cifs_abort_connection(server);
527 cifs_server_lock(server);
529 rc = reconnect_target_unlocked(server, &tl, &target_hint);
531 /* Failed to reconnect socket */
532 cifs_server_unlock(server);
533 cifs_dbg(FYI, "%s: reconnect error %d\n", __func__, rc);
538 * Socket was created. Update tcp session status to CifsNeedNegotiate so that a
539 * process waiting for reconnect will know it needs to re-establish session and tcon
540 * through the reconnected target server.
542 atomic_inc(&tcpSesReconnectCount);
543 set_credits(server, 1);
544 spin_lock(&cifs_tcp_ses_lock);
545 if (server->tcpStatus != CifsExiting)
546 server->tcpStatus = CifsNeedNegotiate;
547 spin_unlock(&cifs_tcp_ses_lock);
548 cifs_swn_reset_server_dstaddr(server);
549 cifs_server_unlock(server);
550 mod_delayed_work(cifsiod_wq, &server->reconnect, 0);
551 } while (server->tcpStatus == CifsNeedReconnect);
554 dfs_cache_noreq_update_tgthint(refpath, target_hint);
556 dfs_cache_free_tgts(&tl);
558 /* Need to set up echo worker again once connection has been established */
559 spin_lock(&cifs_tcp_ses_lock);
560 if (server->tcpStatus == CifsNeedNegotiate)
561 mod_delayed_work(cifsiod_wq, &server->echo, 0);
563 spin_unlock(&cifs_tcp_ses_lock);
565 wake_up(&server->response_q);
569 int cifs_reconnect(struct TCP_Server_Info *server, bool mark_smb_session)
571 /* If tcp session is not an dfs connection, then reconnect to last target server */
572 spin_lock(&cifs_tcp_ses_lock);
573 if (!server->is_dfs_conn) {
574 spin_unlock(&cifs_tcp_ses_lock);
575 return __cifs_reconnect(server, mark_smb_session);
577 spin_unlock(&cifs_tcp_ses_lock);
579 mutex_lock(&server->refpath_lock);
580 if (!server->origin_fullpath || !server->leaf_fullpath) {
581 mutex_unlock(&server->refpath_lock);
582 return __cifs_reconnect(server, mark_smb_session);
584 mutex_unlock(&server->refpath_lock);
586 return reconnect_dfs_server(server);
589 int cifs_reconnect(struct TCP_Server_Info *server, bool mark_smb_session)
591 return __cifs_reconnect(server, mark_smb_session);
596 cifs_echo_request(struct work_struct *work)
599 struct TCP_Server_Info *server = container_of(work,
600 struct TCP_Server_Info, echo.work);
603 * We cannot send an echo if it is disabled.
604 * Also, no need to ping if we got a response recently.
607 if (server->tcpStatus == CifsNeedReconnect ||
608 server->tcpStatus == CifsExiting ||
609 server->tcpStatus == CifsNew ||
610 (server->ops->can_echo && !server->ops->can_echo(server)) ||
611 time_before(jiffies, server->lstrp + server->echo_interval - HZ))
614 rc = server->ops->echo ? server->ops->echo(server) : -ENOSYS;
616 cifs_dbg(FYI, "Unable to send echo request to server: %s\n",
619 /* Check witness registrations */
623 queue_delayed_work(cifsiod_wq, &server->echo, server->echo_interval);
627 allocate_buffers(struct TCP_Server_Info *server)
629 if (!server->bigbuf) {
630 server->bigbuf = (char *)cifs_buf_get();
631 if (!server->bigbuf) {
632 cifs_server_dbg(VFS, "No memory for large SMB response\n");
634 /* retry will check if exiting */
637 } else if (server->large_buf) {
638 /* we are reusing a dirty large buf, clear its start */
639 memset(server->bigbuf, 0, HEADER_SIZE(server));
642 if (!server->smallbuf) {
643 server->smallbuf = (char *)cifs_small_buf_get();
644 if (!server->smallbuf) {
645 cifs_server_dbg(VFS, "No memory for SMB response\n");
647 /* retry will check if exiting */
650 /* beginning of smb buffer is cleared in our buf_get */
652 /* if existing small buf clear beginning */
653 memset(server->smallbuf, 0, HEADER_SIZE(server));
660 server_unresponsive(struct TCP_Server_Info *server)
663 * We need to wait 3 echo intervals to make sure we handle such
665 * 1s client sends a normal SMB request
666 * 2s client gets a response
667 * 30s echo workqueue job pops, and decides we got a response recently
668 * and don't need to send another
670 * 65s kernel_recvmsg times out, and we see that we haven't gotten
671 * a response in >60s.
673 spin_lock(&cifs_tcp_ses_lock);
674 if ((server->tcpStatus == CifsGood ||
675 server->tcpStatus == CifsNeedNegotiate) &&
676 (!server->ops->can_echo || server->ops->can_echo(server)) &&
677 time_after(jiffies, server->lstrp + 3 * server->echo_interval)) {
678 spin_unlock(&cifs_tcp_ses_lock);
679 cifs_server_dbg(VFS, "has not responded in %lu seconds. Reconnecting...\n",
680 (3 * server->echo_interval) / HZ);
681 cifs_reconnect(server, false);
684 spin_unlock(&cifs_tcp_ses_lock);
690 zero_credits(struct TCP_Server_Info *server)
694 spin_lock(&server->req_lock);
695 val = server->credits + server->echo_credits + server->oplock_credits;
696 if (server->in_flight == 0 && val == 0) {
697 spin_unlock(&server->req_lock);
700 spin_unlock(&server->req_lock);
705 cifs_readv_from_socket(struct TCP_Server_Info *server, struct msghdr *smb_msg)
710 smb_msg->msg_control = NULL;
711 smb_msg->msg_controllen = 0;
713 for (total_read = 0; msg_data_left(smb_msg); total_read += length) {
716 /* reconnect if no credits and no requests in flight */
717 if (zero_credits(server)) {
718 cifs_reconnect(server, false);
719 return -ECONNABORTED;
722 if (server_unresponsive(server))
723 return -ECONNABORTED;
724 if (cifs_rdma_enabled(server) && server->smbd_conn)
725 length = smbd_recv(server->smbd_conn, smb_msg);
727 length = sock_recvmsg(server->ssocket, smb_msg, 0);
729 spin_lock(&cifs_tcp_ses_lock);
730 if (server->tcpStatus == CifsExiting) {
731 spin_unlock(&cifs_tcp_ses_lock);
735 if (server->tcpStatus == CifsNeedReconnect) {
736 spin_unlock(&cifs_tcp_ses_lock);
737 cifs_reconnect(server, false);
738 return -ECONNABORTED;
740 spin_unlock(&cifs_tcp_ses_lock);
742 if (length == -ERESTARTSYS ||
746 * Minimum sleep to prevent looping, allowing socket
747 * to clear and app threads to set tcpStatus
748 * CifsNeedReconnect if server hung.
750 usleep_range(1000, 2000);
756 cifs_dbg(FYI, "Received no data or error: %d\n", length);
757 cifs_reconnect(server, false);
758 return -ECONNABORTED;
765 cifs_read_from_socket(struct TCP_Server_Info *server, char *buf,
766 unsigned int to_read)
768 struct msghdr smb_msg;
769 struct kvec iov = {.iov_base = buf, .iov_len = to_read};
770 iov_iter_kvec(&smb_msg.msg_iter, READ, &iov, 1, to_read);
772 return cifs_readv_from_socket(server, &smb_msg);
776 cifs_discard_from_socket(struct TCP_Server_Info *server, size_t to_read)
778 struct msghdr smb_msg;
781 * iov_iter_discard already sets smb_msg.type and count and iov_offset
782 * and cifs_readv_from_socket sets msg_control and msg_controllen
783 * so little to initialize in struct msghdr
785 smb_msg.msg_name = NULL;
786 smb_msg.msg_namelen = 0;
787 iov_iter_discard(&smb_msg.msg_iter, READ, to_read);
789 return cifs_readv_from_socket(server, &smb_msg);
793 cifs_read_page_from_socket(struct TCP_Server_Info *server, struct page *page,
794 unsigned int page_offset, unsigned int to_read)
796 struct msghdr smb_msg;
797 struct bio_vec bv = {
798 .bv_page = page, .bv_len = to_read, .bv_offset = page_offset};
799 iov_iter_bvec(&smb_msg.msg_iter, READ, &bv, 1, to_read);
800 return cifs_readv_from_socket(server, &smb_msg);
804 is_smb_response(struct TCP_Server_Info *server, unsigned char type)
807 * The first byte big endian of the length field,
808 * is actually not part of the length but the type
809 * with the most common, zero, as regular data.
812 case RFC1002_SESSION_MESSAGE:
813 /* Regular SMB response */
815 case RFC1002_SESSION_KEEP_ALIVE:
816 cifs_dbg(FYI, "RFC 1002 session keep alive\n");
818 case RFC1002_POSITIVE_SESSION_RESPONSE:
819 cifs_dbg(FYI, "RFC 1002 positive session response\n");
821 case RFC1002_NEGATIVE_SESSION_RESPONSE:
823 * We get this from Windows 98 instead of an error on
824 * SMB negprot response.
826 cifs_dbg(FYI, "RFC 1002 negative session response\n");
827 /* give server a second to clean up */
830 * Always try 445 first on reconnect since we get NACK
831 * on some if we ever connected to port 139 (the NACK
832 * is since we do not begin with RFC1001 session
835 cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT);
836 cifs_reconnect(server, true);
839 cifs_server_dbg(VFS, "RFC 1002 unknown response type 0x%x\n", type);
840 cifs_reconnect(server, true);
847 dequeue_mid(struct mid_q_entry *mid, bool malformed)
849 #ifdef CONFIG_CIFS_STATS2
850 mid->when_received = jiffies;
852 spin_lock(&GlobalMid_Lock);
854 mid->mid_state = MID_RESPONSE_RECEIVED;
856 mid->mid_state = MID_RESPONSE_MALFORMED;
858 * Trying to handle/dequeue a mid after the send_recv()
859 * function has finished processing it is a bug.
861 if (mid->mid_flags & MID_DELETED) {
862 spin_unlock(&GlobalMid_Lock);
863 pr_warn_once("trying to dequeue a deleted mid\n");
865 list_del_init(&mid->qhead);
866 mid->mid_flags |= MID_DELETED;
867 spin_unlock(&GlobalMid_Lock);
872 smb2_get_credits_from_hdr(char *buffer, struct TCP_Server_Info *server)
874 struct smb2_hdr *shdr = (struct smb2_hdr *)buffer;
877 * SMB1 does not use credits.
879 if (server->vals->header_preamble_size)
882 return le16_to_cpu(shdr->CreditRequest);
886 handle_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server,
887 char *buf, int malformed)
889 if (server->ops->check_trans2 &&
890 server->ops->check_trans2(mid, server, buf, malformed))
892 mid->credits_received = smb2_get_credits_from_hdr(buf, server);
894 mid->large_buf = server->large_buf;
895 /* Was previous buf put in mpx struct for multi-rsp? */
896 if (!mid->multiRsp) {
897 /* smb buffer will be freed by user thread */
898 if (server->large_buf)
899 server->bigbuf = NULL;
901 server->smallbuf = NULL;
903 dequeue_mid(mid, malformed);
906 static void clean_demultiplex_info(struct TCP_Server_Info *server)
910 /* take it off the list, if it's not already */
911 spin_lock(&cifs_tcp_ses_lock);
912 list_del_init(&server->tcp_ses_list);
913 spin_unlock(&cifs_tcp_ses_lock);
915 cancel_delayed_work_sync(&server->echo);
916 cancel_delayed_work_sync(&server->resolve);
918 spin_lock(&cifs_tcp_ses_lock);
919 server->tcpStatus = CifsExiting;
920 spin_unlock(&cifs_tcp_ses_lock);
921 wake_up_all(&server->response_q);
923 /* check if we have blocked requests that need to free */
924 spin_lock(&server->req_lock);
925 if (server->credits <= 0)
927 spin_unlock(&server->req_lock);
929 * Although there should not be any requests blocked on this queue it
930 * can not hurt to be paranoid and try to wake up requests that may
931 * haven been blocked when more than 50 at time were on the wire to the
932 * same server - they now will see the session is in exit state and get
933 * out of SendReceive.
935 wake_up_all(&server->request_q);
936 /* give those requests time to exit */
938 if (cifs_rdma_enabled(server))
939 smbd_destroy(server);
940 if (server->ssocket) {
941 sock_release(server->ssocket);
942 server->ssocket = NULL;
945 if (!list_empty(&server->pending_mid_q)) {
946 struct list_head dispose_list;
947 struct mid_q_entry *mid_entry;
948 struct list_head *tmp, *tmp2;
950 INIT_LIST_HEAD(&dispose_list);
951 spin_lock(&GlobalMid_Lock);
952 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
953 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
954 cifs_dbg(FYI, "Clearing mid %llu\n", mid_entry->mid);
955 kref_get(&mid_entry->refcount);
956 mid_entry->mid_state = MID_SHUTDOWN;
957 list_move(&mid_entry->qhead, &dispose_list);
958 mid_entry->mid_flags |= MID_DELETED;
960 spin_unlock(&GlobalMid_Lock);
962 /* now walk dispose list and issue callbacks */
963 list_for_each_safe(tmp, tmp2, &dispose_list) {
964 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
965 cifs_dbg(FYI, "Callback mid %llu\n", mid_entry->mid);
966 list_del_init(&mid_entry->qhead);
967 mid_entry->callback(mid_entry);
968 cifs_mid_q_entry_release(mid_entry);
970 /* 1/8th of sec is more than enough time for them to exit */
974 if (!list_empty(&server->pending_mid_q)) {
976 * mpx threads have not exited yet give them at least the smb
977 * send timeout time for long ops.
979 * Due to delays on oplock break requests, we need to wait at
980 * least 45 seconds before giving up on a request getting a
981 * response and going ahead and killing cifsd.
983 cifs_dbg(FYI, "Wait for exit from demultiplex thread\n");
986 * If threads still have not exited they are probably never
987 * coming home not much else we can do but free the memory.
991 #ifdef CONFIG_CIFS_DFS_UPCALL
992 kfree(server->origin_fullpath);
993 kfree(server->leaf_fullpath);
997 length = atomic_dec_return(&tcpSesAllocCount);
999 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
1003 standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid)
1006 char *buf = server->smallbuf;
1007 unsigned int pdu_length = server->pdu_size;
1009 /* make sure this will fit in a large buffer */
1010 if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) -
1011 server->vals->header_preamble_size) {
1012 cifs_server_dbg(VFS, "SMB response too long (%u bytes)\n", pdu_length);
1013 cifs_reconnect(server, true);
1014 return -ECONNABORTED;
1017 /* switch to large buffer if too big for a small one */
1018 if (pdu_length > MAX_CIFS_SMALL_BUFFER_SIZE - 4) {
1019 server->large_buf = true;
1020 memcpy(server->bigbuf, buf, server->total_read);
1021 buf = server->bigbuf;
1024 /* now read the rest */
1025 length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1,
1026 pdu_length - HEADER_SIZE(server) + 1
1027 + server->vals->header_preamble_size);
1031 server->total_read += length;
1033 dump_smb(buf, server->total_read);
1035 return cifs_handle_standard(server, mid);
1039 cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid)
1041 char *buf = server->large_buf ? server->bigbuf : server->smallbuf;
1045 * We know that we received enough to get to the MID as we
1046 * checked the pdu_length earlier. Now check to see
1047 * if the rest of the header is OK. We borrow the length
1048 * var for the rest of the loop to avoid a new stack var.
1050 * 48 bytes is enough to display the header and a little bit
1051 * into the payload for debugging purposes.
1053 length = server->ops->check_message(buf, server->total_read, server);
1055 cifs_dump_mem("Bad SMB: ", buf,
1056 min_t(unsigned int, server->total_read, 48));
1058 if (server->ops->is_session_expired &&
1059 server->ops->is_session_expired(buf)) {
1060 cifs_reconnect(server, true);
1064 if (server->ops->is_status_pending &&
1065 server->ops->is_status_pending(buf, server))
1071 handle_mid(mid, server, buf, length);
1076 smb2_add_credits_from_hdr(char *buffer, struct TCP_Server_Info *server)
1078 struct smb2_hdr *shdr = (struct smb2_hdr *)buffer;
1079 int scredits, in_flight;
1082 * SMB1 does not use credits.
1084 if (server->vals->header_preamble_size)
1087 if (shdr->CreditRequest) {
1088 spin_lock(&server->req_lock);
1089 server->credits += le16_to_cpu(shdr->CreditRequest);
1090 scredits = server->credits;
1091 in_flight = server->in_flight;
1092 spin_unlock(&server->req_lock);
1093 wake_up(&server->request_q);
1095 trace_smb3_hdr_credits(server->CurrentMid,
1096 server->conn_id, server->hostname, scredits,
1097 le16_to_cpu(shdr->CreditRequest), in_flight);
1098 cifs_server_dbg(FYI, "%s: added %u credits total=%d\n",
1099 __func__, le16_to_cpu(shdr->CreditRequest),
1106 cifs_demultiplex_thread(void *p)
1108 int i, num_mids, length;
1109 struct TCP_Server_Info *server = p;
1110 unsigned int pdu_length;
1111 unsigned int next_offset;
1113 struct task_struct *task_to_wake = NULL;
1114 struct mid_q_entry *mids[MAX_COMPOUND];
1115 char *bufs[MAX_COMPOUND];
1116 unsigned int noreclaim_flag, num_io_timeout = 0;
1118 noreclaim_flag = memalloc_noreclaim_save();
1119 cifs_dbg(FYI, "Demultiplex PID: %d\n", task_pid_nr(current));
1121 length = atomic_inc_return(&tcpSesAllocCount);
1123 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
1126 allow_kernel_signal(SIGKILL);
1127 while (server->tcpStatus != CifsExiting) {
1128 if (try_to_freeze())
1131 if (!allocate_buffers(server))
1134 server->large_buf = false;
1135 buf = server->smallbuf;
1136 pdu_length = 4; /* enough to get RFC1001 header */
1138 length = cifs_read_from_socket(server, buf, pdu_length);
1142 if (server->vals->header_preamble_size == 0)
1143 server->total_read = 0;
1145 server->total_read = length;
1148 * The right amount was read from socket - 4 bytes,
1149 * so we can now interpret the length field.
1151 pdu_length = get_rfc1002_length(buf);
1153 cifs_dbg(FYI, "RFC1002 header 0x%x\n", pdu_length);
1154 if (!is_smb_response(server, buf[0]))
1157 server->pdu_size = pdu_length;
1159 /* make sure we have enough to get to the MID */
1160 if (server->pdu_size < HEADER_SIZE(server) - 1 -
1161 server->vals->header_preamble_size) {
1162 cifs_server_dbg(VFS, "SMB response too short (%u bytes)\n",
1164 cifs_reconnect(server, true);
1168 /* read down to the MID */
1169 length = cifs_read_from_socket(server,
1170 buf + server->vals->header_preamble_size,
1171 HEADER_SIZE(server) - 1
1172 - server->vals->header_preamble_size);
1175 server->total_read += length;
1177 if (server->ops->next_header) {
1178 next_offset = server->ops->next_header(buf);
1180 server->pdu_size = next_offset;
1183 memset(mids, 0, sizeof(mids));
1184 memset(bufs, 0, sizeof(bufs));
1187 if (server->ops->is_transform_hdr &&
1188 server->ops->receive_transform &&
1189 server->ops->is_transform_hdr(buf)) {
1190 length = server->ops->receive_transform(server,
1195 mids[0] = server->ops->find_mid(server, buf);
1199 if (!mids[0] || !mids[0]->receive)
1200 length = standard_receive3(server, mids[0]);
1202 length = mids[0]->receive(server, mids[0]);
1206 for (i = 0; i < num_mids; i++)
1208 cifs_mid_q_entry_release(mids[i]);
1212 if (server->ops->is_status_io_timeout &&
1213 server->ops->is_status_io_timeout(buf)) {
1215 if (num_io_timeout > NUM_STATUS_IO_TIMEOUT) {
1216 cifs_reconnect(server, false);
1222 server->lstrp = jiffies;
1224 for (i = 0; i < num_mids; i++) {
1225 if (mids[i] != NULL) {
1226 mids[i]->resp_buf_size = server->pdu_size;
1228 if (bufs[i] && server->ops->is_network_name_deleted)
1229 server->ops->is_network_name_deleted(bufs[i],
1232 if (!mids[i]->multiRsp || mids[i]->multiEnd)
1233 mids[i]->callback(mids[i]);
1235 cifs_mid_q_entry_release(mids[i]);
1236 } else if (server->ops->is_oplock_break &&
1237 server->ops->is_oplock_break(bufs[i],
1239 smb2_add_credits_from_hdr(bufs[i], server);
1240 cifs_dbg(FYI, "Received oplock break\n");
1242 cifs_server_dbg(VFS, "No task to wake, unknown frame received! NumMids %d\n",
1243 atomic_read(&midCount));
1244 cifs_dump_mem("Received Data is: ", bufs[i],
1245 HEADER_SIZE(server));
1246 smb2_add_credits_from_hdr(bufs[i], server);
1247 #ifdef CONFIG_CIFS_DEBUG2
1248 if (server->ops->dump_detail)
1249 server->ops->dump_detail(bufs[i],
1251 cifs_dump_mids(server);
1252 #endif /* CIFS_DEBUG2 */
1256 if (pdu_length > server->pdu_size) {
1257 if (!allocate_buffers(server))
1259 pdu_length -= server->pdu_size;
1260 server->total_read = 0;
1261 server->large_buf = false;
1262 buf = server->smallbuf;
1265 } /* end while !EXITING */
1267 /* buffer usually freed in free_mid - need to free it here on exit */
1268 cifs_buf_release(server->bigbuf);
1269 if (server->smallbuf) /* no sense logging a debug message if NULL */
1270 cifs_small_buf_release(server->smallbuf);
1272 task_to_wake = xchg(&server->tsk, NULL);
1273 clean_demultiplex_info(server);
1275 /* if server->tsk was NULL then wait for a signal before exiting */
1276 if (!task_to_wake) {
1277 set_current_state(TASK_INTERRUPTIBLE);
1278 while (!signal_pending(current)) {
1280 set_current_state(TASK_INTERRUPTIBLE);
1282 set_current_state(TASK_RUNNING);
1285 memalloc_noreclaim_restore(noreclaim_flag);
1286 module_put_and_kthread_exit(0);
1290 * Returns true if srcaddr isn't specified and rhs isn't specified, or
1291 * if srcaddr is specified and matches the IP address of the rhs argument
1294 cifs_match_ipaddr(struct sockaddr *srcaddr, struct sockaddr *rhs)
1296 switch (srcaddr->sa_family) {
1298 return (rhs->sa_family == AF_UNSPEC);
1300 struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr;
1301 struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs;
1302 return (saddr4->sin_addr.s_addr == vaddr4->sin_addr.s_addr);
1305 struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr;
1306 struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs;
1307 return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr);
1311 return false; /* don't expect to be here */
1316 * If no port is specified in addr structure, we try to match with 445 port
1317 * and if it fails - with 139 ports. It should be called only if address
1318 * families of server and addr are equal.
1321 match_port(struct TCP_Server_Info *server, struct sockaddr *addr)
1323 __be16 port, *sport;
1325 /* SMBDirect manages its own ports, don't match it here */
1329 switch (addr->sa_family) {
1331 sport = &((struct sockaddr_in *) &server->dstaddr)->sin_port;
1332 port = ((struct sockaddr_in *) addr)->sin_port;
1335 sport = &((struct sockaddr_in6 *) &server->dstaddr)->sin6_port;
1336 port = ((struct sockaddr_in6 *) addr)->sin6_port;
1344 port = htons(CIFS_PORT);
1348 port = htons(RFC1001_PORT);
1351 return port == *sport;
1355 match_address(struct TCP_Server_Info *server, struct sockaddr *addr,
1356 struct sockaddr *srcaddr)
1358 switch (addr->sa_family) {
1360 struct sockaddr_in *addr4 = (struct sockaddr_in *)addr;
1361 struct sockaddr_in *srv_addr4 =
1362 (struct sockaddr_in *)&server->dstaddr;
1364 if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr)
1369 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr;
1370 struct sockaddr_in6 *srv_addr6 =
1371 (struct sockaddr_in6 *)&server->dstaddr;
1373 if (!ipv6_addr_equal(&addr6->sin6_addr,
1374 &srv_addr6->sin6_addr))
1376 if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id)
1382 return false; /* don't expect to be here */
1385 if (!cifs_match_ipaddr(srcaddr, (struct sockaddr *)&server->srcaddr))
1392 match_security(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
1395 * The select_sectype function should either return the ctx->sectype
1396 * that was specified, or "Unspecified" if that sectype was not
1397 * compatible with the given NEGOTIATE request.
1399 if (server->ops->select_sectype(server, ctx->sectype)
1404 * Now check if signing mode is acceptable. No need to check
1405 * global_secflags at this point since if MUST_SIGN is set then
1406 * the server->sign had better be too.
1408 if (ctx->sign && !server->sign)
1414 static int match_server(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
1416 struct sockaddr *addr = (struct sockaddr *)&ctx->dstaddr;
1418 if (ctx->nosharesock)
1421 /* this server does not share socket */
1422 if (server->nosharesock)
1425 /* If multidialect negotiation see if existing sessions match one */
1426 if (strcmp(ctx->vals->version_string, SMB3ANY_VERSION_STRING) == 0) {
1427 if (server->vals->protocol_id < SMB30_PROT_ID)
1429 } else if (strcmp(ctx->vals->version_string,
1430 SMBDEFAULT_VERSION_STRING) == 0) {
1431 if (server->vals->protocol_id < SMB21_PROT_ID)
1433 } else if ((server->vals != ctx->vals) || (server->ops != ctx->ops))
1436 if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns))
1439 if (strcasecmp(server->hostname, ctx->server_hostname))
1442 if (!match_address(server, addr,
1443 (struct sockaddr *)&ctx->srcaddr))
1446 if (!match_port(server, addr))
1449 if (!match_security(server, ctx))
1452 if (server->echo_interval != ctx->echo_interval * HZ)
1455 if (server->rdma != ctx->rdma)
1458 if (server->ignore_signature != ctx->ignore_signature)
1461 if (server->min_offload != ctx->min_offload)
1467 struct TCP_Server_Info *
1468 cifs_find_tcp_session(struct smb3_fs_context *ctx)
1470 struct TCP_Server_Info *server;
1472 spin_lock(&cifs_tcp_ses_lock);
1473 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
1474 #ifdef CONFIG_CIFS_DFS_UPCALL
1476 * DFS failover implementation in cifs_reconnect() requires unique tcp sessions for
1477 * DFS connections to do failover properly, so avoid sharing them with regular
1478 * shares or even links that may connect to same server but having completely
1479 * different failover targets.
1481 if (server->is_dfs_conn)
1485 * Skip ses channels since they're only handled in lower layers
1486 * (e.g. cifs_send_recv).
1488 if (CIFS_SERVER_IS_CHAN(server) || !match_server(server, ctx))
1491 ++server->srv_count;
1492 spin_unlock(&cifs_tcp_ses_lock);
1493 cifs_dbg(FYI, "Existing tcp session with server found\n");
1496 spin_unlock(&cifs_tcp_ses_lock);
1501 cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect)
1503 struct task_struct *task;
1505 spin_lock(&cifs_tcp_ses_lock);
1506 if (--server->srv_count > 0) {
1507 spin_unlock(&cifs_tcp_ses_lock);
1511 /* srv_count can never go negative */
1512 WARN_ON(server->srv_count < 0);
1514 put_net(cifs_net_ns(server));
1516 list_del_init(&server->tcp_ses_list);
1517 spin_unlock(&cifs_tcp_ses_lock);
1519 /* For secondary channels, we pick up ref-count on the primary server */
1520 if (CIFS_SERVER_IS_CHAN(server))
1521 cifs_put_tcp_session(server->primary_server, from_reconnect);
1523 cancel_delayed_work_sync(&server->echo);
1524 cancel_delayed_work_sync(&server->resolve);
1528 * Avoid deadlock here: reconnect work calls
1529 * cifs_put_tcp_session() at its end. Need to be sure
1530 * that reconnect work does nothing with server pointer after
1533 cancel_delayed_work(&server->reconnect);
1535 cancel_delayed_work_sync(&server->reconnect);
1537 spin_lock(&cifs_tcp_ses_lock);
1538 server->tcpStatus = CifsExiting;
1539 spin_unlock(&cifs_tcp_ses_lock);
1541 cifs_crypto_secmech_release(server);
1543 kfree(server->session_key.response);
1544 server->session_key.response = NULL;
1545 server->session_key.len = 0;
1546 kfree(server->hostname);
1548 task = xchg(&server->tsk, NULL);
1550 send_sig(SIGKILL, task, 1);
1553 struct TCP_Server_Info *
1554 cifs_get_tcp_session(struct smb3_fs_context *ctx,
1555 struct TCP_Server_Info *primary_server)
1557 struct TCP_Server_Info *tcp_ses = NULL;
1560 cifs_dbg(FYI, "UNC: %s\n", ctx->UNC);
1562 /* see if we already have a matching tcp_ses */
1563 tcp_ses = cifs_find_tcp_session(ctx);
1567 tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL);
1573 tcp_ses->hostname = kstrdup(ctx->server_hostname, GFP_KERNEL);
1574 if (!tcp_ses->hostname) {
1579 if (ctx->nosharesock)
1580 tcp_ses->nosharesock = true;
1582 tcp_ses->ops = ctx->ops;
1583 tcp_ses->vals = ctx->vals;
1584 cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns));
1586 tcp_ses->conn_id = atomic_inc_return(&tcpSesNextId);
1587 tcp_ses->noblockcnt = ctx->rootfs;
1588 tcp_ses->noblocksnd = ctx->noblocksnd || ctx->rootfs;
1589 tcp_ses->noautotune = ctx->noautotune;
1590 tcp_ses->tcp_nodelay = ctx->sockopt_tcp_nodelay;
1591 tcp_ses->rdma = ctx->rdma;
1592 tcp_ses->in_flight = 0;
1593 tcp_ses->max_in_flight = 0;
1594 tcp_ses->credits = 1;
1595 if (primary_server) {
1596 spin_lock(&cifs_tcp_ses_lock);
1597 ++primary_server->srv_count;
1598 tcp_ses->primary_server = primary_server;
1599 spin_unlock(&cifs_tcp_ses_lock);
1601 init_waitqueue_head(&tcp_ses->response_q);
1602 init_waitqueue_head(&tcp_ses->request_q);
1603 INIT_LIST_HEAD(&tcp_ses->pending_mid_q);
1604 mutex_init(&tcp_ses->_srv_mutex);
1605 memcpy(tcp_ses->workstation_RFC1001_name,
1606 ctx->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
1607 memcpy(tcp_ses->server_RFC1001_name,
1608 ctx->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
1609 tcp_ses->session_estab = false;
1610 tcp_ses->sequence_number = 0;
1611 tcp_ses->reconnect_instance = 1;
1612 tcp_ses->lstrp = jiffies;
1613 tcp_ses->compress_algorithm = cpu_to_le16(ctx->compression);
1614 spin_lock_init(&tcp_ses->req_lock);
1615 INIT_LIST_HEAD(&tcp_ses->tcp_ses_list);
1616 INIT_LIST_HEAD(&tcp_ses->smb_ses_list);
1617 INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request);
1618 INIT_DELAYED_WORK(&tcp_ses->resolve, cifs_resolve_server);
1619 INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server);
1620 mutex_init(&tcp_ses->reconnect_mutex);
1621 #ifdef CONFIG_CIFS_DFS_UPCALL
1622 mutex_init(&tcp_ses->refpath_lock);
1624 memcpy(&tcp_ses->srcaddr, &ctx->srcaddr,
1625 sizeof(tcp_ses->srcaddr));
1626 memcpy(&tcp_ses->dstaddr, &ctx->dstaddr,
1627 sizeof(tcp_ses->dstaddr));
1628 if (ctx->use_client_guid)
1629 memcpy(tcp_ses->client_guid, ctx->client_guid,
1630 SMB2_CLIENT_GUID_SIZE);
1632 generate_random_uuid(tcp_ses->client_guid);
1634 * at this point we are the only ones with the pointer
1635 * to the struct since the kernel thread not created yet
1636 * no need to spinlock this init of tcpStatus or srv_count
1638 tcp_ses->tcpStatus = CifsNew;
1639 ++tcp_ses->srv_count;
1641 if (ctx->echo_interval >= SMB_ECHO_INTERVAL_MIN &&
1642 ctx->echo_interval <= SMB_ECHO_INTERVAL_MAX)
1643 tcp_ses->echo_interval = ctx->echo_interval * HZ;
1645 tcp_ses->echo_interval = SMB_ECHO_INTERVAL_DEFAULT * HZ;
1646 if (tcp_ses->rdma) {
1647 #ifndef CONFIG_CIFS_SMB_DIRECT
1648 cifs_dbg(VFS, "CONFIG_CIFS_SMB_DIRECT is not enabled\n");
1650 goto out_err_crypto_release;
1652 tcp_ses->smbd_conn = smbd_get_connection(
1653 tcp_ses, (struct sockaddr *)&ctx->dstaddr);
1654 if (tcp_ses->smbd_conn) {
1655 cifs_dbg(VFS, "RDMA transport established\n");
1657 goto smbd_connected;
1660 goto out_err_crypto_release;
1663 rc = ip_connect(tcp_ses);
1665 cifs_dbg(VFS, "Error connecting to socket. Aborting operation.\n");
1666 goto out_err_crypto_release;
1670 * since we're in a cifs function already, we know that
1671 * this will succeed. No need for try_module_get().
1673 __module_get(THIS_MODULE);
1674 tcp_ses->tsk = kthread_run(cifs_demultiplex_thread,
1676 if (IS_ERR(tcp_ses->tsk)) {
1677 rc = PTR_ERR(tcp_ses->tsk);
1678 cifs_dbg(VFS, "error %d create cifsd thread\n", rc);
1679 module_put(THIS_MODULE);
1680 goto out_err_crypto_release;
1682 tcp_ses->min_offload = ctx->min_offload;
1684 * at this point we are the only ones with the pointer
1685 * to the struct since the kernel thread not created yet
1686 * no need to spinlock this update of tcpStatus
1688 spin_lock(&cifs_tcp_ses_lock);
1689 tcp_ses->tcpStatus = CifsNeedNegotiate;
1690 spin_unlock(&cifs_tcp_ses_lock);
1692 if ((ctx->max_credits < 20) || (ctx->max_credits > 60000))
1693 tcp_ses->max_credits = SMB2_MAX_CREDITS_AVAILABLE;
1695 tcp_ses->max_credits = ctx->max_credits;
1697 tcp_ses->nr_targets = 1;
1698 tcp_ses->ignore_signature = ctx->ignore_signature;
1699 /* thread spawned, put it on the list */
1700 spin_lock(&cifs_tcp_ses_lock);
1701 list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list);
1702 spin_unlock(&cifs_tcp_ses_lock);
1704 /* queue echo request delayed work */
1705 queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval);
1707 /* queue dns resolution delayed work */
1708 cifs_dbg(FYI, "%s: next dns resolution scheduled for %d seconds in the future\n",
1709 __func__, SMB_DNS_RESOLVE_INTERVAL_DEFAULT);
1711 queue_delayed_work(cifsiod_wq, &tcp_ses->resolve, (SMB_DNS_RESOLVE_INTERVAL_DEFAULT * HZ));
1715 out_err_crypto_release:
1716 cifs_crypto_secmech_release(tcp_ses);
1718 put_net(cifs_net_ns(tcp_ses));
1722 if (CIFS_SERVER_IS_CHAN(tcp_ses))
1723 cifs_put_tcp_session(tcp_ses->primary_server, false);
1724 kfree(tcp_ses->hostname);
1725 if (tcp_ses->ssocket)
1726 sock_release(tcp_ses->ssocket);
1732 static int match_session(struct cifs_ses *ses, struct smb3_fs_context *ctx)
1734 if (ctx->sectype != Unspecified &&
1735 ctx->sectype != ses->sectype)
1739 * If an existing session is limited to less channels than
1740 * requested, it should not be reused
1742 spin_lock(&ses->chan_lock);
1743 if (ses->chan_max < ctx->max_channels) {
1744 spin_unlock(&ses->chan_lock);
1747 spin_unlock(&ses->chan_lock);
1749 switch (ses->sectype) {
1751 if (!uid_eq(ctx->cred_uid, ses->cred_uid))
1755 /* NULL username means anonymous session */
1756 if (ses->user_name == NULL) {
1762 /* anything else takes username/password */
1763 if (strncmp(ses->user_name,
1764 ctx->username ? ctx->username : "",
1765 CIFS_MAX_USERNAME_LEN))
1767 if ((ctx->username && strlen(ctx->username) != 0) &&
1768 ses->password != NULL &&
1769 strncmp(ses->password,
1770 ctx->password ? ctx->password : "",
1771 CIFS_MAX_PASSWORD_LEN))
1778 * cifs_setup_ipc - helper to setup the IPC tcon for the session
1779 * @ses: smb session to issue the request on
1780 * @ctx: the superblock configuration context to use for building the
1781 * new tree connection for the IPC (interprocess communication RPC)
1783 * A new IPC connection is made and stored in the session
1784 * tcon_ipc. The IPC tcon has the same lifetime as the session.
1787 cifs_setup_ipc(struct cifs_ses *ses, struct smb3_fs_context *ctx)
1790 struct cifs_tcon *tcon;
1791 char unc[SERVER_NAME_LENGTH + sizeof("//x/IPC$")] = {0};
1793 struct TCP_Server_Info *server = ses->server;
1796 * If the mount request that resulted in the creation of the
1797 * session requires encryption, force IPC to be encrypted too.
1800 if (server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION)
1803 cifs_server_dbg(VFS,
1804 "IPC: server doesn't support encryption\n");
1809 tcon = tconInfoAlloc();
1813 scnprintf(unc, sizeof(unc), "\\\\%s\\IPC$", server->hostname);
1819 rc = server->ops->tree_connect(xid, ses, unc, tcon, ctx->local_nls);
1823 cifs_server_dbg(VFS, "failed to connect to IPC (rc=%d)\n", rc);
1828 cifs_dbg(FYI, "IPC tcon rc=%d ipc tid=0x%x\n", rc, tcon->tid);
1830 ses->tcon_ipc = tcon;
1836 * cifs_free_ipc - helper to release the session IPC tcon
1837 * @ses: smb session to unmount the IPC from
1839 * Needs to be called everytime a session is destroyed.
1841 * On session close, the IPC is closed and the server must release all tcons of the session.
1842 * No need to send a tree disconnect here.
1844 * Besides, it will make the server to not close durable and resilient files on session close, as
1845 * specified in MS-SMB2 3.3.5.6 Receiving an SMB2 LOGOFF Request.
1848 cifs_free_ipc(struct cifs_ses *ses)
1850 struct cifs_tcon *tcon = ses->tcon_ipc;
1856 ses->tcon_ipc = NULL;
1860 static struct cifs_ses *
1861 cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
1863 struct cifs_ses *ses;
1865 spin_lock(&cifs_tcp_ses_lock);
1866 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
1867 if (ses->ses_status == SES_EXITING)
1869 if (!match_session(ses, ctx))
1872 spin_unlock(&cifs_tcp_ses_lock);
1875 spin_unlock(&cifs_tcp_ses_lock);
1879 void cifs_put_smb_ses(struct cifs_ses *ses)
1881 unsigned int rc, xid;
1882 unsigned int chan_count;
1883 struct TCP_Server_Info *server = ses->server;
1885 spin_lock(&cifs_tcp_ses_lock);
1886 if (ses->ses_status == SES_EXITING) {
1887 spin_unlock(&cifs_tcp_ses_lock);
1891 cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count);
1892 cifs_dbg(FYI, "%s: ses ipc: %s\n", __func__, ses->tcon_ipc ? ses->tcon_ipc->treeName : "NONE");
1894 if (--ses->ses_count > 0) {
1895 spin_unlock(&cifs_tcp_ses_lock);
1899 /* ses_count can never go negative */
1900 WARN_ON(ses->ses_count < 0);
1902 if (ses->ses_status == SES_GOOD)
1903 ses->ses_status = SES_EXITING;
1904 spin_unlock(&cifs_tcp_ses_lock);
1908 if (ses->ses_status == SES_EXITING && server->ops->logoff) {
1910 rc = server->ops->logoff(xid, ses);
1912 cifs_server_dbg(VFS, "%s: Session Logoff failure rc=%d\n",
1917 spin_lock(&cifs_tcp_ses_lock);
1918 list_del_init(&ses->smb_ses_list);
1919 spin_unlock(&cifs_tcp_ses_lock);
1921 spin_lock(&ses->chan_lock);
1922 chan_count = ses->chan_count;
1924 /* close any extra channels */
1925 if (chan_count > 1) {
1928 for (i = 1; i < chan_count; i++) {
1929 if (ses->chans[i].iface) {
1930 kref_put(&ses->chans[i].iface->refcount, release_iface);
1931 ses->chans[i].iface = NULL;
1933 cifs_put_tcp_session(ses->chans[i].server, 0);
1934 ses->chans[i].server = NULL;
1937 spin_unlock(&ses->chan_lock);
1940 cifs_put_tcp_session(server, 0);
1945 /* strlen("cifs:a:") + CIFS_MAX_DOMAINNAME_LEN + 1 */
1946 #define CIFSCREDS_DESC_SIZE (7 + CIFS_MAX_DOMAINNAME_LEN + 1)
1948 /* Populate username and pw fields from keyring if possible */
1950 cifs_set_cifscreds(struct smb3_fs_context *ctx, struct cifs_ses *ses)
1954 const char *delim, *payload;
1958 struct TCP_Server_Info *server = ses->server;
1959 struct sockaddr_in *sa;
1960 struct sockaddr_in6 *sa6;
1961 const struct user_key_payload *upayload;
1963 desc = kmalloc(CIFSCREDS_DESC_SIZE, GFP_KERNEL);
1967 /* try to find an address key first */
1968 switch (server->dstaddr.ss_family) {
1970 sa = (struct sockaddr_in *)&server->dstaddr;
1971 sprintf(desc, "cifs:a:%pI4", &sa->sin_addr.s_addr);
1974 sa6 = (struct sockaddr_in6 *)&server->dstaddr;
1975 sprintf(desc, "cifs:a:%pI6c", &sa6->sin6_addr.s6_addr);
1978 cifs_dbg(FYI, "Bad ss_family (%hu)\n",
1979 server->dstaddr.ss_family);
1984 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
1985 key = request_key(&key_type_logon, desc, "");
1987 if (!ses->domainName) {
1988 cifs_dbg(FYI, "domainName is NULL\n");
1993 /* didn't work, try to find a domain key */
1994 sprintf(desc, "cifs:d:%s", ses->domainName);
1995 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
1996 key = request_key(&key_type_logon, desc, "");
2004 down_read(&key->sem);
2005 upayload = user_key_payload_locked(key);
2006 if (IS_ERR_OR_NULL(upayload)) {
2007 rc = upayload ? PTR_ERR(upayload) : -EINVAL;
2011 /* find first : in payload */
2012 payload = upayload->data;
2013 delim = strnchr(payload, upayload->datalen, ':');
2014 cifs_dbg(FYI, "payload=%s\n", payload);
2016 cifs_dbg(FYI, "Unable to find ':' in payload (datalen=%d)\n",
2022 len = delim - payload;
2023 if (len > CIFS_MAX_USERNAME_LEN || len <= 0) {
2024 cifs_dbg(FYI, "Bad value from username search (len=%zd)\n",
2030 ctx->username = kstrndup(payload, len, GFP_KERNEL);
2031 if (!ctx->username) {
2032 cifs_dbg(FYI, "Unable to allocate %zd bytes for username\n",
2037 cifs_dbg(FYI, "%s: username=%s\n", __func__, ctx->username);
2039 len = key->datalen - (len + 1);
2040 if (len > CIFS_MAX_PASSWORD_LEN || len <= 0) {
2041 cifs_dbg(FYI, "Bad len for password search (len=%zd)\n", len);
2043 kfree(ctx->username);
2044 ctx->username = NULL;
2049 ctx->password = kstrndup(delim, len, GFP_KERNEL);
2050 if (!ctx->password) {
2051 cifs_dbg(FYI, "Unable to allocate %zd bytes for password\n",
2054 kfree(ctx->username);
2055 ctx->username = NULL;
2060 * If we have a domain key then we must set the domainName in the
2063 if (is_domain && ses->domainName) {
2064 ctx->domainname = kstrdup(ses->domainName, GFP_KERNEL);
2065 if (!ctx->domainname) {
2066 cifs_dbg(FYI, "Unable to allocate %zd bytes for domain\n",
2069 kfree(ctx->username);
2070 ctx->username = NULL;
2071 kfree_sensitive(ctx->password);
2072 ctx->password = NULL;
2077 strscpy(ctx->workstation_name, ses->workstation_name, sizeof(ctx->workstation_name));
2084 cifs_dbg(FYI, "%s: returning %d\n", __func__, rc);
2087 #else /* ! CONFIG_KEYS */
2089 cifs_set_cifscreds(struct smb3_fs_context *ctx __attribute__((unused)),
2090 struct cifs_ses *ses __attribute__((unused)))
2094 #endif /* CONFIG_KEYS */
2097 * cifs_get_smb_ses - get a session matching @ctx data from @server
2098 * @server: server to setup the session to
2099 * @ctx: superblock configuration context to use to setup the session
2101 * This function assumes it is being called from cifs_mount() where we
2102 * already got a server reference (server refcount +1). See
2103 * cifs_get_tcon() for refcount explanations.
2106 cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
2110 struct cifs_ses *ses;
2111 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
2112 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
2116 ses = cifs_find_smb_ses(server, ctx);
2118 cifs_dbg(FYI, "Existing smb sess found (status=%d)\n",
2121 spin_lock(&ses->chan_lock);
2122 if (cifs_chan_needs_reconnect(ses, server)) {
2123 spin_unlock(&ses->chan_lock);
2124 cifs_dbg(FYI, "Session needs reconnect\n");
2126 mutex_lock(&ses->session_mutex);
2127 rc = cifs_negotiate_protocol(xid, ses, server);
2129 mutex_unlock(&ses->session_mutex);
2130 /* problem -- put our ses reference */
2131 cifs_put_smb_ses(ses);
2136 rc = cifs_setup_session(xid, ses, server,
2139 mutex_unlock(&ses->session_mutex);
2140 /* problem -- put our reference */
2141 cifs_put_smb_ses(ses);
2145 mutex_unlock(&ses->session_mutex);
2147 spin_lock(&ses->chan_lock);
2149 spin_unlock(&ses->chan_lock);
2151 /* existing SMB ses has a server reference already */
2152 cifs_put_tcp_session(server, 0);
2157 cifs_dbg(FYI, "Existing smb sess not found\n");
2158 ses = sesInfoAlloc();
2162 /* new SMB session uses our server ref */
2163 ses->server = server;
2164 if (server->dstaddr.ss_family == AF_INET6)
2165 sprintf(ses->ip_addr, "%pI6", &addr6->sin6_addr);
2167 sprintf(ses->ip_addr, "%pI4", &addr->sin_addr);
2169 if (ctx->username) {
2170 ses->user_name = kstrdup(ctx->username, GFP_KERNEL);
2171 if (!ses->user_name)
2175 /* ctx->password freed at unmount */
2176 if (ctx->password) {
2177 ses->password = kstrdup(ctx->password, GFP_KERNEL);
2181 if (ctx->domainname) {
2182 ses->domainName = kstrdup(ctx->domainname, GFP_KERNEL);
2183 if (!ses->domainName)
2187 strscpy(ses->workstation_name, ctx->workstation_name, sizeof(ses->workstation_name));
2189 if (ctx->domainauto)
2190 ses->domainAuto = ctx->domainauto;
2191 ses->cred_uid = ctx->cred_uid;
2192 ses->linux_uid = ctx->linux_uid;
2194 ses->sectype = ctx->sectype;
2195 ses->sign = ctx->sign;
2197 /* add server as first channel */
2198 spin_lock(&ses->chan_lock);
2199 ses->chans[0].server = server;
2200 ses->chan_count = 1;
2201 ses->chan_max = ctx->multichannel ? ctx->max_channels:1;
2202 ses->chans_need_reconnect = 1;
2203 spin_unlock(&ses->chan_lock);
2205 mutex_lock(&ses->session_mutex);
2206 rc = cifs_negotiate_protocol(xid, ses, server);
2208 rc = cifs_setup_session(xid, ses, server, ctx->local_nls);
2209 mutex_unlock(&ses->session_mutex);
2211 /* each channel uses a different signing key */
2212 spin_lock(&ses->chan_lock);
2213 memcpy(ses->chans[0].signkey, ses->smb3signingkey,
2214 sizeof(ses->smb3signingkey));
2215 spin_unlock(&ses->chan_lock);
2221 * success, put it on the list and add it as first channel
2222 * note: the session becomes active soon after this. So you'll
2223 * need to lock before changing something in the session.
2225 spin_lock(&cifs_tcp_ses_lock);
2226 list_add(&ses->smb_ses_list, &server->smb_ses_list);
2227 spin_unlock(&cifs_tcp_ses_lock);
2231 cifs_setup_ipc(ses, ctx);
2241 static int match_tcon(struct cifs_tcon *tcon, struct smb3_fs_context *ctx)
2243 if (tcon->status == TID_EXITING)
2245 if (strncmp(tcon->treeName, ctx->UNC, MAX_TREE_SIZE))
2247 if (tcon->seal != ctx->seal)
2249 if (tcon->snapshot_time != ctx->snapshot_time)
2251 if (tcon->handle_timeout != ctx->handle_timeout)
2253 if (tcon->no_lease != ctx->no_lease)
2255 if (tcon->nodelete != ctx->nodelete)
2260 static struct cifs_tcon *
2261 cifs_find_tcon(struct cifs_ses *ses, struct smb3_fs_context *ctx)
2263 struct list_head *tmp;
2264 struct cifs_tcon *tcon;
2266 spin_lock(&cifs_tcp_ses_lock);
2267 list_for_each(tmp, &ses->tcon_list) {
2268 tcon = list_entry(tmp, struct cifs_tcon, tcon_list);
2270 if (!match_tcon(tcon, ctx))
2273 spin_unlock(&cifs_tcp_ses_lock);
2276 spin_unlock(&cifs_tcp_ses_lock);
2281 cifs_put_tcon(struct cifs_tcon *tcon)
2284 struct cifs_ses *ses;
2287 * IPC tcon share the lifetime of their session and are
2288 * destroyed in the session put function
2290 if (tcon == NULL || tcon->ipc)
2294 cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count);
2295 spin_lock(&cifs_tcp_ses_lock);
2296 if (--tcon->tc_count > 0) {
2297 spin_unlock(&cifs_tcp_ses_lock);
2301 /* tc_count can never go negative */
2302 WARN_ON(tcon->tc_count < 0);
2304 list_del_init(&tcon->tcon_list);
2305 spin_unlock(&cifs_tcp_ses_lock);
2307 /* cancel polling of interfaces */
2308 cancel_delayed_work_sync(&tcon->query_interfaces);
2310 if (tcon->use_witness) {
2313 rc = cifs_swn_unregister(tcon);
2315 cifs_dbg(VFS, "%s: Failed to unregister for witness notifications: %d\n",
2321 if (ses->server->ops->tree_disconnect)
2322 ses->server->ops->tree_disconnect(xid, tcon);
2325 cifs_fscache_release_super_cookie(tcon);
2327 cifs_put_smb_ses(ses);
2331 * cifs_get_tcon - get a tcon matching @ctx data from @ses
2332 * @ses: smb session to issue the request on
2333 * @ctx: the superblock configuration context to use for building the
2335 * - tcon refcount is the number of mount points using the tcon.
2336 * - ses refcount is the number of tcon using the session.
2338 * 1. This function assumes it is being called from cifs_mount() where
2339 * we already got a session reference (ses refcount +1).
2341 * 2. Since we're in the context of adding a mount point, the end
2342 * result should be either:
2344 * a) a new tcon already allocated with refcount=1 (1 mount point) and
2345 * its session refcount incremented (1 new tcon). This +1 was
2346 * already done in (1).
2348 * b) an existing tcon with refcount+1 (add a mount point to it) and
2349 * identical ses refcount (no new tcon). Because of (1) we need to
2350 * decrement the ses refcount.
2352 static struct cifs_tcon *
2353 cifs_get_tcon(struct cifs_ses *ses, struct smb3_fs_context *ctx)
2356 struct cifs_tcon *tcon;
2358 tcon = cifs_find_tcon(ses, ctx);
2361 * tcon has refcount already incremented but we need to
2362 * decrement extra ses reference gotten by caller (case b)
2364 cifs_dbg(FYI, "Found match on UNC path\n");
2365 cifs_put_smb_ses(ses);
2369 if (!ses->server->ops->tree_connect) {
2374 tcon = tconInfoAlloc();
2380 if (ctx->snapshot_time) {
2381 if (ses->server->vals->protocol_id == 0) {
2383 "Use SMB2 or later for snapshot mount option\n");
2387 tcon->snapshot_time = ctx->snapshot_time;
2390 if (ctx->handle_timeout) {
2391 if (ses->server->vals->protocol_id == 0) {
2393 "Use SMB2.1 or later for handle timeout option\n");
2397 tcon->handle_timeout = ctx->handle_timeout;
2401 if (ctx->password) {
2402 tcon->password = kstrdup(ctx->password, GFP_KERNEL);
2403 if (!tcon->password) {
2410 if (ses->server->vals->protocol_id == 0) {
2412 "SMB3 or later required for encryption\n");
2415 } else if (tcon->ses->server->capabilities &
2416 SMB2_GLOBAL_CAP_ENCRYPTION)
2419 cifs_dbg(VFS, "Encryption is not supported on share\n");
2425 if (ctx->linux_ext) {
2426 if (ses->server->posix_ext_supported) {
2427 tcon->posix_extensions = true;
2428 pr_warn_once("SMB3.11 POSIX Extensions are experimental\n");
2429 } else if ((ses->server->vals->protocol_id == SMB311_PROT_ID) ||
2430 (strcmp(ses->server->vals->version_string,
2431 SMB3ANY_VERSION_STRING) == 0) ||
2432 (strcmp(ses->server->vals->version_string,
2433 SMBDEFAULT_VERSION_STRING) == 0)) {
2434 cifs_dbg(VFS, "Server does not support mounting with posix SMB3.11 extensions\n");
2438 cifs_dbg(VFS, "Check vers= mount option. SMB3.11 "
2439 "disabled but required for POSIX extensions\n");
2446 rc = ses->server->ops->tree_connect(xid, ses, ctx->UNC, tcon,
2449 cifs_dbg(FYI, "Tcon rc = %d\n", rc);
2453 tcon->use_persistent = false;
2454 /* check if SMB2 or later, CIFS does not support persistent handles */
2455 if (ctx->persistent) {
2456 if (ses->server->vals->protocol_id == 0) {
2458 "SMB3 or later required for persistent handles\n");
2461 } else if (ses->server->capabilities &
2462 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
2463 tcon->use_persistent = true;
2464 else /* persistent handles requested but not supported */ {
2466 "Persistent handles not supported on share\n");
2470 } else if ((tcon->capabilities & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY)
2471 && (ses->server->capabilities & SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
2472 && (ctx->nopersistent == false)) {
2473 cifs_dbg(FYI, "enabling persistent handles\n");
2474 tcon->use_persistent = true;
2475 } else if (ctx->resilient) {
2476 if (ses->server->vals->protocol_id == 0) {
2478 "SMB2.1 or later required for resilient handles\n");
2482 tcon->use_resilient = true;
2485 tcon->use_witness = false;
2486 if (IS_ENABLED(CONFIG_CIFS_SWN_UPCALL) && ctx->witness) {
2487 if (ses->server->vals->protocol_id >= SMB30_PROT_ID) {
2488 if (tcon->capabilities & SMB2_SHARE_CAP_CLUSTER) {
2490 * Set witness in use flag in first place
2491 * to retry registration in the echo task
2493 tcon->use_witness = true;
2494 /* And try to register immediately */
2495 rc = cifs_swn_register(tcon);
2497 cifs_dbg(VFS, "Failed to register for witness notifications: %d\n", rc);
2501 /* TODO: try to extend for non-cluster uses (eg multichannel) */
2502 cifs_dbg(VFS, "witness requested on mount but no CLUSTER capability on share\n");
2507 cifs_dbg(VFS, "SMB3 or later required for witness option\n");
2513 /* If the user really knows what they are doing they can override */
2514 if (tcon->share_flags & SMB2_SHAREFLAG_NO_CACHING) {
2516 cifs_dbg(VFS, "cache=ro requested on mount but NO_CACHING flag set on share\n");
2517 else if (ctx->cache_rw)
2518 cifs_dbg(VFS, "cache=singleclient requested on mount but NO_CACHING flag set on share\n");
2521 if (ctx->no_lease) {
2522 if (ses->server->vals->protocol_id == 0) {
2524 "SMB2 or later required for nolease option\n");
2528 tcon->no_lease = ctx->no_lease;
2532 * We can have only one retry value for a connection to a share so for
2533 * resources mounted more than once to the same server share the last
2534 * value passed in for the retry flag is used.
2536 tcon->retry = ctx->retry;
2537 tcon->nocase = ctx->nocase;
2538 tcon->broken_sparse_sup = ctx->no_sparse;
2539 if (ses->server->capabilities & SMB2_GLOBAL_CAP_DIRECTORY_LEASING)
2540 tcon->nohandlecache = ctx->nohandlecache;
2542 tcon->nohandlecache = true;
2543 tcon->nodelete = ctx->nodelete;
2544 tcon->local_lease = ctx->local_lease;
2545 INIT_LIST_HEAD(&tcon->pending_opens);
2547 /* schedule query interfaces poll */
2548 INIT_DELAYED_WORK(&tcon->query_interfaces,
2549 smb2_query_server_interfaces);
2550 queue_delayed_work(cifsiod_wq, &tcon->query_interfaces,
2551 (SMB_INTERFACE_POLL_INTERVAL * HZ));
2553 spin_lock(&cifs_tcp_ses_lock);
2554 list_add(&tcon->tcon_list, &ses->tcon_list);
2555 spin_unlock(&cifs_tcp_ses_lock);
2565 cifs_put_tlink(struct tcon_link *tlink)
2567 if (!tlink || IS_ERR(tlink))
2570 if (!atomic_dec_and_test(&tlink->tl_count) ||
2571 test_bit(TCON_LINK_IN_TREE, &tlink->tl_flags)) {
2572 tlink->tl_time = jiffies;
2576 if (!IS_ERR(tlink_tcon(tlink)))
2577 cifs_put_tcon(tlink_tcon(tlink));
2583 compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2585 struct cifs_sb_info *old = CIFS_SB(sb);
2586 struct cifs_sb_info *new = mnt_data->cifs_sb;
2587 unsigned int oldflags = old->mnt_cifs_flags & CIFS_MOUNT_MASK;
2588 unsigned int newflags = new->mnt_cifs_flags & CIFS_MOUNT_MASK;
2590 if ((sb->s_flags & CIFS_MS_MASK) != (mnt_data->flags & CIFS_MS_MASK))
2593 if (old->mnt_cifs_serverino_autodisabled)
2594 newflags &= ~CIFS_MOUNT_SERVER_INUM;
2596 if (oldflags != newflags)
2600 * We want to share sb only if we don't specify an r/wsize or
2601 * specified r/wsize is greater than or equal to existing one.
2603 if (new->ctx->wsize && new->ctx->wsize < old->ctx->wsize)
2606 if (new->ctx->rsize && new->ctx->rsize < old->ctx->rsize)
2609 if (!uid_eq(old->ctx->linux_uid, new->ctx->linux_uid) ||
2610 !gid_eq(old->ctx->linux_gid, new->ctx->linux_gid))
2613 if (old->ctx->file_mode != new->ctx->file_mode ||
2614 old->ctx->dir_mode != new->ctx->dir_mode)
2617 if (strcmp(old->local_nls->charset, new->local_nls->charset))
2620 if (old->ctx->acregmax != new->ctx->acregmax)
2622 if (old->ctx->acdirmax != new->ctx->acdirmax)
2629 match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2631 struct cifs_sb_info *old = CIFS_SB(sb);
2632 struct cifs_sb_info *new = mnt_data->cifs_sb;
2633 bool old_set = (old->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) &&
2635 bool new_set = (new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) &&
2638 if (old_set && new_set && !strcmp(new->prepath, old->prepath))
2640 else if (!old_set && !new_set)
2647 cifs_match_super(struct super_block *sb, void *data)
2649 struct cifs_mnt_data *mnt_data = (struct cifs_mnt_data *)data;
2650 struct smb3_fs_context *ctx;
2651 struct cifs_sb_info *cifs_sb;
2652 struct TCP_Server_Info *tcp_srv;
2653 struct cifs_ses *ses;
2654 struct cifs_tcon *tcon;
2655 struct tcon_link *tlink;
2658 spin_lock(&cifs_tcp_ses_lock);
2659 cifs_sb = CIFS_SB(sb);
2660 tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
2661 if (tlink == NULL) {
2662 /* can not match superblock if tlink were ever null */
2663 spin_unlock(&cifs_tcp_ses_lock);
2666 tcon = tlink_tcon(tlink);
2668 tcp_srv = ses->server;
2670 ctx = mnt_data->ctx;
2672 if (!match_server(tcp_srv, ctx) ||
2673 !match_session(ses, ctx) ||
2674 !match_tcon(tcon, ctx) ||
2675 !match_prepath(sb, mnt_data)) {
2680 rc = compare_mount_options(sb, mnt_data);
2682 spin_unlock(&cifs_tcp_ses_lock);
2683 cifs_put_tlink(tlink);
2687 #ifdef CONFIG_DEBUG_LOCK_ALLOC
2688 static struct lock_class_key cifs_key[2];
2689 static struct lock_class_key cifs_slock_key[2];
2692 cifs_reclassify_socket4(struct socket *sock)
2694 struct sock *sk = sock->sk;
2695 BUG_ON(!sock_allow_reclassification(sk));
2696 sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS",
2697 &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]);
2701 cifs_reclassify_socket6(struct socket *sock)
2703 struct sock *sk = sock->sk;
2704 BUG_ON(!sock_allow_reclassification(sk));
2705 sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS",
2706 &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]);
2710 cifs_reclassify_socket4(struct socket *sock)
2715 cifs_reclassify_socket6(struct socket *sock)
2720 /* See RFC1001 section 14 on representation of Netbios names */
2721 static void rfc1002mangle(char *target, char *source, unsigned int length)
2725 for (i = 0, j = 0; i < (length); i++) {
2726 /* mask a nibble at a time and encode */
2727 target[j] = 'A' + (0x0F & (source[i] >> 4));
2728 target[j+1] = 'A' + (0x0F & source[i]);
2735 bind_socket(struct TCP_Server_Info *server)
2738 if (server->srcaddr.ss_family != AF_UNSPEC) {
2739 /* Bind to the specified local IP address */
2740 struct socket *socket = server->ssocket;
2741 rc = socket->ops->bind(socket,
2742 (struct sockaddr *) &server->srcaddr,
2743 sizeof(server->srcaddr));
2745 struct sockaddr_in *saddr4;
2746 struct sockaddr_in6 *saddr6;
2747 saddr4 = (struct sockaddr_in *)&server->srcaddr;
2748 saddr6 = (struct sockaddr_in6 *)&server->srcaddr;
2749 if (saddr6->sin6_family == AF_INET6)
2750 cifs_server_dbg(VFS, "Failed to bind to: %pI6c, error: %d\n",
2751 &saddr6->sin6_addr, rc);
2753 cifs_server_dbg(VFS, "Failed to bind to: %pI4, error: %d\n",
2754 &saddr4->sin_addr.s_addr, rc);
2761 ip_rfc1001_connect(struct TCP_Server_Info *server)
2765 * some servers require RFC1001 sessinit before sending
2766 * negprot - BB check reconnection in case where second
2767 * sessinit is sent but no second negprot
2769 struct rfc1002_session_packet *ses_init_buf;
2770 struct smb_hdr *smb_buf;
2771 ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet),
2774 ses_init_buf->trailer.session_req.called_len = 32;
2776 if (server->server_RFC1001_name[0] != 0)
2777 rfc1002mangle(ses_init_buf->trailer.
2778 session_req.called_name,
2779 server->server_RFC1001_name,
2780 RFC1001_NAME_LEN_WITH_NULL);
2782 rfc1002mangle(ses_init_buf->trailer.
2783 session_req.called_name,
2784 DEFAULT_CIFS_CALLED_NAME,
2785 RFC1001_NAME_LEN_WITH_NULL);
2787 ses_init_buf->trailer.session_req.calling_len = 32;
2790 * calling name ends in null (byte 16) from old smb
2793 if (server->workstation_RFC1001_name[0] != 0)
2794 rfc1002mangle(ses_init_buf->trailer.
2795 session_req.calling_name,
2796 server->workstation_RFC1001_name,
2797 RFC1001_NAME_LEN_WITH_NULL);
2799 rfc1002mangle(ses_init_buf->trailer.
2800 session_req.calling_name,
2802 RFC1001_NAME_LEN_WITH_NULL);
2804 ses_init_buf->trailer.session_req.scope1 = 0;
2805 ses_init_buf->trailer.session_req.scope2 = 0;
2806 smb_buf = (struct smb_hdr *)ses_init_buf;
2808 /* sizeof RFC1002_SESSION_REQUEST with no scope */
2809 smb_buf->smb_buf_length = cpu_to_be32(0x81000044);
2810 rc = smb_send(server, smb_buf, 0x44);
2811 kfree(ses_init_buf);
2813 * RFC1001 layer in at least one server
2814 * requires very short break before negprot
2815 * presumably because not expecting negprot
2816 * to follow so fast. This is a simple
2817 * solution that works without
2818 * complicating the code and causes no
2819 * significant slowing down on mount
2822 usleep_range(1000, 2000);
2825 * else the negprot may still work without this
2826 * even though malloc failed
2833 generic_ip_connect(struct TCP_Server_Info *server)
2838 struct socket *socket = server->ssocket;
2839 struct sockaddr *saddr;
2841 saddr = (struct sockaddr *) &server->dstaddr;
2843 if (server->dstaddr.ss_family == AF_INET6) {
2844 struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)&server->dstaddr;
2846 sport = ipv6->sin6_port;
2847 slen = sizeof(struct sockaddr_in6);
2849 cifs_dbg(FYI, "%s: connecting to [%pI6]:%d\n", __func__, &ipv6->sin6_addr,
2852 struct sockaddr_in *ipv4 = (struct sockaddr_in *)&server->dstaddr;
2854 sport = ipv4->sin_port;
2855 slen = sizeof(struct sockaddr_in);
2857 cifs_dbg(FYI, "%s: connecting to %pI4:%d\n", __func__, &ipv4->sin_addr,
2861 if (socket == NULL) {
2862 rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM,
2863 IPPROTO_TCP, &socket, 1);
2865 cifs_server_dbg(VFS, "Error %d creating socket\n", rc);
2866 server->ssocket = NULL;
2870 /* BB other socket options to set KEEPALIVE, NODELAY? */
2871 cifs_dbg(FYI, "Socket created\n");
2872 server->ssocket = socket;
2873 socket->sk->sk_allocation = GFP_NOFS;
2874 if (sfamily == AF_INET6)
2875 cifs_reclassify_socket6(socket);
2877 cifs_reclassify_socket4(socket);
2880 rc = bind_socket(server);
2885 * Eventually check for other socket options to change from
2886 * the default. sock_setsockopt not used because it expects
2889 socket->sk->sk_rcvtimeo = 7 * HZ;
2890 socket->sk->sk_sndtimeo = 5 * HZ;
2892 /* make the bufsizes depend on wsize/rsize and max requests */
2893 if (server->noautotune) {
2894 if (socket->sk->sk_sndbuf < (200 * 1024))
2895 socket->sk->sk_sndbuf = 200 * 1024;
2896 if (socket->sk->sk_rcvbuf < (140 * 1024))
2897 socket->sk->sk_rcvbuf = 140 * 1024;
2900 if (server->tcp_nodelay)
2901 tcp_sock_set_nodelay(socket->sk);
2903 cifs_dbg(FYI, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx\n",
2904 socket->sk->sk_sndbuf,
2905 socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo);
2907 rc = socket->ops->connect(socket, saddr, slen,
2908 server->noblockcnt ? O_NONBLOCK : 0);
2910 * When mounting SMB root file systems, we do not want to block in
2911 * connect. Otherwise bail out and then let cifs_reconnect() perform
2912 * reconnect failover - if possible.
2914 if (server->noblockcnt && rc == -EINPROGRESS)
2917 cifs_dbg(FYI, "Error %d connecting to server\n", rc);
2918 trace_smb3_connect_err(server->hostname, server->conn_id, &server->dstaddr, rc);
2919 sock_release(socket);
2920 server->ssocket = NULL;
2923 trace_smb3_connect_done(server->hostname, server->conn_id, &server->dstaddr);
2924 if (sport == htons(RFC1001_PORT))
2925 rc = ip_rfc1001_connect(server);
2931 ip_connect(struct TCP_Server_Info *server)
2934 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
2935 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
2937 if (server->dstaddr.ss_family == AF_INET6)
2938 sport = &addr6->sin6_port;
2940 sport = &addr->sin_port;
2945 /* try with 445 port at first */
2946 *sport = htons(CIFS_PORT);
2948 rc = generic_ip_connect(server);
2952 /* if it failed, try with 139 port */
2953 *sport = htons(RFC1001_PORT);
2956 return generic_ip_connect(server);
2959 void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon,
2960 struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
2963 * If we are reconnecting then should we check to see if
2964 * any requested capabilities changed locally e.g. via
2965 * remount but we can not do much about it here
2966 * if they have (even if we could detect it by the following)
2967 * Perhaps we could add a backpointer to array of sb from tcon
2968 * or if we change to make all sb to same share the same
2969 * sb as NFS - then we only have one backpointer to sb.
2970 * What if we wanted to mount the server share twice once with
2971 * and once without posixacls or posix paths?
2973 __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
2975 if (ctx && ctx->no_linux_ext) {
2976 tcon->fsUnixInfo.Capability = 0;
2977 tcon->unix_ext = 0; /* Unix Extensions disabled */
2978 cifs_dbg(FYI, "Linux protocol extensions disabled\n");
2981 tcon->unix_ext = 1; /* Unix Extensions supported */
2983 if (!tcon->unix_ext) {
2984 cifs_dbg(FYI, "Unix extensions disabled so not set on reconnect\n");
2988 if (!CIFSSMBQFSUnixInfo(xid, tcon)) {
2989 __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
2990 cifs_dbg(FYI, "unix caps which server supports %lld\n", cap);
2992 * check for reconnect case in which we do not
2993 * want to change the mount behavior if we can avoid it
2997 * turn off POSIX ACL and PATHNAMES if not set
2998 * originally at mount time
3000 if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0)
3001 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
3002 if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
3003 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
3004 cifs_dbg(VFS, "POSIXPATH support change\n");
3005 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
3006 } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
3007 cifs_dbg(VFS, "possible reconnect error\n");
3008 cifs_dbg(VFS, "server disabled POSIX path support\n");
3012 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
3013 cifs_dbg(VFS, "per-share encryption not supported yet\n");
3015 cap &= CIFS_UNIX_CAP_MASK;
3016 if (ctx && ctx->no_psx_acl)
3017 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
3018 else if (CIFS_UNIX_POSIX_ACL_CAP & cap) {
3019 cifs_dbg(FYI, "negotiated posix acl support\n");
3021 cifs_sb->mnt_cifs_flags |=
3022 CIFS_MOUNT_POSIXACL;
3025 if (ctx && ctx->posix_paths == 0)
3026 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
3027 else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
3028 cifs_dbg(FYI, "negotiate posix pathnames\n");
3030 cifs_sb->mnt_cifs_flags |=
3031 CIFS_MOUNT_POSIX_PATHS;
3034 cifs_dbg(FYI, "Negotiate caps 0x%x\n", (int)cap);
3035 #ifdef CONFIG_CIFS_DEBUG2
3036 if (cap & CIFS_UNIX_FCNTL_CAP)
3037 cifs_dbg(FYI, "FCNTL cap\n");
3038 if (cap & CIFS_UNIX_EXTATTR_CAP)
3039 cifs_dbg(FYI, "EXTATTR cap\n");
3040 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
3041 cifs_dbg(FYI, "POSIX path cap\n");
3042 if (cap & CIFS_UNIX_XATTR_CAP)
3043 cifs_dbg(FYI, "XATTR cap\n");
3044 if (cap & CIFS_UNIX_POSIX_ACL_CAP)
3045 cifs_dbg(FYI, "POSIX ACL cap\n");
3046 if (cap & CIFS_UNIX_LARGE_READ_CAP)
3047 cifs_dbg(FYI, "very large read cap\n");
3048 if (cap & CIFS_UNIX_LARGE_WRITE_CAP)
3049 cifs_dbg(FYI, "very large write cap\n");
3050 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)
3051 cifs_dbg(FYI, "transport encryption cap\n");
3052 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
3053 cifs_dbg(FYI, "mandatory transport encryption cap\n");
3054 #endif /* CIFS_DEBUG2 */
3055 if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) {
3057 cifs_dbg(FYI, "resetting capabilities failed\n");
3059 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");
3065 int cifs_setup_cifs_sb(struct cifs_sb_info *cifs_sb)
3067 struct smb3_fs_context *ctx = cifs_sb->ctx;
3069 INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks);
3071 spin_lock_init(&cifs_sb->tlink_tree_lock);
3072 cifs_sb->tlink_tree = RB_ROOT;
3074 cifs_dbg(FYI, "file mode: %04ho dir mode: %04ho\n",
3075 ctx->file_mode, ctx->dir_mode);
3077 /* this is needed for ASCII cp to Unicode converts */
3078 if (ctx->iocharset == NULL) {
3079 /* load_nls_default cannot return null */
3080 cifs_sb->local_nls = load_nls_default();
3082 cifs_sb->local_nls = load_nls(ctx->iocharset);
3083 if (cifs_sb->local_nls == NULL) {
3084 cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n",
3089 ctx->local_nls = cifs_sb->local_nls;
3091 smb3_update_mnt_flags(cifs_sb);
3094 cifs_dbg(FYI, "mounting share using direct i/o\n");
3095 if (ctx->cache_ro) {
3096 cifs_dbg(VFS, "mounting share with read only caching. Ensure that the share will not be modified while in use.\n");
3097 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RO_CACHE;
3098 } else if (ctx->cache_rw) {
3099 cifs_dbg(VFS, "mounting share in single client RW caching mode. Ensure that no other systems will be accessing the share.\n");
3100 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_RO_CACHE |
3101 CIFS_MOUNT_RW_CACHE);
3104 if ((ctx->cifs_acl) && (ctx->dynperm))
3105 cifs_dbg(VFS, "mount option dynperm ignored if cifsacl mount option supported\n");
3108 cifs_sb->prepath = kstrdup(ctx->prepath, GFP_KERNEL);
3109 if (cifs_sb->prepath == NULL)
3111 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3117 /* Release all succeed connections */
3118 static inline void mount_put_conns(struct mount_ctx *mnt_ctx)
3123 cifs_put_tcon(mnt_ctx->tcon);
3124 else if (mnt_ctx->ses)
3125 cifs_put_smb_ses(mnt_ctx->ses);
3126 else if (mnt_ctx->server)
3127 cifs_put_tcp_session(mnt_ctx->server, 0);
3128 mnt_ctx->cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_POSIX_PATHS;
3129 free_xid(mnt_ctx->xid);
3132 /* Get connections for tcp, ses and tcon */
3133 static int mount_get_conns(struct mount_ctx *mnt_ctx)
3136 struct TCP_Server_Info *server = NULL;
3137 struct cifs_ses *ses = NULL;
3138 struct cifs_tcon *tcon = NULL;
3139 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3140 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3145 /* get a reference to a tcp session */
3146 server = cifs_get_tcp_session(ctx, NULL);
3147 if (IS_ERR(server)) {
3148 rc = PTR_ERR(server);
3153 /* get a reference to a SMB session */
3154 ses = cifs_get_smb_ses(server, ctx);
3161 if ((ctx->persistent == true) && (!(ses->server->capabilities &
3162 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES))) {
3163 cifs_server_dbg(VFS, "persistent handles not supported by server\n");
3168 /* search for existing tcon to this server share */
3169 tcon = cifs_get_tcon(ses, ctx);
3176 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
3177 if (tcon->posix_extensions)
3178 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS;
3180 /* tell server which Unix caps we support */
3181 if (cap_unix(tcon->ses)) {
3183 * reset of caps checks mount to see if unix extensions disabled
3184 * for just this mount.
3186 reset_cifs_unix_caps(xid, tcon, cifs_sb, ctx);
3187 spin_lock(&cifs_tcp_ses_lock);
3188 if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) &&
3189 (le64_to_cpu(tcon->fsUnixInfo.Capability) &
3190 CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)) {
3191 spin_unlock(&cifs_tcp_ses_lock);
3195 spin_unlock(&cifs_tcp_ses_lock);
3197 tcon->unix_ext = 0; /* server does not support them */
3199 /* do not care if a following call succeed - informational */
3200 if (!tcon->pipe && server->ops->qfs_tcon) {
3201 server->ops->qfs_tcon(xid, tcon, cifs_sb);
3202 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE) {
3203 if (tcon->fsDevInfo.DeviceCharacteristics &
3204 cpu_to_le32(FILE_READ_ONLY_DEVICE))
3205 cifs_dbg(VFS, "mounted to read only share\n");
3206 else if ((cifs_sb->mnt_cifs_flags &
3207 CIFS_MOUNT_RW_CACHE) == 0)
3208 cifs_dbg(VFS, "read only mount of RW share\n");
3209 /* no need to log a RW mount of a typical RW share */
3214 * Clamp the rsize/wsize mount arguments if they are too big for the server
3215 * and set the rsize/wsize to the negotiated values if not passed in by
3218 if ((cifs_sb->ctx->wsize == 0) ||
3219 (cifs_sb->ctx->wsize > server->ops->negotiate_wsize(tcon, ctx)))
3220 cifs_sb->ctx->wsize = server->ops->negotiate_wsize(tcon, ctx);
3221 if ((cifs_sb->ctx->rsize == 0) ||
3222 (cifs_sb->ctx->rsize > server->ops->negotiate_rsize(tcon, ctx)))
3223 cifs_sb->ctx->rsize = server->ops->negotiate_rsize(tcon, ctx);
3226 * The cookie is initialized from volume info returned above.
3227 * Inside cifs_fscache_get_super_cookie it checks
3228 * that we do not get super cookie twice.
3230 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE)
3231 cifs_fscache_get_super_cookie(tcon);
3234 mnt_ctx->server = server;
3236 mnt_ctx->tcon = tcon;
3242 static int mount_setup_tlink(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses,
3243 struct cifs_tcon *tcon)
3245 struct tcon_link *tlink;
3247 /* hang the tcon off of the superblock */
3248 tlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
3252 tlink->tl_uid = ses->linux_uid;
3253 tlink->tl_tcon = tcon;
3254 tlink->tl_time = jiffies;
3255 set_bit(TCON_LINK_MASTER, &tlink->tl_flags);
3256 set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
3258 cifs_sb->master_tlink = tlink;
3259 spin_lock(&cifs_sb->tlink_tree_lock);
3260 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
3261 spin_unlock(&cifs_sb->tlink_tree_lock);
3263 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
3268 #ifdef CONFIG_CIFS_DFS_UPCALL
3269 /* Get unique dfs connections */
3270 static int mount_get_dfs_conns(struct mount_ctx *mnt_ctx)
3274 mnt_ctx->fs_ctx->nosharesock = true;
3275 rc = mount_get_conns(mnt_ctx);
3276 if (mnt_ctx->server) {
3277 cifs_dbg(FYI, "%s: marking tcp session as a dfs connection\n", __func__);
3278 spin_lock(&cifs_tcp_ses_lock);
3279 mnt_ctx->server->is_dfs_conn = true;
3280 spin_unlock(&cifs_tcp_ses_lock);
3286 * cifs_build_path_to_root returns full path to root when we do not have an
3287 * existing connection (tcon)
3290 build_unc_path_to_root(const struct smb3_fs_context *ctx,
3291 const struct cifs_sb_info *cifs_sb, bool useppath)
3293 char *full_path, *pos;
3294 unsigned int pplen = useppath && ctx->prepath ?
3295 strlen(ctx->prepath) + 1 : 0;
3296 unsigned int unc_len = strnlen(ctx->UNC, MAX_TREE_SIZE + 1);
3298 if (unc_len > MAX_TREE_SIZE)
3299 return ERR_PTR(-EINVAL);
3301 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL);
3302 if (full_path == NULL)
3303 return ERR_PTR(-ENOMEM);
3305 memcpy(full_path, ctx->UNC, unc_len);
3306 pos = full_path + unc_len;
3309 *pos = CIFS_DIR_SEP(cifs_sb);
3310 memcpy(pos + 1, ctx->prepath, pplen);
3314 *pos = '\0'; /* add trailing null */
3315 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
3316 cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path);
3321 * expand_dfs_referral - Update cifs_sb from dfs referral path
3323 * cifs_sb->ctx->mount_options will be (re-)allocated to a string containing updated options for the
3324 * submount. Otherwise it will be left untouched.
3326 static int expand_dfs_referral(struct mount_ctx *mnt_ctx, const char *full_path,
3327 struct dfs_info3_param *referral)
3330 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3331 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3332 char *fake_devname = NULL, *mdata = NULL;
3334 mdata = cifs_compose_mount_options(cifs_sb->ctx->mount_options, full_path + 1, referral,
3336 if (IS_ERR(mdata)) {
3337 rc = PTR_ERR(mdata);
3341 * We can not clear out the whole structure since we no longer have an explicit
3342 * function to parse a mount-string. Instead we need to clear out the individual
3343 * fields that are no longer valid.
3345 kfree(ctx->prepath);
3346 ctx->prepath = NULL;
3347 rc = cifs_setup_volume_info(ctx, mdata, fake_devname);
3349 kfree(fake_devname);
3350 kfree(cifs_sb->ctx->mount_options);
3351 cifs_sb->ctx->mount_options = mdata;
3357 /* TODO: all callers to this are broken. We are not parsing mount_options here
3358 * we should pass a clone of the original context?
3361 cifs_setup_volume_info(struct smb3_fs_context *ctx, const char *mntopts, const char *devname)
3366 cifs_dbg(FYI, "%s: devname=%s\n", __func__, devname);
3367 rc = smb3_parse_devname(devname, ctx);
3369 cifs_dbg(VFS, "%s: failed to parse %s: %d\n", __func__, devname, rc);
3377 rc = smb3_parse_opt(mntopts, "ip", &ip);
3379 cifs_dbg(VFS, "%s: failed to parse ip options: %d\n", __func__, rc);
3383 rc = cifs_convert_address((struct sockaddr *)&ctx->dstaddr, ip, strlen(ip));
3386 cifs_dbg(VFS, "%s: failed to convert ip address\n", __func__);
3391 if (ctx->nullauth) {
3392 cifs_dbg(FYI, "Anonymous login\n");
3393 kfree(ctx->username);
3394 ctx->username = NULL;
3395 } else if (ctx->username) {
3396 /* BB fixme parse for domain name here */
3397 cifs_dbg(FYI, "Username: %s\n", ctx->username);
3399 cifs_dbg(VFS, "No username specified\n");
3400 /* In userspace mount helper we can get user name from alternate
3401 locations such as env variables and files on disk */
3409 cifs_are_all_path_components_accessible(struct TCP_Server_Info *server,
3411 struct cifs_tcon *tcon,
3412 struct cifs_sb_info *cifs_sb,
3419 int skip = added_treename ? 1 : 0;
3421 sep = CIFS_DIR_SEP(cifs_sb);
3424 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, "");
3426 /* skip separators */
3431 /* next separator */
3432 while (*s && *s != sep)
3435 * if the treename is added, we then have to skip the first
3436 * part within the separators
3443 * temporarily null-terminate the path at the end of
3444 * the current component
3448 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3456 * Check if path is remote (i.e. a DFS share).
3458 * Return -EREMOTE if it is, otherwise 0 or -errno.
3460 static int is_path_remote(struct mount_ctx *mnt_ctx)
3463 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3464 struct TCP_Server_Info *server = mnt_ctx->server;
3465 unsigned int xid = mnt_ctx->xid;
3466 struct cifs_tcon *tcon = mnt_ctx->tcon;
3467 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3469 #ifdef CONFIG_CIFS_DFS_UPCALL
3470 bool nodfs = cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS;
3473 if (!server->ops->is_path_accessible)
3477 * cifs_build_path_to_root works only when we have a valid tcon
3479 full_path = cifs_build_path_to_root(ctx, cifs_sb, tcon,
3480 tcon->Flags & SMB_SHARE_IS_IN_DFS);
3481 if (full_path == NULL)
3484 cifs_dbg(FYI, "%s: full_path: %s\n", __func__, full_path);
3486 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3488 #ifdef CONFIG_CIFS_DFS_UPCALL
3495 /* path *might* exist with non-ASCII characters in DFS root
3496 * try again with full path (only if nodfs is not set) */
3497 if (rc == -ENOENT && is_tcon_dfs(tcon))
3498 rc = cifs_dfs_query_info_nonascii_quirk(xid, tcon, cifs_sb,
3501 if (rc != 0 && rc != -EREMOTE)
3504 if (rc != -EREMOTE) {
3505 rc = cifs_are_all_path_components_accessible(server, xid, tcon,
3506 cifs_sb, full_path, tcon->Flags & SMB_SHARE_IS_IN_DFS);
3508 cifs_server_dbg(VFS, "cannot query dirs between root and final path, enabling CIFS_MOUNT_USE_PREFIX_PATH\n");
3509 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3519 #ifdef CONFIG_CIFS_DFS_UPCALL
3520 static void set_root_ses(struct mount_ctx *mnt_ctx)
3523 spin_lock(&cifs_tcp_ses_lock);
3524 mnt_ctx->ses->ses_count++;
3525 spin_unlock(&cifs_tcp_ses_lock);
3526 dfs_cache_add_refsrv_session(&mnt_ctx->mount_id, mnt_ctx->ses);
3528 mnt_ctx->root_ses = mnt_ctx->ses;
3531 static int is_dfs_mount(struct mount_ctx *mnt_ctx, bool *isdfs, struct dfs_cache_tgt_list *root_tl)
3534 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3535 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3539 rc = mount_get_conns(mnt_ctx);
3541 * If called with 'nodfs' mount option, then skip DFS resolving. Otherwise unconditionally
3542 * try to get an DFS referral (even cached) to determine whether it is an DFS mount.
3544 * Skip prefix path to provide support for DFS referrals from w2k8 servers which don't seem
3545 * to respond with PATH_NOT_COVERED to requests that include the prefix.
3547 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS) ||
3548 dfs_cache_find(mnt_ctx->xid, mnt_ctx->ses, cifs_sb->local_nls, cifs_remap(cifs_sb),
3549 ctx->UNC + 1, NULL, root_tl)) {
3552 /* Check if it is fully accessible and then mount it */
3553 rc = is_path_remote(mnt_ctx);
3556 else if (rc != -EREMOTE)
3562 static int connect_dfs_target(struct mount_ctx *mnt_ctx, const char *full_path,
3563 const char *ref_path, struct dfs_cache_tgt_iterator *tit)
3566 struct dfs_info3_param ref = {};
3567 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3568 char *oldmnt = cifs_sb->ctx->mount_options;
3570 cifs_dbg(FYI, "%s: full_path=%s ref_path=%s target=%s\n", __func__, full_path, ref_path,
3571 dfs_cache_get_tgt_name(tit));
3573 rc = dfs_cache_get_tgt_referral(ref_path, tit, &ref);
3577 rc = expand_dfs_referral(mnt_ctx, full_path, &ref);
3581 /* Connect to new target only if we were redirected (e.g. mount options changed) */
3582 if (oldmnt != cifs_sb->ctx->mount_options) {
3583 mount_put_conns(mnt_ctx);
3584 rc = mount_get_dfs_conns(mnt_ctx);
3587 if (cifs_is_referral_server(mnt_ctx->tcon, &ref))
3588 set_root_ses(mnt_ctx);
3589 rc = dfs_cache_update_tgthint(mnt_ctx->xid, mnt_ctx->root_ses, cifs_sb->local_nls,
3590 cifs_remap(cifs_sb), ref_path, tit);
3594 free_dfs_info_param(&ref);
3598 static int connect_dfs_root(struct mount_ctx *mnt_ctx, struct dfs_cache_tgt_list *root_tl)
3602 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3603 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3604 struct dfs_cache_tgt_iterator *tit;
3606 /* Put initial connections as they might be shared with other mounts. We need unique dfs
3607 * connections per mount to properly failover, so mount_get_dfs_conns() must be used from
3610 mount_put_conns(mnt_ctx);
3611 mount_get_dfs_conns(mnt_ctx);
3612 set_root_ses(mnt_ctx);
3614 full_path = build_unc_path_to_root(ctx, cifs_sb, true);
3615 if (IS_ERR(full_path))
3616 return PTR_ERR(full_path);
3618 mnt_ctx->origin_fullpath = dfs_cache_canonical_path(ctx->UNC, cifs_sb->local_nls,
3619 cifs_remap(cifs_sb));
3620 if (IS_ERR(mnt_ctx->origin_fullpath)) {
3621 rc = PTR_ERR(mnt_ctx->origin_fullpath);
3622 mnt_ctx->origin_fullpath = NULL;
3626 /* Try all dfs root targets */
3627 for (rc = -ENOENT, tit = dfs_cache_get_tgt_iterator(root_tl);
3628 tit; tit = dfs_cache_get_next_tgt(root_tl, tit)) {
3629 rc = connect_dfs_target(mnt_ctx, full_path, mnt_ctx->origin_fullpath + 1, tit);
3631 mnt_ctx->leaf_fullpath = kstrdup(mnt_ctx->origin_fullpath, GFP_KERNEL);
3632 if (!mnt_ctx->leaf_fullpath)
3643 static int __follow_dfs_link(struct mount_ctx *mnt_ctx)
3646 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3647 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3649 struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl);
3650 struct dfs_cache_tgt_iterator *tit;
3652 full_path = build_unc_path_to_root(ctx, cifs_sb, true);
3653 if (IS_ERR(full_path))
3654 return PTR_ERR(full_path);
3656 kfree(mnt_ctx->leaf_fullpath);
3657 mnt_ctx->leaf_fullpath = dfs_cache_canonical_path(full_path, cifs_sb->local_nls,
3658 cifs_remap(cifs_sb));
3659 if (IS_ERR(mnt_ctx->leaf_fullpath)) {
3660 rc = PTR_ERR(mnt_ctx->leaf_fullpath);
3661 mnt_ctx->leaf_fullpath = NULL;
3665 /* Get referral from dfs link */
3666 rc = dfs_cache_find(mnt_ctx->xid, mnt_ctx->root_ses, cifs_sb->local_nls,
3667 cifs_remap(cifs_sb), mnt_ctx->leaf_fullpath + 1, NULL, &tl);
3671 /* Try all dfs link targets. If an I/O fails from currently connected DFS target with an
3672 * error other than STATUS_PATH_NOT_COVERED (-EREMOTE), then retry it from other targets as
3673 * specified in MS-DFSC "3.1.5.2 I/O Operation to Target Fails with an Error Other Than
3674 * STATUS_PATH_NOT_COVERED."
3676 for (rc = -ENOENT, tit = dfs_cache_get_tgt_iterator(&tl);
3677 tit; tit = dfs_cache_get_next_tgt(&tl, tit)) {
3678 rc = connect_dfs_target(mnt_ctx, full_path, mnt_ctx->leaf_fullpath + 1, tit);
3680 rc = is_path_remote(mnt_ctx);
3681 if (!rc || rc == -EREMOTE)
3688 dfs_cache_free_tgts(&tl);
3692 static int follow_dfs_link(struct mount_ctx *mnt_ctx)
3695 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3696 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3700 full_path = build_unc_path_to_root(ctx, cifs_sb, true);
3701 if (IS_ERR(full_path))
3702 return PTR_ERR(full_path);
3704 kfree(mnt_ctx->origin_fullpath);
3705 mnt_ctx->origin_fullpath = dfs_cache_canonical_path(full_path, cifs_sb->local_nls,
3706 cifs_remap(cifs_sb));
3709 if (IS_ERR(mnt_ctx->origin_fullpath)) {
3710 rc = PTR_ERR(mnt_ctx->origin_fullpath);
3711 mnt_ctx->origin_fullpath = NULL;
3716 rc = __follow_dfs_link(mnt_ctx);
3717 if (!rc || rc != -EREMOTE)
3719 } while (rc = -ELOOP, ++num_links < MAX_NESTED_LINKS);
3724 /* Set up DFS referral paths for failover */
3725 static void setup_server_referral_paths(struct mount_ctx *mnt_ctx)
3727 struct TCP_Server_Info *server = mnt_ctx->server;
3729 mutex_lock(&server->refpath_lock);
3730 server->origin_fullpath = mnt_ctx->origin_fullpath;
3731 server->leaf_fullpath = mnt_ctx->leaf_fullpath;
3732 server->current_fullpath = mnt_ctx->leaf_fullpath;
3733 mutex_unlock(&server->refpath_lock);
3734 mnt_ctx->origin_fullpath = mnt_ctx->leaf_fullpath = NULL;
3737 int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
3740 struct mount_ctx mnt_ctx = { .cifs_sb = cifs_sb, .fs_ctx = ctx, };
3741 struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl);
3744 rc = is_dfs_mount(&mnt_ctx, &isdfs, &tl);
3750 /* proceed as DFS mount */
3751 uuid_gen(&mnt_ctx.mount_id);
3752 rc = connect_dfs_root(&mnt_ctx, &tl);
3753 dfs_cache_free_tgts(&tl);
3758 rc = is_path_remote(&mnt_ctx);
3760 rc = follow_dfs_link(&mnt_ctx);
3764 setup_server_referral_paths(&mnt_ctx);
3766 * After reconnecting to a different server, unique ids won't match anymore, so we disable
3767 * serverino. This prevents dentry revalidation to think the dentry are stale (ESTALE).
3769 cifs_autodisable_serverino(cifs_sb);
3771 * Force the use of prefix path to support failover on DFS paths that resolve to targets
3772 * that have different prefix paths.
3774 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3775 kfree(cifs_sb->prepath);
3776 cifs_sb->prepath = ctx->prepath;
3777 ctx->prepath = NULL;
3778 uuid_copy(&cifs_sb->dfs_mount_id, &mnt_ctx.mount_id);
3781 free_xid(mnt_ctx.xid);
3782 cifs_try_adding_channels(cifs_sb, mnt_ctx.ses);
3783 return mount_setup_tlink(cifs_sb, mnt_ctx.ses, mnt_ctx.tcon);
3786 dfs_cache_put_refsrv_sessions(&mnt_ctx.mount_id);
3787 kfree(mnt_ctx.origin_fullpath);
3788 kfree(mnt_ctx.leaf_fullpath);
3789 mount_put_conns(&mnt_ctx);
3793 int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
3796 struct mount_ctx mnt_ctx = { .cifs_sb = cifs_sb, .fs_ctx = ctx, };
3798 rc = mount_get_conns(&mnt_ctx);
3803 rc = is_path_remote(&mnt_ctx);
3810 free_xid(mnt_ctx.xid);
3811 return mount_setup_tlink(cifs_sb, mnt_ctx.ses, mnt_ctx.tcon);
3814 mount_put_conns(&mnt_ctx);
3820 * Issue a TREE_CONNECT request.
3823 CIFSTCon(const unsigned int xid, struct cifs_ses *ses,
3824 const char *tree, struct cifs_tcon *tcon,
3825 const struct nls_table *nls_codepage)
3827 struct smb_hdr *smb_buffer;
3828 struct smb_hdr *smb_buffer_response;
3831 unsigned char *bcc_ptr;
3834 __u16 bytes_left, count;
3839 smb_buffer = cifs_buf_get();
3840 if (smb_buffer == NULL)
3843 smb_buffer_response = smb_buffer;
3845 header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX,
3846 NULL /*no tid */ , 4 /*wct */ );
3848 smb_buffer->Mid = get_next_mid(ses->server);
3849 smb_buffer->Uid = ses->Suid;
3850 pSMB = (TCONX_REQ *) smb_buffer;
3851 pSMBr = (TCONX_RSP *) smb_buffer_response;
3853 pSMB->AndXCommand = 0xFF;
3854 pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO);
3855 bcc_ptr = &pSMB->Password[0];
3856 if (tcon->pipe || (ses->server->sec_mode & SECMODE_USER)) {
3857 pSMB->PasswordLength = cpu_to_le16(1); /* minimum */
3858 *bcc_ptr = 0; /* password is null byte */
3859 bcc_ptr++; /* skip password */
3860 /* already aligned so no need to do it below */
3863 if (ses->server->sign)
3864 smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
3866 if (ses->capabilities & CAP_STATUS32) {
3867 smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS;
3869 if (ses->capabilities & CAP_DFS) {
3870 smb_buffer->Flags2 |= SMBFLG2_DFS;
3872 if (ses->capabilities & CAP_UNICODE) {
3873 smb_buffer->Flags2 |= SMBFLG2_UNICODE;
3875 cifs_strtoUTF16((__le16 *) bcc_ptr, tree,
3876 6 /* max utf8 char length in bytes */ *
3877 (/* server len*/ + 256 /* share len */), nls_codepage);
3878 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */
3879 bcc_ptr += 2; /* skip trailing null */
3880 } else { /* ASCII */
3881 strcpy(bcc_ptr, tree);
3882 bcc_ptr += strlen(tree) + 1;
3884 strcpy(bcc_ptr, "?????");
3885 bcc_ptr += strlen("?????");
3887 count = bcc_ptr - &pSMB->Password[0];
3888 be32_add_cpu(&pSMB->hdr.smb_buf_length, count);
3889 pSMB->ByteCount = cpu_to_le16(count);
3891 rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length,
3894 /* above now done in SendReceive */
3898 tcon->tid = smb_buffer_response->Tid;
3899 bcc_ptr = pByteArea(smb_buffer_response);
3900 bytes_left = get_bcc(smb_buffer_response);
3901 length = strnlen(bcc_ptr, bytes_left - 2);
3902 if (smb_buffer->Flags2 & SMBFLG2_UNICODE)
3908 /* skip service field (NB: this field is always ASCII) */
3910 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') &&
3911 (bcc_ptr[2] == 'C')) {
3912 cifs_dbg(FYI, "IPC connection\n");
3916 } else if (length == 2) {
3917 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) {
3918 /* the most common case */
3919 cifs_dbg(FYI, "disk share connection\n");
3922 bcc_ptr += length + 1;
3923 bytes_left -= (length + 1);
3924 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
3926 /* mostly informational -- no need to fail on error here */
3927 kfree(tcon->nativeFileSystem);
3928 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr,
3929 bytes_left, is_unicode,
3932 cifs_dbg(FYI, "nativeFileSystem=%s\n", tcon->nativeFileSystem);
3934 if ((smb_buffer_response->WordCount == 3) ||
3935 (smb_buffer_response->WordCount == 7))
3936 /* field is in same location */
3937 tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport);
3940 cifs_dbg(FYI, "Tcon flags: 0x%x\n", tcon->Flags);
3943 cifs_buf_release(smb_buffer);
3947 static void delayed_free(struct rcu_head *p)
3949 struct cifs_sb_info *cifs_sb = container_of(p, struct cifs_sb_info, rcu);
3951 unload_nls(cifs_sb->local_nls);
3952 smb3_cleanup_fs_context(cifs_sb->ctx);
3957 cifs_umount(struct cifs_sb_info *cifs_sb)
3959 struct rb_root *root = &cifs_sb->tlink_tree;
3960 struct rb_node *node;
3961 struct tcon_link *tlink;
3963 cancel_delayed_work_sync(&cifs_sb->prune_tlinks);
3965 spin_lock(&cifs_sb->tlink_tree_lock);
3966 while ((node = rb_first(root))) {
3967 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
3968 cifs_get_tlink(tlink);
3969 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
3970 rb_erase(node, root);
3972 spin_unlock(&cifs_sb->tlink_tree_lock);
3973 cifs_put_tlink(tlink);
3974 spin_lock(&cifs_sb->tlink_tree_lock);
3976 spin_unlock(&cifs_sb->tlink_tree_lock);
3978 kfree(cifs_sb->prepath);
3979 #ifdef CONFIG_CIFS_DFS_UPCALL
3980 dfs_cache_put_refsrv_sessions(&cifs_sb->dfs_mount_id);
3982 call_rcu(&cifs_sb->rcu, delayed_free);
3986 cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses,
3987 struct TCP_Server_Info *server)
3991 if (!server->ops->need_neg || !server->ops->negotiate)
3994 /* only send once per connect */
3995 spin_lock(&cifs_tcp_ses_lock);
3996 if (!server->ops->need_neg(server) ||
3997 server->tcpStatus != CifsNeedNegotiate) {
3998 spin_unlock(&cifs_tcp_ses_lock);
4001 server->tcpStatus = CifsInNegotiate;
4002 spin_unlock(&cifs_tcp_ses_lock);
4004 rc = server->ops->negotiate(xid, ses, server);
4006 spin_lock(&cifs_tcp_ses_lock);
4007 if (server->tcpStatus == CifsInNegotiate)
4008 server->tcpStatus = CifsGood;
4011 spin_unlock(&cifs_tcp_ses_lock);
4013 spin_lock(&cifs_tcp_ses_lock);
4014 if (server->tcpStatus == CifsInNegotiate)
4015 server->tcpStatus = CifsNeedNegotiate;
4016 spin_unlock(&cifs_tcp_ses_lock);
4023 cifs_setup_session(const unsigned int xid, struct cifs_ses *ses,
4024 struct TCP_Server_Info *server,
4025 struct nls_table *nls_info)
4028 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
4029 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
4030 bool is_binding = false;
4032 spin_lock(&cifs_tcp_ses_lock);
4033 if (server->dstaddr.ss_family == AF_INET6)
4034 scnprintf(ses->ip_addr, sizeof(ses->ip_addr), "%pI6", &addr6->sin6_addr);
4036 scnprintf(ses->ip_addr, sizeof(ses->ip_addr), "%pI4", &addr->sin_addr);
4038 if (ses->ses_status != SES_GOOD &&
4039 ses->ses_status != SES_NEW &&
4040 ses->ses_status != SES_NEED_RECON) {
4041 spin_unlock(&cifs_tcp_ses_lock);
4045 /* only send once per connect */
4046 spin_lock(&ses->chan_lock);
4047 if (CIFS_ALL_CHANS_GOOD(ses) ||
4048 cifs_chan_in_reconnect(ses, server)) {
4049 spin_unlock(&ses->chan_lock);
4050 spin_unlock(&cifs_tcp_ses_lock);
4053 is_binding = !CIFS_ALL_CHANS_NEED_RECONNECT(ses);
4054 cifs_chan_set_in_reconnect(ses, server);
4055 spin_unlock(&ses->chan_lock);
4058 ses->ses_status = SES_IN_SETUP;
4059 spin_unlock(&cifs_tcp_ses_lock);
4062 ses->capabilities = server->capabilities;
4063 if (!linuxExtEnabled)
4064 ses->capabilities &= (~server->vals->cap_unix);
4066 if (ses->auth_key.response) {
4067 cifs_dbg(FYI, "Free previous auth_key.response = %p\n",
4068 ses->auth_key.response);
4069 kfree(ses->auth_key.response);
4070 ses->auth_key.response = NULL;
4071 ses->auth_key.len = 0;
4075 cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n",
4076 server->sec_mode, server->capabilities, server->timeAdj);
4078 if (server->ops->sess_setup)
4079 rc = server->ops->sess_setup(xid, ses, server, nls_info);
4082 cifs_server_dbg(VFS, "Send error in SessSetup = %d\n", rc);
4083 spin_lock(&cifs_tcp_ses_lock);
4084 if (ses->ses_status == SES_IN_SETUP)
4085 ses->ses_status = SES_NEED_RECON;
4086 spin_lock(&ses->chan_lock);
4087 cifs_chan_clear_in_reconnect(ses, server);
4088 spin_unlock(&ses->chan_lock);
4089 spin_unlock(&cifs_tcp_ses_lock);
4091 spin_lock(&cifs_tcp_ses_lock);
4092 if (ses->ses_status == SES_IN_SETUP)
4093 ses->ses_status = SES_GOOD;
4094 spin_lock(&ses->chan_lock);
4095 cifs_chan_clear_in_reconnect(ses, server);
4096 cifs_chan_clear_need_reconnect(ses, server);
4097 spin_unlock(&ses->chan_lock);
4098 spin_unlock(&cifs_tcp_ses_lock);
4105 cifs_set_vol_auth(struct smb3_fs_context *ctx, struct cifs_ses *ses)
4107 ctx->sectype = ses->sectype;
4109 /* krb5 is special, since we don't need username or pw */
4110 if (ctx->sectype == Kerberos)
4113 return cifs_set_cifscreds(ctx, ses);
4116 static struct cifs_tcon *
4117 cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid)
4120 struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb);
4121 struct cifs_ses *ses;
4122 struct cifs_tcon *tcon = NULL;
4123 struct smb3_fs_context *ctx;
4125 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
4127 return ERR_PTR(-ENOMEM);
4129 ctx->local_nls = cifs_sb->local_nls;
4130 ctx->linux_uid = fsuid;
4131 ctx->cred_uid = fsuid;
4132 ctx->UNC = master_tcon->treeName;
4133 ctx->retry = master_tcon->retry;
4134 ctx->nocase = master_tcon->nocase;
4135 ctx->nohandlecache = master_tcon->nohandlecache;
4136 ctx->local_lease = master_tcon->local_lease;
4137 ctx->no_lease = master_tcon->no_lease;
4138 ctx->resilient = master_tcon->use_resilient;
4139 ctx->persistent = master_tcon->use_persistent;
4140 ctx->handle_timeout = master_tcon->handle_timeout;
4141 ctx->no_linux_ext = !master_tcon->unix_ext;
4142 ctx->linux_ext = master_tcon->posix_extensions;
4143 ctx->sectype = master_tcon->ses->sectype;
4144 ctx->sign = master_tcon->ses->sign;
4145 ctx->seal = master_tcon->seal;
4146 ctx->witness = master_tcon->use_witness;
4148 rc = cifs_set_vol_auth(ctx, master_tcon->ses);
4154 /* get a reference for the same TCP session */
4155 spin_lock(&cifs_tcp_ses_lock);
4156 ++master_tcon->ses->server->srv_count;
4157 spin_unlock(&cifs_tcp_ses_lock);
4159 ses = cifs_get_smb_ses(master_tcon->ses->server, ctx);
4161 tcon = (struct cifs_tcon *)ses;
4162 cifs_put_tcp_session(master_tcon->ses->server, 0);
4166 tcon = cifs_get_tcon(ses, ctx);
4168 cifs_put_smb_ses(ses);
4173 reset_cifs_unix_caps(0, tcon, NULL, ctx);
4176 kfree(ctx->username);
4177 kfree_sensitive(ctx->password);
4184 cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb)
4186 return tlink_tcon(cifs_sb_master_tlink(cifs_sb));
4189 /* find and return a tlink with given uid */
4190 static struct tcon_link *
4191 tlink_rb_search(struct rb_root *root, kuid_t uid)
4193 struct rb_node *node = root->rb_node;
4194 struct tcon_link *tlink;
4197 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
4199 if (uid_gt(tlink->tl_uid, uid))
4200 node = node->rb_left;
4201 else if (uid_lt(tlink->tl_uid, uid))
4202 node = node->rb_right;
4209 /* insert a tcon_link into the tree */
4211 tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink)
4213 struct rb_node **new = &(root->rb_node), *parent = NULL;
4214 struct tcon_link *tlink;
4217 tlink = rb_entry(*new, struct tcon_link, tl_rbnode);
4220 if (uid_gt(tlink->tl_uid, new_tlink->tl_uid))
4221 new = &((*new)->rb_left);
4223 new = &((*new)->rb_right);
4226 rb_link_node(&new_tlink->tl_rbnode, parent, new);
4227 rb_insert_color(&new_tlink->tl_rbnode, root);
4231 * Find or construct an appropriate tcon given a cifs_sb and the fsuid of the
4234 * If the superblock doesn't refer to a multiuser mount, then just return
4235 * the master tcon for the mount.
4237 * First, search the rbtree for an existing tcon for this fsuid. If one
4238 * exists, then check to see if it's pending construction. If it is then wait
4239 * for construction to complete. Once it's no longer pending, check to see if
4240 * it failed and either return an error or retry construction, depending on
4243 * If one doesn't exist then insert a new tcon_link struct into the tree and
4244 * try to construct a new one.
4247 cifs_sb_tlink(struct cifs_sb_info *cifs_sb)
4250 kuid_t fsuid = current_fsuid();
4251 struct tcon_link *tlink, *newtlink;
4253 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
4254 return cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
4256 spin_lock(&cifs_sb->tlink_tree_lock);
4257 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
4259 cifs_get_tlink(tlink);
4260 spin_unlock(&cifs_sb->tlink_tree_lock);
4262 if (tlink == NULL) {
4263 newtlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
4264 if (newtlink == NULL)
4265 return ERR_PTR(-ENOMEM);
4266 newtlink->tl_uid = fsuid;
4267 newtlink->tl_tcon = ERR_PTR(-EACCES);
4268 set_bit(TCON_LINK_PENDING, &newtlink->tl_flags);
4269 set_bit(TCON_LINK_IN_TREE, &newtlink->tl_flags);
4270 cifs_get_tlink(newtlink);
4272 spin_lock(&cifs_sb->tlink_tree_lock);
4273 /* was one inserted after previous search? */
4274 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
4276 cifs_get_tlink(tlink);
4277 spin_unlock(&cifs_sb->tlink_tree_lock);
4279 goto wait_for_construction;
4282 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
4283 spin_unlock(&cifs_sb->tlink_tree_lock);
4285 wait_for_construction:
4286 ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING,
4287 TASK_INTERRUPTIBLE);
4289 cifs_put_tlink(tlink);
4290 return ERR_PTR(-ERESTARTSYS);
4293 /* if it's good, return it */
4294 if (!IS_ERR(tlink->tl_tcon))
4297 /* return error if we tried this already recently */
4298 if (time_before(jiffies, tlink->tl_time + TLINK_ERROR_EXPIRE)) {
4299 cifs_put_tlink(tlink);
4300 return ERR_PTR(-EACCES);
4303 if (test_and_set_bit(TCON_LINK_PENDING, &tlink->tl_flags))
4304 goto wait_for_construction;
4307 tlink->tl_tcon = cifs_construct_tcon(cifs_sb, fsuid);
4308 clear_bit(TCON_LINK_PENDING, &tlink->tl_flags);
4309 wake_up_bit(&tlink->tl_flags, TCON_LINK_PENDING);
4311 if (IS_ERR(tlink->tl_tcon)) {
4312 cifs_put_tlink(tlink);
4313 return ERR_PTR(-EACCES);
4320 * periodic workqueue job that scans tcon_tree for a superblock and closes
4324 cifs_prune_tlinks(struct work_struct *work)
4326 struct cifs_sb_info *cifs_sb = container_of(work, struct cifs_sb_info,
4328 struct rb_root *root = &cifs_sb->tlink_tree;
4329 struct rb_node *node;
4330 struct rb_node *tmp;
4331 struct tcon_link *tlink;
4334 * Because we drop the spinlock in the loop in order to put the tlink
4335 * it's not guarded against removal of links from the tree. The only
4336 * places that remove entries from the tree are this function and
4337 * umounts. Because this function is non-reentrant and is canceled
4338 * before umount can proceed, this is safe.
4340 spin_lock(&cifs_sb->tlink_tree_lock);
4341 node = rb_first(root);
4342 while (node != NULL) {
4344 node = rb_next(tmp);
4345 tlink = rb_entry(tmp, struct tcon_link, tl_rbnode);
4347 if (test_bit(TCON_LINK_MASTER, &tlink->tl_flags) ||
4348 atomic_read(&tlink->tl_count) != 0 ||
4349 time_after(tlink->tl_time + TLINK_IDLE_EXPIRE, jiffies))
4352 cifs_get_tlink(tlink);
4353 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4354 rb_erase(tmp, root);
4356 spin_unlock(&cifs_sb->tlink_tree_lock);
4357 cifs_put_tlink(tlink);
4358 spin_lock(&cifs_sb->tlink_tree_lock);
4360 spin_unlock(&cifs_sb->tlink_tree_lock);
4362 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
4366 #ifdef CONFIG_CIFS_DFS_UPCALL
4367 /* Update dfs referral path of superblock */
4368 static int update_server_fullpath(struct TCP_Server_Info *server, struct cifs_sb_info *cifs_sb,
4372 size_t len = strlen(target);
4373 char *refpath, *npath;
4375 if (unlikely(len < 2 || *target != '\\'))
4378 if (target[1] == '\\') {
4380 refpath = kmalloc(len, GFP_KERNEL);
4384 scnprintf(refpath, len, "%s", target);
4386 len += sizeof("\\");
4387 refpath = kmalloc(len, GFP_KERNEL);
4391 scnprintf(refpath, len, "\\%s", target);
4394 npath = dfs_cache_canonical_path(refpath, cifs_sb->local_nls, cifs_remap(cifs_sb));
4397 if (IS_ERR(npath)) {
4398 rc = PTR_ERR(npath);
4400 mutex_lock(&server->refpath_lock);
4401 kfree(server->leaf_fullpath);
4402 server->leaf_fullpath = npath;
4403 mutex_unlock(&server->refpath_lock);
4404 server->current_fullpath = server->leaf_fullpath;
4409 static int target_share_matches_server(struct TCP_Server_Info *server, const char *tcp_host,
4410 size_t tcp_host_len, char *share, bool *target_match)
4413 const char *dfs_host;
4414 size_t dfs_host_len;
4416 *target_match = true;
4417 extract_unc_hostname(share, &dfs_host, &dfs_host_len);
4419 /* Check if hostnames or addresses match */
4420 if (dfs_host_len != tcp_host_len || strncasecmp(dfs_host, tcp_host, dfs_host_len) != 0) {
4421 cifs_dbg(FYI, "%s: %.*s doesn't match %.*s\n", __func__, (int)dfs_host_len,
4422 dfs_host, (int)tcp_host_len, tcp_host);
4423 rc = match_target_ip(server, dfs_host, dfs_host_len, target_match);
4425 cifs_dbg(VFS, "%s: failed to match target ip: %d\n", __func__, rc);
4430 static int __tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon,
4431 struct cifs_sb_info *cifs_sb, char *tree, bool islink,
4432 struct dfs_cache_tgt_list *tl)
4435 struct TCP_Server_Info *server = tcon->ses->server;
4436 const struct smb_version_operations *ops = server->ops;
4437 struct cifs_tcon *ipc = tcon->ses->tcon_ipc;
4438 char *share = NULL, *prefix = NULL;
4439 const char *tcp_host;
4440 size_t tcp_host_len;
4441 struct dfs_cache_tgt_iterator *tit;
4444 extract_unc_hostname(server->hostname, &tcp_host, &tcp_host_len);
4446 tit = dfs_cache_get_tgt_iterator(tl);
4452 /* Try to tree connect to all dfs targets */
4453 for (; tit; tit = dfs_cache_get_next_tgt(tl, tit)) {
4454 const char *target = dfs_cache_get_tgt_name(tit);
4455 struct dfs_cache_tgt_list ntl = DFS_CACHE_TGT_LIST_INIT(ntl);
4459 share = prefix = NULL;
4461 /* Check if share matches with tcp ses */
4462 rc = dfs_cache_get_tgt_share(server->current_fullpath + 1, tit, &share, &prefix);
4464 cifs_dbg(VFS, "%s: failed to parse target share: %d\n", __func__, rc);
4468 rc = target_share_matches_server(server, tcp_host, tcp_host_len, share,
4472 if (!target_match) {
4477 if (ipc->need_reconnect) {
4478 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname);
4479 rc = ops->tree_connect(xid, ipc->ses, tree, ipc, cifs_sb->local_nls);
4484 scnprintf(tree, MAX_TREE_SIZE, "\\%s", share);
4486 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, cifs_sb->local_nls);
4490 * If no dfs referrals were returned from link target, then just do a TREE_CONNECT
4491 * to it. Otherwise, cache the dfs referral and then mark current tcp ses for
4492 * reconnect so either the demultiplex thread or the echo worker will reconnect to
4493 * newly resolved target.
4495 if (dfs_cache_find(xid, tcon->ses, cifs_sb->local_nls, cifs_remap(cifs_sb), target,
4497 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, cifs_sb->local_nls);
4500 rc = dfs_cache_noreq_update_tgthint(server->current_fullpath + 1, tit);
4502 rc = cifs_update_super_prepath(cifs_sb, prefix);
4504 /* Target is another dfs share */
4505 rc = update_server_fullpath(server, cifs_sb, target);
4506 dfs_cache_free_tgts(tl);
4510 list_replace_init(&ntl.tl_list, &tl->tl_list);
4512 dfs_cache_free_tgts(&ntl);
4524 static int tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon,
4525 struct cifs_sb_info *cifs_sb, char *tree, bool islink,
4526 struct dfs_cache_tgt_list *tl)
4530 struct TCP_Server_Info *server = tcon->ses->server;
4533 rc = __tree_connect_dfs_target(xid, tcon, cifs_sb, tree, islink, tl);
4534 if (!rc || rc != -EREMOTE)
4536 } while (rc = -ELOOP, ++num_links < MAX_NESTED_LINKS);
4538 * If we couldn't tree connect to any targets from last referral path, then retry from
4539 * original referral path.
4541 if (rc && server->current_fullpath != server->origin_fullpath) {
4542 server->current_fullpath = server->origin_fullpath;
4543 cifs_signal_cifsd_for_reconnect(server, true);
4546 dfs_cache_free_tgts(tl);
4550 int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc)
4553 struct TCP_Server_Info *server = tcon->ses->server;
4554 const struct smb_version_operations *ops = server->ops;
4555 struct super_block *sb = NULL;
4556 struct cifs_sb_info *cifs_sb;
4557 struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl);
4559 struct dfs_info3_param ref = {0};
4561 /* only send once per connect */
4562 spin_lock(&cifs_tcp_ses_lock);
4563 if (tcon->ses->ses_status != SES_GOOD ||
4564 (tcon->status != TID_NEW &&
4565 tcon->status != TID_NEED_TCON)) {
4566 spin_unlock(&cifs_tcp_ses_lock);
4569 tcon->status = TID_IN_TCON;
4570 spin_unlock(&cifs_tcp_ses_lock);
4572 tree = kzalloc(MAX_TREE_SIZE, GFP_KERNEL);
4579 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname);
4580 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc);
4584 sb = cifs_get_tcp_super(server);
4587 cifs_dbg(VFS, "%s: could not find superblock: %d\n", __func__, rc);
4591 cifs_sb = CIFS_SB(sb);
4593 /* If it is not dfs or there was no cached dfs referral, then reconnect to same share */
4594 if (!server->current_fullpath ||
4595 dfs_cache_noreq_find(server->current_fullpath + 1, &ref, &tl)) {
4596 rc = ops->tree_connect(xid, tcon->ses, tcon->treeName, tcon, cifs_sb->local_nls);
4600 rc = tree_connect_dfs_target(xid, tcon, cifs_sb, tree, ref.server_type == DFS_TYPE_LINK,
4602 free_dfs_info_param(&ref);
4606 cifs_put_tcp_super(sb);
4609 spin_lock(&cifs_tcp_ses_lock);
4610 if (tcon->status == TID_IN_TCON)
4611 tcon->status = TID_NEED_TCON;
4612 spin_unlock(&cifs_tcp_ses_lock);
4614 spin_lock(&cifs_tcp_ses_lock);
4615 if (tcon->status == TID_IN_TCON)
4616 tcon->status = TID_GOOD;
4617 spin_unlock(&cifs_tcp_ses_lock);
4618 tcon->need_reconnect = false;
4624 int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc)
4627 const struct smb_version_operations *ops = tcon->ses->server->ops;
4629 /* only send once per connect */
4630 spin_lock(&cifs_tcp_ses_lock);
4631 if (tcon->ses->ses_status != SES_GOOD ||
4632 (tcon->status != TID_NEW &&
4633 tcon->status != TID_NEED_TCON)) {
4634 spin_unlock(&cifs_tcp_ses_lock);
4637 tcon->status = TID_IN_TCON;
4638 spin_unlock(&cifs_tcp_ses_lock);
4640 rc = ops->tree_connect(xid, tcon->ses, tcon->treeName, tcon, nlsc);
4642 spin_lock(&cifs_tcp_ses_lock);
4643 if (tcon->status == TID_IN_TCON)
4644 tcon->status = TID_NEED_TCON;
4645 spin_unlock(&cifs_tcp_ses_lock);
4647 spin_lock(&cifs_tcp_ses_lock);
4648 if (tcon->status == TID_IN_TCON)
4649 tcon->status = TID_GOOD;
4650 spin_unlock(&cifs_tcp_ses_lock);
4651 tcon->need_reconnect = false;