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
64 static int ip_connect(struct TCP_Server_Info *server);
65 static int generic_ip_connect(struct TCP_Server_Info *server);
66 static void tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink);
67 static void cifs_prune_tlinks(struct work_struct *work);
70 * Resolve hostname and set ip addr in tcp ses. Useful for hostnames that may
71 * get their ip addresses changed at some point.
73 * This should be called with server->srv_mutex held.
75 static int reconn_set_ipaddr_from_hostname(struct TCP_Server_Info *server)
79 char *unc, *ipaddr = NULL;
81 unsigned long ttl = SMB_DNS_RESOLVE_INTERVAL_DEFAULT;
83 if (!server->hostname)
86 len = strlen(server->hostname) + 3;
88 unc = kmalloc(len, GFP_KERNEL);
90 cifs_dbg(FYI, "%s: failed to create UNC path\n", __func__);
93 scnprintf(unc, len, "\\\\%s", server->hostname);
95 rc = dns_resolve_server_name_to_ip(unc, &ipaddr, &expiry);
99 cifs_dbg(FYI, "%s: failed to resolve server part of %s to IP: %d\n",
100 __func__, server->hostname, rc);
101 goto requeue_resolve;
104 spin_lock(&cifs_tcp_ses_lock);
105 rc = cifs_convert_address((struct sockaddr *)&server->dstaddr, ipaddr,
107 spin_unlock(&cifs_tcp_ses_lock);
110 /* rc == 1 means success here */
112 now = ktime_get_real_seconds();
113 if (expiry && expiry > now)
115 * To make sure we don't use the cached entry, retry 1s
118 ttl = (expiry - now + 1);
123 cifs_dbg(FYI, "%s: next dns resolution scheduled for %lu seconds in the future\n",
125 mod_delayed_work(cifsiod_wq, &server->resolve, (ttl * HZ));
131 static void cifs_resolve_server(struct work_struct *work)
134 struct TCP_Server_Info *server = container_of(work,
135 struct TCP_Server_Info, resolve.work);
137 mutex_lock(&server->srv_mutex);
140 * Resolve the hostname again to make sure that IP address is up-to-date.
142 rc = reconn_set_ipaddr_from_hostname(server);
144 cifs_dbg(FYI, "%s: failed to resolve hostname: %d\n",
148 mutex_unlock(&server->srv_mutex);
151 #ifdef CONFIG_CIFS_DFS_UPCALL
152 /* These functions must be called with server->srv_mutex held */
153 static void reconn_set_next_dfs_target(struct TCP_Server_Info *server,
154 struct cifs_sb_info *cifs_sb,
155 struct dfs_cache_tgt_list *tgt_list,
156 struct dfs_cache_tgt_iterator **tgt_it)
161 if (!cifs_sb || !cifs_sb->origin_fullpath)
165 *tgt_it = dfs_cache_get_tgt_iterator(tgt_list);
167 *tgt_it = dfs_cache_get_next_tgt(tgt_list, *tgt_it);
169 *tgt_it = dfs_cache_get_tgt_iterator(tgt_list);
172 cifs_dbg(FYI, "%s: UNC: %s\n", __func__, cifs_sb->origin_fullpath);
174 name = dfs_cache_get_tgt_name(*tgt_it);
176 kfree(server->hostname);
178 server->hostname = extract_hostname(name);
179 if (IS_ERR(server->hostname)) {
181 "%s: failed to extract hostname from target: %ld\n",
182 __func__, PTR_ERR(server->hostname));
186 rc = reconn_set_ipaddr_from_hostname(server);
188 cifs_dbg(FYI, "%s: failed to resolve hostname: %d\n",
193 static inline int reconn_setup_dfs_targets(struct cifs_sb_info *cifs_sb,
194 struct dfs_cache_tgt_list *tl)
196 if (!cifs_sb->origin_fullpath)
198 return dfs_cache_noreq_find(cifs_sb->origin_fullpath + 1, NULL, tl);
203 * cifs tcp session reconnection
205 * mark tcp session as reconnecting so temporarily locked
206 * mark all smb sessions as reconnecting for tcp session
207 * reconnect tcp session
208 * wake up waiters on reconnection? - (not needed currently)
211 cifs_reconnect(struct TCP_Server_Info *server)
214 struct list_head *tmp, *tmp2;
215 struct cifs_ses *ses;
216 struct cifs_tcon *tcon;
217 struct mid_q_entry *mid_entry;
218 struct list_head retry_list;
219 #ifdef CONFIG_CIFS_DFS_UPCALL
220 struct super_block *sb = NULL;
221 struct cifs_sb_info *cifs_sb = NULL;
222 struct dfs_cache_tgt_list tgt_list = DFS_CACHE_TGT_LIST_INIT(tgt_list);
223 struct dfs_cache_tgt_iterator *tgt_it = NULL;
226 spin_lock(&GlobalMid_Lock);
227 server->nr_targets = 1;
228 #ifdef CONFIG_CIFS_DFS_UPCALL
229 spin_unlock(&GlobalMid_Lock);
230 sb = cifs_get_tcp_super(server);
233 cifs_dbg(FYI, "%s: will not do DFS failover: rc = %d\n",
237 cifs_sb = CIFS_SB(sb);
238 rc = reconn_setup_dfs_targets(cifs_sb, &tgt_list);
241 if (rc != -EOPNOTSUPP) {
242 cifs_server_dbg(VFS, "%s: no target servers for DFS failover\n",
246 server->nr_targets = dfs_cache_get_nr_tgts(&tgt_list);
249 cifs_dbg(FYI, "%s: will retry %d target(s)\n", __func__,
251 spin_lock(&GlobalMid_Lock);
253 if (server->tcpStatus == CifsExiting) {
254 /* the demux thread will exit normally
255 next time through the loop */
256 spin_unlock(&GlobalMid_Lock);
257 #ifdef CONFIG_CIFS_DFS_UPCALL
258 dfs_cache_free_tgts(&tgt_list);
259 cifs_put_tcp_super(sb);
261 wake_up(&server->response_q);
264 server->tcpStatus = CifsNeedReconnect;
265 spin_unlock(&GlobalMid_Lock);
267 server->max_read = 0;
269 cifs_dbg(FYI, "Mark tcp session as need reconnect\n");
270 trace_smb3_reconnect(server->CurrentMid, server->conn_id, server->hostname);
272 /* before reconnecting the tcp session, mark the smb session (uid)
273 and the tid bad so they are not used until reconnected */
274 cifs_dbg(FYI, "%s: marking sessions and tcons for reconnect\n",
276 spin_lock(&cifs_tcp_ses_lock);
277 list_for_each(tmp, &server->smb_ses_list) {
278 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
279 ses->need_reconnect = true;
280 list_for_each(tmp2, &ses->tcon_list) {
281 tcon = list_entry(tmp2, struct cifs_tcon, tcon_list);
282 tcon->need_reconnect = true;
285 ses->tcon_ipc->need_reconnect = true;
287 spin_unlock(&cifs_tcp_ses_lock);
289 /* do not want to be sending data on a socket we are freeing */
290 cifs_dbg(FYI, "%s: tearing down socket\n", __func__);
291 mutex_lock(&server->srv_mutex);
292 if (server->ssocket) {
293 cifs_dbg(FYI, "State: 0x%x Flags: 0x%lx\n",
294 server->ssocket->state, server->ssocket->flags);
295 kernel_sock_shutdown(server->ssocket, SHUT_WR);
296 cifs_dbg(FYI, "Post shutdown state: 0x%x Flags: 0x%lx\n",
297 server->ssocket->state, server->ssocket->flags);
298 sock_release(server->ssocket);
299 server->ssocket = NULL;
301 server->sequence_number = 0;
302 server->session_estab = false;
303 kfree(server->session_key.response);
304 server->session_key.response = NULL;
305 server->session_key.len = 0;
306 server->lstrp = jiffies;
308 /* mark submitted MIDs for retry and issue callback */
309 INIT_LIST_HEAD(&retry_list);
310 cifs_dbg(FYI, "%s: moving mids to private list\n", __func__);
311 spin_lock(&GlobalMid_Lock);
312 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
313 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
314 kref_get(&mid_entry->refcount);
315 if (mid_entry->mid_state == MID_REQUEST_SUBMITTED)
316 mid_entry->mid_state = MID_RETRY_NEEDED;
317 list_move(&mid_entry->qhead, &retry_list);
318 mid_entry->mid_flags |= MID_DELETED;
320 spin_unlock(&GlobalMid_Lock);
321 mutex_unlock(&server->srv_mutex);
323 cifs_dbg(FYI, "%s: issuing mid callbacks\n", __func__);
324 list_for_each_safe(tmp, tmp2, &retry_list) {
325 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
326 list_del_init(&mid_entry->qhead);
327 mid_entry->callback(mid_entry);
328 cifs_mid_q_entry_release(mid_entry);
331 if (cifs_rdma_enabled(server)) {
332 mutex_lock(&server->srv_mutex);
333 smbd_destroy(server);
334 mutex_unlock(&server->srv_mutex);
340 mutex_lock(&server->srv_mutex);
343 if (!cifs_swn_set_server_dstaddr(server)) {
344 #ifdef CONFIG_CIFS_DFS_UPCALL
345 if (cifs_sb && cifs_sb->origin_fullpath)
347 * Set up next DFS target server (if any) for reconnect. If DFS
348 * feature is disabled, then we will retry last server we
349 * connected to before.
351 reconn_set_next_dfs_target(server, cifs_sb, &tgt_list, &tgt_it);
355 * Resolve the hostname again to make sure that IP address is up-to-date.
357 rc = reconn_set_ipaddr_from_hostname(server);
359 cifs_dbg(FYI, "%s: failed to resolve hostname: %d\n",
363 #ifdef CONFIG_CIFS_DFS_UPCALL
370 if (cifs_rdma_enabled(server))
371 rc = smbd_reconnect(server);
373 rc = generic_ip_connect(server);
375 cifs_dbg(FYI, "reconnect error %d\n", rc);
376 mutex_unlock(&server->srv_mutex);
379 atomic_inc(&tcpSesReconnectCount);
380 set_credits(server, 1);
381 spin_lock(&GlobalMid_Lock);
382 if (server->tcpStatus != CifsExiting)
383 server->tcpStatus = CifsNeedNegotiate;
384 spin_unlock(&GlobalMid_Lock);
385 cifs_swn_reset_server_dstaddr(server);
386 mutex_unlock(&server->srv_mutex);
388 } while (server->tcpStatus == CifsNeedReconnect);
390 #ifdef CONFIG_CIFS_DFS_UPCALL
392 rc = dfs_cache_noreq_update_tgthint(cifs_sb->origin_fullpath + 1,
395 cifs_server_dbg(VFS, "%s: failed to update DFS target hint: rc = %d\n",
398 dfs_cache_free_tgts(&tgt_list);
401 cifs_put_tcp_super(sb);
403 if (server->tcpStatus == CifsNeedNegotiate)
404 mod_delayed_work(cifsiod_wq, &server->echo, 0);
406 wake_up(&server->response_q);
411 cifs_echo_request(struct work_struct *work)
414 struct TCP_Server_Info *server = container_of(work,
415 struct TCP_Server_Info, echo.work);
418 * We cannot send an echo if it is disabled.
419 * Also, no need to ping if we got a response recently.
422 if (server->tcpStatus == CifsNeedReconnect ||
423 server->tcpStatus == CifsExiting ||
424 server->tcpStatus == CifsNew ||
425 (server->ops->can_echo && !server->ops->can_echo(server)) ||
426 time_before(jiffies, server->lstrp + server->echo_interval - HZ))
429 rc = server->ops->echo ? server->ops->echo(server) : -ENOSYS;
431 cifs_dbg(FYI, "Unable to send echo request to server: %s\n",
434 /* Check witness registrations */
438 queue_delayed_work(cifsiod_wq, &server->echo, server->echo_interval);
442 allocate_buffers(struct TCP_Server_Info *server)
444 if (!server->bigbuf) {
445 server->bigbuf = (char *)cifs_buf_get();
446 if (!server->bigbuf) {
447 cifs_server_dbg(VFS, "No memory for large SMB response\n");
449 /* retry will check if exiting */
452 } else if (server->large_buf) {
453 /* we are reusing a dirty large buf, clear its start */
454 memset(server->bigbuf, 0, HEADER_SIZE(server));
457 if (!server->smallbuf) {
458 server->smallbuf = (char *)cifs_small_buf_get();
459 if (!server->smallbuf) {
460 cifs_server_dbg(VFS, "No memory for SMB response\n");
462 /* retry will check if exiting */
465 /* beginning of smb buffer is cleared in our buf_get */
467 /* if existing small buf clear beginning */
468 memset(server->smallbuf, 0, HEADER_SIZE(server));
475 server_unresponsive(struct TCP_Server_Info *server)
478 * We need to wait 3 echo intervals to make sure we handle such
480 * 1s client sends a normal SMB request
481 * 2s client gets a response
482 * 30s echo workqueue job pops, and decides we got a response recently
483 * and don't need to send another
485 * 65s kernel_recvmsg times out, and we see that we haven't gotten
486 * a response in >60s.
488 if ((server->tcpStatus == CifsGood ||
489 server->tcpStatus == CifsNeedNegotiate) &&
490 (!server->ops->can_echo || server->ops->can_echo(server)) &&
491 time_after(jiffies, server->lstrp + 3 * server->echo_interval)) {
492 cifs_server_dbg(VFS, "has not responded in %lu seconds. Reconnecting...\n",
493 (3 * server->echo_interval) / HZ);
494 cifs_reconnect(server);
502 zero_credits(struct TCP_Server_Info *server)
506 spin_lock(&server->req_lock);
507 val = server->credits + server->echo_credits + server->oplock_credits;
508 if (server->in_flight == 0 && val == 0) {
509 spin_unlock(&server->req_lock);
512 spin_unlock(&server->req_lock);
517 cifs_readv_from_socket(struct TCP_Server_Info *server, struct msghdr *smb_msg)
522 smb_msg->msg_control = NULL;
523 smb_msg->msg_controllen = 0;
525 for (total_read = 0; msg_data_left(smb_msg); total_read += length) {
528 /* reconnect if no credits and no requests in flight */
529 if (zero_credits(server)) {
530 cifs_reconnect(server);
531 return -ECONNABORTED;
534 if (server_unresponsive(server))
535 return -ECONNABORTED;
536 if (cifs_rdma_enabled(server) && server->smbd_conn)
537 length = smbd_recv(server->smbd_conn, smb_msg);
539 length = sock_recvmsg(server->ssocket, smb_msg, 0);
541 if (server->tcpStatus == CifsExiting)
544 if (server->tcpStatus == CifsNeedReconnect) {
545 cifs_reconnect(server);
546 return -ECONNABORTED;
549 if (length == -ERESTARTSYS ||
553 * Minimum sleep to prevent looping, allowing socket
554 * to clear and app threads to set tcpStatus
555 * CifsNeedReconnect if server hung.
557 usleep_range(1000, 2000);
563 cifs_dbg(FYI, "Received no data or error: %d\n", length);
564 cifs_reconnect(server);
565 return -ECONNABORTED;
572 cifs_read_from_socket(struct TCP_Server_Info *server, char *buf,
573 unsigned int to_read)
575 struct msghdr smb_msg;
576 struct kvec iov = {.iov_base = buf, .iov_len = to_read};
577 iov_iter_kvec(&smb_msg.msg_iter, READ, &iov, 1, to_read);
579 return cifs_readv_from_socket(server, &smb_msg);
583 cifs_discard_from_socket(struct TCP_Server_Info *server, size_t to_read)
585 struct msghdr smb_msg;
588 * iov_iter_discard already sets smb_msg.type and count and iov_offset
589 * and cifs_readv_from_socket sets msg_control and msg_controllen
590 * so little to initialize in struct msghdr
592 smb_msg.msg_name = NULL;
593 smb_msg.msg_namelen = 0;
594 iov_iter_discard(&smb_msg.msg_iter, READ, to_read);
596 return cifs_readv_from_socket(server, &smb_msg);
600 cifs_read_page_from_socket(struct TCP_Server_Info *server, struct page *page,
601 unsigned int page_offset, unsigned int to_read)
603 struct msghdr smb_msg;
604 struct bio_vec bv = {
605 .bv_page = page, .bv_len = to_read, .bv_offset = page_offset};
606 iov_iter_bvec(&smb_msg.msg_iter, READ, &bv, 1, to_read);
607 return cifs_readv_from_socket(server, &smb_msg);
611 is_smb_response(struct TCP_Server_Info *server, unsigned char type)
614 * The first byte big endian of the length field,
615 * is actually not part of the length but the type
616 * with the most common, zero, as regular data.
619 case RFC1002_SESSION_MESSAGE:
620 /* Regular SMB response */
622 case RFC1002_SESSION_KEEP_ALIVE:
623 cifs_dbg(FYI, "RFC 1002 session keep alive\n");
625 case RFC1002_POSITIVE_SESSION_RESPONSE:
626 cifs_dbg(FYI, "RFC 1002 positive session response\n");
628 case RFC1002_NEGATIVE_SESSION_RESPONSE:
630 * We get this from Windows 98 instead of an error on
631 * SMB negprot response.
633 cifs_dbg(FYI, "RFC 1002 negative session response\n");
634 /* give server a second to clean up */
637 * Always try 445 first on reconnect since we get NACK
638 * on some if we ever connected to port 139 (the NACK
639 * is since we do not begin with RFC1001 session
642 cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT);
643 cifs_reconnect(server);
646 cifs_server_dbg(VFS, "RFC 1002 unknown response type 0x%x\n", type);
647 cifs_reconnect(server);
654 dequeue_mid(struct mid_q_entry *mid, bool malformed)
656 #ifdef CONFIG_CIFS_STATS2
657 mid->when_received = jiffies;
659 spin_lock(&GlobalMid_Lock);
661 mid->mid_state = MID_RESPONSE_RECEIVED;
663 mid->mid_state = MID_RESPONSE_MALFORMED;
665 * Trying to handle/dequeue a mid after the send_recv()
666 * function has finished processing it is a bug.
668 if (mid->mid_flags & MID_DELETED)
669 pr_warn_once("trying to dequeue a deleted mid\n");
671 list_del_init(&mid->qhead);
672 mid->mid_flags |= MID_DELETED;
674 spin_unlock(&GlobalMid_Lock);
678 smb2_get_credits_from_hdr(char *buffer, struct TCP_Server_Info *server)
680 struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buffer;
683 * SMB1 does not use credits.
685 if (server->vals->header_preamble_size)
688 return le16_to_cpu(shdr->CreditRequest);
692 handle_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server,
693 char *buf, int malformed)
695 if (server->ops->check_trans2 &&
696 server->ops->check_trans2(mid, server, buf, malformed))
698 mid->credits_received = smb2_get_credits_from_hdr(buf, server);
700 mid->large_buf = server->large_buf;
701 /* Was previous buf put in mpx struct for multi-rsp? */
702 if (!mid->multiRsp) {
703 /* smb buffer will be freed by user thread */
704 if (server->large_buf)
705 server->bigbuf = NULL;
707 server->smallbuf = NULL;
709 dequeue_mid(mid, malformed);
712 static void clean_demultiplex_info(struct TCP_Server_Info *server)
716 /* take it off the list, if it's not already */
717 spin_lock(&cifs_tcp_ses_lock);
718 list_del_init(&server->tcp_ses_list);
719 spin_unlock(&cifs_tcp_ses_lock);
721 cancel_delayed_work_sync(&server->echo);
722 cancel_delayed_work_sync(&server->resolve);
724 spin_lock(&GlobalMid_Lock);
725 server->tcpStatus = CifsExiting;
726 spin_unlock(&GlobalMid_Lock);
727 wake_up_all(&server->response_q);
729 /* check if we have blocked requests that need to free */
730 spin_lock(&server->req_lock);
731 if (server->credits <= 0)
733 spin_unlock(&server->req_lock);
735 * Although there should not be any requests blocked on this queue it
736 * can not hurt to be paranoid and try to wake up requests that may
737 * haven been blocked when more than 50 at time were on the wire to the
738 * same server - they now will see the session is in exit state and get
739 * out of SendReceive.
741 wake_up_all(&server->request_q);
742 /* give those requests time to exit */
744 if (cifs_rdma_enabled(server))
745 smbd_destroy(server);
746 if (server->ssocket) {
747 sock_release(server->ssocket);
748 server->ssocket = NULL;
751 if (!list_empty(&server->pending_mid_q)) {
752 struct list_head dispose_list;
753 struct mid_q_entry *mid_entry;
754 struct list_head *tmp, *tmp2;
756 INIT_LIST_HEAD(&dispose_list);
757 spin_lock(&GlobalMid_Lock);
758 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
759 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
760 cifs_dbg(FYI, "Clearing mid %llu\n", mid_entry->mid);
761 kref_get(&mid_entry->refcount);
762 mid_entry->mid_state = MID_SHUTDOWN;
763 list_move(&mid_entry->qhead, &dispose_list);
764 mid_entry->mid_flags |= MID_DELETED;
766 spin_unlock(&GlobalMid_Lock);
768 /* now walk dispose list and issue callbacks */
769 list_for_each_safe(tmp, tmp2, &dispose_list) {
770 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
771 cifs_dbg(FYI, "Callback mid %llu\n", mid_entry->mid);
772 list_del_init(&mid_entry->qhead);
773 mid_entry->callback(mid_entry);
774 cifs_mid_q_entry_release(mid_entry);
776 /* 1/8th of sec is more than enough time for them to exit */
780 if (!list_empty(&server->pending_mid_q)) {
782 * mpx threads have not exited yet give them at least the smb
783 * send timeout time for long ops.
785 * Due to delays on oplock break requests, we need to wait at
786 * least 45 seconds before giving up on a request getting a
787 * response and going ahead and killing cifsd.
789 cifs_dbg(FYI, "Wait for exit from demultiplex thread\n");
792 * If threads still have not exited they are probably never
793 * coming home not much else we can do but free the memory.
797 kfree(server->hostname);
800 length = atomic_dec_return(&tcpSesAllocCount);
802 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
806 standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid)
809 char *buf = server->smallbuf;
810 unsigned int pdu_length = server->pdu_size;
812 /* make sure this will fit in a large buffer */
813 if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) -
814 server->vals->header_preamble_size) {
815 cifs_server_dbg(VFS, "SMB response too long (%u bytes)\n", pdu_length);
816 cifs_reconnect(server);
817 return -ECONNABORTED;
820 /* switch to large buffer if too big for a small one */
821 if (pdu_length > MAX_CIFS_SMALL_BUFFER_SIZE - 4) {
822 server->large_buf = true;
823 memcpy(server->bigbuf, buf, server->total_read);
824 buf = server->bigbuf;
827 /* now read the rest */
828 length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1,
829 pdu_length - HEADER_SIZE(server) + 1
830 + server->vals->header_preamble_size);
834 server->total_read += length;
836 dump_smb(buf, server->total_read);
838 return cifs_handle_standard(server, mid);
842 cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid)
844 char *buf = server->large_buf ? server->bigbuf : server->smallbuf;
848 * We know that we received enough to get to the MID as we
849 * checked the pdu_length earlier. Now check to see
850 * if the rest of the header is OK. We borrow the length
851 * var for the rest of the loop to avoid a new stack var.
853 * 48 bytes is enough to display the header and a little bit
854 * into the payload for debugging purposes.
856 length = server->ops->check_message(buf, server->total_read, server);
858 cifs_dump_mem("Bad SMB: ", buf,
859 min_t(unsigned int, server->total_read, 48));
861 if (server->ops->is_session_expired &&
862 server->ops->is_session_expired(buf)) {
863 cifs_reconnect(server);
867 if (server->ops->is_status_pending &&
868 server->ops->is_status_pending(buf, server))
874 handle_mid(mid, server, buf, length);
879 smb2_add_credits_from_hdr(char *buffer, struct TCP_Server_Info *server)
881 struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buffer;
882 int scredits, in_flight;
885 * SMB1 does not use credits.
887 if (server->vals->header_preamble_size)
890 if (shdr->CreditRequest) {
891 spin_lock(&server->req_lock);
892 server->credits += le16_to_cpu(shdr->CreditRequest);
893 scredits = server->credits;
894 in_flight = server->in_flight;
895 spin_unlock(&server->req_lock);
896 wake_up(&server->request_q);
898 trace_smb3_add_credits(server->CurrentMid,
899 server->conn_id, server->hostname, scredits,
900 le16_to_cpu(shdr->CreditRequest), in_flight);
901 cifs_server_dbg(FYI, "%s: added %u credits total=%d\n",
902 __func__, le16_to_cpu(shdr->CreditRequest),
909 cifs_demultiplex_thread(void *p)
911 int i, num_mids, length;
912 struct TCP_Server_Info *server = p;
913 unsigned int pdu_length;
914 unsigned int next_offset;
916 struct task_struct *task_to_wake = NULL;
917 struct mid_q_entry *mids[MAX_COMPOUND];
918 char *bufs[MAX_COMPOUND];
919 unsigned int noreclaim_flag, num_io_timeout = 0;
921 noreclaim_flag = memalloc_noreclaim_save();
922 cifs_dbg(FYI, "Demultiplex PID: %d\n", task_pid_nr(current));
924 length = atomic_inc_return(&tcpSesAllocCount);
926 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
929 allow_kernel_signal(SIGKILL);
930 while (server->tcpStatus != CifsExiting) {
934 if (!allocate_buffers(server))
937 server->large_buf = false;
938 buf = server->smallbuf;
939 pdu_length = 4; /* enough to get RFC1001 header */
941 length = cifs_read_from_socket(server, buf, pdu_length);
945 if (server->vals->header_preamble_size == 0)
946 server->total_read = 0;
948 server->total_read = length;
951 * The right amount was read from socket - 4 bytes,
952 * so we can now interpret the length field.
954 pdu_length = get_rfc1002_length(buf);
956 cifs_dbg(FYI, "RFC1002 header 0x%x\n", pdu_length);
957 if (!is_smb_response(server, buf[0]))
960 server->pdu_size = pdu_length;
962 /* make sure we have enough to get to the MID */
963 if (server->pdu_size < HEADER_SIZE(server) - 1 -
964 server->vals->header_preamble_size) {
965 cifs_server_dbg(VFS, "SMB response too short (%u bytes)\n",
967 cifs_reconnect(server);
971 /* read down to the MID */
972 length = cifs_read_from_socket(server,
973 buf + server->vals->header_preamble_size,
974 HEADER_SIZE(server) - 1
975 - server->vals->header_preamble_size);
978 server->total_read += length;
980 if (server->ops->next_header) {
981 next_offset = server->ops->next_header(buf);
983 server->pdu_size = next_offset;
986 memset(mids, 0, sizeof(mids));
987 memset(bufs, 0, sizeof(bufs));
990 if (server->ops->is_transform_hdr &&
991 server->ops->receive_transform &&
992 server->ops->is_transform_hdr(buf)) {
993 length = server->ops->receive_transform(server,
998 mids[0] = server->ops->find_mid(server, buf);
1002 if (!mids[0] || !mids[0]->receive)
1003 length = standard_receive3(server, mids[0]);
1005 length = mids[0]->receive(server, mids[0]);
1009 for (i = 0; i < num_mids; i++)
1011 cifs_mid_q_entry_release(mids[i]);
1015 if (server->ops->is_status_io_timeout &&
1016 server->ops->is_status_io_timeout(buf)) {
1018 if (num_io_timeout > NUM_STATUS_IO_TIMEOUT) {
1019 cifs_reconnect(server);
1025 server->lstrp = jiffies;
1027 for (i = 0; i < num_mids; i++) {
1028 if (mids[i] != NULL) {
1029 mids[i]->resp_buf_size = server->pdu_size;
1031 if (bufs[i] && server->ops->is_network_name_deleted)
1032 server->ops->is_network_name_deleted(bufs[i],
1035 if (!mids[i]->multiRsp || mids[i]->multiEnd)
1036 mids[i]->callback(mids[i]);
1038 cifs_mid_q_entry_release(mids[i]);
1039 } else if (server->ops->is_oplock_break &&
1040 server->ops->is_oplock_break(bufs[i],
1042 smb2_add_credits_from_hdr(bufs[i], server);
1043 cifs_dbg(FYI, "Received oplock break\n");
1045 cifs_server_dbg(VFS, "No task to wake, unknown frame received! NumMids %d\n",
1046 atomic_read(&midCount));
1047 cifs_dump_mem("Received Data is: ", bufs[i],
1048 HEADER_SIZE(server));
1049 smb2_add_credits_from_hdr(bufs[i], server);
1050 #ifdef CONFIG_CIFS_DEBUG2
1051 if (server->ops->dump_detail)
1052 server->ops->dump_detail(bufs[i],
1054 cifs_dump_mids(server);
1055 #endif /* CIFS_DEBUG2 */
1059 if (pdu_length > server->pdu_size) {
1060 if (!allocate_buffers(server))
1062 pdu_length -= server->pdu_size;
1063 server->total_read = 0;
1064 server->large_buf = false;
1065 buf = server->smallbuf;
1068 } /* end while !EXITING */
1070 /* buffer usually freed in free_mid - need to free it here on exit */
1071 cifs_buf_release(server->bigbuf);
1072 if (server->smallbuf) /* no sense logging a debug message if NULL */
1073 cifs_small_buf_release(server->smallbuf);
1075 task_to_wake = xchg(&server->tsk, NULL);
1076 clean_demultiplex_info(server);
1078 /* if server->tsk was NULL then wait for a signal before exiting */
1079 if (!task_to_wake) {
1080 set_current_state(TASK_INTERRUPTIBLE);
1081 while (!signal_pending(current)) {
1083 set_current_state(TASK_INTERRUPTIBLE);
1085 set_current_state(TASK_RUNNING);
1088 memalloc_noreclaim_restore(noreclaim_flag);
1089 module_put_and_exit(0);
1093 * Returns true if srcaddr isn't specified and rhs isn't specified, or
1094 * if srcaddr is specified and matches the IP address of the rhs argument
1097 cifs_match_ipaddr(struct sockaddr *srcaddr, struct sockaddr *rhs)
1099 switch (srcaddr->sa_family) {
1101 return (rhs->sa_family == AF_UNSPEC);
1103 struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr;
1104 struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs;
1105 return (saddr4->sin_addr.s_addr == vaddr4->sin_addr.s_addr);
1108 struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr;
1109 struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs;
1110 return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr);
1114 return false; /* don't expect to be here */
1119 * If no port is specified in addr structure, we try to match with 445 port
1120 * and if it fails - with 139 ports. It should be called only if address
1121 * families of server and addr are equal.
1124 match_port(struct TCP_Server_Info *server, struct sockaddr *addr)
1126 __be16 port, *sport;
1128 /* SMBDirect manages its own ports, don't match it here */
1132 switch (addr->sa_family) {
1134 sport = &((struct sockaddr_in *) &server->dstaddr)->sin_port;
1135 port = ((struct sockaddr_in *) addr)->sin_port;
1138 sport = &((struct sockaddr_in6 *) &server->dstaddr)->sin6_port;
1139 port = ((struct sockaddr_in6 *) addr)->sin6_port;
1147 port = htons(CIFS_PORT);
1151 port = htons(RFC1001_PORT);
1154 return port == *sport;
1158 match_address(struct TCP_Server_Info *server, struct sockaddr *addr,
1159 struct sockaddr *srcaddr)
1161 switch (addr->sa_family) {
1163 struct sockaddr_in *addr4 = (struct sockaddr_in *)addr;
1164 struct sockaddr_in *srv_addr4 =
1165 (struct sockaddr_in *)&server->dstaddr;
1167 if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr)
1172 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr;
1173 struct sockaddr_in6 *srv_addr6 =
1174 (struct sockaddr_in6 *)&server->dstaddr;
1176 if (!ipv6_addr_equal(&addr6->sin6_addr,
1177 &srv_addr6->sin6_addr))
1179 if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id)
1185 return false; /* don't expect to be here */
1188 if (!cifs_match_ipaddr(srcaddr, (struct sockaddr *)&server->srcaddr))
1195 match_security(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
1198 * The select_sectype function should either return the ctx->sectype
1199 * that was specified, or "Unspecified" if that sectype was not
1200 * compatible with the given NEGOTIATE request.
1202 if (server->ops->select_sectype(server, ctx->sectype)
1207 * Now check if signing mode is acceptable. No need to check
1208 * global_secflags at this point since if MUST_SIGN is set then
1209 * the server->sign had better be too.
1211 if (ctx->sign && !server->sign)
1217 static int match_server(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
1219 struct sockaddr *addr = (struct sockaddr *)&ctx->dstaddr;
1221 if (ctx->nosharesock)
1224 /* If multidialect negotiation see if existing sessions match one */
1225 if (strcmp(ctx->vals->version_string, SMB3ANY_VERSION_STRING) == 0) {
1226 if (server->vals->protocol_id < SMB30_PROT_ID)
1228 } else if (strcmp(ctx->vals->version_string,
1229 SMBDEFAULT_VERSION_STRING) == 0) {
1230 if (server->vals->protocol_id < SMB21_PROT_ID)
1232 } else if ((server->vals != ctx->vals) || (server->ops != ctx->ops))
1235 if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns))
1238 if (!match_address(server, addr,
1239 (struct sockaddr *)&ctx->srcaddr))
1242 if (!match_port(server, addr))
1245 if (!match_security(server, ctx))
1248 if (server->echo_interval != ctx->echo_interval * HZ)
1251 if (server->rdma != ctx->rdma)
1254 if (server->ignore_signature != ctx->ignore_signature)
1257 if (server->min_offload != ctx->min_offload)
1263 struct TCP_Server_Info *
1264 cifs_find_tcp_session(struct smb3_fs_context *ctx)
1266 struct TCP_Server_Info *server;
1268 spin_lock(&cifs_tcp_ses_lock);
1269 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
1270 #ifdef CONFIG_CIFS_DFS_UPCALL
1272 * DFS failover implementation in cifs_reconnect() requires unique tcp sessions for
1273 * DFS connections to do failover properly, so avoid sharing them with regular
1274 * shares or even links that may connect to same server but having completely
1275 * different failover targets.
1277 if (server->is_dfs_conn)
1281 * Skip ses channels since they're only handled in lower layers
1282 * (e.g. cifs_send_recv).
1284 if (server->is_channel || !match_server(server, ctx))
1287 ++server->srv_count;
1288 spin_unlock(&cifs_tcp_ses_lock);
1289 cifs_dbg(FYI, "Existing tcp session with server found\n");
1292 spin_unlock(&cifs_tcp_ses_lock);
1297 cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect)
1299 struct task_struct *task;
1301 spin_lock(&cifs_tcp_ses_lock);
1302 if (--server->srv_count > 0) {
1303 spin_unlock(&cifs_tcp_ses_lock);
1307 /* srv_count can never go negative */
1308 WARN_ON(server->srv_count < 0);
1310 put_net(cifs_net_ns(server));
1312 list_del_init(&server->tcp_ses_list);
1313 spin_unlock(&cifs_tcp_ses_lock);
1315 cancel_delayed_work_sync(&server->echo);
1316 cancel_delayed_work_sync(&server->resolve);
1320 * Avoid deadlock here: reconnect work calls
1321 * cifs_put_tcp_session() at its end. Need to be sure
1322 * that reconnect work does nothing with server pointer after
1325 cancel_delayed_work(&server->reconnect);
1327 cancel_delayed_work_sync(&server->reconnect);
1329 spin_lock(&GlobalMid_Lock);
1330 server->tcpStatus = CifsExiting;
1331 spin_unlock(&GlobalMid_Lock);
1333 cifs_crypto_secmech_release(server);
1334 cifs_fscache_release_client_cookie(server);
1336 kfree(server->session_key.response);
1337 server->session_key.response = NULL;
1338 server->session_key.len = 0;
1340 task = xchg(&server->tsk, NULL);
1342 send_sig(SIGKILL, task, 1);
1345 struct TCP_Server_Info *
1346 cifs_get_tcp_session(struct smb3_fs_context *ctx)
1348 struct TCP_Server_Info *tcp_ses = NULL;
1351 cifs_dbg(FYI, "UNC: %s\n", ctx->UNC);
1353 /* see if we already have a matching tcp_ses */
1354 tcp_ses = cifs_find_tcp_session(ctx);
1358 tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL);
1364 tcp_ses->ops = ctx->ops;
1365 tcp_ses->vals = ctx->vals;
1366 cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns));
1367 tcp_ses->hostname = extract_hostname(ctx->UNC);
1368 if (IS_ERR(tcp_ses->hostname)) {
1369 rc = PTR_ERR(tcp_ses->hostname);
1370 goto out_err_crypto_release;
1373 tcp_ses->conn_id = atomic_inc_return(&tcpSesNextId);
1374 tcp_ses->noblockcnt = ctx->rootfs;
1375 tcp_ses->noblocksnd = ctx->noblocksnd || ctx->rootfs;
1376 tcp_ses->noautotune = ctx->noautotune;
1377 tcp_ses->tcp_nodelay = ctx->sockopt_tcp_nodelay;
1378 tcp_ses->rdma = ctx->rdma;
1379 tcp_ses->in_flight = 0;
1380 tcp_ses->max_in_flight = 0;
1381 tcp_ses->credits = 1;
1382 init_waitqueue_head(&tcp_ses->response_q);
1383 init_waitqueue_head(&tcp_ses->request_q);
1384 INIT_LIST_HEAD(&tcp_ses->pending_mid_q);
1385 mutex_init(&tcp_ses->srv_mutex);
1386 memcpy(tcp_ses->workstation_RFC1001_name,
1387 ctx->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
1388 memcpy(tcp_ses->server_RFC1001_name,
1389 ctx->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
1390 tcp_ses->session_estab = false;
1391 tcp_ses->sequence_number = 0;
1392 tcp_ses->reconnect_instance = 1;
1393 tcp_ses->lstrp = jiffies;
1394 tcp_ses->compress_algorithm = cpu_to_le16(ctx->compression);
1395 spin_lock_init(&tcp_ses->req_lock);
1396 INIT_LIST_HEAD(&tcp_ses->tcp_ses_list);
1397 INIT_LIST_HEAD(&tcp_ses->smb_ses_list);
1398 INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request);
1399 INIT_DELAYED_WORK(&tcp_ses->resolve, cifs_resolve_server);
1400 INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server);
1401 mutex_init(&tcp_ses->reconnect_mutex);
1402 memcpy(&tcp_ses->srcaddr, &ctx->srcaddr,
1403 sizeof(tcp_ses->srcaddr));
1404 memcpy(&tcp_ses->dstaddr, &ctx->dstaddr,
1405 sizeof(tcp_ses->dstaddr));
1406 if (ctx->use_client_guid)
1407 memcpy(tcp_ses->client_guid, ctx->client_guid,
1408 SMB2_CLIENT_GUID_SIZE);
1410 generate_random_uuid(tcp_ses->client_guid);
1412 * at this point we are the only ones with the pointer
1413 * to the struct since the kernel thread not created yet
1414 * no need to spinlock this init of tcpStatus or srv_count
1416 tcp_ses->tcpStatus = CifsNew;
1417 ++tcp_ses->srv_count;
1419 if (ctx->echo_interval >= SMB_ECHO_INTERVAL_MIN &&
1420 ctx->echo_interval <= SMB_ECHO_INTERVAL_MAX)
1421 tcp_ses->echo_interval = ctx->echo_interval * HZ;
1423 tcp_ses->echo_interval = SMB_ECHO_INTERVAL_DEFAULT * HZ;
1424 if (tcp_ses->rdma) {
1425 #ifndef CONFIG_CIFS_SMB_DIRECT
1426 cifs_dbg(VFS, "CONFIG_CIFS_SMB_DIRECT is not enabled\n");
1428 goto out_err_crypto_release;
1430 tcp_ses->smbd_conn = smbd_get_connection(
1431 tcp_ses, (struct sockaddr *)&ctx->dstaddr);
1432 if (tcp_ses->smbd_conn) {
1433 cifs_dbg(VFS, "RDMA transport established\n");
1435 goto smbd_connected;
1438 goto out_err_crypto_release;
1441 rc = ip_connect(tcp_ses);
1443 cifs_dbg(VFS, "Error connecting to socket. Aborting operation.\n");
1444 goto out_err_crypto_release;
1448 * since we're in a cifs function already, we know that
1449 * this will succeed. No need for try_module_get().
1451 __module_get(THIS_MODULE);
1452 tcp_ses->tsk = kthread_run(cifs_demultiplex_thread,
1454 if (IS_ERR(tcp_ses->tsk)) {
1455 rc = PTR_ERR(tcp_ses->tsk);
1456 cifs_dbg(VFS, "error %d create cifsd thread\n", rc);
1457 module_put(THIS_MODULE);
1458 goto out_err_crypto_release;
1460 tcp_ses->min_offload = ctx->min_offload;
1462 * at this point we are the only ones with the pointer
1463 * to the struct since the kernel thread not created yet
1464 * no need to spinlock this update of tcpStatus
1466 tcp_ses->tcpStatus = CifsNeedNegotiate;
1468 if ((ctx->max_credits < 20) || (ctx->max_credits > 60000))
1469 tcp_ses->max_credits = SMB2_MAX_CREDITS_AVAILABLE;
1471 tcp_ses->max_credits = ctx->max_credits;
1473 tcp_ses->nr_targets = 1;
1474 tcp_ses->ignore_signature = ctx->ignore_signature;
1475 /* thread spawned, put it on the list */
1476 spin_lock(&cifs_tcp_ses_lock);
1477 list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list);
1478 spin_unlock(&cifs_tcp_ses_lock);
1480 cifs_fscache_get_client_cookie(tcp_ses);
1482 /* queue echo request delayed work */
1483 queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval);
1485 /* queue dns resolution delayed work */
1486 cifs_dbg(FYI, "%s: next dns resolution scheduled for %d seconds in the future\n",
1487 __func__, SMB_DNS_RESOLVE_INTERVAL_DEFAULT);
1489 queue_delayed_work(cifsiod_wq, &tcp_ses->resolve, (SMB_DNS_RESOLVE_INTERVAL_DEFAULT * HZ));
1493 out_err_crypto_release:
1494 cifs_crypto_secmech_release(tcp_ses);
1496 put_net(cifs_net_ns(tcp_ses));
1500 if (!IS_ERR(tcp_ses->hostname))
1501 kfree(tcp_ses->hostname);
1502 if (tcp_ses->ssocket)
1503 sock_release(tcp_ses->ssocket);
1509 static int match_session(struct cifs_ses *ses, struct smb3_fs_context *ctx)
1511 if (ctx->sectype != Unspecified &&
1512 ctx->sectype != ses->sectype)
1516 * If an existing session is limited to less channels than
1517 * requested, it should not be reused
1519 if (ses->chan_max < ctx->max_channels)
1522 switch (ses->sectype) {
1524 if (!uid_eq(ctx->cred_uid, ses->cred_uid))
1528 /* NULL username means anonymous session */
1529 if (ses->user_name == NULL) {
1535 /* anything else takes username/password */
1536 if (strncmp(ses->user_name,
1537 ctx->username ? ctx->username : "",
1538 CIFS_MAX_USERNAME_LEN))
1540 if ((ctx->username && strlen(ctx->username) != 0) &&
1541 ses->password != NULL &&
1542 strncmp(ses->password,
1543 ctx->password ? ctx->password : "",
1544 CIFS_MAX_PASSWORD_LEN))
1551 * cifs_setup_ipc - helper to setup the IPC tcon for the session
1552 * @ses: smb session to issue the request on
1553 * @ctx: the superblock configuration context to use for building the
1554 * new tree connection for the IPC (interprocess communication RPC)
1556 * A new IPC connection is made and stored in the session
1557 * tcon_ipc. The IPC tcon has the same lifetime as the session.
1560 cifs_setup_ipc(struct cifs_ses *ses, struct smb3_fs_context *ctx)
1563 struct cifs_tcon *tcon;
1564 char unc[SERVER_NAME_LENGTH + sizeof("//x/IPC$")] = {0};
1566 struct TCP_Server_Info *server = ses->server;
1569 * If the mount request that resulted in the creation of the
1570 * session requires encryption, force IPC to be encrypted too.
1573 if (server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION)
1576 cifs_server_dbg(VFS,
1577 "IPC: server doesn't support encryption\n");
1582 tcon = tconInfoAlloc();
1586 scnprintf(unc, sizeof(unc), "\\\\%s\\IPC$", server->hostname);
1592 rc = server->ops->tree_connect(xid, ses, unc, tcon, ctx->local_nls);
1596 cifs_server_dbg(VFS, "failed to connect to IPC (rc=%d)\n", rc);
1601 cifs_dbg(FYI, "IPC tcon rc = %d ipc tid = %d\n", rc, tcon->tid);
1603 ses->tcon_ipc = tcon;
1609 * cifs_free_ipc - helper to release the session IPC tcon
1610 * @ses: smb session to unmount the IPC from
1612 * Needs to be called everytime a session is destroyed.
1614 * On session close, the IPC is closed and the server must release all tcons of the session.
1615 * No need to send a tree disconnect here.
1617 * Besides, it will make the server to not close durable and resilient files on session close, as
1618 * specified in MS-SMB2 3.3.5.6 Receiving an SMB2 LOGOFF Request.
1621 cifs_free_ipc(struct cifs_ses *ses)
1623 struct cifs_tcon *tcon = ses->tcon_ipc;
1629 ses->tcon_ipc = NULL;
1633 static struct cifs_ses *
1634 cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
1636 struct cifs_ses *ses;
1638 spin_lock(&cifs_tcp_ses_lock);
1639 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
1640 if (ses->status == CifsExiting)
1642 if (!match_session(ses, ctx))
1645 spin_unlock(&cifs_tcp_ses_lock);
1648 spin_unlock(&cifs_tcp_ses_lock);
1652 void cifs_put_smb_ses(struct cifs_ses *ses)
1654 unsigned int rc, xid;
1655 struct TCP_Server_Info *server = ses->server;
1656 cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count);
1658 spin_lock(&cifs_tcp_ses_lock);
1659 if (ses->status == CifsExiting) {
1660 spin_unlock(&cifs_tcp_ses_lock);
1664 cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count);
1665 cifs_dbg(FYI, "%s: ses ipc: %s\n", __func__, ses->tcon_ipc ? ses->tcon_ipc->treeName : "NONE");
1667 if (--ses->ses_count > 0) {
1668 spin_unlock(&cifs_tcp_ses_lock);
1671 spin_unlock(&cifs_tcp_ses_lock);
1673 /* ses_count can never go negative */
1674 WARN_ON(ses->ses_count < 0);
1676 spin_lock(&GlobalMid_Lock);
1677 if (ses->status == CifsGood)
1678 ses->status = CifsExiting;
1679 spin_unlock(&GlobalMid_Lock);
1683 if (ses->status == CifsExiting && server->ops->logoff) {
1685 rc = server->ops->logoff(xid, ses);
1687 cifs_server_dbg(VFS, "%s: Session Logoff failure rc=%d\n",
1692 spin_lock(&cifs_tcp_ses_lock);
1693 list_del_init(&ses->smb_ses_list);
1694 spin_unlock(&cifs_tcp_ses_lock);
1696 /* close any extra channels */
1697 if (ses->chan_count > 1) {
1700 for (i = 1; i < ses->chan_count; i++)
1701 cifs_put_tcp_session(ses->chans[i].server, 0);
1705 cifs_put_tcp_session(server, 0);
1710 /* strlen("cifs:a:") + CIFS_MAX_DOMAINNAME_LEN + 1 */
1711 #define CIFSCREDS_DESC_SIZE (7 + CIFS_MAX_DOMAINNAME_LEN + 1)
1713 /* Populate username and pw fields from keyring if possible */
1715 cifs_set_cifscreds(struct smb3_fs_context *ctx, struct cifs_ses *ses)
1719 const char *delim, *payload;
1723 struct TCP_Server_Info *server = ses->server;
1724 struct sockaddr_in *sa;
1725 struct sockaddr_in6 *sa6;
1726 const struct user_key_payload *upayload;
1728 desc = kmalloc(CIFSCREDS_DESC_SIZE, GFP_KERNEL);
1732 /* try to find an address key first */
1733 switch (server->dstaddr.ss_family) {
1735 sa = (struct sockaddr_in *)&server->dstaddr;
1736 sprintf(desc, "cifs:a:%pI4", &sa->sin_addr.s_addr);
1739 sa6 = (struct sockaddr_in6 *)&server->dstaddr;
1740 sprintf(desc, "cifs:a:%pI6c", &sa6->sin6_addr.s6_addr);
1743 cifs_dbg(FYI, "Bad ss_family (%hu)\n",
1744 server->dstaddr.ss_family);
1749 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
1750 key = request_key(&key_type_logon, desc, "");
1752 if (!ses->domainName) {
1753 cifs_dbg(FYI, "domainName is NULL\n");
1758 /* didn't work, try to find a domain key */
1759 sprintf(desc, "cifs:d:%s", ses->domainName);
1760 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
1761 key = request_key(&key_type_logon, desc, "");
1769 down_read(&key->sem);
1770 upayload = user_key_payload_locked(key);
1771 if (IS_ERR_OR_NULL(upayload)) {
1772 rc = upayload ? PTR_ERR(upayload) : -EINVAL;
1776 /* find first : in payload */
1777 payload = upayload->data;
1778 delim = strnchr(payload, upayload->datalen, ':');
1779 cifs_dbg(FYI, "payload=%s\n", payload);
1781 cifs_dbg(FYI, "Unable to find ':' in payload (datalen=%d)\n",
1787 len = delim - payload;
1788 if (len > CIFS_MAX_USERNAME_LEN || len <= 0) {
1789 cifs_dbg(FYI, "Bad value from username search (len=%zd)\n",
1795 ctx->username = kstrndup(payload, len, GFP_KERNEL);
1796 if (!ctx->username) {
1797 cifs_dbg(FYI, "Unable to allocate %zd bytes for username\n",
1802 cifs_dbg(FYI, "%s: username=%s\n", __func__, ctx->username);
1804 len = key->datalen - (len + 1);
1805 if (len > CIFS_MAX_PASSWORD_LEN || len <= 0) {
1806 cifs_dbg(FYI, "Bad len for password search (len=%zd)\n", len);
1808 kfree(ctx->username);
1809 ctx->username = NULL;
1814 ctx->password = kstrndup(delim, len, GFP_KERNEL);
1815 if (!ctx->password) {
1816 cifs_dbg(FYI, "Unable to allocate %zd bytes for password\n",
1819 kfree(ctx->username);
1820 ctx->username = NULL;
1825 * If we have a domain key then we must set the domainName in the
1828 if (is_domain && ses->domainName) {
1829 ctx->domainname = kstrdup(ses->domainName, GFP_KERNEL);
1830 if (!ctx->domainname) {
1831 cifs_dbg(FYI, "Unable to allocate %zd bytes for domain\n",
1834 kfree(ctx->username);
1835 ctx->username = NULL;
1836 kfree_sensitive(ctx->password);
1837 ctx->password = NULL;
1847 cifs_dbg(FYI, "%s: returning %d\n", __func__, rc);
1850 #else /* ! CONFIG_KEYS */
1852 cifs_set_cifscreds(struct smb3_fs_context *ctx __attribute__((unused)),
1853 struct cifs_ses *ses __attribute__((unused)))
1857 #endif /* CONFIG_KEYS */
1860 * cifs_get_smb_ses - get a session matching @ctx data from @server
1861 * @server: server to setup the session to
1862 * @ctx: superblock configuration context to use to setup the session
1864 * This function assumes it is being called from cifs_mount() where we
1865 * already got a server reference (server refcount +1). See
1866 * cifs_get_tcon() for refcount explanations.
1869 cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
1873 struct cifs_ses *ses;
1874 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
1875 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
1879 ses = cifs_find_smb_ses(server, ctx);
1881 cifs_dbg(FYI, "Existing smb sess found (status=%d)\n",
1884 mutex_lock(&ses->session_mutex);
1885 rc = cifs_negotiate_protocol(xid, ses);
1887 mutex_unlock(&ses->session_mutex);
1888 /* problem -- put our ses reference */
1889 cifs_put_smb_ses(ses);
1893 if (ses->need_reconnect) {
1894 cifs_dbg(FYI, "Session needs reconnect\n");
1895 rc = cifs_setup_session(xid, ses,
1898 mutex_unlock(&ses->session_mutex);
1899 /* problem -- put our reference */
1900 cifs_put_smb_ses(ses);
1905 mutex_unlock(&ses->session_mutex);
1907 /* existing SMB ses has a server reference already */
1908 cifs_put_tcp_session(server, 0);
1913 cifs_dbg(FYI, "Existing smb sess not found\n");
1914 ses = sesInfoAlloc();
1918 /* new SMB session uses our server ref */
1919 ses->server = server;
1920 if (server->dstaddr.ss_family == AF_INET6)
1921 sprintf(ses->ip_addr, "%pI6", &addr6->sin6_addr);
1923 sprintf(ses->ip_addr, "%pI4", &addr->sin_addr);
1925 if (ctx->username) {
1926 ses->user_name = kstrdup(ctx->username, GFP_KERNEL);
1927 if (!ses->user_name)
1931 /* ctx->password freed at unmount */
1932 if (ctx->password) {
1933 ses->password = kstrdup(ctx->password, GFP_KERNEL);
1937 if (ctx->domainname) {
1938 ses->domainName = kstrdup(ctx->domainname, GFP_KERNEL);
1939 if (!ses->domainName)
1942 if (ctx->domainauto)
1943 ses->domainAuto = ctx->domainauto;
1944 ses->cred_uid = ctx->cred_uid;
1945 ses->linux_uid = ctx->linux_uid;
1947 ses->sectype = ctx->sectype;
1948 ses->sign = ctx->sign;
1949 mutex_lock(&ses->session_mutex);
1951 /* add server as first channel */
1952 ses->chans[0].server = server;
1953 ses->chan_count = 1;
1954 ses->chan_max = ctx->multichannel ? ctx->max_channels:1;
1956 rc = cifs_negotiate_protocol(xid, ses);
1958 rc = cifs_setup_session(xid, ses, ctx->local_nls);
1960 /* each channel uses a different signing key */
1961 memcpy(ses->chans[0].signkey, ses->smb3signingkey,
1962 sizeof(ses->smb3signingkey));
1964 mutex_unlock(&ses->session_mutex);
1968 /* success, put it on the list and add it as first channel */
1969 spin_lock(&cifs_tcp_ses_lock);
1970 list_add(&ses->smb_ses_list, &server->smb_ses_list);
1971 spin_unlock(&cifs_tcp_ses_lock);
1975 cifs_setup_ipc(ses, ctx);
1985 static int match_tcon(struct cifs_tcon *tcon, struct smb3_fs_context *ctx)
1987 if (tcon->tidStatus == CifsExiting)
1989 if (strncmp(tcon->treeName, ctx->UNC, MAX_TREE_SIZE))
1991 if (tcon->seal != ctx->seal)
1993 if (tcon->snapshot_time != ctx->snapshot_time)
1995 if (tcon->handle_timeout != ctx->handle_timeout)
1997 if (tcon->no_lease != ctx->no_lease)
1999 if (tcon->nodelete != ctx->nodelete)
2004 static struct cifs_tcon *
2005 cifs_find_tcon(struct cifs_ses *ses, struct smb3_fs_context *ctx)
2007 struct list_head *tmp;
2008 struct cifs_tcon *tcon;
2010 spin_lock(&cifs_tcp_ses_lock);
2011 list_for_each(tmp, &ses->tcon_list) {
2012 tcon = list_entry(tmp, struct cifs_tcon, tcon_list);
2014 if (!match_tcon(tcon, ctx))
2017 spin_unlock(&cifs_tcp_ses_lock);
2020 spin_unlock(&cifs_tcp_ses_lock);
2025 cifs_put_tcon(struct cifs_tcon *tcon)
2028 struct cifs_ses *ses;
2031 * IPC tcon share the lifetime of their session and are
2032 * destroyed in the session put function
2034 if (tcon == NULL || tcon->ipc)
2038 cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count);
2039 spin_lock(&cifs_tcp_ses_lock);
2040 if (--tcon->tc_count > 0) {
2041 spin_unlock(&cifs_tcp_ses_lock);
2045 /* tc_count can never go negative */
2046 WARN_ON(tcon->tc_count < 0);
2048 if (tcon->use_witness) {
2051 rc = cifs_swn_unregister(tcon);
2053 cifs_dbg(VFS, "%s: Failed to unregister for witness notifications: %d\n",
2058 list_del_init(&tcon->tcon_list);
2059 spin_unlock(&cifs_tcp_ses_lock);
2062 if (ses->server->ops->tree_disconnect)
2063 ses->server->ops->tree_disconnect(xid, tcon);
2066 cifs_fscache_release_super_cookie(tcon);
2068 cifs_put_smb_ses(ses);
2072 * cifs_get_tcon - get a tcon matching @ctx data from @ses
2073 * @ses: smb session to issue the request on
2074 * @ctx: the superblock configuration context to use for building the
2076 * - tcon refcount is the number of mount points using the tcon.
2077 * - ses refcount is the number of tcon using the session.
2079 * 1. This function assumes it is being called from cifs_mount() where
2080 * we already got a session reference (ses refcount +1).
2082 * 2. Since we're in the context of adding a mount point, the end
2083 * result should be either:
2085 * a) a new tcon already allocated with refcount=1 (1 mount point) and
2086 * its session refcount incremented (1 new tcon). This +1 was
2087 * already done in (1).
2089 * b) an existing tcon with refcount+1 (add a mount point to it) and
2090 * identical ses refcount (no new tcon). Because of (1) we need to
2091 * decrement the ses refcount.
2093 static struct cifs_tcon *
2094 cifs_get_tcon(struct cifs_ses *ses, struct smb3_fs_context *ctx)
2097 struct cifs_tcon *tcon;
2099 tcon = cifs_find_tcon(ses, ctx);
2102 * tcon has refcount already incremented but we need to
2103 * decrement extra ses reference gotten by caller (case b)
2105 cifs_dbg(FYI, "Found match on UNC path\n");
2106 cifs_put_smb_ses(ses);
2110 if (!ses->server->ops->tree_connect) {
2115 tcon = tconInfoAlloc();
2121 if (ctx->snapshot_time) {
2122 if (ses->server->vals->protocol_id == 0) {
2124 "Use SMB2 or later for snapshot mount option\n");
2128 tcon->snapshot_time = ctx->snapshot_time;
2131 if (ctx->handle_timeout) {
2132 if (ses->server->vals->protocol_id == 0) {
2134 "Use SMB2.1 or later for handle timeout option\n");
2138 tcon->handle_timeout = ctx->handle_timeout;
2142 if (ctx->password) {
2143 tcon->password = kstrdup(ctx->password, GFP_KERNEL);
2144 if (!tcon->password) {
2151 if (ses->server->vals->protocol_id == 0) {
2153 "SMB3 or later required for encryption\n");
2156 } else if (tcon->ses->server->capabilities &
2157 SMB2_GLOBAL_CAP_ENCRYPTION)
2160 cifs_dbg(VFS, "Encryption is not supported on share\n");
2166 if (ctx->linux_ext) {
2167 if (ses->server->posix_ext_supported) {
2168 tcon->posix_extensions = true;
2169 pr_warn_once("SMB3.11 POSIX Extensions are experimental\n");
2171 cifs_dbg(VFS, "Server does not support mounting with posix SMB3.11 extensions\n");
2178 * BB Do we need to wrap session_mutex around this TCon call and Unix
2179 * SetFS as we do on SessSetup and reconnect?
2182 rc = ses->server->ops->tree_connect(xid, ses, ctx->UNC, tcon,
2185 cifs_dbg(FYI, "Tcon rc = %d\n", rc);
2189 tcon->use_persistent = false;
2190 /* check if SMB2 or later, CIFS does not support persistent handles */
2191 if (ctx->persistent) {
2192 if (ses->server->vals->protocol_id == 0) {
2194 "SMB3 or later required for persistent handles\n");
2197 } else if (ses->server->capabilities &
2198 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
2199 tcon->use_persistent = true;
2200 else /* persistent handles requested but not supported */ {
2202 "Persistent handles not supported on share\n");
2206 } else if ((tcon->capabilities & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY)
2207 && (ses->server->capabilities & SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
2208 && (ctx->nopersistent == false)) {
2209 cifs_dbg(FYI, "enabling persistent handles\n");
2210 tcon->use_persistent = true;
2211 } else if (ctx->resilient) {
2212 if (ses->server->vals->protocol_id == 0) {
2214 "SMB2.1 or later required for resilient handles\n");
2218 tcon->use_resilient = true;
2221 tcon->use_witness = false;
2222 if (IS_ENABLED(CONFIG_CIFS_SWN_UPCALL) && ctx->witness) {
2223 if (ses->server->vals->protocol_id >= SMB30_PROT_ID) {
2224 if (tcon->capabilities & SMB2_SHARE_CAP_CLUSTER) {
2226 * Set witness in use flag in first place
2227 * to retry registration in the echo task
2229 tcon->use_witness = true;
2230 /* And try to register immediately */
2231 rc = cifs_swn_register(tcon);
2233 cifs_dbg(VFS, "Failed to register for witness notifications: %d\n", rc);
2237 /* TODO: try to extend for non-cluster uses (eg multichannel) */
2238 cifs_dbg(VFS, "witness requested on mount but no CLUSTER capability on share\n");
2243 cifs_dbg(VFS, "SMB3 or later required for witness option\n");
2249 /* If the user really knows what they are doing they can override */
2250 if (tcon->share_flags & SMB2_SHAREFLAG_NO_CACHING) {
2252 cifs_dbg(VFS, "cache=ro requested on mount but NO_CACHING flag set on share\n");
2253 else if (ctx->cache_rw)
2254 cifs_dbg(VFS, "cache=singleclient requested on mount but NO_CACHING flag set on share\n");
2257 if (ctx->no_lease) {
2258 if (ses->server->vals->protocol_id == 0) {
2260 "SMB2 or later required for nolease option\n");
2264 tcon->no_lease = ctx->no_lease;
2268 * We can have only one retry value for a connection to a share so for
2269 * resources mounted more than once to the same server share the last
2270 * value passed in for the retry flag is used.
2272 tcon->retry = ctx->retry;
2273 tcon->nocase = ctx->nocase;
2274 if (ses->server->capabilities & SMB2_GLOBAL_CAP_DIRECTORY_LEASING)
2275 tcon->nohandlecache = ctx->nohandlecache;
2277 tcon->nohandlecache = true;
2278 tcon->nodelete = ctx->nodelete;
2279 tcon->local_lease = ctx->local_lease;
2280 INIT_LIST_HEAD(&tcon->pending_opens);
2282 spin_lock(&cifs_tcp_ses_lock);
2283 list_add(&tcon->tcon_list, &ses->tcon_list);
2284 spin_unlock(&cifs_tcp_ses_lock);
2286 cifs_fscache_get_super_cookie(tcon);
2296 cifs_put_tlink(struct tcon_link *tlink)
2298 if (!tlink || IS_ERR(tlink))
2301 if (!atomic_dec_and_test(&tlink->tl_count) ||
2302 test_bit(TCON_LINK_IN_TREE, &tlink->tl_flags)) {
2303 tlink->tl_time = jiffies;
2307 if (!IS_ERR(tlink_tcon(tlink)))
2308 cifs_put_tcon(tlink_tcon(tlink));
2314 compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2316 struct cifs_sb_info *old = CIFS_SB(sb);
2317 struct cifs_sb_info *new = mnt_data->cifs_sb;
2318 unsigned int oldflags = old->mnt_cifs_flags & CIFS_MOUNT_MASK;
2319 unsigned int newflags = new->mnt_cifs_flags & CIFS_MOUNT_MASK;
2321 if ((sb->s_flags & CIFS_MS_MASK) != (mnt_data->flags & CIFS_MS_MASK))
2324 if (old->mnt_cifs_serverino_autodisabled)
2325 newflags &= ~CIFS_MOUNT_SERVER_INUM;
2327 if (oldflags != newflags)
2331 * We want to share sb only if we don't specify an r/wsize or
2332 * specified r/wsize is greater than or equal to existing one.
2334 if (new->ctx->wsize && new->ctx->wsize < old->ctx->wsize)
2337 if (new->ctx->rsize && new->ctx->rsize < old->ctx->rsize)
2340 if (!uid_eq(old->ctx->linux_uid, new->ctx->linux_uid) ||
2341 !gid_eq(old->ctx->linux_gid, new->ctx->linux_gid))
2344 if (old->ctx->file_mode != new->ctx->file_mode ||
2345 old->ctx->dir_mode != new->ctx->dir_mode)
2348 if (strcmp(old->local_nls->charset, new->local_nls->charset))
2351 if (old->ctx->acregmax != new->ctx->acregmax)
2353 if (old->ctx->acdirmax != new->ctx->acdirmax)
2360 match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2362 struct cifs_sb_info *old = CIFS_SB(sb);
2363 struct cifs_sb_info *new = mnt_data->cifs_sb;
2364 bool old_set = (old->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) &&
2366 bool new_set = (new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) &&
2369 if (old_set && new_set && !strcmp(new->prepath, old->prepath))
2371 else if (!old_set && !new_set)
2378 cifs_match_super(struct super_block *sb, void *data)
2380 struct cifs_mnt_data *mnt_data = (struct cifs_mnt_data *)data;
2381 struct smb3_fs_context *ctx;
2382 struct cifs_sb_info *cifs_sb;
2383 struct TCP_Server_Info *tcp_srv;
2384 struct cifs_ses *ses;
2385 struct cifs_tcon *tcon;
2386 struct tcon_link *tlink;
2389 spin_lock(&cifs_tcp_ses_lock);
2390 cifs_sb = CIFS_SB(sb);
2391 tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
2392 if (tlink == NULL) {
2393 /* can not match superblock if tlink were ever null */
2394 spin_unlock(&cifs_tcp_ses_lock);
2397 tcon = tlink_tcon(tlink);
2399 tcp_srv = ses->server;
2401 ctx = mnt_data->ctx;
2403 if (!match_server(tcp_srv, ctx) ||
2404 !match_session(ses, ctx) ||
2405 !match_tcon(tcon, ctx) ||
2406 !match_prepath(sb, mnt_data)) {
2411 rc = compare_mount_options(sb, mnt_data);
2413 spin_unlock(&cifs_tcp_ses_lock);
2414 cifs_put_tlink(tlink);
2418 #ifdef CONFIG_DEBUG_LOCK_ALLOC
2419 static struct lock_class_key cifs_key[2];
2420 static struct lock_class_key cifs_slock_key[2];
2423 cifs_reclassify_socket4(struct socket *sock)
2425 struct sock *sk = sock->sk;
2426 BUG_ON(!sock_allow_reclassification(sk));
2427 sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS",
2428 &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]);
2432 cifs_reclassify_socket6(struct socket *sock)
2434 struct sock *sk = sock->sk;
2435 BUG_ON(!sock_allow_reclassification(sk));
2436 sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS",
2437 &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]);
2441 cifs_reclassify_socket4(struct socket *sock)
2446 cifs_reclassify_socket6(struct socket *sock)
2451 /* See RFC1001 section 14 on representation of Netbios names */
2452 static void rfc1002mangle(char *target, char *source, unsigned int length)
2456 for (i = 0, j = 0; i < (length); i++) {
2457 /* mask a nibble at a time and encode */
2458 target[j] = 'A' + (0x0F & (source[i] >> 4));
2459 target[j+1] = 'A' + (0x0F & source[i]);
2466 bind_socket(struct TCP_Server_Info *server)
2469 if (server->srcaddr.ss_family != AF_UNSPEC) {
2470 /* Bind to the specified local IP address */
2471 struct socket *socket = server->ssocket;
2472 rc = socket->ops->bind(socket,
2473 (struct sockaddr *) &server->srcaddr,
2474 sizeof(server->srcaddr));
2476 struct sockaddr_in *saddr4;
2477 struct sockaddr_in6 *saddr6;
2478 saddr4 = (struct sockaddr_in *)&server->srcaddr;
2479 saddr6 = (struct sockaddr_in6 *)&server->srcaddr;
2480 if (saddr6->sin6_family == AF_INET6)
2481 cifs_server_dbg(VFS, "Failed to bind to: %pI6c, error: %d\n",
2482 &saddr6->sin6_addr, rc);
2484 cifs_server_dbg(VFS, "Failed to bind to: %pI4, error: %d\n",
2485 &saddr4->sin_addr.s_addr, rc);
2492 ip_rfc1001_connect(struct TCP_Server_Info *server)
2496 * some servers require RFC1001 sessinit before sending
2497 * negprot - BB check reconnection in case where second
2498 * sessinit is sent but no second negprot
2500 struct rfc1002_session_packet *ses_init_buf;
2501 struct smb_hdr *smb_buf;
2502 ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet),
2505 ses_init_buf->trailer.session_req.called_len = 32;
2507 if (server->server_RFC1001_name[0] != 0)
2508 rfc1002mangle(ses_init_buf->trailer.
2509 session_req.called_name,
2510 server->server_RFC1001_name,
2511 RFC1001_NAME_LEN_WITH_NULL);
2513 rfc1002mangle(ses_init_buf->trailer.
2514 session_req.called_name,
2515 DEFAULT_CIFS_CALLED_NAME,
2516 RFC1001_NAME_LEN_WITH_NULL);
2518 ses_init_buf->trailer.session_req.calling_len = 32;
2521 * calling name ends in null (byte 16) from old smb
2524 if (server->workstation_RFC1001_name[0] != 0)
2525 rfc1002mangle(ses_init_buf->trailer.
2526 session_req.calling_name,
2527 server->workstation_RFC1001_name,
2528 RFC1001_NAME_LEN_WITH_NULL);
2530 rfc1002mangle(ses_init_buf->trailer.
2531 session_req.calling_name,
2533 RFC1001_NAME_LEN_WITH_NULL);
2535 ses_init_buf->trailer.session_req.scope1 = 0;
2536 ses_init_buf->trailer.session_req.scope2 = 0;
2537 smb_buf = (struct smb_hdr *)ses_init_buf;
2539 /* sizeof RFC1002_SESSION_REQUEST with no scope */
2540 smb_buf->smb_buf_length = cpu_to_be32(0x81000044);
2541 rc = smb_send(server, smb_buf, 0x44);
2542 kfree(ses_init_buf);
2544 * RFC1001 layer in at least one server
2545 * requires very short break before negprot
2546 * presumably because not expecting negprot
2547 * to follow so fast. This is a simple
2548 * solution that works without
2549 * complicating the code and causes no
2550 * significant slowing down on mount
2553 usleep_range(1000, 2000);
2556 * else the negprot may still work without this
2557 * even though malloc failed
2564 generic_ip_connect(struct TCP_Server_Info *server)
2569 struct socket *socket = server->ssocket;
2570 struct sockaddr *saddr;
2572 saddr = (struct sockaddr *) &server->dstaddr;
2574 if (server->dstaddr.ss_family == AF_INET6) {
2575 struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)&server->dstaddr;
2577 sport = ipv6->sin6_port;
2578 slen = sizeof(struct sockaddr_in6);
2580 cifs_dbg(FYI, "%s: connecting to [%pI6]:%d\n", __func__, &ipv6->sin6_addr,
2583 struct sockaddr_in *ipv4 = (struct sockaddr_in *)&server->dstaddr;
2585 sport = ipv4->sin_port;
2586 slen = sizeof(struct sockaddr_in);
2588 cifs_dbg(FYI, "%s: connecting to %pI4:%d\n", __func__, &ipv4->sin_addr,
2592 if (socket == NULL) {
2593 rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM,
2594 IPPROTO_TCP, &socket, 1);
2596 cifs_server_dbg(VFS, "Error %d creating socket\n", rc);
2597 server->ssocket = NULL;
2601 /* BB other socket options to set KEEPALIVE, NODELAY? */
2602 cifs_dbg(FYI, "Socket created\n");
2603 server->ssocket = socket;
2604 socket->sk->sk_allocation = GFP_NOFS;
2605 if (sfamily == AF_INET6)
2606 cifs_reclassify_socket6(socket);
2608 cifs_reclassify_socket4(socket);
2611 rc = bind_socket(server);
2616 * Eventually check for other socket options to change from
2617 * the default. sock_setsockopt not used because it expects
2620 socket->sk->sk_rcvtimeo = 7 * HZ;
2621 socket->sk->sk_sndtimeo = 5 * HZ;
2623 /* make the bufsizes depend on wsize/rsize and max requests */
2624 if (server->noautotune) {
2625 if (socket->sk->sk_sndbuf < (200 * 1024))
2626 socket->sk->sk_sndbuf = 200 * 1024;
2627 if (socket->sk->sk_rcvbuf < (140 * 1024))
2628 socket->sk->sk_rcvbuf = 140 * 1024;
2631 if (server->tcp_nodelay)
2632 tcp_sock_set_nodelay(socket->sk);
2634 cifs_dbg(FYI, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx\n",
2635 socket->sk->sk_sndbuf,
2636 socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo);
2638 rc = socket->ops->connect(socket, saddr, slen,
2639 server->noblockcnt ? O_NONBLOCK : 0);
2641 * When mounting SMB root file systems, we do not want to block in
2642 * connect. Otherwise bail out and then let cifs_reconnect() perform
2643 * reconnect failover - if possible.
2645 if (server->noblockcnt && rc == -EINPROGRESS)
2648 cifs_dbg(FYI, "Error %d connecting to server\n", rc);
2649 sock_release(socket);
2650 server->ssocket = NULL;
2654 if (sport == htons(RFC1001_PORT))
2655 rc = ip_rfc1001_connect(server);
2661 ip_connect(struct TCP_Server_Info *server)
2664 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
2665 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
2667 if (server->dstaddr.ss_family == AF_INET6)
2668 sport = &addr6->sin6_port;
2670 sport = &addr->sin_port;
2675 /* try with 445 port at first */
2676 *sport = htons(CIFS_PORT);
2678 rc = generic_ip_connect(server);
2682 /* if it failed, try with 139 port */
2683 *sport = htons(RFC1001_PORT);
2686 return generic_ip_connect(server);
2689 void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon,
2690 struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
2693 * If we are reconnecting then should we check to see if
2694 * any requested capabilities changed locally e.g. via
2695 * remount but we can not do much about it here
2696 * if they have (even if we could detect it by the following)
2697 * Perhaps we could add a backpointer to array of sb from tcon
2698 * or if we change to make all sb to same share the same
2699 * sb as NFS - then we only have one backpointer to sb.
2700 * What if we wanted to mount the server share twice once with
2701 * and once without posixacls or posix paths?
2703 __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
2705 if (ctx && ctx->no_linux_ext) {
2706 tcon->fsUnixInfo.Capability = 0;
2707 tcon->unix_ext = 0; /* Unix Extensions disabled */
2708 cifs_dbg(FYI, "Linux protocol extensions disabled\n");
2711 tcon->unix_ext = 1; /* Unix Extensions supported */
2713 if (!tcon->unix_ext) {
2714 cifs_dbg(FYI, "Unix extensions disabled so not set on reconnect\n");
2718 if (!CIFSSMBQFSUnixInfo(xid, tcon)) {
2719 __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
2720 cifs_dbg(FYI, "unix caps which server supports %lld\n", cap);
2722 * check for reconnect case in which we do not
2723 * want to change the mount behavior if we can avoid it
2727 * turn off POSIX ACL and PATHNAMES if not set
2728 * originally at mount time
2730 if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0)
2731 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
2732 if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
2733 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
2734 cifs_dbg(VFS, "POSIXPATH support change\n");
2735 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
2736 } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
2737 cifs_dbg(VFS, "possible reconnect error\n");
2738 cifs_dbg(VFS, "server disabled POSIX path support\n");
2742 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
2743 cifs_dbg(VFS, "per-share encryption not supported yet\n");
2745 cap &= CIFS_UNIX_CAP_MASK;
2746 if (ctx && ctx->no_psx_acl)
2747 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
2748 else if (CIFS_UNIX_POSIX_ACL_CAP & cap) {
2749 cifs_dbg(FYI, "negotiated posix acl support\n");
2751 cifs_sb->mnt_cifs_flags |=
2752 CIFS_MOUNT_POSIXACL;
2755 if (ctx && ctx->posix_paths == 0)
2756 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
2757 else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2758 cifs_dbg(FYI, "negotiate posix pathnames\n");
2760 cifs_sb->mnt_cifs_flags |=
2761 CIFS_MOUNT_POSIX_PATHS;
2764 cifs_dbg(FYI, "Negotiate caps 0x%x\n", (int)cap);
2765 #ifdef CONFIG_CIFS_DEBUG2
2766 if (cap & CIFS_UNIX_FCNTL_CAP)
2767 cifs_dbg(FYI, "FCNTL cap\n");
2768 if (cap & CIFS_UNIX_EXTATTR_CAP)
2769 cifs_dbg(FYI, "EXTATTR cap\n");
2770 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
2771 cifs_dbg(FYI, "POSIX path cap\n");
2772 if (cap & CIFS_UNIX_XATTR_CAP)
2773 cifs_dbg(FYI, "XATTR cap\n");
2774 if (cap & CIFS_UNIX_POSIX_ACL_CAP)
2775 cifs_dbg(FYI, "POSIX ACL cap\n");
2776 if (cap & CIFS_UNIX_LARGE_READ_CAP)
2777 cifs_dbg(FYI, "very large read cap\n");
2778 if (cap & CIFS_UNIX_LARGE_WRITE_CAP)
2779 cifs_dbg(FYI, "very large write cap\n");
2780 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)
2781 cifs_dbg(FYI, "transport encryption cap\n");
2782 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
2783 cifs_dbg(FYI, "mandatory transport encryption cap\n");
2784 #endif /* CIFS_DEBUG2 */
2785 if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) {
2787 cifs_dbg(FYI, "resetting capabilities failed\n");
2789 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");
2795 int cifs_setup_cifs_sb(struct cifs_sb_info *cifs_sb)
2797 struct smb3_fs_context *ctx = cifs_sb->ctx;
2799 INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks);
2801 spin_lock_init(&cifs_sb->tlink_tree_lock);
2802 cifs_sb->tlink_tree = RB_ROOT;
2804 cifs_dbg(FYI, "file mode: %04ho dir mode: %04ho\n",
2805 ctx->file_mode, ctx->dir_mode);
2807 /* this is needed for ASCII cp to Unicode converts */
2808 if (ctx->iocharset == NULL) {
2809 /* load_nls_default cannot return null */
2810 cifs_sb->local_nls = load_nls_default();
2812 cifs_sb->local_nls = load_nls(ctx->iocharset);
2813 if (cifs_sb->local_nls == NULL) {
2814 cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n",
2819 ctx->local_nls = cifs_sb->local_nls;
2821 smb3_update_mnt_flags(cifs_sb);
2824 cifs_dbg(FYI, "mounting share using direct i/o\n");
2825 if (ctx->cache_ro) {
2826 cifs_dbg(VFS, "mounting share with read only caching. Ensure that the share will not be modified while in use.\n");
2827 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RO_CACHE;
2828 } else if (ctx->cache_rw) {
2829 cifs_dbg(VFS, "mounting share in single client RW caching mode. Ensure that no other systems will be accessing the share.\n");
2830 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_RO_CACHE |
2831 CIFS_MOUNT_RW_CACHE);
2834 if ((ctx->cifs_acl) && (ctx->dynperm))
2835 cifs_dbg(VFS, "mount option dynperm ignored if cifsacl mount option supported\n");
2838 cifs_sb->prepath = kstrdup(ctx->prepath, GFP_KERNEL);
2839 if (cifs_sb->prepath == NULL)
2841 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
2847 /* Release all succeed connections */
2848 static inline void mount_put_conns(struct cifs_sb_info *cifs_sb,
2850 struct TCP_Server_Info *server,
2851 struct cifs_ses *ses, struct cifs_tcon *tcon)
2856 cifs_put_tcon(tcon);
2858 cifs_put_smb_ses(ses);
2860 cifs_put_tcp_session(server, 0);
2861 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_POSIX_PATHS;
2865 /* Get connections for tcp, ses and tcon */
2866 static int mount_get_conns(struct smb3_fs_context *ctx, struct cifs_sb_info *cifs_sb,
2868 struct TCP_Server_Info **nserver,
2869 struct cifs_ses **nses, struct cifs_tcon **ntcon)
2872 struct TCP_Server_Info *server;
2873 struct cifs_ses *ses;
2874 struct cifs_tcon *tcon;
2882 /* get a reference to a tcp session */
2883 server = cifs_get_tcp_session(ctx);
2884 if (IS_ERR(server)) {
2885 rc = PTR_ERR(server);
2891 /* get a reference to a SMB session */
2892 ses = cifs_get_smb_ses(server, ctx);
2900 if ((ctx->persistent == true) && (!(ses->server->capabilities &
2901 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES))) {
2902 cifs_server_dbg(VFS, "persistent handles not supported by server\n");
2906 /* search for existing tcon to this server share */
2907 tcon = cifs_get_tcon(ses, ctx);
2915 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
2916 if (tcon->posix_extensions)
2917 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS;
2919 /* tell server which Unix caps we support */
2920 if (cap_unix(tcon->ses)) {
2922 * reset of caps checks mount to see if unix extensions disabled
2923 * for just this mount.
2925 reset_cifs_unix_caps(*xid, tcon, cifs_sb, ctx);
2926 if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) &&
2927 (le64_to_cpu(tcon->fsUnixInfo.Capability) &
2928 CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP))
2931 tcon->unix_ext = 0; /* server does not support them */
2933 /* do not care if a following call succeed - informational */
2934 if (!tcon->pipe && server->ops->qfs_tcon) {
2935 server->ops->qfs_tcon(*xid, tcon, cifs_sb);
2936 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE) {
2937 if (tcon->fsDevInfo.DeviceCharacteristics &
2938 cpu_to_le32(FILE_READ_ONLY_DEVICE))
2939 cifs_dbg(VFS, "mounted to read only share\n");
2940 else if ((cifs_sb->mnt_cifs_flags &
2941 CIFS_MOUNT_RW_CACHE) == 0)
2942 cifs_dbg(VFS, "read only mount of RW share\n");
2943 /* no need to log a RW mount of a typical RW share */
2948 * Clamp the rsize/wsize mount arguments if they are too big for the server
2949 * and set the rsize/wsize to the negotiated values if not passed in by
2952 if ((cifs_sb->ctx->wsize == 0) ||
2953 (cifs_sb->ctx->wsize > server->ops->negotiate_wsize(tcon, ctx)))
2954 cifs_sb->ctx->wsize = server->ops->negotiate_wsize(tcon, ctx);
2955 if ((cifs_sb->ctx->rsize == 0) ||
2956 (cifs_sb->ctx->rsize > server->ops->negotiate_rsize(tcon, ctx)))
2957 cifs_sb->ctx->rsize = server->ops->negotiate_rsize(tcon, ctx);
2962 static int mount_setup_tlink(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses,
2963 struct cifs_tcon *tcon)
2965 struct tcon_link *tlink;
2967 /* hang the tcon off of the superblock */
2968 tlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
2972 tlink->tl_uid = ses->linux_uid;
2973 tlink->tl_tcon = tcon;
2974 tlink->tl_time = jiffies;
2975 set_bit(TCON_LINK_MASTER, &tlink->tl_flags);
2976 set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
2978 cifs_sb->master_tlink = tlink;
2979 spin_lock(&cifs_sb->tlink_tree_lock);
2980 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
2981 spin_unlock(&cifs_sb->tlink_tree_lock);
2983 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
2988 #ifdef CONFIG_CIFS_DFS_UPCALL
2989 static int mount_get_dfs_conns(struct smb3_fs_context *ctx, struct cifs_sb_info *cifs_sb,
2990 unsigned int *xid, struct TCP_Server_Info **nserver,
2991 struct cifs_ses **nses, struct cifs_tcon **ntcon)
2995 ctx->nosharesock = true;
2996 rc = mount_get_conns(ctx, cifs_sb, xid, nserver, nses, ntcon);
2998 cifs_dbg(FYI, "%s: marking tcp session as a dfs connection\n", __func__);
2999 spin_lock(&cifs_tcp_ses_lock);
3000 (*nserver)->is_dfs_conn = true;
3001 spin_unlock(&cifs_tcp_ses_lock);
3007 * cifs_build_path_to_root returns full path to root when we do not have an
3008 * existing connection (tcon)
3011 build_unc_path_to_root(const struct smb3_fs_context *ctx,
3012 const struct cifs_sb_info *cifs_sb, bool useppath)
3014 char *full_path, *pos;
3015 unsigned int pplen = useppath && ctx->prepath ?
3016 strlen(ctx->prepath) + 1 : 0;
3017 unsigned int unc_len = strnlen(ctx->UNC, MAX_TREE_SIZE + 1);
3019 if (unc_len > MAX_TREE_SIZE)
3020 return ERR_PTR(-EINVAL);
3022 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL);
3023 if (full_path == NULL)
3024 return ERR_PTR(-ENOMEM);
3026 memcpy(full_path, ctx->UNC, unc_len);
3027 pos = full_path + unc_len;
3030 *pos = CIFS_DIR_SEP(cifs_sb);
3031 memcpy(pos + 1, ctx->prepath, pplen);
3035 *pos = '\0'; /* add trailing null */
3036 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
3037 cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path);
3042 * expand_dfs_referral - Perform a dfs referral query and update the cifs_sb
3044 * If a referral is found, cifs_sb->ctx->mount_options will be (re-)allocated
3045 * to a string containing updated options for the submount. Otherwise it
3046 * will be left untouched.
3048 * Returns the rc from get_dfs_path to the caller, which can be used to
3049 * determine whether there were referrals.
3052 expand_dfs_referral(const unsigned int xid, struct cifs_ses *ses,
3053 struct smb3_fs_context *ctx, struct cifs_sb_info *cifs_sb,
3057 struct dfs_info3_param referral = {0};
3058 char *full_path = NULL, *mdata = NULL;
3060 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
3063 full_path = build_unc_path_to_root(ctx, cifs_sb, true);
3064 if (IS_ERR(full_path))
3065 return PTR_ERR(full_path);
3067 rc = dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb),
3068 ref_path, &referral, NULL);
3070 char *fake_devname = NULL;
3072 mdata = cifs_compose_mount_options(cifs_sb->ctx->mount_options,
3073 full_path + 1, &referral,
3075 free_dfs_info_param(&referral);
3077 if (IS_ERR(mdata)) {
3078 rc = PTR_ERR(mdata);
3082 * We can not clear out the whole structure since we
3083 * no longer have an explicit function to parse
3084 * a mount-string. Instead we need to clear out the
3085 * individual fields that are no longer valid.
3087 kfree(ctx->prepath);
3088 ctx->prepath = NULL;
3089 rc = cifs_setup_volume_info(ctx, mdata, fake_devname);
3091 kfree(fake_devname);
3092 kfree(cifs_sb->ctx->mount_options);
3093 cifs_sb->ctx->mount_options = mdata;
3099 static int get_next_dfs_tgt(struct dfs_cache_tgt_list *tgt_list,
3100 struct dfs_cache_tgt_iterator **tgt_it)
3103 *tgt_it = dfs_cache_get_tgt_iterator(tgt_list);
3105 *tgt_it = dfs_cache_get_next_tgt(tgt_list, *tgt_it);
3106 return !*tgt_it ? -EHOSTDOWN : 0;
3109 static int update_vol_info(const struct dfs_cache_tgt_iterator *tgt_it,
3110 struct smb3_fs_context *fake_ctx, struct smb3_fs_context *ctx)
3112 const char *tgt = dfs_cache_get_tgt_name(tgt_it);
3113 int len = strlen(tgt) + 2;
3116 new_unc = kmalloc(len, GFP_KERNEL);
3119 scnprintf(new_unc, len, "\\%s", tgt);
3124 if (fake_ctx->prepath) {
3125 kfree(ctx->prepath);
3126 ctx->prepath = fake_ctx->prepath;
3127 fake_ctx->prepath = NULL;
3129 memcpy(&ctx->dstaddr, &fake_ctx->dstaddr, sizeof(ctx->dstaddr));
3134 static int do_dfs_failover(const char *path, const char *full_path, struct cifs_sb_info *cifs_sb,
3135 struct smb3_fs_context *ctx, struct cifs_ses *root_ses,
3136 unsigned int *xid, struct TCP_Server_Info **server,
3137 struct cifs_ses **ses, struct cifs_tcon **tcon)
3141 struct dfs_cache_tgt_list tgt_list = DFS_CACHE_TGT_LIST_INIT(tgt_list);
3142 struct dfs_cache_tgt_iterator *tgt_it = NULL;
3143 struct smb3_fs_context tmp_ctx = {NULL};
3145 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
3148 npath = dfs_cache_canonical_path(path, cifs_sb->local_nls, cifs_remap(cifs_sb));
3150 return PTR_ERR(npath);
3152 cifs_dbg(FYI, "%s: path=%s full_path=%s\n", __func__, npath, full_path);
3154 rc = dfs_cache_noreq_find(npath, NULL, &tgt_list);
3158 * We use a 'tmp_ctx' here because we need pass it down to the mount_{get,put} functions to
3159 * test connection against new DFS targets.
3161 rc = smb3_fs_context_dup(&tmp_ctx, ctx);
3166 struct dfs_info3_param ref = {0};
3167 char *fake_devname = NULL, *mdata = NULL;
3169 /* Get next DFS target server - if any */
3170 rc = get_next_dfs_tgt(&tgt_list, &tgt_it);
3174 rc = dfs_cache_get_tgt_referral(npath, tgt_it, &ref);
3178 cifs_dbg(FYI, "%s: old ctx: UNC=%s prepath=%s\n", __func__, tmp_ctx.UNC,
3181 mdata = cifs_compose_mount_options(cifs_sb->ctx->mount_options, full_path + 1, &ref,
3183 free_dfs_info_param(&ref);
3185 if (IS_ERR(mdata)) {
3186 rc = PTR_ERR(mdata);
3189 rc = cifs_setup_volume_info(&tmp_ctx, mdata, fake_devname);
3192 kfree(fake_devname);
3197 cifs_dbg(FYI, "%s: new ctx: UNC=%s prepath=%s\n", __func__, tmp_ctx.UNC,
3200 mount_put_conns(cifs_sb, *xid, *server, *ses, *tcon);
3201 rc = mount_get_dfs_conns(&tmp_ctx, cifs_sb, xid, server, ses, tcon);
3202 if (!rc || (*server && *ses)) {
3204 * We were able to connect to new target server. Update current context with
3205 * new target server.
3207 rc = update_vol_info(tgt_it, &tmp_ctx, ctx);
3212 cifs_dbg(FYI, "%s: final ctx: UNC=%s prepath=%s\n", __func__, tmp_ctx.UNC,
3215 * Update DFS target hint in DFS referral cache with the target server we
3216 * successfully reconnected to.
3218 rc = dfs_cache_update_tgthint(*xid, root_ses ? root_ses : *ses, cifs_sb->local_nls,
3219 cifs_remap(cifs_sb), path, tgt_it);
3224 smb3_cleanup_fs_context_contents(&tmp_ctx);
3225 dfs_cache_free_tgts(&tgt_list);
3230 /* TODO: all callers to this are broken. We are not parsing mount_options here
3231 * we should pass a clone of the original context?
3234 cifs_setup_volume_info(struct smb3_fs_context *ctx, const char *mntopts, const char *devname)
3239 cifs_dbg(FYI, "%s: devname=%s\n", __func__, devname);
3240 rc = smb3_parse_devname(devname, ctx);
3242 cifs_dbg(VFS, "%s: failed to parse %s: %d\n", __func__, devname, rc);
3250 rc = smb3_parse_opt(mntopts, "ip", &ip);
3252 cifs_dbg(VFS, "%s: failed to parse ip options: %d\n", __func__, rc);
3256 rc = cifs_convert_address((struct sockaddr *)&ctx->dstaddr, ip, strlen(ip));
3259 cifs_dbg(VFS, "%s: failed to convert ip address\n", __func__);
3264 if (ctx->nullauth) {
3265 cifs_dbg(FYI, "Anonymous login\n");
3266 kfree(ctx->username);
3267 ctx->username = NULL;
3268 } else if (ctx->username) {
3269 /* BB fixme parse for domain name here */
3270 cifs_dbg(FYI, "Username: %s\n", ctx->username);
3272 cifs_dbg(VFS, "No username specified\n");
3273 /* In userspace mount helper we can get user name from alternate
3274 locations such as env variables and files on disk */
3282 cifs_are_all_path_components_accessible(struct TCP_Server_Info *server,
3284 struct cifs_tcon *tcon,
3285 struct cifs_sb_info *cifs_sb,
3292 int skip = added_treename ? 1 : 0;
3294 sep = CIFS_DIR_SEP(cifs_sb);
3297 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, "");
3299 /* skip separators */
3304 /* next separator */
3305 while (*s && *s != sep)
3308 * if the treename is added, we then have to skip the first
3309 * part within the separators
3316 * temporarily null-terminate the path at the end of
3317 * the current component
3321 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3329 * Check if path is remote (e.g. a DFS share). Return -EREMOTE if it is,
3332 static int is_path_remote(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx,
3333 const unsigned int xid,
3334 struct TCP_Server_Info *server,
3335 struct cifs_tcon *tcon)
3340 if (!server->ops->is_path_accessible)
3344 * cifs_build_path_to_root works only when we have a valid tcon
3346 full_path = cifs_build_path_to_root(ctx, cifs_sb, tcon,
3347 tcon->Flags & SMB_SHARE_IS_IN_DFS);
3348 if (full_path == NULL)
3351 cifs_dbg(FYI, "%s: full_path: %s\n", __func__, full_path);
3353 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3355 if (rc != 0 && rc != -EREMOTE) {
3360 if (rc != -EREMOTE) {
3361 rc = cifs_are_all_path_components_accessible(server, xid, tcon,
3362 cifs_sb, full_path, tcon->Flags & SMB_SHARE_IS_IN_DFS);
3364 cifs_server_dbg(VFS, "cannot query dirs between root and final path, enabling CIFS_MOUNT_USE_PREFIX_PATH\n");
3365 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3374 #ifdef CONFIG_CIFS_DFS_UPCALL
3375 static void set_root_ses(struct cifs_sb_info *cifs_sb, const uuid_t *mount_id, struct cifs_ses *ses,
3376 struct cifs_ses **root_ses)
3379 spin_lock(&cifs_tcp_ses_lock);
3381 spin_unlock(&cifs_tcp_ses_lock);
3382 dfs_cache_add_refsrv_session(mount_id, ses);
3387 /* Set up next dfs prefix path in @dfs_path */
3388 static int next_dfs_prepath(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx,
3389 const unsigned int xid, struct TCP_Server_Info *server,
3390 struct cifs_tcon *tcon, char **dfs_path)
3393 int added_treename = is_tcon_dfs(tcon);
3396 path = cifs_build_path_to_root(ctx, cifs_sb, tcon, added_treename);
3400 rc = is_path_remote(cifs_sb, ctx, xid, server, tcon);
3401 if (rc == -EREMOTE) {
3402 struct smb3_fs_context v = {NULL};
3403 /* if @path contains a tree name, skip it in the prefix path */
3404 if (added_treename) {
3405 rc = smb3_parse_devname(path, &v);
3408 npath = build_unc_path_to_root(&v, cifs_sb, true);
3409 smb3_cleanup_fs_context_contents(&v);
3412 v.prepath = path + 1;
3413 npath = build_unc_path_to_root(&v, cifs_sb, true);
3416 if (IS_ERR(npath)) {
3417 rc = PTR_ERR(npath);
3431 /* Check if resolved targets can handle any DFS referrals */
3432 static int is_referral_server(const char *ref_path, struct cifs_sb_info *cifs_sb,
3433 struct cifs_tcon *tcon, bool *ref_server)
3436 struct dfs_info3_param ref = {0};
3438 cifs_dbg(FYI, "%s: ref_path=%s\n", __func__, ref_path);
3440 if (is_tcon_dfs(tcon)) {
3445 npath = dfs_cache_canonical_path(ref_path, cifs_sb->local_nls, cifs_remap(cifs_sb));
3447 return PTR_ERR(npath);
3449 rc = dfs_cache_noreq_find(npath, &ref, NULL);
3452 cifs_dbg(VFS, "%s: dfs_cache_noreq_find: failed (rc=%d)\n", __func__, rc);
3455 cifs_dbg(FYI, "%s: ref.flags=0x%x\n", __func__, ref.flags);
3457 * Check if all targets are capable of handling DFS referrals as per
3458 * MS-DFSC 2.2.4 RESP_GET_DFS_REFERRAL.
3460 *ref_server = !!(ref.flags & DFSREF_REFERRAL_SERVER);
3461 free_dfs_info_param(&ref);
3466 int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
3470 struct TCP_Server_Info *server = NULL;
3471 struct cifs_ses *ses = NULL, *root_ses = NULL;
3472 struct cifs_tcon *tcon = NULL;
3474 uuid_t mount_id = {0};
3475 char *ref_path = NULL, *full_path = NULL;
3476 char *oldmnt = NULL;
3477 bool ref_server = false;
3479 rc = mount_get_conns(ctx, cifs_sb, &xid, &server, &ses, &tcon);
3481 * If called with 'nodfs' mount option, then skip DFS resolving. Otherwise unconditionally
3482 * try to get an DFS referral (even cached) to determine whether it is an DFS mount.
3484 * Skip prefix path to provide support for DFS referrals from w2k8 servers which don't seem
3485 * to respond with PATH_NOT_COVERED to requests that include the prefix.
3487 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS) ||
3488 dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb), ctx->UNC + 1, NULL,
3492 /* Check if it is fully accessible and then mount it */
3493 rc = is_path_remote(cifs_sb, ctx, xid, server, tcon);
3500 mount_put_conns(cifs_sb, xid, server, ses, tcon);
3502 * Ignore error check here because we may failover to other targets from cached a
3505 (void)mount_get_dfs_conns(ctx, cifs_sb, &xid, &server, &ses, &tcon);
3507 /* Get path of DFS root */
3508 ref_path = build_unc_path_to_root(ctx, cifs_sb, false);
3509 if (IS_ERR(ref_path)) {
3510 rc = PTR_ERR(ref_path);
3515 uuid_gen(&mount_id);
3516 set_root_ses(cifs_sb, &mount_id, ses, &root_ses);
3518 /* Save full path of last DFS path we used to resolve final target server */
3520 full_path = build_unc_path_to_root(ctx, cifs_sb, !!count);
3521 if (IS_ERR(full_path)) {
3522 rc = PTR_ERR(full_path);
3526 /* Chase referral */
3527 oldmnt = cifs_sb->ctx->mount_options;
3528 rc = expand_dfs_referral(xid, root_ses, ctx, cifs_sb, ref_path + 1);
3531 /* Connect to new DFS target only if we were redirected */
3532 if (oldmnt != cifs_sb->ctx->mount_options) {
3533 mount_put_conns(cifs_sb, xid, server, ses, tcon);
3534 rc = mount_get_dfs_conns(ctx, cifs_sb, &xid, &server, &ses, &tcon);
3536 if (rc && !server && !ses) {
3537 /* Failed to connect. Try to connect to other targets in the referral. */
3538 rc = do_dfs_failover(ref_path + 1, full_path, cifs_sb, ctx, root_ses, &xid,
3539 &server, &ses, &tcon);
3541 if (rc == -EACCES || rc == -EOPNOTSUPP || !server || !ses)
3546 /* Make sure that requests go through new root servers */
3547 rc = is_referral_server(ref_path + 1, cifs_sb, tcon, &ref_server);
3551 set_root_ses(cifs_sb, &mount_id, ses, &root_ses);
3553 /* Get next dfs path and then continue chasing them if -EREMOTE */
3554 rc = next_dfs_prepath(cifs_sb, ctx, xid, server, tcon, &ref_path);
3555 /* Prevent recursion on broken link referrals */
3556 if (rc == -EREMOTE && ++count > MAX_NESTED_LINKS)
3558 } while (rc == -EREMOTE);
3560 if (rc || !tcon || !ses)
3565 * Store DFS full path in both superblock and tree connect structures.
3567 * For DFS root mounts, the prefix path (cifs_sb->prepath) is preserved during reconnect so
3568 * only the root path is set in cifs_sb->origin_fullpath and tcon->dfs_path. And for DFS
3569 * links, the prefix path is included in both and may be changed during reconnect. See
3570 * cifs_tree_connect().
3572 ref_path = dfs_cache_canonical_path(full_path, cifs_sb->local_nls, cifs_remap(cifs_sb));
3576 if (IS_ERR(ref_path)) {
3577 rc = PTR_ERR(ref_path);
3581 cifs_sb->origin_fullpath = ref_path;
3583 ref_path = kstrdup(cifs_sb->origin_fullpath, GFP_KERNEL);
3588 spin_lock(&cifs_tcp_ses_lock);
3589 tcon->dfs_path = ref_path;
3591 spin_unlock(&cifs_tcp_ses_lock);
3594 * After reconnecting to a different server, unique ids won't
3595 * match anymore, so we disable serverino. This prevents
3596 * dentry revalidation to think the dentry are stale (ESTALE).
3598 cifs_autodisable_serverino(cifs_sb);
3600 * Force the use of prefix path to support failover on DFS paths that
3601 * resolve to targets that have different prefix paths.
3603 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3604 kfree(cifs_sb->prepath);
3605 cifs_sb->prepath = ctx->prepath;
3606 ctx->prepath = NULL;
3607 uuid_copy(&cifs_sb->dfs_mount_id, &mount_id);
3611 cifs_try_adding_channels(cifs_sb, ses);
3612 return mount_setup_tlink(cifs_sb, ses, tcon);
3617 kfree(cifs_sb->origin_fullpath);
3618 dfs_cache_put_refsrv_sessions(&mount_id);
3619 mount_put_conns(cifs_sb, xid, server, ses, tcon);
3623 int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
3627 struct cifs_ses *ses;
3628 struct cifs_tcon *tcon;
3629 struct TCP_Server_Info *server;
3631 rc = mount_get_conns(ctx, cifs_sb, &xid, &server, &ses, &tcon);
3636 rc = is_path_remote(cifs_sb, ctx, xid, server, tcon);
3645 return mount_setup_tlink(cifs_sb, ses, tcon);
3648 mount_put_conns(cifs_sb, xid, server, ses, tcon);
3654 * Issue a TREE_CONNECT request.
3657 CIFSTCon(const unsigned int xid, struct cifs_ses *ses,
3658 const char *tree, struct cifs_tcon *tcon,
3659 const struct nls_table *nls_codepage)
3661 struct smb_hdr *smb_buffer;
3662 struct smb_hdr *smb_buffer_response;
3665 unsigned char *bcc_ptr;
3668 __u16 bytes_left, count;
3673 smb_buffer = cifs_buf_get();
3674 if (smb_buffer == NULL)
3677 smb_buffer_response = smb_buffer;
3679 header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX,
3680 NULL /*no tid */ , 4 /*wct */ );
3682 smb_buffer->Mid = get_next_mid(ses->server);
3683 smb_buffer->Uid = ses->Suid;
3684 pSMB = (TCONX_REQ *) smb_buffer;
3685 pSMBr = (TCONX_RSP *) smb_buffer_response;
3687 pSMB->AndXCommand = 0xFF;
3688 pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO);
3689 bcc_ptr = &pSMB->Password[0];
3690 if (tcon->pipe || (ses->server->sec_mode & SECMODE_USER)) {
3691 pSMB->PasswordLength = cpu_to_le16(1); /* minimum */
3692 *bcc_ptr = 0; /* password is null byte */
3693 bcc_ptr++; /* skip password */
3694 /* already aligned so no need to do it below */
3697 if (ses->server->sign)
3698 smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
3700 if (ses->capabilities & CAP_STATUS32) {
3701 smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS;
3703 if (ses->capabilities & CAP_DFS) {
3704 smb_buffer->Flags2 |= SMBFLG2_DFS;
3706 if (ses->capabilities & CAP_UNICODE) {
3707 smb_buffer->Flags2 |= SMBFLG2_UNICODE;
3709 cifs_strtoUTF16((__le16 *) bcc_ptr, tree,
3710 6 /* max utf8 char length in bytes */ *
3711 (/* server len*/ + 256 /* share len */), nls_codepage);
3712 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */
3713 bcc_ptr += 2; /* skip trailing null */
3714 } else { /* ASCII */
3715 strcpy(bcc_ptr, tree);
3716 bcc_ptr += strlen(tree) + 1;
3718 strcpy(bcc_ptr, "?????");
3719 bcc_ptr += strlen("?????");
3721 count = bcc_ptr - &pSMB->Password[0];
3722 be32_add_cpu(&pSMB->hdr.smb_buf_length, count);
3723 pSMB->ByteCount = cpu_to_le16(count);
3725 rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length,
3728 /* above now done in SendReceive */
3732 tcon->tidStatus = CifsGood;
3733 tcon->need_reconnect = false;
3734 tcon->tid = smb_buffer_response->Tid;
3735 bcc_ptr = pByteArea(smb_buffer_response);
3736 bytes_left = get_bcc(smb_buffer_response);
3737 length = strnlen(bcc_ptr, bytes_left - 2);
3738 if (smb_buffer->Flags2 & SMBFLG2_UNICODE)
3744 /* skip service field (NB: this field is always ASCII) */
3746 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') &&
3747 (bcc_ptr[2] == 'C')) {
3748 cifs_dbg(FYI, "IPC connection\n");
3752 } else if (length == 2) {
3753 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) {
3754 /* the most common case */
3755 cifs_dbg(FYI, "disk share connection\n");
3758 bcc_ptr += length + 1;
3759 bytes_left -= (length + 1);
3760 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
3762 /* mostly informational -- no need to fail on error here */
3763 kfree(tcon->nativeFileSystem);
3764 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr,
3765 bytes_left, is_unicode,
3768 cifs_dbg(FYI, "nativeFileSystem=%s\n", tcon->nativeFileSystem);
3770 if ((smb_buffer_response->WordCount == 3) ||
3771 (smb_buffer_response->WordCount == 7))
3772 /* field is in same location */
3773 tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport);
3776 cifs_dbg(FYI, "Tcon flags: 0x%x\n", tcon->Flags);
3779 cifs_buf_release(smb_buffer);
3783 static void delayed_free(struct rcu_head *p)
3785 struct cifs_sb_info *cifs_sb = container_of(p, struct cifs_sb_info, rcu);
3787 unload_nls(cifs_sb->local_nls);
3788 smb3_cleanup_fs_context(cifs_sb->ctx);
3793 cifs_umount(struct cifs_sb_info *cifs_sb)
3795 struct rb_root *root = &cifs_sb->tlink_tree;
3796 struct rb_node *node;
3797 struct tcon_link *tlink;
3799 cancel_delayed_work_sync(&cifs_sb->prune_tlinks);
3801 spin_lock(&cifs_sb->tlink_tree_lock);
3802 while ((node = rb_first(root))) {
3803 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
3804 cifs_get_tlink(tlink);
3805 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
3806 rb_erase(node, root);
3808 spin_unlock(&cifs_sb->tlink_tree_lock);
3809 cifs_put_tlink(tlink);
3810 spin_lock(&cifs_sb->tlink_tree_lock);
3812 spin_unlock(&cifs_sb->tlink_tree_lock);
3814 kfree(cifs_sb->prepath);
3815 #ifdef CONFIG_CIFS_DFS_UPCALL
3816 dfs_cache_put_refsrv_sessions(&cifs_sb->dfs_mount_id);
3817 kfree(cifs_sb->origin_fullpath);
3819 call_rcu(&cifs_sb->rcu, delayed_free);
3823 cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses)
3826 struct TCP_Server_Info *server = cifs_ses_server(ses);
3828 if (!server->ops->need_neg || !server->ops->negotiate)
3831 /* only send once per connect */
3832 if (!server->ops->need_neg(server))
3835 rc = server->ops->negotiate(xid, ses);
3837 spin_lock(&GlobalMid_Lock);
3838 if (server->tcpStatus == CifsNeedNegotiate)
3839 server->tcpStatus = CifsGood;
3842 spin_unlock(&GlobalMid_Lock);
3849 cifs_setup_session(const unsigned int xid, struct cifs_ses *ses,
3850 struct nls_table *nls_info)
3853 struct TCP_Server_Info *server = cifs_ses_server(ses);
3855 if (!ses->binding) {
3856 ses->capabilities = server->capabilities;
3857 if (!linuxExtEnabled)
3858 ses->capabilities &= (~server->vals->cap_unix);
3860 if (ses->auth_key.response) {
3861 cifs_dbg(FYI, "Free previous auth_key.response = %p\n",
3862 ses->auth_key.response);
3863 kfree(ses->auth_key.response);
3864 ses->auth_key.response = NULL;
3865 ses->auth_key.len = 0;
3869 cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n",
3870 server->sec_mode, server->capabilities, server->timeAdj);
3872 if (server->ops->sess_setup)
3873 rc = server->ops->sess_setup(xid, ses, nls_info);
3876 cifs_server_dbg(VFS, "Send error in SessSetup = %d\n", rc);
3882 cifs_set_vol_auth(struct smb3_fs_context *ctx, struct cifs_ses *ses)
3884 ctx->sectype = ses->sectype;
3886 /* krb5 is special, since we don't need username or pw */
3887 if (ctx->sectype == Kerberos)
3890 return cifs_set_cifscreds(ctx, ses);
3893 static struct cifs_tcon *
3894 cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid)
3897 struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb);
3898 struct cifs_ses *ses;
3899 struct cifs_tcon *tcon = NULL;
3900 struct smb3_fs_context *ctx;
3902 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
3904 return ERR_PTR(-ENOMEM);
3906 ctx->local_nls = cifs_sb->local_nls;
3907 ctx->linux_uid = fsuid;
3908 ctx->cred_uid = fsuid;
3909 ctx->UNC = master_tcon->treeName;
3910 ctx->retry = master_tcon->retry;
3911 ctx->nocase = master_tcon->nocase;
3912 ctx->nohandlecache = master_tcon->nohandlecache;
3913 ctx->local_lease = master_tcon->local_lease;
3914 ctx->no_lease = master_tcon->no_lease;
3915 ctx->resilient = master_tcon->use_resilient;
3916 ctx->persistent = master_tcon->use_persistent;
3917 ctx->handle_timeout = master_tcon->handle_timeout;
3918 ctx->no_linux_ext = !master_tcon->unix_ext;
3919 ctx->linux_ext = master_tcon->posix_extensions;
3920 ctx->sectype = master_tcon->ses->sectype;
3921 ctx->sign = master_tcon->ses->sign;
3922 ctx->seal = master_tcon->seal;
3923 ctx->witness = master_tcon->use_witness;
3925 rc = cifs_set_vol_auth(ctx, master_tcon->ses);
3931 /* get a reference for the same TCP session */
3932 spin_lock(&cifs_tcp_ses_lock);
3933 ++master_tcon->ses->server->srv_count;
3934 spin_unlock(&cifs_tcp_ses_lock);
3936 ses = cifs_get_smb_ses(master_tcon->ses->server, ctx);
3938 tcon = (struct cifs_tcon *)ses;
3939 cifs_put_tcp_session(master_tcon->ses->server, 0);
3943 tcon = cifs_get_tcon(ses, ctx);
3945 cifs_put_smb_ses(ses);
3950 reset_cifs_unix_caps(0, tcon, NULL, ctx);
3953 kfree(ctx->username);
3954 kfree_sensitive(ctx->password);
3961 cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb)
3963 return tlink_tcon(cifs_sb_master_tlink(cifs_sb));
3966 /* find and return a tlink with given uid */
3967 static struct tcon_link *
3968 tlink_rb_search(struct rb_root *root, kuid_t uid)
3970 struct rb_node *node = root->rb_node;
3971 struct tcon_link *tlink;
3974 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
3976 if (uid_gt(tlink->tl_uid, uid))
3977 node = node->rb_left;
3978 else if (uid_lt(tlink->tl_uid, uid))
3979 node = node->rb_right;
3986 /* insert a tcon_link into the tree */
3988 tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink)
3990 struct rb_node **new = &(root->rb_node), *parent = NULL;
3991 struct tcon_link *tlink;
3994 tlink = rb_entry(*new, struct tcon_link, tl_rbnode);
3997 if (uid_gt(tlink->tl_uid, new_tlink->tl_uid))
3998 new = &((*new)->rb_left);
4000 new = &((*new)->rb_right);
4003 rb_link_node(&new_tlink->tl_rbnode, parent, new);
4004 rb_insert_color(&new_tlink->tl_rbnode, root);
4008 * Find or construct an appropriate tcon given a cifs_sb and the fsuid of the
4011 * If the superblock doesn't refer to a multiuser mount, then just return
4012 * the master tcon for the mount.
4014 * First, search the rbtree for an existing tcon for this fsuid. If one
4015 * exists, then check to see if it's pending construction. If it is then wait
4016 * for construction to complete. Once it's no longer pending, check to see if
4017 * it failed and either return an error or retry construction, depending on
4020 * If one doesn't exist then insert a new tcon_link struct into the tree and
4021 * try to construct a new one.
4024 cifs_sb_tlink(struct cifs_sb_info *cifs_sb)
4027 kuid_t fsuid = current_fsuid();
4028 struct tcon_link *tlink, *newtlink;
4030 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
4031 return cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
4033 spin_lock(&cifs_sb->tlink_tree_lock);
4034 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
4036 cifs_get_tlink(tlink);
4037 spin_unlock(&cifs_sb->tlink_tree_lock);
4039 if (tlink == NULL) {
4040 newtlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
4041 if (newtlink == NULL)
4042 return ERR_PTR(-ENOMEM);
4043 newtlink->tl_uid = fsuid;
4044 newtlink->tl_tcon = ERR_PTR(-EACCES);
4045 set_bit(TCON_LINK_PENDING, &newtlink->tl_flags);
4046 set_bit(TCON_LINK_IN_TREE, &newtlink->tl_flags);
4047 cifs_get_tlink(newtlink);
4049 spin_lock(&cifs_sb->tlink_tree_lock);
4050 /* was one inserted after previous search? */
4051 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
4053 cifs_get_tlink(tlink);
4054 spin_unlock(&cifs_sb->tlink_tree_lock);
4056 goto wait_for_construction;
4059 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
4060 spin_unlock(&cifs_sb->tlink_tree_lock);
4062 wait_for_construction:
4063 ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING,
4064 TASK_INTERRUPTIBLE);
4066 cifs_put_tlink(tlink);
4067 return ERR_PTR(-ERESTARTSYS);
4070 /* if it's good, return it */
4071 if (!IS_ERR(tlink->tl_tcon))
4074 /* return error if we tried this already recently */
4075 if (time_before(jiffies, tlink->tl_time + TLINK_ERROR_EXPIRE)) {
4076 cifs_put_tlink(tlink);
4077 return ERR_PTR(-EACCES);
4080 if (test_and_set_bit(TCON_LINK_PENDING, &tlink->tl_flags))
4081 goto wait_for_construction;
4084 tlink->tl_tcon = cifs_construct_tcon(cifs_sb, fsuid);
4085 clear_bit(TCON_LINK_PENDING, &tlink->tl_flags);
4086 wake_up_bit(&tlink->tl_flags, TCON_LINK_PENDING);
4088 if (IS_ERR(tlink->tl_tcon)) {
4089 cifs_put_tlink(tlink);
4090 return ERR_PTR(-EACCES);
4097 * periodic workqueue job that scans tcon_tree for a superblock and closes
4101 cifs_prune_tlinks(struct work_struct *work)
4103 struct cifs_sb_info *cifs_sb = container_of(work, struct cifs_sb_info,
4105 struct rb_root *root = &cifs_sb->tlink_tree;
4106 struct rb_node *node;
4107 struct rb_node *tmp;
4108 struct tcon_link *tlink;
4111 * Because we drop the spinlock in the loop in order to put the tlink
4112 * it's not guarded against removal of links from the tree. The only
4113 * places that remove entries from the tree are this function and
4114 * umounts. Because this function is non-reentrant and is canceled
4115 * before umount can proceed, this is safe.
4117 spin_lock(&cifs_sb->tlink_tree_lock);
4118 node = rb_first(root);
4119 while (node != NULL) {
4121 node = rb_next(tmp);
4122 tlink = rb_entry(tmp, struct tcon_link, tl_rbnode);
4124 if (test_bit(TCON_LINK_MASTER, &tlink->tl_flags) ||
4125 atomic_read(&tlink->tl_count) != 0 ||
4126 time_after(tlink->tl_time + TLINK_IDLE_EXPIRE, jiffies))
4129 cifs_get_tlink(tlink);
4130 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4131 rb_erase(tmp, root);
4133 spin_unlock(&cifs_sb->tlink_tree_lock);
4134 cifs_put_tlink(tlink);
4135 spin_lock(&cifs_sb->tlink_tree_lock);
4137 spin_unlock(&cifs_sb->tlink_tree_lock);
4139 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
4143 #ifdef CONFIG_CIFS_DFS_UPCALL
4144 int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc)
4147 struct TCP_Server_Info *server = tcon->ses->server;
4148 const struct smb_version_operations *ops = server->ops;
4149 struct dfs_cache_tgt_list tl;
4150 struct dfs_cache_tgt_iterator *it = NULL;
4152 const char *tcp_host;
4153 size_t tcp_host_len;
4154 const char *dfs_host;
4155 size_t dfs_host_len;
4156 char *share = NULL, *prefix = NULL;
4157 struct dfs_info3_param ref = {0};
4160 tree = kzalloc(MAX_TREE_SIZE, GFP_KERNEL);
4164 /* If it is not dfs or there was no cached dfs referral, then reconnect to same share */
4165 if (!tcon->dfs_path || dfs_cache_noreq_find(tcon->dfs_path + 1, &ref, &tl)) {
4167 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname);
4168 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc);
4170 rc = ops->tree_connect(xid, tcon->ses, tcon->treeName, tcon, nlsc);
4175 isroot = ref.server_type == DFS_TYPE_ROOT;
4176 free_dfs_info_param(&ref);
4178 extract_unc_hostname(server->hostname, &tcp_host, &tcp_host_len);
4180 for (it = dfs_cache_get_tgt_iterator(&tl); it; it = dfs_cache_get_next_tgt(&tl, it)) {
4188 rc = dfs_cache_get_tgt_share(tcon->dfs_path + 1, it, &share, &prefix);
4190 cifs_dbg(VFS, "%s: failed to parse target share %d\n",
4195 extract_unc_hostname(share, &dfs_host, &dfs_host_len);
4197 if (dfs_host_len != tcp_host_len
4198 || strncasecmp(dfs_host, tcp_host, dfs_host_len) != 0) {
4199 cifs_dbg(FYI, "%s: %.*s doesn't match %.*s\n", __func__, (int)dfs_host_len,
4200 dfs_host, (int)tcp_host_len, tcp_host);
4202 rc = match_target_ip(server, dfs_host, dfs_host_len, &target_match);
4204 cifs_dbg(VFS, "%s: failed to match target ip: %d\n", __func__, rc);
4208 if (!target_match) {
4209 cifs_dbg(FYI, "%s: skipping target\n", __func__);
4215 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", share);
4216 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc);
4218 scnprintf(tree, MAX_TREE_SIZE, "\\%s", share);
4219 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc);
4220 /* Only handle prefix paths of DFS link targets */
4221 if (!rc && !isroot) {
4222 rc = update_super_prepath(tcon, prefix);
4235 rc = dfs_cache_noreq_update_tgthint(tcon->dfs_path + 1, it);
4239 dfs_cache_free_tgts(&tl);
4245 int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc)
4247 const struct smb_version_operations *ops = tcon->ses->server->ops;
4249 return ops->tree_connect(xid, tcon->ses, tcon->treeName, tcon, nlsc);