1 // SPDX-License-Identifier: LGPL-2.1
4 * Copyright (C) International Business Machines Corp., 2002,2011
5 * Author(s): Steve French (sfrench@us.ibm.com)
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(&server->srv_lock);
123 rc = cifs_convert_address((struct sockaddr *)&server->dstaddr, ipaddr,
125 spin_unlock(&server->srv_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, false);
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(&pserver->srv_lock);
210 pserver->tcpStatus = CifsNeedReconnect;
211 spin_unlock(&pserver->srv_lock);
214 spin_unlock(&pserver->srv_lock);
216 spin_lock(&cifs_tcp_ses_lock);
217 list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) {
218 spin_lock(&ses->chan_lock);
219 for (i = 0; i < ses->chan_count; i++) {
220 spin_lock(&ses->chans[i].server->srv_lock);
221 ses->chans[i].server->tcpStatus = CifsNeedReconnect;
222 spin_unlock(&ses->chans[i].server->srv_lock);
224 spin_unlock(&ses->chan_lock);
226 spin_unlock(&cifs_tcp_ses_lock);
230 * Mark all sessions and tcons for reconnect.
231 * IMPORTANT: make sure that this gets called only from
232 * cifsd thread. For any other thread, use
233 * cifs_signal_cifsd_for_reconnect
235 * @server: the tcp ses for which reconnect is needed
236 * @server needs to be previously set to CifsNeedReconnect.
237 * @mark_smb_session: whether even sessions need to be marked
240 cifs_mark_tcp_ses_conns_for_reconnect(struct TCP_Server_Info *server,
241 bool mark_smb_session)
243 struct TCP_Server_Info *pserver;
244 struct cifs_ses *ses, *nses;
245 struct cifs_tcon *tcon;
248 * before reconnecting the tcp session, mark the smb session (uid) and the tid bad so they
249 * are not used until reconnected.
251 cifs_dbg(FYI, "%s: marking necessary sessions and tcons for reconnect\n", __func__);
253 /* If server is a channel, select the primary channel */
254 pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server;
257 spin_lock(&cifs_tcp_ses_lock);
258 list_for_each_entry_safe(ses, nses, &pserver->smb_ses_list, smb_ses_list) {
259 /* check if iface is still active */
260 if (!cifs_chan_is_iface_active(ses, server))
261 cifs_chan_update_iface(ses, server);
263 spin_lock(&ses->chan_lock);
264 if (!mark_smb_session && cifs_chan_needs_reconnect(ses, server))
267 if (mark_smb_session)
268 CIFS_SET_ALL_CHANS_NEED_RECONNECT(ses);
270 cifs_chan_set_need_reconnect(ses, server);
272 /* If all channels need reconnect, then tcon needs reconnect */
273 if (!mark_smb_session && !CIFS_ALL_CHANS_NEED_RECONNECT(ses))
276 ses->ses_status = SES_NEED_RECON;
278 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
279 tcon->need_reconnect = true;
280 tcon->status = TID_NEED_RECON;
283 ses->tcon_ipc->need_reconnect = true;
286 spin_unlock(&ses->chan_lock);
288 spin_unlock(&cifs_tcp_ses_lock);
292 cifs_abort_connection(struct TCP_Server_Info *server)
294 struct mid_q_entry *mid, *nmid;
295 struct list_head retry_list;
298 server->max_read = 0;
300 /* do not want to be sending data on a socket we are freeing */
301 cifs_dbg(FYI, "%s: tearing down socket\n", __func__);
302 cifs_server_lock(server);
303 if (server->ssocket) {
304 cifs_dbg(FYI, "State: 0x%x Flags: 0x%lx\n", server->ssocket->state,
305 server->ssocket->flags);
306 kernel_sock_shutdown(server->ssocket, SHUT_WR);
307 cifs_dbg(FYI, "Post shutdown state: 0x%x Flags: 0x%lx\n", server->ssocket->state,
308 server->ssocket->flags);
309 sock_release(server->ssocket);
310 server->ssocket = NULL;
312 server->sequence_number = 0;
313 server->session_estab = false;
314 kfree_sensitive(server->session_key.response);
315 server->session_key.response = NULL;
316 server->session_key.len = 0;
317 server->lstrp = jiffies;
319 /* mark submitted MIDs for retry and issue callback */
320 INIT_LIST_HEAD(&retry_list);
321 cifs_dbg(FYI, "%s: moving mids to private list\n", __func__);
322 spin_lock(&server->mid_lock);
323 list_for_each_entry_safe(mid, nmid, &server->pending_mid_q, qhead) {
324 kref_get(&mid->refcount);
325 if (mid->mid_state == MID_REQUEST_SUBMITTED)
326 mid->mid_state = MID_RETRY_NEEDED;
327 list_move(&mid->qhead, &retry_list);
328 mid->mid_flags |= MID_DELETED;
330 spin_unlock(&server->mid_lock);
331 cifs_server_unlock(server);
333 cifs_dbg(FYI, "%s: issuing mid callbacks\n", __func__);
334 list_for_each_entry_safe(mid, nmid, &retry_list, qhead) {
335 list_del_init(&mid->qhead);
340 if (cifs_rdma_enabled(server)) {
341 cifs_server_lock(server);
342 smbd_destroy(server);
343 cifs_server_unlock(server);
347 static bool cifs_tcp_ses_needs_reconnect(struct TCP_Server_Info *server, int num_targets)
349 spin_lock(&server->srv_lock);
350 server->nr_targets = num_targets;
351 if (server->tcpStatus == CifsExiting) {
352 /* the demux thread will exit normally next time through the loop */
353 spin_unlock(&server->srv_lock);
354 wake_up(&server->response_q);
358 cifs_dbg(FYI, "Mark tcp session as need reconnect\n");
359 trace_smb3_reconnect(server->CurrentMid, server->conn_id,
361 server->tcpStatus = CifsNeedReconnect;
363 spin_unlock(&server->srv_lock);
368 * cifs tcp session reconnection
370 * mark tcp session as reconnecting so temporarily locked
371 * mark all smb sessions as reconnecting for tcp session
372 * reconnect tcp session
373 * wake up waiters on reconnection? - (not needed currently)
375 * if mark_smb_session is passed as true, unconditionally mark
376 * the smb session (and tcon) for reconnect as well. This value
377 * doesn't really matter for non-multichannel scenario.
380 static int __cifs_reconnect(struct TCP_Server_Info *server,
381 bool mark_smb_session)
385 if (!cifs_tcp_ses_needs_reconnect(server, 1))
388 cifs_mark_tcp_ses_conns_for_reconnect(server, mark_smb_session);
390 cifs_abort_connection(server);
394 cifs_server_lock(server);
396 if (!cifs_swn_set_server_dstaddr(server)) {
397 /* resolve the hostname again to make sure that IP address is up-to-date */
398 rc = reconn_set_ipaddr_from_hostname(server);
399 cifs_dbg(FYI, "%s: reconn_set_ipaddr_from_hostname: rc=%d\n", __func__, rc);
402 if (cifs_rdma_enabled(server))
403 rc = smbd_reconnect(server);
405 rc = generic_ip_connect(server);
407 cifs_server_unlock(server);
408 cifs_dbg(FYI, "%s: reconnect error %d\n", __func__, rc);
411 atomic_inc(&tcpSesReconnectCount);
412 set_credits(server, 1);
413 spin_lock(&server->srv_lock);
414 if (server->tcpStatus != CifsExiting)
415 server->tcpStatus = CifsNeedNegotiate;
416 spin_unlock(&server->srv_lock);
417 cifs_swn_reset_server_dstaddr(server);
418 cifs_server_unlock(server);
419 mod_delayed_work(cifsiod_wq, &server->reconnect, 0);
421 } while (server->tcpStatus == CifsNeedReconnect);
423 spin_lock(&server->srv_lock);
424 if (server->tcpStatus == CifsNeedNegotiate)
425 mod_delayed_work(cifsiod_wq, &server->echo, 0);
426 spin_unlock(&server->srv_lock);
428 wake_up(&server->response_q);
432 #ifdef CONFIG_CIFS_DFS_UPCALL
433 static int __reconnect_target_unlocked(struct TCP_Server_Info *server, const char *target)
438 if (!cifs_swn_set_server_dstaddr(server)) {
439 if (server->hostname != target) {
440 hostname = extract_hostname(target);
441 if (!IS_ERR(hostname)) {
442 kfree(server->hostname);
443 server->hostname = hostname;
445 cifs_dbg(FYI, "%s: couldn't extract hostname or address from dfs target: %ld\n",
446 __func__, PTR_ERR(hostname));
447 cifs_dbg(FYI, "%s: default to last target server: %s\n", __func__,
451 /* resolve the hostname again to make sure that IP address is up-to-date. */
452 rc = reconn_set_ipaddr_from_hostname(server);
453 cifs_dbg(FYI, "%s: reconn_set_ipaddr_from_hostname: rc=%d\n", __func__, rc);
455 /* Reconnect the socket */
456 if (cifs_rdma_enabled(server))
457 rc = smbd_reconnect(server);
459 rc = generic_ip_connect(server);
464 static int reconnect_target_unlocked(struct TCP_Server_Info *server, struct dfs_cache_tgt_list *tl,
465 struct dfs_cache_tgt_iterator **target_hint)
468 struct dfs_cache_tgt_iterator *tit;
472 /* If dfs target list is empty, then reconnect to last server */
473 tit = dfs_cache_get_tgt_iterator(tl);
475 return __reconnect_target_unlocked(server, server->hostname);
477 /* Otherwise, try every dfs target in @tl */
478 for (; tit; tit = dfs_cache_get_next_tgt(tl, tit)) {
479 rc = __reconnect_target_unlocked(server, dfs_cache_get_tgt_name(tit));
488 static int reconnect_dfs_server(struct TCP_Server_Info *server)
491 const char *refpath = server->current_fullpath + 1;
492 struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl);
493 struct dfs_cache_tgt_iterator *target_hint = NULL;
497 * Determine the number of dfs targets the referral path in @cifs_sb resolves to.
499 * smb2_reconnect() needs to know how long it should wait based upon the number of dfs
500 * targets (server->nr_targets). It's also possible that the cached referral was cleared
501 * through /proc/fs/cifs/dfscache or the target list is empty due to server settings after
502 * refreshing the referral, so, in this case, default it to 1.
504 if (!dfs_cache_noreq_find(refpath, NULL, &tl))
505 num_targets = dfs_cache_get_nr_tgts(&tl);
509 if (!cifs_tcp_ses_needs_reconnect(server, num_targets))
513 * Unconditionally mark all sessions & tcons for reconnect as we might be connecting to a
514 * different server or share during failover. It could be improved by adding some logic to
515 * only do that in case it connects to a different server or share, though.
517 cifs_mark_tcp_ses_conns_for_reconnect(server, true);
519 cifs_abort_connection(server);
523 cifs_server_lock(server);
525 rc = reconnect_target_unlocked(server, &tl, &target_hint);
527 /* Failed to reconnect socket */
528 cifs_server_unlock(server);
529 cifs_dbg(FYI, "%s: reconnect error %d\n", __func__, rc);
534 * Socket was created. Update tcp session status to CifsNeedNegotiate so that a
535 * process waiting for reconnect will know it needs to re-establish session and tcon
536 * through the reconnected target server.
538 atomic_inc(&tcpSesReconnectCount);
539 set_credits(server, 1);
540 spin_lock(&server->srv_lock);
541 if (server->tcpStatus != CifsExiting)
542 server->tcpStatus = CifsNeedNegotiate;
543 spin_unlock(&server->srv_lock);
544 cifs_swn_reset_server_dstaddr(server);
545 cifs_server_unlock(server);
546 mod_delayed_work(cifsiod_wq, &server->reconnect, 0);
547 } while (server->tcpStatus == CifsNeedReconnect);
550 dfs_cache_noreq_update_tgthint(refpath, target_hint);
552 dfs_cache_free_tgts(&tl);
554 /* Need to set up echo worker again once connection has been established */
555 spin_lock(&server->srv_lock);
556 if (server->tcpStatus == CifsNeedNegotiate)
557 mod_delayed_work(cifsiod_wq, &server->echo, 0);
558 spin_unlock(&server->srv_lock);
560 wake_up(&server->response_q);
564 int cifs_reconnect(struct TCP_Server_Info *server, bool mark_smb_session)
566 /* If tcp session is not an dfs connection, then reconnect to last target server */
567 spin_lock(&server->srv_lock);
568 if (!server->is_dfs_conn) {
569 spin_unlock(&server->srv_lock);
570 return __cifs_reconnect(server, mark_smb_session);
572 spin_unlock(&server->srv_lock);
574 mutex_lock(&server->refpath_lock);
575 if (!server->origin_fullpath || !server->leaf_fullpath) {
576 mutex_unlock(&server->refpath_lock);
577 return __cifs_reconnect(server, mark_smb_session);
579 mutex_unlock(&server->refpath_lock);
581 return reconnect_dfs_server(server);
584 int cifs_reconnect(struct TCP_Server_Info *server, bool mark_smb_session)
586 return __cifs_reconnect(server, mark_smb_session);
591 cifs_echo_request(struct work_struct *work)
594 struct TCP_Server_Info *server = container_of(work,
595 struct TCP_Server_Info, echo.work);
598 * We cannot send an echo if it is disabled.
599 * Also, no need to ping if we got a response recently.
602 if (server->tcpStatus == CifsNeedReconnect ||
603 server->tcpStatus == CifsExiting ||
604 server->tcpStatus == CifsNew ||
605 (server->ops->can_echo && !server->ops->can_echo(server)) ||
606 time_before(jiffies, server->lstrp + server->echo_interval - HZ))
609 rc = server->ops->echo ? server->ops->echo(server) : -ENOSYS;
611 cifs_dbg(FYI, "Unable to send echo request to server: %s\n",
614 /* Check witness registrations */
618 queue_delayed_work(cifsiod_wq, &server->echo, server->echo_interval);
622 allocate_buffers(struct TCP_Server_Info *server)
624 if (!server->bigbuf) {
625 server->bigbuf = (char *)cifs_buf_get();
626 if (!server->bigbuf) {
627 cifs_server_dbg(VFS, "No memory for large SMB response\n");
629 /* retry will check if exiting */
632 } else if (server->large_buf) {
633 /* we are reusing a dirty large buf, clear its start */
634 memset(server->bigbuf, 0, HEADER_SIZE(server));
637 if (!server->smallbuf) {
638 server->smallbuf = (char *)cifs_small_buf_get();
639 if (!server->smallbuf) {
640 cifs_server_dbg(VFS, "No memory for SMB response\n");
642 /* retry will check if exiting */
645 /* beginning of smb buffer is cleared in our buf_get */
647 /* if existing small buf clear beginning */
648 memset(server->smallbuf, 0, HEADER_SIZE(server));
655 server_unresponsive(struct TCP_Server_Info *server)
658 * We need to wait 3 echo intervals to make sure we handle such
660 * 1s client sends a normal SMB request
661 * 2s client gets a response
662 * 30s echo workqueue job pops, and decides we got a response recently
663 * and don't need to send another
665 * 65s kernel_recvmsg times out, and we see that we haven't gotten
666 * a response in >60s.
668 spin_lock(&server->srv_lock);
669 if ((server->tcpStatus == CifsGood ||
670 server->tcpStatus == CifsNeedNegotiate) &&
671 (!server->ops->can_echo || server->ops->can_echo(server)) &&
672 time_after(jiffies, server->lstrp + 3 * server->echo_interval)) {
673 spin_unlock(&server->srv_lock);
674 cifs_server_dbg(VFS, "has not responded in %lu seconds. Reconnecting...\n",
675 (3 * server->echo_interval) / HZ);
676 cifs_reconnect(server, false);
679 spin_unlock(&server->srv_lock);
685 zero_credits(struct TCP_Server_Info *server)
689 spin_lock(&server->req_lock);
690 val = server->credits + server->echo_credits + server->oplock_credits;
691 if (server->in_flight == 0 && val == 0) {
692 spin_unlock(&server->req_lock);
695 spin_unlock(&server->req_lock);
700 cifs_readv_from_socket(struct TCP_Server_Info *server, struct msghdr *smb_msg)
705 for (total_read = 0; msg_data_left(smb_msg); total_read += length) {
708 /* reconnect if no credits and no requests in flight */
709 if (zero_credits(server)) {
710 cifs_reconnect(server, false);
711 return -ECONNABORTED;
714 if (server_unresponsive(server))
715 return -ECONNABORTED;
716 if (cifs_rdma_enabled(server) && server->smbd_conn)
717 length = smbd_recv(server->smbd_conn, smb_msg);
719 length = sock_recvmsg(server->ssocket, smb_msg, 0);
721 spin_lock(&server->srv_lock);
722 if (server->tcpStatus == CifsExiting) {
723 spin_unlock(&server->srv_lock);
727 if (server->tcpStatus == CifsNeedReconnect) {
728 spin_unlock(&server->srv_lock);
729 cifs_reconnect(server, false);
730 return -ECONNABORTED;
732 spin_unlock(&server->srv_lock);
734 if (length == -ERESTARTSYS ||
738 * Minimum sleep to prevent looping, allowing socket
739 * to clear and app threads to set tcpStatus
740 * CifsNeedReconnect if server hung.
742 usleep_range(1000, 2000);
748 cifs_dbg(FYI, "Received no data or error: %d\n", length);
749 cifs_reconnect(server, false);
750 return -ECONNABORTED;
757 cifs_read_from_socket(struct TCP_Server_Info *server, char *buf,
758 unsigned int to_read)
760 struct msghdr smb_msg = {};
761 struct kvec iov = {.iov_base = buf, .iov_len = to_read};
762 iov_iter_kvec(&smb_msg.msg_iter, READ, &iov, 1, to_read);
764 return cifs_readv_from_socket(server, &smb_msg);
768 cifs_discard_from_socket(struct TCP_Server_Info *server, size_t to_read)
770 struct msghdr smb_msg = {};
773 * iov_iter_discard already sets smb_msg.type and count and iov_offset
774 * and cifs_readv_from_socket sets msg_control and msg_controllen
775 * so little to initialize in struct msghdr
777 iov_iter_discard(&smb_msg.msg_iter, READ, to_read);
779 return cifs_readv_from_socket(server, &smb_msg);
783 cifs_read_page_from_socket(struct TCP_Server_Info *server, struct page *page,
784 unsigned int page_offset, unsigned int to_read)
786 struct msghdr smb_msg = {};
787 struct bio_vec bv = {
788 .bv_page = page, .bv_len = to_read, .bv_offset = page_offset};
789 iov_iter_bvec(&smb_msg.msg_iter, READ, &bv, 1, to_read);
790 return cifs_readv_from_socket(server, &smb_msg);
794 is_smb_response(struct TCP_Server_Info *server, unsigned char type)
797 * The first byte big endian of the length field,
798 * is actually not part of the length but the type
799 * with the most common, zero, as regular data.
802 case RFC1002_SESSION_MESSAGE:
803 /* Regular SMB response */
805 case RFC1002_SESSION_KEEP_ALIVE:
806 cifs_dbg(FYI, "RFC 1002 session keep alive\n");
808 case RFC1002_POSITIVE_SESSION_RESPONSE:
809 cifs_dbg(FYI, "RFC 1002 positive session response\n");
811 case RFC1002_NEGATIVE_SESSION_RESPONSE:
813 * We get this from Windows 98 instead of an error on
814 * SMB negprot response.
816 cifs_dbg(FYI, "RFC 1002 negative session response\n");
817 /* give server a second to clean up */
820 * Always try 445 first on reconnect since we get NACK
821 * on some if we ever connected to port 139 (the NACK
822 * is since we do not begin with RFC1001 session
825 cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT);
826 cifs_reconnect(server, true);
829 cifs_server_dbg(VFS, "RFC 1002 unknown response type 0x%x\n", type);
830 cifs_reconnect(server, true);
837 dequeue_mid(struct mid_q_entry *mid, bool malformed)
839 #ifdef CONFIG_CIFS_STATS2
840 mid->when_received = jiffies;
842 spin_lock(&mid->server->mid_lock);
844 mid->mid_state = MID_RESPONSE_RECEIVED;
846 mid->mid_state = MID_RESPONSE_MALFORMED;
848 * Trying to handle/dequeue a mid after the send_recv()
849 * function has finished processing it is a bug.
851 if (mid->mid_flags & MID_DELETED) {
852 spin_unlock(&mid->server->mid_lock);
853 pr_warn_once("trying to dequeue a deleted mid\n");
855 list_del_init(&mid->qhead);
856 mid->mid_flags |= MID_DELETED;
857 spin_unlock(&mid->server->mid_lock);
862 smb2_get_credits_from_hdr(char *buffer, struct TCP_Server_Info *server)
864 struct smb2_hdr *shdr = (struct smb2_hdr *)buffer;
867 * SMB1 does not use credits.
872 return le16_to_cpu(shdr->CreditRequest);
876 handle_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server,
877 char *buf, int malformed)
879 if (server->ops->check_trans2 &&
880 server->ops->check_trans2(mid, server, buf, malformed))
882 mid->credits_received = smb2_get_credits_from_hdr(buf, server);
884 mid->large_buf = server->large_buf;
885 /* Was previous buf put in mpx struct for multi-rsp? */
886 if (!mid->multiRsp) {
887 /* smb buffer will be freed by user thread */
888 if (server->large_buf)
889 server->bigbuf = NULL;
891 server->smallbuf = NULL;
893 dequeue_mid(mid, malformed);
897 cifs_enable_signing(struct TCP_Server_Info *server, bool mnt_sign_required)
899 bool srv_sign_required = server->sec_mode & server->vals->signing_required;
900 bool srv_sign_enabled = server->sec_mode & server->vals->signing_enabled;
901 bool mnt_sign_enabled;
904 * Is signing required by mnt options? If not then check
905 * global_secflags to see if it is there.
907 if (!mnt_sign_required)
908 mnt_sign_required = ((global_secflags & CIFSSEC_MUST_SIGN) ==
912 * If signing is required then it's automatically enabled too,
913 * otherwise, check to see if the secflags allow it.
915 mnt_sign_enabled = mnt_sign_required ? mnt_sign_required :
916 (global_secflags & CIFSSEC_MAY_SIGN);
918 /* If server requires signing, does client allow it? */
919 if (srv_sign_required) {
920 if (!mnt_sign_enabled) {
921 cifs_dbg(VFS, "Server requires signing, but it's disabled in SecurityFlags!\n");
927 /* If client requires signing, does server allow it? */
928 if (mnt_sign_required) {
929 if (!srv_sign_enabled) {
930 cifs_dbg(VFS, "Server does not support signing!\n");
936 if (cifs_rdma_enabled(server) && server->sign)
937 cifs_dbg(VFS, "Signing is enabled, and RDMA read/write will be disabled\n");
943 static void clean_demultiplex_info(struct TCP_Server_Info *server)
947 /* take it off the list, if it's not already */
948 spin_lock(&server->srv_lock);
949 list_del_init(&server->tcp_ses_list);
950 spin_unlock(&server->srv_lock);
952 cancel_delayed_work_sync(&server->echo);
953 cancel_delayed_work_sync(&server->resolve);
955 spin_lock(&server->srv_lock);
956 server->tcpStatus = CifsExiting;
957 spin_unlock(&server->srv_lock);
958 wake_up_all(&server->response_q);
960 /* check if we have blocked requests that need to free */
961 spin_lock(&server->req_lock);
962 if (server->credits <= 0)
964 spin_unlock(&server->req_lock);
966 * Although there should not be any requests blocked on this queue it
967 * can not hurt to be paranoid and try to wake up requests that may
968 * haven been blocked when more than 50 at time were on the wire to the
969 * same server - they now will see the session is in exit state and get
970 * out of SendReceive.
972 wake_up_all(&server->request_q);
973 /* give those requests time to exit */
975 if (cifs_rdma_enabled(server))
976 smbd_destroy(server);
977 if (server->ssocket) {
978 sock_release(server->ssocket);
979 server->ssocket = NULL;
982 if (!list_empty(&server->pending_mid_q)) {
983 struct list_head dispose_list;
984 struct mid_q_entry *mid_entry;
985 struct list_head *tmp, *tmp2;
987 INIT_LIST_HEAD(&dispose_list);
988 spin_lock(&server->mid_lock);
989 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
990 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
991 cifs_dbg(FYI, "Clearing mid %llu\n", mid_entry->mid);
992 kref_get(&mid_entry->refcount);
993 mid_entry->mid_state = MID_SHUTDOWN;
994 list_move(&mid_entry->qhead, &dispose_list);
995 mid_entry->mid_flags |= MID_DELETED;
997 spin_unlock(&server->mid_lock);
999 /* now walk dispose list and issue callbacks */
1000 list_for_each_safe(tmp, tmp2, &dispose_list) {
1001 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
1002 cifs_dbg(FYI, "Callback mid %llu\n", mid_entry->mid);
1003 list_del_init(&mid_entry->qhead);
1004 mid_entry->callback(mid_entry);
1005 release_mid(mid_entry);
1007 /* 1/8th of sec is more than enough time for them to exit */
1011 if (!list_empty(&server->pending_mid_q)) {
1013 * mpx threads have not exited yet give them at least the smb
1014 * send timeout time for long ops.
1016 * Due to delays on oplock break requests, we need to wait at
1017 * least 45 seconds before giving up on a request getting a
1018 * response and going ahead and killing cifsd.
1020 cifs_dbg(FYI, "Wait for exit from demultiplex thread\n");
1023 * If threads still have not exited they are probably never
1024 * coming home not much else we can do but free the memory.
1028 #ifdef CONFIG_CIFS_DFS_UPCALL
1029 kfree(server->origin_fullpath);
1030 kfree(server->leaf_fullpath);
1034 length = atomic_dec_return(&tcpSesAllocCount);
1036 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
1040 standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid)
1043 char *buf = server->smallbuf;
1044 unsigned int pdu_length = server->pdu_size;
1046 /* make sure this will fit in a large buffer */
1047 if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) -
1048 HEADER_PREAMBLE_SIZE(server)) {
1049 cifs_server_dbg(VFS, "SMB response too long (%u bytes)\n", pdu_length);
1050 cifs_reconnect(server, true);
1051 return -ECONNABORTED;
1054 /* switch to large buffer if too big for a small one */
1055 if (pdu_length > MAX_CIFS_SMALL_BUFFER_SIZE - 4) {
1056 server->large_buf = true;
1057 memcpy(server->bigbuf, buf, server->total_read);
1058 buf = server->bigbuf;
1061 /* now read the rest */
1062 length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1,
1063 pdu_length - MID_HEADER_SIZE(server));
1067 server->total_read += length;
1069 dump_smb(buf, server->total_read);
1071 return cifs_handle_standard(server, mid);
1075 cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid)
1077 char *buf = server->large_buf ? server->bigbuf : server->smallbuf;
1081 * We know that we received enough to get to the MID as we
1082 * checked the pdu_length earlier. Now check to see
1083 * if the rest of the header is OK.
1085 * 48 bytes is enough to display the header and a little bit
1086 * into the payload for debugging purposes.
1088 rc = server->ops->check_message(buf, server->total_read, server);
1090 cifs_dump_mem("Bad SMB: ", buf,
1091 min_t(unsigned int, server->total_read, 48));
1093 if (server->ops->is_session_expired &&
1094 server->ops->is_session_expired(buf)) {
1095 cifs_reconnect(server, true);
1099 if (server->ops->is_status_pending &&
1100 server->ops->is_status_pending(buf, server))
1106 handle_mid(mid, server, buf, rc);
1111 smb2_add_credits_from_hdr(char *buffer, struct TCP_Server_Info *server)
1113 struct smb2_hdr *shdr = (struct smb2_hdr *)buffer;
1114 int scredits, in_flight;
1117 * SMB1 does not use credits.
1119 if (is_smb1(server))
1122 if (shdr->CreditRequest) {
1123 spin_lock(&server->req_lock);
1124 server->credits += le16_to_cpu(shdr->CreditRequest);
1125 scredits = server->credits;
1126 in_flight = server->in_flight;
1127 spin_unlock(&server->req_lock);
1128 wake_up(&server->request_q);
1130 trace_smb3_hdr_credits(server->CurrentMid,
1131 server->conn_id, server->hostname, scredits,
1132 le16_to_cpu(shdr->CreditRequest), in_flight);
1133 cifs_server_dbg(FYI, "%s: added %u credits total=%d\n",
1134 __func__, le16_to_cpu(shdr->CreditRequest),
1141 cifs_demultiplex_thread(void *p)
1143 int i, num_mids, length;
1144 struct TCP_Server_Info *server = p;
1145 unsigned int pdu_length;
1146 unsigned int next_offset;
1148 struct task_struct *task_to_wake = NULL;
1149 struct mid_q_entry *mids[MAX_COMPOUND];
1150 char *bufs[MAX_COMPOUND];
1151 unsigned int noreclaim_flag, num_io_timeout = 0;
1153 noreclaim_flag = memalloc_noreclaim_save();
1154 cifs_dbg(FYI, "Demultiplex PID: %d\n", task_pid_nr(current));
1156 length = atomic_inc_return(&tcpSesAllocCount);
1158 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
1161 allow_kernel_signal(SIGKILL);
1162 while (server->tcpStatus != CifsExiting) {
1163 if (try_to_freeze())
1166 if (!allocate_buffers(server))
1169 server->large_buf = false;
1170 buf = server->smallbuf;
1171 pdu_length = 4; /* enough to get RFC1001 header */
1173 length = cifs_read_from_socket(server, buf, pdu_length);
1177 if (is_smb1(server))
1178 server->total_read = length;
1180 server->total_read = 0;
1183 * The right amount was read from socket - 4 bytes,
1184 * so we can now interpret the length field.
1186 pdu_length = get_rfc1002_length(buf);
1188 cifs_dbg(FYI, "RFC1002 header 0x%x\n", pdu_length);
1189 if (!is_smb_response(server, buf[0]))
1192 server->pdu_size = pdu_length;
1194 /* make sure we have enough to get to the MID */
1195 if (server->pdu_size < MID_HEADER_SIZE(server)) {
1196 cifs_server_dbg(VFS, "SMB response too short (%u bytes)\n",
1198 cifs_reconnect(server, true);
1202 /* read down to the MID */
1203 length = cifs_read_from_socket(server,
1204 buf + HEADER_PREAMBLE_SIZE(server),
1205 MID_HEADER_SIZE(server));
1208 server->total_read += length;
1210 if (server->ops->next_header) {
1211 next_offset = server->ops->next_header(buf);
1213 server->pdu_size = next_offset;
1216 memset(mids, 0, sizeof(mids));
1217 memset(bufs, 0, sizeof(bufs));
1220 if (server->ops->is_transform_hdr &&
1221 server->ops->receive_transform &&
1222 server->ops->is_transform_hdr(buf)) {
1223 length = server->ops->receive_transform(server,
1228 mids[0] = server->ops->find_mid(server, buf);
1232 if (!mids[0] || !mids[0]->receive)
1233 length = standard_receive3(server, mids[0]);
1235 length = mids[0]->receive(server, mids[0]);
1239 for (i = 0; i < num_mids; i++)
1241 release_mid(mids[i]);
1245 if (server->ops->is_status_io_timeout &&
1246 server->ops->is_status_io_timeout(buf)) {
1248 if (num_io_timeout > NUM_STATUS_IO_TIMEOUT) {
1249 cifs_reconnect(server, false);
1255 server->lstrp = jiffies;
1257 for (i = 0; i < num_mids; i++) {
1258 if (mids[i] != NULL) {
1259 mids[i]->resp_buf_size = server->pdu_size;
1261 if (bufs[i] && server->ops->is_network_name_deleted)
1262 server->ops->is_network_name_deleted(bufs[i],
1265 if (!mids[i]->multiRsp || mids[i]->multiEnd)
1266 mids[i]->callback(mids[i]);
1268 release_mid(mids[i]);
1269 } else if (server->ops->is_oplock_break &&
1270 server->ops->is_oplock_break(bufs[i],
1272 smb2_add_credits_from_hdr(bufs[i], server);
1273 cifs_dbg(FYI, "Received oplock break\n");
1275 cifs_server_dbg(VFS, "No task to wake, unknown frame received! NumMids %d\n",
1276 atomic_read(&mid_count));
1277 cifs_dump_mem("Received Data is: ", bufs[i],
1278 HEADER_SIZE(server));
1279 smb2_add_credits_from_hdr(bufs[i], server);
1280 #ifdef CONFIG_CIFS_DEBUG2
1281 if (server->ops->dump_detail)
1282 server->ops->dump_detail(bufs[i],
1284 cifs_dump_mids(server);
1285 #endif /* CIFS_DEBUG2 */
1289 if (pdu_length > server->pdu_size) {
1290 if (!allocate_buffers(server))
1292 pdu_length -= server->pdu_size;
1293 server->total_read = 0;
1294 server->large_buf = false;
1295 buf = server->smallbuf;
1298 } /* end while !EXITING */
1300 /* buffer usually freed in free_mid - need to free it here on exit */
1301 cifs_buf_release(server->bigbuf);
1302 if (server->smallbuf) /* no sense logging a debug message if NULL */
1303 cifs_small_buf_release(server->smallbuf);
1305 task_to_wake = xchg(&server->tsk, NULL);
1306 clean_demultiplex_info(server);
1308 /* if server->tsk was NULL then wait for a signal before exiting */
1309 if (!task_to_wake) {
1310 set_current_state(TASK_INTERRUPTIBLE);
1311 while (!signal_pending(current)) {
1313 set_current_state(TASK_INTERRUPTIBLE);
1315 set_current_state(TASK_RUNNING);
1318 memalloc_noreclaim_restore(noreclaim_flag);
1319 module_put_and_kthread_exit(0);
1323 * Returns true if srcaddr isn't specified and rhs isn't specified, or
1324 * if srcaddr is specified and matches the IP address of the rhs argument
1327 cifs_match_ipaddr(struct sockaddr *srcaddr, struct sockaddr *rhs)
1329 switch (srcaddr->sa_family) {
1331 return (rhs->sa_family == AF_UNSPEC);
1333 struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr;
1334 struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs;
1335 return (saddr4->sin_addr.s_addr == vaddr4->sin_addr.s_addr);
1338 struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr;
1339 struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs;
1340 return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr);
1344 return false; /* don't expect to be here */
1349 * If no port is specified in addr structure, we try to match with 445 port
1350 * and if it fails - with 139 ports. It should be called only if address
1351 * families of server and addr are equal.
1354 match_port(struct TCP_Server_Info *server, struct sockaddr *addr)
1356 __be16 port, *sport;
1358 /* SMBDirect manages its own ports, don't match it here */
1362 switch (addr->sa_family) {
1364 sport = &((struct sockaddr_in *) &server->dstaddr)->sin_port;
1365 port = ((struct sockaddr_in *) addr)->sin_port;
1368 sport = &((struct sockaddr_in6 *) &server->dstaddr)->sin6_port;
1369 port = ((struct sockaddr_in6 *) addr)->sin6_port;
1377 port = htons(CIFS_PORT);
1381 port = htons(RFC1001_PORT);
1384 return port == *sport;
1388 match_address(struct TCP_Server_Info *server, struct sockaddr *addr,
1389 struct sockaddr *srcaddr)
1391 switch (addr->sa_family) {
1393 struct sockaddr_in *addr4 = (struct sockaddr_in *)addr;
1394 struct sockaddr_in *srv_addr4 =
1395 (struct sockaddr_in *)&server->dstaddr;
1397 if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr)
1402 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr;
1403 struct sockaddr_in6 *srv_addr6 =
1404 (struct sockaddr_in6 *)&server->dstaddr;
1406 if (!ipv6_addr_equal(&addr6->sin6_addr,
1407 &srv_addr6->sin6_addr))
1409 if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id)
1415 return false; /* don't expect to be here */
1418 if (!cifs_match_ipaddr(srcaddr, (struct sockaddr *)&server->srcaddr))
1425 match_security(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
1428 * The select_sectype function should either return the ctx->sectype
1429 * that was specified, or "Unspecified" if that sectype was not
1430 * compatible with the given NEGOTIATE request.
1432 if (server->ops->select_sectype(server, ctx->sectype)
1437 * Now check if signing mode is acceptable. No need to check
1438 * global_secflags at this point since if MUST_SIGN is set then
1439 * the server->sign had better be too.
1441 if (ctx->sign && !server->sign)
1447 /* this function must be called with srv_lock held */
1448 static int match_server(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
1450 struct sockaddr *addr = (struct sockaddr *)&ctx->dstaddr;
1452 if (ctx->nosharesock)
1455 /* this server does not share socket */
1456 if (server->nosharesock)
1459 /* If multidialect negotiation see if existing sessions match one */
1460 if (strcmp(ctx->vals->version_string, SMB3ANY_VERSION_STRING) == 0) {
1461 if (server->vals->protocol_id < SMB30_PROT_ID)
1463 } else if (strcmp(ctx->vals->version_string,
1464 SMBDEFAULT_VERSION_STRING) == 0) {
1465 if (server->vals->protocol_id < SMB21_PROT_ID)
1467 } else if ((server->vals != ctx->vals) || (server->ops != ctx->ops))
1470 if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns))
1473 if (strcasecmp(server->hostname, ctx->server_hostname))
1476 if (!match_address(server, addr,
1477 (struct sockaddr *)&ctx->srcaddr))
1480 if (!match_port(server, addr))
1483 if (!match_security(server, ctx))
1486 if (server->echo_interval != ctx->echo_interval * HZ)
1489 if (server->rdma != ctx->rdma)
1492 if (server->ignore_signature != ctx->ignore_signature)
1495 if (server->min_offload != ctx->min_offload)
1501 struct TCP_Server_Info *
1502 cifs_find_tcp_session(struct smb3_fs_context *ctx)
1504 struct TCP_Server_Info *server;
1506 spin_lock(&cifs_tcp_ses_lock);
1507 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
1508 spin_lock(&server->srv_lock);
1509 #ifdef CONFIG_CIFS_DFS_UPCALL
1511 * DFS failover implementation in cifs_reconnect() requires unique tcp sessions for
1512 * DFS connections to do failover properly, so avoid sharing them with regular
1513 * shares or even links that may connect to same server but having completely
1514 * different failover targets.
1516 if (server->is_dfs_conn) {
1517 spin_unlock(&server->srv_lock);
1522 * Skip ses channels since they're only handled in lower layers
1523 * (e.g. cifs_send_recv).
1525 if (CIFS_SERVER_IS_CHAN(server) || !match_server(server, ctx)) {
1526 spin_unlock(&server->srv_lock);
1529 spin_unlock(&server->srv_lock);
1531 ++server->srv_count;
1532 spin_unlock(&cifs_tcp_ses_lock);
1533 cifs_dbg(FYI, "Existing tcp session with server found\n");
1536 spin_unlock(&cifs_tcp_ses_lock);
1541 cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect)
1543 struct task_struct *task;
1545 spin_lock(&cifs_tcp_ses_lock);
1546 if (--server->srv_count > 0) {
1547 spin_unlock(&cifs_tcp_ses_lock);
1551 /* srv_count can never go negative */
1552 WARN_ON(server->srv_count < 0);
1554 put_net(cifs_net_ns(server));
1556 list_del_init(&server->tcp_ses_list);
1557 spin_unlock(&cifs_tcp_ses_lock);
1559 /* For secondary channels, we pick up ref-count on the primary server */
1560 if (CIFS_SERVER_IS_CHAN(server))
1561 cifs_put_tcp_session(server->primary_server, from_reconnect);
1563 cancel_delayed_work_sync(&server->echo);
1564 cancel_delayed_work_sync(&server->resolve);
1568 * Avoid deadlock here: reconnect work calls
1569 * cifs_put_tcp_session() at its end. Need to be sure
1570 * that reconnect work does nothing with server pointer after
1573 cancel_delayed_work(&server->reconnect);
1575 cancel_delayed_work_sync(&server->reconnect);
1577 spin_lock(&server->srv_lock);
1578 server->tcpStatus = CifsExiting;
1579 spin_unlock(&server->srv_lock);
1581 cifs_crypto_secmech_release(server);
1583 kfree_sensitive(server->session_key.response);
1584 server->session_key.response = NULL;
1585 server->session_key.len = 0;
1586 kfree(server->hostname);
1587 server->hostname = NULL;
1589 task = xchg(&server->tsk, NULL);
1591 send_sig(SIGKILL, task, 1);
1594 struct TCP_Server_Info *
1595 cifs_get_tcp_session(struct smb3_fs_context *ctx,
1596 struct TCP_Server_Info *primary_server)
1598 struct TCP_Server_Info *tcp_ses = NULL;
1601 cifs_dbg(FYI, "UNC: %s\n", ctx->UNC);
1603 /* see if we already have a matching tcp_ses */
1604 tcp_ses = cifs_find_tcp_session(ctx);
1608 tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL);
1614 tcp_ses->hostname = kstrdup(ctx->server_hostname, GFP_KERNEL);
1615 if (!tcp_ses->hostname) {
1620 if (ctx->nosharesock)
1621 tcp_ses->nosharesock = true;
1623 tcp_ses->ops = ctx->ops;
1624 tcp_ses->vals = ctx->vals;
1625 cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns));
1627 tcp_ses->conn_id = atomic_inc_return(&tcpSesNextId);
1628 tcp_ses->noblockcnt = ctx->rootfs;
1629 tcp_ses->noblocksnd = ctx->noblocksnd || ctx->rootfs;
1630 tcp_ses->noautotune = ctx->noautotune;
1631 tcp_ses->tcp_nodelay = ctx->sockopt_tcp_nodelay;
1632 tcp_ses->rdma = ctx->rdma;
1633 tcp_ses->in_flight = 0;
1634 tcp_ses->max_in_flight = 0;
1635 tcp_ses->credits = 1;
1636 if (primary_server) {
1637 spin_lock(&cifs_tcp_ses_lock);
1638 ++primary_server->srv_count;
1639 spin_unlock(&cifs_tcp_ses_lock);
1640 tcp_ses->primary_server = primary_server;
1642 init_waitqueue_head(&tcp_ses->response_q);
1643 init_waitqueue_head(&tcp_ses->request_q);
1644 INIT_LIST_HEAD(&tcp_ses->pending_mid_q);
1645 mutex_init(&tcp_ses->_srv_mutex);
1646 memcpy(tcp_ses->workstation_RFC1001_name,
1647 ctx->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
1648 memcpy(tcp_ses->server_RFC1001_name,
1649 ctx->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
1650 tcp_ses->session_estab = false;
1651 tcp_ses->sequence_number = 0;
1652 tcp_ses->reconnect_instance = 1;
1653 tcp_ses->lstrp = jiffies;
1654 tcp_ses->compress_algorithm = cpu_to_le16(ctx->compression);
1655 spin_lock_init(&tcp_ses->req_lock);
1656 spin_lock_init(&tcp_ses->srv_lock);
1657 spin_lock_init(&tcp_ses->mid_lock);
1658 INIT_LIST_HEAD(&tcp_ses->tcp_ses_list);
1659 INIT_LIST_HEAD(&tcp_ses->smb_ses_list);
1660 INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request);
1661 INIT_DELAYED_WORK(&tcp_ses->resolve, cifs_resolve_server);
1662 INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server);
1663 mutex_init(&tcp_ses->reconnect_mutex);
1664 #ifdef CONFIG_CIFS_DFS_UPCALL
1665 mutex_init(&tcp_ses->refpath_lock);
1667 memcpy(&tcp_ses->srcaddr, &ctx->srcaddr,
1668 sizeof(tcp_ses->srcaddr));
1669 memcpy(&tcp_ses->dstaddr, &ctx->dstaddr,
1670 sizeof(tcp_ses->dstaddr));
1671 if (ctx->use_client_guid)
1672 memcpy(tcp_ses->client_guid, ctx->client_guid,
1673 SMB2_CLIENT_GUID_SIZE);
1675 generate_random_uuid(tcp_ses->client_guid);
1677 * at this point we are the only ones with the pointer
1678 * to the struct since the kernel thread not created yet
1679 * no need to spinlock this init of tcpStatus or srv_count
1681 tcp_ses->tcpStatus = CifsNew;
1682 ++tcp_ses->srv_count;
1684 if (ctx->echo_interval >= SMB_ECHO_INTERVAL_MIN &&
1685 ctx->echo_interval <= SMB_ECHO_INTERVAL_MAX)
1686 tcp_ses->echo_interval = ctx->echo_interval * HZ;
1688 tcp_ses->echo_interval = SMB_ECHO_INTERVAL_DEFAULT * HZ;
1689 if (tcp_ses->rdma) {
1690 #ifndef CONFIG_CIFS_SMB_DIRECT
1691 cifs_dbg(VFS, "CONFIG_CIFS_SMB_DIRECT is not enabled\n");
1693 goto out_err_crypto_release;
1695 tcp_ses->smbd_conn = smbd_get_connection(
1696 tcp_ses, (struct sockaddr *)&ctx->dstaddr);
1697 if (tcp_ses->smbd_conn) {
1698 cifs_dbg(VFS, "RDMA transport established\n");
1700 goto smbd_connected;
1703 goto out_err_crypto_release;
1706 rc = ip_connect(tcp_ses);
1708 cifs_dbg(VFS, "Error connecting to socket. Aborting operation.\n");
1709 goto out_err_crypto_release;
1713 * since we're in a cifs function already, we know that
1714 * this will succeed. No need for try_module_get().
1716 __module_get(THIS_MODULE);
1717 tcp_ses->tsk = kthread_run(cifs_demultiplex_thread,
1719 if (IS_ERR(tcp_ses->tsk)) {
1720 rc = PTR_ERR(tcp_ses->tsk);
1721 cifs_dbg(VFS, "error %d create cifsd thread\n", rc);
1722 module_put(THIS_MODULE);
1723 goto out_err_crypto_release;
1725 tcp_ses->min_offload = ctx->min_offload;
1727 * at this point we are the only ones with the pointer
1728 * to the struct since the kernel thread not created yet
1729 * no need to spinlock this update of tcpStatus
1731 spin_lock(&tcp_ses->srv_lock);
1732 tcp_ses->tcpStatus = CifsNeedNegotiate;
1733 spin_unlock(&tcp_ses->srv_lock);
1735 if ((ctx->max_credits < 20) || (ctx->max_credits > 60000))
1736 tcp_ses->max_credits = SMB2_MAX_CREDITS_AVAILABLE;
1738 tcp_ses->max_credits = ctx->max_credits;
1740 tcp_ses->nr_targets = 1;
1741 tcp_ses->ignore_signature = ctx->ignore_signature;
1742 /* thread spawned, put it on the list */
1743 spin_lock(&cifs_tcp_ses_lock);
1744 list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list);
1745 spin_unlock(&cifs_tcp_ses_lock);
1747 /* queue echo request delayed work */
1748 queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval);
1750 /* queue dns resolution delayed work */
1751 cifs_dbg(FYI, "%s: next dns resolution scheduled for %d seconds in the future\n",
1752 __func__, SMB_DNS_RESOLVE_INTERVAL_DEFAULT);
1754 queue_delayed_work(cifsiod_wq, &tcp_ses->resolve, (SMB_DNS_RESOLVE_INTERVAL_DEFAULT * HZ));
1758 out_err_crypto_release:
1759 cifs_crypto_secmech_release(tcp_ses);
1761 put_net(cifs_net_ns(tcp_ses));
1765 if (CIFS_SERVER_IS_CHAN(tcp_ses))
1766 cifs_put_tcp_session(tcp_ses->primary_server, false);
1767 kfree(tcp_ses->hostname);
1768 if (tcp_ses->ssocket)
1769 sock_release(tcp_ses->ssocket);
1775 /* this function must be called with ses_lock held */
1776 static int match_session(struct cifs_ses *ses, struct smb3_fs_context *ctx)
1778 if (ctx->sectype != Unspecified &&
1779 ctx->sectype != ses->sectype)
1783 * If an existing session is limited to less channels than
1784 * requested, it should not be reused
1786 spin_lock(&ses->chan_lock);
1787 if (ses->chan_max < ctx->max_channels) {
1788 spin_unlock(&ses->chan_lock);
1791 spin_unlock(&ses->chan_lock);
1793 switch (ses->sectype) {
1795 if (!uid_eq(ctx->cred_uid, ses->cred_uid))
1799 /* NULL username means anonymous session */
1800 if (ses->user_name == NULL) {
1806 /* anything else takes username/password */
1807 if (strncmp(ses->user_name,
1808 ctx->username ? ctx->username : "",
1809 CIFS_MAX_USERNAME_LEN))
1811 if ((ctx->username && strlen(ctx->username) != 0) &&
1812 ses->password != NULL &&
1813 strncmp(ses->password,
1814 ctx->password ? ctx->password : "",
1815 CIFS_MAX_PASSWORD_LEN))
1822 * cifs_setup_ipc - helper to setup the IPC tcon for the session
1823 * @ses: smb session to issue the request on
1824 * @ctx: the superblock configuration context to use for building the
1825 * new tree connection for the IPC (interprocess communication RPC)
1827 * A new IPC connection is made and stored in the session
1828 * tcon_ipc. The IPC tcon has the same lifetime as the session.
1831 cifs_setup_ipc(struct cifs_ses *ses, struct smb3_fs_context *ctx)
1834 struct cifs_tcon *tcon;
1835 char unc[SERVER_NAME_LENGTH + sizeof("//x/IPC$")] = {0};
1837 struct TCP_Server_Info *server = ses->server;
1840 * If the mount request that resulted in the creation of the
1841 * session requires encryption, force IPC to be encrypted too.
1844 if (server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION)
1847 cifs_server_dbg(VFS,
1848 "IPC: server doesn't support encryption\n");
1853 tcon = tconInfoAlloc();
1857 scnprintf(unc, sizeof(unc), "\\\\%s\\IPC$", server->hostname);
1863 rc = server->ops->tree_connect(xid, ses, unc, tcon, ctx->local_nls);
1867 cifs_server_dbg(VFS, "failed to connect to IPC (rc=%d)\n", rc);
1872 cifs_dbg(FYI, "IPC tcon rc=%d ipc tid=0x%x\n", rc, tcon->tid);
1874 ses->tcon_ipc = tcon;
1880 * cifs_free_ipc - helper to release the session IPC tcon
1881 * @ses: smb session to unmount the IPC from
1883 * Needs to be called everytime a session is destroyed.
1885 * On session close, the IPC is closed and the server must release all tcons of the session.
1886 * No need to send a tree disconnect here.
1888 * Besides, it will make the server to not close durable and resilient files on session close, as
1889 * specified in MS-SMB2 3.3.5.6 Receiving an SMB2 LOGOFF Request.
1892 cifs_free_ipc(struct cifs_ses *ses)
1894 struct cifs_tcon *tcon = ses->tcon_ipc;
1900 ses->tcon_ipc = NULL;
1904 static struct cifs_ses *
1905 cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
1907 struct cifs_ses *ses;
1909 spin_lock(&cifs_tcp_ses_lock);
1910 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
1911 spin_lock(&ses->ses_lock);
1912 if (ses->ses_status == SES_EXITING) {
1913 spin_unlock(&ses->ses_lock);
1916 if (!match_session(ses, ctx)) {
1917 spin_unlock(&ses->ses_lock);
1920 spin_unlock(&ses->ses_lock);
1923 spin_unlock(&cifs_tcp_ses_lock);
1926 spin_unlock(&cifs_tcp_ses_lock);
1930 void cifs_put_smb_ses(struct cifs_ses *ses)
1932 unsigned int rc, xid;
1933 unsigned int chan_count;
1934 struct TCP_Server_Info *server = ses->server;
1936 spin_lock(&ses->ses_lock);
1937 if (ses->ses_status == SES_EXITING) {
1938 spin_unlock(&ses->ses_lock);
1941 spin_unlock(&ses->ses_lock);
1943 cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count);
1945 "%s: ses ipc: %s\n", __func__, ses->tcon_ipc ? ses->tcon_ipc->tree_name : "NONE");
1947 spin_lock(&cifs_tcp_ses_lock);
1948 if (--ses->ses_count > 0) {
1949 spin_unlock(&cifs_tcp_ses_lock);
1952 spin_unlock(&cifs_tcp_ses_lock);
1954 /* ses_count can never go negative */
1955 WARN_ON(ses->ses_count < 0);
1957 if (ses->ses_status == SES_GOOD)
1958 ses->ses_status = SES_EXITING;
1962 if (ses->ses_status == SES_EXITING && server->ops->logoff) {
1964 rc = server->ops->logoff(xid, ses);
1966 cifs_server_dbg(VFS, "%s: Session Logoff failure rc=%d\n",
1971 spin_lock(&cifs_tcp_ses_lock);
1972 list_del_init(&ses->smb_ses_list);
1973 spin_unlock(&cifs_tcp_ses_lock);
1975 chan_count = ses->chan_count;
1977 /* close any extra channels */
1978 if (chan_count > 1) {
1981 for (i = 1; i < chan_count; i++) {
1982 if (ses->chans[i].iface) {
1983 kref_put(&ses->chans[i].iface->refcount, release_iface);
1984 ses->chans[i].iface = NULL;
1986 cifs_put_tcp_session(ses->chans[i].server, 0);
1987 ses->chans[i].server = NULL;
1992 cifs_put_tcp_session(server, 0);
1997 /* strlen("cifs:a:") + CIFS_MAX_DOMAINNAME_LEN + 1 */
1998 #define CIFSCREDS_DESC_SIZE (7 + CIFS_MAX_DOMAINNAME_LEN + 1)
2000 /* Populate username and pw fields from keyring if possible */
2002 cifs_set_cifscreds(struct smb3_fs_context *ctx, struct cifs_ses *ses)
2006 const char *delim, *payload;
2010 struct TCP_Server_Info *server = ses->server;
2011 struct sockaddr_in *sa;
2012 struct sockaddr_in6 *sa6;
2013 const struct user_key_payload *upayload;
2015 desc = kmalloc(CIFSCREDS_DESC_SIZE, GFP_KERNEL);
2019 /* try to find an address key first */
2020 switch (server->dstaddr.ss_family) {
2022 sa = (struct sockaddr_in *)&server->dstaddr;
2023 sprintf(desc, "cifs:a:%pI4", &sa->sin_addr.s_addr);
2026 sa6 = (struct sockaddr_in6 *)&server->dstaddr;
2027 sprintf(desc, "cifs:a:%pI6c", &sa6->sin6_addr.s6_addr);
2030 cifs_dbg(FYI, "Bad ss_family (%hu)\n",
2031 server->dstaddr.ss_family);
2036 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
2037 key = request_key(&key_type_logon, desc, "");
2039 if (!ses->domainName) {
2040 cifs_dbg(FYI, "domainName is NULL\n");
2045 /* didn't work, try to find a domain key */
2046 sprintf(desc, "cifs:d:%s", ses->domainName);
2047 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
2048 key = request_key(&key_type_logon, desc, "");
2056 down_read(&key->sem);
2057 upayload = user_key_payload_locked(key);
2058 if (IS_ERR_OR_NULL(upayload)) {
2059 rc = upayload ? PTR_ERR(upayload) : -EINVAL;
2063 /* find first : in payload */
2064 payload = upayload->data;
2065 delim = strnchr(payload, upayload->datalen, ':');
2066 cifs_dbg(FYI, "payload=%s\n", payload);
2068 cifs_dbg(FYI, "Unable to find ':' in payload (datalen=%d)\n",
2074 len = delim - payload;
2075 if (len > CIFS_MAX_USERNAME_LEN || len <= 0) {
2076 cifs_dbg(FYI, "Bad value from username search (len=%zd)\n",
2082 ctx->username = kstrndup(payload, len, GFP_KERNEL);
2083 if (!ctx->username) {
2084 cifs_dbg(FYI, "Unable to allocate %zd bytes for username\n",
2089 cifs_dbg(FYI, "%s: username=%s\n", __func__, ctx->username);
2091 len = key->datalen - (len + 1);
2092 if (len > CIFS_MAX_PASSWORD_LEN || len <= 0) {
2093 cifs_dbg(FYI, "Bad len for password search (len=%zd)\n", len);
2095 kfree(ctx->username);
2096 ctx->username = NULL;
2101 ctx->password = kstrndup(delim, len, GFP_KERNEL);
2102 if (!ctx->password) {
2103 cifs_dbg(FYI, "Unable to allocate %zd bytes for password\n",
2106 kfree(ctx->username);
2107 ctx->username = NULL;
2112 * If we have a domain key then we must set the domainName in the
2115 if (is_domain && ses->domainName) {
2116 ctx->domainname = kstrdup(ses->domainName, GFP_KERNEL);
2117 if (!ctx->domainname) {
2118 cifs_dbg(FYI, "Unable to allocate %zd bytes for domain\n",
2121 kfree(ctx->username);
2122 ctx->username = NULL;
2123 kfree_sensitive(ctx->password);
2124 ctx->password = NULL;
2129 strscpy(ctx->workstation_name, ses->workstation_name, sizeof(ctx->workstation_name));
2136 cifs_dbg(FYI, "%s: returning %d\n", __func__, rc);
2139 #else /* ! CONFIG_KEYS */
2141 cifs_set_cifscreds(struct smb3_fs_context *ctx __attribute__((unused)),
2142 struct cifs_ses *ses __attribute__((unused)))
2146 #endif /* CONFIG_KEYS */
2149 * cifs_get_smb_ses - get a session matching @ctx data from @server
2150 * @server: server to setup the session to
2151 * @ctx: superblock configuration context to use to setup the session
2153 * This function assumes it is being called from cifs_mount() where we
2154 * already got a server reference (server refcount +1). See
2155 * cifs_get_tcon() for refcount explanations.
2158 cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
2162 struct cifs_ses *ses;
2163 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
2164 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
2168 ses = cifs_find_smb_ses(server, ctx);
2170 cifs_dbg(FYI, "Existing smb sess found (status=%d)\n",
2173 spin_lock(&ses->chan_lock);
2174 if (cifs_chan_needs_reconnect(ses, server)) {
2175 spin_unlock(&ses->chan_lock);
2176 cifs_dbg(FYI, "Session needs reconnect\n");
2178 mutex_lock(&ses->session_mutex);
2179 rc = cifs_negotiate_protocol(xid, ses, server);
2181 mutex_unlock(&ses->session_mutex);
2182 /* problem -- put our ses reference */
2183 cifs_put_smb_ses(ses);
2188 rc = cifs_setup_session(xid, ses, server,
2191 mutex_unlock(&ses->session_mutex);
2192 /* problem -- put our reference */
2193 cifs_put_smb_ses(ses);
2197 mutex_unlock(&ses->session_mutex);
2199 spin_lock(&ses->chan_lock);
2201 spin_unlock(&ses->chan_lock);
2203 /* existing SMB ses has a server reference already */
2204 cifs_put_tcp_session(server, 0);
2209 cifs_dbg(FYI, "Existing smb sess not found\n");
2210 ses = sesInfoAlloc();
2214 /* new SMB session uses our server ref */
2215 ses->server = server;
2216 if (server->dstaddr.ss_family == AF_INET6)
2217 sprintf(ses->ip_addr, "%pI6", &addr6->sin6_addr);
2219 sprintf(ses->ip_addr, "%pI4", &addr->sin_addr);
2221 if (ctx->username) {
2222 ses->user_name = kstrdup(ctx->username, GFP_KERNEL);
2223 if (!ses->user_name)
2227 /* ctx->password freed at unmount */
2228 if (ctx->password) {
2229 ses->password = kstrdup(ctx->password, GFP_KERNEL);
2233 if (ctx->domainname) {
2234 ses->domainName = kstrdup(ctx->domainname, GFP_KERNEL);
2235 if (!ses->domainName)
2239 strscpy(ses->workstation_name, ctx->workstation_name, sizeof(ses->workstation_name));
2241 if (ctx->domainauto)
2242 ses->domainAuto = ctx->domainauto;
2243 ses->cred_uid = ctx->cred_uid;
2244 ses->linux_uid = ctx->linux_uid;
2246 ses->sectype = ctx->sectype;
2247 ses->sign = ctx->sign;
2249 /* add server as first channel */
2250 spin_lock(&ses->chan_lock);
2251 ses->chans[0].server = server;
2252 ses->chan_count = 1;
2253 ses->chan_max = ctx->multichannel ? ctx->max_channels:1;
2254 ses->chans_need_reconnect = 1;
2255 spin_unlock(&ses->chan_lock);
2257 mutex_lock(&ses->session_mutex);
2258 rc = cifs_negotiate_protocol(xid, ses, server);
2260 rc = cifs_setup_session(xid, ses, server, ctx->local_nls);
2261 mutex_unlock(&ses->session_mutex);
2263 /* each channel uses a different signing key */
2264 spin_lock(&ses->chan_lock);
2265 memcpy(ses->chans[0].signkey, ses->smb3signingkey,
2266 sizeof(ses->smb3signingkey));
2267 spin_unlock(&ses->chan_lock);
2273 * success, put it on the list and add it as first channel
2274 * note: the session becomes active soon after this. So you'll
2275 * need to lock before changing something in the session.
2277 spin_lock(&cifs_tcp_ses_lock);
2278 list_add(&ses->smb_ses_list, &server->smb_ses_list);
2279 spin_unlock(&cifs_tcp_ses_lock);
2283 cifs_setup_ipc(ses, ctx);
2293 /* this function must be called with tc_lock held */
2294 static int match_tcon(struct cifs_tcon *tcon, struct smb3_fs_context *ctx)
2296 if (tcon->status == TID_EXITING)
2298 if (strncmp(tcon->tree_name, ctx->UNC, MAX_TREE_SIZE))
2300 if (tcon->seal != ctx->seal)
2302 if (tcon->snapshot_time != ctx->snapshot_time)
2304 if (tcon->handle_timeout != ctx->handle_timeout)
2306 if (tcon->no_lease != ctx->no_lease)
2308 if (tcon->nodelete != ctx->nodelete)
2313 static struct cifs_tcon *
2314 cifs_find_tcon(struct cifs_ses *ses, struct smb3_fs_context *ctx)
2316 struct cifs_tcon *tcon;
2318 spin_lock(&cifs_tcp_ses_lock);
2319 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
2320 spin_lock(&tcon->tc_lock);
2321 if (!match_tcon(tcon, ctx)) {
2322 spin_unlock(&tcon->tc_lock);
2326 spin_unlock(&tcon->tc_lock);
2327 spin_unlock(&cifs_tcp_ses_lock);
2330 spin_unlock(&cifs_tcp_ses_lock);
2335 cifs_put_tcon(struct cifs_tcon *tcon)
2338 struct cifs_ses *ses;
2341 * IPC tcon share the lifetime of their session and are
2342 * destroyed in the session put function
2344 if (tcon == NULL || tcon->ipc)
2348 cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count);
2349 spin_lock(&cifs_tcp_ses_lock);
2350 spin_lock(&tcon->tc_lock);
2351 if (--tcon->tc_count > 0) {
2352 spin_unlock(&tcon->tc_lock);
2353 spin_unlock(&cifs_tcp_ses_lock);
2357 /* tc_count can never go negative */
2358 WARN_ON(tcon->tc_count < 0);
2360 list_del_init(&tcon->tcon_list);
2361 spin_unlock(&tcon->tc_lock);
2362 spin_unlock(&cifs_tcp_ses_lock);
2364 /* cancel polling of interfaces */
2365 cancel_delayed_work_sync(&tcon->query_interfaces);
2367 if (tcon->use_witness) {
2370 rc = cifs_swn_unregister(tcon);
2372 cifs_dbg(VFS, "%s: Failed to unregister for witness notifications: %d\n",
2378 if (ses->server->ops->tree_disconnect)
2379 ses->server->ops->tree_disconnect(xid, tcon);
2382 cifs_fscache_release_super_cookie(tcon);
2384 cifs_put_smb_ses(ses);
2388 * cifs_get_tcon - get a tcon matching @ctx data from @ses
2389 * @ses: smb session to issue the request on
2390 * @ctx: the superblock configuration context to use for building the
2392 * - tcon refcount is the number of mount points using the tcon.
2393 * - ses refcount is the number of tcon using the session.
2395 * 1. This function assumes it is being called from cifs_mount() where
2396 * we already got a session reference (ses refcount +1).
2398 * 2. Since we're in the context of adding a mount point, the end
2399 * result should be either:
2401 * a) a new tcon already allocated with refcount=1 (1 mount point) and
2402 * its session refcount incremented (1 new tcon). This +1 was
2403 * already done in (1).
2405 * b) an existing tcon with refcount+1 (add a mount point to it) and
2406 * identical ses refcount (no new tcon). Because of (1) we need to
2407 * decrement the ses refcount.
2409 static struct cifs_tcon *
2410 cifs_get_tcon(struct cifs_ses *ses, struct smb3_fs_context *ctx)
2413 struct cifs_tcon *tcon;
2415 tcon = cifs_find_tcon(ses, ctx);
2418 * tcon has refcount already incremented but we need to
2419 * decrement extra ses reference gotten by caller (case b)
2421 cifs_dbg(FYI, "Found match on UNC path\n");
2422 cifs_put_smb_ses(ses);
2426 if (!ses->server->ops->tree_connect) {
2431 tcon = tconInfoAlloc();
2437 if (ctx->snapshot_time) {
2438 if (ses->server->vals->protocol_id == 0) {
2440 "Use SMB2 or later for snapshot mount option\n");
2444 tcon->snapshot_time = ctx->snapshot_time;
2447 if (ctx->handle_timeout) {
2448 if (ses->server->vals->protocol_id == 0) {
2450 "Use SMB2.1 or later for handle timeout option\n");
2454 tcon->handle_timeout = ctx->handle_timeout;
2458 if (ctx->password) {
2459 tcon->password = kstrdup(ctx->password, GFP_KERNEL);
2460 if (!tcon->password) {
2467 if (ses->server->vals->protocol_id == 0) {
2469 "SMB3 or later required for encryption\n");
2472 } else if (tcon->ses->server->capabilities &
2473 SMB2_GLOBAL_CAP_ENCRYPTION)
2476 cifs_dbg(VFS, "Encryption is not supported on share\n");
2482 if (ctx->linux_ext) {
2483 if (ses->server->posix_ext_supported) {
2484 tcon->posix_extensions = true;
2485 pr_warn_once("SMB3.11 POSIX Extensions are experimental\n");
2486 } else if ((ses->server->vals->protocol_id == SMB311_PROT_ID) ||
2487 (strcmp(ses->server->vals->version_string,
2488 SMB3ANY_VERSION_STRING) == 0) ||
2489 (strcmp(ses->server->vals->version_string,
2490 SMBDEFAULT_VERSION_STRING) == 0)) {
2491 cifs_dbg(VFS, "Server does not support mounting with posix SMB3.11 extensions\n");
2495 cifs_dbg(VFS, "Check vers= mount option. SMB3.11 "
2496 "disabled but required for POSIX extensions\n");
2503 rc = ses->server->ops->tree_connect(xid, ses, ctx->UNC, tcon,
2506 cifs_dbg(FYI, "Tcon rc = %d\n", rc);
2510 tcon->use_persistent = false;
2511 /* check if SMB2 or later, CIFS does not support persistent handles */
2512 if (ctx->persistent) {
2513 if (ses->server->vals->protocol_id == 0) {
2515 "SMB3 or later required for persistent handles\n");
2518 } else if (ses->server->capabilities &
2519 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
2520 tcon->use_persistent = true;
2521 else /* persistent handles requested but not supported */ {
2523 "Persistent handles not supported on share\n");
2527 } else if ((tcon->capabilities & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY)
2528 && (ses->server->capabilities & SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
2529 && (ctx->nopersistent == false)) {
2530 cifs_dbg(FYI, "enabling persistent handles\n");
2531 tcon->use_persistent = true;
2532 } else if (ctx->resilient) {
2533 if (ses->server->vals->protocol_id == 0) {
2535 "SMB2.1 or later required for resilient handles\n");
2539 tcon->use_resilient = true;
2542 tcon->use_witness = false;
2543 if (IS_ENABLED(CONFIG_CIFS_SWN_UPCALL) && ctx->witness) {
2544 if (ses->server->vals->protocol_id >= SMB30_PROT_ID) {
2545 if (tcon->capabilities & SMB2_SHARE_CAP_CLUSTER) {
2547 * Set witness in use flag in first place
2548 * to retry registration in the echo task
2550 tcon->use_witness = true;
2551 /* And try to register immediately */
2552 rc = cifs_swn_register(tcon);
2554 cifs_dbg(VFS, "Failed to register for witness notifications: %d\n", rc);
2558 /* TODO: try to extend for non-cluster uses (eg multichannel) */
2559 cifs_dbg(VFS, "witness requested on mount but no CLUSTER capability on share\n");
2564 cifs_dbg(VFS, "SMB3 or later required for witness option\n");
2570 /* If the user really knows what they are doing they can override */
2571 if (tcon->share_flags & SMB2_SHAREFLAG_NO_CACHING) {
2573 cifs_dbg(VFS, "cache=ro requested on mount but NO_CACHING flag set on share\n");
2574 else if (ctx->cache_rw)
2575 cifs_dbg(VFS, "cache=singleclient requested on mount but NO_CACHING flag set on share\n");
2578 if (ctx->no_lease) {
2579 if (ses->server->vals->protocol_id == 0) {
2581 "SMB2 or later required for nolease option\n");
2585 tcon->no_lease = ctx->no_lease;
2589 * We can have only one retry value for a connection to a share so for
2590 * resources mounted more than once to the same server share the last
2591 * value passed in for the retry flag is used.
2593 tcon->retry = ctx->retry;
2594 tcon->nocase = ctx->nocase;
2595 tcon->broken_sparse_sup = ctx->no_sparse;
2596 if (ses->server->capabilities & SMB2_GLOBAL_CAP_DIRECTORY_LEASING)
2597 tcon->nohandlecache = ctx->nohandlecache;
2599 tcon->nohandlecache = true;
2600 tcon->nodelete = ctx->nodelete;
2601 tcon->local_lease = ctx->local_lease;
2602 INIT_LIST_HEAD(&tcon->pending_opens);
2604 /* schedule query interfaces poll */
2605 INIT_DELAYED_WORK(&tcon->query_interfaces,
2606 smb2_query_server_interfaces);
2607 queue_delayed_work(cifsiod_wq, &tcon->query_interfaces,
2608 (SMB_INTERFACE_POLL_INTERVAL * HZ));
2610 spin_lock(&cifs_tcp_ses_lock);
2611 list_add(&tcon->tcon_list, &ses->tcon_list);
2612 spin_unlock(&cifs_tcp_ses_lock);
2622 cifs_put_tlink(struct tcon_link *tlink)
2624 if (!tlink || IS_ERR(tlink))
2627 if (!atomic_dec_and_test(&tlink->tl_count) ||
2628 test_bit(TCON_LINK_IN_TREE, &tlink->tl_flags)) {
2629 tlink->tl_time = jiffies;
2633 if (!IS_ERR(tlink_tcon(tlink)))
2634 cifs_put_tcon(tlink_tcon(tlink));
2640 compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2642 struct cifs_sb_info *old = CIFS_SB(sb);
2643 struct cifs_sb_info *new = mnt_data->cifs_sb;
2644 unsigned int oldflags = old->mnt_cifs_flags & CIFS_MOUNT_MASK;
2645 unsigned int newflags = new->mnt_cifs_flags & CIFS_MOUNT_MASK;
2647 if ((sb->s_flags & CIFS_MS_MASK) != (mnt_data->flags & CIFS_MS_MASK))
2650 if (old->mnt_cifs_serverino_autodisabled)
2651 newflags &= ~CIFS_MOUNT_SERVER_INUM;
2653 if (oldflags != newflags)
2657 * We want to share sb only if we don't specify an r/wsize or
2658 * specified r/wsize is greater than or equal to existing one.
2660 if (new->ctx->wsize && new->ctx->wsize < old->ctx->wsize)
2663 if (new->ctx->rsize && new->ctx->rsize < old->ctx->rsize)
2666 if (!uid_eq(old->ctx->linux_uid, new->ctx->linux_uid) ||
2667 !gid_eq(old->ctx->linux_gid, new->ctx->linux_gid))
2670 if (old->ctx->file_mode != new->ctx->file_mode ||
2671 old->ctx->dir_mode != new->ctx->dir_mode)
2674 if (strcmp(old->local_nls->charset, new->local_nls->charset))
2677 if (old->ctx->acregmax != new->ctx->acregmax)
2679 if (old->ctx->acdirmax != new->ctx->acdirmax)
2681 if (old->ctx->closetimeo != new->ctx->closetimeo)
2688 match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2690 struct cifs_sb_info *old = CIFS_SB(sb);
2691 struct cifs_sb_info *new = mnt_data->cifs_sb;
2692 bool old_set = (old->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) &&
2694 bool new_set = (new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) &&
2697 if (old_set && new_set && !strcmp(new->prepath, old->prepath))
2699 else if (!old_set && !new_set)
2706 cifs_match_super(struct super_block *sb, void *data)
2708 struct cifs_mnt_data *mnt_data = data;
2709 struct smb3_fs_context *ctx;
2710 struct cifs_sb_info *cifs_sb;
2711 struct TCP_Server_Info *tcp_srv;
2712 struct cifs_ses *ses;
2713 struct cifs_tcon *tcon;
2714 struct tcon_link *tlink;
2717 spin_lock(&cifs_tcp_ses_lock);
2718 cifs_sb = CIFS_SB(sb);
2719 tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
2720 if (tlink == NULL) {
2721 /* can not match superblock if tlink were ever null */
2722 spin_unlock(&cifs_tcp_ses_lock);
2725 tcon = tlink_tcon(tlink);
2727 tcp_srv = ses->server;
2729 ctx = mnt_data->ctx;
2731 spin_lock(&tcp_srv->srv_lock);
2732 spin_lock(&ses->ses_lock);
2733 spin_lock(&tcon->tc_lock);
2734 if (!match_server(tcp_srv, ctx) ||
2735 !match_session(ses, ctx) ||
2736 !match_tcon(tcon, ctx) ||
2737 !match_prepath(sb, mnt_data)) {
2742 rc = compare_mount_options(sb, mnt_data);
2744 spin_unlock(&tcon->tc_lock);
2745 spin_unlock(&ses->ses_lock);
2746 spin_unlock(&tcp_srv->srv_lock);
2748 spin_unlock(&cifs_tcp_ses_lock);
2749 cifs_put_tlink(tlink);
2753 #ifdef CONFIG_DEBUG_LOCK_ALLOC
2754 static struct lock_class_key cifs_key[2];
2755 static struct lock_class_key cifs_slock_key[2];
2758 cifs_reclassify_socket4(struct socket *sock)
2760 struct sock *sk = sock->sk;
2761 BUG_ON(!sock_allow_reclassification(sk));
2762 sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS",
2763 &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]);
2767 cifs_reclassify_socket6(struct socket *sock)
2769 struct sock *sk = sock->sk;
2770 BUG_ON(!sock_allow_reclassification(sk));
2771 sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS",
2772 &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]);
2776 cifs_reclassify_socket4(struct socket *sock)
2781 cifs_reclassify_socket6(struct socket *sock)
2786 /* See RFC1001 section 14 on representation of Netbios names */
2787 static void rfc1002mangle(char *target, char *source, unsigned int length)
2791 for (i = 0, j = 0; i < (length); i++) {
2792 /* mask a nibble at a time and encode */
2793 target[j] = 'A' + (0x0F & (source[i] >> 4));
2794 target[j+1] = 'A' + (0x0F & source[i]);
2801 bind_socket(struct TCP_Server_Info *server)
2804 if (server->srcaddr.ss_family != AF_UNSPEC) {
2805 /* Bind to the specified local IP address */
2806 struct socket *socket = server->ssocket;
2807 rc = socket->ops->bind(socket,
2808 (struct sockaddr *) &server->srcaddr,
2809 sizeof(server->srcaddr));
2811 struct sockaddr_in *saddr4;
2812 struct sockaddr_in6 *saddr6;
2813 saddr4 = (struct sockaddr_in *)&server->srcaddr;
2814 saddr6 = (struct sockaddr_in6 *)&server->srcaddr;
2815 if (saddr6->sin6_family == AF_INET6)
2816 cifs_server_dbg(VFS, "Failed to bind to: %pI6c, error: %d\n",
2817 &saddr6->sin6_addr, rc);
2819 cifs_server_dbg(VFS, "Failed to bind to: %pI4, error: %d\n",
2820 &saddr4->sin_addr.s_addr, rc);
2827 ip_rfc1001_connect(struct TCP_Server_Info *server)
2831 * some servers require RFC1001 sessinit before sending
2832 * negprot - BB check reconnection in case where second
2833 * sessinit is sent but no second negprot
2835 struct rfc1002_session_packet *ses_init_buf;
2836 unsigned int req_noscope_len;
2837 struct smb_hdr *smb_buf;
2839 ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet),
2843 ses_init_buf->trailer.session_req.called_len = 32;
2845 if (server->server_RFC1001_name[0] != 0)
2846 rfc1002mangle(ses_init_buf->trailer.
2847 session_req.called_name,
2848 server->server_RFC1001_name,
2849 RFC1001_NAME_LEN_WITH_NULL);
2851 rfc1002mangle(ses_init_buf->trailer.
2852 session_req.called_name,
2853 DEFAULT_CIFS_CALLED_NAME,
2854 RFC1001_NAME_LEN_WITH_NULL);
2856 ses_init_buf->trailer.session_req.calling_len = 32;
2859 * calling name ends in null (byte 16) from old smb
2862 if (server->workstation_RFC1001_name[0] != 0)
2863 rfc1002mangle(ses_init_buf->trailer.
2864 session_req.calling_name,
2865 server->workstation_RFC1001_name,
2866 RFC1001_NAME_LEN_WITH_NULL);
2868 rfc1002mangle(ses_init_buf->trailer.
2869 session_req.calling_name,
2871 RFC1001_NAME_LEN_WITH_NULL);
2873 ses_init_buf->trailer.session_req.scope1 = 0;
2874 ses_init_buf->trailer.session_req.scope2 = 0;
2875 smb_buf = (struct smb_hdr *)ses_init_buf;
2877 /* sizeof RFC1002_SESSION_REQUEST with no scopes */
2878 req_noscope_len = sizeof(struct rfc1002_session_packet) - 2;
2880 /* == cpu_to_be32(0x81000044) */
2881 smb_buf->smb_buf_length =
2882 cpu_to_be32((RFC1002_SESSION_REQUEST << 24) | req_noscope_len);
2883 rc = smb_send(server, smb_buf, 0x44);
2884 kfree(ses_init_buf);
2886 * RFC1001 layer in at least one server
2887 * requires very short break before negprot
2888 * presumably because not expecting negprot
2889 * to follow so fast. This is a simple
2890 * solution that works without
2891 * complicating the code and causes no
2892 * significant slowing down on mount
2895 usleep_range(1000, 2000);
2898 * else the negprot may still work without this
2899 * even though malloc failed
2906 generic_ip_connect(struct TCP_Server_Info *server)
2911 struct socket *socket = server->ssocket;
2912 struct sockaddr *saddr;
2914 saddr = (struct sockaddr *) &server->dstaddr;
2916 if (server->dstaddr.ss_family == AF_INET6) {
2917 struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)&server->dstaddr;
2919 sport = ipv6->sin6_port;
2920 slen = sizeof(struct sockaddr_in6);
2922 cifs_dbg(FYI, "%s: connecting to [%pI6]:%d\n", __func__, &ipv6->sin6_addr,
2925 struct sockaddr_in *ipv4 = (struct sockaddr_in *)&server->dstaddr;
2927 sport = ipv4->sin_port;
2928 slen = sizeof(struct sockaddr_in);
2930 cifs_dbg(FYI, "%s: connecting to %pI4:%d\n", __func__, &ipv4->sin_addr,
2934 if (socket == NULL) {
2935 rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM,
2936 IPPROTO_TCP, &socket, 1);
2938 cifs_server_dbg(VFS, "Error %d creating socket\n", rc);
2939 server->ssocket = NULL;
2943 /* BB other socket options to set KEEPALIVE, NODELAY? */
2944 cifs_dbg(FYI, "Socket created\n");
2945 server->ssocket = socket;
2946 socket->sk->sk_allocation = GFP_NOFS;
2947 if (sfamily == AF_INET6)
2948 cifs_reclassify_socket6(socket);
2950 cifs_reclassify_socket4(socket);
2953 rc = bind_socket(server);
2958 * Eventually check for other socket options to change from
2959 * the default. sock_setsockopt not used because it expects
2962 socket->sk->sk_rcvtimeo = 7 * HZ;
2963 socket->sk->sk_sndtimeo = 5 * HZ;
2965 /* make the bufsizes depend on wsize/rsize and max requests */
2966 if (server->noautotune) {
2967 if (socket->sk->sk_sndbuf < (200 * 1024))
2968 socket->sk->sk_sndbuf = 200 * 1024;
2969 if (socket->sk->sk_rcvbuf < (140 * 1024))
2970 socket->sk->sk_rcvbuf = 140 * 1024;
2973 if (server->tcp_nodelay)
2974 tcp_sock_set_nodelay(socket->sk);
2976 cifs_dbg(FYI, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx\n",
2977 socket->sk->sk_sndbuf,
2978 socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo);
2980 rc = socket->ops->connect(socket, saddr, slen,
2981 server->noblockcnt ? O_NONBLOCK : 0);
2983 * When mounting SMB root file systems, we do not want to block in
2984 * connect. Otherwise bail out and then let cifs_reconnect() perform
2985 * reconnect failover - if possible.
2987 if (server->noblockcnt && rc == -EINPROGRESS)
2990 cifs_dbg(FYI, "Error %d connecting to server\n", rc);
2991 trace_smb3_connect_err(server->hostname, server->conn_id, &server->dstaddr, rc);
2992 sock_release(socket);
2993 server->ssocket = NULL;
2996 trace_smb3_connect_done(server->hostname, server->conn_id, &server->dstaddr);
2997 if (sport == htons(RFC1001_PORT))
2998 rc = ip_rfc1001_connect(server);
3004 ip_connect(struct TCP_Server_Info *server)
3007 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
3008 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
3010 if (server->dstaddr.ss_family == AF_INET6)
3011 sport = &addr6->sin6_port;
3013 sport = &addr->sin_port;
3018 /* try with 445 port at first */
3019 *sport = htons(CIFS_PORT);
3021 rc = generic_ip_connect(server);
3025 /* if it failed, try with 139 port */
3026 *sport = htons(RFC1001_PORT);
3029 return generic_ip_connect(server);
3032 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
3033 void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon,
3034 struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
3037 * If we are reconnecting then should we check to see if
3038 * any requested capabilities changed locally e.g. via
3039 * remount but we can not do much about it here
3040 * if they have (even if we could detect it by the following)
3041 * Perhaps we could add a backpointer to array of sb from tcon
3042 * or if we change to make all sb to same share the same
3043 * sb as NFS - then we only have one backpointer to sb.
3044 * What if we wanted to mount the server share twice once with
3045 * and once without posixacls or posix paths?
3047 __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
3049 if (ctx && ctx->no_linux_ext) {
3050 tcon->fsUnixInfo.Capability = 0;
3051 tcon->unix_ext = 0; /* Unix Extensions disabled */
3052 cifs_dbg(FYI, "Linux protocol extensions disabled\n");
3055 tcon->unix_ext = 1; /* Unix Extensions supported */
3057 if (!tcon->unix_ext) {
3058 cifs_dbg(FYI, "Unix extensions disabled so not set on reconnect\n");
3062 if (!CIFSSMBQFSUnixInfo(xid, tcon)) {
3063 __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
3064 cifs_dbg(FYI, "unix caps which server supports %lld\n", cap);
3066 * check for reconnect case in which we do not
3067 * want to change the mount behavior if we can avoid it
3071 * turn off POSIX ACL and PATHNAMES if not set
3072 * originally at mount time
3074 if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0)
3075 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
3076 if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
3077 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
3078 cifs_dbg(VFS, "POSIXPATH support change\n");
3079 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
3080 } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
3081 cifs_dbg(VFS, "possible reconnect error\n");
3082 cifs_dbg(VFS, "server disabled POSIX path support\n");
3086 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
3087 cifs_dbg(VFS, "per-share encryption not supported yet\n");
3089 cap &= CIFS_UNIX_CAP_MASK;
3090 if (ctx && ctx->no_psx_acl)
3091 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
3092 else if (CIFS_UNIX_POSIX_ACL_CAP & cap) {
3093 cifs_dbg(FYI, "negotiated posix acl support\n");
3095 cifs_sb->mnt_cifs_flags |=
3096 CIFS_MOUNT_POSIXACL;
3099 if (ctx && ctx->posix_paths == 0)
3100 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
3101 else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
3102 cifs_dbg(FYI, "negotiate posix pathnames\n");
3104 cifs_sb->mnt_cifs_flags |=
3105 CIFS_MOUNT_POSIX_PATHS;
3108 cifs_dbg(FYI, "Negotiate caps 0x%x\n", (int)cap);
3109 #ifdef CONFIG_CIFS_DEBUG2
3110 if (cap & CIFS_UNIX_FCNTL_CAP)
3111 cifs_dbg(FYI, "FCNTL cap\n");
3112 if (cap & CIFS_UNIX_EXTATTR_CAP)
3113 cifs_dbg(FYI, "EXTATTR cap\n");
3114 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
3115 cifs_dbg(FYI, "POSIX path cap\n");
3116 if (cap & CIFS_UNIX_XATTR_CAP)
3117 cifs_dbg(FYI, "XATTR cap\n");
3118 if (cap & CIFS_UNIX_POSIX_ACL_CAP)
3119 cifs_dbg(FYI, "POSIX ACL cap\n");
3120 if (cap & CIFS_UNIX_LARGE_READ_CAP)
3121 cifs_dbg(FYI, "very large read cap\n");
3122 if (cap & CIFS_UNIX_LARGE_WRITE_CAP)
3123 cifs_dbg(FYI, "very large write cap\n");
3124 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)
3125 cifs_dbg(FYI, "transport encryption cap\n");
3126 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
3127 cifs_dbg(FYI, "mandatory transport encryption cap\n");
3128 #endif /* CIFS_DEBUG2 */
3129 if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) {
3131 cifs_dbg(FYI, "resetting capabilities failed\n");
3133 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");
3138 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
3140 int cifs_setup_cifs_sb(struct cifs_sb_info *cifs_sb)
3142 struct smb3_fs_context *ctx = cifs_sb->ctx;
3144 INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks);
3146 spin_lock_init(&cifs_sb->tlink_tree_lock);
3147 cifs_sb->tlink_tree = RB_ROOT;
3149 cifs_dbg(FYI, "file mode: %04ho dir mode: %04ho\n",
3150 ctx->file_mode, ctx->dir_mode);
3152 /* this is needed for ASCII cp to Unicode converts */
3153 if (ctx->iocharset == NULL) {
3154 /* load_nls_default cannot return null */
3155 cifs_sb->local_nls = load_nls_default();
3157 cifs_sb->local_nls = load_nls(ctx->iocharset);
3158 if (cifs_sb->local_nls == NULL) {
3159 cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n",
3164 ctx->local_nls = cifs_sb->local_nls;
3166 smb3_update_mnt_flags(cifs_sb);
3169 cifs_dbg(FYI, "mounting share using direct i/o\n");
3170 if (ctx->cache_ro) {
3171 cifs_dbg(VFS, "mounting share with read only caching. Ensure that the share will not be modified while in use.\n");
3172 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RO_CACHE;
3173 } else if (ctx->cache_rw) {
3174 cifs_dbg(VFS, "mounting share in single client RW caching mode. Ensure that no other systems will be accessing the share.\n");
3175 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_RO_CACHE |
3176 CIFS_MOUNT_RW_CACHE);
3179 if ((ctx->cifs_acl) && (ctx->dynperm))
3180 cifs_dbg(VFS, "mount option dynperm ignored if cifsacl mount option supported\n");
3183 cifs_sb->prepath = kstrdup(ctx->prepath, GFP_KERNEL);
3184 if (cifs_sb->prepath == NULL)
3186 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3192 /* Release all succeed connections */
3193 static inline void mount_put_conns(struct mount_ctx *mnt_ctx)
3198 cifs_put_tcon(mnt_ctx->tcon);
3199 else if (mnt_ctx->ses)
3200 cifs_put_smb_ses(mnt_ctx->ses);
3201 else if (mnt_ctx->server)
3202 cifs_put_tcp_session(mnt_ctx->server, 0);
3203 mnt_ctx->cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_POSIX_PATHS;
3204 free_xid(mnt_ctx->xid);
3207 /* Get connections for tcp, ses and tcon */
3208 static int mount_get_conns(struct mount_ctx *mnt_ctx)
3211 struct TCP_Server_Info *server = NULL;
3212 struct cifs_ses *ses = NULL;
3213 struct cifs_tcon *tcon = NULL;
3214 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3215 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3220 /* get a reference to a tcp session */
3221 server = cifs_get_tcp_session(ctx, NULL);
3222 if (IS_ERR(server)) {
3223 rc = PTR_ERR(server);
3228 /* get a reference to a SMB session */
3229 ses = cifs_get_smb_ses(server, ctx);
3236 if ((ctx->persistent == true) && (!(ses->server->capabilities &
3237 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES))) {
3238 cifs_server_dbg(VFS, "persistent handles not supported by server\n");
3243 /* search for existing tcon to this server share */
3244 tcon = cifs_get_tcon(ses, ctx);
3251 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
3252 if (tcon->posix_extensions)
3253 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS;
3255 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
3256 /* tell server which Unix caps we support */
3257 if (cap_unix(tcon->ses)) {
3259 * reset of caps checks mount to see if unix extensions disabled
3260 * for just this mount.
3262 reset_cifs_unix_caps(xid, tcon, cifs_sb, ctx);
3263 spin_lock(&tcon->ses->server->srv_lock);
3264 if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) &&
3265 (le64_to_cpu(tcon->fsUnixInfo.Capability) &
3266 CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)) {
3267 spin_unlock(&tcon->ses->server->srv_lock);
3271 spin_unlock(&tcon->ses->server->srv_lock);
3273 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
3274 tcon->unix_ext = 0; /* server does not support them */
3276 /* do not care if a following call succeed - informational */
3277 if (!tcon->pipe && server->ops->qfs_tcon) {
3278 server->ops->qfs_tcon(xid, tcon, cifs_sb);
3279 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE) {
3280 if (tcon->fsDevInfo.DeviceCharacteristics &
3281 cpu_to_le32(FILE_READ_ONLY_DEVICE))
3282 cifs_dbg(VFS, "mounted to read only share\n");
3283 else if ((cifs_sb->mnt_cifs_flags &
3284 CIFS_MOUNT_RW_CACHE) == 0)
3285 cifs_dbg(VFS, "read only mount of RW share\n");
3286 /* no need to log a RW mount of a typical RW share */
3291 * Clamp the rsize/wsize mount arguments if they are too big for the server
3292 * and set the rsize/wsize to the negotiated values if not passed in by
3295 if ((cifs_sb->ctx->wsize == 0) ||
3296 (cifs_sb->ctx->wsize > server->ops->negotiate_wsize(tcon, ctx)))
3297 cifs_sb->ctx->wsize = server->ops->negotiate_wsize(tcon, ctx);
3298 if ((cifs_sb->ctx->rsize == 0) ||
3299 (cifs_sb->ctx->rsize > server->ops->negotiate_rsize(tcon, ctx)))
3300 cifs_sb->ctx->rsize = server->ops->negotiate_rsize(tcon, ctx);
3303 * The cookie is initialized from volume info returned above.
3304 * Inside cifs_fscache_get_super_cookie it checks
3305 * that we do not get super cookie twice.
3307 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE)
3308 cifs_fscache_get_super_cookie(tcon);
3311 mnt_ctx->server = server;
3313 mnt_ctx->tcon = tcon;
3319 static int mount_setup_tlink(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses,
3320 struct cifs_tcon *tcon)
3322 struct tcon_link *tlink;
3324 /* hang the tcon off of the superblock */
3325 tlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
3329 tlink->tl_uid = ses->linux_uid;
3330 tlink->tl_tcon = tcon;
3331 tlink->tl_time = jiffies;
3332 set_bit(TCON_LINK_MASTER, &tlink->tl_flags);
3333 set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
3335 cifs_sb->master_tlink = tlink;
3336 spin_lock(&cifs_sb->tlink_tree_lock);
3337 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
3338 spin_unlock(&cifs_sb->tlink_tree_lock);
3340 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
3345 #ifdef CONFIG_CIFS_DFS_UPCALL
3346 /* Get unique dfs connections */
3347 static int mount_get_dfs_conns(struct mount_ctx *mnt_ctx)
3351 mnt_ctx->fs_ctx->nosharesock = true;
3352 rc = mount_get_conns(mnt_ctx);
3353 if (mnt_ctx->server) {
3354 cifs_dbg(FYI, "%s: marking tcp session as a dfs connection\n", __func__);
3355 spin_lock(&mnt_ctx->server->srv_lock);
3356 mnt_ctx->server->is_dfs_conn = true;
3357 spin_unlock(&mnt_ctx->server->srv_lock);
3363 * cifs_build_path_to_root returns full path to root when we do not have an
3364 * existing connection (tcon)
3367 build_unc_path_to_root(const struct smb3_fs_context *ctx,
3368 const struct cifs_sb_info *cifs_sb, bool useppath)
3370 char *full_path, *pos;
3371 unsigned int pplen = useppath && ctx->prepath ?
3372 strlen(ctx->prepath) + 1 : 0;
3373 unsigned int unc_len = strnlen(ctx->UNC, MAX_TREE_SIZE + 1);
3375 if (unc_len > MAX_TREE_SIZE)
3376 return ERR_PTR(-EINVAL);
3378 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL);
3379 if (full_path == NULL)
3380 return ERR_PTR(-ENOMEM);
3382 memcpy(full_path, ctx->UNC, unc_len);
3383 pos = full_path + unc_len;
3386 *pos = CIFS_DIR_SEP(cifs_sb);
3387 memcpy(pos + 1, ctx->prepath, pplen);
3391 *pos = '\0'; /* add trailing null */
3392 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
3393 cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path);
3398 * expand_dfs_referral - Update cifs_sb from dfs referral path
3400 * cifs_sb->ctx->mount_options will be (re-)allocated to a string containing updated options for the
3401 * submount. Otherwise it will be left untouched.
3403 static int expand_dfs_referral(struct mount_ctx *mnt_ctx, const char *full_path,
3404 struct dfs_info3_param *referral)
3407 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3408 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3409 char *fake_devname = NULL, *mdata = NULL;
3411 mdata = cifs_compose_mount_options(cifs_sb->ctx->mount_options, full_path + 1, referral,
3413 if (IS_ERR(mdata)) {
3414 rc = PTR_ERR(mdata);
3418 * We can not clear out the whole structure since we no longer have an explicit
3419 * function to parse a mount-string. Instead we need to clear out the individual
3420 * fields that are no longer valid.
3422 kfree(ctx->prepath);
3423 ctx->prepath = NULL;
3424 rc = cifs_setup_volume_info(ctx, mdata, fake_devname);
3426 kfree(fake_devname);
3427 kfree(cifs_sb->ctx->mount_options);
3428 cifs_sb->ctx->mount_options = mdata;
3434 /* TODO: all callers to this are broken. We are not parsing mount_options here
3435 * we should pass a clone of the original context?
3438 cifs_setup_volume_info(struct smb3_fs_context *ctx, const char *mntopts, const char *devname)
3443 cifs_dbg(FYI, "%s: devname=%s\n", __func__, devname);
3444 rc = smb3_parse_devname(devname, ctx);
3446 cifs_dbg(VFS, "%s: failed to parse %s: %d\n", __func__, devname, rc);
3454 rc = smb3_parse_opt(mntopts, "ip", &ip);
3456 cifs_dbg(VFS, "%s: failed to parse ip options: %d\n", __func__, rc);
3460 rc = cifs_convert_address((struct sockaddr *)&ctx->dstaddr, ip, strlen(ip));
3463 cifs_dbg(VFS, "%s: failed to convert ip address\n", __func__);
3468 if (ctx->nullauth) {
3469 cifs_dbg(FYI, "Anonymous login\n");
3470 kfree(ctx->username);
3471 ctx->username = NULL;
3472 } else if (ctx->username) {
3473 /* BB fixme parse for domain name here */
3474 cifs_dbg(FYI, "Username: %s\n", ctx->username);
3476 cifs_dbg(VFS, "No username specified\n");
3477 /* In userspace mount helper we can get user name from alternate
3478 locations such as env variables and files on disk */
3486 cifs_are_all_path_components_accessible(struct TCP_Server_Info *server,
3488 struct cifs_tcon *tcon,
3489 struct cifs_sb_info *cifs_sb,
3496 int skip = added_treename ? 1 : 0;
3498 sep = CIFS_DIR_SEP(cifs_sb);
3501 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, "");
3503 /* skip separators */
3508 /* next separator */
3509 while (*s && *s != sep)
3512 * if the treename is added, we then have to skip the first
3513 * part within the separators
3520 * temporarily null-terminate the path at the end of
3521 * the current component
3525 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3533 * Check if path is remote (i.e. a DFS share).
3535 * Return -EREMOTE if it is, otherwise 0 or -errno.
3537 static int is_path_remote(struct mount_ctx *mnt_ctx)
3540 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3541 struct TCP_Server_Info *server = mnt_ctx->server;
3542 unsigned int xid = mnt_ctx->xid;
3543 struct cifs_tcon *tcon = mnt_ctx->tcon;
3544 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3546 #ifdef CONFIG_CIFS_DFS_UPCALL
3547 bool nodfs = cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS;
3550 if (!server->ops->is_path_accessible)
3554 * cifs_build_path_to_root works only when we have a valid tcon
3556 full_path = cifs_build_path_to_root(ctx, cifs_sb, tcon,
3557 tcon->Flags & SMB_SHARE_IS_IN_DFS);
3558 if (full_path == NULL)
3561 cifs_dbg(FYI, "%s: full_path: %s\n", __func__, full_path);
3563 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3565 #ifdef CONFIG_CIFS_DFS_UPCALL
3572 /* path *might* exist with non-ASCII characters in DFS root
3573 * try again with full path (only if nodfs is not set) */
3574 if (rc == -ENOENT && is_tcon_dfs(tcon))
3575 rc = cifs_dfs_query_info_nonascii_quirk(xid, tcon, cifs_sb,
3578 if (rc != 0 && rc != -EREMOTE)
3581 if (rc != -EREMOTE) {
3582 rc = cifs_are_all_path_components_accessible(server, xid, tcon,
3583 cifs_sb, full_path, tcon->Flags & SMB_SHARE_IS_IN_DFS);
3585 cifs_server_dbg(VFS, "cannot query dirs between root and final path, enabling CIFS_MOUNT_USE_PREFIX_PATH\n");
3586 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3596 #ifdef CONFIG_CIFS_DFS_UPCALL
3597 static void set_root_ses(struct mount_ctx *mnt_ctx)
3600 spin_lock(&cifs_tcp_ses_lock);
3601 mnt_ctx->ses->ses_count++;
3602 spin_unlock(&cifs_tcp_ses_lock);
3603 dfs_cache_add_refsrv_session(&mnt_ctx->mount_id, mnt_ctx->ses);
3605 mnt_ctx->root_ses = mnt_ctx->ses;
3608 static int is_dfs_mount(struct mount_ctx *mnt_ctx, bool *isdfs, struct dfs_cache_tgt_list *root_tl)
3611 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3612 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3616 rc = mount_get_conns(mnt_ctx);
3618 * If called with 'nodfs' mount option, then skip DFS resolving. Otherwise unconditionally
3619 * try to get an DFS referral (even cached) to determine whether it is an DFS mount.
3621 * Skip prefix path to provide support for DFS referrals from w2k8 servers which don't seem
3622 * to respond with PATH_NOT_COVERED to requests that include the prefix.
3624 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS) ||
3625 dfs_cache_find(mnt_ctx->xid, mnt_ctx->ses, cifs_sb->local_nls, cifs_remap(cifs_sb),
3626 ctx->UNC + 1, NULL, root_tl)) {
3629 /* Check if it is fully accessible and then mount it */
3630 rc = is_path_remote(mnt_ctx);
3633 else if (rc != -EREMOTE)
3639 static int connect_dfs_target(struct mount_ctx *mnt_ctx, const char *full_path,
3640 const char *ref_path, struct dfs_cache_tgt_iterator *tit)
3643 struct dfs_info3_param ref = {};
3644 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3645 char *oldmnt = cifs_sb->ctx->mount_options;
3647 cifs_dbg(FYI, "%s: full_path=%s ref_path=%s target=%s\n", __func__, full_path, ref_path,
3648 dfs_cache_get_tgt_name(tit));
3650 rc = dfs_cache_get_tgt_referral(ref_path, tit, &ref);
3654 rc = expand_dfs_referral(mnt_ctx, full_path, &ref);
3658 /* Connect to new target only if we were redirected (e.g. mount options changed) */
3659 if (oldmnt != cifs_sb->ctx->mount_options) {
3660 mount_put_conns(mnt_ctx);
3661 rc = mount_get_dfs_conns(mnt_ctx);
3664 if (cifs_is_referral_server(mnt_ctx->tcon, &ref))
3665 set_root_ses(mnt_ctx);
3666 rc = dfs_cache_update_tgthint(mnt_ctx->xid, mnt_ctx->root_ses, cifs_sb->local_nls,
3667 cifs_remap(cifs_sb), ref_path, tit);
3671 free_dfs_info_param(&ref);
3675 static int connect_dfs_root(struct mount_ctx *mnt_ctx, struct dfs_cache_tgt_list *root_tl)
3679 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3680 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3681 struct dfs_cache_tgt_iterator *tit;
3683 /* Put initial connections as they might be shared with other mounts. We need unique dfs
3684 * connections per mount to properly failover, so mount_get_dfs_conns() must be used from
3687 mount_put_conns(mnt_ctx);
3688 mount_get_dfs_conns(mnt_ctx);
3689 set_root_ses(mnt_ctx);
3691 full_path = build_unc_path_to_root(ctx, cifs_sb, true);
3692 if (IS_ERR(full_path))
3693 return PTR_ERR(full_path);
3695 mnt_ctx->origin_fullpath = dfs_cache_canonical_path(ctx->UNC, cifs_sb->local_nls,
3696 cifs_remap(cifs_sb));
3697 if (IS_ERR(mnt_ctx->origin_fullpath)) {
3698 rc = PTR_ERR(mnt_ctx->origin_fullpath);
3699 mnt_ctx->origin_fullpath = NULL;
3703 /* Try all dfs root targets */
3704 for (rc = -ENOENT, tit = dfs_cache_get_tgt_iterator(root_tl);
3705 tit; tit = dfs_cache_get_next_tgt(root_tl, tit)) {
3706 rc = connect_dfs_target(mnt_ctx, full_path, mnt_ctx->origin_fullpath + 1, tit);
3708 mnt_ctx->leaf_fullpath = kstrdup(mnt_ctx->origin_fullpath, GFP_KERNEL);
3709 if (!mnt_ctx->leaf_fullpath)
3720 static int __follow_dfs_link(struct mount_ctx *mnt_ctx)
3723 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3724 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3726 struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl);
3727 struct dfs_cache_tgt_iterator *tit;
3729 full_path = build_unc_path_to_root(ctx, cifs_sb, true);
3730 if (IS_ERR(full_path))
3731 return PTR_ERR(full_path);
3733 kfree(mnt_ctx->leaf_fullpath);
3734 mnt_ctx->leaf_fullpath = dfs_cache_canonical_path(full_path, cifs_sb->local_nls,
3735 cifs_remap(cifs_sb));
3736 if (IS_ERR(mnt_ctx->leaf_fullpath)) {
3737 rc = PTR_ERR(mnt_ctx->leaf_fullpath);
3738 mnt_ctx->leaf_fullpath = NULL;
3742 /* Get referral from dfs link */
3743 rc = dfs_cache_find(mnt_ctx->xid, mnt_ctx->root_ses, cifs_sb->local_nls,
3744 cifs_remap(cifs_sb), mnt_ctx->leaf_fullpath + 1, NULL, &tl);
3748 /* Try all dfs link targets. If an I/O fails from currently connected DFS target with an
3749 * error other than STATUS_PATH_NOT_COVERED (-EREMOTE), then retry it from other targets as
3750 * specified in MS-DFSC "3.1.5.2 I/O Operation to Target Fails with an Error Other Than
3751 * STATUS_PATH_NOT_COVERED."
3753 for (rc = -ENOENT, tit = dfs_cache_get_tgt_iterator(&tl);
3754 tit; tit = dfs_cache_get_next_tgt(&tl, tit)) {
3755 rc = connect_dfs_target(mnt_ctx, full_path, mnt_ctx->leaf_fullpath + 1, tit);
3757 rc = is_path_remote(mnt_ctx);
3758 if (!rc || rc == -EREMOTE)
3765 dfs_cache_free_tgts(&tl);
3769 static int follow_dfs_link(struct mount_ctx *mnt_ctx)
3772 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3773 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3777 full_path = build_unc_path_to_root(ctx, cifs_sb, true);
3778 if (IS_ERR(full_path))
3779 return PTR_ERR(full_path);
3781 kfree(mnt_ctx->origin_fullpath);
3782 mnt_ctx->origin_fullpath = dfs_cache_canonical_path(full_path, cifs_sb->local_nls,
3783 cifs_remap(cifs_sb));
3786 if (IS_ERR(mnt_ctx->origin_fullpath)) {
3787 rc = PTR_ERR(mnt_ctx->origin_fullpath);
3788 mnt_ctx->origin_fullpath = NULL;
3793 rc = __follow_dfs_link(mnt_ctx);
3794 if (!rc || rc != -EREMOTE)
3796 } while (rc = -ELOOP, ++num_links < MAX_NESTED_LINKS);
3801 /* Set up DFS referral paths for failover */
3802 static void setup_server_referral_paths(struct mount_ctx *mnt_ctx)
3804 struct TCP_Server_Info *server = mnt_ctx->server;
3806 mutex_lock(&server->refpath_lock);
3807 server->origin_fullpath = mnt_ctx->origin_fullpath;
3808 server->leaf_fullpath = mnt_ctx->leaf_fullpath;
3809 server->current_fullpath = mnt_ctx->leaf_fullpath;
3810 mutex_unlock(&server->refpath_lock);
3811 mnt_ctx->origin_fullpath = mnt_ctx->leaf_fullpath = NULL;
3814 int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
3817 struct mount_ctx mnt_ctx = { .cifs_sb = cifs_sb, .fs_ctx = ctx, };
3818 struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl);
3821 rc = is_dfs_mount(&mnt_ctx, &isdfs, &tl);
3827 /* proceed as DFS mount */
3828 uuid_gen(&mnt_ctx.mount_id);
3829 rc = connect_dfs_root(&mnt_ctx, &tl);
3830 dfs_cache_free_tgts(&tl);
3835 rc = is_path_remote(&mnt_ctx);
3837 rc = follow_dfs_link(&mnt_ctx);
3841 setup_server_referral_paths(&mnt_ctx);
3843 * After reconnecting to a different server, unique ids won't match anymore, so we disable
3844 * serverino. This prevents dentry revalidation to think the dentry are stale (ESTALE).
3846 cifs_autodisable_serverino(cifs_sb);
3848 * Force the use of prefix path to support failover on DFS paths that resolve to targets
3849 * that have different prefix paths.
3851 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3852 kfree(cifs_sb->prepath);
3853 cifs_sb->prepath = ctx->prepath;
3854 ctx->prepath = NULL;
3855 uuid_copy(&cifs_sb->dfs_mount_id, &mnt_ctx.mount_id);
3858 free_xid(mnt_ctx.xid);
3859 cifs_try_adding_channels(cifs_sb, mnt_ctx.ses);
3860 return mount_setup_tlink(cifs_sb, mnt_ctx.ses, mnt_ctx.tcon);
3863 dfs_cache_put_refsrv_sessions(&mnt_ctx.mount_id);
3864 kfree(mnt_ctx.origin_fullpath);
3865 kfree(mnt_ctx.leaf_fullpath);
3866 mount_put_conns(&mnt_ctx);
3870 int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
3873 struct mount_ctx mnt_ctx = { .cifs_sb = cifs_sb, .fs_ctx = ctx, };
3875 rc = mount_get_conns(&mnt_ctx);
3880 rc = is_path_remote(&mnt_ctx);
3887 free_xid(mnt_ctx.xid);
3888 return mount_setup_tlink(cifs_sb, mnt_ctx.ses, mnt_ctx.tcon);
3891 mount_put_conns(&mnt_ctx);
3897 * Issue a TREE_CONNECT request.
3900 CIFSTCon(const unsigned int xid, struct cifs_ses *ses,
3901 const char *tree, struct cifs_tcon *tcon,
3902 const struct nls_table *nls_codepage)
3904 struct smb_hdr *smb_buffer;
3905 struct smb_hdr *smb_buffer_response;
3908 unsigned char *bcc_ptr;
3911 __u16 bytes_left, count;
3916 smb_buffer = cifs_buf_get();
3917 if (smb_buffer == NULL)
3920 smb_buffer_response = smb_buffer;
3922 header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX,
3923 NULL /*no tid */ , 4 /*wct */ );
3925 smb_buffer->Mid = get_next_mid(ses->server);
3926 smb_buffer->Uid = ses->Suid;
3927 pSMB = (TCONX_REQ *) smb_buffer;
3928 pSMBr = (TCONX_RSP *) smb_buffer_response;
3930 pSMB->AndXCommand = 0xFF;
3931 pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO);
3932 bcc_ptr = &pSMB->Password[0];
3934 pSMB->PasswordLength = cpu_to_le16(1); /* minimum */
3935 *bcc_ptr = 0; /* password is null byte */
3936 bcc_ptr++; /* skip password */
3937 /* already aligned so no need to do it below */
3939 if (ses->server->sign)
3940 smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
3942 if (ses->capabilities & CAP_STATUS32) {
3943 smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS;
3945 if (ses->capabilities & CAP_DFS) {
3946 smb_buffer->Flags2 |= SMBFLG2_DFS;
3948 if (ses->capabilities & CAP_UNICODE) {
3949 smb_buffer->Flags2 |= SMBFLG2_UNICODE;
3951 cifs_strtoUTF16((__le16 *) bcc_ptr, tree,
3952 6 /* max utf8 char length in bytes */ *
3953 (/* server len*/ + 256 /* share len */), nls_codepage);
3954 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */
3955 bcc_ptr += 2; /* skip trailing null */
3956 } else { /* ASCII */
3957 strcpy(bcc_ptr, tree);
3958 bcc_ptr += strlen(tree) + 1;
3960 strcpy(bcc_ptr, "?????");
3961 bcc_ptr += strlen("?????");
3963 count = bcc_ptr - &pSMB->Password[0];
3964 be32_add_cpu(&pSMB->hdr.smb_buf_length, count);
3965 pSMB->ByteCount = cpu_to_le16(count);
3967 rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length,
3970 /* above now done in SendReceive */
3974 tcon->tid = smb_buffer_response->Tid;
3975 bcc_ptr = pByteArea(smb_buffer_response);
3976 bytes_left = get_bcc(smb_buffer_response);
3977 length = strnlen(bcc_ptr, bytes_left - 2);
3978 if (smb_buffer->Flags2 & SMBFLG2_UNICODE)
3984 /* skip service field (NB: this field is always ASCII) */
3986 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') &&
3987 (bcc_ptr[2] == 'C')) {
3988 cifs_dbg(FYI, "IPC connection\n");
3992 } else if (length == 2) {
3993 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) {
3994 /* the most common case */
3995 cifs_dbg(FYI, "disk share connection\n");
3998 bcc_ptr += length + 1;
3999 bytes_left -= (length + 1);
4000 strscpy(tcon->tree_name, tree, sizeof(tcon->tree_name));
4002 /* mostly informational -- no need to fail on error here */
4003 kfree(tcon->nativeFileSystem);
4004 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr,
4005 bytes_left, is_unicode,
4008 cifs_dbg(FYI, "nativeFileSystem=%s\n", tcon->nativeFileSystem);
4010 if ((smb_buffer_response->WordCount == 3) ||
4011 (smb_buffer_response->WordCount == 7))
4012 /* field is in same location */
4013 tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport);
4016 cifs_dbg(FYI, "Tcon flags: 0x%x\n", tcon->Flags);
4019 cifs_buf_release(smb_buffer);
4023 static void delayed_free(struct rcu_head *p)
4025 struct cifs_sb_info *cifs_sb = container_of(p, struct cifs_sb_info, rcu);
4027 unload_nls(cifs_sb->local_nls);
4028 smb3_cleanup_fs_context(cifs_sb->ctx);
4033 cifs_umount(struct cifs_sb_info *cifs_sb)
4035 struct rb_root *root = &cifs_sb->tlink_tree;
4036 struct rb_node *node;
4037 struct tcon_link *tlink;
4039 cancel_delayed_work_sync(&cifs_sb->prune_tlinks);
4041 spin_lock(&cifs_sb->tlink_tree_lock);
4042 while ((node = rb_first(root))) {
4043 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
4044 cifs_get_tlink(tlink);
4045 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4046 rb_erase(node, root);
4048 spin_unlock(&cifs_sb->tlink_tree_lock);
4049 cifs_put_tlink(tlink);
4050 spin_lock(&cifs_sb->tlink_tree_lock);
4052 spin_unlock(&cifs_sb->tlink_tree_lock);
4054 kfree(cifs_sb->prepath);
4055 #ifdef CONFIG_CIFS_DFS_UPCALL
4056 dfs_cache_put_refsrv_sessions(&cifs_sb->dfs_mount_id);
4058 call_rcu(&cifs_sb->rcu, delayed_free);
4062 cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses,
4063 struct TCP_Server_Info *server)
4067 if (!server->ops->need_neg || !server->ops->negotiate)
4070 /* only send once per connect */
4071 spin_lock(&server->srv_lock);
4072 if (!server->ops->need_neg(server) ||
4073 server->tcpStatus != CifsNeedNegotiate) {
4074 spin_unlock(&server->srv_lock);
4077 server->tcpStatus = CifsInNegotiate;
4078 spin_unlock(&server->srv_lock);
4080 rc = server->ops->negotiate(xid, ses, server);
4082 spin_lock(&server->srv_lock);
4083 if (server->tcpStatus == CifsInNegotiate)
4084 server->tcpStatus = CifsGood;
4087 spin_unlock(&server->srv_lock);
4089 spin_lock(&server->srv_lock);
4090 if (server->tcpStatus == CifsInNegotiate)
4091 server->tcpStatus = CifsNeedNegotiate;
4092 spin_unlock(&server->srv_lock);
4099 cifs_setup_session(const unsigned int xid, struct cifs_ses *ses,
4100 struct TCP_Server_Info *server,
4101 struct nls_table *nls_info)
4104 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
4105 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
4106 bool is_binding = false;
4108 spin_lock(&ses->ses_lock);
4109 if (server->dstaddr.ss_family == AF_INET6)
4110 scnprintf(ses->ip_addr, sizeof(ses->ip_addr), "%pI6", &addr6->sin6_addr);
4112 scnprintf(ses->ip_addr, sizeof(ses->ip_addr), "%pI4", &addr->sin_addr);
4114 if (ses->ses_status != SES_GOOD &&
4115 ses->ses_status != SES_NEW &&
4116 ses->ses_status != SES_NEED_RECON) {
4117 spin_unlock(&ses->ses_lock);
4121 /* only send once per connect */
4122 spin_lock(&ses->chan_lock);
4123 if (CIFS_ALL_CHANS_GOOD(ses) ||
4124 cifs_chan_in_reconnect(ses, server)) {
4125 spin_unlock(&ses->chan_lock);
4126 spin_unlock(&ses->ses_lock);
4129 is_binding = !CIFS_ALL_CHANS_NEED_RECONNECT(ses);
4130 cifs_chan_set_in_reconnect(ses, server);
4131 spin_unlock(&ses->chan_lock);
4134 ses->ses_status = SES_IN_SETUP;
4135 spin_unlock(&ses->ses_lock);
4138 ses->capabilities = server->capabilities;
4139 if (!linuxExtEnabled)
4140 ses->capabilities &= (~server->vals->cap_unix);
4142 if (ses->auth_key.response) {
4143 cifs_dbg(FYI, "Free previous auth_key.response = %p\n",
4144 ses->auth_key.response);
4145 kfree_sensitive(ses->auth_key.response);
4146 ses->auth_key.response = NULL;
4147 ses->auth_key.len = 0;
4151 cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n",
4152 server->sec_mode, server->capabilities, server->timeAdj);
4154 if (server->ops->sess_setup)
4155 rc = server->ops->sess_setup(xid, ses, server, nls_info);
4158 cifs_server_dbg(VFS, "Send error in SessSetup = %d\n", rc);
4159 spin_lock(&ses->ses_lock);
4160 if (ses->ses_status == SES_IN_SETUP)
4161 ses->ses_status = SES_NEED_RECON;
4162 spin_lock(&ses->chan_lock);
4163 cifs_chan_clear_in_reconnect(ses, server);
4164 spin_unlock(&ses->chan_lock);
4165 spin_unlock(&ses->ses_lock);
4167 spin_lock(&ses->ses_lock);
4168 if (ses->ses_status == SES_IN_SETUP)
4169 ses->ses_status = SES_GOOD;
4170 spin_lock(&ses->chan_lock);
4171 cifs_chan_clear_in_reconnect(ses, server);
4172 cifs_chan_clear_need_reconnect(ses, server);
4173 spin_unlock(&ses->chan_lock);
4174 spin_unlock(&ses->ses_lock);
4181 cifs_set_vol_auth(struct smb3_fs_context *ctx, struct cifs_ses *ses)
4183 ctx->sectype = ses->sectype;
4185 /* krb5 is special, since we don't need username or pw */
4186 if (ctx->sectype == Kerberos)
4189 return cifs_set_cifscreds(ctx, ses);
4192 static struct cifs_tcon *
4193 cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid)
4196 struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb);
4197 struct cifs_ses *ses;
4198 struct cifs_tcon *tcon = NULL;
4199 struct smb3_fs_context *ctx;
4201 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
4203 return ERR_PTR(-ENOMEM);
4205 ctx->local_nls = cifs_sb->local_nls;
4206 ctx->linux_uid = fsuid;
4207 ctx->cred_uid = fsuid;
4208 ctx->UNC = master_tcon->tree_name;
4209 ctx->retry = master_tcon->retry;
4210 ctx->nocase = master_tcon->nocase;
4211 ctx->nohandlecache = master_tcon->nohandlecache;
4212 ctx->local_lease = master_tcon->local_lease;
4213 ctx->no_lease = master_tcon->no_lease;
4214 ctx->resilient = master_tcon->use_resilient;
4215 ctx->persistent = master_tcon->use_persistent;
4216 ctx->handle_timeout = master_tcon->handle_timeout;
4217 ctx->no_linux_ext = !master_tcon->unix_ext;
4218 ctx->linux_ext = master_tcon->posix_extensions;
4219 ctx->sectype = master_tcon->ses->sectype;
4220 ctx->sign = master_tcon->ses->sign;
4221 ctx->seal = master_tcon->seal;
4222 ctx->witness = master_tcon->use_witness;
4224 rc = cifs_set_vol_auth(ctx, master_tcon->ses);
4230 /* get a reference for the same TCP session */
4231 spin_lock(&cifs_tcp_ses_lock);
4232 ++master_tcon->ses->server->srv_count;
4233 spin_unlock(&cifs_tcp_ses_lock);
4235 ses = cifs_get_smb_ses(master_tcon->ses->server, ctx);
4237 tcon = (struct cifs_tcon *)ses;
4238 cifs_put_tcp_session(master_tcon->ses->server, 0);
4242 tcon = cifs_get_tcon(ses, ctx);
4244 cifs_put_smb_ses(ses);
4248 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
4250 reset_cifs_unix_caps(0, tcon, NULL, ctx);
4251 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
4254 kfree(ctx->username);
4255 kfree_sensitive(ctx->password);
4262 cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb)
4264 return tlink_tcon(cifs_sb_master_tlink(cifs_sb));
4267 /* find and return a tlink with given uid */
4268 static struct tcon_link *
4269 tlink_rb_search(struct rb_root *root, kuid_t uid)
4271 struct rb_node *node = root->rb_node;
4272 struct tcon_link *tlink;
4275 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
4277 if (uid_gt(tlink->tl_uid, uid))
4278 node = node->rb_left;
4279 else if (uid_lt(tlink->tl_uid, uid))
4280 node = node->rb_right;
4287 /* insert a tcon_link into the tree */
4289 tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink)
4291 struct rb_node **new = &(root->rb_node), *parent = NULL;
4292 struct tcon_link *tlink;
4295 tlink = rb_entry(*new, struct tcon_link, tl_rbnode);
4298 if (uid_gt(tlink->tl_uid, new_tlink->tl_uid))
4299 new = &((*new)->rb_left);
4301 new = &((*new)->rb_right);
4304 rb_link_node(&new_tlink->tl_rbnode, parent, new);
4305 rb_insert_color(&new_tlink->tl_rbnode, root);
4309 * Find or construct an appropriate tcon given a cifs_sb and the fsuid of the
4312 * If the superblock doesn't refer to a multiuser mount, then just return
4313 * the master tcon for the mount.
4315 * First, search the rbtree for an existing tcon for this fsuid. If one
4316 * exists, then check to see if it's pending construction. If it is then wait
4317 * for construction to complete. Once it's no longer pending, check to see if
4318 * it failed and either return an error or retry construction, depending on
4321 * If one doesn't exist then insert a new tcon_link struct into the tree and
4322 * try to construct a new one.
4325 cifs_sb_tlink(struct cifs_sb_info *cifs_sb)
4328 kuid_t fsuid = current_fsuid();
4329 struct tcon_link *tlink, *newtlink;
4331 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
4332 return cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
4334 spin_lock(&cifs_sb->tlink_tree_lock);
4335 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
4337 cifs_get_tlink(tlink);
4338 spin_unlock(&cifs_sb->tlink_tree_lock);
4340 if (tlink == NULL) {
4341 newtlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
4342 if (newtlink == NULL)
4343 return ERR_PTR(-ENOMEM);
4344 newtlink->tl_uid = fsuid;
4345 newtlink->tl_tcon = ERR_PTR(-EACCES);
4346 set_bit(TCON_LINK_PENDING, &newtlink->tl_flags);
4347 set_bit(TCON_LINK_IN_TREE, &newtlink->tl_flags);
4348 cifs_get_tlink(newtlink);
4350 spin_lock(&cifs_sb->tlink_tree_lock);
4351 /* was one inserted after previous search? */
4352 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
4354 cifs_get_tlink(tlink);
4355 spin_unlock(&cifs_sb->tlink_tree_lock);
4357 goto wait_for_construction;
4360 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
4361 spin_unlock(&cifs_sb->tlink_tree_lock);
4363 wait_for_construction:
4364 ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING,
4365 TASK_INTERRUPTIBLE);
4367 cifs_put_tlink(tlink);
4368 return ERR_PTR(-ERESTARTSYS);
4371 /* if it's good, return it */
4372 if (!IS_ERR(tlink->tl_tcon))
4375 /* return error if we tried this already recently */
4376 if (time_before(jiffies, tlink->tl_time + TLINK_ERROR_EXPIRE)) {
4377 cifs_put_tlink(tlink);
4378 return ERR_PTR(-EACCES);
4381 if (test_and_set_bit(TCON_LINK_PENDING, &tlink->tl_flags))
4382 goto wait_for_construction;
4385 tlink->tl_tcon = cifs_construct_tcon(cifs_sb, fsuid);
4386 clear_bit(TCON_LINK_PENDING, &tlink->tl_flags);
4387 wake_up_bit(&tlink->tl_flags, TCON_LINK_PENDING);
4389 if (IS_ERR(tlink->tl_tcon)) {
4390 cifs_put_tlink(tlink);
4391 return ERR_PTR(-EACCES);
4398 * periodic workqueue job that scans tcon_tree for a superblock and closes
4402 cifs_prune_tlinks(struct work_struct *work)
4404 struct cifs_sb_info *cifs_sb = container_of(work, struct cifs_sb_info,
4406 struct rb_root *root = &cifs_sb->tlink_tree;
4407 struct rb_node *node;
4408 struct rb_node *tmp;
4409 struct tcon_link *tlink;
4412 * Because we drop the spinlock in the loop in order to put the tlink
4413 * it's not guarded against removal of links from the tree. The only
4414 * places that remove entries from the tree are this function and
4415 * umounts. Because this function is non-reentrant and is canceled
4416 * before umount can proceed, this is safe.
4418 spin_lock(&cifs_sb->tlink_tree_lock);
4419 node = rb_first(root);
4420 while (node != NULL) {
4422 node = rb_next(tmp);
4423 tlink = rb_entry(tmp, struct tcon_link, tl_rbnode);
4425 if (test_bit(TCON_LINK_MASTER, &tlink->tl_flags) ||
4426 atomic_read(&tlink->tl_count) != 0 ||
4427 time_after(tlink->tl_time + TLINK_IDLE_EXPIRE, jiffies))
4430 cifs_get_tlink(tlink);
4431 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4432 rb_erase(tmp, root);
4434 spin_unlock(&cifs_sb->tlink_tree_lock);
4435 cifs_put_tlink(tlink);
4436 spin_lock(&cifs_sb->tlink_tree_lock);
4438 spin_unlock(&cifs_sb->tlink_tree_lock);
4440 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
4444 #ifdef CONFIG_CIFS_DFS_UPCALL
4445 /* Update dfs referral path of superblock */
4446 static int update_server_fullpath(struct TCP_Server_Info *server, struct cifs_sb_info *cifs_sb,
4450 size_t len = strlen(target);
4451 char *refpath, *npath;
4453 if (unlikely(len < 2 || *target != '\\'))
4456 if (target[1] == '\\') {
4458 refpath = kmalloc(len, GFP_KERNEL);
4462 scnprintf(refpath, len, "%s", target);
4464 len += sizeof("\\");
4465 refpath = kmalloc(len, GFP_KERNEL);
4469 scnprintf(refpath, len, "\\%s", target);
4472 npath = dfs_cache_canonical_path(refpath, cifs_sb->local_nls, cifs_remap(cifs_sb));
4475 if (IS_ERR(npath)) {
4476 rc = PTR_ERR(npath);
4478 mutex_lock(&server->refpath_lock);
4479 kfree(server->leaf_fullpath);
4480 server->leaf_fullpath = npath;
4481 mutex_unlock(&server->refpath_lock);
4482 server->current_fullpath = server->leaf_fullpath;
4487 static int target_share_matches_server(struct TCP_Server_Info *server, const char *tcp_host,
4488 size_t tcp_host_len, char *share, bool *target_match)
4491 const char *dfs_host;
4492 size_t dfs_host_len;
4494 *target_match = true;
4495 extract_unc_hostname(share, &dfs_host, &dfs_host_len);
4497 /* Check if hostnames or addresses match */
4498 if (dfs_host_len != tcp_host_len || strncasecmp(dfs_host, tcp_host, dfs_host_len) != 0) {
4499 cifs_dbg(FYI, "%s: %.*s doesn't match %.*s\n", __func__, (int)dfs_host_len,
4500 dfs_host, (int)tcp_host_len, tcp_host);
4501 rc = match_target_ip(server, dfs_host, dfs_host_len, target_match);
4503 cifs_dbg(VFS, "%s: failed to match target ip: %d\n", __func__, rc);
4508 static int __tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon,
4509 struct cifs_sb_info *cifs_sb, char *tree, bool islink,
4510 struct dfs_cache_tgt_list *tl)
4513 struct TCP_Server_Info *server = tcon->ses->server;
4514 const struct smb_version_operations *ops = server->ops;
4515 struct cifs_tcon *ipc = tcon->ses->tcon_ipc;
4516 char *share = NULL, *prefix = NULL;
4517 const char *tcp_host;
4518 size_t tcp_host_len;
4519 struct dfs_cache_tgt_iterator *tit;
4522 extract_unc_hostname(server->hostname, &tcp_host, &tcp_host_len);
4524 tit = dfs_cache_get_tgt_iterator(tl);
4530 /* Try to tree connect to all dfs targets */
4531 for (; tit; tit = dfs_cache_get_next_tgt(tl, tit)) {
4532 const char *target = dfs_cache_get_tgt_name(tit);
4533 struct dfs_cache_tgt_list ntl = DFS_CACHE_TGT_LIST_INIT(ntl);
4537 share = prefix = NULL;
4539 /* Check if share matches with tcp ses */
4540 rc = dfs_cache_get_tgt_share(server->current_fullpath + 1, tit, &share, &prefix);
4542 cifs_dbg(VFS, "%s: failed to parse target share: %d\n", __func__, rc);
4546 rc = target_share_matches_server(server, tcp_host, tcp_host_len, share,
4550 if (!target_match) {
4555 if (ipc->need_reconnect) {
4556 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname);
4557 rc = ops->tree_connect(xid, ipc->ses, tree, ipc, cifs_sb->local_nls);
4562 scnprintf(tree, MAX_TREE_SIZE, "\\%s", share);
4564 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, cifs_sb->local_nls);
4568 * If no dfs referrals were returned from link target, then just do a TREE_CONNECT
4569 * to it. Otherwise, cache the dfs referral and then mark current tcp ses for
4570 * reconnect so either the demultiplex thread or the echo worker will reconnect to
4571 * newly resolved target.
4573 if (dfs_cache_find(xid, tcon->ses, cifs_sb->local_nls, cifs_remap(cifs_sb), target,
4575 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, cifs_sb->local_nls);
4578 rc = dfs_cache_noreq_update_tgthint(server->current_fullpath + 1, tit);
4580 rc = cifs_update_super_prepath(cifs_sb, prefix);
4582 /* Target is another dfs share */
4583 rc = update_server_fullpath(server, cifs_sb, target);
4584 dfs_cache_free_tgts(tl);
4588 list_replace_init(&ntl.tl_list, &tl->tl_list);
4590 dfs_cache_free_tgts(&ntl);
4602 static int tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon,
4603 struct cifs_sb_info *cifs_sb, char *tree, bool islink,
4604 struct dfs_cache_tgt_list *tl)
4608 struct TCP_Server_Info *server = tcon->ses->server;
4611 rc = __tree_connect_dfs_target(xid, tcon, cifs_sb, tree, islink, tl);
4612 if (!rc || rc != -EREMOTE)
4614 } while (rc = -ELOOP, ++num_links < MAX_NESTED_LINKS);
4616 * If we couldn't tree connect to any targets from last referral path, then retry from
4617 * original referral path.
4619 if (rc && server->current_fullpath != server->origin_fullpath) {
4620 server->current_fullpath = server->origin_fullpath;
4621 cifs_signal_cifsd_for_reconnect(server, true);
4624 dfs_cache_free_tgts(tl);
4628 int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc)
4631 struct TCP_Server_Info *server = tcon->ses->server;
4632 const struct smb_version_operations *ops = server->ops;
4633 struct super_block *sb = NULL;
4634 struct cifs_sb_info *cifs_sb;
4635 struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl);
4637 struct dfs_info3_param ref = {0};
4639 /* only send once per connect */
4640 spin_lock(&tcon->tc_lock);
4641 if (tcon->ses->ses_status != SES_GOOD ||
4642 (tcon->status != TID_NEW &&
4643 tcon->status != TID_NEED_TCON)) {
4644 spin_unlock(&tcon->tc_lock);
4647 tcon->status = TID_IN_TCON;
4648 spin_unlock(&tcon->tc_lock);
4650 tree = kzalloc(MAX_TREE_SIZE, GFP_KERNEL);
4657 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname);
4658 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc);
4662 sb = cifs_get_tcp_super(server);
4665 cifs_dbg(VFS, "%s: could not find superblock: %d\n", __func__, rc);
4669 cifs_sb = CIFS_SB(sb);
4671 /* If it is not dfs or there was no cached dfs referral, then reconnect to same share */
4672 if (!server->current_fullpath ||
4673 dfs_cache_noreq_find(server->current_fullpath + 1, &ref, &tl)) {
4674 rc = ops->tree_connect(xid, tcon->ses, tcon->tree_name, tcon, cifs_sb->local_nls);
4678 rc = tree_connect_dfs_target(xid, tcon, cifs_sb, tree, ref.server_type == DFS_TYPE_LINK,
4680 free_dfs_info_param(&ref);
4684 cifs_put_tcp_super(sb);
4687 spin_lock(&tcon->tc_lock);
4688 if (tcon->status == TID_IN_TCON)
4689 tcon->status = TID_NEED_TCON;
4690 spin_unlock(&tcon->tc_lock);
4692 spin_lock(&tcon->tc_lock);
4693 if (tcon->status == TID_IN_TCON)
4694 tcon->status = TID_GOOD;
4695 spin_unlock(&tcon->tc_lock);
4696 tcon->need_reconnect = false;
4702 int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc)
4705 const struct smb_version_operations *ops = tcon->ses->server->ops;
4707 /* only send once per connect */
4708 spin_lock(&tcon->tc_lock);
4709 if (tcon->ses->ses_status != SES_GOOD ||
4710 (tcon->status != TID_NEW &&
4711 tcon->status != TID_NEED_TCON)) {
4712 spin_unlock(&tcon->tc_lock);
4715 tcon->status = TID_IN_TCON;
4716 spin_unlock(&tcon->tc_lock);
4718 rc = ops->tree_connect(xid, tcon->ses, tcon->tree_name, tcon, nlsc);
4720 spin_lock(&tcon->tc_lock);
4721 if (tcon->status == TID_IN_TCON)
4722 tcon->status = TID_NEED_TCON;
4723 spin_unlock(&tcon->tc_lock);
4725 spin_lock(&tcon->tc_lock);
4726 if (tcon->status == TID_IN_TCON)
4727 tcon->status = TID_GOOD;
4728 tcon->need_reconnect = false;
4729 spin_unlock(&tcon->tc_lock);