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 (IS_ERR(tlink)) {
2393 spin_unlock(&cifs_tcp_ses_lock);
2396 tcon = tlink_tcon(tlink);
2398 tcp_srv = ses->server;
2400 ctx = mnt_data->ctx;
2402 if (!match_server(tcp_srv, ctx) ||
2403 !match_session(ses, ctx) ||
2404 !match_tcon(tcon, ctx) ||
2405 !match_prepath(sb, mnt_data)) {
2410 rc = compare_mount_options(sb, mnt_data);
2412 spin_unlock(&cifs_tcp_ses_lock);
2413 cifs_put_tlink(tlink);
2417 #ifdef CONFIG_DEBUG_LOCK_ALLOC
2418 static struct lock_class_key cifs_key[2];
2419 static struct lock_class_key cifs_slock_key[2];
2422 cifs_reclassify_socket4(struct socket *sock)
2424 struct sock *sk = sock->sk;
2425 BUG_ON(!sock_allow_reclassification(sk));
2426 sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS",
2427 &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]);
2431 cifs_reclassify_socket6(struct socket *sock)
2433 struct sock *sk = sock->sk;
2434 BUG_ON(!sock_allow_reclassification(sk));
2435 sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS",
2436 &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]);
2440 cifs_reclassify_socket4(struct socket *sock)
2445 cifs_reclassify_socket6(struct socket *sock)
2450 /* See RFC1001 section 14 on representation of Netbios names */
2451 static void rfc1002mangle(char *target, char *source, unsigned int length)
2455 for (i = 0, j = 0; i < (length); i++) {
2456 /* mask a nibble at a time and encode */
2457 target[j] = 'A' + (0x0F & (source[i] >> 4));
2458 target[j+1] = 'A' + (0x0F & source[i]);
2465 bind_socket(struct TCP_Server_Info *server)
2468 if (server->srcaddr.ss_family != AF_UNSPEC) {
2469 /* Bind to the specified local IP address */
2470 struct socket *socket = server->ssocket;
2471 rc = socket->ops->bind(socket,
2472 (struct sockaddr *) &server->srcaddr,
2473 sizeof(server->srcaddr));
2475 struct sockaddr_in *saddr4;
2476 struct sockaddr_in6 *saddr6;
2477 saddr4 = (struct sockaddr_in *)&server->srcaddr;
2478 saddr6 = (struct sockaddr_in6 *)&server->srcaddr;
2479 if (saddr6->sin6_family == AF_INET6)
2480 cifs_server_dbg(VFS, "Failed to bind to: %pI6c, error: %d\n",
2481 &saddr6->sin6_addr, rc);
2483 cifs_server_dbg(VFS, "Failed to bind to: %pI4, error: %d\n",
2484 &saddr4->sin_addr.s_addr, rc);
2491 ip_rfc1001_connect(struct TCP_Server_Info *server)
2495 * some servers require RFC1001 sessinit before sending
2496 * negprot - BB check reconnection in case where second
2497 * sessinit is sent but no second negprot
2499 struct rfc1002_session_packet *ses_init_buf;
2500 struct smb_hdr *smb_buf;
2501 ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet),
2504 ses_init_buf->trailer.session_req.called_len = 32;
2506 if (server->server_RFC1001_name[0] != 0)
2507 rfc1002mangle(ses_init_buf->trailer.
2508 session_req.called_name,
2509 server->server_RFC1001_name,
2510 RFC1001_NAME_LEN_WITH_NULL);
2512 rfc1002mangle(ses_init_buf->trailer.
2513 session_req.called_name,
2514 DEFAULT_CIFS_CALLED_NAME,
2515 RFC1001_NAME_LEN_WITH_NULL);
2517 ses_init_buf->trailer.session_req.calling_len = 32;
2520 * calling name ends in null (byte 16) from old smb
2523 if (server->workstation_RFC1001_name[0] != 0)
2524 rfc1002mangle(ses_init_buf->trailer.
2525 session_req.calling_name,
2526 server->workstation_RFC1001_name,
2527 RFC1001_NAME_LEN_WITH_NULL);
2529 rfc1002mangle(ses_init_buf->trailer.
2530 session_req.calling_name,
2532 RFC1001_NAME_LEN_WITH_NULL);
2534 ses_init_buf->trailer.session_req.scope1 = 0;
2535 ses_init_buf->trailer.session_req.scope2 = 0;
2536 smb_buf = (struct smb_hdr *)ses_init_buf;
2538 /* sizeof RFC1002_SESSION_REQUEST with no scope */
2539 smb_buf->smb_buf_length = cpu_to_be32(0x81000044);
2540 rc = smb_send(server, smb_buf, 0x44);
2541 kfree(ses_init_buf);
2543 * RFC1001 layer in at least one server
2544 * requires very short break before negprot
2545 * presumably because not expecting negprot
2546 * to follow so fast. This is a simple
2547 * solution that works without
2548 * complicating the code and causes no
2549 * significant slowing down on mount
2552 usleep_range(1000, 2000);
2555 * else the negprot may still work without this
2556 * even though malloc failed
2563 generic_ip_connect(struct TCP_Server_Info *server)
2568 struct socket *socket = server->ssocket;
2569 struct sockaddr *saddr;
2571 saddr = (struct sockaddr *) &server->dstaddr;
2573 if (server->dstaddr.ss_family == AF_INET6) {
2574 struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)&server->dstaddr;
2576 sport = ipv6->sin6_port;
2577 slen = sizeof(struct sockaddr_in6);
2579 cifs_dbg(FYI, "%s: connecting to [%pI6]:%d\n", __func__, &ipv6->sin6_addr,
2582 struct sockaddr_in *ipv4 = (struct sockaddr_in *)&server->dstaddr;
2584 sport = ipv4->sin_port;
2585 slen = sizeof(struct sockaddr_in);
2587 cifs_dbg(FYI, "%s: connecting to %pI4:%d\n", __func__, &ipv4->sin_addr,
2591 if (socket == NULL) {
2592 rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM,
2593 IPPROTO_TCP, &socket, 1);
2595 cifs_server_dbg(VFS, "Error %d creating socket\n", rc);
2596 server->ssocket = NULL;
2600 /* BB other socket options to set KEEPALIVE, NODELAY? */
2601 cifs_dbg(FYI, "Socket created\n");
2602 server->ssocket = socket;
2603 socket->sk->sk_allocation = GFP_NOFS;
2604 if (sfamily == AF_INET6)
2605 cifs_reclassify_socket6(socket);
2607 cifs_reclassify_socket4(socket);
2610 rc = bind_socket(server);
2615 * Eventually check for other socket options to change from
2616 * the default. sock_setsockopt not used because it expects
2619 socket->sk->sk_rcvtimeo = 7 * HZ;
2620 socket->sk->sk_sndtimeo = 5 * HZ;
2622 /* make the bufsizes depend on wsize/rsize and max requests */
2623 if (server->noautotune) {
2624 if (socket->sk->sk_sndbuf < (200 * 1024))
2625 socket->sk->sk_sndbuf = 200 * 1024;
2626 if (socket->sk->sk_rcvbuf < (140 * 1024))
2627 socket->sk->sk_rcvbuf = 140 * 1024;
2630 if (server->tcp_nodelay)
2631 tcp_sock_set_nodelay(socket->sk);
2633 cifs_dbg(FYI, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx\n",
2634 socket->sk->sk_sndbuf,
2635 socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo);
2637 rc = socket->ops->connect(socket, saddr, slen,
2638 server->noblockcnt ? O_NONBLOCK : 0);
2640 * When mounting SMB root file systems, we do not want to block in
2641 * connect. Otherwise bail out and then let cifs_reconnect() perform
2642 * reconnect failover - if possible.
2644 if (server->noblockcnt && rc == -EINPROGRESS)
2647 cifs_dbg(FYI, "Error %d connecting to server\n", rc);
2648 sock_release(socket);
2649 server->ssocket = NULL;
2653 if (sport == htons(RFC1001_PORT))
2654 rc = ip_rfc1001_connect(server);
2660 ip_connect(struct TCP_Server_Info *server)
2663 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
2664 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
2666 if (server->dstaddr.ss_family == AF_INET6)
2667 sport = &addr6->sin6_port;
2669 sport = &addr->sin_port;
2674 /* try with 445 port at first */
2675 *sport = htons(CIFS_PORT);
2677 rc = generic_ip_connect(server);
2681 /* if it failed, try with 139 port */
2682 *sport = htons(RFC1001_PORT);
2685 return generic_ip_connect(server);
2688 void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon,
2689 struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
2692 * If we are reconnecting then should we check to see if
2693 * any requested capabilities changed locally e.g. via
2694 * remount but we can not do much about it here
2695 * if they have (even if we could detect it by the following)
2696 * Perhaps we could add a backpointer to array of sb from tcon
2697 * or if we change to make all sb to same share the same
2698 * sb as NFS - then we only have one backpointer to sb.
2699 * What if we wanted to mount the server share twice once with
2700 * and once without posixacls or posix paths?
2702 __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
2704 if (ctx && ctx->no_linux_ext) {
2705 tcon->fsUnixInfo.Capability = 0;
2706 tcon->unix_ext = 0; /* Unix Extensions disabled */
2707 cifs_dbg(FYI, "Linux protocol extensions disabled\n");
2710 tcon->unix_ext = 1; /* Unix Extensions supported */
2712 if (!tcon->unix_ext) {
2713 cifs_dbg(FYI, "Unix extensions disabled so not set on reconnect\n");
2717 if (!CIFSSMBQFSUnixInfo(xid, tcon)) {
2718 __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
2719 cifs_dbg(FYI, "unix caps which server supports %lld\n", cap);
2721 * check for reconnect case in which we do not
2722 * want to change the mount behavior if we can avoid it
2726 * turn off POSIX ACL and PATHNAMES if not set
2727 * originally at mount time
2729 if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0)
2730 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
2731 if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
2732 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
2733 cifs_dbg(VFS, "POSIXPATH support change\n");
2734 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
2735 } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
2736 cifs_dbg(VFS, "possible reconnect error\n");
2737 cifs_dbg(VFS, "server disabled POSIX path support\n");
2741 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
2742 cifs_dbg(VFS, "per-share encryption not supported yet\n");
2744 cap &= CIFS_UNIX_CAP_MASK;
2745 if (ctx && ctx->no_psx_acl)
2746 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
2747 else if (CIFS_UNIX_POSIX_ACL_CAP & cap) {
2748 cifs_dbg(FYI, "negotiated posix acl support\n");
2750 cifs_sb->mnt_cifs_flags |=
2751 CIFS_MOUNT_POSIXACL;
2754 if (ctx && ctx->posix_paths == 0)
2755 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
2756 else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2757 cifs_dbg(FYI, "negotiate posix pathnames\n");
2759 cifs_sb->mnt_cifs_flags |=
2760 CIFS_MOUNT_POSIX_PATHS;
2763 cifs_dbg(FYI, "Negotiate caps 0x%x\n", (int)cap);
2764 #ifdef CONFIG_CIFS_DEBUG2
2765 if (cap & CIFS_UNIX_FCNTL_CAP)
2766 cifs_dbg(FYI, "FCNTL cap\n");
2767 if (cap & CIFS_UNIX_EXTATTR_CAP)
2768 cifs_dbg(FYI, "EXTATTR cap\n");
2769 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
2770 cifs_dbg(FYI, "POSIX path cap\n");
2771 if (cap & CIFS_UNIX_XATTR_CAP)
2772 cifs_dbg(FYI, "XATTR cap\n");
2773 if (cap & CIFS_UNIX_POSIX_ACL_CAP)
2774 cifs_dbg(FYI, "POSIX ACL cap\n");
2775 if (cap & CIFS_UNIX_LARGE_READ_CAP)
2776 cifs_dbg(FYI, "very large read cap\n");
2777 if (cap & CIFS_UNIX_LARGE_WRITE_CAP)
2778 cifs_dbg(FYI, "very large write cap\n");
2779 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)
2780 cifs_dbg(FYI, "transport encryption cap\n");
2781 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
2782 cifs_dbg(FYI, "mandatory transport encryption cap\n");
2783 #endif /* CIFS_DEBUG2 */
2784 if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) {
2786 cifs_dbg(FYI, "resetting capabilities failed\n");
2788 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");
2794 int cifs_setup_cifs_sb(struct cifs_sb_info *cifs_sb)
2796 struct smb3_fs_context *ctx = cifs_sb->ctx;
2798 INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks);
2800 spin_lock_init(&cifs_sb->tlink_tree_lock);
2801 cifs_sb->tlink_tree = RB_ROOT;
2803 cifs_dbg(FYI, "file mode: %04ho dir mode: %04ho\n",
2804 ctx->file_mode, ctx->dir_mode);
2806 /* this is needed for ASCII cp to Unicode converts */
2807 if (ctx->iocharset == NULL) {
2808 /* load_nls_default cannot return null */
2809 cifs_sb->local_nls = load_nls_default();
2811 cifs_sb->local_nls = load_nls(ctx->iocharset);
2812 if (cifs_sb->local_nls == NULL) {
2813 cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n",
2818 ctx->local_nls = cifs_sb->local_nls;
2820 smb3_update_mnt_flags(cifs_sb);
2823 cifs_dbg(FYI, "mounting share using direct i/o\n");
2824 if (ctx->cache_ro) {
2825 cifs_dbg(VFS, "mounting share with read only caching. Ensure that the share will not be modified while in use.\n");
2826 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RO_CACHE;
2827 } else if (ctx->cache_rw) {
2828 cifs_dbg(VFS, "mounting share in single client RW caching mode. Ensure that no other systems will be accessing the share.\n");
2829 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_RO_CACHE |
2830 CIFS_MOUNT_RW_CACHE);
2833 if ((ctx->cifs_acl) && (ctx->dynperm))
2834 cifs_dbg(VFS, "mount option dynperm ignored if cifsacl mount option supported\n");
2837 cifs_sb->prepath = kstrdup(ctx->prepath, GFP_KERNEL);
2838 if (cifs_sb->prepath == NULL)
2840 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
2846 /* Release all succeed connections */
2847 static inline void mount_put_conns(struct cifs_sb_info *cifs_sb,
2849 struct TCP_Server_Info *server,
2850 struct cifs_ses *ses, struct cifs_tcon *tcon)
2855 cifs_put_tcon(tcon);
2857 cifs_put_smb_ses(ses);
2859 cifs_put_tcp_session(server, 0);
2860 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_POSIX_PATHS;
2864 /* Get connections for tcp, ses and tcon */
2865 static int mount_get_conns(struct smb3_fs_context *ctx, struct cifs_sb_info *cifs_sb,
2867 struct TCP_Server_Info **nserver,
2868 struct cifs_ses **nses, struct cifs_tcon **ntcon)
2871 struct TCP_Server_Info *server;
2872 struct cifs_ses *ses;
2873 struct cifs_tcon *tcon;
2881 /* get a reference to a tcp session */
2882 server = cifs_get_tcp_session(ctx);
2883 if (IS_ERR(server)) {
2884 rc = PTR_ERR(server);
2890 /* get a reference to a SMB session */
2891 ses = cifs_get_smb_ses(server, ctx);
2899 if ((ctx->persistent == true) && (!(ses->server->capabilities &
2900 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES))) {
2901 cifs_server_dbg(VFS, "persistent handles not supported by server\n");
2905 /* search for existing tcon to this server share */
2906 tcon = cifs_get_tcon(ses, ctx);
2914 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
2915 if (tcon->posix_extensions)
2916 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS;
2918 /* tell server which Unix caps we support */
2919 if (cap_unix(tcon->ses)) {
2921 * reset of caps checks mount to see if unix extensions disabled
2922 * for just this mount.
2924 reset_cifs_unix_caps(*xid, tcon, cifs_sb, ctx);
2925 if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) &&
2926 (le64_to_cpu(tcon->fsUnixInfo.Capability) &
2927 CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP))
2930 tcon->unix_ext = 0; /* server does not support them */
2932 /* do not care if a following call succeed - informational */
2933 if (!tcon->pipe && server->ops->qfs_tcon) {
2934 server->ops->qfs_tcon(*xid, tcon, cifs_sb);
2935 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE) {
2936 if (tcon->fsDevInfo.DeviceCharacteristics &
2937 cpu_to_le32(FILE_READ_ONLY_DEVICE))
2938 cifs_dbg(VFS, "mounted to read only share\n");
2939 else if ((cifs_sb->mnt_cifs_flags &
2940 CIFS_MOUNT_RW_CACHE) == 0)
2941 cifs_dbg(VFS, "read only mount of RW share\n");
2942 /* no need to log a RW mount of a typical RW share */
2947 * Clamp the rsize/wsize mount arguments if they are too big for the server
2948 * and set the rsize/wsize to the negotiated values if not passed in by
2951 if ((cifs_sb->ctx->wsize == 0) ||
2952 (cifs_sb->ctx->wsize > server->ops->negotiate_wsize(tcon, ctx)))
2953 cifs_sb->ctx->wsize = server->ops->negotiate_wsize(tcon, ctx);
2954 if ((cifs_sb->ctx->rsize == 0) ||
2955 (cifs_sb->ctx->rsize > server->ops->negotiate_rsize(tcon, ctx)))
2956 cifs_sb->ctx->rsize = server->ops->negotiate_rsize(tcon, ctx);
2961 static int mount_setup_tlink(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses,
2962 struct cifs_tcon *tcon)
2964 struct tcon_link *tlink;
2966 /* hang the tcon off of the superblock */
2967 tlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
2971 tlink->tl_uid = ses->linux_uid;
2972 tlink->tl_tcon = tcon;
2973 tlink->tl_time = jiffies;
2974 set_bit(TCON_LINK_MASTER, &tlink->tl_flags);
2975 set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
2977 cifs_sb->master_tlink = tlink;
2978 spin_lock(&cifs_sb->tlink_tree_lock);
2979 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
2980 spin_unlock(&cifs_sb->tlink_tree_lock);
2982 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
2987 #ifdef CONFIG_CIFS_DFS_UPCALL
2988 static int mount_get_dfs_conns(struct smb3_fs_context *ctx, struct cifs_sb_info *cifs_sb,
2989 unsigned int *xid, struct TCP_Server_Info **nserver,
2990 struct cifs_ses **nses, struct cifs_tcon **ntcon)
2994 ctx->nosharesock = true;
2995 rc = mount_get_conns(ctx, cifs_sb, xid, nserver, nses, ntcon);
2997 cifs_dbg(FYI, "%s: marking tcp session as a dfs connection\n", __func__);
2998 spin_lock(&cifs_tcp_ses_lock);
2999 (*nserver)->is_dfs_conn = true;
3000 spin_unlock(&cifs_tcp_ses_lock);
3006 * cifs_build_path_to_root returns full path to root when we do not have an
3007 * existing connection (tcon)
3010 build_unc_path_to_root(const struct smb3_fs_context *ctx,
3011 const struct cifs_sb_info *cifs_sb, bool useppath)
3013 char *full_path, *pos;
3014 unsigned int pplen = useppath && ctx->prepath ?
3015 strlen(ctx->prepath) + 1 : 0;
3016 unsigned int unc_len = strnlen(ctx->UNC, MAX_TREE_SIZE + 1);
3018 if (unc_len > MAX_TREE_SIZE)
3019 return ERR_PTR(-EINVAL);
3021 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL);
3022 if (full_path == NULL)
3023 return ERR_PTR(-ENOMEM);
3025 memcpy(full_path, ctx->UNC, unc_len);
3026 pos = full_path + unc_len;
3029 *pos = CIFS_DIR_SEP(cifs_sb);
3030 memcpy(pos + 1, ctx->prepath, pplen);
3034 *pos = '\0'; /* add trailing null */
3035 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
3036 cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path);
3041 * expand_dfs_referral - Perform a dfs referral query and update the cifs_sb
3043 * If a referral is found, cifs_sb->ctx->mount_options will be (re-)allocated
3044 * to a string containing updated options for the submount. Otherwise it
3045 * will be left untouched.
3047 * Returns the rc from get_dfs_path to the caller, which can be used to
3048 * determine whether there were referrals.
3051 expand_dfs_referral(const unsigned int xid, struct cifs_ses *ses,
3052 struct smb3_fs_context *ctx, struct cifs_sb_info *cifs_sb,
3056 struct dfs_info3_param referral = {0};
3057 char *full_path = NULL, *mdata = NULL;
3059 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
3062 full_path = build_unc_path_to_root(ctx, cifs_sb, true);
3063 if (IS_ERR(full_path))
3064 return PTR_ERR(full_path);
3066 rc = dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb),
3067 ref_path, &referral, NULL);
3069 char *fake_devname = NULL;
3071 mdata = cifs_compose_mount_options(cifs_sb->ctx->mount_options,
3072 full_path + 1, &referral,
3074 free_dfs_info_param(&referral);
3076 if (IS_ERR(mdata)) {
3077 rc = PTR_ERR(mdata);
3081 * We can not clear out the whole structure since we
3082 * no longer have an explicit function to parse
3083 * a mount-string. Instead we need to clear out the
3084 * individual fields that are no longer valid.
3086 kfree(ctx->prepath);
3087 ctx->prepath = NULL;
3088 rc = cifs_setup_volume_info(ctx, mdata, fake_devname);
3090 kfree(fake_devname);
3091 kfree(cifs_sb->ctx->mount_options);
3092 cifs_sb->ctx->mount_options = mdata;
3098 static int get_next_dfs_tgt(struct dfs_cache_tgt_list *tgt_list,
3099 struct dfs_cache_tgt_iterator **tgt_it)
3102 *tgt_it = dfs_cache_get_tgt_iterator(tgt_list);
3104 *tgt_it = dfs_cache_get_next_tgt(tgt_list, *tgt_it);
3105 return !*tgt_it ? -EHOSTDOWN : 0;
3108 static int update_vol_info(const struct dfs_cache_tgt_iterator *tgt_it,
3109 struct smb3_fs_context *fake_ctx, struct smb3_fs_context *ctx)
3111 const char *tgt = dfs_cache_get_tgt_name(tgt_it);
3112 int len = strlen(tgt) + 2;
3115 new_unc = kmalloc(len, GFP_KERNEL);
3118 scnprintf(new_unc, len, "\\%s", tgt);
3123 if (fake_ctx->prepath) {
3124 kfree(ctx->prepath);
3125 ctx->prepath = fake_ctx->prepath;
3126 fake_ctx->prepath = NULL;
3128 memcpy(&ctx->dstaddr, &fake_ctx->dstaddr, sizeof(ctx->dstaddr));
3133 static int do_dfs_failover(const char *path, const char *full_path, struct cifs_sb_info *cifs_sb,
3134 struct smb3_fs_context *ctx, struct cifs_ses *root_ses,
3135 unsigned int *xid, struct TCP_Server_Info **server,
3136 struct cifs_ses **ses, struct cifs_tcon **tcon)
3140 struct dfs_cache_tgt_list tgt_list = DFS_CACHE_TGT_LIST_INIT(tgt_list);
3141 struct dfs_cache_tgt_iterator *tgt_it = NULL;
3142 struct smb3_fs_context tmp_ctx = {NULL};
3144 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
3147 npath = dfs_cache_canonical_path(path, cifs_sb->local_nls, cifs_remap(cifs_sb));
3149 return PTR_ERR(npath);
3151 cifs_dbg(FYI, "%s: path=%s full_path=%s\n", __func__, npath, full_path);
3153 rc = dfs_cache_noreq_find(npath, NULL, &tgt_list);
3157 * We use a 'tmp_ctx' here because we need pass it down to the mount_{get,put} functions to
3158 * test connection against new DFS targets.
3160 rc = smb3_fs_context_dup(&tmp_ctx, ctx);
3165 struct dfs_info3_param ref = {0};
3166 char *fake_devname = NULL, *mdata = NULL;
3168 /* Get next DFS target server - if any */
3169 rc = get_next_dfs_tgt(&tgt_list, &tgt_it);
3173 rc = dfs_cache_get_tgt_referral(npath, tgt_it, &ref);
3177 cifs_dbg(FYI, "%s: old ctx: UNC=%s prepath=%s\n", __func__, tmp_ctx.UNC,
3180 mdata = cifs_compose_mount_options(cifs_sb->ctx->mount_options, full_path + 1, &ref,
3182 free_dfs_info_param(&ref);
3184 if (IS_ERR(mdata)) {
3185 rc = PTR_ERR(mdata);
3188 rc = cifs_setup_volume_info(&tmp_ctx, mdata, fake_devname);
3191 kfree(fake_devname);
3196 cifs_dbg(FYI, "%s: new ctx: UNC=%s prepath=%s\n", __func__, tmp_ctx.UNC,
3199 mount_put_conns(cifs_sb, *xid, *server, *ses, *tcon);
3200 rc = mount_get_dfs_conns(&tmp_ctx, cifs_sb, xid, server, ses, tcon);
3201 if (!rc || (*server && *ses)) {
3203 * We were able to connect to new target server. Update current context with
3204 * new target server.
3206 rc = update_vol_info(tgt_it, &tmp_ctx, ctx);
3211 cifs_dbg(FYI, "%s: final ctx: UNC=%s prepath=%s\n", __func__, tmp_ctx.UNC,
3214 * Update DFS target hint in DFS referral cache with the target server we
3215 * successfully reconnected to.
3217 rc = dfs_cache_update_tgthint(*xid, root_ses ? root_ses : *ses, cifs_sb->local_nls,
3218 cifs_remap(cifs_sb), path, tgt_it);
3223 smb3_cleanup_fs_context_contents(&tmp_ctx);
3224 dfs_cache_free_tgts(&tgt_list);
3229 /* TODO: all callers to this are broken. We are not parsing mount_options here
3230 * we should pass a clone of the original context?
3233 cifs_setup_volume_info(struct smb3_fs_context *ctx, const char *mntopts, const char *devname)
3238 cifs_dbg(FYI, "%s: devname=%s\n", __func__, devname);
3239 rc = smb3_parse_devname(devname, ctx);
3241 cifs_dbg(VFS, "%s: failed to parse %s: %d\n", __func__, devname, rc);
3249 rc = smb3_parse_opt(mntopts, "ip", &ip);
3251 cifs_dbg(VFS, "%s: failed to parse ip options: %d\n", __func__, rc);
3255 rc = cifs_convert_address((struct sockaddr *)&ctx->dstaddr, ip, strlen(ip));
3258 cifs_dbg(VFS, "%s: failed to convert ip address\n", __func__);
3263 if (ctx->nullauth) {
3264 cifs_dbg(FYI, "Anonymous login\n");
3265 kfree(ctx->username);
3266 ctx->username = NULL;
3267 } else if (ctx->username) {
3268 /* BB fixme parse for domain name here */
3269 cifs_dbg(FYI, "Username: %s\n", ctx->username);
3271 cifs_dbg(VFS, "No username specified\n");
3272 /* In userspace mount helper we can get user name from alternate
3273 locations such as env variables and files on disk */
3281 cifs_are_all_path_components_accessible(struct TCP_Server_Info *server,
3283 struct cifs_tcon *tcon,
3284 struct cifs_sb_info *cifs_sb,
3291 int skip = added_treename ? 1 : 0;
3293 sep = CIFS_DIR_SEP(cifs_sb);
3296 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, "");
3298 /* skip separators */
3303 /* next separator */
3304 while (*s && *s != sep)
3307 * if the treename is added, we then have to skip the first
3308 * part within the separators
3315 * temporarily null-terminate the path at the end of
3316 * the current component
3320 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3328 * Check if path is remote (e.g. a DFS share). Return -EREMOTE if it is,
3331 static int is_path_remote(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx,
3332 const unsigned int xid,
3333 struct TCP_Server_Info *server,
3334 struct cifs_tcon *tcon)
3339 if (!server->ops->is_path_accessible)
3343 * cifs_build_path_to_root works only when we have a valid tcon
3345 full_path = cifs_build_path_to_root(ctx, cifs_sb, tcon,
3346 tcon->Flags & SMB_SHARE_IS_IN_DFS);
3347 if (full_path == NULL)
3350 cifs_dbg(FYI, "%s: full_path: %s\n", __func__, full_path);
3352 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3354 if (rc != 0 && rc != -EREMOTE) {
3359 if (rc != -EREMOTE) {
3360 rc = cifs_are_all_path_components_accessible(server, xid, tcon,
3361 cifs_sb, full_path, tcon->Flags & SMB_SHARE_IS_IN_DFS);
3363 cifs_server_dbg(VFS, "cannot query dirs between root and final path, enabling CIFS_MOUNT_USE_PREFIX_PATH\n");
3364 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3373 #ifdef CONFIG_CIFS_DFS_UPCALL
3374 static void set_root_ses(struct cifs_sb_info *cifs_sb, const uuid_t *mount_id, struct cifs_ses *ses,
3375 struct cifs_ses **root_ses)
3378 spin_lock(&cifs_tcp_ses_lock);
3380 spin_unlock(&cifs_tcp_ses_lock);
3381 dfs_cache_add_refsrv_session(mount_id, ses);
3386 /* Set up next dfs prefix path in @dfs_path */
3387 static int next_dfs_prepath(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx,
3388 const unsigned int xid, struct TCP_Server_Info *server,
3389 struct cifs_tcon *tcon, char **dfs_path)
3392 int added_treename = is_tcon_dfs(tcon);
3395 path = cifs_build_path_to_root(ctx, cifs_sb, tcon, added_treename);
3399 rc = is_path_remote(cifs_sb, ctx, xid, server, tcon);
3400 if (rc == -EREMOTE) {
3401 struct smb3_fs_context v = {NULL};
3402 /* if @path contains a tree name, skip it in the prefix path */
3403 if (added_treename) {
3404 rc = smb3_parse_devname(path, &v);
3407 npath = build_unc_path_to_root(&v, cifs_sb, true);
3408 smb3_cleanup_fs_context_contents(&v);
3411 v.prepath = path + 1;
3412 npath = build_unc_path_to_root(&v, cifs_sb, true);
3415 if (IS_ERR(npath)) {
3416 rc = PTR_ERR(npath);
3430 /* Check if resolved targets can handle any DFS referrals */
3431 static int is_referral_server(const char *ref_path, struct cifs_sb_info *cifs_sb,
3432 struct cifs_tcon *tcon, bool *ref_server)
3435 struct dfs_info3_param ref = {0};
3437 cifs_dbg(FYI, "%s: ref_path=%s\n", __func__, ref_path);
3439 if (is_tcon_dfs(tcon)) {
3444 npath = dfs_cache_canonical_path(ref_path, cifs_sb->local_nls, cifs_remap(cifs_sb));
3446 return PTR_ERR(npath);
3448 rc = dfs_cache_noreq_find(npath, &ref, NULL);
3451 cifs_dbg(VFS, "%s: dfs_cache_noreq_find: failed (rc=%d)\n", __func__, rc);
3454 cifs_dbg(FYI, "%s: ref.flags=0x%x\n", __func__, ref.flags);
3456 * Check if all targets are capable of handling DFS referrals as per
3457 * MS-DFSC 2.2.4 RESP_GET_DFS_REFERRAL.
3459 *ref_server = !!(ref.flags & DFSREF_REFERRAL_SERVER);
3460 free_dfs_info_param(&ref);
3465 int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
3469 struct TCP_Server_Info *server = NULL;
3470 struct cifs_ses *ses = NULL, *root_ses = NULL;
3471 struct cifs_tcon *tcon = NULL;
3473 uuid_t mount_id = {0};
3474 char *ref_path = NULL, *full_path = NULL;
3475 char *oldmnt = NULL;
3476 bool ref_server = false;
3478 rc = mount_get_conns(ctx, cifs_sb, &xid, &server, &ses, &tcon);
3480 * If called with 'nodfs' mount option, then skip DFS resolving. Otherwise unconditionally
3481 * try to get an DFS referral (even cached) to determine whether it is an DFS mount.
3483 * Skip prefix path to provide support for DFS referrals from w2k8 servers which don't seem
3484 * to respond with PATH_NOT_COVERED to requests that include the prefix.
3486 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS) ||
3487 dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb), ctx->UNC + 1, NULL,
3491 /* Check if it is fully accessible and then mount it */
3492 rc = is_path_remote(cifs_sb, ctx, xid, server, tcon);
3499 mount_put_conns(cifs_sb, xid, server, ses, tcon);
3501 * Ignore error check here because we may failover to other targets from cached a
3504 (void)mount_get_dfs_conns(ctx, cifs_sb, &xid, &server, &ses, &tcon);
3506 /* Get path of DFS root */
3507 ref_path = build_unc_path_to_root(ctx, cifs_sb, false);
3508 if (IS_ERR(ref_path)) {
3509 rc = PTR_ERR(ref_path);
3514 uuid_gen(&mount_id);
3515 set_root_ses(cifs_sb, &mount_id, ses, &root_ses);
3517 /* Save full path of last DFS path we used to resolve final target server */
3519 full_path = build_unc_path_to_root(ctx, cifs_sb, !!count);
3520 if (IS_ERR(full_path)) {
3521 rc = PTR_ERR(full_path);
3525 /* Chase referral */
3526 oldmnt = cifs_sb->ctx->mount_options;
3527 rc = expand_dfs_referral(xid, root_ses, ctx, cifs_sb, ref_path + 1);
3530 /* Connect to new DFS target only if we were redirected */
3531 if (oldmnt != cifs_sb->ctx->mount_options) {
3532 mount_put_conns(cifs_sb, xid, server, ses, tcon);
3533 rc = mount_get_dfs_conns(ctx, cifs_sb, &xid, &server, &ses, &tcon);
3535 if (rc && !server && !ses) {
3536 /* Failed to connect. Try to connect to other targets in the referral. */
3537 rc = do_dfs_failover(ref_path + 1, full_path, cifs_sb, ctx, root_ses, &xid,
3538 &server, &ses, &tcon);
3540 if (rc == -EACCES || rc == -EOPNOTSUPP || !server || !ses)
3545 /* Make sure that requests go through new root servers */
3546 rc = is_referral_server(ref_path + 1, cifs_sb, tcon, &ref_server);
3550 set_root_ses(cifs_sb, &mount_id, ses, &root_ses);
3552 /* Get next dfs path and then continue chasing them if -EREMOTE */
3553 rc = next_dfs_prepath(cifs_sb, ctx, xid, server, tcon, &ref_path);
3554 /* Prevent recursion on broken link referrals */
3555 if (rc == -EREMOTE && ++count > MAX_NESTED_LINKS)
3557 } while (rc == -EREMOTE);
3559 if (rc || !tcon || !ses)
3564 * Store DFS full path in both superblock and tree connect structures.
3566 * For DFS root mounts, the prefix path (cifs_sb->prepath) is preserved during reconnect so
3567 * only the root path is set in cifs_sb->origin_fullpath and tcon->dfs_path. And for DFS
3568 * links, the prefix path is included in both and may be changed during reconnect. See
3569 * cifs_tree_connect().
3571 ref_path = dfs_cache_canonical_path(full_path, cifs_sb->local_nls, cifs_remap(cifs_sb));
3575 if (IS_ERR(ref_path)) {
3576 rc = PTR_ERR(ref_path);
3580 cifs_sb->origin_fullpath = ref_path;
3582 ref_path = kstrdup(cifs_sb->origin_fullpath, GFP_KERNEL);
3587 spin_lock(&cifs_tcp_ses_lock);
3588 tcon->dfs_path = ref_path;
3590 spin_unlock(&cifs_tcp_ses_lock);
3593 * After reconnecting to a different server, unique ids won't
3594 * match anymore, so we disable serverino. This prevents
3595 * dentry revalidation to think the dentry are stale (ESTALE).
3597 cifs_autodisable_serverino(cifs_sb);
3599 * Force the use of prefix path to support failover on DFS paths that
3600 * resolve to targets that have different prefix paths.
3602 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3603 kfree(cifs_sb->prepath);
3604 cifs_sb->prepath = ctx->prepath;
3605 ctx->prepath = NULL;
3606 uuid_copy(&cifs_sb->dfs_mount_id, &mount_id);
3610 cifs_try_adding_channels(cifs_sb, ses);
3611 return mount_setup_tlink(cifs_sb, ses, tcon);
3616 kfree(cifs_sb->origin_fullpath);
3617 dfs_cache_put_refsrv_sessions(&mount_id);
3618 mount_put_conns(cifs_sb, xid, server, ses, tcon);
3622 int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
3626 struct cifs_ses *ses;
3627 struct cifs_tcon *tcon;
3628 struct TCP_Server_Info *server;
3630 rc = mount_get_conns(ctx, cifs_sb, &xid, &server, &ses, &tcon);
3635 rc = is_path_remote(cifs_sb, ctx, xid, server, tcon);
3644 return mount_setup_tlink(cifs_sb, ses, tcon);
3647 mount_put_conns(cifs_sb, xid, server, ses, tcon);
3653 * Issue a TREE_CONNECT request.
3656 CIFSTCon(const unsigned int xid, struct cifs_ses *ses,
3657 const char *tree, struct cifs_tcon *tcon,
3658 const struct nls_table *nls_codepage)
3660 struct smb_hdr *smb_buffer;
3661 struct smb_hdr *smb_buffer_response;
3664 unsigned char *bcc_ptr;
3667 __u16 bytes_left, count;
3672 smb_buffer = cifs_buf_get();
3673 if (smb_buffer == NULL)
3676 smb_buffer_response = smb_buffer;
3678 header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX,
3679 NULL /*no tid */ , 4 /*wct */ );
3681 smb_buffer->Mid = get_next_mid(ses->server);
3682 smb_buffer->Uid = ses->Suid;
3683 pSMB = (TCONX_REQ *) smb_buffer;
3684 pSMBr = (TCONX_RSP *) smb_buffer_response;
3686 pSMB->AndXCommand = 0xFF;
3687 pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO);
3688 bcc_ptr = &pSMB->Password[0];
3689 if (tcon->pipe || (ses->server->sec_mode & SECMODE_USER)) {
3690 pSMB->PasswordLength = cpu_to_le16(1); /* minimum */
3691 *bcc_ptr = 0; /* password is null byte */
3692 bcc_ptr++; /* skip password */
3693 /* already aligned so no need to do it below */
3696 if (ses->server->sign)
3697 smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
3699 if (ses->capabilities & CAP_STATUS32) {
3700 smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS;
3702 if (ses->capabilities & CAP_DFS) {
3703 smb_buffer->Flags2 |= SMBFLG2_DFS;
3705 if (ses->capabilities & CAP_UNICODE) {
3706 smb_buffer->Flags2 |= SMBFLG2_UNICODE;
3708 cifs_strtoUTF16((__le16 *) bcc_ptr, tree,
3709 6 /* max utf8 char length in bytes */ *
3710 (/* server len*/ + 256 /* share len */), nls_codepage);
3711 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */
3712 bcc_ptr += 2; /* skip trailing null */
3713 } else { /* ASCII */
3714 strcpy(bcc_ptr, tree);
3715 bcc_ptr += strlen(tree) + 1;
3717 strcpy(bcc_ptr, "?????");
3718 bcc_ptr += strlen("?????");
3720 count = bcc_ptr - &pSMB->Password[0];
3721 be32_add_cpu(&pSMB->hdr.smb_buf_length, count);
3722 pSMB->ByteCount = cpu_to_le16(count);
3724 rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length,
3727 /* above now done in SendReceive */
3731 tcon->tidStatus = CifsGood;
3732 tcon->need_reconnect = false;
3733 tcon->tid = smb_buffer_response->Tid;
3734 bcc_ptr = pByteArea(smb_buffer_response);
3735 bytes_left = get_bcc(smb_buffer_response);
3736 length = strnlen(bcc_ptr, bytes_left - 2);
3737 if (smb_buffer->Flags2 & SMBFLG2_UNICODE)
3743 /* skip service field (NB: this field is always ASCII) */
3745 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') &&
3746 (bcc_ptr[2] == 'C')) {
3747 cifs_dbg(FYI, "IPC connection\n");
3751 } else if (length == 2) {
3752 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) {
3753 /* the most common case */
3754 cifs_dbg(FYI, "disk share connection\n");
3757 bcc_ptr += length + 1;
3758 bytes_left -= (length + 1);
3759 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
3761 /* mostly informational -- no need to fail on error here */
3762 kfree(tcon->nativeFileSystem);
3763 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr,
3764 bytes_left, is_unicode,
3767 cifs_dbg(FYI, "nativeFileSystem=%s\n", tcon->nativeFileSystem);
3769 if ((smb_buffer_response->WordCount == 3) ||
3770 (smb_buffer_response->WordCount == 7))
3771 /* field is in same location */
3772 tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport);
3775 cifs_dbg(FYI, "Tcon flags: 0x%x\n", tcon->Flags);
3778 cifs_buf_release(smb_buffer);
3782 static void delayed_free(struct rcu_head *p)
3784 struct cifs_sb_info *cifs_sb = container_of(p, struct cifs_sb_info, rcu);
3786 unload_nls(cifs_sb->local_nls);
3787 smb3_cleanup_fs_context(cifs_sb->ctx);
3792 cifs_umount(struct cifs_sb_info *cifs_sb)
3794 struct rb_root *root = &cifs_sb->tlink_tree;
3795 struct rb_node *node;
3796 struct tcon_link *tlink;
3798 cancel_delayed_work_sync(&cifs_sb->prune_tlinks);
3800 spin_lock(&cifs_sb->tlink_tree_lock);
3801 while ((node = rb_first(root))) {
3802 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
3803 cifs_get_tlink(tlink);
3804 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
3805 rb_erase(node, root);
3807 spin_unlock(&cifs_sb->tlink_tree_lock);
3808 cifs_put_tlink(tlink);
3809 spin_lock(&cifs_sb->tlink_tree_lock);
3811 spin_unlock(&cifs_sb->tlink_tree_lock);
3813 kfree(cifs_sb->prepath);
3814 #ifdef CONFIG_CIFS_DFS_UPCALL
3815 dfs_cache_put_refsrv_sessions(&cifs_sb->dfs_mount_id);
3816 kfree(cifs_sb->origin_fullpath);
3818 call_rcu(&cifs_sb->rcu, delayed_free);
3822 cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses)
3825 struct TCP_Server_Info *server = cifs_ses_server(ses);
3827 if (!server->ops->need_neg || !server->ops->negotiate)
3830 /* only send once per connect */
3831 if (!server->ops->need_neg(server))
3834 rc = server->ops->negotiate(xid, ses);
3836 spin_lock(&GlobalMid_Lock);
3837 if (server->tcpStatus == CifsNeedNegotiate)
3838 server->tcpStatus = CifsGood;
3841 spin_unlock(&GlobalMid_Lock);
3848 cifs_setup_session(const unsigned int xid, struct cifs_ses *ses,
3849 struct nls_table *nls_info)
3852 struct TCP_Server_Info *server = cifs_ses_server(ses);
3854 if (!ses->binding) {
3855 ses->capabilities = server->capabilities;
3856 if (!linuxExtEnabled)
3857 ses->capabilities &= (~server->vals->cap_unix);
3859 if (ses->auth_key.response) {
3860 cifs_dbg(FYI, "Free previous auth_key.response = %p\n",
3861 ses->auth_key.response);
3862 kfree(ses->auth_key.response);
3863 ses->auth_key.response = NULL;
3864 ses->auth_key.len = 0;
3868 cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n",
3869 server->sec_mode, server->capabilities, server->timeAdj);
3871 if (server->ops->sess_setup)
3872 rc = server->ops->sess_setup(xid, ses, nls_info);
3875 cifs_server_dbg(VFS, "Send error in SessSetup = %d\n", rc);
3881 cifs_set_vol_auth(struct smb3_fs_context *ctx, struct cifs_ses *ses)
3883 ctx->sectype = ses->sectype;
3885 /* krb5 is special, since we don't need username or pw */
3886 if (ctx->sectype == Kerberos)
3889 return cifs_set_cifscreds(ctx, ses);
3892 static struct cifs_tcon *
3893 cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid)
3896 struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb);
3897 struct cifs_ses *ses;
3898 struct cifs_tcon *tcon = NULL;
3899 struct smb3_fs_context *ctx;
3901 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
3903 return ERR_PTR(-ENOMEM);
3905 ctx->local_nls = cifs_sb->local_nls;
3906 ctx->linux_uid = fsuid;
3907 ctx->cred_uid = fsuid;
3908 ctx->UNC = master_tcon->treeName;
3909 ctx->retry = master_tcon->retry;
3910 ctx->nocase = master_tcon->nocase;
3911 ctx->nohandlecache = master_tcon->nohandlecache;
3912 ctx->local_lease = master_tcon->local_lease;
3913 ctx->no_lease = master_tcon->no_lease;
3914 ctx->resilient = master_tcon->use_resilient;
3915 ctx->persistent = master_tcon->use_persistent;
3916 ctx->handle_timeout = master_tcon->handle_timeout;
3917 ctx->no_linux_ext = !master_tcon->unix_ext;
3918 ctx->linux_ext = master_tcon->posix_extensions;
3919 ctx->sectype = master_tcon->ses->sectype;
3920 ctx->sign = master_tcon->ses->sign;
3921 ctx->seal = master_tcon->seal;
3922 ctx->witness = master_tcon->use_witness;
3924 rc = cifs_set_vol_auth(ctx, master_tcon->ses);
3930 /* get a reference for the same TCP session */
3931 spin_lock(&cifs_tcp_ses_lock);
3932 ++master_tcon->ses->server->srv_count;
3933 spin_unlock(&cifs_tcp_ses_lock);
3935 ses = cifs_get_smb_ses(master_tcon->ses->server, ctx);
3937 tcon = (struct cifs_tcon *)ses;
3938 cifs_put_tcp_session(master_tcon->ses->server, 0);
3942 tcon = cifs_get_tcon(ses, ctx);
3944 cifs_put_smb_ses(ses);
3949 reset_cifs_unix_caps(0, tcon, NULL, ctx);
3952 kfree(ctx->username);
3953 kfree_sensitive(ctx->password);
3960 cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb)
3962 return tlink_tcon(cifs_sb_master_tlink(cifs_sb));
3965 /* find and return a tlink with given uid */
3966 static struct tcon_link *
3967 tlink_rb_search(struct rb_root *root, kuid_t uid)
3969 struct rb_node *node = root->rb_node;
3970 struct tcon_link *tlink;
3973 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
3975 if (uid_gt(tlink->tl_uid, uid))
3976 node = node->rb_left;
3977 else if (uid_lt(tlink->tl_uid, uid))
3978 node = node->rb_right;
3985 /* insert a tcon_link into the tree */
3987 tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink)
3989 struct rb_node **new = &(root->rb_node), *parent = NULL;
3990 struct tcon_link *tlink;
3993 tlink = rb_entry(*new, struct tcon_link, tl_rbnode);
3996 if (uid_gt(tlink->tl_uid, new_tlink->tl_uid))
3997 new = &((*new)->rb_left);
3999 new = &((*new)->rb_right);
4002 rb_link_node(&new_tlink->tl_rbnode, parent, new);
4003 rb_insert_color(&new_tlink->tl_rbnode, root);
4007 * Find or construct an appropriate tcon given a cifs_sb and the fsuid of the
4010 * If the superblock doesn't refer to a multiuser mount, then just return
4011 * the master tcon for the mount.
4013 * First, search the rbtree for an existing tcon for this fsuid. If one
4014 * exists, then check to see if it's pending construction. If it is then wait
4015 * for construction to complete. Once it's no longer pending, check to see if
4016 * it failed and either return an error or retry construction, depending on
4019 * If one doesn't exist then insert a new tcon_link struct into the tree and
4020 * try to construct a new one.
4023 cifs_sb_tlink(struct cifs_sb_info *cifs_sb)
4026 kuid_t fsuid = current_fsuid();
4027 struct tcon_link *tlink, *newtlink;
4029 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
4030 return cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
4032 spin_lock(&cifs_sb->tlink_tree_lock);
4033 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
4035 cifs_get_tlink(tlink);
4036 spin_unlock(&cifs_sb->tlink_tree_lock);
4038 if (tlink == NULL) {
4039 newtlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
4040 if (newtlink == NULL)
4041 return ERR_PTR(-ENOMEM);
4042 newtlink->tl_uid = fsuid;
4043 newtlink->tl_tcon = ERR_PTR(-EACCES);
4044 set_bit(TCON_LINK_PENDING, &newtlink->tl_flags);
4045 set_bit(TCON_LINK_IN_TREE, &newtlink->tl_flags);
4046 cifs_get_tlink(newtlink);
4048 spin_lock(&cifs_sb->tlink_tree_lock);
4049 /* was one inserted after previous search? */
4050 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
4052 cifs_get_tlink(tlink);
4053 spin_unlock(&cifs_sb->tlink_tree_lock);
4055 goto wait_for_construction;
4058 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
4059 spin_unlock(&cifs_sb->tlink_tree_lock);
4061 wait_for_construction:
4062 ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING,
4063 TASK_INTERRUPTIBLE);
4065 cifs_put_tlink(tlink);
4066 return ERR_PTR(-ERESTARTSYS);
4069 /* if it's good, return it */
4070 if (!IS_ERR(tlink->tl_tcon))
4073 /* return error if we tried this already recently */
4074 if (time_before(jiffies, tlink->tl_time + TLINK_ERROR_EXPIRE)) {
4075 cifs_put_tlink(tlink);
4076 return ERR_PTR(-EACCES);
4079 if (test_and_set_bit(TCON_LINK_PENDING, &tlink->tl_flags))
4080 goto wait_for_construction;
4083 tlink->tl_tcon = cifs_construct_tcon(cifs_sb, fsuid);
4084 clear_bit(TCON_LINK_PENDING, &tlink->tl_flags);
4085 wake_up_bit(&tlink->tl_flags, TCON_LINK_PENDING);
4087 if (IS_ERR(tlink->tl_tcon)) {
4088 cifs_put_tlink(tlink);
4089 return ERR_PTR(-EACCES);
4096 * periodic workqueue job that scans tcon_tree for a superblock and closes
4100 cifs_prune_tlinks(struct work_struct *work)
4102 struct cifs_sb_info *cifs_sb = container_of(work, struct cifs_sb_info,
4104 struct rb_root *root = &cifs_sb->tlink_tree;
4105 struct rb_node *node;
4106 struct rb_node *tmp;
4107 struct tcon_link *tlink;
4110 * Because we drop the spinlock in the loop in order to put the tlink
4111 * it's not guarded against removal of links from the tree. The only
4112 * places that remove entries from the tree are this function and
4113 * umounts. Because this function is non-reentrant and is canceled
4114 * before umount can proceed, this is safe.
4116 spin_lock(&cifs_sb->tlink_tree_lock);
4117 node = rb_first(root);
4118 while (node != NULL) {
4120 node = rb_next(tmp);
4121 tlink = rb_entry(tmp, struct tcon_link, tl_rbnode);
4123 if (test_bit(TCON_LINK_MASTER, &tlink->tl_flags) ||
4124 atomic_read(&tlink->tl_count) != 0 ||
4125 time_after(tlink->tl_time + TLINK_IDLE_EXPIRE, jiffies))
4128 cifs_get_tlink(tlink);
4129 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4130 rb_erase(tmp, root);
4132 spin_unlock(&cifs_sb->tlink_tree_lock);
4133 cifs_put_tlink(tlink);
4134 spin_lock(&cifs_sb->tlink_tree_lock);
4136 spin_unlock(&cifs_sb->tlink_tree_lock);
4138 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
4142 #ifdef CONFIG_CIFS_DFS_UPCALL
4143 int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc)
4146 struct TCP_Server_Info *server = tcon->ses->server;
4147 const struct smb_version_operations *ops = server->ops;
4148 struct dfs_cache_tgt_list tl;
4149 struct dfs_cache_tgt_iterator *it = NULL;
4151 const char *tcp_host;
4152 size_t tcp_host_len;
4153 const char *dfs_host;
4154 size_t dfs_host_len;
4155 char *share = NULL, *prefix = NULL;
4156 struct dfs_info3_param ref = {0};
4159 tree = kzalloc(MAX_TREE_SIZE, GFP_KERNEL);
4163 /* If it is not dfs or there was no cached dfs referral, then reconnect to same share */
4164 if (!tcon->dfs_path || dfs_cache_noreq_find(tcon->dfs_path + 1, &ref, &tl)) {
4166 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname);
4167 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc);
4169 rc = ops->tree_connect(xid, tcon->ses, tcon->treeName, tcon, nlsc);
4174 isroot = ref.server_type == DFS_TYPE_ROOT;
4175 free_dfs_info_param(&ref);
4177 extract_unc_hostname(server->hostname, &tcp_host, &tcp_host_len);
4179 for (it = dfs_cache_get_tgt_iterator(&tl); it; it = dfs_cache_get_next_tgt(&tl, it)) {
4187 rc = dfs_cache_get_tgt_share(tcon->dfs_path + 1, it, &share, &prefix);
4189 cifs_dbg(VFS, "%s: failed to parse target share %d\n",
4194 extract_unc_hostname(share, &dfs_host, &dfs_host_len);
4196 if (dfs_host_len != tcp_host_len
4197 || strncasecmp(dfs_host, tcp_host, dfs_host_len) != 0) {
4198 cifs_dbg(FYI, "%s: %.*s doesn't match %.*s\n", __func__, (int)dfs_host_len,
4199 dfs_host, (int)tcp_host_len, tcp_host);
4201 rc = match_target_ip(server, dfs_host, dfs_host_len, &target_match);
4203 cifs_dbg(VFS, "%s: failed to match target ip: %d\n", __func__, rc);
4207 if (!target_match) {
4208 cifs_dbg(FYI, "%s: skipping target\n", __func__);
4214 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", share);
4215 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc);
4217 scnprintf(tree, MAX_TREE_SIZE, "\\%s", share);
4218 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc);
4219 /* Only handle prefix paths of DFS link targets */
4220 if (!rc && !isroot) {
4221 rc = update_super_prepath(tcon, prefix);
4234 rc = dfs_cache_noreq_update_tgthint(tcon->dfs_path + 1, it);
4238 dfs_cache_free_tgts(&tl);
4244 int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc)
4246 const struct smb_version_operations *ops = tcon->ses->server->ops;
4248 return ops->tree_connect(xid, tcon->ses, tcon->treeName, tcon, nlsc);