blob: 121d8b4535b0ed6a253ba39757d52afcc8169aca [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/connect.c
3 *
Steve French1080ef72011-02-24 18:07:19 +00004 * Copyright (C) International Business Machines Corp., 2002,2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published
9 * by the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 * the GNU Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software
Steve Frenchfb8c4b12007-07-10 01:16:18 +000019 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 */
21#include <linux/fs.h>
22#include <linux/net.h>
23#include <linux/string.h>
Eric Biggersdc920272020-03-08 22:58:20 -070024#include <linux/sched/mm.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010025#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/list.h>
27#include <linux/wait.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/pagemap.h>
30#include <linux/ctype.h>
31#include <linux/utsname.h>
32#include <linux/mempool.h>
Steve Frenchb8643e12005-04-28 22:41:07 -070033#include <linux/delay.h>
Steve Frenchf1914012005-08-18 09:37:34 -070034#include <linux/completion.h>
Igor Mammedovaaf737a2007-04-03 19:16:43 +000035#include <linux/kthread.h>
Steve French0ae0efa2005-10-10 10:57:19 -070036#include <linux/pagevec.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080037#include <linux/freezer.h>
Igor Mammedov5c2503a2009-04-21 19:31:05 +040038#include <linux/namei.h>
Andrew Lunnc6e970a2017-03-28 23:45:06 +020039#include <linux/uuid.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080040#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/processor.h>
Jeff Layton50b64e32009-06-02 06:55:20 -040042#include <linux/inet.h>
Paul Gortmaker143cb492011-07-01 14:23:34 -040043#include <linux/module.h>
Jeff Layton8a8798a2012-01-17 16:09:15 -050044#include <keys/user-type.h>
Steve French0e2beda2009-01-30 21:24:41 +000045#include <net/ipv6.h>
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040046#include <linux/parser.h>
Christoph Hellwig2f8b5442016-11-01 07:40:13 -060047#include <linux/bvec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include "cifspdu.h"
49#include "cifsglob.h"
50#include "cifsproto.h"
51#include "cifs_unicode.h"
52#include "cifs_debug.h"
53#include "cifs_fs_sb.h"
54#include "ntlmssp.h"
55#include "nterr.h"
56#include "rfc1002pdu.h"
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +053057#include "fscache.h"
Pavel Shilovsky53e0e112016-11-04 11:50:31 -070058#include "smb2proto.h"
Long Li2f894642017-11-22 17:38:34 -070059#include "smbdirect.h"
Paulo Alcantara1c780222018-11-14 16:24:03 -020060#include "dns_resolve.h"
61#ifdef CONFIG_CIFS_DFS_UPCALL
62#include "dfs_cache.h"
63#endif
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +100064#include "fs_context.h"
Samuel Cabrerobf80e5d2020-11-30 19:02:51 +010065#include "cifs_swn.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067extern mempool_t *cifs_req_poolp;
Steve Frenchf92a7202018-05-24 04:11:07 -050068extern bool disable_legacy_dialects;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Jeff Layton2de970f2010-10-06 19:51:12 -040070/* FIXME: should these be tunable? */
Jeff Layton9d002df2010-10-06 19:51:11 -040071#define TLINK_ERROR_EXPIRE (1 * HZ)
Jeff Layton2de970f2010-10-06 19:51:12 -040072#define TLINK_IDLE_EXPIRE (600 * HZ)
Jeff Layton9d002df2010-10-06 19:51:11 -040073
Rohith Surabattula8e670f72020-09-18 05:37:28 +000074/* Drop the connection to not overload the server */
75#define NUM_STATUS_IO_TIMEOUT 5
76
Pavel Shilovskya9f1b852010-12-13 19:08:35 +030077static int ip_connect(struct TCP_Server_Info *server);
78static int generic_ip_connect(struct TCP_Server_Info *server);
Jeff Laytonb647c352010-10-28 11:16:44 -040079static void tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink);
Jeff Layton2de970f2010-10-06 19:51:12 -040080static void cifs_prune_tlinks(struct work_struct *work);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -020081
Paulo Alcantara28eb24f2018-11-20 15:16:36 -020082/*
83 * Resolve hostname and set ip addr in tcp ses. Useful for hostnames that may
84 * get their ip addresses changed at some point.
85 *
86 * This should be called with server->srv_mutex held.
87 */
Samuel Cabrero7d6535b2020-11-30 19:02:55 +010088static int reconn_set_ipaddr_from_hostname(struct TCP_Server_Info *server)
Paulo Alcantara28eb24f2018-11-20 15:16:36 -020089{
90 int rc;
91 int len;
92 char *unc, *ipaddr = NULL;
93
94 if (!server->hostname)
95 return -EINVAL;
96
97 len = strlen(server->hostname) + 3;
98
99 unc = kmalloc(len, GFP_KERNEL);
100 if (!unc) {
101 cifs_dbg(FYI, "%s: failed to create UNC path\n", __func__);
102 return -ENOMEM;
103 }
Ronnie Sahlberg74ea5f92019-02-09 09:51:11 +1000104 scnprintf(unc, len, "\\\\%s", server->hostname);
Paulo Alcantara28eb24f2018-11-20 15:16:36 -0200105
106 rc = dns_resolve_server_name_to_ip(unc, &ipaddr);
107 kfree(unc);
108
109 if (rc < 0) {
110 cifs_dbg(FYI, "%s: failed to resolve server part of %s to IP: %d\n",
111 __func__, server->hostname, rc);
112 return rc;
113 }
114
Ronnie Sahlbergfada37f2020-04-21 12:37:39 +1000115 spin_lock(&cifs_tcp_ses_lock);
Paulo Alcantara28eb24f2018-11-20 15:16:36 -0200116 rc = cifs_convert_address((struct sockaddr *)&server->dstaddr, ipaddr,
117 strlen(ipaddr));
Ronnie Sahlbergfada37f2020-04-21 12:37:39 +1000118 spin_unlock(&cifs_tcp_ses_lock);
Paulo Alcantara28eb24f2018-11-20 15:16:36 -0200119 kfree(ipaddr);
120
121 return !rc ? -1 : 0;
122}
Paulo Alcantara28eb24f2018-11-20 15:16:36 -0200123
Shyam Prasad N4e456b32021-03-31 14:35:24 +0000124#ifdef CONFIG_CIFS_DFS_UPCALL
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200125/* These functions must be called with server->srv_mutex held */
Paulo Alcantara7d397a02020-07-21 09:36:40 -0300126static void reconn_set_next_dfs_target(struct TCP_Server_Info *server,
127 struct cifs_sb_info *cifs_sb,
128 struct dfs_cache_tgt_list *tgt_list,
129 struct dfs_cache_tgt_iterator **tgt_it)
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200130{
131 const char *name;
Samuel Cabrero7d6535b2020-11-30 19:02:55 +0100132 int rc;
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200133
Paulo Alcantara7d397a02020-07-21 09:36:40 -0300134 if (!cifs_sb || !cifs_sb->origin_fullpath)
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200135 return;
136
137 if (!*tgt_it) {
138 *tgt_it = dfs_cache_get_tgt_iterator(tgt_list);
139 } else {
140 *tgt_it = dfs_cache_get_next_tgt(tgt_list, *tgt_it);
141 if (!*tgt_it)
142 *tgt_it = dfs_cache_get_tgt_iterator(tgt_list);
143 }
144
145 cifs_dbg(FYI, "%s: UNC: %s\n", __func__, cifs_sb->origin_fullpath);
146
147 name = dfs_cache_get_tgt_name(*tgt_it);
148
149 kfree(server->hostname);
150
151 server->hostname = extract_hostname(name);
Dan Carpenter84288172019-01-05 15:25:29 +0300152 if (IS_ERR(server->hostname)) {
153 cifs_dbg(FYI,
154 "%s: failed to extract hostname from target: %ld\n",
155 __func__, PTR_ERR(server->hostname));
Samuel Cabrero0bf1baf2020-12-18 10:29:49 +0100156 return;
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200157 }
Samuel Cabrero7d6535b2020-11-30 19:02:55 +0100158
159 rc = reconn_set_ipaddr_from_hostname(server);
160 if (rc) {
161 cifs_dbg(FYI, "%s: failed to resolve hostname: %d\n",
162 __func__, rc);
163 }
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200164}
165
166static inline int reconn_setup_dfs_targets(struct cifs_sb_info *cifs_sb,
Paulo Alcantarabaf3f082020-05-19 15:38:29 -0300167 struct dfs_cache_tgt_list *tl)
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200168{
169 if (!cifs_sb->origin_fullpath)
170 return -EOPNOTSUPP;
171 return dfs_cache_noreq_find(cifs_sb->origin_fullpath + 1, NULL, tl);
172}
173#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Jeff Laytond5c56052008-12-01 18:42:33 -0500175/*
176 * cifs tcp session reconnection
177 *
178 * mark tcp session as reconnecting so temporarily locked
179 * mark all smb sessions as reconnecting for tcp session
180 * reconnect tcp session
181 * wake up waiters on reconnection? - (not needed currently)
182 */
Pavel Shilovsky28ea5292012-05-23 16:18:00 +0400183int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184cifs_reconnect(struct TCP_Server_Info *server)
185{
186 int rc = 0;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500187 struct list_head *tmp, *tmp2;
Steve French96daf2b2011-05-27 04:34:02 +0000188 struct cifs_ses *ses;
189 struct cifs_tcon *tcon;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000190 struct mid_q_entry *mid_entry;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400191 struct list_head retry_list;
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200192#ifdef CONFIG_CIFS_DFS_UPCALL
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300193 struct super_block *sb = NULL;
Paulo Alcantara23324402018-11-20 14:37:18 -0200194 struct cifs_sb_info *cifs_sb = NULL;
195 struct dfs_cache_tgt_list tgt_list = {0};
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200196 struct dfs_cache_tgt_iterator *tgt_it = NULL;
197#endif
Steve French50c2f752007-07-13 00:33:32 +0000198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 spin_lock(&GlobalMid_Lock);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200200 server->nr_targets = 1;
201#ifdef CONFIG_CIFS_DFS_UPCALL
Ronnie Sahlberg61cabc72019-06-14 13:02:29 +1000202 spin_unlock(&GlobalMid_Lock);
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -0300203 sb = cifs_get_tcp_super(server);
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300204 if (IS_ERR(sb)) {
205 rc = PTR_ERR(sb);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200206 cifs_dbg(FYI, "%s: will not do DFS failover: rc = %d\n",
207 __func__, rc);
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300208 sb = NULL;
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200209 } else {
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300210 cifs_sb = CIFS_SB(sb);
Paulo Alcantarabaf3f082020-05-19 15:38:29 -0300211 rc = reconn_setup_dfs_targets(cifs_sb, &tgt_list);
Paulo Alcantaraa5293032020-07-21 09:36:41 -0300212 if (rc) {
213 cifs_sb = NULL;
214 if (rc != -EOPNOTSUPP) {
215 cifs_server_dbg(VFS, "%s: no target servers for DFS failover\n",
216 __func__);
217 }
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200218 } else {
219 server->nr_targets = dfs_cache_get_nr_tgts(&tgt_list);
220 }
221 }
222 cifs_dbg(FYI, "%s: will retry %d target(s)\n", __func__,
223 server->nr_targets);
Ronnie Sahlberg61cabc72019-06-14 13:02:29 +1000224 spin_lock(&GlobalMid_Lock);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200225#endif
Jeff Layton469ee612008-10-16 18:46:39 +0000226 if (server->tcpStatus == CifsExiting) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000227 /* the demux thread will exit normally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 next time through the loop */
229 spin_unlock(&GlobalMid_Lock);
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300230#ifdef CONFIG_CIFS_DFS_UPCALL
231 dfs_cache_free_tgts(&tgt_list);
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -0300232 cifs_put_tcp_super(sb);
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300233#endif
Stefan Metzmachere2e87512020-02-24 14:31:02 -0600234 wake_up(&server->response_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return rc;
236 } else
237 server->tcpStatus = CifsNeedReconnect;
238 spin_unlock(&GlobalMid_Lock);
239 server->maxBuf = 0;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400240 server->max_read = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Steve French6e4d3bb2018-09-22 11:25:04 -0500242 cifs_dbg(FYI, "Mark tcp session as need reconnect\n");
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800243 trace_smb3_reconnect(server->CurrentMid, server->conn_id, server->hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 /* before reconnecting the tcp session, mark the smb session (uid)
246 and the tid bad so they are not used until reconnected */
Joe Perchesf96637b2013-05-04 22:12:25 -0500247 cifs_dbg(FYI, "%s: marking sessions and tcons for reconnect\n",
248 __func__);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530249 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -0500250 list_for_each(tmp, &server->smb_ses_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000251 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
Jeff Layton14fbf502008-11-14 13:53:46 -0500252 ses->need_reconnect = true;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500253 list_for_each(tmp2, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000254 tcon = list_entry(tmp2, struct cifs_tcon, tcon_list);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500255 tcon->need_reconnect = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
Aurelien Aptelb327a712018-01-24 13:46:10 +0100257 if (ses->tcon_ipc)
258 ses->tcon_ipc->need_reconnect = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530260 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 /* do not want to be sending data on a socket we are freeing */
Joe Perchesf96637b2013-05-04 22:12:25 -0500263 cifs_dbg(FYI, "%s: tearing down socket\n", __func__);
Jeff Layton72ca5452008-12-01 07:09:36 -0500264 mutex_lock(&server->srv_mutex);
Long Li1d2a4f52019-05-13 21:01:28 -0700265 if (server->ssocket) {
266 cifs_dbg(FYI, "State: 0x%x Flags: 0x%lx\n",
267 server->ssocket->state, server->ssocket->flags);
268 kernel_sock_shutdown(server->ssocket, SHUT_WR);
269 cifs_dbg(FYI, "Post shutdown state: 0x%x Flags: 0x%lx\n",
270 server->ssocket->state, server->ssocket->flags);
271 sock_release(server->ssocket);
272 server->ssocket = NULL;
273 }
274 server->sequence_number = 0;
275 server->session_estab = false;
276 kfree(server->session_key.response);
277 server->session_key.response = NULL;
278 server->session_key.len = 0;
279 server->lstrp = jiffies;
Long Li214bab42019-04-05 21:36:35 +0000280
281 /* mark submitted MIDs for retry and issue callback */
282 INIT_LIST_HEAD(&retry_list);
283 cifs_dbg(FYI, "%s: moving mids to private list\n", __func__);
284 spin_lock(&GlobalMid_Lock);
285 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
286 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700287 kref_get(&mid_entry->refcount);
Long Li214bab42019-04-05 21:36:35 +0000288 if (mid_entry->mid_state == MID_REQUEST_SUBMITTED)
289 mid_entry->mid_state = MID_RETRY_NEEDED;
290 list_move(&mid_entry->qhead, &retry_list);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700291 mid_entry->mid_flags |= MID_DELETED;
Long Li214bab42019-04-05 21:36:35 +0000292 }
293 spin_unlock(&GlobalMid_Lock);
Long Li1d2a4f52019-05-13 21:01:28 -0700294 mutex_unlock(&server->srv_mutex);
Long Li214bab42019-04-05 21:36:35 +0000295
296 cifs_dbg(FYI, "%s: issuing mid callbacks\n", __func__);
297 list_for_each_safe(tmp, tmp2, &retry_list) {
298 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
299 list_del_init(&mid_entry->qhead);
300 mid_entry->callback(mid_entry);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700301 cifs_mid_q_entry_release(mid_entry);
Long Li214bab42019-04-05 21:36:35 +0000302 }
303
Long Li1d2a4f52019-05-13 21:01:28 -0700304 if (cifs_rdma_enabled(server)) {
305 mutex_lock(&server->srv_mutex);
Long Li050b8c32019-04-04 11:35:42 -0500306 smbd_destroy(server);
Long Li1d2a4f52019-05-13 21:01:28 -0700307 mutex_unlock(&server->srv_mutex);
308 }
Jeff Layton3c1105d2011-05-22 07:09:13 -0400309
Jeff Layton7fdbaa12011-06-10 16:14:57 -0400310 do {
Steve French6c3d8902006-07-31 22:46:20 +0000311 try_to_freeze();
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300312
Jeff Layton73e216a2013-09-05 08:38:10 -0400313 mutex_lock(&server->srv_mutex);
Samuel Cabrero121d9472020-11-30 19:02:56 +0100314
Samuel Cabrero121d9472020-11-30 19:02:56 +0100315
Aurelien Aptelb7fd0fa2021-04-09 16:31:37 +0200316 if (!cifs_swn_set_server_dstaddr(server)) {
Paulo Alcantaraaaa3aef2020-05-19 15:38:27 -0300317#ifdef CONFIG_CIFS_DFS_UPCALL
Shyam Prasad N4e456b32021-03-31 14:35:24 +0000318 if (cifs_sb && cifs_sb->origin_fullpath)
Samuel Cabrero121d9472020-11-30 19:02:56 +0100319 /*
320 * Set up next DFS target server (if any) for reconnect. If DFS
321 * feature is disabled, then we will retry last server we
322 * connected to before.
323 */
324 reconn_set_next_dfs_target(server, cifs_sb, &tgt_list, &tgt_it);
Shyam Prasad N4e456b32021-03-31 14:35:24 +0000325 else {
Samuel Cabrero121d9472020-11-30 19:02:56 +0100326#endif
Shyam Prasad N4e456b32021-03-31 14:35:24 +0000327 /*
328 * Resolve the hostname again to make sure that IP address is up-to-date.
329 */
330 rc = reconn_set_ipaddr_from_hostname(server);
331 if (rc) {
332 cifs_dbg(FYI, "%s: failed to resolve hostname: %d\n",
333 __func__, rc);
334 }
335
336#ifdef CONFIG_CIFS_DFS_UPCALL
337 }
338#endif
339
Samuel Cabrero121d9472020-11-30 19:02:56 +0100340
Samuel Cabrero121d9472020-11-30 19:02:56 +0100341 }
Paulo Alcantaraaaa3aef2020-05-19 15:38:27 -0300342
Long Li781a8052017-11-22 17:38:36 -0700343 if (cifs_rdma_enabled(server))
344 rc = smbd_reconnect(server);
345 else
346 rc = generic_ip_connect(server);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000347 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500348 cifs_dbg(FYI, "reconnect error %d\n", rc);
Federico Sauter4afe2602015-03-17 17:45:28 +0100349 mutex_unlock(&server->srv_mutex);
Steve French0cb766a2005-04-28 22:41:11 -0700350 msleep(3000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 } else {
352 atomic_inc(&tcpSesReconnectCount);
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800353 set_credits(server, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 spin_lock(&GlobalMid_Lock);
Jeff Layton469ee612008-10-16 18:46:39 +0000355 if (server->tcpStatus != CifsExiting)
Steve Frenchfd88ce92011-04-12 01:01:14 +0000356 server->tcpStatus = CifsNeedNegotiate;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000357 spin_unlock(&GlobalMid_Lock);
Aurelien Aptelb7fd0fa2021-04-09 16:31:37 +0200358 cifs_swn_reset_server_dstaddr(server);
Federico Sauter4afe2602015-03-17 17:45:28 +0100359 mutex_unlock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
Jeff Layton7fdbaa12011-06-10 16:14:57 -0400361 } while (server->tcpStatus == CifsNeedReconnect);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500362
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200363#ifdef CONFIG_CIFS_DFS_UPCALL
364 if (tgt_it) {
365 rc = dfs_cache_noreq_update_tgthint(cifs_sb->origin_fullpath + 1,
366 tgt_it);
367 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000368 cifs_server_dbg(VFS, "%s: failed to update DFS target hint: rc = %d\n",
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200369 __func__, rc);
370 }
371 rc = dfs_cache_update_vol(cifs_sb->origin_fullpath, server);
372 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000373 cifs_server_dbg(VFS, "%s: failed to update vol info in DFS cache: rc = %d\n",
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200374 __func__, rc);
375 }
Paulo Alcantara23324402018-11-20 14:37:18 -0200376 dfs_cache_free_tgts(&tgt_list);
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300377
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200378 }
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300379
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -0300380 cifs_put_tcp_super(sb);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200381#endif
Sachin Prabhub8c60012016-10-20 19:52:24 -0400382 if (server->tcpStatus == CifsNeedNegotiate)
383 mod_delayed_work(cifsiod_wq, &server->echo, 0);
384
Stefan Metzmachere2e87512020-02-24 14:31:02 -0600385 wake_up(&server->response_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return rc;
387}
388
Jeff Laytonc74093b2011-01-11 07:24:23 -0500389static void
390cifs_echo_request(struct work_struct *work)
391{
392 int rc;
393 struct TCP_Server_Info *server = container_of(work,
394 struct TCP_Server_Info, echo.work);
Sachin Prabhub8c60012016-10-20 19:52:24 -0400395 unsigned long echo_interval;
Jeff Laytonc74093b2011-01-11 07:24:23 -0500396
Jeff Layton247ec9b2011-02-04 17:09:50 -0500397 /*
Sachin Prabhub8c60012016-10-20 19:52:24 -0400398 * If we need to renegotiate, set echo interval to zero to
399 * immediately call echo service where we can renegotiate.
400 */
401 if (server->tcpStatus == CifsNeedNegotiate)
402 echo_interval = 0;
403 else
404 echo_interval = server->echo_interval;
405
406 /*
407 * We cannot send an echo if it is disabled.
408 * Also, no need to ping if we got a response recently.
Jeff Layton247ec9b2011-02-04 17:09:50 -0500409 */
Steve French4fcd1812016-06-22 20:12:05 -0500410
411 if (server->tcpStatus == CifsNeedReconnect ||
Sachin Prabhub8c60012016-10-20 19:52:24 -0400412 server->tcpStatus == CifsExiting ||
413 server->tcpStatus == CifsNew ||
Pavel Shilovskyf6d76172012-05-25 14:47:16 +0400414 (server->ops->can_echo && !server->ops->can_echo(server)) ||
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600415 time_before(jiffies, server->lstrp + echo_interval - HZ))
Jeff Laytonc74093b2011-01-11 07:24:23 -0500416 goto requeue_echo;
417
Pavel Shilovskyf6d76172012-05-25 14:47:16 +0400418 rc = server->ops->echo ? server->ops->echo(server) : -ENOSYS;
Jeff Laytonc74093b2011-01-11 07:24:23 -0500419 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500420 cifs_dbg(FYI, "Unable to send echo request to server: %s\n",
421 server->hostname);
Jeff Laytonc74093b2011-01-11 07:24:23 -0500422
Samuel Cabrero21077c62020-11-30 19:02:54 +0100423 /* Check witness registrations */
424 cifs_swn_check();
Samuel Cabrero21077c62020-11-30 19:02:54 +0100425
Jeff Laytonc74093b2011-01-11 07:24:23 -0500426requeue_echo:
Sachin Prabhub8c60012016-10-20 19:52:24 -0400427 queue_delayed_work(cifsiod_wq, &server->echo, server->echo_interval);
Jeff Laytonc74093b2011-01-11 07:24:23 -0500428}
429
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400430static bool
Jeff Layton2a37ef92011-10-19 15:29:23 -0400431allocate_buffers(struct TCP_Server_Info *server)
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400432{
Jeff Layton2a37ef92011-10-19 15:29:23 -0400433 if (!server->bigbuf) {
434 server->bigbuf = (char *)cifs_buf_get();
435 if (!server->bigbuf) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000436 cifs_server_dbg(VFS, "No memory for large SMB response\n");
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400437 msleep(3000);
438 /* retry will check if exiting */
439 return false;
440 }
Jeff Layton2a37ef92011-10-19 15:29:23 -0400441 } else if (server->large_buf) {
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400442 /* we are reusing a dirty large buf, clear its start */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400443 memset(server->bigbuf, 0, HEADER_SIZE(server));
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400444 }
445
Jeff Layton2a37ef92011-10-19 15:29:23 -0400446 if (!server->smallbuf) {
447 server->smallbuf = (char *)cifs_small_buf_get();
448 if (!server->smallbuf) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000449 cifs_server_dbg(VFS, "No memory for SMB response\n");
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400450 msleep(1000);
451 /* retry will check if exiting */
452 return false;
453 }
454 /* beginning of smb buffer is cleared in our buf_get */
455 } else {
456 /* if existing small buf clear beginning */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400457 memset(server->smallbuf, 0, HEADER_SIZE(server));
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400458 }
459
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400460 return true;
461}
462
Jeff Laytonba749e62011-10-11 06:41:32 -0400463static bool
464server_unresponsive(struct TCP_Server_Info *server)
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400465{
Pavel Shilovsky6dae51a2012-02-21 16:50:23 +0300466 /*
Ronnie Sahlbergf2caf902019-07-06 06:52:46 +1000467 * We need to wait 3 echo intervals to make sure we handle such
Pavel Shilovsky6dae51a2012-02-21 16:50:23 +0300468 * situations right:
469 * 1s client sends a normal SMB request
Ronnie Sahlbergbecc2ba2019-07-24 11:43:49 +1000470 * 2s client gets a response
Pavel Shilovsky6dae51a2012-02-21 16:50:23 +0300471 * 30s echo workqueue job pops, and decides we got a response recently
472 * and don't need to send another
473 * ...
474 * 65s kernel_recvmsg times out, and we see that we haven't gotten
475 * a response in >60s.
476 */
Samuel Cabrero76e75272017-07-11 12:44:39 +0200477 if ((server->tcpStatus == CifsGood ||
478 server->tcpStatus == CifsNeedNegotiate) &&
Ronnie Sahlbergf2caf902019-07-06 06:52:46 +1000479 time_after(jiffies, server->lstrp + 3 * server->echo_interval)) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000480 cifs_server_dbg(VFS, "has not responded in %lu seconds. Reconnecting...\n",
481 (3 * server->echo_interval) / HZ);
Jeff Laytonba749e62011-10-11 06:41:32 -0400482 cifs_reconnect(server);
Jeff Laytonba749e62011-10-11 06:41:32 -0400483 return true;
484 }
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400485
Jeff Laytonba749e62011-10-11 06:41:32 -0400486 return false;
487}
488
Pavel Shilovskyef68e832019-01-18 17:25:36 -0800489static inline bool
490zero_credits(struct TCP_Server_Info *server)
491{
492 int val;
493
494 spin_lock(&server->req_lock);
495 val = server->credits + server->echo_credits + server->oplock_credits;
496 if (server->in_flight == 0 && val == 0) {
497 spin_unlock(&server->req_lock);
498 return true;
499 }
500 spin_unlock(&server->req_lock);
501 return false;
502}
503
Al Viro71335662016-01-09 19:54:50 -0500504static int
505cifs_readv_from_socket(struct TCP_Server_Info *server, struct msghdr *smb_msg)
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400506{
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400507 int length = 0;
508 int total_read;
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400509
Al Viro71335662016-01-09 19:54:50 -0500510 smb_msg->msg_control = NULL;
511 smb_msg->msg_controllen = 0;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400512
Al Viro71335662016-01-09 19:54:50 -0500513 for (total_read = 0; msg_data_left(smb_msg); total_read += length) {
Jeff Layton95edcff2011-12-01 20:22:41 -0500514 try_to_freeze();
515
Pavel Shilovskyef68e832019-01-18 17:25:36 -0800516 /* reconnect if no credits and no requests in flight */
517 if (zero_credits(server)) {
518 cifs_reconnect(server);
519 return -ECONNABORTED;
520 }
521
Al Viro71335662016-01-09 19:54:50 -0500522 if (server_unresponsive(server))
523 return -ECONNABORTED;
Long Li2fef1372017-11-22 17:38:41 -0700524 if (cifs_rdma_enabled(server) && server->smbd_conn)
525 length = smbd_recv(server->smbd_conn, smb_msg);
526 else
527 length = sock_recvmsg(server->ssocket, smb_msg, 0);
Al Viro71335662016-01-09 19:54:50 -0500528
529 if (server->tcpStatus == CifsExiting)
530 return -ESHUTDOWN;
531
532 if (server->tcpStatus == CifsNeedReconnect) {
533 cifs_reconnect(server);
534 return -ECONNABORTED;
Jeff Laytonba749e62011-10-11 06:41:32 -0400535 }
536
Al Viro71335662016-01-09 19:54:50 -0500537 if (length == -ERESTARTSYS ||
538 length == -EAGAIN ||
539 length == -EINTR) {
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400540 /*
541 * Minimum sleep to prevent looping, allowing socket
542 * to clear and app threads to set tcpStatus
543 * CifsNeedReconnect if server hung.
544 */
545 usleep_range(1000, 2000);
546 length = 0;
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400547 continue;
Al Viro71335662016-01-09 19:54:50 -0500548 }
549
550 if (length <= 0) {
Al Viro09aab882015-11-13 03:00:17 -0500551 cifs_dbg(FYI, "Received no data or error: %d\n", length);
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400552 cifs_reconnect(server);
Al Viro71335662016-01-09 19:54:50 -0500553 return -ECONNABORTED;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400554 }
555 }
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400556 return total_read;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400557}
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400558
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400559int
560cifs_read_from_socket(struct TCP_Server_Info *server, char *buf,
561 unsigned int to_read)
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400562{
Al Viro71335662016-01-09 19:54:50 -0500563 struct msghdr smb_msg;
564 struct kvec iov = {.iov_base = buf, .iov_len = to_read};
David Howellsaa563d72018-10-20 00:57:56 +0100565 iov_iter_kvec(&smb_msg.msg_iter, READ, &iov, 1, to_read);
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400566
Al Viro71335662016-01-09 19:54:50 -0500567 return cifs_readv_from_socket(server, &smb_msg);
568}
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400569
David Howellscf0604a2021-02-04 00:15:21 -0600570ssize_t
571cifs_discard_from_socket(struct TCP_Server_Info *server, size_t to_read)
572{
573 struct msghdr smb_msg;
574
575 /*
576 * iov_iter_discard already sets smb_msg.type and count and iov_offset
577 * and cifs_readv_from_socket sets msg_control and msg_controllen
578 * so little to initialize in struct msghdr
579 */
580 smb_msg.msg_name = NULL;
581 smb_msg.msg_namelen = 0;
582 iov_iter_discard(&smb_msg.msg_iter, READ, to_read);
583
584 return cifs_readv_from_socket(server, &smb_msg);
585}
586
Al Viro71335662016-01-09 19:54:50 -0500587int
588cifs_read_page_from_socket(struct TCP_Server_Info *server, struct page *page,
Long Li1dbe3462018-05-30 12:47:55 -0700589 unsigned int page_offset, unsigned int to_read)
Al Viro71335662016-01-09 19:54:50 -0500590{
591 struct msghdr smb_msg;
Long Li1dbe3462018-05-30 12:47:55 -0700592 struct bio_vec bv = {
593 .bv_page = page, .bv_len = to_read, .bv_offset = page_offset};
David Howellsaa563d72018-10-20 00:57:56 +0100594 iov_iter_bvec(&smb_msg.msg_iter, READ, &bv, 1, to_read);
Al Viro71335662016-01-09 19:54:50 -0500595 return cifs_readv_from_socket(server, &smb_msg);
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400596}
597
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400598static bool
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400599is_smb_response(struct TCP_Server_Info *server, unsigned char type)
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400600{
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400601 /*
602 * The first byte big endian of the length field,
603 * is actually not part of the length but the type
604 * with the most common, zero, as regular data.
605 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400606 switch (type) {
607 case RFC1002_SESSION_MESSAGE:
608 /* Regular SMB response */
609 return true;
610 case RFC1002_SESSION_KEEP_ALIVE:
Joe Perchesf96637b2013-05-04 22:12:25 -0500611 cifs_dbg(FYI, "RFC 1002 session keep alive\n");
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400612 break;
613 case RFC1002_POSITIVE_SESSION_RESPONSE:
Joe Perchesf96637b2013-05-04 22:12:25 -0500614 cifs_dbg(FYI, "RFC 1002 positive session response\n");
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400615 break;
616 case RFC1002_NEGATIVE_SESSION_RESPONSE:
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400617 /*
618 * We get this from Windows 98 instead of an error on
619 * SMB negprot response.
620 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500621 cifs_dbg(FYI, "RFC 1002 negative session response\n");
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400622 /* give server a second to clean up */
623 msleep(1000);
624 /*
625 * Always try 445 first on reconnect since we get NACK
626 * on some if we ever connected to port 139 (the NACK
627 * is since we do not begin with RFC1001 session
628 * initialize frame).
629 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400630 cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400631 cifs_reconnect(server);
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400632 break;
633 default:
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000634 cifs_server_dbg(VFS, "RFC 1002 unknown response type 0x%x\n", type);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400635 cifs_reconnect(server);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400636 }
637
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400638 return false;
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400639}
640
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400641void
642dequeue_mid(struct mid_q_entry *mid, bool malformed)
Jeff Laytonea1f4502011-10-19 15:29:05 -0400643{
644#ifdef CONFIG_CIFS_STATS2
645 mid->when_received = jiffies;
646#endif
647 spin_lock(&GlobalMid_Lock);
648 if (!malformed)
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400649 mid->mid_state = MID_RESPONSE_RECEIVED;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400650 else
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400651 mid->mid_state = MID_RESPONSE_MALFORMED;
Ronnie Sahlbergddf83af2018-08-30 10:12:59 +1000652 /*
653 * Trying to handle/dequeue a mid after the send_recv()
654 * function has finished processing it is a bug.
655 */
656 if (mid->mid_flags & MID_DELETED)
Joe Perchesa0a30362020-04-14 22:42:53 -0700657 pr_warn_once("trying to dequeue a deleted mid\n");
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700658 else {
Ronnie Sahlbergddf83af2018-08-30 10:12:59 +1000659 list_del_init(&mid->qhead);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700660 mid->mid_flags |= MID_DELETED;
661 }
Jeff Laytonea1f4502011-10-19 15:29:05 -0400662 spin_unlock(&GlobalMid_Lock);
663}
664
Pavel Shilovsky86a79642019-11-21 11:35:13 -0800665static unsigned int
666smb2_get_credits_from_hdr(char *buffer, struct TCP_Server_Info *server)
667{
668 struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buffer;
669
670 /*
671 * SMB1 does not use credits.
672 */
673 if (server->vals->header_preamble_size)
674 return 0;
675
676 return le16_to_cpu(shdr->CreditRequest);
677}
678
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400679static void
680handle_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server,
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400681 char *buf, int malformed)
Jeff Laytonea1f4502011-10-19 15:29:05 -0400682{
Pavel Shilovsky316cf942012-05-23 14:31:03 +0400683 if (server->ops->check_trans2 &&
684 server->ops->check_trans2(mid, server, buf, malformed))
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400685 return;
Pavel Shilovsky86a79642019-11-21 11:35:13 -0800686 mid->credits_received = smb2_get_credits_from_hdr(buf, server);
Jeff Laytonea1f4502011-10-19 15:29:05 -0400687 mid->resp_buf = buf;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400688 mid->large_buf = server->large_buf;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400689 /* Was previous buf put in mpx struct for multi-rsp? */
690 if (!mid->multiRsp) {
691 /* smb buffer will be freed by user thread */
692 if (server->large_buf)
693 server->bigbuf = NULL;
694 else
695 server->smallbuf = NULL;
696 }
Jeff Laytonffc00e22011-10-19 15:29:13 -0400697 dequeue_mid(mid, malformed);
Pavel Shilovskyad69bae2011-08-01 13:19:43 +0400698}
699
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400700static void clean_demultiplex_info(struct TCP_Server_Info *server)
701{
702 int length;
703
704 /* take it off the list, if it's not already */
705 spin_lock(&cifs_tcp_ses_lock);
706 list_del_init(&server->tcp_ses_list);
707 spin_unlock(&cifs_tcp_ses_lock);
708
Paulo Alcantara21225332020-11-28 16:54:02 -0300709 cancel_delayed_work_sync(&server->echo);
710
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400711 spin_lock(&GlobalMid_Lock);
712 server->tcpStatus = CifsExiting;
713 spin_unlock(&GlobalMid_Lock);
714 wake_up_all(&server->response_q);
715
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400716 /* check if we have blocked requests that need to free */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300717 spin_lock(&server->req_lock);
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400718 if (server->credits <= 0)
719 server->credits = 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300720 spin_unlock(&server->req_lock);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400721 /*
722 * Although there should not be any requests blocked on this queue it
723 * can not hurt to be paranoid and try to wake up requests that may
724 * haven been blocked when more than 50 at time were on the wire to the
725 * same server - they now will see the session is in exit state and get
726 * out of SendReceive.
727 */
728 wake_up_all(&server->request_q);
729 /* give those requests time to exit */
730 msleep(125);
Long Li050b8c32019-04-04 11:35:42 -0500731 if (cifs_rdma_enabled(server))
732 smbd_destroy(server);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400733 if (server->ssocket) {
734 sock_release(server->ssocket);
735 server->ssocket = NULL;
736 }
737
738 if (!list_empty(&server->pending_mid_q)) {
739 struct list_head dispose_list;
740 struct mid_q_entry *mid_entry;
741 struct list_head *tmp, *tmp2;
742
743 INIT_LIST_HEAD(&dispose_list);
744 spin_lock(&GlobalMid_Lock);
745 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
746 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Paulo Alcantarabf1bc6942021-03-08 12:00:47 -0300747 cifs_dbg(FYI, "Clearing mid %llu\n", mid_entry->mid);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700748 kref_get(&mid_entry->refcount);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400749 mid_entry->mid_state = MID_SHUTDOWN;
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400750 list_move(&mid_entry->qhead, &dispose_list);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700751 mid_entry->mid_flags |= MID_DELETED;
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400752 }
753 spin_unlock(&GlobalMid_Lock);
754
755 /* now walk dispose list and issue callbacks */
756 list_for_each_safe(tmp, tmp2, &dispose_list) {
757 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Paulo Alcantarabf1bc6942021-03-08 12:00:47 -0300758 cifs_dbg(FYI, "Callback mid %llu\n", mid_entry->mid);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400759 list_del_init(&mid_entry->qhead);
760 mid_entry->callback(mid_entry);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700761 cifs_mid_q_entry_release(mid_entry);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400762 }
763 /* 1/8th of sec is more than enough time for them to exit */
764 msleep(125);
765 }
766
767 if (!list_empty(&server->pending_mid_q)) {
768 /*
769 * mpx threads have not exited yet give them at least the smb
770 * send timeout time for long ops.
771 *
772 * Due to delays on oplock break requests, we need to wait at
773 * least 45 seconds before giving up on a request getting a
774 * response and going ahead and killing cifsd.
775 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500776 cifs_dbg(FYI, "Wait for exit from demultiplex thread\n");
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400777 msleep(46000);
778 /*
779 * If threads still have not exited they are probably never
780 * coming home not much else we can do but free the memory.
781 */
782 }
783
784 kfree(server->hostname);
785 kfree(server);
786
787 length = atomic_dec_return(&tcpSesAllocCount);
788 if (length > 0)
David Rientjes11d83362015-04-14 15:48:21 -0700789 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400790}
791
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400792static int
Jeff Laytone9097ab2011-10-19 15:29:40 -0400793standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid)
794{
795 int length;
796 char *buf = server->smallbuf;
Ronnie Sahlberg2e964672018-04-09 18:06:26 +1000797 unsigned int pdu_length = server->pdu_size;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400798
799 /* make sure this will fit in a large buffer */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100800 if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) -
801 server->vals->header_preamble_size) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000802 cifs_server_dbg(VFS, "SMB response too long (%u bytes)\n", pdu_length);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400803 cifs_reconnect(server);
Pavel Shilovsky3fabaa22014-07-10 09:55:52 +0400804 return -ECONNABORTED;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400805 }
806
807 /* switch to large buffer if too big for a small one */
808 if (pdu_length > MAX_CIFS_SMALL_BUFFER_SIZE - 4) {
809 server->large_buf = true;
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400810 memcpy(server->bigbuf, buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400811 buf = server->bigbuf;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400812 }
813
814 /* now read the rest */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400815 length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1,
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100816 pdu_length - HEADER_SIZE(server) + 1
817 + server->vals->header_preamble_size);
818
Jeff Laytone9097ab2011-10-19 15:29:40 -0400819 if (length < 0)
820 return length;
821 server->total_read += length;
822
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400823 dump_smb(buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400824
Pavel Shilovsky4326ed22016-11-17 15:24:46 -0800825 return cifs_handle_standard(server, mid);
826}
827
828int
829cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid)
830{
831 char *buf = server->large_buf ? server->bigbuf : server->smallbuf;
832 int length;
833
Jeff Laytone9097ab2011-10-19 15:29:40 -0400834 /*
835 * We know that we received enough to get to the MID as we
836 * checked the pdu_length earlier. Now check to see
837 * if the rest of the header is OK. We borrow the length
838 * var for the rest of the loop to avoid a new stack var.
839 *
840 * 48 bytes is enough to display the header and a little bit
841 * into the payload for debugging purposes.
842 */
Steve French373512e2015-12-18 13:05:30 -0600843 length = server->ops->check_message(buf, server->total_read, server);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400844 if (length != 0)
845 cifs_dump_mem("Bad SMB: ", buf,
846 min_t(unsigned int, server->total_read, 48));
847
Pavel Shilovsky511c54a2017-07-08 14:32:00 -0700848 if (server->ops->is_session_expired &&
849 server->ops->is_session_expired(buf)) {
850 cifs_reconnect(server);
Pavel Shilovsky511c54a2017-07-08 14:32:00 -0700851 return -1;
852 }
853
Pavel Shilovsky2e44b282012-09-18 16:20:33 -0700854 if (server->ops->is_status_pending &&
Pavel Shilovsky66265f12019-01-23 17:11:16 -0800855 server->ops->is_status_pending(buf, server))
Pavel Shilovsky2e44b282012-09-18 16:20:33 -0700856 return -1;
857
Jeff Laytonff4fa4a2012-02-07 06:31:05 -0500858 if (!mid)
859 return length;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400860
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400861 handle_mid(mid, server, buf, length);
Jeff Laytonff4fa4a2012-02-07 06:31:05 -0500862 return 0;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400863}
864
Ronnie Sahlbergeca00452019-02-05 12:56:44 +1000865static void
866smb2_add_credits_from_hdr(char *buffer, struct TCP_Server_Info *server)
867{
868 struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buffer;
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800869 int scredits, in_flight;
Ronnie Sahlbergeca00452019-02-05 12:56:44 +1000870
871 /*
872 * SMB1 does not use credits.
873 */
874 if (server->vals->header_preamble_size)
875 return;
876
877 if (shdr->CreditRequest) {
878 spin_lock(&server->req_lock);
879 server->credits += le16_to_cpu(shdr->CreditRequest);
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800880 scredits = server->credits;
881 in_flight = server->in_flight;
Ronnie Sahlbergeca00452019-02-05 12:56:44 +1000882 spin_unlock(&server->req_lock);
883 wake_up(&server->request_q);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800884
885 trace_smb3_add_credits(server->CurrentMid,
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800886 server->conn_id, server->hostname, scredits,
887 le16_to_cpu(shdr->CreditRequest), in_flight);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800888 cifs_server_dbg(FYI, "%s: added %u credits total=%d\n",
889 __func__, le16_to_cpu(shdr->CreditRequest),
890 scredits);
Ronnie Sahlbergeca00452019-02-05 12:56:44 +1000891 }
892}
893
894
Jeff Laytone9097ab2011-10-19 15:29:40 -0400895static int
Al Viro7c97c202011-06-21 08:51:28 -0400896cifs_demultiplex_thread(void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +1000898 int i, num_mids, length;
Al Viro7c97c202011-06-21 08:51:28 -0400899 struct TCP_Server_Info *server = p;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400900 unsigned int pdu_length;
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +1000901 unsigned int next_offset;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400902 char *buf = NULL;
Steve Frencha5c3e1c2014-09-16 04:16:19 -0500903 struct task_struct *task_to_wake = NULL;
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +1000904 struct mid_q_entry *mids[MAX_COMPOUND];
905 char *bufs[MAX_COMPOUND];
Rohith Surabattula8e670f72020-09-18 05:37:28 +0000906 unsigned int noreclaim_flag, num_io_timeout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Eric Biggersdc920272020-03-08 22:58:20 -0700908 noreclaim_flag = memalloc_noreclaim_save();
Joe Perchesf96637b2013-05-04 22:12:25 -0500909 cifs_dbg(FYI, "Demultiplex PID: %d\n", task_pid_nr(current));
Jeff Layton93d0ec82008-08-02 08:00:48 -0400910
911 length = atomic_inc_return(&tcpSesAllocCount);
912 if (length > 1)
David Rientjes11d83362015-04-14 15:48:21 -0700913 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700915 set_freezable();
Eric W. Biederman33da8e72019-08-16 12:33:54 -0500916 allow_kernel_signal(SIGKILL);
Jeff Layton469ee612008-10-16 18:46:39 +0000917 while (server->tcpStatus != CifsExiting) {
Steve Frenchede13272005-08-30 20:10:14 -0700918 if (try_to_freeze())
919 continue;
Steve Frenchb8643e12005-04-28 22:41:07 -0700920
Jeff Layton2a37ef92011-10-19 15:29:23 -0400921 if (!allocate_buffers(server))
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400922 continue;
Steve Frenchb8643e12005-04-28 22:41:07 -0700923
Jeff Layton2a37ef92011-10-19 15:29:23 -0400924 server->large_buf = false;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400925 buf = server->smallbuf;
Steve Frenchf01d5e12007-08-30 21:13:31 +0000926 pdu_length = 4; /* enough to get RFC1001 header */
Steve Frenchfda35942011-01-20 18:06:34 +0000927
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400928 length = cifs_read_from_socket(server, buf, pdu_length);
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400929 if (length < 0)
Steve Frenchfda35942011-01-20 18:06:34 +0000930 continue;
Ronnie Sahlberg977b6172018-06-01 10:53:02 +1000931
932 if (server->vals->header_preamble_size == 0)
933 server->total_read = 0;
934 else
935 server->total_read = length;
Steve French67010fb2005-04-28 22:41:09 -0700936
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400937 /*
938 * The right amount was read from socket - 4 bytes,
939 * so we can now interpret the length field.
940 */
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400941 pdu_length = get_rfc1002_length(buf);
Steve French46810cb2005-04-28 22:41:09 -0700942
Joe Perchesf96637b2013-05-04 22:12:25 -0500943 cifs_dbg(FYI, "RFC1002 header 0x%x\n", pdu_length);
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400944 if (!is_smb_response(server, buf[0]))
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000945 continue;
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +1000946next_pdu:
947 server->pdu_size = pdu_length;
Steve Frenche4eb2952005-04-28 22:41:09 -0700948
Jeff Layton89482a52011-10-19 15:28:57 -0400949 /* make sure we have enough to get to the MID */
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +1000950 if (server->pdu_size < HEADER_SIZE(server) - 1 -
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100951 server->vals->header_preamble_size) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000952 cifs_server_dbg(VFS, "SMB response too short (%u bytes)\n",
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +1000953 server->pdu_size);
Jeff Layton89482a52011-10-19 15:28:57 -0400954 cifs_reconnect(server);
Jeff Layton89482a52011-10-19 15:28:57 -0400955 continue;
Steve Frenche4eb2952005-04-28 22:41:09 -0700956 }
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400957
Jeff Layton89482a52011-10-19 15:28:57 -0400958 /* read down to the MID */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100959 length = cifs_read_from_socket(server,
960 buf + server->vals->header_preamble_size,
961 HEADER_SIZE(server) - 1
962 - server->vals->header_preamble_size);
Jeff Layton89482a52011-10-19 15:28:57 -0400963 if (length < 0)
964 continue;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400965 server->total_read += length;
Jeff Layton89482a52011-10-19 15:28:57 -0400966
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +1000967 if (server->ops->next_header) {
968 next_offset = server->ops->next_header(buf);
969 if (next_offset)
970 server->pdu_size = next_offset;
971 }
972
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +1000973 memset(mids, 0, sizeof(mids));
974 memset(bufs, 0, sizeof(bufs));
975 num_mids = 0;
976
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -0800977 if (server->ops->is_transform_hdr &&
978 server->ops->receive_transform &&
979 server->ops->is_transform_hdr(buf)) {
980 length = server->ops->receive_transform(server,
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +1000981 mids,
982 bufs,
983 &num_mids);
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -0800984 } else {
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +1000985 mids[0] = server->ops->find_mid(server, buf);
986 bufs[0] = buf;
Steve French7af929d2018-10-02 18:54:09 -0500987 num_mids = 1;
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400988
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +1000989 if (!mids[0] || !mids[0]->receive)
990 length = standard_receive3(server, mids[0]);
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -0800991 else
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +1000992 length = mids[0]->receive(server, mids[0]);
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -0800993 }
Jeff Layton44d22d82011-10-19 15:29:49 -0400994
Lars Persson696e4202018-06-25 14:05:25 +0200995 if (length < 0) {
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +1000996 for (i = 0; i < num_mids; i++)
997 if (mids[i])
998 cifs_mid_q_entry_release(mids[i]);
Steve Frenche4eb2952005-04-28 22:41:09 -0700999 continue;
Lars Persson696e4202018-06-25 14:05:25 +02001000 }
Steve Frenche4eb2952005-04-28 22:41:09 -07001001
Rohith Surabattula8e670f72020-09-18 05:37:28 +00001002 if (server->ops->is_status_io_timeout &&
1003 server->ops->is_status_io_timeout(buf)) {
1004 num_io_timeout++;
1005 if (num_io_timeout > NUM_STATUS_IO_TIMEOUT) {
1006 cifs_reconnect(server);
1007 num_io_timeout = 0;
1008 continue;
1009 }
1010 }
1011
Steve Frenchfda35942011-01-20 18:06:34 +00001012 server->lstrp = jiffies;
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001013
1014 for (i = 0; i < num_mids; i++) {
1015 if (mids[i] != NULL) {
1016 mids[i]->resp_buf_size = server->pdu_size;
Sachin Prabhu38bd4902017-03-03 15:41:38 -08001017
Rohith Surabattula9e550b02021-02-16 10:40:45 +00001018 if (bufs[i] && server->ops->is_network_name_deleted)
1019 server->ops->is_network_name_deleted(bufs[i],
1020 server);
1021
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001022 if (!mids[i]->multiRsp || mids[i]->multiEnd)
1023 mids[i]->callback(mids[i]);
Lars Persson696e4202018-06-25 14:05:25 +02001024
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001025 cifs_mid_q_entry_release(mids[i]);
1026 } else if (server->ops->is_oplock_break &&
1027 server->ops->is_oplock_break(bufs[i],
1028 server)) {
Ronnie Sahlbergeca00452019-02-05 12:56:44 +10001029 smb2_add_credits_from_hdr(bufs[i], server);
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001030 cifs_dbg(FYI, "Received oplock break\n");
1031 } else {
Joe Perchesa0a30362020-04-14 22:42:53 -07001032 cifs_server_dbg(VFS, "No task to wake, unknown frame received! NumMids %d\n",
1033 atomic_read(&midCount));
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001034 cifs_dump_mem("Received Data is: ", bufs[i],
1035 HEADER_SIZE(server));
Ronnie Sahlberg3e272572019-07-06 06:43:08 +10001036 smb2_add_credits_from_hdr(bufs[i], server);
Steve French39798772006-05-31 22:40:51 +00001037#ifdef CONFIG_CIFS_DEBUG2
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001038 if (server->ops->dump_detail)
1039 server->ops->dump_detail(bufs[i],
1040 server);
1041 cifs_dump_mids(server);
Steve French39798772006-05-31 22:40:51 +00001042#endif /* CIFS_DEBUG2 */
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001043 }
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001044 }
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001045
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001046 if (pdu_length > server->pdu_size) {
1047 if (!allocate_buffers(server))
1048 continue;
1049 pdu_length -= server->pdu_size;
1050 server->total_read = 0;
1051 server->large_buf = false;
1052 buf = server->smallbuf;
1053 goto next_pdu;
Steve Frenche4eb2952005-04-28 22:41:09 -07001054 }
1055 } /* end while !EXITING */
1056
Justin P. Mattockfd62cb72011-02-24 22:15:02 -08001057 /* buffer usually freed in free_mid - need to free it here on exit */
Jeff Layton2a37ef92011-10-19 15:29:23 -04001058 cifs_buf_release(server->bigbuf);
1059 if (server->smallbuf) /* no sense logging a debug message if NULL */
1060 cifs_small_buf_release(server->smallbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Steve Frencha5c3e1c2014-09-16 04:16:19 -05001062 task_to_wake = xchg(&server->tsk, NULL);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +04001063 clean_demultiplex_info(server);
Steve Frencha5c3e1c2014-09-16 04:16:19 -05001064
1065 /* if server->tsk was NULL then wait for a signal before exiting */
1066 if (!task_to_wake) {
1067 set_current_state(TASK_INTERRUPTIBLE);
1068 while (!signal_pending(current)) {
1069 schedule();
1070 set_current_state(TASK_INTERRUPTIBLE);
1071 }
1072 set_current_state(TASK_RUNNING);
1073 }
1074
Eric Biggersdc920272020-03-08 22:58:20 -07001075 memalloc_noreclaim_restore(noreclaim_flag);
Jeff Layton0468a2c2008-12-01 07:09:35 -05001076 module_put_and_exit(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078
Steve Frenchbc044992020-12-11 19:48:26 -06001079/**
1080 * Returns true if srcaddr isn't specified and rhs isn't specified, or
1081 * if srcaddr is specified and matches the IP address of the rhs argument
Ben Greear3eb9a882010-09-01 17:06:02 -07001082 */
Paulo Alcantarae4af35f2020-05-19 15:38:28 -03001083bool
1084cifs_match_ipaddr(struct sockaddr *srcaddr, struct sockaddr *rhs)
Ben Greear3eb9a882010-09-01 17:06:02 -07001085{
1086 switch (srcaddr->sa_family) {
1087 case AF_UNSPEC:
1088 return (rhs->sa_family == AF_UNSPEC);
1089 case AF_INET: {
1090 struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr;
1091 struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs;
1092 return (saddr4->sin_addr.s_addr == vaddr4->sin_addr.s_addr);
1093 }
1094 case AF_INET6: {
1095 struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr;
Nickolai Zeldoviche3e27752013-01-16 21:36:17 -05001096 struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs;
Ben Greear3eb9a882010-09-01 17:06:02 -07001097 return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr);
1098 }
1099 default:
1100 WARN_ON(1);
1101 return false; /* don't expect to be here */
1102 }
1103}
1104
Pavel Shilovsky4b886132010-12-13 22:18:07 +03001105/*
1106 * If no port is specified in addr structure, we try to match with 445 port
1107 * and if it fails - with 139 ports. It should be called only if address
1108 * families of server and addr are equal.
1109 */
1110static bool
1111match_port(struct TCP_Server_Info *server, struct sockaddr *addr)
1112{
Steve French6da97912011-03-13 18:55:55 +00001113 __be16 port, *sport;
Pavel Shilovsky4b886132010-12-13 22:18:07 +03001114
Long Li3b249112019-05-15 14:09:04 -07001115 /* SMBDirect manages its own ports, don't match it here */
1116 if (server->rdma)
1117 return true;
1118
Pavel Shilovsky4b886132010-12-13 22:18:07 +03001119 switch (addr->sa_family) {
1120 case AF_INET:
1121 sport = &((struct sockaddr_in *) &server->dstaddr)->sin_port;
1122 port = ((struct sockaddr_in *) addr)->sin_port;
1123 break;
1124 case AF_INET6:
1125 sport = &((struct sockaddr_in6 *) &server->dstaddr)->sin6_port;
1126 port = ((struct sockaddr_in6 *) addr)->sin6_port;
1127 break;
1128 default:
1129 WARN_ON(1);
1130 return false;
1131 }
1132
1133 if (!port) {
1134 port = htons(CIFS_PORT);
1135 if (port == *sport)
1136 return true;
1137
1138 port = htons(RFC1001_PORT);
1139 }
1140
1141 return port == *sport;
1142}
Ben Greear3eb9a882010-09-01 17:06:02 -07001143
1144static bool
1145match_address(struct TCP_Server_Info *server, struct sockaddr *addr,
1146 struct sockaddr *srcaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
Jeff Layton45151482010-07-06 20:43:02 -04001148 switch (addr->sa_family) {
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03001149 case AF_INET: {
1150 struct sockaddr_in *addr4 = (struct sockaddr_in *)addr;
1151 struct sockaddr_in *srv_addr4 =
1152 (struct sockaddr_in *)&server->dstaddr;
1153
1154 if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr)
Jeff Layton45151482010-07-06 20:43:02 -04001155 return false;
Jeff Layton45151482010-07-06 20:43:02 -04001156 break;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03001157 }
1158 case AF_INET6: {
1159 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr;
1160 struct sockaddr_in6 *srv_addr6 =
1161 (struct sockaddr_in6 *)&server->dstaddr;
1162
Jeff Layton45151482010-07-06 20:43:02 -04001163 if (!ipv6_addr_equal(&addr6->sin6_addr,
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03001164 &srv_addr6->sin6_addr))
Jeff Layton45151482010-07-06 20:43:02 -04001165 return false;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03001166 if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id)
Jeff Layton45151482010-07-06 20:43:02 -04001167 return false;
Jeff Layton45151482010-07-06 20:43:02 -04001168 break;
1169 }
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03001170 default:
1171 WARN_ON(1);
1172 return false; /* don't expect to be here */
1173 }
Jeff Layton45151482010-07-06 20:43:02 -04001174
Paulo Alcantarae4af35f2020-05-19 15:38:28 -03001175 if (!cifs_match_ipaddr(srcaddr, (struct sockaddr *)&server->srcaddr))
Ben Greear3eb9a882010-09-01 17:06:02 -07001176 return false;
1177
Jeff Layton45151482010-07-06 20:43:02 -04001178 return true;
1179}
1180
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04001181static bool
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001182match_security(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04001183{
Jeff Layton3f618222013-06-12 19:52:14 -05001184 /*
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001185 * The select_sectype function should either return the ctx->sectype
Jeff Layton3f618222013-06-12 19:52:14 -05001186 * that was specified, or "Unspecified" if that sectype was not
1187 * compatible with the given NEGOTIATE request.
1188 */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001189 if (server->ops->select_sectype(server, ctx->sectype)
Sachin Prabhuef65aae2017-01-18 15:35:57 +05301190 == Unspecified)
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04001191 return false;
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04001192
Jeff Layton3f618222013-06-12 19:52:14 -05001193 /*
1194 * Now check if signing mode is acceptable. No need to check
1195 * global_secflags at this point since if MUST_SIGN is set then
1196 * the server->sign had better be too.
1197 */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001198 if (ctx->sign && !server->sign)
Jeff Layton38d77c52013-05-26 07:01:00 -04001199 return false;
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04001200
1201 return true;
1202}
1203
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001204static int match_server(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001205{
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001206 struct sockaddr *addr = (struct sockaddr *)&ctx->dstaddr;
Jeff Layton9fa114f2012-11-26 11:09:57 -05001207
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001208 if (ctx->nosharesock)
Jeff Laytona0b3df52013-05-24 07:40:59 -04001209 return 0;
1210
Steve French43cdae82019-06-13 14:26:49 -05001211 /* If multidialect negotiation see if existing sessions match one */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001212 if (strcmp(ctx->vals->version_string, SMB3ANY_VERSION_STRING) == 0) {
Steve French43cdae82019-06-13 14:26:49 -05001213 if (server->vals->protocol_id < SMB30_PROT_ID)
1214 return 0;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001215 } else if (strcmp(ctx->vals->version_string,
Steve French43cdae82019-06-13 14:26:49 -05001216 SMBDEFAULT_VERSION_STRING) == 0) {
1217 if (server->vals->protocol_id < SMB21_PROT_ID)
1218 return 0;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001219 } else if ((server->vals != ctx->vals) || (server->ops != ctx->ops))
Jeff Layton23db65f2012-05-15 12:20:51 -04001220 return 0;
1221
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001222 if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns))
1223 return 0;
1224
1225 if (!match_address(server, addr,
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001226 (struct sockaddr *)&ctx->srcaddr))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001227 return 0;
1228
1229 if (!match_port(server, addr))
1230 return 0;
1231
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001232 if (!match_security(server, ctx))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001233 return 0;
1234
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001235 if (server->echo_interval != ctx->echo_interval * HZ)
Steve Frenchadfeb3e2015-12-18 12:31:36 -06001236 return 0;
1237
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001238 if (server->rdma != ctx->rdma)
Long Li8339dd32017-11-07 01:54:55 -07001239 return 0;
1240
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001241 if (server->ignore_signature != ctx->ignore_signature)
Steve French4f5c10f2019-09-03 21:18:49 -05001242 return 0;
1243
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001244 if (server->min_offload != ctx->min_offload)
Steve French563317e2019-09-08 23:22:02 -05001245 return 0;
1246
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001247 return 1;
1248}
1249
Paulo Alcantara54be1f62018-11-14 16:01:21 -02001250struct TCP_Server_Info *
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001251cifs_find_tcp_session(struct smb3_fs_context *ctx)
Jeff Layton45151482010-07-06 20:43:02 -04001252{
Jeff Laytone7ddee92008-11-14 13:44:38 -05001253 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301255 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton45151482010-07-06 20:43:02 -04001256 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
Paulo Alcantara (SUSE)3345bb42019-12-04 11:25:06 -03001257 /*
1258 * Skip ses channels since they're only handled in lower layers
1259 * (e.g. cifs_send_recv).
1260 */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001261 if (server->is_channel || !match_server(server, ctx))
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04001262 continue;
1263
Jeff Laytone7ddee92008-11-14 13:44:38 -05001264 ++server->srv_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301265 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -05001266 cifs_dbg(FYI, "Existing tcp session with server found\n");
Jeff Laytone7ddee92008-11-14 13:44:38 -05001267 return server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301269 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return NULL;
1271}
1272
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07001273void
1274cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
Steve Frencha5c3e1c2014-09-16 04:16:19 -05001276 struct task_struct *task;
1277
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301278 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05001279 if (--server->srv_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301280 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05001281 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
Steve Frenchdea570e02008-05-06 22:05:51 +00001283
Rob Landleyf1d0c992011-01-22 15:44:05 -06001284 put_net(cifs_net_ns(server));
1285
Jeff Laytone7ddee92008-11-14 13:44:38 -05001286 list_del_init(&server->tcp_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301287 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05001288
Jeff Laytonc74093b2011-01-11 07:24:23 -05001289 cancel_delayed_work_sync(&server->echo);
1290
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07001291 if (from_reconnect)
1292 /*
1293 * Avoid deadlock here: reconnect work calls
1294 * cifs_put_tcp_session() at its end. Need to be sure
1295 * that reconnect work does nothing with server pointer after
1296 * that step.
1297 */
1298 cancel_delayed_work(&server->reconnect);
1299 else
1300 cancel_delayed_work_sync(&server->reconnect);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07001301
Jeff Laytone7ddee92008-11-14 13:44:38 -05001302 spin_lock(&GlobalMid_Lock);
1303 server->tcpStatus = CifsExiting;
1304 spin_unlock(&GlobalMid_Lock);
1305
Pavel Shilovsky026e93d2016-11-03 16:47:37 -07001306 cifs_crypto_secmech_release(server);
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05301307 cifs_fscache_release_client_cookie(server);
1308
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05001309 kfree(server->session_key.response);
1310 server->session_key.response = NULL;
1311 server->session_key.len = 0;
Steve Frencha5c3e1c2014-09-16 04:16:19 -05001312
1313 task = xchg(&server->tsk, NULL);
1314 if (task)
Eric W. Biederman72abe3b2019-05-15 12:33:50 -05001315 send_sig(SIGKILL, task, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
1317
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02001318struct TCP_Server_Info *
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001319cifs_get_tcp_session(struct smb3_fs_context *ctx)
Jeff Layton63c038c2008-12-01 18:41:46 -05001320{
1321 struct TCP_Server_Info *tcp_ses = NULL;
Jeff Layton63c038c2008-12-01 18:41:46 -05001322 int rc;
1323
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001324 cifs_dbg(FYI, "UNC: %s\n", ctx->UNC);
Jeff Layton63c038c2008-12-01 18:41:46 -05001325
1326 /* see if we already have a matching tcp_ses */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001327 tcp_ses = cifs_find_tcp_session(ctx);
Jeff Layton63c038c2008-12-01 18:41:46 -05001328 if (tcp_ses)
1329 return tcp_ses;
1330
1331 tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL);
1332 if (!tcp_ses) {
1333 rc = -ENOMEM;
1334 goto out_err;
1335 }
1336
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001337 tcp_ses->ops = ctx->ops;
1338 tcp_ses->vals = ctx->vals;
Rob Landleyf1d0c992011-01-22 15:44:05 -06001339 cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns));
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001340 tcp_ses->hostname = extract_hostname(ctx->UNC);
Jeff Layton63c038c2008-12-01 18:41:46 -05001341 if (IS_ERR(tcp_ses->hostname)) {
1342 rc = PTR_ERR(tcp_ses->hostname);
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05001343 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05001344 }
1345
Shyam Prasad N6d82c272021-02-03 23:20:46 -08001346 tcp_ses->conn_id = atomic_inc_return(&tcpSesNextId);
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001347 tcp_ses->noblockcnt = ctx->rootfs;
1348 tcp_ses->noblocksnd = ctx->noblocksnd || ctx->rootfs;
1349 tcp_ses->noautotune = ctx->noautotune;
1350 tcp_ses->tcp_nodelay = ctx->sockopt_tcp_nodelay;
1351 tcp_ses->rdma = ctx->rdma;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +03001352 tcp_ses->in_flight = 0;
Steve French1b63f182019-09-09 22:57:11 -05001353 tcp_ses->max_in_flight = 0;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +04001354 tcp_ses->credits = 1;
Jeff Layton63c038c2008-12-01 18:41:46 -05001355 init_waitqueue_head(&tcp_ses->response_q);
1356 init_waitqueue_head(&tcp_ses->request_q);
1357 INIT_LIST_HEAD(&tcp_ses->pending_mid_q);
1358 mutex_init(&tcp_ses->srv_mutex);
1359 memcpy(tcp_ses->workstation_RFC1001_name,
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001360 ctx->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
Jeff Layton63c038c2008-12-01 18:41:46 -05001361 memcpy(tcp_ses->server_RFC1001_name,
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001362 ctx->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -05001363 tcp_ses->session_estab = false;
Jeff Layton63c038c2008-12-01 18:41:46 -05001364 tcp_ses->sequence_number = 0;
Pavel Shilovsky5b964852019-01-18 11:30:26 -08001365 tcp_ses->reconnect_instance = 1;
Steve Frenchfda35942011-01-20 18:06:34 +00001366 tcp_ses->lstrp = jiffies;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001367 tcp_ses->compress_algorithm = cpu_to_le16(ctx->compression);
Jeff Layton58fa0152012-05-01 17:41:16 -04001368 spin_lock_init(&tcp_ses->req_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05001369 INIT_LIST_HEAD(&tcp_ses->tcp_ses_list);
1370 INIT_LIST_HEAD(&tcp_ses->smb_ses_list);
Jeff Laytonc74093b2011-01-11 07:24:23 -05001371 INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07001372 INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server);
1373 mutex_init(&tcp_ses->reconnect_mutex);
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001374 memcpy(&tcp_ses->srcaddr, &ctx->srcaddr,
Jeff Layton9fa114f2012-11-26 11:09:57 -05001375 sizeof(tcp_ses->srcaddr));
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001376 memcpy(&tcp_ses->dstaddr, &ctx->dstaddr,
Jeff Layton9fa114f2012-11-26 11:09:57 -05001377 sizeof(tcp_ses->dstaddr));
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001378 if (ctx->use_client_guid)
1379 memcpy(tcp_ses->client_guid, ctx->client_guid,
Aurelien Aptelbcc88802019-09-20 04:32:20 +02001380 SMB2_CLIENT_GUID_SIZE);
1381 else
1382 generate_random_uuid(tcp_ses->client_guid);
Jeff Layton63c038c2008-12-01 18:41:46 -05001383 /*
1384 * at this point we are the only ones with the pointer
1385 * to the struct since the kernel thread not created yet
1386 * no need to spinlock this init of tcpStatus or srv_count
1387 */
1388 tcp_ses->tcpStatus = CifsNew;
1389 ++tcp_ses->srv_count;
1390
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001391 if (ctx->echo_interval >= SMB_ECHO_INTERVAL_MIN &&
1392 ctx->echo_interval <= SMB_ECHO_INTERVAL_MAX)
1393 tcp_ses->echo_interval = ctx->echo_interval * HZ;
Steve Frenchadfeb3e2015-12-18 12:31:36 -06001394 else
1395 tcp_ses->echo_interval = SMB_ECHO_INTERVAL_DEFAULT * HZ;
Long Li2f894642017-11-22 17:38:34 -07001396 if (tcp_ses->rdma) {
1397#ifndef CONFIG_CIFS_SMB_DIRECT
1398 cifs_dbg(VFS, "CONFIG_CIFS_SMB_DIRECT is not enabled\n");
1399 rc = -ENOENT;
1400 goto out_err_crypto_release;
1401#endif
1402 tcp_ses->smbd_conn = smbd_get_connection(
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001403 tcp_ses, (struct sockaddr *)&ctx->dstaddr);
Long Li2f894642017-11-22 17:38:34 -07001404 if (tcp_ses->smbd_conn) {
1405 cifs_dbg(VFS, "RDMA transport established\n");
1406 rc = 0;
1407 goto smbd_connected;
1408 } else {
1409 rc = -ENOENT;
1410 goto out_err_crypto_release;
1411 }
1412 }
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03001413 rc = ip_connect(tcp_ses);
Jeff Layton63c038c2008-12-01 18:41:46 -05001414 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001415 cifs_dbg(VFS, "Error connecting to socket. Aborting operation.\n");
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05001416 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05001417 }
Long Li2f894642017-11-22 17:38:34 -07001418smbd_connected:
Jeff Layton63c038c2008-12-01 18:41:46 -05001419 /*
1420 * since we're in a cifs function already, we know that
1421 * this will succeed. No need for try_module_get().
1422 */
1423 __module_get(THIS_MODULE);
Al Viro7c97c202011-06-21 08:51:28 -04001424 tcp_ses->tsk = kthread_run(cifs_demultiplex_thread,
Jeff Layton63c038c2008-12-01 18:41:46 -05001425 tcp_ses, "cifsd");
1426 if (IS_ERR(tcp_ses->tsk)) {
1427 rc = PTR_ERR(tcp_ses->tsk);
Joe Perchesf96637b2013-05-04 22:12:25 -05001428 cifs_dbg(VFS, "error %d create cifsd thread\n", rc);
Jeff Layton63c038c2008-12-01 18:41:46 -05001429 module_put(THIS_MODULE);
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05001430 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05001431 }
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001432 tcp_ses->min_offload = ctx->min_offload;
Steve Frenchfd88ce92011-04-12 01:01:14 +00001433 tcp_ses->tcpStatus = CifsNeedNegotiate;
Jeff Layton63c038c2008-12-01 18:41:46 -05001434
Aurelien Aptela249cc82021-03-04 17:42:21 +00001435 if ((ctx->max_credits < 20) || (ctx->max_credits > 60000))
1436 tcp_ses->max_credits = SMB2_MAX_CREDITS_AVAILABLE;
1437 else
1438 tcp_ses->max_credits = ctx->max_credits;
1439
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02001440 tcp_ses->nr_targets = 1;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001441 tcp_ses->ignore_signature = ctx->ignore_signature;
Jeff Layton63c038c2008-12-01 18:41:46 -05001442 /* thread spawned, put it on the list */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301443 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05001444 list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301445 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05001446
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05301447 cifs_fscache_get_client_cookie(tcp_ses);
1448
Jeff Laytonc74093b2011-01-11 07:24:23 -05001449 /* queue echo request delayed work */
Steve Frenchadfeb3e2015-12-18 12:31:36 -06001450 queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval);
Jeff Laytonc74093b2011-01-11 07:24:23 -05001451
Jeff Layton63c038c2008-12-01 18:41:46 -05001452 return tcp_ses;
1453
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05001454out_err_crypto_release:
Pavel Shilovsky026e93d2016-11-03 16:47:37 -07001455 cifs_crypto_secmech_release(tcp_ses);
Shirish Pargaonkard2b91522010-10-21 14:25:08 -05001456
Rob Landleyf1d0c992011-01-22 15:44:05 -06001457 put_net(cifs_net_ns(tcp_ses));
1458
Jeff Layton63c038c2008-12-01 18:41:46 -05001459out_err:
1460 if (tcp_ses) {
Steve French8347a5c2009-10-06 18:31:29 +00001461 if (!IS_ERR(tcp_ses->hostname))
1462 kfree(tcp_ses->hostname);
Jeff Layton63c038c2008-12-01 18:41:46 -05001463 if (tcp_ses->ssocket)
1464 sock_release(tcp_ses->ssocket);
1465 kfree(tcp_ses);
1466 }
1467 return ERR_PTR(rc);
1468}
1469
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001470static int match_session(struct cifs_ses *ses, struct smb3_fs_context *ctx)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001471{
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001472 if (ctx->sectype != Unspecified &&
1473 ctx->sectype != ses->sectype)
Jeff Layton3f618222013-06-12 19:52:14 -05001474 return 0;
1475
Aurelien Aptelbcc88802019-09-20 04:32:20 +02001476 /*
1477 * If an existing session is limited to less channels than
1478 * requested, it should not be reused
1479 */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001480 if (ses->chan_max < ctx->max_channels)
Aurelien Aptelbcc88802019-09-20 04:32:20 +02001481 return 0;
1482
Jeff Layton3f618222013-06-12 19:52:14 -05001483 switch (ses->sectype) {
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001484 case Kerberos:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001485 if (!uid_eq(ctx->cred_uid, ses->cred_uid))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001486 return 0;
1487 break;
1488 default:
Jeff Layton04febab2012-01-17 16:09:15 -05001489 /* NULL username means anonymous session */
1490 if (ses->user_name == NULL) {
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001491 if (!ctx->nullauth)
Jeff Layton04febab2012-01-17 16:09:15 -05001492 return 0;
1493 break;
1494 }
1495
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001496 /* anything else takes username/password */
Jeff Layton04febab2012-01-17 16:09:15 -05001497 if (strncmp(ses->user_name,
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001498 ctx->username ? ctx->username : "",
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04001499 CIFS_MAX_USERNAME_LEN))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001500 return 0;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001501 if ((ctx->username && strlen(ctx->username) != 0) &&
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001502 ses->password != NULL &&
1503 strncmp(ses->password,
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001504 ctx->password ? ctx->password : "",
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04001505 CIFS_MAX_PASSWORD_LEN))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001506 return 0;
1507 }
1508 return 1;
1509}
1510
Aurelien Aptelb327a712018-01-24 13:46:10 +01001511/**
1512 * cifs_setup_ipc - helper to setup the IPC tcon for the session
1513 *
1514 * A new IPC connection is made and stored in the session
1515 * tcon_ipc. The IPC tcon has the same lifetime as the session.
1516 */
1517static int
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001518cifs_setup_ipc(struct cifs_ses *ses, struct smb3_fs_context *ctx)
Aurelien Aptelb327a712018-01-24 13:46:10 +01001519{
1520 int rc = 0, xid;
1521 struct cifs_tcon *tcon;
Aurelien Aptelb327a712018-01-24 13:46:10 +01001522 char unc[SERVER_NAME_LENGTH + sizeof("//x/IPC$")] = {0};
1523 bool seal = false;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001524 struct TCP_Server_Info *server = ses->server;
Aurelien Aptelb327a712018-01-24 13:46:10 +01001525
1526 /*
1527 * If the mount request that resulted in the creation of the
1528 * session requires encryption, force IPC to be encrypted too.
1529 */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001530 if (ctx->seal) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001531 if (server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION)
Aurelien Aptelb327a712018-01-24 13:46:10 +01001532 seal = true;
1533 else {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001534 cifs_server_dbg(VFS,
Aurelien Aptelb327a712018-01-24 13:46:10 +01001535 "IPC: server doesn't support encryption\n");
1536 return -EOPNOTSUPP;
1537 }
1538 }
1539
1540 tcon = tconInfoAlloc();
1541 if (tcon == NULL)
1542 return -ENOMEM;
1543
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001544 scnprintf(unc, sizeof(unc), "\\\\%s\\IPC$", server->hostname);
Aurelien Aptelb327a712018-01-24 13:46:10 +01001545
Aurelien Aptelb327a712018-01-24 13:46:10 +01001546 xid = get_xid();
1547 tcon->ses = ses;
1548 tcon->ipc = true;
1549 tcon->seal = seal;
Ronnie Sahlberg6fd4ea82020-12-14 16:40:21 +10001550 rc = server->ops->tree_connect(xid, ses, unc, tcon, ctx->local_nls);
Aurelien Aptelb327a712018-01-24 13:46:10 +01001551 free_xid(xid);
1552
1553 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001554 cifs_server_dbg(VFS, "failed to connect to IPC (rc=%d)\n", rc);
Aurelien Aptelb327a712018-01-24 13:46:10 +01001555 tconInfoFree(tcon);
1556 goto out;
1557 }
1558
1559 cifs_dbg(FYI, "IPC tcon rc = %d ipc tid = %d\n", rc, tcon->tid);
1560
1561 ses->tcon_ipc = tcon;
1562out:
Aurelien Aptelb327a712018-01-24 13:46:10 +01001563 return rc;
1564}
1565
1566/**
1567 * cifs_free_ipc - helper to release the session IPC tcon
1568 *
1569 * Needs to be called everytime a session is destroyed
1570 */
1571static int
1572cifs_free_ipc(struct cifs_ses *ses)
1573{
1574 int rc = 0, xid;
1575 struct cifs_tcon *tcon = ses->tcon_ipc;
1576
1577 if (tcon == NULL)
1578 return 0;
1579
1580 if (ses->server->ops->tree_disconnect) {
1581 xid = get_xid();
1582 rc = ses->server->ops->tree_disconnect(xid, tcon);
1583 free_xid(xid);
1584 }
1585
1586 if (rc)
1587 cifs_dbg(FYI, "failed to disconnect IPC tcon (rc=%d)\n", rc);
1588
1589 tconInfoFree(tcon);
1590 ses->tcon_ipc = NULL;
1591 return rc;
1592}
1593
Steve French96daf2b2011-05-27 04:34:02 +00001594static struct cifs_ses *
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001595cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
Steve French96daf2b2011-05-27 04:34:02 +00001597 struct cifs_ses *ses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301599 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton4ff67b72010-07-06 20:43:02 -04001600 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05001601 if (ses->status == CifsExiting)
1602 continue;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001603 if (!match_session(ses, ctx))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001604 continue;
Jeff Layton14fbf502008-11-14 13:53:46 -05001605 ++ses->ses_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301606 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05001607 return ses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301609 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 return NULL;
1611}
1612
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03001613void cifs_put_smb_ses(struct cifs_ses *ses)
Jeff Layton14fbf502008-11-14 13:53:46 -05001614{
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05001615 unsigned int rc, xid;
Jeff Layton14fbf502008-11-14 13:53:46 -05001616 struct TCP_Server_Info *server = ses->server;
1617
Joe Perchesf96637b2013-05-04 22:12:25 -05001618 cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05001619
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301620 spin_lock(&cifs_tcp_ses_lock);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05001621 if (ses->status == CifsExiting) {
1622 spin_unlock(&cifs_tcp_ses_lock);
1623 return;
1624 }
Jeff Layton14fbf502008-11-14 13:53:46 -05001625 if (--ses->ses_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301626 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05001627 return;
1628 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05001629 if (ses->status == CifsGood)
1630 ses->status = CifsExiting;
1631 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05001632
Aurelien Aptelb327a712018-01-24 13:46:10 +01001633 cifs_free_ipc(ses);
1634
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05001635 if (ses->status == CifsExiting && server->ops->logoff) {
1636 xid = get_xid();
1637 rc = server->ops->logoff(xid, ses);
1638 if (rc)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001639 cifs_server_dbg(VFS, "%s: Session Logoff failure rc=%d\n",
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05001640 __func__, rc);
1641 _free_xid(xid);
1642 }
1643
1644 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05001645 list_del_init(&ses->smb_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301646 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05001647
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02001648 /* close any extra channels */
1649 if (ses->chan_count > 1) {
1650 int i;
1651
1652 for (i = 1; i < ses->chan_count; i++)
1653 cifs_put_tcp_session(ses->chans[i].server, 0);
1654 }
1655
Jeff Layton14fbf502008-11-14 13:53:46 -05001656 sesInfoFree(ses);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07001657 cifs_put_tcp_session(server, 0);
Jeff Layton14fbf502008-11-14 13:53:46 -05001658}
1659
Jeff Layton8a8798a2012-01-17 16:09:15 -05001660#ifdef CONFIG_KEYS
1661
Chen Gang057d6332013-07-19 09:01:36 +08001662/* strlen("cifs:a:") + CIFS_MAX_DOMAINNAME_LEN + 1 */
1663#define CIFSCREDS_DESC_SIZE (7 + CIFS_MAX_DOMAINNAME_LEN + 1)
Jeff Layton8a8798a2012-01-17 16:09:15 -05001664
1665/* Populate username and pw fields from keyring if possible */
1666static int
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001667cifs_set_cifscreds(struct smb3_fs_context *ctx, struct cifs_ses *ses)
Jeff Layton8a8798a2012-01-17 16:09:15 -05001668{
1669 int rc = 0;
Ronnie Sahlbergf2aee322019-08-22 08:09:50 +10001670 int is_domain = 0;
David Howells146aa8b2015-10-21 14:04:48 +01001671 const char *delim, *payload;
1672 char *desc;
Jeff Layton8a8798a2012-01-17 16:09:15 -05001673 ssize_t len;
1674 struct key *key;
1675 struct TCP_Server_Info *server = ses->server;
1676 struct sockaddr_in *sa;
1677 struct sockaddr_in6 *sa6;
David Howells146aa8b2015-10-21 14:04:48 +01001678 const struct user_key_payload *upayload;
Jeff Layton8a8798a2012-01-17 16:09:15 -05001679
1680 desc = kmalloc(CIFSCREDS_DESC_SIZE, GFP_KERNEL);
1681 if (!desc)
1682 return -ENOMEM;
1683
1684 /* try to find an address key first */
1685 switch (server->dstaddr.ss_family) {
1686 case AF_INET:
1687 sa = (struct sockaddr_in *)&server->dstaddr;
1688 sprintf(desc, "cifs:a:%pI4", &sa->sin_addr.s_addr);
1689 break;
1690 case AF_INET6:
1691 sa6 = (struct sockaddr_in6 *)&server->dstaddr;
1692 sprintf(desc, "cifs:a:%pI6c", &sa6->sin6_addr.s6_addr);
1693 break;
1694 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001695 cifs_dbg(FYI, "Bad ss_family (%hu)\n",
1696 server->dstaddr.ss_family);
Jeff Layton8a8798a2012-01-17 16:09:15 -05001697 rc = -EINVAL;
1698 goto out_err;
1699 }
1700
Joe Perchesf96637b2013-05-04 22:12:25 -05001701 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
Linus Torvalds028db3e2019-07-10 18:43:43 -07001702 key = request_key(&key_type_logon, desc, "");
Jeff Layton8a8798a2012-01-17 16:09:15 -05001703 if (IS_ERR(key)) {
1704 if (!ses->domainName) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001705 cifs_dbg(FYI, "domainName is NULL\n");
Jeff Layton8a8798a2012-01-17 16:09:15 -05001706 rc = PTR_ERR(key);
1707 goto out_err;
1708 }
1709
1710 /* didn't work, try to find a domain key */
1711 sprintf(desc, "cifs:d:%s", ses->domainName);
Joe Perchesf96637b2013-05-04 22:12:25 -05001712 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
Linus Torvalds028db3e2019-07-10 18:43:43 -07001713 key = request_key(&key_type_logon, desc, "");
Jeff Layton8a8798a2012-01-17 16:09:15 -05001714 if (IS_ERR(key)) {
1715 rc = PTR_ERR(key);
1716 goto out_err;
1717 }
Ronnie Sahlbergf2aee322019-08-22 08:09:50 +10001718 is_domain = 1;
Jeff Layton8a8798a2012-01-17 16:09:15 -05001719 }
1720
1721 down_read(&key->sem);
David Howells0837e492017-03-01 15:11:23 +00001722 upayload = user_key_payload_locked(key);
Jeff Layton8a8798a2012-01-17 16:09:15 -05001723 if (IS_ERR_OR_NULL(upayload)) {
Jeff Layton4edc53c2012-02-07 06:30:51 -05001724 rc = upayload ? PTR_ERR(upayload) : -EINVAL;
Jeff Layton8a8798a2012-01-17 16:09:15 -05001725 goto out_key_put;
1726 }
1727
1728 /* find first : in payload */
David Howells146aa8b2015-10-21 14:04:48 +01001729 payload = upayload->data;
Jeff Layton8a8798a2012-01-17 16:09:15 -05001730 delim = strnchr(payload, upayload->datalen, ':');
Joe Perchesf96637b2013-05-04 22:12:25 -05001731 cifs_dbg(FYI, "payload=%s\n", payload);
Jeff Layton8a8798a2012-01-17 16:09:15 -05001732 if (!delim) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001733 cifs_dbg(FYI, "Unable to find ':' in payload (datalen=%d)\n",
1734 upayload->datalen);
Jeff Layton8a8798a2012-01-17 16:09:15 -05001735 rc = -EINVAL;
1736 goto out_key_put;
1737 }
1738
1739 len = delim - payload;
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04001740 if (len > CIFS_MAX_USERNAME_LEN || len <= 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001741 cifs_dbg(FYI, "Bad value from username search (len=%zd)\n",
1742 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05001743 rc = -EINVAL;
1744 goto out_key_put;
1745 }
1746
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001747 ctx->username = kstrndup(payload, len, GFP_KERNEL);
1748 if (!ctx->username) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001749 cifs_dbg(FYI, "Unable to allocate %zd bytes for username\n",
1750 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05001751 rc = -ENOMEM;
1752 goto out_key_put;
1753 }
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001754 cifs_dbg(FYI, "%s: username=%s\n", __func__, ctx->username);
Jeff Layton8a8798a2012-01-17 16:09:15 -05001755
1756 len = key->datalen - (len + 1);
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04001757 if (len > CIFS_MAX_PASSWORD_LEN || len <= 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001758 cifs_dbg(FYI, "Bad len for password search (len=%zd)\n", len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05001759 rc = -EINVAL;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001760 kfree(ctx->username);
1761 ctx->username = NULL;
Jeff Layton8a8798a2012-01-17 16:09:15 -05001762 goto out_key_put;
1763 }
1764
1765 ++delim;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001766 ctx->password = kstrndup(delim, len, GFP_KERNEL);
1767 if (!ctx->password) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001768 cifs_dbg(FYI, "Unable to allocate %zd bytes for password\n",
1769 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05001770 rc = -ENOMEM;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001771 kfree(ctx->username);
1772 ctx->username = NULL;
Jeff Layton8a8798a2012-01-17 16:09:15 -05001773 goto out_key_put;
1774 }
1775
Ronnie Sahlbergf2aee322019-08-22 08:09:50 +10001776 /*
1777 * If we have a domain key then we must set the domainName in the
1778 * for the request.
1779 */
1780 if (is_domain && ses->domainName) {
Al Viro8d767222021-03-05 15:02:34 -05001781 ctx->domainname = kstrdup(ses->domainName, GFP_KERNEL);
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001782 if (!ctx->domainname) {
Joe Perchesa0a30362020-04-14 22:42:53 -07001783 cifs_dbg(FYI, "Unable to allocate %zd bytes for domain\n",
1784 len);
Ronnie Sahlbergf2aee322019-08-22 08:09:50 +10001785 rc = -ENOMEM;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001786 kfree(ctx->username);
1787 ctx->username = NULL;
1788 kfree_sensitive(ctx->password);
1789 ctx->password = NULL;
Ronnie Sahlbergf2aee322019-08-22 08:09:50 +10001790 goto out_key_put;
1791 }
1792 }
1793
Jeff Layton8a8798a2012-01-17 16:09:15 -05001794out_key_put:
1795 up_read(&key->sem);
1796 key_put(key);
1797out_err:
1798 kfree(desc);
Joe Perchesf96637b2013-05-04 22:12:25 -05001799 cifs_dbg(FYI, "%s: returning %d\n", __func__, rc);
Jeff Layton8a8798a2012-01-17 16:09:15 -05001800 return rc;
1801}
1802#else /* ! CONFIG_KEYS */
1803static inline int
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001804cifs_set_cifscreds(struct smb3_fs_context *ctx __attribute__((unused)),
Jeff Layton8a8798a2012-01-17 16:09:15 -05001805 struct cifs_ses *ses __attribute__((unused)))
1806{
1807 return -ENOSYS;
1808}
1809#endif /* CONFIG_KEYS */
1810
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01001811/**
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001812 * cifs_get_smb_ses - get a session matching @ctx data from @server
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01001813 *
1814 * This function assumes it is being called from cifs_mount() where we
1815 * already got a server reference (server refcount +1). See
1816 * cifs_get_tcon() for refcount explanations.
1817 */
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03001818struct cifs_ses *
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001819cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx)
Jeff Layton36988c72010-04-24 07:57:43 -04001820{
Pavel Shilovsky286170a2012-05-25 10:43:58 +04001821 int rc = -ENOMEM;
1822 unsigned int xid;
Steve French96daf2b2011-05-27 04:34:02 +00001823 struct cifs_ses *ses;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03001824 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
1825 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
Jeff Layton36988c72010-04-24 07:57:43 -04001826
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001827 xid = get_xid();
Jeff Layton36988c72010-04-24 07:57:43 -04001828
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001829 ses = cifs_find_smb_ses(server, ctx);
Jeff Layton36988c72010-04-24 07:57:43 -04001830 if (ses) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001831 cifs_dbg(FYI, "Existing smb sess found (status=%d)\n",
1832 ses->status);
Jeff Layton36988c72010-04-24 07:57:43 -04001833
Jeff Layton36988c72010-04-24 07:57:43 -04001834 mutex_lock(&ses->session_mutex);
Jeff Layton198b5682010-04-24 07:57:48 -04001835 rc = cifs_negotiate_protocol(xid, ses);
1836 if (rc) {
1837 mutex_unlock(&ses->session_mutex);
1838 /* problem -- put our ses reference */
1839 cifs_put_smb_ses(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001840 free_xid(xid);
Jeff Layton198b5682010-04-24 07:57:48 -04001841 return ERR_PTR(rc);
1842 }
Jeff Layton36988c72010-04-24 07:57:43 -04001843 if (ses->need_reconnect) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001844 cifs_dbg(FYI, "Session needs reconnect\n");
Jeff Layton36988c72010-04-24 07:57:43 -04001845 rc = cifs_setup_session(xid, ses,
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001846 ctx->local_nls);
Jeff Layton36988c72010-04-24 07:57:43 -04001847 if (rc) {
1848 mutex_unlock(&ses->session_mutex);
1849 /* problem -- put our reference */
1850 cifs_put_smb_ses(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001851 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04001852 return ERR_PTR(rc);
1853 }
1854 }
1855 mutex_unlock(&ses->session_mutex);
Jeff Layton460cf342010-09-14 11:38:24 -04001856
1857 /* existing SMB ses has a server reference already */
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07001858 cifs_put_tcp_session(server, 0);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001859 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04001860 return ses;
1861 }
1862
Joe Perchesf96637b2013-05-04 22:12:25 -05001863 cifs_dbg(FYI, "Existing smb sess not found\n");
Jeff Layton36988c72010-04-24 07:57:43 -04001864 ses = sesInfoAlloc();
1865 if (ses == NULL)
1866 goto get_ses_fail;
1867
1868 /* new SMB session uses our server ref */
1869 ses->server = server;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03001870 if (server->dstaddr.ss_family == AF_INET6)
Steve Frenchb438fcf2021-02-20 19:24:11 -06001871 sprintf(ses->ip_addr, "%pI6", &addr6->sin6_addr);
Jeff Layton36988c72010-04-24 07:57:43 -04001872 else
Steve Frenchb438fcf2021-02-20 19:24:11 -06001873 sprintf(ses->ip_addr, "%pI4", &addr->sin_addr);
Jeff Layton36988c72010-04-24 07:57:43 -04001874
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001875 if (ctx->username) {
1876 ses->user_name = kstrdup(ctx->username, GFP_KERNEL);
Steve French8727c8a2011-02-25 01:11:56 -06001877 if (!ses->user_name)
1878 goto get_ses_fail;
1879 }
Jeff Layton36988c72010-04-24 07:57:43 -04001880
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001881 /* ctx->password freed at unmount */
1882 if (ctx->password) {
1883 ses->password = kstrdup(ctx->password, GFP_KERNEL);
Jeff Layton36988c72010-04-24 07:57:43 -04001884 if (!ses->password)
1885 goto get_ses_fail;
1886 }
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001887 if (ctx->domainname) {
1888 ses->domainName = kstrdup(ctx->domainname, GFP_KERNEL);
Shirish Pargaonkard3686d52010-10-28 09:53:07 -05001889 if (!ses->domainName)
1890 goto get_ses_fail;
Jeff Layton36988c72010-04-24 07:57:43 -04001891 }
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001892 if (ctx->domainauto)
1893 ses->domainAuto = ctx->domainauto;
1894 ses->cred_uid = ctx->cred_uid;
1895 ses->linux_uid = ctx->linux_uid;
Steve Frenchd9b94202011-04-12 01:24:57 +00001896
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001897 ses->sectype = ctx->sectype;
1898 ses->sign = ctx->sign;
Jeff Layton36988c72010-04-24 07:57:43 -04001899 mutex_lock(&ses->session_mutex);
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02001900
1901 /* add server as first channel */
1902 ses->chans[0].server = server;
1903 ses->chan_count = 1;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001904 ses->chan_max = ctx->multichannel ? ctx->max_channels:1;
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02001905
Jeff Layton198b5682010-04-24 07:57:48 -04001906 rc = cifs_negotiate_protocol(xid, ses);
1907 if (!rc)
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001908 rc = cifs_setup_session(xid, ses, ctx->local_nls);
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02001909
1910 /* each channel uses a different signing key */
1911 memcpy(ses->chans[0].signkey, ses->smb3signingkey,
1912 sizeof(ses->smb3signingkey));
1913
Jeff Layton36988c72010-04-24 07:57:43 -04001914 mutex_unlock(&ses->session_mutex);
Steve Frenchc8e56f12010-09-08 21:10:58 +00001915 if (rc)
Jeff Layton36988c72010-04-24 07:57:43 -04001916 goto get_ses_fail;
1917
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02001918 /* success, put it on the list and add it as first channel */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301919 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton36988c72010-04-24 07:57:43 -04001920 list_add(&ses->smb_ses_list, &server->smb_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301921 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton36988c72010-04-24 07:57:43 -04001922
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001923 free_xid(xid);
Aurelien Aptelb327a712018-01-24 13:46:10 +01001924
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001925 cifs_setup_ipc(ses, ctx);
Aurelien Aptelb327a712018-01-24 13:46:10 +01001926
Jeff Layton36988c72010-04-24 07:57:43 -04001927 return ses;
1928
1929get_ses_fail:
1930 sesInfoFree(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001931 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04001932 return ERR_PTR(rc);
1933}
1934
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001935static int match_tcon(struct cifs_tcon *tcon, struct smb3_fs_context *ctx)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001936{
1937 if (tcon->tidStatus == CifsExiting)
1938 return 0;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001939 if (strncmp(tcon->treeName, ctx->UNC, MAX_TREE_SIZE))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001940 return 0;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001941 if (tcon->seal != ctx->seal)
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08001942 return 0;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001943 if (tcon->snapshot_time != ctx->snapshot_time)
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08001944 return 0;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001945 if (tcon->handle_timeout != ctx->handle_timeout)
Steve Frenchca567eb2019-03-29 16:31:07 -05001946 return 0;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001947 if (tcon->no_lease != ctx->no_lease)
Steve French3e7a02d2019-09-11 21:46:20 -05001948 return 0;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001949 if (tcon->nodelete != ctx->nodelete)
Steve French82e93672020-05-19 03:06:57 -05001950 return 0;
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001951 return 1;
1952}
1953
Steve French96daf2b2011-05-27 04:34:02 +00001954static struct cifs_tcon *
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001955cifs_find_tcon(struct cifs_ses *ses, struct smb3_fs_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956{
1957 struct list_head *tmp;
Steve French96daf2b2011-05-27 04:34:02 +00001958 struct cifs_tcon *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301960 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05001961 list_for_each(tmp, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +00001962 tcon = list_entry(tmp, struct cifs_tcon, tcon_list);
Paulo Alcantara65303de2020-04-20 19:42:57 -03001963#ifdef CONFIG_CIFS_DFS_UPCALL
1964 if (tcon->dfs_path)
1965 continue;
1966#endif
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06001967 if (!match_tcon(tcon, ctx))
Jeff Laytonf1987b42008-11-15 11:12:47 -05001968 continue;
Jeff Laytonf1987b42008-11-15 11:12:47 -05001969 ++tcon->tc_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301970 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 return tcon;
1972 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301973 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 return NULL;
1975}
1976
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07001977void
Steve French96daf2b2011-05-27 04:34:02 +00001978cifs_put_tcon(struct cifs_tcon *tcon)
Jeff Laytonf1987b42008-11-15 11:12:47 -05001979{
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04001980 unsigned int xid;
Aurelien Aptelb327a712018-01-24 13:46:10 +01001981 struct cifs_ses *ses;
Jeff Laytonf1987b42008-11-15 11:12:47 -05001982
Aurelien Aptelb327a712018-01-24 13:46:10 +01001983 /*
1984 * IPC tcon share the lifetime of their session and are
1985 * destroyed in the session put function
1986 */
1987 if (tcon == NULL || tcon->ipc)
1988 return;
1989
1990 ses = tcon->ses;
Joe Perchesf96637b2013-05-04 22:12:25 -05001991 cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301992 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05001993 if (--tcon->tc_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301994 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05001995 return;
1996 }
1997
Samuel Cabrerobf80e5d2020-11-30 19:02:51 +01001998 if (tcon->use_witness) {
1999 int rc;
2000
2001 rc = cifs_swn_unregister(tcon);
2002 if (rc < 0) {
2003 cifs_dbg(VFS, "%s: Failed to unregister for witness notifications: %d\n",
2004 __func__, rc);
2005 }
2006 }
Samuel Cabrero0ac4e292020-12-11 22:59:29 -06002007
Jeff Laytonf1987b42008-11-15 11:12:47 -05002008 list_del_init(&tcon->tcon_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302009 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002010
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002011 xid = get_xid();
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002012 if (ses->server->ops->tree_disconnect)
2013 ses->server->ops->tree_disconnect(xid, tcon);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002014 _free_xid(xid);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002015
Suresh Jayaramand03382c2010-07-05 18:12:27 +05302016 cifs_fscache_release_super_cookie(tcon);
Steve French9f841592010-07-23 20:37:53 +00002017 tconInfoFree(tcon);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002018 cifs_put_smb_ses(ses);
2019}
2020
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01002021/**
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002022 * cifs_get_tcon - get a tcon matching @ctx data from @ses
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01002023 *
2024 * - tcon refcount is the number of mount points using the tcon.
2025 * - ses refcount is the number of tcon using the session.
2026 *
2027 * 1. This function assumes it is being called from cifs_mount() where
2028 * we already got a session reference (ses refcount +1).
2029 *
2030 * 2. Since we're in the context of adding a mount point, the end
2031 * result should be either:
2032 *
2033 * a) a new tcon already allocated with refcount=1 (1 mount point) and
2034 * its session refcount incremented (1 new tcon). This +1 was
2035 * already done in (1).
2036 *
2037 * b) an existing tcon with refcount+1 (add a mount point to it) and
2038 * identical ses refcount (no new tcon). Because of (1) we need to
2039 * decrement the ses refcount.
2040 */
Steve French96daf2b2011-05-27 04:34:02 +00002041static struct cifs_tcon *
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002042cifs_get_tcon(struct cifs_ses *ses, struct smb3_fs_context *ctx)
Jeff Laytond00c28d2010-04-24 07:57:44 -04002043{
2044 int rc, xid;
Steve French96daf2b2011-05-27 04:34:02 +00002045 struct cifs_tcon *tcon;
Jeff Laytond00c28d2010-04-24 07:57:44 -04002046
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002047 tcon = cifs_find_tcon(ses, ctx);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002048 if (tcon) {
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01002049 /*
2050 * tcon has refcount already incremented but we need to
2051 * decrement extra ses reference gotten by caller (case b)
2052 */
Joe Perchesf96637b2013-05-04 22:12:25 -05002053 cifs_dbg(FYI, "Found match on UNC path\n");
Jeff Laytond00c28d2010-04-24 07:57:44 -04002054 cifs_put_smb_ses(ses);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002055 return tcon;
2056 }
2057
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002058 if (!ses->server->ops->tree_connect) {
2059 rc = -ENOSYS;
2060 goto out_fail;
2061 }
2062
Jeff Laytond00c28d2010-04-24 07:57:44 -04002063 tcon = tconInfoAlloc();
2064 if (tcon == NULL) {
2065 rc = -ENOMEM;
2066 goto out_fail;
2067 }
2068
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002069 if (ctx->snapshot_time) {
Steve French8b217fe2016-11-11 22:36:20 -06002070 if (ses->server->vals->protocol_id == 0) {
2071 cifs_dbg(VFS,
2072 "Use SMB2 or later for snapshot mount option\n");
2073 rc = -EOPNOTSUPP;
2074 goto out_fail;
2075 } else
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002076 tcon->snapshot_time = ctx->snapshot_time;
Steve French8b217fe2016-11-11 22:36:20 -06002077 }
2078
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002079 if (ctx->handle_timeout) {
Steve Frenchca567eb2019-03-29 16:31:07 -05002080 if (ses->server->vals->protocol_id == 0) {
2081 cifs_dbg(VFS,
2082 "Use SMB2.1 or later for handle timeout option\n");
2083 rc = -EOPNOTSUPP;
2084 goto out_fail;
2085 } else
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002086 tcon->handle_timeout = ctx->handle_timeout;
Steve Frenchca567eb2019-03-29 16:31:07 -05002087 }
2088
Jeff Laytond00c28d2010-04-24 07:57:44 -04002089 tcon->ses = ses;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002090 if (ctx->password) {
2091 tcon->password = kstrdup(ctx->password, GFP_KERNEL);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002092 if (!tcon->password) {
2093 rc = -ENOMEM;
2094 goto out_fail;
2095 }
2096 }
2097
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002098 if (ctx->seal) {
Steve French23657ad2018-04-22 15:14:58 -05002099 if (ses->server->vals->protocol_id == 0) {
2100 cifs_dbg(VFS,
2101 "SMB3 or later required for encryption\n");
2102 rc = -EOPNOTSUPP;
2103 goto out_fail;
2104 } else if (tcon->ses->server->capabilities &
2105 SMB2_GLOBAL_CAP_ENCRYPTION)
2106 tcon->seal = true;
2107 else {
2108 cifs_dbg(VFS, "Encryption is not supported on share\n");
2109 rc = -EOPNOTSUPP;
2110 goto out_fail;
2111 }
2112 }
2113
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002114 if (ctx->linux_ext) {
Steve French8505c8b2018-06-18 14:01:59 -05002115 if (ses->server->posix_ext_supported) {
Steve Frenchb3266142018-05-20 23:41:10 -05002116 tcon->posix_extensions = true;
Joe Perchesa0a30362020-04-14 22:42:53 -07002117 pr_warn_once("SMB3.11 POSIX Extensions are experimental\n");
Steve French8505c8b2018-06-18 14:01:59 -05002118 } else {
Joe Perchesa0a30362020-04-14 22:42:53 -07002119 cifs_dbg(VFS, "Server does not support mounting with posix SMB3.11 extensions\n");
Steve French8505c8b2018-06-18 14:01:59 -05002120 rc = -EOPNOTSUPP;
2121 goto out_fail;
Steve French2fbb5642018-06-12 12:11:31 -05002122 }
Steve Frenchb3266142018-05-20 23:41:10 -05002123 }
Steve Frenchb3266142018-05-20 23:41:10 -05002124
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002125 /*
2126 * BB Do we need to wrap session_mutex around this TCon call and Unix
2127 * SetFS as we do on SessSetup and reconnect?
2128 */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002129 xid = get_xid();
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002130 rc = ses->server->ops->tree_connect(xid, ses, ctx->UNC, tcon,
2131 ctx->local_nls);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002132 free_xid(xid);
Joe Perchesf96637b2013-05-04 22:12:25 -05002133 cifs_dbg(FYI, "Tcon rc = %d\n", rc);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002134 if (rc)
2135 goto out_fail;
2136
Steve Frenchb618f002015-11-03 09:15:03 -06002137 tcon->use_persistent = false;
2138 /* check if SMB2 or later, CIFS does not support persistent handles */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002139 if (ctx->persistent) {
Steve Frenchb618f002015-11-03 09:15:03 -06002140 if (ses->server->vals->protocol_id == 0) {
2141 cifs_dbg(VFS,
2142 "SMB3 or later required for persistent handles\n");
2143 rc = -EOPNOTSUPP;
2144 goto out_fail;
2145 } else if (ses->server->capabilities &
2146 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
2147 tcon->use_persistent = true;
2148 else /* persistent handles requested but not supported */ {
2149 cifs_dbg(VFS,
2150 "Persistent handles not supported on share\n");
2151 rc = -EOPNOTSUPP;
2152 goto out_fail;
2153 }
2154 } else if ((tcon->capabilities & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY)
2155 && (ses->server->capabilities & SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002156 && (ctx->nopersistent == false)) {
Steve Frenchb618f002015-11-03 09:15:03 -06002157 cifs_dbg(FYI, "enabling persistent handles\n");
2158 tcon->use_persistent = true;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002159 } else if (ctx->resilient) {
Steve French592fafe2015-11-03 10:08:53 -06002160 if (ses->server->vals->protocol_id == 0) {
2161 cifs_dbg(VFS,
2162 "SMB2.1 or later required for resilient handles\n");
2163 rc = -EOPNOTSUPP;
2164 goto out_fail;
2165 }
2166 tcon->use_resilient = true;
Steve Frenchb618f002015-11-03 09:15:03 -06002167 }
Aurelien Aptelb7fd0fa2021-04-09 16:31:37 +02002168
Samuel Cabrero0ac4e292020-12-11 22:59:29 -06002169 tcon->use_witness = false;
Aurelien Aptelb7fd0fa2021-04-09 16:31:37 +02002170 if (IS_ENABLED(CONFIG_CIFS_SWN_UPCALL) && ctx->witness) {
Samuel Cabrero0ac4e292020-12-11 22:59:29 -06002171 if (ses->server->vals->protocol_id >= SMB30_PROT_ID) {
2172 if (tcon->capabilities & SMB2_SHARE_CAP_CLUSTER) {
Samuel Cabrerobf80e5d2020-11-30 19:02:51 +01002173 /*
2174 * Set witness in use flag in first place
2175 * to retry registration in the echo task
2176 */
Samuel Cabrero0ac4e292020-12-11 22:59:29 -06002177 tcon->use_witness = true;
Samuel Cabrerobf80e5d2020-11-30 19:02:51 +01002178 /* And try to register immediately */
2179 rc = cifs_swn_register(tcon);
2180 if (rc < 0) {
2181 cifs_dbg(VFS, "Failed to register for witness notifications: %d\n", rc);
2182 goto out_fail;
2183 }
Samuel Cabrero0ac4e292020-12-11 22:59:29 -06002184 } else {
2185 /* TODO: try to extend for non-cluster uses (eg multichannel) */
2186 cifs_dbg(VFS, "witness requested on mount but no CLUSTER capability on share\n");
2187 rc = -EOPNOTSUPP;
2188 goto out_fail;
2189 }
2190 } else {
2191 cifs_dbg(VFS, "SMB3 or later required for witness option\n");
2192 rc = -EOPNOTSUPP;
2193 goto out_fail;
2194 }
2195 }
Steve Frenchb618f002015-11-03 09:15:03 -06002196
Steve Frenchcae53f72019-09-03 17:49:46 -05002197 /* If the user really knows what they are doing they can override */
2198 if (tcon->share_flags & SMB2_SHAREFLAG_NO_CACHING) {
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002199 if (ctx->cache_ro)
Steve Frenchcae53f72019-09-03 17:49:46 -05002200 cifs_dbg(VFS, "cache=ro requested on mount but NO_CACHING flag set on share\n");
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002201 else if (ctx->cache_rw)
Steve Frenchcae53f72019-09-03 17:49:46 -05002202 cifs_dbg(VFS, "cache=singleclient requested on mount but NO_CACHING flag set on share\n");
2203 }
2204
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002205 if (ctx->no_lease) {
Kenneth D'souza8fd6e1d2020-05-18 13:01:34 +05302206 if (ses->server->vals->protocol_id == 0) {
2207 cifs_dbg(VFS,
2208 "SMB2 or later required for nolease option\n");
2209 rc = -EOPNOTSUPP;
2210 goto out_fail;
2211 } else
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002212 tcon->no_lease = ctx->no_lease;
Kenneth D'souza8fd6e1d2020-05-18 13:01:34 +05302213 }
2214
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002215 /*
2216 * We can have only one retry value for a connection to a share so for
2217 * resources mounted more than once to the same server share the last
2218 * value passed in for the retry flag is used.
2219 */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002220 tcon->retry = ctx->retry;
2221 tcon->nocase = ctx->nocase;
Steve French3c6e65e2020-10-21 00:15:42 -05002222 if (ses->server->capabilities & SMB2_GLOBAL_CAP_DIRECTORY_LEASING)
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002223 tcon->nohandlecache = ctx->nohandlecache;
Steve French3c6e65e2020-10-21 00:15:42 -05002224 else
Jiapeng Zhong2be449f2021-01-14 17:09:20 +08002225 tcon->nohandlecache = true;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002226 tcon->nodelete = ctx->nodelete;
2227 tcon->local_lease = ctx->local_lease;
Pavel Shilovsky233839b2012-09-19 06:22:45 -07002228 INIT_LIST_HEAD(&tcon->pending_opens);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002229
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302230 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002231 list_add(&tcon->tcon_list, &ses->tcon_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302232 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002233
Suresh Jayaramand03382c2010-07-05 18:12:27 +05302234 cifs_fscache_get_super_cookie(tcon);
2235
Jeff Laytond00c28d2010-04-24 07:57:44 -04002236 return tcon;
2237
2238out_fail:
2239 tconInfoFree(tcon);
2240 return ERR_PTR(rc);
2241}
2242
Jeff Layton9d002df2010-10-06 19:51:11 -04002243void
2244cifs_put_tlink(struct tcon_link *tlink)
2245{
2246 if (!tlink || IS_ERR(tlink))
2247 return;
2248
2249 if (!atomic_dec_and_test(&tlink->tl_count) ||
2250 test_bit(TCON_LINK_IN_TREE, &tlink->tl_flags)) {
2251 tlink->tl_time = jiffies;
2252 return;
2253 }
2254
2255 if (!IS_ERR(tlink_tcon(tlink)))
2256 cifs_put_tcon(tlink_tcon(tlink));
2257 kfree(tlink);
2258 return;
2259}
Jeff Laytond00c28d2010-04-24 07:57:44 -04002260
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002261static int
2262compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2263{
2264 struct cifs_sb_info *old = CIFS_SB(sb);
2265 struct cifs_sb_info *new = mnt_data->cifs_sb;
Paulo Alcantara (SUSE)29fbeb72019-06-18 16:16:02 -03002266 unsigned int oldflags = old->mnt_cifs_flags & CIFS_MOUNT_MASK;
2267 unsigned int newflags = new->mnt_cifs_flags & CIFS_MOUNT_MASK;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002268
2269 if ((sb->s_flags & CIFS_MS_MASK) != (mnt_data->flags & CIFS_MS_MASK))
2270 return 0;
2271
Paulo Alcantara (SUSE)29fbeb72019-06-18 16:16:02 -03002272 if (old->mnt_cifs_serverino_autodisabled)
2273 newflags &= ~CIFS_MOUNT_SERVER_INUM;
2274
2275 if (oldflags != newflags)
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002276 return 0;
2277
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002278 /*
Jeff Layton5eba8ab2011-10-19 15:30:26 -04002279 * We want to share sb only if we don't specify an r/wsize or
2280 * specified r/wsize is greater than or equal to existing one.
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002281 */
Ronnie Sahlberg522aa3b2020-12-14 16:40:17 +10002282 if (new->ctx->wsize && new->ctx->wsize < old->ctx->wsize)
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002283 return 0;
2284
Ronnie Sahlberg522aa3b2020-12-14 16:40:17 +10002285 if (new->ctx->rsize && new->ctx->rsize < old->ctx->rsize)
Jeff Layton5eba8ab2011-10-19 15:30:26 -04002286 return 0;
2287
Ronnie Sahlberg8401e932020-12-12 13:40:50 -06002288 if (!uid_eq(old->ctx->linux_uid, new->ctx->linux_uid) ||
2289 !gid_eq(old->ctx->linux_gid, new->ctx->linux_gid))
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002290 return 0;
2291
Ronnie Sahlberg8401e932020-12-12 13:40:50 -06002292 if (old->ctx->file_mode != new->ctx->file_mode ||
2293 old->ctx->dir_mode != new->ctx->dir_mode)
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002294 return 0;
2295
2296 if (strcmp(old->local_nls->charset, new->local_nls->charset))
2297 return 0;
2298
Steve French57804642021-02-24 12:12:53 -06002299 if (old->ctx->acregmax != new->ctx->acregmax)
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002300 return 0;
Steve French4c9f9482021-02-23 15:50:57 -06002301 if (old->ctx->acdirmax != new->ctx->acdirmax)
2302 return 0;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002303
2304 return 1;
2305}
2306
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01002307static int
2308match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2309{
2310 struct cifs_sb_info *old = CIFS_SB(sb);
2311 struct cifs_sb_info *new = mnt_data->cifs_sb;
Ronnie Sahlbergfe129262020-01-22 11:07:56 +10002312 bool old_set = (old->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) &&
2313 old->prepath;
2314 bool new_set = (new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) &&
2315 new->prepath;
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01002316
Sachin Prabhucd8c4292017-04-26 14:05:46 +01002317 if (old_set && new_set && !strcmp(new->prepath, old->prepath))
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01002318 return 1;
Sachin Prabhucd8c4292017-04-26 14:05:46 +01002319 else if (!old_set && !new_set)
2320 return 1;
2321
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01002322 return 0;
2323}
2324
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002325int
2326cifs_match_super(struct super_block *sb, void *data)
2327{
2328 struct cifs_mnt_data *mnt_data = (struct cifs_mnt_data *)data;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002329 struct smb3_fs_context *ctx;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002330 struct cifs_sb_info *cifs_sb;
2331 struct TCP_Server_Info *tcp_srv;
Steve French96daf2b2011-05-27 04:34:02 +00002332 struct cifs_ses *ses;
2333 struct cifs_tcon *tcon;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002334 struct tcon_link *tlink;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002335 int rc = 0;
2336
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002337 spin_lock(&cifs_tcp_ses_lock);
2338 cifs_sb = CIFS_SB(sb);
2339 tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
2340 if (IS_ERR(tlink)) {
2341 spin_unlock(&cifs_tcp_ses_lock);
2342 return rc;
2343 }
2344 tcon = tlink_tcon(tlink);
2345 ses = tcon->ses;
2346 tcp_srv = ses->server;
2347
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002348 ctx = mnt_data->ctx;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002349
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002350 if (!match_server(tcp_srv, ctx) ||
2351 !match_session(ses, ctx) ||
2352 !match_tcon(tcon, ctx) ||
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01002353 !match_prepath(sb, mnt_data)) {
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002354 rc = 0;
2355 goto out;
2356 }
2357
2358 rc = compare_mount_options(sb, mnt_data);
2359out:
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002360 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf484b5d02011-07-11 10:16:34 -04002361 cifs_put_tlink(tlink);
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002362 return rc;
2363}
2364
Jeff Layton09e50d52008-07-23 10:11:19 -04002365#ifdef CONFIG_DEBUG_LOCK_ALLOC
2366static struct lock_class_key cifs_key[2];
2367static struct lock_class_key cifs_slock_key[2];
2368
2369static inline void
2370cifs_reclassify_socket4(struct socket *sock)
2371{
2372 struct sock *sk = sock->sk;
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02002373 BUG_ON(!sock_allow_reclassification(sk));
Jeff Layton09e50d52008-07-23 10:11:19 -04002374 sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS",
2375 &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]);
2376}
2377
2378static inline void
2379cifs_reclassify_socket6(struct socket *sock)
2380{
2381 struct sock *sk = sock->sk;
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02002382 BUG_ON(!sock_allow_reclassification(sk));
Jeff Layton09e50d52008-07-23 10:11:19 -04002383 sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS",
2384 &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]);
2385}
2386#else
2387static inline void
2388cifs_reclassify_socket4(struct socket *sock)
2389{
2390}
2391
2392static inline void
2393cifs_reclassify_socket6(struct socket *sock)
2394{
2395}
2396#endif
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398/* See RFC1001 section 14 on representation of Netbios names */
Steve French50c2f752007-07-13 00:33:32 +00002399static void rfc1002mangle(char *target, char *source, unsigned int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400{
Steve French50c2f752007-07-13 00:33:32 +00002401 unsigned int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Steve French50c2f752007-07-13 00:33:32 +00002403 for (i = 0, j = 0; i < (length); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 /* mask a nibble at a time and encode */
2405 target[j] = 'A' + (0x0F & (source[i] >> 4));
2406 target[j+1] = 'A' + (0x0F & source[i]);
Steve French50c2f752007-07-13 00:33:32 +00002407 j += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 }
2409
2410}
2411
Ben Greear3eb9a882010-09-01 17:06:02 -07002412static int
2413bind_socket(struct TCP_Server_Info *server)
2414{
2415 int rc = 0;
2416 if (server->srcaddr.ss_family != AF_UNSPEC) {
2417 /* Bind to the specified local IP address */
2418 struct socket *socket = server->ssocket;
2419 rc = socket->ops->bind(socket,
2420 (struct sockaddr *) &server->srcaddr,
2421 sizeof(server->srcaddr));
2422 if (rc < 0) {
2423 struct sockaddr_in *saddr4;
2424 struct sockaddr_in6 *saddr6;
2425 saddr4 = (struct sockaddr_in *)&server->srcaddr;
2426 saddr6 = (struct sockaddr_in6 *)&server->srcaddr;
2427 if (saddr6->sin6_family == AF_INET6)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002428 cifs_server_dbg(VFS, "Failed to bind to: %pI6c, error: %d\n",
Joe Perchesf96637b2013-05-04 22:12:25 -05002429 &saddr6->sin6_addr, rc);
Ben Greear3eb9a882010-09-01 17:06:02 -07002430 else
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002431 cifs_server_dbg(VFS, "Failed to bind to: %pI4, error: %d\n",
Joe Perchesf96637b2013-05-04 22:12:25 -05002432 &saddr4->sin_addr.s_addr, rc);
Ben Greear3eb9a882010-09-01 17:06:02 -07002433 }
2434 }
2435 return rc;
2436}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
2438static int
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002439ip_rfc1001_connect(struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440{
2441 int rc = 0;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002442 /*
2443 * some servers require RFC1001 sessinit before sending
2444 * negprot - BB check reconnection in case where second
2445 * sessinit is sent but no second negprot
2446 */
2447 struct rfc1002_session_packet *ses_init_buf;
2448 struct smb_hdr *smb_buf;
2449 ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet),
2450 GFP_KERNEL);
2451 if (ses_init_buf) {
2452 ses_init_buf->trailer.session_req.called_len = 32;
2453
Colin Ian King997152f2016-01-25 16:25:54 +00002454 if (server->server_RFC1001_name[0] != 0)
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002455 rfc1002mangle(ses_init_buf->trailer.
2456 session_req.called_name,
2457 server->server_RFC1001_name,
2458 RFC1001_NAME_LEN_WITH_NULL);
2459 else
2460 rfc1002mangle(ses_init_buf->trailer.
2461 session_req.called_name,
2462 DEFAULT_CIFS_CALLED_NAME,
2463 RFC1001_NAME_LEN_WITH_NULL);
2464
2465 ses_init_buf->trailer.session_req.calling_len = 32;
2466
2467 /*
2468 * calling name ends in null (byte 16) from old smb
2469 * convention.
2470 */
Steve Frenchc85c35f2015-03-27 01:15:02 -05002471 if (server->workstation_RFC1001_name[0] != 0)
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002472 rfc1002mangle(ses_init_buf->trailer.
2473 session_req.calling_name,
2474 server->workstation_RFC1001_name,
2475 RFC1001_NAME_LEN_WITH_NULL);
2476 else
2477 rfc1002mangle(ses_init_buf->trailer.
2478 session_req.calling_name,
2479 "LINUX_CIFS_CLNT",
2480 RFC1001_NAME_LEN_WITH_NULL);
2481
2482 ses_init_buf->trailer.session_req.scope1 = 0;
2483 ses_init_buf->trailer.session_req.scope2 = 0;
2484 smb_buf = (struct smb_hdr *)ses_init_buf;
2485
2486 /* sizeof RFC1002_SESSION_REQUEST with no scope */
Steve Frenchbe8e3b02011-04-29 05:40:20 +00002487 smb_buf->smb_buf_length = cpu_to_be32(0x81000044);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002488 rc = smb_send(server, smb_buf, 0x44);
2489 kfree(ses_init_buf);
2490 /*
2491 * RFC1001 layer in at least one server
2492 * requires very short break before negprot
2493 * presumably because not expecting negprot
2494 * to follow so fast. This is a simple
2495 * solution that works without
2496 * complicating the code and causes no
2497 * significant slowing down on mount
2498 * for everyone else
2499 */
2500 usleep_range(1000, 2000);
2501 }
2502 /*
2503 * else the negprot may still work without this
2504 * even though malloc failed
2505 */
2506
2507 return rc;
2508}
2509
2510static int
2511generic_ip_connect(struct TCP_Server_Info *server)
2512{
2513 int rc = 0;
Steve French6da97912011-03-13 18:55:55 +00002514 __be16 sport;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002515 int slen, sfamily;
Jeff Laytonbcf4b102008-12-01 18:42:15 -05002516 struct socket *socket = server->ssocket;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002517 struct sockaddr *saddr;
2518
2519 saddr = (struct sockaddr *) &server->dstaddr;
2520
2521 if (server->dstaddr.ss_family == AF_INET6) {
Samuel Cabrerodef6e1d2020-10-16 11:54:55 +02002522 struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)&server->dstaddr;
2523
2524 sport = ipv6->sin6_port;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002525 slen = sizeof(struct sockaddr_in6);
2526 sfamily = AF_INET6;
Samuel Cabrerodef6e1d2020-10-16 11:54:55 +02002527 cifs_dbg(FYI, "%s: connecting to [%pI6]:%d\n", __func__, &ipv6->sin6_addr,
2528 ntohs(sport));
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002529 } else {
Samuel Cabrerodef6e1d2020-10-16 11:54:55 +02002530 struct sockaddr_in *ipv4 = (struct sockaddr_in *)&server->dstaddr;
2531
2532 sport = ipv4->sin_port;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002533 slen = sizeof(struct sockaddr_in);
2534 sfamily = AF_INET;
Samuel Cabrerodef6e1d2020-10-16 11:54:55 +02002535 cifs_dbg(FYI, "%s: connecting to %pI4:%d\n", __func__, &ipv4->sin_addr,
2536 ntohs(sport));
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
Jeff Laytonbcf4b102008-12-01 18:42:15 -05002539 if (socket == NULL) {
Rob Landleyf1d0c992011-01-22 15:44:05 -06002540 rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM,
2541 IPPROTO_TCP, &socket, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 if (rc < 0) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002543 cifs_server_dbg(VFS, "Error %d creating socket\n", rc);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002544 server->ssocket = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 }
Jeff Laytonbcf4b102008-12-01 18:42:15 -05002547
2548 /* BB other socket options to set KEEPALIVE, NODELAY? */
Joe Perchesf96637b2013-05-04 22:12:25 -05002549 cifs_dbg(FYI, "Socket created\n");
Jeff Laytonbcf4b102008-12-01 18:42:15 -05002550 server->ssocket = socket;
2551 socket->sk->sk_allocation = GFP_NOFS;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002552 if (sfamily == AF_INET6)
2553 cifs_reclassify_socket6(socket);
2554 else
2555 cifs_reclassify_socket4(socket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 }
2557
Ben Greear3eb9a882010-09-01 17:06:02 -07002558 rc = bind_socket(server);
2559 if (rc < 0)
2560 return rc;
2561
Jeff Laytond5c56052008-12-01 18:42:33 -05002562 /*
2563 * Eventually check for other socket options to change from
2564 * the default. sock_setsockopt not used because it expects
2565 * user space buffer
2566 */
2567 socket->sk->sk_rcvtimeo = 7 * HZ;
Steve Frenchda505c32009-01-19 03:49:35 +00002568 socket->sk->sk_sndtimeo = 5 * HZ;
Steve French6a5fa2362010-01-01 01:28:43 +00002569
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002570 /* make the bufsizes depend on wsize/rsize and max requests */
2571 if (server->noautotune) {
2572 if (socket->sk->sk_sndbuf < (200 * 1024))
2573 socket->sk->sk_sndbuf = 200 * 1024;
2574 if (socket->sk->sk_rcvbuf < (140 * 1024))
2575 socket->sk->sk_rcvbuf = 140 * 1024;
2576 }
2577
Christoph Hellwig12abc5e2020-05-28 07:12:19 +02002578 if (server->tcp_nodelay)
2579 tcp_sock_set_nodelay(socket->sk);
Steve French6a5fa2362010-01-01 01:28:43 +00002580
Joe Perchesf96637b2013-05-04 22:12:25 -05002581 cifs_dbg(FYI, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx\n",
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002582 socket->sk->sk_sndbuf,
2583 socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo);
2584
Paulo Alcantara (SUSE)8eecd1c2019-07-16 19:04:50 -03002585 rc = socket->ops->connect(socket, saddr, slen,
2586 server->noblockcnt ? O_NONBLOCK : 0);
Paulo Alcantara (SUSE)d532cc72019-10-10 12:31:58 -03002587 /*
2588 * When mounting SMB root file systems, we do not want to block in
2589 * connect. Otherwise bail out and then let cifs_reconnect() perform
2590 * reconnect failover - if possible.
2591 */
2592 if (server->noblockcnt && rc == -EINPROGRESS)
Paulo Alcantara (SUSE)8eecd1c2019-07-16 19:04:50 -03002593 rc = 0;
Jeff Laytonee1b3ea2011-06-21 07:18:26 -04002594 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002595 cifs_dbg(FYI, "Error %d connecting to server\n", rc);
Jeff Laytonee1b3ea2011-06-21 07:18:26 -04002596 sock_release(socket);
2597 server->ssocket = NULL;
2598 return rc;
2599 }
2600
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002601 if (sport == htons(RFC1001_PORT))
2602 rc = ip_rfc1001_connect(server);
Steve French50c2f752007-07-13 00:33:32 +00002603
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 return rc;
2605}
2606
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002607static int
2608ip_connect(struct TCP_Server_Info *server)
2609{
Steve French6da97912011-03-13 18:55:55 +00002610 __be16 *sport;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002611 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
2612 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
2613
2614 if (server->dstaddr.ss_family == AF_INET6)
2615 sport = &addr6->sin6_port;
2616 else
2617 sport = &addr->sin_port;
2618
2619 if (*sport == 0) {
2620 int rc;
2621
2622 /* try with 445 port at first */
2623 *sport = htons(CIFS_PORT);
2624
2625 rc = generic_ip_connect(server);
2626 if (rc >= 0)
2627 return rc;
2628
2629 /* if it failed, try with 139 port */
2630 *sport = htons(RFC1001_PORT);
2631 }
2632
2633 return generic_ip_connect(server);
2634}
2635
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002636void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon,
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002637 struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
Steve French8af18972007-02-14 04:42:51 +00002638{
Steve Frenchbc044992020-12-11 19:48:26 -06002639 /*
2640 * If we are reconnecting then should we check to see if
Steve French8af18972007-02-14 04:42:51 +00002641 * any requested capabilities changed locally e.g. via
2642 * remount but we can not do much about it here
2643 * if they have (even if we could detect it by the following)
2644 * Perhaps we could add a backpointer to array of sb from tcon
2645 * or if we change to make all sb to same share the same
2646 * sb as NFS - then we only have one backpointer to sb.
2647 * What if we wanted to mount the server share twice once with
Steve Frenchbc044992020-12-11 19:48:26 -06002648 * and once without posixacls or posix paths?
2649 */
Steve French8af18972007-02-14 04:42:51 +00002650 __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French50c2f752007-07-13 00:33:32 +00002651
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002652 if (ctx && ctx->no_linux_ext) {
Steve Frenchc18c8422007-07-18 23:21:09 +00002653 tcon->fsUnixInfo.Capability = 0;
2654 tcon->unix_ext = 0; /* Unix Extensions disabled */
Joe Perchesf96637b2013-05-04 22:12:25 -05002655 cifs_dbg(FYI, "Linux protocol extensions disabled\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00002656 return;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002657 } else if (ctx)
Steve Frenchc18c8422007-07-18 23:21:09 +00002658 tcon->unix_ext = 1; /* Unix Extensions supported */
2659
Jiapeng Zhong16a78852021-01-14 18:02:23 +08002660 if (!tcon->unix_ext) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002661 cifs_dbg(FYI, "Unix extensions disabled so not set on reconnect\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00002662 return;
2663 }
Steve French50c2f752007-07-13 00:33:32 +00002664
Steve Frenchfb8c4b12007-07-10 01:16:18 +00002665 if (!CIFSSMBQFSUnixInfo(xid, tcon)) {
Steve French8af18972007-02-14 04:42:51 +00002666 __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
Joe Perchesf96637b2013-05-04 22:12:25 -05002667 cifs_dbg(FYI, "unix caps which server supports %lld\n", cap);
Steve Frenchbc044992020-12-11 19:48:26 -06002668 /*
2669 * check for reconnect case in which we do not
2670 * want to change the mount behavior if we can avoid it
2671 */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002672 if (ctx == NULL) {
Steve Frenchbc044992020-12-11 19:48:26 -06002673 /*
2674 * turn off POSIX ACL and PATHNAMES if not set
2675 * originally at mount time
2676 */
Steve French8af18972007-02-14 04:42:51 +00002677 if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0)
2678 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
Igor Mammedov11b6d642008-02-15 19:06:04 +00002679 if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
2680 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05002681 cifs_dbg(VFS, "POSIXPATH support change\n");
Steve French8af18972007-02-14 04:42:51 +00002682 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
Igor Mammedov11b6d642008-02-15 19:06:04 +00002683 } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002684 cifs_dbg(VFS, "possible reconnect error\n");
2685 cifs_dbg(VFS, "server disabled POSIX path support\n");
Igor Mammedov11b6d642008-02-15 19:06:04 +00002686 }
Steve French8af18972007-02-14 04:42:51 +00002687 }
Steve French50c2f752007-07-13 00:33:32 +00002688
Steve French6848b732011-05-26 18:38:54 +00002689 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05002690 cifs_dbg(VFS, "per-share encryption not supported yet\n");
Steve French6848b732011-05-26 18:38:54 +00002691
Steve French8af18972007-02-14 04:42:51 +00002692 cap &= CIFS_UNIX_CAP_MASK;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002693 if (ctx && ctx->no_psx_acl)
Steve French8af18972007-02-14 04:42:51 +00002694 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
Steve French75865f8c2007-06-24 18:30:48 +00002695 else if (CIFS_UNIX_POSIX_ACL_CAP & cap) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002696 cifs_dbg(FYI, "negotiated posix acl support\n");
Al Viro2c6292a2011-06-17 09:05:48 -04002697 if (cifs_sb)
2698 cifs_sb->mnt_cifs_flags |=
2699 CIFS_MOUNT_POSIXACL;
Steve French8af18972007-02-14 04:42:51 +00002700 }
2701
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002702 if (ctx && ctx->posix_paths == 0)
Steve French8af18972007-02-14 04:42:51 +00002703 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
Steve French75865f8c2007-06-24 18:30:48 +00002704 else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002705 cifs_dbg(FYI, "negotiate posix pathnames\n");
Al Viro2c6292a2011-06-17 09:05:48 -04002706 if (cifs_sb)
2707 cifs_sb->mnt_cifs_flags |=
Steve French8af18972007-02-14 04:42:51 +00002708 CIFS_MOUNT_POSIX_PATHS;
2709 }
Steve French50c2f752007-07-13 00:33:32 +00002710
Joe Perchesf96637b2013-05-04 22:12:25 -05002711 cifs_dbg(FYI, "Negotiate caps 0x%x\n", (int)cap);
Steve French8af18972007-02-14 04:42:51 +00002712#ifdef CONFIG_CIFS_DEBUG2
Steve French75865f8c2007-06-24 18:30:48 +00002713 if (cap & CIFS_UNIX_FCNTL_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05002714 cifs_dbg(FYI, "FCNTL cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00002715 if (cap & CIFS_UNIX_EXTATTR_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05002716 cifs_dbg(FYI, "EXTATTR cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00002717 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05002718 cifs_dbg(FYI, "POSIX path cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00002719 if (cap & CIFS_UNIX_XATTR_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05002720 cifs_dbg(FYI, "XATTR cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00002721 if (cap & CIFS_UNIX_POSIX_ACL_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05002722 cifs_dbg(FYI, "POSIX ACL cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00002723 if (cap & CIFS_UNIX_LARGE_READ_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05002724 cifs_dbg(FYI, "very large read cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00002725 if (cap & CIFS_UNIX_LARGE_WRITE_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05002726 cifs_dbg(FYI, "very large write cap\n");
Steve French6848b732011-05-26 18:38:54 +00002727 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05002728 cifs_dbg(FYI, "transport encryption cap\n");
Steve French6848b732011-05-26 18:38:54 +00002729 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05002730 cifs_dbg(FYI, "mandatory transport encryption cap\n");
Steve French8af18972007-02-14 04:42:51 +00002731#endif /* CIFS_DEBUG2 */
2732 if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) {
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002733 if (ctx == NULL)
Joe Perchesf96637b2013-05-04 22:12:25 -05002734 cifs_dbg(FYI, "resetting capabilities failed\n");
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002735 else
Joe Perchesf96637b2013-05-04 22:12:25 -05002736 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");
Steve French5a44b312007-09-20 15:16:24 +00002737
Steve French8af18972007-02-14 04:42:51 +00002738 }
2739 }
2740}
2741
Ronnie Sahlberg51acd202020-12-14 16:40:24 +10002742int cifs_setup_cifs_sb(struct cifs_sb_info *cifs_sb)
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -04002743{
Ronnie Sahlberg51acd202020-12-14 16:40:24 +10002744 struct smb3_fs_context *ctx = cifs_sb->ctx;
2745
Jeff Layton2de970f2010-10-06 19:51:12 -04002746 INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks);
2747
Al Viro2ced6f62011-06-17 09:20:04 -04002748 spin_lock_init(&cifs_sb->tlink_tree_lock);
2749 cifs_sb->tlink_tree = RB_ROOT;
2750
Frank Sorensonf52aa792020-02-12 15:31:48 -06002751 cifs_dbg(FYI, "file mode: %04ho dir mode: %04ho\n",
Ronnie Sahlberg51acd202020-12-14 16:40:24 +10002752 ctx->file_mode, ctx->dir_mode);
Steve French3b795212008-11-13 19:45:32 +00002753
Ronnie Sahlberg387ec582020-12-14 16:40:20 +10002754 /* this is needed for ASCII cp to Unicode converts */
2755 if (ctx->iocharset == NULL) {
2756 /* load_nls_default cannot return null */
2757 cifs_sb->local_nls = load_nls_default();
2758 } else {
2759 cifs_sb->local_nls = load_nls(ctx->iocharset);
2760 if (cifs_sb->local_nls == NULL) {
2761 cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n",
2762 ctx->iocharset);
2763 return -ELIBACC;
2764 }
2765 }
2766 ctx->local_nls = cifs_sb->local_nls;
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05302767
Ronnie Sahlberg2d39f502020-12-14 16:40:25 +10002768 smb3_update_mnt_flags(cifs_sb);
2769
2770 if (ctx->direct_io)
Joe Perchesf96637b2013-05-04 22:12:25 -05002771 cifs_dbg(FYI, "mounting share using direct i/o\n");
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002772 if (ctx->cache_ro) {
Steve French83bbfa72019-08-27 23:58:54 -05002773 cifs_dbg(VFS, "mounting share with read only caching. Ensure that the share will not be modified while in use.\n");
2774 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RO_CACHE;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002775 } else if (ctx->cache_rw) {
Steve French41e033f2019-08-30 02:12:41 -05002776 cifs_dbg(VFS, "mounting share in single client RW caching mode. Ensure that no other systems will be accessing the share.\n");
2777 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_RO_CACHE |
2778 CIFS_MOUNT_RW_CACHE);
Steve French83bbfa72019-08-27 23:58:54 -05002779 }
Steve French3b795212008-11-13 19:45:32 +00002780
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002781 if ((ctx->cifs_acl) && (ctx->dynperm))
Joe Perchesf96637b2013-05-04 22:12:25 -05002782 cifs_dbg(VFS, "mount option dynperm ignored if cifsacl mount option supported\n");
Sachin Prabhu4214ebf2016-07-29 22:38:19 +01002783
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002784 if (ctx->prepath) {
2785 cifs_sb->prepath = kstrdup(ctx->prepath, GFP_KERNEL);
Sachin Prabhu4214ebf2016-07-29 22:38:19 +01002786 if (cifs_sb->prepath == NULL)
2787 return -ENOMEM;
Shyam Prasad Na738c932021-02-11 03:26:54 -08002788 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
Sachin Prabhu4214ebf2016-07-29 22:38:19 +01002789 }
2790
2791 return 0;
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -04002792}
2793
Paulo Alcantara56c762e2018-11-14 13:03:14 -02002794/* Release all succeed connections */
2795static inline void mount_put_conns(struct cifs_sb_info *cifs_sb,
2796 unsigned int xid,
2797 struct TCP_Server_Info *server,
2798 struct cifs_ses *ses, struct cifs_tcon *tcon)
2799{
2800 int rc = 0;
2801
2802 if (tcon)
2803 cifs_put_tcon(tcon);
2804 else if (ses)
2805 cifs_put_smb_ses(ses);
2806 else if (server)
2807 cifs_put_tcp_session(server, 0);
2808 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_POSIX_PATHS;
2809 free_xid(xid);
2810}
2811
2812/* Get connections for tcp, ses and tcon */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002813static int mount_get_conns(struct smb3_fs_context *ctx, struct cifs_sb_info *cifs_sb,
Paulo Alcantara56c762e2018-11-14 13:03:14 -02002814 unsigned int *xid,
2815 struct TCP_Server_Info **nserver,
2816 struct cifs_ses **nses, struct cifs_tcon **ntcon)
2817{
2818 int rc = 0;
2819 struct TCP_Server_Info *server;
2820 struct cifs_ses *ses;
2821 struct cifs_tcon *tcon;
2822
2823 *nserver = NULL;
2824 *nses = NULL;
2825 *ntcon = NULL;
2826
2827 *xid = get_xid();
2828
2829 /* get a reference to a tcp session */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002830 server = cifs_get_tcp_session(ctx);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02002831 if (IS_ERR(server)) {
2832 rc = PTR_ERR(server);
2833 return rc;
2834 }
2835
2836 *nserver = server;
2837
Paulo Alcantara56c762e2018-11-14 13:03:14 -02002838 /* get a reference to a SMB session */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002839 ses = cifs_get_smb_ses(server, ctx);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02002840 if (IS_ERR(ses)) {
2841 rc = PTR_ERR(ses);
2842 return rc;
2843 }
2844
2845 *nses = ses;
2846
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002847 if ((ctx->persistent == true) && (!(ses->server->capabilities &
Paulo Alcantara56c762e2018-11-14 13:03:14 -02002848 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES))) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002849 cifs_server_dbg(VFS, "persistent handles not supported by server\n");
Paulo Alcantara56c762e2018-11-14 13:03:14 -02002850 return -EOPNOTSUPP;
2851 }
2852
2853 /* search for existing tcon to this server share */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002854 tcon = cifs_get_tcon(ses, ctx);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02002855 if (IS_ERR(tcon)) {
2856 rc = PTR_ERR(tcon);
2857 return rc;
2858 }
2859
2860 *ntcon = tcon;
2861
2862 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
2863 if (tcon->posix_extensions)
2864 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS;
2865
2866 /* tell server which Unix caps we support */
2867 if (cap_unix(tcon->ses)) {
2868 /*
2869 * reset of caps checks mount to see if unix extensions disabled
2870 * for just this mount.
2871 */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002872 reset_cifs_unix_caps(*xid, tcon, cifs_sb, ctx);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02002873 if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) &&
2874 (le64_to_cpu(tcon->fsUnixInfo.Capability) &
2875 CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP))
2876 return -EACCES;
2877 } else
2878 tcon->unix_ext = 0; /* server does not support them */
2879
2880 /* do not care if a following call succeed - informational */
Steve French1981eba2019-08-29 22:33:38 -05002881 if (!tcon->pipe && server->ops->qfs_tcon) {
Amir Goldstein0f060932020-02-03 21:46:43 +02002882 server->ops->qfs_tcon(*xid, tcon, cifs_sb);
Steve French1981eba2019-08-29 22:33:38 -05002883 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE) {
2884 if (tcon->fsDevInfo.DeviceCharacteristics &
Steve French52870d52019-10-01 21:25:46 -05002885 cpu_to_le32(FILE_READ_ONLY_DEVICE))
Steve French1981eba2019-08-29 22:33:38 -05002886 cifs_dbg(VFS, "mounted to read only share\n");
Steve French41e033f2019-08-30 02:12:41 -05002887 else if ((cifs_sb->mnt_cifs_flags &
2888 CIFS_MOUNT_RW_CACHE) == 0)
Steve French1981eba2019-08-29 22:33:38 -05002889 cifs_dbg(VFS, "read only mount of RW share\n");
Steve French41e033f2019-08-30 02:12:41 -05002890 /* no need to log a RW mount of a typical RW share */
Steve French1981eba2019-08-29 22:33:38 -05002891 }
2892 }
Paulo Alcantara56c762e2018-11-14 13:03:14 -02002893
Ronnie Sahlberg522aa3b2020-12-14 16:40:17 +10002894 /*
2895 * Clamp the rsize/wsize mount arguments if they are too big for the server
Steve French0c2b5f72020-12-15 13:28:50 -06002896 * and set the rsize/wsize to the negotiated values if not passed in by
2897 * the user on mount
Ronnie Sahlberg522aa3b2020-12-14 16:40:17 +10002898 */
Steve French0c2b5f72020-12-15 13:28:50 -06002899 if ((cifs_sb->ctx->wsize == 0) ||
2900 (cifs_sb->ctx->wsize > server->ops->negotiate_wsize(tcon, ctx)))
Ronnie Sahlberg522aa3b2020-12-14 16:40:17 +10002901 cifs_sb->ctx->wsize = server->ops->negotiate_wsize(tcon, ctx);
Steve French0c2b5f72020-12-15 13:28:50 -06002902 if ((cifs_sb->ctx->rsize == 0) ||
2903 (cifs_sb->ctx->rsize > server->ops->negotiate_rsize(tcon, ctx)))
Ronnie Sahlberg522aa3b2020-12-14 16:40:17 +10002904 cifs_sb->ctx->rsize = server->ops->negotiate_rsize(tcon, ctx);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02002905
2906 return 0;
2907}
2908
2909static int mount_setup_tlink(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses,
2910 struct cifs_tcon *tcon)
2911{
2912 struct tcon_link *tlink;
2913
2914 /* hang the tcon off of the superblock */
2915 tlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
2916 if (tlink == NULL)
2917 return -ENOMEM;
2918
2919 tlink->tl_uid = ses->linux_uid;
2920 tlink->tl_tcon = tcon;
2921 tlink->tl_time = jiffies;
2922 set_bit(TCON_LINK_MASTER, &tlink->tl_flags);
2923 set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
2924
2925 cifs_sb->master_tlink = tlink;
2926 spin_lock(&cifs_sb->tlink_tree_lock);
2927 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
2928 spin_unlock(&cifs_sb->tlink_tree_lock);
2929
2930 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
2931 TLINK_IDLE_EXPIRE);
2932 return 0;
2933}
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04002934
Steve French2d6d5892009-04-09 00:36:44 +00002935#ifdef CONFIG_CIFS_DFS_UPCALL
Steve French6d3ea7e2012-11-28 22:34:41 -06002936/*
2937 * cifs_build_path_to_root returns full path to root when we do not have an
Steve French201023c2021-02-15 11:03:45 -06002938 * existing connection (tcon)
Steve French6d3ea7e2012-11-28 22:34:41 -06002939 */
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04002940static char *
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002941build_unc_path_to_root(const struct smb3_fs_context *ctx,
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02002942 const struct cifs_sb_info *cifs_sb, bool useppath)
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04002943{
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04002944 char *full_path, *pos;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002945 unsigned int pplen = useppath && ctx->prepath ?
2946 strlen(ctx->prepath) + 1 : 0;
2947 unsigned int unc_len = strnlen(ctx->UNC, MAX_TREE_SIZE + 1);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04002948
Ronnie Sahlberg340625e2019-08-27 09:30:14 +10002949 if (unc_len > MAX_TREE_SIZE)
2950 return ERR_PTR(-EINVAL);
2951
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04002952 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04002953 if (full_path == NULL)
2954 return ERR_PTR(-ENOMEM);
2955
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002956 memcpy(full_path, ctx->UNC, unc_len);
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04002957 pos = full_path + unc_len;
2958
2959 if (pplen) {
Jeff Layton1fc29ba2013-05-31 10:00:18 -04002960 *pos = CIFS_DIR_SEP(cifs_sb);
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002961 memcpy(pos + 1, ctx->prepath, pplen);
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04002962 pos += pplen;
2963 }
2964
2965 *pos = '\0'; /* add trailing null */
Steve Frenchf87d39d2011-05-27 03:50:55 +00002966 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
Joe Perchesf96637b2013-05-04 22:12:25 -05002967 cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04002968 return full_path;
2969}
Sean Finneydd613942011-04-11 13:19:30 +00002970
Paulo Alcantara1c780222018-11-14 16:24:03 -02002971/**
2972 * expand_dfs_referral - Perform a dfs referral query and update the cifs_sb
2973 *
Ronnie Sahlberga2a52a82020-11-10 09:12:31 +10002974 * If a referral is found, cifs_sb->ctx->mount_options will be (re-)allocated
Sean Finney046462a2011-04-11 13:19:33 +00002975 * to a string containing updated options for the submount. Otherwise it
2976 * will be left untouched.
Sean Finneydd613942011-04-11 13:19:30 +00002977 *
2978 * Returns the rc from get_dfs_path to the caller, which can be used to
2979 * determine whether there were referrals.
2980 */
2981static int
Pavel Shilovskyb669f332012-05-27 20:21:53 +04002982expand_dfs_referral(const unsigned int xid, struct cifs_ses *ses,
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002983 struct smb3_fs_context *ctx, struct cifs_sb_info *cifs_sb,
Paulo Alcantara7efd0812020-07-21 09:36:44 -03002984 char *ref_path)
Sean Finneydd613942011-04-11 13:19:30 +00002985{
2986 int rc;
Paulo Alcantara1c780222018-11-14 16:24:03 -02002987 struct dfs_info3_param referral = {0};
Paulo Alcantara7efd0812020-07-21 09:36:44 -03002988 char *full_path = NULL, *mdata = NULL;
Sean Finneydd613942011-04-11 13:19:30 +00002989
Aurelien Aptel83930722018-09-20 18:10:25 -07002990 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
2991 return -EREMOTE;
2992
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06002993 full_path = build_unc_path_to_root(ctx, cifs_sb, true);
Sean Finneydd613942011-04-11 13:19:30 +00002994 if (IS_ERR(full_path))
2995 return PTR_ERR(full_path);
2996
Paulo Alcantara1c780222018-11-14 16:24:03 -02002997 rc = dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb),
2998 ref_path, &referral, NULL);
2999 if (!rc) {
Ronnie Sahlberg0d4873f2021-01-28 21:35:10 -06003000 char *fake_devname = NULL;
3001
Ronnie Sahlberga2a52a82020-11-10 09:12:31 +10003002 mdata = cifs_compose_mount_options(cifs_sb->ctx->mount_options,
Ronnie Sahlberg0d4873f2021-01-28 21:35:10 -06003003 full_path + 1, &referral,
3004 &fake_devname);
Paulo Alcantara1c780222018-11-14 16:24:03 -02003005 free_dfs_info_param(&referral);
Sean Finney046462a2011-04-11 13:19:33 +00003006
Sean Finneydd613942011-04-11 13:19:30 +00003007 if (IS_ERR(mdata)) {
3008 rc = PTR_ERR(mdata);
3009 mdata = NULL;
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003010 } else {
Ronnie Sahlbergabd4af42021-02-08 16:48:31 +10003011 /*
3012 * We can not clear out the whole structure since we
3013 * no longer have an explicit function to parse
3014 * a mount-string. Instead we need to clear out the
3015 * individual fields that are no longer valid.
3016 */
3017 kfree(ctx->prepath);
3018 ctx->prepath = NULL;
Ronnie Sahlberg0d4873f2021-01-28 21:35:10 -06003019 rc = cifs_setup_volume_info(ctx, mdata, fake_devname);
Sean Finneydd613942011-04-11 13:19:30 +00003020 }
Ronnie Sahlberg0d4873f2021-01-28 21:35:10 -06003021 kfree(fake_devname);
Ronnie Sahlberga2a52a82020-11-10 09:12:31 +10003022 kfree(cifs_sb->ctx->mount_options);
3023 cifs_sb->ctx->mount_options = mdata;
Sean Finneydd613942011-04-11 13:19:30 +00003024 }
3025 kfree(full_path);
3026 return rc;
3027}
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003028
3029static inline int get_next_dfs_tgt(const char *path,
3030 struct dfs_cache_tgt_list *tgt_list,
3031 struct dfs_cache_tgt_iterator **tgt_it)
3032{
3033 if (!*tgt_it)
3034 *tgt_it = dfs_cache_get_tgt_iterator(tgt_list);
3035 else
3036 *tgt_it = dfs_cache_get_next_tgt(tgt_list, *tgt_it);
3037 return !*tgt_it ? -EHOSTDOWN : 0;
3038}
3039
3040static int update_vol_info(const struct dfs_cache_tgt_iterator *tgt_it,
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003041 struct smb3_fs_context *fake_ctx, struct smb3_fs_context *ctx)
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003042{
3043 const char *tgt = dfs_cache_get_tgt_name(tgt_it);
3044 int len = strlen(tgt) + 2;
3045 char *new_unc;
3046
3047 new_unc = kmalloc(len, GFP_KERNEL);
3048 if (!new_unc)
3049 return -ENOMEM;
Ronnie Sahlberg74ea5f92019-02-09 09:51:11 +10003050 scnprintf(new_unc, len, "\\%s", tgt);
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003051
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003052 kfree(ctx->UNC);
3053 ctx->UNC = new_unc;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003054
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003055 if (fake_ctx->prepath) {
3056 kfree(ctx->prepath);
3057 ctx->prepath = fake_ctx->prepath;
3058 fake_ctx->prepath = NULL;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003059 }
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003060 memcpy(&ctx->dstaddr, &fake_ctx->dstaddr, sizeof(ctx->dstaddr));
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003061
3062 return 0;
3063}
3064
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003065static int do_dfs_failover(const char *path, const char *full_path, struct cifs_sb_info *cifs_sb,
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003066 struct smb3_fs_context *ctx, struct cifs_ses *root_ses,
3067 unsigned int *xid, struct TCP_Server_Info **server,
3068 struct cifs_ses **ses, struct cifs_tcon **tcon)
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003069{
3070 int rc;
Paulo Alcantara85132222021-02-24 20:59:21 -03003071 struct dfs_cache_tgt_list tgt_list = {0};
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003072 struct dfs_cache_tgt_iterator *tgt_it = NULL;
Paulo Alcantara85132222021-02-24 20:59:21 -03003073 struct smb3_fs_context tmp_ctx = {NULL};
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003074
3075 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
3076 return -EOPNOTSUPP;
3077
Paulo Alcantara85132222021-02-24 20:59:21 -03003078 cifs_dbg(FYI, "%s: path=%s full_path=%s\n", __func__, path, full_path);
3079
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003080 rc = dfs_cache_noreq_find(path, NULL, &tgt_list);
3081 if (rc)
3082 return rc;
Paulo Alcantara85132222021-02-24 20:59:21 -03003083 /*
3084 * We use a 'tmp_ctx' here because we need pass it down to the mount_{get,put} functions to
3085 * test connection against new DFS targets.
3086 */
3087 rc = smb3_fs_context_dup(&tmp_ctx, ctx);
3088 if (rc)
3089 goto out;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003090
3091 for (;;) {
Paulo Alcantara85132222021-02-24 20:59:21 -03003092 struct dfs_info3_param ref = {0};
3093 char *fake_devname = NULL, *mdata = NULL;
3094
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003095 /* Get next DFS target server - if any */
3096 rc = get_next_dfs_tgt(path, &tgt_list, &tgt_it);
3097 if (rc)
3098 break;
Paulo Alcantara85132222021-02-24 20:59:21 -03003099
3100 rc = dfs_cache_get_tgt_referral(path, tgt_it, &ref);
3101 if (rc)
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003102 break;
Paulo Alcantara85132222021-02-24 20:59:21 -03003103
3104 cifs_dbg(FYI, "%s: old ctx: UNC=%s prepath=%s\n", __func__, tmp_ctx.UNC,
3105 tmp_ctx.prepath);
3106
3107 mdata = cifs_compose_mount_options(cifs_sb->ctx->mount_options, full_path + 1, &ref,
3108 &fake_devname);
3109 free_dfs_info_param(&ref);
3110
3111 if (IS_ERR(mdata)) {
3112 rc = PTR_ERR(mdata);
3113 mdata = NULL;
3114 } else
3115 rc = cifs_setup_volume_info(&tmp_ctx, mdata, fake_devname);
3116
3117 kfree(mdata);
3118 kfree(fake_devname);
3119
3120 if (rc)
3121 break;
3122
3123 cifs_dbg(FYI, "%s: new ctx: UNC=%s prepath=%s\n", __func__, tmp_ctx.UNC,
3124 tmp_ctx.prepath);
3125
3126 mount_put_conns(cifs_sb, *xid, *server, *ses, *tcon);
3127 rc = mount_get_conns(&tmp_ctx, cifs_sb, xid, server, ses, tcon);
3128 if (!rc || (*server && *ses)) {
3129 /*
3130 * We were able to connect to new target server. Update current context with
3131 * new target server.
3132 */
3133 rc = update_vol_info(tgt_it, &tmp_ctx, ctx);
3134 break;
3135 }
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003136 }
3137 if (!rc) {
Paulo Alcantara85132222021-02-24 20:59:21 -03003138 cifs_dbg(FYI, "%s: final ctx: UNC=%s prepath=%s\n", __func__, tmp_ctx.UNC,
3139 tmp_ctx.prepath);
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003140 /*
Paulo Alcantara85132222021-02-24 20:59:21 -03003141 * Update DFS target hint in DFS referral cache with the target server we
3142 * successfully reconnected to.
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003143 */
Paulo Alcantara85132222021-02-24 20:59:21 -03003144 rc = dfs_cache_update_tgthint(*xid, root_ses ? root_ses : *ses, cifs_sb->local_nls,
3145 cifs_remap(cifs_sb), path, tgt_it);
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003146 }
Paulo Alcantara85132222021-02-24 20:59:21 -03003147
3148out:
3149 smb3_cleanup_fs_context_contents(&tmp_ctx);
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003150 dfs_cache_free_tgts(&tgt_list);
3151 return rc;
3152}
Steve French2d6d5892009-04-09 00:36:44 +00003153#endif
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003154
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06003155/* TODO: all callers to this are broken. We are not parsing mount_options here
3156 * we should pass a clone of the original context?
3157 */
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03003158int
Ronnie Sahlberg0d4873f2021-01-28 21:35:10 -06003159cifs_setup_volume_info(struct smb3_fs_context *ctx, const char *mntopts, const char *devname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160{
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003161 int rc = 0;
Sean Finneydd613942011-04-11 13:19:30 +00003162
Ronnie Sahlberg0d4873f2021-01-28 21:35:10 -06003163 smb3_parse_devname(devname, ctx);
3164
3165 if (mntopts) {
3166 char *ip;
3167
3168 cifs_dbg(FYI, "%s: mntopts=%s\n", __func__, mntopts);
3169 rc = smb3_parse_opt(mntopts, "ip", &ip);
3170 if (!rc && !cifs_convert_address((struct sockaddr *)&ctx->dstaddr, ip,
3171 strlen(ip))) {
3172 cifs_dbg(VFS, "%s: failed to convert ip address\n", __func__);
3173 return -EINVAL;
3174 }
3175 }
3176
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003177 if (ctx->nullauth) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003178 cifs_dbg(FYI, "Anonymous login\n");
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003179 kfree(ctx->username);
3180 ctx->username = NULL;
3181 } else if (ctx->username) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 /* BB fixme parse for domain name here */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003183 cifs_dbg(FYI, "Username: %s\n", ctx->username);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -05003185 cifs_dbg(VFS, "No username specified\n");
Steve French50c2f752007-07-13 00:33:32 +00003186 /* In userspace mount helper we can get user name from alternate
3187 locations such as env variables and files on disk */
Jeff Layton04db79b2011-07-06 08:10:38 -04003188 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 }
3190
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003191 return rc;
Jeff Layton04db79b2011-07-06 08:10:38 -04003192}
3193
Aurelien Aptela6b50582016-05-25 19:59:09 +02003194static int
3195cifs_are_all_path_components_accessible(struct TCP_Server_Info *server,
3196 unsigned int xid,
3197 struct cifs_tcon *tcon,
3198 struct cifs_sb_info *cifs_sb,
Ronnie Sahlbergce465bf2019-07-11 13:46:58 +10003199 char *full_path,
3200 int added_treename)
Aurelien Aptela6b50582016-05-25 19:59:09 +02003201{
3202 int rc;
3203 char *s;
3204 char sep, tmp;
Ronnie Sahlbergce465bf2019-07-11 13:46:58 +10003205 int skip = added_treename ? 1 : 0;
Aurelien Aptela6b50582016-05-25 19:59:09 +02003206
3207 sep = CIFS_DIR_SEP(cifs_sb);
3208 s = full_path;
3209
3210 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, "");
3211 while (rc == 0) {
3212 /* skip separators */
3213 while (*s == sep)
3214 s++;
3215 if (!*s)
3216 break;
3217 /* next separator */
3218 while (*s && *s != sep)
3219 s++;
Ronnie Sahlbergce465bf2019-07-11 13:46:58 +10003220 /*
3221 * if the treename is added, we then have to skip the first
3222 * part within the separators
3223 */
3224 if (skip) {
3225 skip = 0;
3226 continue;
3227 }
Aurelien Aptela6b50582016-05-25 19:59:09 +02003228 /*
3229 * temporarily null-terminate the path at the end of
3230 * the current component
3231 */
3232 tmp = *s;
3233 *s = 0;
3234 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3235 full_path);
3236 *s = tmp;
3237 }
3238 return rc;
3239}
3240
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003241/*
3242 * Check if path is remote (e.g. a DFS share). Return -EREMOTE if it is,
3243 * otherwise 0.
3244 */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003245static int is_path_remote(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx,
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003246 const unsigned int xid,
3247 struct TCP_Server_Info *server,
3248 struct cifs_tcon *tcon)
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003249{
Jeff Layton1daaae82012-03-21 06:30:40 -04003250 int rc;
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003251 char *full_path;
3252
3253 if (!server->ops->is_path_accessible)
3254 return -EOPNOTSUPP;
3255
3256 /*
3257 * cifs_build_path_to_root works only when we have a valid tcon
3258 */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003259 full_path = cifs_build_path_to_root(ctx, cifs_sb, tcon,
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003260 tcon->Flags & SMB_SHARE_IS_IN_DFS);
3261 if (full_path == NULL)
3262 return -ENOMEM;
3263
3264 cifs_dbg(FYI, "%s: full_path: %s\n", __func__, full_path);
3265
3266 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3267 full_path);
3268 if (rc != 0 && rc != -EREMOTE) {
3269 kfree(full_path);
3270 return rc;
3271 }
3272
3273 if (rc != -EREMOTE) {
3274 rc = cifs_are_all_path_components_accessible(server, xid, tcon,
Ronnie Sahlbergce465bf2019-07-11 13:46:58 +10003275 cifs_sb, full_path, tcon->Flags & SMB_SHARE_IS_IN_DFS);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003276 if (rc != 0) {
Joe Perchesa0a30362020-04-14 22:42:53 -07003277 cifs_server_dbg(VFS, "cannot query dirs between root and final path, enabling CIFS_MOUNT_USE_PREFIX_PATH\n");
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003278 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3279 rc = 0;
3280 }
3281 }
3282
3283 kfree(full_path);
3284 return rc;
3285}
3286
3287#ifdef CONFIG_CIFS_DFS_UPCALL
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003288static void set_root_ses(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses,
3289 struct cifs_ses **root_ses)
Paulo Alcantara (SUSE)5bb30a42019-11-22 12:30:56 -03003290{
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003291 if (ses) {
3292 spin_lock(&cifs_tcp_ses_lock);
3293 ses->ses_count++;
Aurelien Aptel59463eb2020-12-03 19:46:08 +01003294 if (ses->tcon_ipc)
3295 ses->tcon_ipc->remap = cifs_remap(cifs_sb);
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003296 spin_unlock(&cifs_tcp_ses_lock);
3297 }
3298 *root_ses = ses;
3299}
3300
3301static void put_root_ses(struct cifs_ses *ses)
3302{
3303 if (ses)
3304 cifs_put_smb_ses(ses);
3305}
3306
Paulo Alcantaraff2c54a2021-02-24 20:59:22 -03003307/* Set up next dfs prefix path in @dfs_path */
3308static int next_dfs_prepath(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx,
3309 const unsigned int xid, struct TCP_Server_Info *server,
3310 struct cifs_tcon *tcon, char **dfs_path)
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003311{
Paulo Alcantaraff2c54a2021-02-24 20:59:22 -03003312 char *path, *npath;
3313 int added_treename = is_tcon_dfs(tcon);
3314 int rc;
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003315
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003316 path = cifs_build_path_to_root(ctx, cifs_sb, tcon, added_treename);
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003317 if (!path)
3318 return -ENOMEM;
3319
Paulo Alcantaraff2c54a2021-02-24 20:59:22 -03003320 rc = is_path_remote(cifs_sb, ctx, xid, server, tcon);
3321 if (rc == -EREMOTE) {
3322 struct smb3_fs_context v = {NULL};
3323 /* if @path contains a tree name, skip it in the prefix path */
3324 if (added_treename) {
3325 rc = smb3_parse_devname(path, &v);
3326 if (rc)
3327 goto out;
3328 npath = build_unc_path_to_root(&v, cifs_sb, true);
3329 smb3_cleanup_fs_context_contents(&v);
3330 } else {
3331 v.UNC = ctx->UNC;
3332 v.prepath = path + 1;
3333 npath = build_unc_path_to_root(&v, cifs_sb, true);
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003334 }
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003335
Paulo Alcantaraff2c54a2021-02-24 20:59:22 -03003336 if (IS_ERR(npath)) {
3337 rc = PTR_ERR(npath);
3338 goto out;
3339 }
3340
3341 kfree(*dfs_path);
3342 *dfs_path = npath;
3343 rc = -EREMOTE;
3344 }
3345
3346out:
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003347 kfree(path);
3348 return rc;
Paulo Alcantara (SUSE)5bb30a42019-11-22 12:30:56 -03003349}
3350
Paulo Alcantara5ff28362021-02-24 20:59:23 -03003351/* Check if resolved targets can handle any DFS referrals */
3352static int is_referral_server(const char *ref_path, struct cifs_tcon *tcon, bool *ref_server)
3353{
3354 int rc;
3355 struct dfs_info3_param ref = {0};
3356
3357 if (is_tcon_dfs(tcon)) {
3358 *ref_server = true;
3359 } else {
3360 cifs_dbg(FYI, "%s: ref_path=%s\n", __func__, ref_path);
3361
3362 rc = dfs_cache_noreq_find(ref_path, &ref, NULL);
3363 if (rc) {
3364 cifs_dbg(VFS, "%s: dfs_cache_noreq_find: failed (rc=%d)\n", __func__, rc);
3365 return rc;
3366 }
3367 cifs_dbg(FYI, "%s: ref.flags=0x%x\n", __func__, ref.flags);
3368 /*
3369 * Check if all targets are capable of handling DFS referrals as per
3370 * MS-DFSC 2.2.4 RESP_GET_DFS_REFERRAL.
3371 */
3372 *ref_server = !!(ref.flags & DFSREF_REFERRAL_SERVER);
3373 free_dfs_info_param(&ref);
3374 }
3375 return 0;
3376}
3377
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003378int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003379{
3380 int rc = 0;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003381 unsigned int xid;
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003382 struct TCP_Server_Info *server = NULL;
3383 struct cifs_ses *ses = NULL, *root_ses = NULL;
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003384 struct cifs_tcon *tcon = NULL;
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003385 int count = 0;
3386 char *ref_path = NULL, *full_path = NULL;
3387 char *oldmnt = NULL;
3388 char *mntdata = NULL;
Paulo Alcantara5ff28362021-02-24 20:59:23 -03003389 bool ref_server = false;
Al Virodd854462011-06-17 08:24:42 -04003390
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003391 rc = mount_get_conns(ctx, cifs_sb, &xid, &server, &ses, &tcon);
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003392 /*
Paulo Alcantarad01132a2021-02-24 20:59:24 -03003393 * If called with 'nodfs' mount option, then skip DFS resolving. Otherwise unconditionally
3394 * try to get an DFS referral (even cached) to determine whether it is an DFS mount.
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003395 *
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003396 * Skip prefix path to provide support for DFS referrals from w2k8 servers which don't seem
3397 * to respond with PATH_NOT_COVERED to requests that include the prefix.
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003398 */
Paulo Alcantarad01132a2021-02-24 20:59:24 -03003399 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS) ||
3400 dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb), ctx->UNC + 1, NULL,
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003401 NULL)) {
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003402 if (rc)
3403 goto error;
3404 /* Check if it is fully accessible and then mount it */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003405 rc = is_path_remote(cifs_sb, ctx, xid, server, tcon);
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003406 if (!rc)
3407 goto out;
3408 if (rc != -EREMOTE)
3409 goto error;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003410 }
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003411 /* Save mount options */
Al Viro8d767222021-03-05 15:02:34 -05003412 mntdata = kstrdup(cifs_sb->ctx->mount_options, GFP_KERNEL);
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003413 if (!mntdata) {
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03003414 rc = -ENOMEM;
3415 goto error;
3416 }
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003417 /* Get path of DFS root */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003418 ref_path = build_unc_path_to_root(ctx, cifs_sb, false);
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003419 if (IS_ERR(ref_path)) {
3420 rc = PTR_ERR(ref_path);
3421 ref_path = NULL;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003422 goto error;
3423 }
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003424
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003425 set_root_ses(cifs_sb, ses, &root_ses);
3426 do {
3427 /* Save full path of last DFS path we used to resolve final target server */
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003428 kfree(full_path);
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003429 full_path = build_unc_path_to_root(ctx, cifs_sb, !!count);
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003430 if (IS_ERR(full_path)) {
3431 rc = PTR_ERR(full_path);
Dan Carpenter20b135e2020-08-05 12:52:07 +03003432 full_path = NULL;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003433 break;
3434 }
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003435 /* Chase referral */
Ronnie Sahlberga2a52a82020-11-10 09:12:31 +10003436 oldmnt = cifs_sb->ctx->mount_options;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003437 rc = expand_dfs_referral(xid, root_ses, ctx, cifs_sb, ref_path + 1);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003438 if (rc)
3439 break;
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003440 /* Connect to new DFS target only if we were redirected */
Ronnie Sahlberga2a52a82020-11-10 09:12:31 +10003441 if (oldmnt != cifs_sb->ctx->mount_options) {
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003442 mount_put_conns(cifs_sb, xid, server, ses, tcon);
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003443 rc = mount_get_conns(ctx, cifs_sb, &xid, &server, &ses, &tcon);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003444 }
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003445 if (rc && !server && !ses) {
3446 /* Failed to connect. Try to connect to other targets in the referral. */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003447 rc = do_dfs_failover(ref_path + 1, full_path, cifs_sb, ctx, root_ses, &xid,
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003448 &server, &ses, &tcon);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003449 }
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003450 if (rc == -EACCES || rc == -EOPNOTSUPP || !server || !ses)
3451 break;
3452 if (!tcon)
3453 continue;
Paulo Alcantara5ff28362021-02-24 20:59:23 -03003454
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003455 /* Make sure that requests go through new root servers */
Paulo Alcantara5ff28362021-02-24 20:59:23 -03003456 rc = is_referral_server(ref_path + 1, tcon, &ref_server);
3457 if (rc)
3458 break;
3459 if (ref_server) {
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003460 put_root_ses(root_ses);
3461 set_root_ses(cifs_sb, ses, &root_ses);
3462 }
Paulo Alcantara5ff28362021-02-24 20:59:23 -03003463
Paulo Alcantaraff2c54a2021-02-24 20:59:22 -03003464 /* Get next dfs path and then continue chasing them if -EREMOTE */
3465 rc = next_dfs_prepath(cifs_sb, ctx, xid, server, tcon, &ref_path);
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003466 /* Prevent recursion on broken link referrals */
3467 if (rc == -EREMOTE && ++count > MAX_NESTED_LINKS)
3468 rc = -ELOOP;
3469 } while (rc == -EREMOTE);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003470
Jeff Layton9d002df2010-10-06 19:51:11 -04003471 if (rc)
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003472 goto error;
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003473 put_root_ses(root_ses);
3474 root_ses = NULL;
3475 kfree(ref_path);
3476 ref_path = NULL;
3477 /*
3478 * Store DFS full path in both superblock and tree connect structures.
3479 *
3480 * For DFS root mounts, the prefix path (cifs_sb->prepath) is preserved during reconnect so
3481 * only the root path is set in cifs_sb->origin_fullpath and tcon->dfs_path. And for DFS
3482 * links, the prefix path is included in both and may be changed during reconnect. See
3483 * cifs_tree_connect().
3484 */
Al Viro8d767222021-03-05 15:02:34 -05003485 cifs_sb->origin_fullpath = kstrdup(full_path, GFP_KERNEL);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02003486 if (!cifs_sb->origin_fullpath) {
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02003487 rc = -ENOMEM;
3488 goto error;
3489 }
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003490 spin_lock(&cifs_tcp_ses_lock);
3491 tcon->dfs_path = full_path;
3492 full_path = NULL;
3493 tcon->remap = cifs_remap(cifs_sb);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02003494 spin_unlock(&cifs_tcp_ses_lock);
3495
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003496 /* Add original context for DFS cache to be used when refreshing referrals */
3497 rc = dfs_cache_add_vol(mntdata, ctx, cifs_sb->origin_fullpath);
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003498 if (rc)
Paulo Alcantarae511d312018-11-14 17:16:44 -02003499 goto error;
Aurelien Aptel5fc7fcd2018-11-16 16:13:25 +01003500 /*
3501 * After reconnecting to a different server, unique ids won't
3502 * match anymore, so we disable serverino. This prevents
3503 * dentry revalidation to think the dentry are stale (ESTALE).
3504 */
3505 cifs_autodisable_serverino(cifs_sb);
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03003506 /*
3507 * Force the use of prefix path to support failover on DFS paths that
3508 * resolve to targets that have different prefix paths.
3509 */
3510 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3511 kfree(cifs_sb->prepath);
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003512 cifs_sb->prepath = ctx->prepath;
3513 ctx->prepath = NULL;
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03003514
Jeff Layton70fe7dc2007-11-16 22:21:07 +00003515out:
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003516 free_xid(xid);
Ronnie Sahlberg387ec582020-12-14 16:40:20 +10003517 cifs_try_adding_channels(cifs_sb, ses);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003518 return mount_setup_tlink(cifs_sb, ses, tcon);
3519
3520error:
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003521 kfree(ref_path);
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02003522 kfree(full_path);
Paulo Alcantara7efd0812020-07-21 09:36:44 -03003523 kfree(mntdata);
3524 kfree(cifs_sb->origin_fullpath);
3525 put_root_ses(root_ses);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003526 mount_put_conns(cifs_sb, xid, server, ses, tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 return rc;
3528}
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003529#else
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003530int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx)
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003531{
3532 int rc = 0;
3533 unsigned int xid;
3534 struct cifs_ses *ses;
3535 struct cifs_tcon *tcon;
3536 struct TCP_Server_Info *server;
3537
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003538 rc = mount_get_conns(ctx, cifs_sb, &xid, &server, &ses, &tcon);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003539 if (rc)
3540 goto error;
3541
3542 if (tcon) {
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003543 rc = is_path_remote(cifs_sb, ctx, xid, server, tcon);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02003544 if (rc == -EREMOTE)
3545 rc = -EOPNOTSUPP;
3546 if (rc)
3547 goto error;
3548 }
3549
3550 free_xid(xid);
3551
3552 return mount_setup_tlink(cifs_sb, ses, tcon);
3553
3554error:
3555 mount_put_conns(cifs_sb, xid, server, ses, tcon);
3556 return rc;
3557}
3558#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
Jeff Layton8d1bca32011-06-11 21:17:10 -04003560/*
Aurelien Aptelb327a712018-01-24 13:46:10 +01003561 * Issue a TREE_CONNECT request.
Jeff Layton8d1bca32011-06-11 21:17:10 -04003562 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563int
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003564CIFSTCon(const unsigned int xid, struct cifs_ses *ses,
Steve French96daf2b2011-05-27 04:34:02 +00003565 const char *tree, struct cifs_tcon *tcon,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 const struct nls_table *nls_codepage)
3567{
3568 struct smb_hdr *smb_buffer;
3569 struct smb_hdr *smb_buffer_response;
3570 TCONX_REQ *pSMB;
3571 TCONX_RSP *pSMBr;
3572 unsigned char *bcc_ptr;
3573 int rc = 0;
Jeff Layton690c5222011-01-20 13:36:51 -05003574 int length;
3575 __u16 bytes_left, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576
3577 if (ses == NULL)
3578 return -EIO;
3579
3580 smb_buffer = cifs_buf_get();
Steve Frenchca43e3b2009-09-01 17:20:50 +00003581 if (smb_buffer == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 return -ENOMEM;
Steve Frenchca43e3b2009-09-01 17:20:50 +00003583
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 smb_buffer_response = smb_buffer;
3585
3586 header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX,
3587 NULL /*no tid */ , 4 /*wct */ );
Steve French1982c342005-08-17 12:38:22 -07003588
Pavel Shilovsky88257362012-05-23 14:01:59 +04003589 smb_buffer->Mid = get_next_mid(ses->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 smb_buffer->Uid = ses->Suid;
3591 pSMB = (TCONX_REQ *) smb_buffer;
3592 pSMBr = (TCONX_RSP *) smb_buffer_response;
3593
3594 pSMB->AndXCommand = 0xFF;
3595 pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 bcc_ptr = &pSMB->Password[0];
Aurelien Aptelb327a712018-01-24 13:46:10 +01003597 if (tcon->pipe || (ses->server->sec_mode & SECMODE_USER)) {
Steve Frencheeac8042006-01-13 21:34:58 -08003598 pSMB->PasswordLength = cpu_to_le16(1); /* minimum */
Steve French7c7b25b2006-06-01 19:20:10 +00003599 *bcc_ptr = 0; /* password is null byte */
Steve Frencheeac8042006-01-13 21:34:58 -08003600 bcc_ptr++; /* skip password */
Steve French7c7b25b2006-06-01 19:20:10 +00003601 /* already aligned so no need to do it below */
Steve Frencheeac8042006-01-13 21:34:58 -08003602 } else {
Shirish Pargaonkar540b2e32011-01-18 22:33:54 -06003603 pSMB->PasswordLength = cpu_to_le16(CIFS_AUTH_RESP_SIZE);
Steve Frencheeac8042006-01-13 21:34:58 -08003604 /* BB FIXME add code to fail this if NTLMv2 or Kerberos
3605 specified as required (when that support is added to
3606 the vfs in the future) as only NTLM or the much
Steve French7c7b25b2006-06-01 19:20:10 +00003607 weaker LANMAN (which we do not send by default) is accepted
Steve Frencheeac8042006-01-13 21:34:58 -08003608 by Samba (not sure whether other servers allow
3609 NTLMv2 password here) */
Steve French7c7b25b2006-06-01 19:20:10 +00003610#ifdef CONFIG_CIFS_WEAK_PW_HASH
Jeff Layton04912d62010-04-24 07:57:45 -04003611 if ((global_secflags & CIFSSEC_MAY_LANMAN) &&
Jeff Layton3f618222013-06-12 19:52:14 -05003612 (ses->sectype == LANMAN))
Shirish Pargaonkard3ba50b2010-10-27 15:20:36 -05003613 calc_lanman_hash(tcon->password, ses->server->cryptkey,
Steve French96daf2b2011-05-27 04:34:02 +00003614 ses->server->sec_mode &
Jeff Layton4e53a3f2008-12-05 20:41:21 -05003615 SECMODE_PW_ENCRYPT ? true : false,
3616 bcc_ptr);
Steve French7c7b25b2006-06-01 19:20:10 +00003617 else
3618#endif /* CIFS_WEAK_PW_HASH */
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -06003619 rc = SMBNTencrypt(tcon->password, ses->server->cryptkey,
Shirish Pargaonkar9ef59922011-10-20 13:21:59 -05003620 bcc_ptr, nls_codepage);
Steve Frenchf3a31a22015-03-26 19:23:20 -05003621 if (rc) {
3622 cifs_dbg(FYI, "%s Can't generate NTLM rsp. Error: %d\n",
3623 __func__, rc);
3624 cifs_buf_release(smb_buffer);
3625 return rc;
3626 }
Steve Frencheeac8042006-01-13 21:34:58 -08003627
Shirish Pargaonkar540b2e32011-01-18 22:33:54 -06003628 bcc_ptr += CIFS_AUTH_RESP_SIZE;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003629 if (ses->capabilities & CAP_UNICODE) {
Steve French7c7b25b2006-06-01 19:20:10 +00003630 /* must align unicode strings */
3631 *bcc_ptr = 0; /* null byte password */
3632 bcc_ptr++;
3633 }
Steve Frencheeac8042006-01-13 21:34:58 -08003634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635
Jeff Layton38d77c52013-05-26 07:01:00 -04003636 if (ses->server->sign)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
3638
3639 if (ses->capabilities & CAP_STATUS32) {
3640 smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS;
3641 }
3642 if (ses->capabilities & CAP_DFS) {
3643 smb_buffer->Flags2 |= SMBFLG2_DFS;
3644 }
3645 if (ses->capabilities & CAP_UNICODE) {
3646 smb_buffer->Flags2 |= SMBFLG2_UNICODE;
3647 length =
Steve Frenchacbbb762012-01-18 22:32:33 -06003648 cifs_strtoUTF16((__le16 *) bcc_ptr, tree,
Steve French50c2f752007-07-13 00:33:32 +00003649 6 /* max utf8 char length in bytes */ *
Steve Frencha878fb22006-05-30 18:04:19 +00003650 (/* server len*/ + 256 /* share len */), nls_codepage);
3651 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 bcc_ptr += 2; /* skip trailing null */
3653 } else { /* ASCII */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 strcpy(bcc_ptr, tree);
3655 bcc_ptr += strlen(tree) + 1;
3656 }
3657 strcpy(bcc_ptr, "?????");
3658 bcc_ptr += strlen("?????");
3659 bcc_ptr += 1;
3660 count = bcc_ptr - &pSMB->Password[0];
Qinglang Miao1a0e7f72020-07-25 16:56:01 +08003661 be32_add_cpu(&pSMB->hdr.smb_buf_length, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 pSMB->ByteCount = cpu_to_le16(count);
3663
Steve French133672e2007-11-13 22:41:37 +00003664 rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length,
Jeff Layton77499812011-01-11 07:24:23 -05003665 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 /* above now done in SendReceive */
Aurelien Aptelb327a712018-01-24 13:46:10 +01003668 if (rc == 0) {
Steve French0e0d2cf2009-05-01 05:27:32 +00003669 bool is_unicode;
3670
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 tcon->tidStatus = CifsGood;
Steve French3b795212008-11-13 19:45:32 +00003672 tcon->need_reconnect = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 tcon->tid = smb_buffer_response->Tid;
3674 bcc_ptr = pByteArea(smb_buffer_response);
Jeff Layton690c5222011-01-20 13:36:51 -05003675 bytes_left = get_bcc(smb_buffer_response);
Jeff Laytoncc20c032009-04-30 07:16:21 -04003676 length = strnlen(bcc_ptr, bytes_left - 2);
Steve French0e0d2cf2009-05-01 05:27:32 +00003677 if (smb_buffer->Flags2 & SMBFLG2_UNICODE)
3678 is_unicode = true;
3679 else
3680 is_unicode = false;
3681
Jeff Laytoncc20c032009-04-30 07:16:21 -04003682
Steve French50c2f752007-07-13 00:33:32 +00003683 /* skip service field (NB: this field is always ASCII) */
Steve French7f8ed422007-09-28 22:28:55 +00003684 if (length == 3) {
3685 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') &&
3686 (bcc_ptr[2] == 'C')) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003687 cifs_dbg(FYI, "IPC connection\n");
Aurelien Aptelb327a712018-01-24 13:46:10 +01003688 tcon->ipc = true;
3689 tcon->pipe = true;
Steve French7f8ed422007-09-28 22:28:55 +00003690 }
3691 } else if (length == 2) {
3692 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) {
3693 /* the most common case */
Joe Perchesf96637b2013-05-04 22:12:25 -05003694 cifs_dbg(FYI, "disk share connection\n");
Steve French7f8ed422007-09-28 22:28:55 +00003695 }
3696 }
Steve French50c2f752007-07-13 00:33:32 +00003697 bcc_ptr += length + 1;
Jeff Laytoncc20c032009-04-30 07:16:21 -04003698 bytes_left -= (length + 1);
Zhao Hongjiang46b51d02013-06-24 01:57:47 -05003699 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
Jeff Laytoncc20c032009-04-30 07:16:21 -04003700
3701 /* mostly informational -- no need to fail on error here */
Jeff Layton90a98b22009-07-20 13:40:52 -04003702 kfree(tcon->nativeFileSystem);
Steve Frenchacbbb762012-01-18 22:32:33 -06003703 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr,
Steve French0e0d2cf2009-05-01 05:27:32 +00003704 bytes_left, is_unicode,
Jeff Laytoncc20c032009-04-30 07:16:21 -04003705 nls_codepage);
3706
Joe Perchesf96637b2013-05-04 22:12:25 -05003707 cifs_dbg(FYI, "nativeFileSystem=%s\n", tcon->nativeFileSystem);
Jeff Laytoncc20c032009-04-30 07:16:21 -04003708
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003709 if ((smb_buffer_response->WordCount == 3) ||
Steve French1a4e15a2006-10-12 21:33:51 +00003710 (smb_buffer_response->WordCount == 7))
3711 /* field is in same location */
Steve French39798772006-05-31 22:40:51 +00003712 tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport);
3713 else
3714 tcon->Flags = 0;
Joe Perchesf96637b2013-05-04 22:12:25 -05003715 cifs_dbg(FYI, "Tcon flags: 0x%x\n", tcon->Flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716 }
3717
Mariusz Kozlowskia8a11d32007-10-03 16:41:24 +00003718 cifs_buf_release(smb_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 return rc;
3720}
3721
Al Viro2e32cf52013-10-03 12:53:37 -04003722static void delayed_free(struct rcu_head *p)
3723{
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +10003724 struct cifs_sb_info *cifs_sb = container_of(p, struct cifs_sb_info, rcu);
3725
3726 unload_nls(cifs_sb->local_nls);
Ronnie Sahlbergc741cba2020-12-14 16:40:16 +10003727 smb3_cleanup_fs_context(cifs_sb->ctx);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +10003728 kfree(cifs_sb);
Al Viro2e32cf52013-10-03 12:53:37 -04003729}
3730
Al Viro2a9b9952011-06-17 09:27:16 -04003731void
3732cifs_umount(struct cifs_sb_info *cifs_sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733{
Jeff Laytonb647c352010-10-28 11:16:44 -04003734 struct rb_root *root = &cifs_sb->tlink_tree;
3735 struct rb_node *node;
3736 struct tcon_link *tlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
Jeff Layton2de970f2010-10-06 19:51:12 -04003738 cancel_delayed_work_sync(&cifs_sb->prune_tlinks);
3739
Jeff Laytonb647c352010-10-28 11:16:44 -04003740 spin_lock(&cifs_sb->tlink_tree_lock);
3741 while ((node = rb_first(root))) {
3742 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
3743 cifs_get_tlink(tlink);
3744 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
3745 rb_erase(node, root);
Steve French50c2f752007-07-13 00:33:32 +00003746
Jeff Laytonb647c352010-10-28 11:16:44 -04003747 spin_unlock(&cifs_sb->tlink_tree_lock);
3748 cifs_put_tlink(tlink);
3749 spin_lock(&cifs_sb->tlink_tree_lock);
3750 }
3751 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04003752
Aurelien Aptela6b50582016-05-25 19:59:09 +02003753 kfree(cifs_sb->prepath);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02003754#ifdef CONFIG_CIFS_DFS_UPCALL
Paulo Alcantarae511d312018-11-14 17:16:44 -02003755 dfs_cache_del_vol(cifs_sb->origin_fullpath);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02003756 kfree(cifs_sb->origin_fullpath);
3757#endif
Al Viro2e32cf52013-10-03 12:53:37 -04003758 call_rcu(&cifs_sb->rcu, delayed_free);
Steve French50c2f752007-07-13 00:33:32 +00003759}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760
Pavel Shilovsky286170a2012-05-25 10:43:58 +04003761int
3762cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763{
3764 int rc = 0;
Aurelien Aptelf6a6bf72019-09-20 06:22:14 +02003765 struct TCP_Server_Info *server = cifs_ses_server(ses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766
Pavel Shilovsky286170a2012-05-25 10:43:58 +04003767 if (!server->ops->need_neg || !server->ops->negotiate)
3768 return -ENOSYS;
3769
Jeff Layton198b5682010-04-24 07:57:48 -04003770 /* only send once per connect */
Pavel Shilovsky286170a2012-05-25 10:43:58 +04003771 if (!server->ops->need_neg(server))
Jeff Layton198b5682010-04-24 07:57:48 -04003772 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
Pavel Shilovsky286170a2012-05-25 10:43:58 +04003774 rc = server->ops->negotiate(xid, ses);
Jeff Layton198b5682010-04-24 07:57:48 -04003775 if (rc == 0) {
3776 spin_lock(&GlobalMid_Lock);
Jeff Layton7fdbaa12011-06-10 16:14:57 -04003777 if (server->tcpStatus == CifsNeedNegotiate)
Jeff Layton198b5682010-04-24 07:57:48 -04003778 server->tcpStatus = CifsGood;
3779 else
3780 rc = -EHOSTDOWN;
3781 spin_unlock(&GlobalMid_Lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 }
Steve French26b994f2008-08-06 05:11:33 +00003783
Jeff Layton198b5682010-04-24 07:57:48 -04003784 return rc;
3785}
Steve French26b994f2008-08-06 05:11:33 +00003786
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04003787int
3788cifs_setup_session(const unsigned int xid, struct cifs_ses *ses,
3789 struct nls_table *nls_info)
Jeff Layton198b5682010-04-24 07:57:48 -04003790{
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04003791 int rc = -ENOSYS;
Aurelien Aptelf6a6bf72019-09-20 06:22:14 +02003792 struct TCP_Server_Info *server = cifs_ses_server(ses);
Jeff Layton198b5682010-04-24 07:57:48 -04003793
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02003794 if (!ses->binding) {
3795 ses->capabilities = server->capabilities;
YANG LIed6b1922021-01-11 17:15:28 +08003796 if (!linuxExtEnabled)
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02003797 ses->capabilities &= (~server->vals->cap_unix);
3798
3799 if (ses->auth_key.response) {
3800 cifs_dbg(FYI, "Free previous auth_key.response = %p\n",
3801 ses->auth_key.response);
3802 kfree(ses->auth_key.response);
3803 ses->auth_key.response = NULL;
3804 ses->auth_key.len = 0;
3805 }
3806 }
Steve French20418ac2009-04-30 16:13:32 +00003807
Joe Perchesf96637b2013-05-04 22:12:25 -05003808 cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n",
Steve French96daf2b2011-05-27 04:34:02 +00003809 server->sec_mode, server->capabilities, server->timeAdj);
Jeff Laytoncb7691b2008-08-18 15:41:05 -04003810
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04003811 if (server->ops->sess_setup)
3812 rc = server->ops->sess_setup(xid, ses, nls_info);
3813
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -05003814 if (rc)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10003815 cifs_server_dbg(VFS, "Send error in SessSetup = %d\n", rc);
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05003816
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 return rc;
3818}
3819
Jeff Layton8a8798a2012-01-17 16:09:15 -05003820static int
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003821cifs_set_vol_auth(struct smb3_fs_context *ctx, struct cifs_ses *ses)
Jeff Layton8a8798a2012-01-17 16:09:15 -05003822{
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003823 ctx->sectype = ses->sectype;
Jeff Layton3f618222013-06-12 19:52:14 -05003824
3825 /* krb5 is special, since we don't need username or pw */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003826 if (ctx->sectype == Kerberos)
Jeff Layton8a8798a2012-01-17 16:09:15 -05003827 return 0;
Jeff Layton8a8798a2012-01-17 16:09:15 -05003828
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003829 return cifs_set_cifscreds(ctx, ses);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003830}
3831
Steve French96daf2b2011-05-27 04:34:02 +00003832static struct cifs_tcon *
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08003833cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid)
Jeff Layton9d002df2010-10-06 19:51:11 -04003834{
Jeff Layton8a8798a2012-01-17 16:09:15 -05003835 int rc;
Steve French96daf2b2011-05-27 04:34:02 +00003836 struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb);
3837 struct cifs_ses *ses;
3838 struct cifs_tcon *tcon = NULL;
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003839 struct smb3_fs_context *ctx;
Jeff Layton9d002df2010-10-06 19:51:11 -04003840
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003841 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
3842 if (ctx == NULL)
Dan Carpenter803ab972012-01-24 11:39:22 +03003843 return ERR_PTR(-ENOMEM);
Jeff Layton9d002df2010-10-06 19:51:11 -04003844
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003845 ctx->local_nls = cifs_sb->local_nls;
3846 ctx->linux_uid = fsuid;
3847 ctx->cred_uid = fsuid;
3848 ctx->UNC = master_tcon->treeName;
3849 ctx->retry = master_tcon->retry;
3850 ctx->nocase = master_tcon->nocase;
3851 ctx->nohandlecache = master_tcon->nohandlecache;
3852 ctx->local_lease = master_tcon->local_lease;
3853 ctx->no_lease = master_tcon->no_lease;
3854 ctx->resilient = master_tcon->use_resilient;
3855 ctx->persistent = master_tcon->use_persistent;
3856 ctx->handle_timeout = master_tcon->handle_timeout;
3857 ctx->no_linux_ext = !master_tcon->unix_ext;
3858 ctx->linux_ext = master_tcon->posix_extensions;
3859 ctx->sectype = master_tcon->ses->sectype;
3860 ctx->sign = master_tcon->ses->sign;
3861 ctx->seal = master_tcon->seal;
Samuel Cabrero0ac4e292020-12-11 22:59:29 -06003862 ctx->witness = master_tcon->use_witness;
Jeff Layton9d002df2010-10-06 19:51:11 -04003863
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003864 rc = cifs_set_vol_auth(ctx, master_tcon->ses);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003865 if (rc) {
3866 tcon = ERR_PTR(rc);
3867 goto out;
3868 }
Jeff Layton9d002df2010-10-06 19:51:11 -04003869
3870 /* get a reference for the same TCP session */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303871 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04003872 ++master_tcon->ses->server->srv_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303873 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04003874
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003875 ses = cifs_get_smb_ses(master_tcon->ses->server, ctx);
Jeff Layton9d002df2010-10-06 19:51:11 -04003876 if (IS_ERR(ses)) {
Steve French96daf2b2011-05-27 04:34:02 +00003877 tcon = (struct cifs_tcon *)ses;
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07003878 cifs_put_tcp_session(master_tcon->ses->server, 0);
Jeff Layton9d002df2010-10-06 19:51:11 -04003879 goto out;
3880 }
3881
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003882 tcon = cifs_get_tcon(ses, ctx);
Jeff Layton9d002df2010-10-06 19:51:11 -04003883 if (IS_ERR(tcon)) {
3884 cifs_put_smb_ses(ses);
3885 goto out;
3886 }
3887
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04003888 if (cap_unix(ses))
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003889 reset_cifs_unix_caps(0, tcon, NULL, ctx);
Steve Frenchb3266142018-05-20 23:41:10 -05003890
Jeff Layton9d002df2010-10-06 19:51:11 -04003891out:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -06003892 kfree(ctx->username);
3893 kfree_sensitive(ctx->password);
3894 kfree(ctx);
Jeff Layton9d002df2010-10-06 19:51:11 -04003895
3896 return tcon;
3897}
3898
Steve French96daf2b2011-05-27 04:34:02 +00003899struct cifs_tcon *
Jeff Layton9d002df2010-10-06 19:51:11 -04003900cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb)
3901{
3902 return tlink_tcon(cifs_sb_master_tlink(cifs_sb));
3903}
3904
Jeff Laytonb647c352010-10-28 11:16:44 -04003905/* find and return a tlink with given uid */
3906static struct tcon_link *
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08003907tlink_rb_search(struct rb_root *root, kuid_t uid)
Jeff Laytonb647c352010-10-28 11:16:44 -04003908{
3909 struct rb_node *node = root->rb_node;
3910 struct tcon_link *tlink;
3911
3912 while (node) {
3913 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
3914
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08003915 if (uid_gt(tlink->tl_uid, uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04003916 node = node->rb_left;
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08003917 else if (uid_lt(tlink->tl_uid, uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04003918 node = node->rb_right;
3919 else
3920 return tlink;
3921 }
3922 return NULL;
3923}
3924
3925/* insert a tcon_link into the tree */
3926static void
3927tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink)
3928{
3929 struct rb_node **new = &(root->rb_node), *parent = NULL;
3930 struct tcon_link *tlink;
3931
3932 while (*new) {
3933 tlink = rb_entry(*new, struct tcon_link, tl_rbnode);
3934 parent = *new;
3935
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08003936 if (uid_gt(tlink->tl_uid, new_tlink->tl_uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04003937 new = &((*new)->rb_left);
3938 else
3939 new = &((*new)->rb_right);
3940 }
3941
3942 rb_link_node(&new_tlink->tl_rbnode, parent, new);
3943 rb_insert_color(&new_tlink->tl_rbnode, root);
3944}
3945
Jeff Layton9d002df2010-10-06 19:51:11 -04003946/*
3947 * Find or construct an appropriate tcon given a cifs_sb and the fsuid of the
3948 * current task.
3949 *
3950 * If the superblock doesn't refer to a multiuser mount, then just return
3951 * the master tcon for the mount.
3952 *
Suresh Jayaraman6ef933a2010-11-03 10:53:49 +05303953 * First, search the rbtree for an existing tcon for this fsuid. If one
Jeff Layton9d002df2010-10-06 19:51:11 -04003954 * exists, then check to see if it's pending construction. If it is then wait
3955 * for construction to complete. Once it's no longer pending, check to see if
3956 * it failed and either return an error or retry construction, depending on
3957 * the timeout.
3958 *
3959 * If one doesn't exist then insert a new tcon_link struct into the tree and
3960 * try to construct a new one.
3961 */
3962struct tcon_link *
3963cifs_sb_tlink(struct cifs_sb_info *cifs_sb)
3964{
3965 int ret;
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08003966 kuid_t fsuid = current_fsuid();
Jeff Layton9d002df2010-10-06 19:51:11 -04003967 struct tcon_link *tlink, *newtlink;
3968
3969 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
3970 return cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
3971
3972 spin_lock(&cifs_sb->tlink_tree_lock);
Jeff Laytonb647c352010-10-28 11:16:44 -04003973 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
Jeff Layton9d002df2010-10-06 19:51:11 -04003974 if (tlink)
3975 cifs_get_tlink(tlink);
3976 spin_unlock(&cifs_sb->tlink_tree_lock);
3977
3978 if (tlink == NULL) {
3979 newtlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
3980 if (newtlink == NULL)
3981 return ERR_PTR(-ENOMEM);
Jeff Laytonb647c352010-10-28 11:16:44 -04003982 newtlink->tl_uid = fsuid;
Jeff Layton9d002df2010-10-06 19:51:11 -04003983 newtlink->tl_tcon = ERR_PTR(-EACCES);
3984 set_bit(TCON_LINK_PENDING, &newtlink->tl_flags);
3985 set_bit(TCON_LINK_IN_TREE, &newtlink->tl_flags);
3986 cifs_get_tlink(newtlink);
3987
Jeff Layton9d002df2010-10-06 19:51:11 -04003988 spin_lock(&cifs_sb->tlink_tree_lock);
3989 /* was one inserted after previous search? */
Jeff Laytonb647c352010-10-28 11:16:44 -04003990 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
Jeff Layton9d002df2010-10-06 19:51:11 -04003991 if (tlink) {
3992 cifs_get_tlink(tlink);
3993 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04003994 kfree(newtlink);
3995 goto wait_for_construction;
3996 }
Jeff Layton9d002df2010-10-06 19:51:11 -04003997 tlink = newtlink;
Jeff Laytonb647c352010-10-28 11:16:44 -04003998 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
3999 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004000 } else {
4001wait_for_construction:
4002 ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING,
Jeff Layton9d002df2010-10-06 19:51:11 -04004003 TASK_INTERRUPTIBLE);
4004 if (ret) {
4005 cifs_put_tlink(tlink);
NeilBrown74316202014-07-07 15:16:04 +10004006 return ERR_PTR(-ERESTARTSYS);
Jeff Layton9d002df2010-10-06 19:51:11 -04004007 }
4008
4009 /* if it's good, return it */
4010 if (!IS_ERR(tlink->tl_tcon))
4011 return tlink;
4012
4013 /* return error if we tried this already recently */
4014 if (time_before(jiffies, tlink->tl_time + TLINK_ERROR_EXPIRE)) {
4015 cifs_put_tlink(tlink);
4016 return ERR_PTR(-EACCES);
4017 }
4018
4019 if (test_and_set_bit(TCON_LINK_PENDING, &tlink->tl_flags))
4020 goto wait_for_construction;
4021 }
4022
4023 tlink->tl_tcon = cifs_construct_tcon(cifs_sb, fsuid);
4024 clear_bit(TCON_LINK_PENDING, &tlink->tl_flags);
4025 wake_up_bit(&tlink->tl_flags, TCON_LINK_PENDING);
4026
4027 if (IS_ERR(tlink->tl_tcon)) {
4028 cifs_put_tlink(tlink);
4029 return ERR_PTR(-EACCES);
4030 }
4031
4032 return tlink;
4033}
Jeff Layton2de970f2010-10-06 19:51:12 -04004034
4035/*
4036 * periodic workqueue job that scans tcon_tree for a superblock and closes
4037 * out tcons.
4038 */
4039static void
4040cifs_prune_tlinks(struct work_struct *work)
4041{
4042 struct cifs_sb_info *cifs_sb = container_of(work, struct cifs_sb_info,
4043 prune_tlinks.work);
Jeff Laytonb647c352010-10-28 11:16:44 -04004044 struct rb_root *root = &cifs_sb->tlink_tree;
Colin Ian King37e12f52018-01-17 09:52:39 +00004045 struct rb_node *node;
Jeff Laytonb647c352010-10-28 11:16:44 -04004046 struct rb_node *tmp;
4047 struct tcon_link *tlink;
Jeff Layton2de970f2010-10-06 19:51:12 -04004048
Jeff Laytonb647c352010-10-28 11:16:44 -04004049 /*
4050 * Because we drop the spinlock in the loop in order to put the tlink
4051 * it's not guarded against removal of links from the tree. The only
4052 * places that remove entries from the tree are this function and
4053 * umounts. Because this function is non-reentrant and is canceled
4054 * before umount can proceed, this is safe.
4055 */
4056 spin_lock(&cifs_sb->tlink_tree_lock);
4057 node = rb_first(root);
4058 while (node != NULL) {
4059 tmp = node;
4060 node = rb_next(tmp);
4061 tlink = rb_entry(tmp, struct tcon_link, tl_rbnode);
4062
4063 if (test_bit(TCON_LINK_MASTER, &tlink->tl_flags) ||
4064 atomic_read(&tlink->tl_count) != 0 ||
4065 time_after(tlink->tl_time + TLINK_IDLE_EXPIRE, jiffies))
4066 continue;
4067
4068 cifs_get_tlink(tlink);
4069 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4070 rb_erase(tmp, root);
4071
Jeff Layton2de970f2010-10-06 19:51:12 -04004072 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Laytonb647c352010-10-28 11:16:44 -04004073 cifs_put_tlink(tlink);
4074 spin_lock(&cifs_sb->tlink_tree_lock);
4075 }
4076 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton2de970f2010-10-06 19:51:12 -04004077
Jeff Laytonda472fc2012-03-23 14:40:53 -04004078 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
Jeff Layton2de970f2010-10-06 19:51:12 -04004079 TLINK_IDLE_EXPIRE);
4080}
Stefan Metzmacher565674d2020-07-21 09:36:38 -03004081
4082#ifdef CONFIG_CIFS_DFS_UPCALL
4083int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc)
4084{
4085 int rc;
4086 struct TCP_Server_Info *server = tcon->ses->server;
4087 const struct smb_version_operations *ops = server->ops;
4088 struct dfs_cache_tgt_list tl;
4089 struct dfs_cache_tgt_iterator *it = NULL;
4090 char *tree;
4091 const char *tcp_host;
4092 size_t tcp_host_len;
4093 const char *dfs_host;
4094 size_t dfs_host_len;
Paulo Alcantara7548e1d2020-07-21 09:36:42 -03004095 char *share = NULL, *prefix = NULL;
Paulo Alcantara11375a52020-07-21 09:36:43 -03004096 struct dfs_info3_param ref = {0};
4097 bool isroot;
Stefan Metzmacher565674d2020-07-21 09:36:38 -03004098
4099 tree = kzalloc(MAX_TREE_SIZE, GFP_KERNEL);
4100 if (!tree)
4101 return -ENOMEM;
4102
4103 if (!tcon->dfs_path) {
4104 if (tcon->ipc) {
4105 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname);
4106 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc);
4107 } else {
4108 rc = ops->tree_connect(xid, tcon->ses, tcon->treeName, tcon, nlsc);
4109 }
4110 goto out;
4111 }
4112
Paulo Alcantara11375a52020-07-21 09:36:43 -03004113 rc = dfs_cache_noreq_find(tcon->dfs_path + 1, &ref, &tl);
Stefan Metzmacher565674d2020-07-21 09:36:38 -03004114 if (rc)
4115 goto out;
Paulo Alcantara11375a52020-07-21 09:36:43 -03004116 isroot = ref.server_type == DFS_TYPE_ROOT;
4117 free_dfs_info_param(&ref);
Stefan Metzmacher565674d2020-07-21 09:36:38 -03004118
4119 extract_unc_hostname(server->hostname, &tcp_host, &tcp_host_len);
4120
4121 for (it = dfs_cache_get_tgt_iterator(&tl); it; it = dfs_cache_get_next_tgt(&tl, it)) {
Stefan Metzmacher565674d2020-07-21 09:36:38 -03004122 bool target_match;
4123
Paulo Alcantara7548e1d2020-07-21 09:36:42 -03004124 kfree(share);
4125 kfree(prefix);
Colin Ian Kingc6a80e12020-07-31 18:13:42 +01004126 share = NULL;
4127 prefix = NULL;
Paulo Alcantara7548e1d2020-07-21 09:36:42 -03004128
4129 rc = dfs_cache_get_tgt_share(tcon->dfs_path + 1, it, &share, &prefix);
Stefan Metzmacher565674d2020-07-21 09:36:38 -03004130 if (rc) {
4131 cifs_dbg(VFS, "%s: failed to parse target share %d\n",
4132 __func__, rc);
4133 continue;
4134 }
4135
4136 extract_unc_hostname(share, &dfs_host, &dfs_host_len);
4137
4138 if (dfs_host_len != tcp_host_len
4139 || strncasecmp(dfs_host, tcp_host, dfs_host_len) != 0) {
4140 cifs_dbg(FYI, "%s: %.*s doesn't match %.*s\n", __func__, (int)dfs_host_len,
4141 dfs_host, (int)tcp_host_len, tcp_host);
4142
4143 rc = match_target_ip(server, dfs_host, dfs_host_len, &target_match);
4144 if (rc) {
4145 cifs_dbg(VFS, "%s: failed to match target ip: %d\n", __func__, rc);
4146 break;
4147 }
4148
4149 if (!target_match) {
4150 cifs_dbg(FYI, "%s: skipping target\n", __func__);
4151 continue;
4152 }
4153 }
4154
4155 if (tcon->ipc) {
Paulo Alcantara7548e1d2020-07-21 09:36:42 -03004156 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", share);
Stefan Metzmacher565674d2020-07-21 09:36:38 -03004157 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc);
4158 } else {
Paulo Alcantara7548e1d2020-07-21 09:36:42 -03004159 scnprintf(tree, MAX_TREE_SIZE, "\\%s", share);
Stefan Metzmacher565674d2020-07-21 09:36:38 -03004160 rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc);
Paulo Alcantara11375a52020-07-21 09:36:43 -03004161 /* Only handle prefix paths of DFS link targets */
4162 if (!rc && !isroot) {
Paulo Alcantara7548e1d2020-07-21 09:36:42 -03004163 rc = update_super_prepath(tcon, prefix);
Stefan Metzmacher565674d2020-07-21 09:36:38 -03004164 break;
4165 }
4166 }
4167 if (rc == -EREMOTE)
4168 break;
4169 }
4170
Paulo Alcantara7548e1d2020-07-21 09:36:42 -03004171 kfree(share);
4172 kfree(prefix);
4173
Stefan Metzmacher565674d2020-07-21 09:36:38 -03004174 if (!rc) {
4175 if (it)
4176 rc = dfs_cache_noreq_update_tgthint(tcon->dfs_path + 1, it);
4177 else
4178 rc = -ENOENT;
4179 }
4180 dfs_cache_free_tgts(&tl);
4181out:
4182 kfree(tree);
4183 return rc;
4184}
4185#else
4186int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc)
4187{
4188 const struct smb_version_operations *ops = tcon->ses->server->ops;
4189
4190 return ops->tree_connect(xid, tcon->ses, tcon->treeName, tcon, nlsc);
4191}
4192#endif