blob: 95b3ab0ca8c0859ab145f32a2ad37858b3294d7f [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065extern mempool_t *cifs_req_poolp;
Steve Frenchf92a7202018-05-24 04:11:07 -050066extern bool disable_legacy_dialects;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Jeff Layton2de970f2010-10-06 19:51:12 -040068/* FIXME: should these be tunable? */
Jeff Layton9d002df2010-10-06 19:51:11 -040069#define TLINK_ERROR_EXPIRE (1 * HZ)
Jeff Layton2de970f2010-10-06 19:51:12 -040070#define TLINK_IDLE_EXPIRE (600 * HZ)
Jeff Layton9d002df2010-10-06 19:51:11 -040071
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040072enum {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040073 /* Mount options that take no arguments */
74 Opt_user_xattr, Opt_nouser_xattr,
75 Opt_forceuid, Opt_noforceuid,
Jeff Layton72bd4812012-10-03 16:02:36 -040076 Opt_forcegid, Opt_noforcegid,
Steve French3e7a02d2019-09-11 21:46:20 -050077 Opt_noblocksend, Opt_noautotune, Opt_nolease,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040078 Opt_hard, Opt_soft, Opt_perm, Opt_noperm,
Steve French2baa2682014-09-27 02:19:01 -050079 Opt_mapposix, Opt_nomapposix,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040080 Opt_mapchars, Opt_nomapchars, Opt_sfu,
81 Opt_nosfu, Opt_nodfs, Opt_posixpaths,
Steve Frenchb3266142018-05-20 23:41:10 -050082 Opt_noposixpaths, Opt_nounix, Opt_unix,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040083 Opt_nocase,
84 Opt_brl, Opt_nobrl,
Steve French3d4ef9a2018-04-25 22:19:09 -050085 Opt_handlecache, Opt_nohandlecache,
Steve French95932652016-09-23 01:36:34 -050086 Opt_forcemandatorylock, Opt_setuidfromacl, Opt_setuids,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040087 Opt_nosetuids, Opt_dynperm, Opt_nodynperm,
88 Opt_nohard, Opt_nosoft,
89 Opt_nointr, Opt_intr,
90 Opt_nostrictsync, Opt_strictsync,
91 Opt_serverino, Opt_noserverino,
92 Opt_rwpidforward, Opt_cifsacl, Opt_nocifsacl,
93 Opt_acl, Opt_noacl, Opt_locallease,
Steve French4f5c10f2019-09-03 21:18:49 -050094 Opt_sign, Opt_ignore_signature, Opt_seal, Opt_noac,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040095 Opt_fsc, Opt_mfsymlinks,
Jeff Laytona0b3df52013-05-24 07:40:59 -040096 Opt_multiuser, Opt_sloppy, Opt_nosharesock,
Steve Frenchb2a30772015-09-29 21:49:28 -050097 Opt_persistent, Opt_nopersistent,
Steve French592fafe2015-11-03 10:08:53 -060098 Opt_resilient, Opt_noresilient,
Paulo Alcantara (SUSE)8eecd1c2019-07-16 19:04:50 -030099 Opt_domainauto, Opt_rdma, Opt_modesid, Opt_rootfs,
Aurelien Aptelbcc88802019-09-20 04:32:20 +0200100 Opt_multichannel, Opt_nomultichannel,
Steve French9fe5ff12019-06-24 20:39:04 -0500101 Opt_compress,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400102
103 /* Mount options which take numeric value */
104 Opt_backupuid, Opt_backupgid, Opt_uid,
105 Opt_cruid, Opt_gid, Opt_file_mode,
106 Opt_dirmode, Opt_port,
Steve French563317e2019-09-08 23:22:02 -0500107 Opt_min_enc_offload,
Steve Frenche8506d22019-02-28 21:32:15 -0600108 Opt_blocksize, Opt_rsize, Opt_wsize, Opt_actimeo,
Steve Frenchca567eb2019-03-29 16:31:07 -0500109 Opt_echo_interval, Opt_max_credits, Opt_handletimeout,
Aurelien Aptelbcc88802019-09-20 04:32:20 +0200110 Opt_snapshot, Opt_max_channels,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400111
112 /* Mount options which take string value */
113 Opt_user, Opt_pass, Opt_ip,
Jeff Layton73a999f2013-03-22 08:42:57 -0400114 Opt_domain, Opt_srcaddr, Opt_iocharset,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400115 Opt_netbiosname, Opt_servern,
Jeff Layton23db65f2012-05-15 12:20:51 -0400116 Opt_ver, Opt_vers, Opt_sec, Opt_cache,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400117
118 /* Mount options to be ignored */
119 Opt_ignore,
120
121 /* Options which could be blank */
122 Opt_blank_pass,
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100123 Opt_blank_user,
124 Opt_blank_ip,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400125
126 Opt_err
127};
128
129static const match_table_t cifs_mount_option_tokens = {
130
131 { Opt_user_xattr, "user_xattr" },
132 { Opt_nouser_xattr, "nouser_xattr" },
133 { Opt_forceuid, "forceuid" },
134 { Opt_noforceuid, "noforceuid" },
Jeff Layton72bd4812012-10-03 16:02:36 -0400135 { Opt_forcegid, "forcegid" },
136 { Opt_noforcegid, "noforcegid" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400137 { Opt_noblocksend, "noblocksend" },
138 { Opt_noautotune, "noautotune" },
Steve French3e7a02d2019-09-11 21:46:20 -0500139 { Opt_nolease, "nolease" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400140 { Opt_hard, "hard" },
141 { Opt_soft, "soft" },
142 { Opt_perm, "perm" },
143 { Opt_noperm, "noperm" },
Steve French2baa2682014-09-27 02:19:01 -0500144 { Opt_mapchars, "mapchars" }, /* SFU style */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400145 { Opt_nomapchars, "nomapchars" },
Steve French2baa2682014-09-27 02:19:01 -0500146 { Opt_mapposix, "mapposix" }, /* SFM style */
147 { Opt_nomapposix, "nomapposix" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400148 { Opt_sfu, "sfu" },
149 { Opt_nosfu, "nosfu" },
150 { Opt_nodfs, "nodfs" },
151 { Opt_posixpaths, "posixpaths" },
152 { Opt_noposixpaths, "noposixpaths" },
153 { Opt_nounix, "nounix" },
154 { Opt_nounix, "nolinux" },
Steve Frenchb3266142018-05-20 23:41:10 -0500155 { Opt_nounix, "noposix" },
156 { Opt_unix, "unix" },
157 { Opt_unix, "linux" },
158 { Opt_unix, "posix" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400159 { Opt_nocase, "nocase" },
160 { Opt_nocase, "ignorecase" },
161 { Opt_brl, "brl" },
162 { Opt_nobrl, "nobrl" },
Steve French3d4ef9a2018-04-25 22:19:09 -0500163 { Opt_handlecache, "handlecache" },
164 { Opt_nohandlecache, "nohandlecache" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400165 { Opt_nobrl, "nolock" },
166 { Opt_forcemandatorylock, "forcemandatorylock" },
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +0400167 { Opt_forcemandatorylock, "forcemand" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400168 { Opt_setuids, "setuids" },
169 { Opt_nosetuids, "nosetuids" },
Steve French95932652016-09-23 01:36:34 -0500170 { Opt_setuidfromacl, "idsfromsid" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400171 { Opt_dynperm, "dynperm" },
172 { Opt_nodynperm, "nodynperm" },
173 { Opt_nohard, "nohard" },
174 { Opt_nosoft, "nosoft" },
175 { Opt_nointr, "nointr" },
176 { Opt_intr, "intr" },
177 { Opt_nostrictsync, "nostrictsync" },
178 { Opt_strictsync, "strictsync" },
179 { Opt_serverino, "serverino" },
180 { Opt_noserverino, "noserverino" },
181 { Opt_rwpidforward, "rwpidforward" },
Steve French412094a2019-06-24 02:01:42 -0500182 { Opt_modesid, "modefromsid" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400183 { Opt_cifsacl, "cifsacl" },
184 { Opt_nocifsacl, "nocifsacl" },
185 { Opt_acl, "acl" },
186 { Opt_noacl, "noacl" },
187 { Opt_locallease, "locallease" },
188 { Opt_sign, "sign" },
Steve French4f5c10f2019-09-03 21:18:49 -0500189 { Opt_ignore_signature, "signloosely" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400190 { Opt_seal, "seal" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400191 { Opt_noac, "noac" },
192 { Opt_fsc, "fsc" },
193 { Opt_mfsymlinks, "mfsymlinks" },
194 { Opt_multiuser, "multiuser" },
Jeff Laytond8162552012-03-23 14:40:56 -0400195 { Opt_sloppy, "sloppy" },
Jeff Laytona0b3df52013-05-24 07:40:59 -0400196 { Opt_nosharesock, "nosharesock" },
Steve Frenchb2a30772015-09-29 21:49:28 -0500197 { Opt_persistent, "persistenthandles"},
198 { Opt_nopersistent, "nopersistenthandles"},
Steve French592fafe2015-11-03 10:08:53 -0600199 { Opt_resilient, "resilienthandles"},
200 { Opt_noresilient, "noresilienthandles"},
Germano Percossi39566442016-12-15 12:31:18 +0530201 { Opt_domainauto, "domainauto"},
Long Li8339dd32017-11-07 01:54:55 -0700202 { Opt_rdma, "rdma"},
Aurelien Aptelbcc88802019-09-20 04:32:20 +0200203 { Opt_multichannel, "multichannel" },
204 { Opt_nomultichannel, "nomultichannel" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400205
206 { Opt_backupuid, "backupuid=%s" },
207 { Opt_backupgid, "backupgid=%s" },
208 { Opt_uid, "uid=%s" },
209 { Opt_cruid, "cruid=%s" },
210 { Opt_gid, "gid=%s" },
211 { Opt_file_mode, "file_mode=%s" },
212 { Opt_dirmode, "dirmode=%s" },
213 { Opt_dirmode, "dir_mode=%s" },
214 { Opt_port, "port=%s" },
Steve French563317e2019-09-08 23:22:02 -0500215 { Opt_min_enc_offload, "esize=%s" },
Steve Frenche8506d22019-02-28 21:32:15 -0600216 { Opt_blocksize, "bsize=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400217 { Opt_rsize, "rsize=%s" },
218 { Opt_wsize, "wsize=%s" },
219 { Opt_actimeo, "actimeo=%s" },
Steve Frenchca567eb2019-03-29 16:31:07 -0500220 { Opt_handletimeout, "handletimeout=%s" },
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600221 { Opt_echo_interval, "echo_interval=%s" },
Steve French141891f2016-09-23 00:44:16 -0500222 { Opt_max_credits, "max_credits=%s" },
Steve French8b217fe2016-11-11 22:36:20 -0600223 { Opt_snapshot, "snapshot=%s" },
Aurelien Aptelbcc88802019-09-20 04:32:20 +0200224 { Opt_max_channels, "max_channels=%s" },
Steve French9fe5ff12019-06-24 20:39:04 -0500225 { Opt_compress, "compress=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400226
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100227 { Opt_blank_user, "user=" },
228 { Opt_blank_user, "username=" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400229 { Opt_user, "user=%s" },
230 { Opt_user, "username=%s" },
231 { Opt_blank_pass, "pass=" },
Jesper Nilsson3c15b4c2012-11-29 17:31:16 +0100232 { Opt_blank_pass, "password=" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400233 { Opt_pass, "pass=%s" },
234 { Opt_pass, "password=%s" },
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100235 { Opt_blank_ip, "ip=" },
236 { Opt_blank_ip, "addr=" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400237 { Opt_ip, "ip=%s" },
238 { Opt_ip, "addr=%s" },
Jeff Layton73a999f2013-03-22 08:42:57 -0400239 { Opt_ignore, "unc=%s" },
240 { Opt_ignore, "target=%s" },
241 { Opt_ignore, "path=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400242 { Opt_domain, "dom=%s" },
243 { Opt_domain, "domain=%s" },
244 { Opt_domain, "workgroup=%s" },
245 { Opt_srcaddr, "srcaddr=%s" },
Jeff Layton73a999f2013-03-22 08:42:57 -0400246 { Opt_ignore, "prefixpath=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400247 { Opt_iocharset, "iocharset=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400248 { Opt_netbiosname, "netbiosname=%s" },
249 { Opt_servern, "servern=%s" },
250 { Opt_ver, "ver=%s" },
Jeff Layton23db65f2012-05-15 12:20:51 -0400251 { Opt_vers, "vers=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400252 { Opt_sec, "sec=%s" },
Jeff Layton15b6a472012-05-16 07:50:15 -0400253 { Opt_cache, "cache=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400254
255 { Opt_ignore, "cred" },
256 { Opt_ignore, "credentials" },
Jeff Laytona557b972012-05-02 14:02:40 -0400257 { Opt_ignore, "cred=%s" },
258 { Opt_ignore, "credentials=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400259 { Opt_ignore, "guest" },
260 { Opt_ignore, "rw" },
261 { Opt_ignore, "ro" },
262 { Opt_ignore, "suid" },
263 { Opt_ignore, "nosuid" },
264 { Opt_ignore, "exec" },
265 { Opt_ignore, "noexec" },
266 { Opt_ignore, "nodev" },
267 { Opt_ignore, "noauto" },
268 { Opt_ignore, "dev" },
269 { Opt_ignore, "mand" },
270 { Opt_ignore, "nomand" },
Steve French9b9c5be2018-09-22 12:07:06 -0500271 { Opt_ignore, "relatime" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400272 { Opt_ignore, "_netdev" },
Paulo Alcantara (SUSE)8eecd1c2019-07-16 19:04:50 -0300273 { Opt_rootfs, "rootfs" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400274
275 { Opt_err, NULL }
276};
277
278enum {
279 Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p,
280 Opt_sec_ntlmsspi, Opt_sec_ntlmssp,
Jeff Layton76596242012-07-23 20:34:17 -0400281 Opt_ntlm, Opt_sec_ntlmi, Opt_sec_ntlmv2,
282 Opt_sec_ntlmv2i, Opt_sec_lanman,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400283 Opt_sec_none,
284
285 Opt_sec_err
286};
287
288static const match_table_t cifs_secflavor_tokens = {
289 { Opt_sec_krb5, "krb5" },
290 { Opt_sec_krb5i, "krb5i" },
291 { Opt_sec_krb5p, "krb5p" },
292 { Opt_sec_ntlmsspi, "ntlmsspi" },
293 { Opt_sec_ntlmssp, "ntlmssp" },
294 { Opt_ntlm, "ntlm" },
295 { Opt_sec_ntlmi, "ntlmi" },
Jeff Layton76596242012-07-23 20:34:17 -0400296 { Opt_sec_ntlmv2, "nontlm" },
297 { Opt_sec_ntlmv2, "ntlmv2" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400298 { Opt_sec_ntlmv2i, "ntlmv2i" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400299 { Opt_sec_lanman, "lanman" },
300 { Opt_sec_none, "none" },
301
302 { Opt_sec_err, NULL }
303};
304
Jeff Layton15b6a472012-05-16 07:50:15 -0400305/* cache flavors */
306enum {
307 Opt_cache_loose,
308 Opt_cache_strict,
309 Opt_cache_none,
Steve French83bbfa72019-08-27 23:58:54 -0500310 Opt_cache_ro,
Steve French41e033f2019-08-30 02:12:41 -0500311 Opt_cache_rw,
Jeff Layton15b6a472012-05-16 07:50:15 -0400312 Opt_cache_err
313};
314
315static const match_table_t cifs_cacheflavor_tokens = {
316 { Opt_cache_loose, "loose" },
317 { Opt_cache_strict, "strict" },
318 { Opt_cache_none, "none" },
Steve French83bbfa72019-08-27 23:58:54 -0500319 { Opt_cache_ro, "ro" },
Steve French41e033f2019-08-30 02:12:41 -0500320 { Opt_cache_rw, "singleclient" },
Jeff Layton15b6a472012-05-16 07:50:15 -0400321 { Opt_cache_err, NULL }
322};
323
Jeff Layton23db65f2012-05-15 12:20:51 -0400324static const match_table_t cifs_smb_version_tokens = {
325 { Smb_1, SMB1_VERSION_STRING },
Steve Frenchdd446b12012-11-28 23:21:06 -0600326 { Smb_20, SMB20_VERSION_STRING},
Steve French1080ef72011-02-24 18:07:19 +0000327 { Smb_21, SMB21_VERSION_STRING },
Steve Frenche4aa25e2012-10-01 12:26:22 -0500328 { Smb_30, SMB30_VERSION_STRING },
Steve French20b6d8b2013-06-12 22:48:41 -0500329 { Smb_302, SMB302_VERSION_STRING },
Kenneth D'souza4a3b38a2018-11-17 10:33:30 +0530330 { Smb_302, ALT_SMB302_VERSION_STRING },
Steve French5f7fbf72014-12-17 22:52:58 -0600331 { Smb_311, SMB311_VERSION_STRING },
Steve Frenchaab18932015-06-23 23:37:11 -0500332 { Smb_311, ALT_SMB311_VERSION_STRING },
Steve French9764c022017-09-17 10:41:35 -0500333 { Smb_3any, SMB3ANY_VERSION_STRING },
334 { Smb_default, SMBDEFAULT_VERSION_STRING },
Steve French5f7fbf72014-12-17 22:52:58 -0600335 { Smb_version_err, NULL }
Jeff Layton23db65f2012-05-15 12:20:51 -0400336};
337
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300338static int ip_connect(struct TCP_Server_Info *server);
339static int generic_ip_connect(struct TCP_Server_Info *server);
Jeff Laytonb647c352010-10-28 11:16:44 -0400340static void tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink);
Jeff Layton2de970f2010-10-06 19:51:12 -0400341static void cifs_prune_tlinks(struct work_struct *work);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200342static char *extract_hostname(const char *unc);
343
Paulo Alcantara28eb24f2018-11-20 15:16:36 -0200344/*
345 * Resolve hostname and set ip addr in tcp ses. Useful for hostnames that may
346 * get their ip addresses changed at some point.
347 *
348 * This should be called with server->srv_mutex held.
349 */
350#ifdef CONFIG_CIFS_DFS_UPCALL
351static int reconn_set_ipaddr(struct TCP_Server_Info *server)
352{
353 int rc;
354 int len;
355 char *unc, *ipaddr = NULL;
356
357 if (!server->hostname)
358 return -EINVAL;
359
360 len = strlen(server->hostname) + 3;
361
362 unc = kmalloc(len, GFP_KERNEL);
363 if (!unc) {
364 cifs_dbg(FYI, "%s: failed to create UNC path\n", __func__);
365 return -ENOMEM;
366 }
Ronnie Sahlberg74ea5f92019-02-09 09:51:11 +1000367 scnprintf(unc, len, "\\\\%s", server->hostname);
Paulo Alcantara28eb24f2018-11-20 15:16:36 -0200368
369 rc = dns_resolve_server_name_to_ip(unc, &ipaddr);
370 kfree(unc);
371
372 if (rc < 0) {
373 cifs_dbg(FYI, "%s: failed to resolve server part of %s to IP: %d\n",
374 __func__, server->hostname, rc);
375 return rc;
376 }
377
378 rc = cifs_convert_address((struct sockaddr *)&server->dstaddr, ipaddr,
379 strlen(ipaddr));
380 kfree(ipaddr);
381
382 return !rc ? -1 : 0;
383}
384#else
385static inline int reconn_set_ipaddr(struct TCP_Server_Info *server)
386{
387 return 0;
388}
389#endif
390
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200391#ifdef CONFIG_CIFS_DFS_UPCALL
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200392/* These functions must be called with server->srv_mutex held */
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200393static void reconn_inval_dfs_target(struct TCP_Server_Info *server,
394 struct cifs_sb_info *cifs_sb,
395 struct dfs_cache_tgt_list *tgt_list,
396 struct dfs_cache_tgt_iterator **tgt_it)
397{
398 const char *name;
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200399
400 if (!cifs_sb || !cifs_sb->origin_fullpath || !tgt_list ||
401 !server->nr_targets)
402 return;
403
404 if (!*tgt_it) {
405 *tgt_it = dfs_cache_get_tgt_iterator(tgt_list);
406 } else {
407 *tgt_it = dfs_cache_get_next_tgt(tgt_list, *tgt_it);
408 if (!*tgt_it)
409 *tgt_it = dfs_cache_get_tgt_iterator(tgt_list);
410 }
411
412 cifs_dbg(FYI, "%s: UNC: %s\n", __func__, cifs_sb->origin_fullpath);
413
414 name = dfs_cache_get_tgt_name(*tgt_it);
415
416 kfree(server->hostname);
417
418 server->hostname = extract_hostname(name);
Dan Carpenter84288172019-01-05 15:25:29 +0300419 if (IS_ERR(server->hostname)) {
420 cifs_dbg(FYI,
421 "%s: failed to extract hostname from target: %ld\n",
422 __func__, PTR_ERR(server->hostname));
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200423 }
424}
425
426static inline int reconn_setup_dfs_targets(struct cifs_sb_info *cifs_sb,
427 struct dfs_cache_tgt_list *tl,
428 struct dfs_cache_tgt_iterator **it)
429{
430 if (!cifs_sb->origin_fullpath)
431 return -EOPNOTSUPP;
432 return dfs_cache_noreq_find(cifs_sb->origin_fullpath + 1, NULL, tl);
433}
434#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Jeff Laytond5c56052008-12-01 18:42:33 -0500436/*
437 * cifs tcp session reconnection
438 *
439 * mark tcp session as reconnecting so temporarily locked
440 * mark all smb sessions as reconnecting for tcp session
441 * reconnect tcp session
442 * wake up waiters on reconnection? - (not needed currently)
443 */
Pavel Shilovsky28ea5292012-05-23 16:18:00 +0400444int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445cifs_reconnect(struct TCP_Server_Info *server)
446{
447 int rc = 0;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500448 struct list_head *tmp, *tmp2;
Steve French96daf2b2011-05-27 04:34:02 +0000449 struct cifs_ses *ses;
450 struct cifs_tcon *tcon;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000451 struct mid_q_entry *mid_entry;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400452 struct list_head retry_list;
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200453#ifdef CONFIG_CIFS_DFS_UPCALL
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300454 struct super_block *sb = NULL;
Paulo Alcantara23324402018-11-20 14:37:18 -0200455 struct cifs_sb_info *cifs_sb = NULL;
456 struct dfs_cache_tgt_list tgt_list = {0};
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200457 struct dfs_cache_tgt_iterator *tgt_it = NULL;
458#endif
Steve French50c2f752007-07-13 00:33:32 +0000459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 spin_lock(&GlobalMid_Lock);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200461 server->nr_targets = 1;
462#ifdef CONFIG_CIFS_DFS_UPCALL
Ronnie Sahlberg61cabc72019-06-14 13:02:29 +1000463 spin_unlock(&GlobalMid_Lock);
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -0300464 sb = cifs_get_tcp_super(server);
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300465 if (IS_ERR(sb)) {
466 rc = PTR_ERR(sb);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200467 cifs_dbg(FYI, "%s: will not do DFS failover: rc = %d\n",
468 __func__, rc);
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300469 sb = NULL;
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200470 } else {
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300471 cifs_sb = CIFS_SB(sb);
472
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200473 rc = reconn_setup_dfs_targets(cifs_sb, &tgt_list, &tgt_it);
Steve French55a7f002019-01-01 17:19:45 -0600474 if (rc && (rc != -EOPNOTSUPP)) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000475 cifs_server_dbg(VFS, "%s: no target servers for DFS failover\n",
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200476 __func__);
477 } else {
478 server->nr_targets = dfs_cache_get_nr_tgts(&tgt_list);
479 }
480 }
481 cifs_dbg(FYI, "%s: will retry %d target(s)\n", __func__,
482 server->nr_targets);
Ronnie Sahlberg61cabc72019-06-14 13:02:29 +1000483 spin_lock(&GlobalMid_Lock);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200484#endif
Jeff Layton469ee612008-10-16 18:46:39 +0000485 if (server->tcpStatus == CifsExiting) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000486 /* the demux thread will exit normally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 next time through the loop */
488 spin_unlock(&GlobalMid_Lock);
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300489#ifdef CONFIG_CIFS_DFS_UPCALL
490 dfs_cache_free_tgts(&tgt_list);
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -0300491 cifs_put_tcp_super(sb);
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300492#endif
Stefan Metzmachere2e87512020-02-24 14:31:02 -0600493 wake_up(&server->response_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return rc;
495 } else
496 server->tcpStatus = CifsNeedReconnect;
497 spin_unlock(&GlobalMid_Lock);
498 server->maxBuf = 0;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400499 server->max_read = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Steve French6e4d3bb2018-09-22 11:25:04 -0500501 cifs_dbg(FYI, "Mark tcp session as need reconnect\n");
Steve Frenchbf1fdeb2018-07-30 19:23:09 -0500502 trace_smb3_reconnect(server->CurrentMid, server->hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 /* before reconnecting the tcp session, mark the smb session (uid)
505 and the tid bad so they are not used until reconnected */
Joe Perchesf96637b2013-05-04 22:12:25 -0500506 cifs_dbg(FYI, "%s: marking sessions and tcons for reconnect\n",
507 __func__);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530508 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -0500509 list_for_each(tmp, &server->smb_ses_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000510 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
Jeff Layton14fbf502008-11-14 13:53:46 -0500511 ses->need_reconnect = true;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500512 list_for_each(tmp2, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000513 tcon = list_entry(tmp2, struct cifs_tcon, tcon_list);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500514 tcon->need_reconnect = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
Aurelien Aptelb327a712018-01-24 13:46:10 +0100516 if (ses->tcon_ipc)
517 ses->tcon_ipc->need_reconnect = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530519 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 /* do not want to be sending data on a socket we are freeing */
Joe Perchesf96637b2013-05-04 22:12:25 -0500522 cifs_dbg(FYI, "%s: tearing down socket\n", __func__);
Jeff Layton72ca5452008-12-01 07:09:36 -0500523 mutex_lock(&server->srv_mutex);
Long Li1d2a4f52019-05-13 21:01:28 -0700524 if (server->ssocket) {
525 cifs_dbg(FYI, "State: 0x%x Flags: 0x%lx\n",
526 server->ssocket->state, server->ssocket->flags);
527 kernel_sock_shutdown(server->ssocket, SHUT_WR);
528 cifs_dbg(FYI, "Post shutdown state: 0x%x Flags: 0x%lx\n",
529 server->ssocket->state, server->ssocket->flags);
530 sock_release(server->ssocket);
531 server->ssocket = NULL;
532 }
533 server->sequence_number = 0;
534 server->session_estab = false;
535 kfree(server->session_key.response);
536 server->session_key.response = NULL;
537 server->session_key.len = 0;
538 server->lstrp = jiffies;
Long Li214bab42019-04-05 21:36:35 +0000539
540 /* mark submitted MIDs for retry and issue callback */
541 INIT_LIST_HEAD(&retry_list);
542 cifs_dbg(FYI, "%s: moving mids to private list\n", __func__);
543 spin_lock(&GlobalMid_Lock);
544 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
545 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700546 kref_get(&mid_entry->refcount);
Long Li214bab42019-04-05 21:36:35 +0000547 if (mid_entry->mid_state == MID_REQUEST_SUBMITTED)
548 mid_entry->mid_state = MID_RETRY_NEEDED;
549 list_move(&mid_entry->qhead, &retry_list);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700550 mid_entry->mid_flags |= MID_DELETED;
Long Li214bab42019-04-05 21:36:35 +0000551 }
552 spin_unlock(&GlobalMid_Lock);
Long Li1d2a4f52019-05-13 21:01:28 -0700553 mutex_unlock(&server->srv_mutex);
Long Li214bab42019-04-05 21:36:35 +0000554
555 cifs_dbg(FYI, "%s: issuing mid callbacks\n", __func__);
556 list_for_each_safe(tmp, tmp2, &retry_list) {
557 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
558 list_del_init(&mid_entry->qhead);
559 mid_entry->callback(mid_entry);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700560 cifs_mid_q_entry_release(mid_entry);
Long Li214bab42019-04-05 21:36:35 +0000561 }
562
Long Li1d2a4f52019-05-13 21:01:28 -0700563 if (cifs_rdma_enabled(server)) {
564 mutex_lock(&server->srv_mutex);
Long Li050b8c32019-04-04 11:35:42 -0500565 smbd_destroy(server);
Long Li1d2a4f52019-05-13 21:01:28 -0700566 mutex_unlock(&server->srv_mutex);
567 }
Jeff Layton3c1105d2011-05-22 07:09:13 -0400568
Jeff Layton7fdbaa12011-06-10 16:14:57 -0400569 do {
Steve French6c3d8902006-07-31 22:46:20 +0000570 try_to_freeze();
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300571
Jeff Layton73e216a2013-09-05 08:38:10 -0400572 mutex_lock(&server->srv_mutex);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200573 /*
574 * Set up next DFS target server (if any) for reconnect. If DFS
575 * feature is disabled, then we will retry last server we
576 * connected to before.
577 */
Long Li781a8052017-11-22 17:38:36 -0700578 if (cifs_rdma_enabled(server))
579 rc = smbd_reconnect(server);
580 else
581 rc = generic_ip_connect(server);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000582 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500583 cifs_dbg(FYI, "reconnect error %d\n", rc);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200584#ifdef CONFIG_CIFS_DFS_UPCALL
585 reconn_inval_dfs_target(server, cifs_sb, &tgt_list,
586 &tgt_it);
587#endif
Paulo Alcantara28eb24f2018-11-20 15:16:36 -0200588 rc = reconn_set_ipaddr(server);
589 if (rc) {
590 cifs_dbg(FYI, "%s: failed to resolve hostname: %d\n",
591 __func__, rc);
592 }
Federico Sauter4afe2602015-03-17 17:45:28 +0100593 mutex_unlock(&server->srv_mutex);
Steve French0cb766a2005-04-28 22:41:11 -0700594 msleep(3000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 } else {
596 atomic_inc(&tcpSesReconnectCount);
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800597 set_credits(server, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 spin_lock(&GlobalMid_Lock);
Jeff Layton469ee612008-10-16 18:46:39 +0000599 if (server->tcpStatus != CifsExiting)
Steve Frenchfd88ce92011-04-12 01:01:14 +0000600 server->tcpStatus = CifsNeedNegotiate;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000601 spin_unlock(&GlobalMid_Lock);
Federico Sauter4afe2602015-03-17 17:45:28 +0100602 mutex_unlock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
Jeff Layton7fdbaa12011-06-10 16:14:57 -0400604 } while (server->tcpStatus == CifsNeedReconnect);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500605
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200606#ifdef CONFIG_CIFS_DFS_UPCALL
607 if (tgt_it) {
608 rc = dfs_cache_noreq_update_tgthint(cifs_sb->origin_fullpath + 1,
609 tgt_it);
610 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000611 cifs_server_dbg(VFS, "%s: failed to update DFS target hint: rc = %d\n",
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200612 __func__, rc);
613 }
614 rc = dfs_cache_update_vol(cifs_sb->origin_fullpath, server);
615 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000616 cifs_server_dbg(VFS, "%s: failed to update vol info in DFS cache: rc = %d\n",
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200617 __func__, rc);
618 }
Paulo Alcantara23324402018-11-20 14:37:18 -0200619 dfs_cache_free_tgts(&tgt_list);
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300620
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200621 }
Paulo Alcantara (SUSE)8354d882019-11-22 12:30:51 -0300622
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -0300623 cifs_put_tcp_super(sb);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200624#endif
Sachin Prabhub8c60012016-10-20 19:52:24 -0400625 if (server->tcpStatus == CifsNeedNegotiate)
626 mod_delayed_work(cifsiod_wq, &server->echo, 0);
627
Stefan Metzmachere2e87512020-02-24 14:31:02 -0600628 wake_up(&server->response_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return rc;
630}
631
Jeff Laytonc74093b2011-01-11 07:24:23 -0500632static void
633cifs_echo_request(struct work_struct *work)
634{
635 int rc;
636 struct TCP_Server_Info *server = container_of(work,
637 struct TCP_Server_Info, echo.work);
Sachin Prabhub8c60012016-10-20 19:52:24 -0400638 unsigned long echo_interval;
Jeff Laytonc74093b2011-01-11 07:24:23 -0500639
Jeff Layton247ec9b2011-02-04 17:09:50 -0500640 /*
Sachin Prabhub8c60012016-10-20 19:52:24 -0400641 * If we need to renegotiate, set echo interval to zero to
642 * immediately call echo service where we can renegotiate.
643 */
644 if (server->tcpStatus == CifsNeedNegotiate)
645 echo_interval = 0;
646 else
647 echo_interval = server->echo_interval;
648
649 /*
650 * We cannot send an echo if it is disabled.
651 * Also, no need to ping if we got a response recently.
Jeff Layton247ec9b2011-02-04 17:09:50 -0500652 */
Steve French4fcd1812016-06-22 20:12:05 -0500653
654 if (server->tcpStatus == CifsNeedReconnect ||
Sachin Prabhub8c60012016-10-20 19:52:24 -0400655 server->tcpStatus == CifsExiting ||
656 server->tcpStatus == CifsNew ||
Pavel Shilovskyf6d76172012-05-25 14:47:16 +0400657 (server->ops->can_echo && !server->ops->can_echo(server)) ||
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600658 time_before(jiffies, server->lstrp + echo_interval - HZ))
Jeff Laytonc74093b2011-01-11 07:24:23 -0500659 goto requeue_echo;
660
Pavel Shilovskyf6d76172012-05-25 14:47:16 +0400661 rc = server->ops->echo ? server->ops->echo(server) : -ENOSYS;
Jeff Laytonc74093b2011-01-11 07:24:23 -0500662 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500663 cifs_dbg(FYI, "Unable to send echo request to server: %s\n",
664 server->hostname);
Jeff Laytonc74093b2011-01-11 07:24:23 -0500665
666requeue_echo:
Sachin Prabhub8c60012016-10-20 19:52:24 -0400667 queue_delayed_work(cifsiod_wq, &server->echo, server->echo_interval);
Jeff Laytonc74093b2011-01-11 07:24:23 -0500668}
669
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400670static bool
Jeff Layton2a37ef92011-10-19 15:29:23 -0400671allocate_buffers(struct TCP_Server_Info *server)
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400672{
Jeff Layton2a37ef92011-10-19 15:29:23 -0400673 if (!server->bigbuf) {
674 server->bigbuf = (char *)cifs_buf_get();
675 if (!server->bigbuf) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000676 cifs_server_dbg(VFS, "No memory for large SMB response\n");
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400677 msleep(3000);
678 /* retry will check if exiting */
679 return false;
680 }
Jeff Layton2a37ef92011-10-19 15:29:23 -0400681 } else if (server->large_buf) {
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400682 /* we are reusing a dirty large buf, clear its start */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400683 memset(server->bigbuf, 0, HEADER_SIZE(server));
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400684 }
685
Jeff Layton2a37ef92011-10-19 15:29:23 -0400686 if (!server->smallbuf) {
687 server->smallbuf = (char *)cifs_small_buf_get();
688 if (!server->smallbuf) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000689 cifs_server_dbg(VFS, "No memory for SMB response\n");
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400690 msleep(1000);
691 /* retry will check if exiting */
692 return false;
693 }
694 /* beginning of smb buffer is cleared in our buf_get */
695 } else {
696 /* if existing small buf clear beginning */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400697 memset(server->smallbuf, 0, HEADER_SIZE(server));
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400698 }
699
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400700 return true;
701}
702
Jeff Laytonba749e62011-10-11 06:41:32 -0400703static bool
704server_unresponsive(struct TCP_Server_Info *server)
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400705{
Pavel Shilovsky6dae51a2012-02-21 16:50:23 +0300706 /*
Ronnie Sahlbergf2caf902019-07-06 06:52:46 +1000707 * We need to wait 3 echo intervals to make sure we handle such
Pavel Shilovsky6dae51a2012-02-21 16:50:23 +0300708 * situations right:
709 * 1s client sends a normal SMB request
Ronnie Sahlbergbecc2ba2019-07-24 11:43:49 +1000710 * 2s client gets a response
Pavel Shilovsky6dae51a2012-02-21 16:50:23 +0300711 * 30s echo workqueue job pops, and decides we got a response recently
712 * and don't need to send another
713 * ...
714 * 65s kernel_recvmsg times out, and we see that we haven't gotten
715 * a response in >60s.
716 */
Samuel Cabrero76e75272017-07-11 12:44:39 +0200717 if ((server->tcpStatus == CifsGood ||
718 server->tcpStatus == CifsNeedNegotiate) &&
Ronnie Sahlbergf2caf902019-07-06 06:52:46 +1000719 time_after(jiffies, server->lstrp + 3 * server->echo_interval)) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000720 cifs_server_dbg(VFS, "has not responded in %lu seconds. Reconnecting...\n",
721 (3 * server->echo_interval) / HZ);
Jeff Laytonba749e62011-10-11 06:41:32 -0400722 cifs_reconnect(server);
Jeff Laytonba749e62011-10-11 06:41:32 -0400723 return true;
724 }
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400725
Jeff Laytonba749e62011-10-11 06:41:32 -0400726 return false;
727}
728
Pavel Shilovskyef68e832019-01-18 17:25:36 -0800729static inline bool
730zero_credits(struct TCP_Server_Info *server)
731{
732 int val;
733
734 spin_lock(&server->req_lock);
735 val = server->credits + server->echo_credits + server->oplock_credits;
736 if (server->in_flight == 0 && val == 0) {
737 spin_unlock(&server->req_lock);
738 return true;
739 }
740 spin_unlock(&server->req_lock);
741 return false;
742}
743
Al Viro71335662016-01-09 19:54:50 -0500744static int
745cifs_readv_from_socket(struct TCP_Server_Info *server, struct msghdr *smb_msg)
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400746{
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400747 int length = 0;
748 int total_read;
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400749
Al Viro71335662016-01-09 19:54:50 -0500750 smb_msg->msg_control = NULL;
751 smb_msg->msg_controllen = 0;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400752
Al Viro71335662016-01-09 19:54:50 -0500753 for (total_read = 0; msg_data_left(smb_msg); total_read += length) {
Jeff Layton95edcff2011-12-01 20:22:41 -0500754 try_to_freeze();
755
Pavel Shilovskyef68e832019-01-18 17:25:36 -0800756 /* reconnect if no credits and no requests in flight */
757 if (zero_credits(server)) {
758 cifs_reconnect(server);
759 return -ECONNABORTED;
760 }
761
Al Viro71335662016-01-09 19:54:50 -0500762 if (server_unresponsive(server))
763 return -ECONNABORTED;
Long Li2fef1372017-11-22 17:38:41 -0700764 if (cifs_rdma_enabled(server) && server->smbd_conn)
765 length = smbd_recv(server->smbd_conn, smb_msg);
766 else
767 length = sock_recvmsg(server->ssocket, smb_msg, 0);
Al Viro71335662016-01-09 19:54:50 -0500768
769 if (server->tcpStatus == CifsExiting)
770 return -ESHUTDOWN;
771
772 if (server->tcpStatus == CifsNeedReconnect) {
773 cifs_reconnect(server);
774 return -ECONNABORTED;
Jeff Laytonba749e62011-10-11 06:41:32 -0400775 }
776
Al Viro71335662016-01-09 19:54:50 -0500777 if (length == -ERESTARTSYS ||
778 length == -EAGAIN ||
779 length == -EINTR) {
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400780 /*
781 * Minimum sleep to prevent looping, allowing socket
782 * to clear and app threads to set tcpStatus
783 * CifsNeedReconnect if server hung.
784 */
785 usleep_range(1000, 2000);
786 length = 0;
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400787 continue;
Al Viro71335662016-01-09 19:54:50 -0500788 }
789
790 if (length <= 0) {
Al Viro09aab882015-11-13 03:00:17 -0500791 cifs_dbg(FYI, "Received no data or error: %d\n", length);
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400792 cifs_reconnect(server);
Al Viro71335662016-01-09 19:54:50 -0500793 return -ECONNABORTED;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400794 }
795 }
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400796 return total_read;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400797}
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400798
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400799int
800cifs_read_from_socket(struct TCP_Server_Info *server, char *buf,
801 unsigned int to_read)
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400802{
Al Viro71335662016-01-09 19:54:50 -0500803 struct msghdr smb_msg;
804 struct kvec iov = {.iov_base = buf, .iov_len = to_read};
David Howellsaa563d72018-10-20 00:57:56 +0100805 iov_iter_kvec(&smb_msg.msg_iter, READ, &iov, 1, to_read);
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400806
Al Viro71335662016-01-09 19:54:50 -0500807 return cifs_readv_from_socket(server, &smb_msg);
808}
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400809
Al Viro71335662016-01-09 19:54:50 -0500810int
811cifs_read_page_from_socket(struct TCP_Server_Info *server, struct page *page,
Long Li1dbe3462018-05-30 12:47:55 -0700812 unsigned int page_offset, unsigned int to_read)
Al Viro71335662016-01-09 19:54:50 -0500813{
814 struct msghdr smb_msg;
Long Li1dbe3462018-05-30 12:47:55 -0700815 struct bio_vec bv = {
816 .bv_page = page, .bv_len = to_read, .bv_offset = page_offset};
David Howellsaa563d72018-10-20 00:57:56 +0100817 iov_iter_bvec(&smb_msg.msg_iter, READ, &bv, 1, to_read);
Al Viro71335662016-01-09 19:54:50 -0500818 return cifs_readv_from_socket(server, &smb_msg);
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400819}
820
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400821static bool
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400822is_smb_response(struct TCP_Server_Info *server, unsigned char type)
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400823{
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400824 /*
825 * The first byte big endian of the length field,
826 * is actually not part of the length but the type
827 * with the most common, zero, as regular data.
828 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400829 switch (type) {
830 case RFC1002_SESSION_MESSAGE:
831 /* Regular SMB response */
832 return true;
833 case RFC1002_SESSION_KEEP_ALIVE:
Joe Perchesf96637b2013-05-04 22:12:25 -0500834 cifs_dbg(FYI, "RFC 1002 session keep alive\n");
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400835 break;
836 case RFC1002_POSITIVE_SESSION_RESPONSE:
Joe Perchesf96637b2013-05-04 22:12:25 -0500837 cifs_dbg(FYI, "RFC 1002 positive session response\n");
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400838 break;
839 case RFC1002_NEGATIVE_SESSION_RESPONSE:
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400840 /*
841 * We get this from Windows 98 instead of an error on
842 * SMB negprot response.
843 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500844 cifs_dbg(FYI, "RFC 1002 negative session response\n");
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400845 /* give server a second to clean up */
846 msleep(1000);
847 /*
848 * Always try 445 first on reconnect since we get NACK
849 * on some if we ever connected to port 139 (the NACK
850 * is since we do not begin with RFC1001 session
851 * initialize frame).
852 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400853 cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400854 cifs_reconnect(server);
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400855 break;
856 default:
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000857 cifs_server_dbg(VFS, "RFC 1002 unknown response type 0x%x\n", type);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400858 cifs_reconnect(server);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400859 }
860
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400861 return false;
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400862}
863
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400864void
865dequeue_mid(struct mid_q_entry *mid, bool malformed)
Jeff Laytonea1f4502011-10-19 15:29:05 -0400866{
867#ifdef CONFIG_CIFS_STATS2
868 mid->when_received = jiffies;
869#endif
870 spin_lock(&GlobalMid_Lock);
871 if (!malformed)
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400872 mid->mid_state = MID_RESPONSE_RECEIVED;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400873 else
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400874 mid->mid_state = MID_RESPONSE_MALFORMED;
Ronnie Sahlbergddf83af2018-08-30 10:12:59 +1000875 /*
876 * Trying to handle/dequeue a mid after the send_recv()
877 * function has finished processing it is a bug.
878 */
879 if (mid->mid_flags & MID_DELETED)
880 printk_once(KERN_WARNING
881 "trying to dequeue a deleted mid\n");
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700882 else {
Ronnie Sahlbergddf83af2018-08-30 10:12:59 +1000883 list_del_init(&mid->qhead);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700884 mid->mid_flags |= MID_DELETED;
885 }
Jeff Laytonea1f4502011-10-19 15:29:05 -0400886 spin_unlock(&GlobalMid_Lock);
887}
888
Pavel Shilovsky86a79642019-11-21 11:35:13 -0800889static unsigned int
890smb2_get_credits_from_hdr(char *buffer, struct TCP_Server_Info *server)
891{
892 struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buffer;
893
894 /*
895 * SMB1 does not use credits.
896 */
897 if (server->vals->header_preamble_size)
898 return 0;
899
900 return le16_to_cpu(shdr->CreditRequest);
901}
902
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400903static void
904handle_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server,
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400905 char *buf, int malformed)
Jeff Laytonea1f4502011-10-19 15:29:05 -0400906{
Pavel Shilovsky316cf942012-05-23 14:31:03 +0400907 if (server->ops->check_trans2 &&
908 server->ops->check_trans2(mid, server, buf, malformed))
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400909 return;
Pavel Shilovsky86a79642019-11-21 11:35:13 -0800910 mid->credits_received = smb2_get_credits_from_hdr(buf, server);
Jeff Laytonea1f4502011-10-19 15:29:05 -0400911 mid->resp_buf = buf;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400912 mid->large_buf = server->large_buf;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400913 /* Was previous buf put in mpx struct for multi-rsp? */
914 if (!mid->multiRsp) {
915 /* smb buffer will be freed by user thread */
916 if (server->large_buf)
917 server->bigbuf = NULL;
918 else
919 server->smallbuf = NULL;
920 }
Jeff Laytonffc00e22011-10-19 15:29:13 -0400921 dequeue_mid(mid, malformed);
Pavel Shilovskyad69bae2011-08-01 13:19:43 +0400922}
923
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400924static void clean_demultiplex_info(struct TCP_Server_Info *server)
925{
926 int length;
927
928 /* take it off the list, if it's not already */
929 spin_lock(&cifs_tcp_ses_lock);
930 list_del_init(&server->tcp_ses_list);
931 spin_unlock(&cifs_tcp_ses_lock);
932
933 spin_lock(&GlobalMid_Lock);
934 server->tcpStatus = CifsExiting;
935 spin_unlock(&GlobalMid_Lock);
936 wake_up_all(&server->response_q);
937
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400938 /* check if we have blocked requests that need to free */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300939 spin_lock(&server->req_lock);
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400940 if (server->credits <= 0)
941 server->credits = 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300942 spin_unlock(&server->req_lock);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400943 /*
944 * Although there should not be any requests blocked on this queue it
945 * can not hurt to be paranoid and try to wake up requests that may
946 * haven been blocked when more than 50 at time were on the wire to the
947 * same server - they now will see the session is in exit state and get
948 * out of SendReceive.
949 */
950 wake_up_all(&server->request_q);
951 /* give those requests time to exit */
952 msleep(125);
Long Li050b8c32019-04-04 11:35:42 -0500953 if (cifs_rdma_enabled(server))
954 smbd_destroy(server);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400955 if (server->ssocket) {
956 sock_release(server->ssocket);
957 server->ssocket = NULL;
958 }
959
960 if (!list_empty(&server->pending_mid_q)) {
961 struct list_head dispose_list;
962 struct mid_q_entry *mid_entry;
963 struct list_head *tmp, *tmp2;
964
965 INIT_LIST_HEAD(&dispose_list);
966 spin_lock(&GlobalMid_Lock);
967 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
968 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500969 cifs_dbg(FYI, "Clearing mid 0x%llx\n", mid_entry->mid);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700970 kref_get(&mid_entry->refcount);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400971 mid_entry->mid_state = MID_SHUTDOWN;
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400972 list_move(&mid_entry->qhead, &dispose_list);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700973 mid_entry->mid_flags |= MID_DELETED;
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400974 }
975 spin_unlock(&GlobalMid_Lock);
976
977 /* now walk dispose list and issue callbacks */
978 list_for_each_safe(tmp, tmp2, &dispose_list) {
979 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500980 cifs_dbg(FYI, "Callback mid 0x%llx\n", mid_entry->mid);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400981 list_del_init(&mid_entry->qhead);
982 mid_entry->callback(mid_entry);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700983 cifs_mid_q_entry_release(mid_entry);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400984 }
985 /* 1/8th of sec is more than enough time for them to exit */
986 msleep(125);
987 }
988
989 if (!list_empty(&server->pending_mid_q)) {
990 /*
991 * mpx threads have not exited yet give them at least the smb
992 * send timeout time for long ops.
993 *
994 * Due to delays on oplock break requests, we need to wait at
995 * least 45 seconds before giving up on a request getting a
996 * response and going ahead and killing cifsd.
997 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500998 cifs_dbg(FYI, "Wait for exit from demultiplex thread\n");
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400999 msleep(46000);
1000 /*
1001 * If threads still have not exited they are probably never
1002 * coming home not much else we can do but free the memory.
1003 */
1004 }
1005
1006 kfree(server->hostname);
1007 kfree(server);
1008
1009 length = atomic_dec_return(&tcpSesAllocCount);
1010 if (length > 0)
David Rientjes11d83362015-04-14 15:48:21 -07001011 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +04001012}
1013
Pavel Shilovskye7015fb2011-08-01 13:19:41 +04001014static int
Jeff Laytone9097ab2011-10-19 15:29:40 -04001015standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid)
1016{
1017 int length;
1018 char *buf = server->smallbuf;
Ronnie Sahlberg2e964672018-04-09 18:06:26 +10001019 unsigned int pdu_length = server->pdu_size;
Jeff Laytone9097ab2011-10-19 15:29:40 -04001020
1021 /* make sure this will fit in a large buffer */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +11001022 if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) -
1023 server->vals->header_preamble_size) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001024 cifs_server_dbg(VFS, "SMB response too long (%u bytes)\n", pdu_length);
Jeff Laytone9097ab2011-10-19 15:29:40 -04001025 cifs_reconnect(server);
Pavel Shilovsky3fabaa22014-07-10 09:55:52 +04001026 return -ECONNABORTED;
Jeff Laytone9097ab2011-10-19 15:29:40 -04001027 }
1028
1029 /* switch to large buffer if too big for a small one */
1030 if (pdu_length > MAX_CIFS_SMALL_BUFFER_SIZE - 4) {
1031 server->large_buf = true;
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001032 memcpy(server->bigbuf, buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -04001033 buf = server->bigbuf;
Jeff Laytone9097ab2011-10-19 15:29:40 -04001034 }
1035
1036 /* now read the rest */
Pavel Shilovsky1887f602012-05-17 12:45:31 +04001037 length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1,
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +11001038 pdu_length - HEADER_SIZE(server) + 1
1039 + server->vals->header_preamble_size);
1040
Jeff Laytone9097ab2011-10-19 15:29:40 -04001041 if (length < 0)
1042 return length;
1043 server->total_read += length;
1044
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001045 dump_smb(buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -04001046
Pavel Shilovsky4326ed22016-11-17 15:24:46 -08001047 return cifs_handle_standard(server, mid);
1048}
1049
1050int
1051cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid)
1052{
1053 char *buf = server->large_buf ? server->bigbuf : server->smallbuf;
1054 int length;
1055
Jeff Laytone9097ab2011-10-19 15:29:40 -04001056 /*
1057 * We know that we received enough to get to the MID as we
1058 * checked the pdu_length earlier. Now check to see
1059 * if the rest of the header is OK. We borrow the length
1060 * var for the rest of the loop to avoid a new stack var.
1061 *
1062 * 48 bytes is enough to display the header and a little bit
1063 * into the payload for debugging purposes.
1064 */
Steve French373512e2015-12-18 13:05:30 -06001065 length = server->ops->check_message(buf, server->total_read, server);
Jeff Laytone9097ab2011-10-19 15:29:40 -04001066 if (length != 0)
1067 cifs_dump_mem("Bad SMB: ", buf,
1068 min_t(unsigned int, server->total_read, 48));
1069
Pavel Shilovsky511c54a2017-07-08 14:32:00 -07001070 if (server->ops->is_session_expired &&
1071 server->ops->is_session_expired(buf)) {
1072 cifs_reconnect(server);
Pavel Shilovsky511c54a2017-07-08 14:32:00 -07001073 return -1;
1074 }
1075
Pavel Shilovsky2e44b282012-09-18 16:20:33 -07001076 if (server->ops->is_status_pending &&
Pavel Shilovsky66265f12019-01-23 17:11:16 -08001077 server->ops->is_status_pending(buf, server))
Pavel Shilovsky2e44b282012-09-18 16:20:33 -07001078 return -1;
1079
Jeff Laytonff4fa4a2012-02-07 06:31:05 -05001080 if (!mid)
1081 return length;
Jeff Laytone9097ab2011-10-19 15:29:40 -04001082
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001083 handle_mid(mid, server, buf, length);
Jeff Laytonff4fa4a2012-02-07 06:31:05 -05001084 return 0;
Jeff Laytone9097ab2011-10-19 15:29:40 -04001085}
1086
Ronnie Sahlbergeca00452019-02-05 12:56:44 +10001087static void
1088smb2_add_credits_from_hdr(char *buffer, struct TCP_Server_Info *server)
1089{
1090 struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buffer;
1091
1092 /*
1093 * SMB1 does not use credits.
1094 */
1095 if (server->vals->header_preamble_size)
1096 return;
1097
1098 if (shdr->CreditRequest) {
1099 spin_lock(&server->req_lock);
1100 server->credits += le16_to_cpu(shdr->CreditRequest);
1101 spin_unlock(&server->req_lock);
1102 wake_up(&server->request_q);
1103 }
1104}
1105
1106
Jeff Laytone9097ab2011-10-19 15:29:40 -04001107static int
Al Viro7c97c202011-06-21 08:51:28 -04001108cifs_demultiplex_thread(void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001110 int i, num_mids, length;
Al Viro7c97c202011-06-21 08:51:28 -04001111 struct TCP_Server_Info *server = p;
Jeff Layton2a37ef92011-10-19 15:29:23 -04001112 unsigned int pdu_length;
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001113 unsigned int next_offset;
Jeff Layton2a37ef92011-10-19 15:29:23 -04001114 char *buf = NULL;
Steve Frencha5c3e1c2014-09-16 04:16:19 -05001115 struct task_struct *task_to_wake = NULL;
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001116 struct mid_q_entry *mids[MAX_COMPOUND];
1117 char *bufs[MAX_COMPOUND];
Eric Biggersdc920272020-03-08 22:58:20 -07001118 unsigned int noreclaim_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Eric Biggersdc920272020-03-08 22:58:20 -07001120 noreclaim_flag = memalloc_noreclaim_save();
Joe Perchesf96637b2013-05-04 22:12:25 -05001121 cifs_dbg(FYI, "Demultiplex PID: %d\n", task_pid_nr(current));
Jeff Layton93d0ec82008-08-02 08:00:48 -04001122
1123 length = atomic_inc_return(&tcpSesAllocCount);
1124 if (length > 1)
David Rientjes11d83362015-04-14 15:48:21 -07001125 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Rafael J. Wysocki83144182007-07-17 04:03:35 -07001127 set_freezable();
Eric W. Biederman33da8e72019-08-16 12:33:54 -05001128 allow_kernel_signal(SIGKILL);
Jeff Layton469ee612008-10-16 18:46:39 +00001129 while (server->tcpStatus != CifsExiting) {
Steve Frenchede13272005-08-30 20:10:14 -07001130 if (try_to_freeze())
1131 continue;
Steve Frenchb8643e12005-04-28 22:41:07 -07001132
Jeff Layton2a37ef92011-10-19 15:29:23 -04001133 if (!allocate_buffers(server))
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +04001134 continue;
Steve Frenchb8643e12005-04-28 22:41:07 -07001135
Jeff Layton2a37ef92011-10-19 15:29:23 -04001136 server->large_buf = false;
Jeff Layton2a37ef92011-10-19 15:29:23 -04001137 buf = server->smallbuf;
Steve Frenchf01d5e12007-08-30 21:13:31 +00001138 pdu_length = 4; /* enough to get RFC1001 header */
Steve Frenchfda35942011-01-20 18:06:34 +00001139
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001140 length = cifs_read_from_socket(server, buf, pdu_length);
Jeff Laytona52c1eb2011-10-11 06:41:32 -04001141 if (length < 0)
Steve Frenchfda35942011-01-20 18:06:34 +00001142 continue;
Ronnie Sahlberg977b6172018-06-01 10:53:02 +10001143
1144 if (server->vals->header_preamble_size == 0)
1145 server->total_read = 0;
1146 else
1147 server->total_read = length;
Steve French67010fb2005-04-28 22:41:09 -07001148
Pavel Shilovsky98bac622011-08-01 13:19:42 +04001149 /*
1150 * The right amount was read from socket - 4 bytes,
1151 * so we can now interpret the length field.
1152 */
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001153 pdu_length = get_rfc1002_length(buf);
Steve French46810cb2005-04-28 22:41:09 -07001154
Joe Perchesf96637b2013-05-04 22:12:25 -05001155 cifs_dbg(FYI, "RFC1002 header 0x%x\n", pdu_length);
Jeff Laytonfe11e4c2011-10-11 06:41:32 -04001156 if (!is_smb_response(server, buf[0]))
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001157 continue;
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001158next_pdu:
1159 server->pdu_size = pdu_length;
Steve Frenche4eb2952005-04-28 22:41:09 -07001160
Jeff Layton89482a52011-10-19 15:28:57 -04001161 /* make sure we have enough to get to the MID */
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001162 if (server->pdu_size < HEADER_SIZE(server) - 1 -
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +11001163 server->vals->header_preamble_size) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001164 cifs_server_dbg(VFS, "SMB response too short (%u bytes)\n",
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001165 server->pdu_size);
Jeff Layton89482a52011-10-19 15:28:57 -04001166 cifs_reconnect(server);
Jeff Layton89482a52011-10-19 15:28:57 -04001167 continue;
Steve Frenche4eb2952005-04-28 22:41:09 -07001168 }
Pavel Shilovskye7015fb2011-08-01 13:19:41 +04001169
Jeff Layton89482a52011-10-19 15:28:57 -04001170 /* read down to the MID */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +11001171 length = cifs_read_from_socket(server,
1172 buf + server->vals->header_preamble_size,
1173 HEADER_SIZE(server) - 1
1174 - server->vals->header_preamble_size);
Jeff Layton89482a52011-10-19 15:28:57 -04001175 if (length < 0)
1176 continue;
Jeff Layton2a37ef92011-10-19 15:29:23 -04001177 server->total_read += length;
Jeff Layton89482a52011-10-19 15:28:57 -04001178
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001179 if (server->ops->next_header) {
1180 next_offset = server->ops->next_header(buf);
1181 if (next_offset)
1182 server->pdu_size = next_offset;
1183 }
1184
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001185 memset(mids, 0, sizeof(mids));
1186 memset(bufs, 0, sizeof(bufs));
1187 num_mids = 0;
1188
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -08001189 if (server->ops->is_transform_hdr &&
1190 server->ops->receive_transform &&
1191 server->ops->is_transform_hdr(buf)) {
1192 length = server->ops->receive_transform(server,
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001193 mids,
1194 bufs,
1195 &num_mids);
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -08001196 } else {
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001197 mids[0] = server->ops->find_mid(server, buf);
1198 bufs[0] = buf;
Steve French7af929d2018-10-02 18:54:09 -05001199 num_mids = 1;
Jeff Laytonc8054eb2011-10-19 15:29:31 -04001200
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001201 if (!mids[0] || !mids[0]->receive)
1202 length = standard_receive3(server, mids[0]);
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -08001203 else
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001204 length = mids[0]->receive(server, mids[0]);
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -08001205 }
Jeff Layton44d22d82011-10-19 15:29:49 -04001206
Lars Persson696e4202018-06-25 14:05:25 +02001207 if (length < 0) {
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001208 for (i = 0; i < num_mids; i++)
1209 if (mids[i])
1210 cifs_mid_q_entry_release(mids[i]);
Steve Frenche4eb2952005-04-28 22:41:09 -07001211 continue;
Lars Persson696e4202018-06-25 14:05:25 +02001212 }
Steve Frenche4eb2952005-04-28 22:41:09 -07001213
Steve Frenchfda35942011-01-20 18:06:34 +00001214 server->lstrp = jiffies;
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001215
1216 for (i = 0; i < num_mids; i++) {
1217 if (mids[i] != NULL) {
1218 mids[i]->resp_buf_size = server->pdu_size;
Sachin Prabhu38bd4902017-03-03 15:41:38 -08001219
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001220 if (!mids[i]->multiRsp || mids[i]->multiEnd)
1221 mids[i]->callback(mids[i]);
Lars Persson696e4202018-06-25 14:05:25 +02001222
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001223 cifs_mid_q_entry_release(mids[i]);
1224 } else if (server->ops->is_oplock_break &&
1225 server->ops->is_oplock_break(bufs[i],
1226 server)) {
Ronnie Sahlbergeca00452019-02-05 12:56:44 +10001227 smb2_add_credits_from_hdr(bufs[i], server);
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001228 cifs_dbg(FYI, "Received oplock break\n");
1229 } else {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001230 cifs_server_dbg(VFS, "No task to wake, unknown frame "
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001231 "received! NumMids %d\n",
1232 atomic_read(&midCount));
1233 cifs_dump_mem("Received Data is: ", bufs[i],
1234 HEADER_SIZE(server));
Ronnie Sahlberg3e272572019-07-06 06:43:08 +10001235 smb2_add_credits_from_hdr(bufs[i], server);
Steve French39798772006-05-31 22:40:51 +00001236#ifdef CONFIG_CIFS_DEBUG2
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001237 if (server->ops->dump_detail)
1238 server->ops->dump_detail(bufs[i],
1239 server);
1240 cifs_dump_mids(server);
Steve French39798772006-05-31 22:40:51 +00001241#endif /* CIFS_DEBUG2 */
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001242 }
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001243 }
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001244
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001245 if (pdu_length > server->pdu_size) {
1246 if (!allocate_buffers(server))
1247 continue;
1248 pdu_length -= server->pdu_size;
1249 server->total_read = 0;
1250 server->large_buf = false;
1251 buf = server->smallbuf;
1252 goto next_pdu;
Steve Frenche4eb2952005-04-28 22:41:09 -07001253 }
1254 } /* end while !EXITING */
1255
Justin P. Mattockfd62cb72011-02-24 22:15:02 -08001256 /* buffer usually freed in free_mid - need to free it here on exit */
Jeff Layton2a37ef92011-10-19 15:29:23 -04001257 cifs_buf_release(server->bigbuf);
1258 if (server->smallbuf) /* no sense logging a debug message if NULL */
1259 cifs_small_buf_release(server->smallbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Steve Frencha5c3e1c2014-09-16 04:16:19 -05001261 task_to_wake = xchg(&server->tsk, NULL);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +04001262 clean_demultiplex_info(server);
Steve Frencha5c3e1c2014-09-16 04:16:19 -05001263
1264 /* if server->tsk was NULL then wait for a signal before exiting */
1265 if (!task_to_wake) {
1266 set_current_state(TASK_INTERRUPTIBLE);
1267 while (!signal_pending(current)) {
1268 schedule();
1269 set_current_state(TASK_INTERRUPTIBLE);
1270 }
1271 set_current_state(TASK_RUNNING);
1272 }
1273
Eric Biggersdc920272020-03-08 22:58:20 -07001274 memalloc_noreclaim_restore(noreclaim_flag);
Jeff Layton0468a2c2008-12-01 07:09:35 -05001275 module_put_and_exit(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
Jeff Laytonc359cf32007-11-16 22:22:06 +00001278/* extract the host portion of the UNC string */
1279static char *
1280extract_hostname(const char *unc)
1281{
1282 const char *src;
1283 char *dst, *delim;
1284 unsigned int len;
1285
1286 /* skip double chars at beginning of string */
1287 /* BB: check validity of these bytes? */
Paulo Alcantarac34fea52018-11-14 14:03:40 -02001288 if (strlen(unc) < 3)
1289 return ERR_PTR(-EINVAL);
1290 for (src = unc; *src && *src == '\\'; src++)
1291 ;
1292 if (!*src)
1293 return ERR_PTR(-EINVAL);
Jeff Laytonc359cf32007-11-16 22:22:06 +00001294
1295 /* delimiter between hostname and sharename is always '\\' now */
1296 delim = strchr(src, '\\');
1297 if (!delim)
1298 return ERR_PTR(-EINVAL);
1299
1300 len = delim - src;
1301 dst = kmalloc((len + 1), GFP_KERNEL);
1302 if (dst == NULL)
1303 return ERR_PTR(-ENOMEM);
1304
1305 memcpy(dst, src, len);
1306 dst[len] = '\0';
1307
1308 return dst;
1309}
1310
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001311static int get_option_ul(substring_t args[], unsigned long *option)
1312{
1313 int rc;
1314 char *string;
1315
1316 string = match_strdup(args);
1317 if (string == NULL)
1318 return -ENOMEM;
Sachin Prabhubfa890a2012-04-13 14:04:32 +01001319 rc = kstrtoul(string, 0, option);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001320 kfree(string);
1321
1322 return rc;
1323}
1324
Eric W. Biederman3da46562013-02-06 01:37:39 -08001325static int get_option_uid(substring_t args[], kuid_t *result)
1326{
1327 unsigned long value;
1328 kuid_t uid;
1329 int rc;
1330
1331 rc = get_option_ul(args, &value);
1332 if (rc)
1333 return rc;
1334
1335 uid = make_kuid(current_user_ns(), value);
1336 if (!uid_valid(uid))
1337 return -EINVAL;
1338
1339 *result = uid;
1340 return 0;
1341}
1342
1343static int get_option_gid(substring_t args[], kgid_t *result)
1344{
1345 unsigned long value;
1346 kgid_t gid;
1347 int rc;
1348
1349 rc = get_option_ul(args, &value);
1350 if (rc)
1351 return rc;
1352
1353 gid = make_kgid(current_user_ns(), value);
1354 if (!gid_valid(gid))
1355 return -EINVAL;
1356
1357 *result = gid;
1358 return 0;
1359}
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001360
1361static int cifs_parse_security_flavors(char *value,
1362 struct smb_vol *vol)
1363{
1364
1365 substring_t args[MAX_OPT_ARGS];
1366
Jeff Layton1e3cc572013-06-10 17:12:23 -05001367 /*
1368 * With mount options, the last one should win. Reset any existing
1369 * settings back to default.
1370 */
1371 vol->sectype = Unspecified;
1372 vol->sign = false;
1373
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001374 switch (match_token(value, cifs_secflavor_tokens, args)) {
Jeff Layton3f618222013-06-12 19:52:14 -05001375 case Opt_sec_krb5p:
1376 cifs_dbg(VFS, "sec=krb5p is not supported!\n");
1377 return 1;
1378 case Opt_sec_krb5i:
1379 vol->sign = true;
1380 /* Fallthrough */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001381 case Opt_sec_krb5:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001382 vol->sectype = Kerberos;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001383 break;
1384 case Opt_sec_ntlmsspi:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001385 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001386 /* Fallthrough */
1387 case Opt_sec_ntlmssp:
1388 vol->sectype = RawNTLMSSP;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001389 break;
1390 case Opt_sec_ntlmi:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001391 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001392 /* Fallthrough */
1393 case Opt_ntlm:
1394 vol->sectype = NTLM;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001395 break;
1396 case Opt_sec_ntlmv2i:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001397 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001398 /* Fallthrough */
1399 case Opt_sec_ntlmv2:
1400 vol->sectype = NTLMv2;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001401 break;
1402#ifdef CONFIG_CIFS_WEAK_PW_HASH
1403 case Opt_sec_lanman:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001404 vol->sectype = LANMAN;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001405 break;
1406#endif
1407 case Opt_sec_none:
1408 vol->nullauth = 1;
1409 break;
1410 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001411 cifs_dbg(VFS, "bad security option: %s\n", value);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001412 return 1;
1413 }
1414
1415 return 0;
1416}
1417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418static int
Jeff Layton15b6a472012-05-16 07:50:15 -04001419cifs_parse_cache_flavor(char *value, struct smb_vol *vol)
1420{
1421 substring_t args[MAX_OPT_ARGS];
1422
1423 switch (match_token(value, cifs_cacheflavor_tokens, args)) {
1424 case Opt_cache_loose:
1425 vol->direct_io = false;
1426 vol->strict_io = false;
Steve French83bbfa72019-08-27 23:58:54 -05001427 vol->cache_ro = false;
Steve French41e033f2019-08-30 02:12:41 -05001428 vol->cache_rw = false;
Jeff Layton15b6a472012-05-16 07:50:15 -04001429 break;
1430 case Opt_cache_strict:
1431 vol->direct_io = false;
1432 vol->strict_io = true;
Steve French83bbfa72019-08-27 23:58:54 -05001433 vol->cache_ro = false;
Steve French41e033f2019-08-30 02:12:41 -05001434 vol->cache_rw = false;
Jeff Layton15b6a472012-05-16 07:50:15 -04001435 break;
1436 case Opt_cache_none:
1437 vol->direct_io = true;
1438 vol->strict_io = false;
Steve French83bbfa72019-08-27 23:58:54 -05001439 vol->cache_ro = false;
Steve French41e033f2019-08-30 02:12:41 -05001440 vol->cache_rw = false;
Steve French83bbfa72019-08-27 23:58:54 -05001441 break;
1442 case Opt_cache_ro:
1443 vol->direct_io = false;
1444 vol->strict_io = false;
1445 vol->cache_ro = true;
Steve French41e033f2019-08-30 02:12:41 -05001446 vol->cache_rw = false;
1447 break;
1448 case Opt_cache_rw:
1449 vol->direct_io = false;
1450 vol->strict_io = false;
1451 vol->cache_ro = false;
1452 vol->cache_rw = true;
Jeff Layton15b6a472012-05-16 07:50:15 -04001453 break;
1454 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001455 cifs_dbg(VFS, "bad cache= option: %s\n", value);
Jeff Layton15b6a472012-05-16 07:50:15 -04001456 return 1;
1457 }
1458 return 0;
1459}
1460
1461static int
Steve Frenchc7c137b2018-06-06 17:59:29 -05001462cifs_parse_smb_version(char *value, struct smb_vol *vol, bool is_smb3)
Jeff Layton23db65f2012-05-15 12:20:51 -04001463{
1464 substring_t args[MAX_OPT_ARGS];
1465
1466 switch (match_token(value, cifs_smb_version_tokens, args)) {
Steve French74204512018-06-19 14:34:08 -05001467#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
Jeff Layton23db65f2012-05-15 12:20:51 -04001468 case Smb_1:
Steve Frenchf92a7202018-05-24 04:11:07 -05001469 if (disable_legacy_dialects) {
1470 cifs_dbg(VFS, "mount with legacy dialect disabled\n");
1471 return 1;
1472 }
Steve Frenchc7c137b2018-06-06 17:59:29 -05001473 if (is_smb3) {
1474 cifs_dbg(VFS, "vers=1.0 (cifs) not permitted when mounting with smb3\n");
1475 return 1;
1476 }
Steve French8fe0c2c2020-02-28 01:32:37 -06001477 cifs_dbg(VFS, "Use of the less secure dialect vers=1.0 "
1478 "is not recommended unless required for "
1479 "access to very old servers\n");
Jeff Layton23db65f2012-05-15 12:20:51 -04001480 vol->ops = &smb1_operations;
1481 vol->vals = &smb1_values;
1482 break;
Steve Frenchdd446b12012-11-28 23:21:06 -06001483 case Smb_20:
Steve Frenchf92a7202018-05-24 04:11:07 -05001484 if (disable_legacy_dialects) {
1485 cifs_dbg(VFS, "mount with legacy dialect disabled\n");
1486 return 1;
1487 }
Steve Frenchc7c137b2018-06-06 17:59:29 -05001488 if (is_smb3) {
1489 cifs_dbg(VFS, "vers=2.0 not permitted when mounting with smb3\n");
1490 return 1;
1491 }
Pavel Shilovsky53ef1012013-09-05 16:11:28 +04001492 vol->ops = &smb20_operations;
Steve Frenchdd446b12012-11-28 23:21:06 -06001493 vol->vals = &smb20_values;
1494 break;
Steve French74204512018-06-19 14:34:08 -05001495#else
1496 case Smb_1:
1497 cifs_dbg(VFS, "vers=1.0 (cifs) mount not permitted when legacy dialects disabled\n");
1498 return 1;
1499 case Smb_20:
1500 cifs_dbg(VFS, "vers=2.0 mount not permitted when legacy dialects disabled\n");
1501 return 1;
1502#endif /* CIFS_ALLOW_INSECURE_LEGACY */
Steve French1080ef72011-02-24 18:07:19 +00001503 case Smb_21:
1504 vol->ops = &smb21_operations;
1505 vol->vals = &smb21_values;
1506 break;
Steve Frenche4aa25e2012-10-01 12:26:22 -05001507 case Smb_30:
Steve French38107d42012-12-08 22:08:06 -06001508 vol->ops = &smb30_operations;
Steve Frenche4aa25e2012-10-01 12:26:22 -05001509 vol->vals = &smb30_values;
1510 break;
Steve French20b6d8b2013-06-12 22:48:41 -05001511 case Smb_302:
1512 vol->ops = &smb30_operations; /* currently identical with 3.0 */
1513 vol->vals = &smb302_values;
1514 break;
Steve French5f7fbf72014-12-17 22:52:58 -06001515 case Smb_311:
Steve Frenchaab18932015-06-23 23:37:11 -05001516 vol->ops = &smb311_operations;
Steve French5f7fbf72014-12-17 22:52:58 -06001517 vol->vals = &smb311_values;
1518 break;
Steve French9764c022017-09-17 10:41:35 -05001519 case Smb_3any:
1520 vol->ops = &smb30_operations; /* currently identical with 3.0 */
1521 vol->vals = &smb3any_values;
1522 break;
1523 case Smb_default:
1524 vol->ops = &smb30_operations; /* currently identical with 3.0 */
1525 vol->vals = &smbdefault_values;
1526 break;
Jeff Layton23db65f2012-05-15 12:20:51 -04001527 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001528 cifs_dbg(VFS, "Unknown vers= option specified: %s\n", value);
Jeff Layton23db65f2012-05-15 12:20:51 -04001529 return 1;
1530 }
1531 return 0;
1532}
1533
Jeff Laytond387a5c2012-12-10 06:10:46 -05001534/*
1535 * Parse a devname into substrings and populate the vol->UNC and vol->prepath
1536 * fields with the result. Returns 0 on success and an error otherwise.
1537 */
1538static int
1539cifs_parse_devname(const char *devname, struct smb_vol *vol)
1540{
1541 char *pos;
1542 const char *delims = "/\\";
1543 size_t len;
1544
Yao Liu68e26722019-01-28 19:47:28 +08001545 if (unlikely(!devname || !*devname)) {
1546 cifs_dbg(VFS, "Device name not specified.\n");
1547 return -EINVAL;
1548 }
1549
Jeff Laytond387a5c2012-12-10 06:10:46 -05001550 /* make sure we have a valid UNC double delimiter prefix */
1551 len = strspn(devname, delims);
1552 if (len != 2)
1553 return -EINVAL;
1554
1555 /* find delimiter between host and sharename */
1556 pos = strpbrk(devname + 2, delims);
1557 if (!pos)
1558 return -EINVAL;
1559
1560 /* skip past delimiter */
1561 ++pos;
1562
1563 /* now go until next delimiter or end of string */
1564 len = strcspn(pos, delims);
1565
1566 /* move "pos" up to delimiter or NULL */
1567 pos += len;
1568 vol->UNC = kstrndup(devname, pos - devname, GFP_KERNEL);
1569 if (!vol->UNC)
1570 return -ENOMEM;
1571
1572 convert_delimiter(vol->UNC, '\\');
1573
Sachin Prabhu11e31642016-02-08 13:44:01 +05301574 /* skip any delimiter */
1575 if (*pos == '/' || *pos == '\\')
1576 pos++;
1577
1578 /* If pos is NULL then no prepath */
1579 if (!*pos)
Jeff Laytond387a5c2012-12-10 06:10:46 -05001580 return 0;
1581
1582 vol->prepath = kstrdup(pos, GFP_KERNEL);
1583 if (!vol->prepath)
1584 return -ENOMEM;
1585
1586 return 0;
1587}
1588
Jeff Layton23db65f2012-05-15 12:20:51 -04001589static int
Sean Finneyb9468452011-04-11 13:19:32 +00001590cifs_parse_mount_options(const char *mountdata, const char *devname,
Steve Frenchc7c137b2018-06-06 17:59:29 -05001591 struct smb_vol *vol, bool is_smb3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001593 char *data, *end;
Vasily Averin957df452011-06-06 11:33:12 +04001594 char *mountdata_copy = NULL, *options;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 unsigned int temp_len, i, j;
1596 char separator[2];
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001597 short int override_uid = -1;
1598 short int override_gid = -1;
1599 bool uid_specified = false;
1600 bool gid_specified = false;
Jeff Laytond8162552012-03-23 14:40:56 -04001601 bool sloppy = false;
1602 char *invalid = NULL;
Jeff Layton88463992010-11-22 15:31:03 -05001603 char *nodename = utsname()->nodename;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001604 char *string = NULL;
1605 char *tmp_end, *value;
1606 char delim;
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001607 bool got_ip = false;
Steve French7e682f72017-08-31 21:34:24 -05001608 bool got_version = false;
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001609 unsigned short port = 0;
1610 struct sockaddr *dstaddr = (struct sockaddr *)&vol->dstaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612 separator[0] = ',';
Steve French50c2f752007-07-13 00:33:32 +00001613 separator[1] = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001614 delim = separator[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Jeff Layton6ee95422012-11-26 11:09:57 -05001616 /* ensure we always start with zeroed-out smb_vol */
1617 memset(vol, 0, sizeof(*vol));
1618
Jeff Layton88463992010-11-22 15:31:03 -05001619 /*
1620 * does not have to be perfect mapping since field is
1621 * informational, only used for servers that do not support
1622 * port 445 and it can be overridden at mount time
1623 */
Jeff Layton1397f2e2011-01-07 11:30:28 -05001624 memset(vol->source_rfc1001_name, 0x20, RFC1001_NAME_LEN);
1625 for (i = 0; i < strnlen(nodename, RFC1001_NAME_LEN); i++)
Jeff Layton88463992010-11-22 15:31:03 -05001626 vol->source_rfc1001_name[i] = toupper(nodename[i]);
1627
Jeff Layton1397f2e2011-01-07 11:30:28 -05001628 vol->source_rfc1001_name[RFC1001_NAME_LEN] = 0;
Steve Frencha10faeb22005-08-22 21:38:31 -07001629 /* null target name indicates to use *SMBSERVR default called name
1630 if we end up sending RFC1001 session initialize */
1631 vol->target_rfc1001_name[0] = 0;
Jeff Layton3e4b3e12010-07-19 18:00:17 -04001632 vol->cred_uid = current_uid();
1633 vol->linux_uid = current_uid();
David Howellsa001e5b2008-11-14 10:38:47 +11001634 vol->linux_gid = current_gid();
Steve Frenche8506d22019-02-28 21:32:15 -06001635 vol->bsize = 1024 * 1024; /* can improve cp performance significantly */
Steve French2baa2682014-09-27 02:19:01 -05001636 /*
1637 * default to SFM style remapping of seven reserved characters
1638 * unless user overrides it or we negotiate CIFS POSIX where
1639 * it is unnecessary. Can not simultaneously use more than one mapping
1640 * since then readdir could list files that open could not open
1641 */
1642 vol->remap = true;
1643
Jeff Laytonf55ed1a2009-05-26 16:28:11 -04001644 /* default to only allowing write access to owner of the mount */
1645 vol->dir_mode = vol->file_mode = S_IRUGO | S_IXUGO | S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647 /* vol->retry default is 0 (i.e. "soft" limited retry not hard retry) */
Jeremy Allisonac670552005-06-22 17:26:35 -07001648 /* default is always to request posix paths. */
1649 vol->posix_paths = 1;
Jeff Laytona0c92172009-05-27 15:40:47 -04001650 /* default to using server inode numbers where available */
1651 vol->server_ino = 1;
Jeremy Allisonac670552005-06-22 17:26:35 -07001652
Jeff Layton1b359202012-09-19 15:20:27 -07001653 /* default is to use strict cifs caching semantics */
1654 vol->strict_io = true;
1655
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05301656 vol->actimeo = CIFS_DEF_ACTIMEO;
1657
Steve Frenchca567eb2019-03-29 16:31:07 -05001658 /* Most clients set timeout to 0, allows server to use its default */
1659 vol->handle_timeout = 0; /* See MS-SMB2 spec section 2.2.14.2.12 */
1660
Steve French9764c022017-09-17 10:41:35 -05001661 /* offer SMB2.1 and later (SMB3 etc). Secure and widely accepted */
1662 vol->ops = &smb30_operations;
1663 vol->vals = &smbdefault_values;
Jeff Layton23db65f2012-05-15 12:20:51 -04001664
Rabin Vincentb782fcc2016-07-19 09:25:45 +02001665 vol->echo_interval = SMB_ECHO_INTERVAL_DEFAULT;
1666
Aurelien Aptelbcc88802019-09-20 04:32:20 +02001667 /* default to no multichannel (single server connection) */
1668 vol->multichannel = false;
1669 vol->max_channels = 1;
1670
Sean Finneyb9468452011-04-11 13:19:32 +00001671 if (!mountdata)
1672 goto cifs_parse_mount_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Sean Finneyb9468452011-04-11 13:19:32 +00001674 mountdata_copy = kstrndup(mountdata, PAGE_SIZE, GFP_KERNEL);
1675 if (!mountdata_copy)
1676 goto cifs_parse_mount_err;
1677
1678 options = mountdata_copy;
Pavel Shilovsky4906e502011-04-14 22:00:56 +04001679 end = options + strlen(options);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001680
Steve French50c2f752007-07-13 00:33:32 +00001681 if (strncmp(options, "sep=", 4) == 0) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001682 if (options[4] != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 separator[0] = options[4];
1684 options += 5;
1685 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -05001686 cifs_dbg(FYI, "Null separator not allowed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
1688 }
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001689 vol->backupuid_specified = false; /* no backup intent for a user */
1690 vol->backupgid_specified = false; /* no backup intent for a group */
Steve French50c2f752007-07-13 00:33:32 +00001691
Jeff Layton37d4f992013-05-24 07:40:05 -04001692 switch (cifs_parse_devname(devname, vol)) {
1693 case 0:
1694 break;
1695 case -ENOMEM:
1696 cifs_dbg(VFS, "Unable to allocate memory for devname.\n");
1697 goto cifs_parse_mount_err;
1698 case -EINVAL:
1699 cifs_dbg(VFS, "Malformed UNC in devname.\n");
1700 goto cifs_parse_mount_err;
1701 default:
1702 cifs_dbg(VFS, "Unknown error parsing devname.\n");
1703 goto cifs_parse_mount_err;
Jeff Laytond387a5c2012-12-10 06:10:46 -05001704 }
1705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 while ((data = strsep(&options, separator)) != NULL) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001707 substring_t args[MAX_OPT_ARGS];
1708 unsigned long option;
1709 int token;
1710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 if (!*data)
1712 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001714 token = match_token(data, cifs_mount_option_tokens, args);
1715
1716 switch (token) {
1717
1718 /* Ingnore the following */
1719 case Opt_ignore:
1720 break;
1721
1722 /* Boolean values */
1723 case Opt_user_xattr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 vol->no_xattr = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001725 break;
1726 case Opt_nouser_xattr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 vol->no_xattr = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001728 break;
1729 case Opt_forceuid:
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001730 override_uid = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001731 break;
1732 case Opt_noforceuid:
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001733 override_uid = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001734 break;
Jeff Layton72bd4812012-10-03 16:02:36 -04001735 case Opt_forcegid:
1736 override_gid = 1;
1737 break;
1738 case Opt_noforcegid:
1739 override_gid = 0;
1740 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001741 case Opt_noblocksend:
Steve Frenchedf1ae42008-10-29 00:47:57 +00001742 vol->noblocksnd = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001743 break;
1744 case Opt_noautotune:
Steve Frenchedf1ae42008-10-29 00:47:57 +00001745 vol->noautotune = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001746 break;
Steve French3e7a02d2019-09-11 21:46:20 -05001747 case Opt_nolease:
1748 vol->no_lease = 1;
1749 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001750 case Opt_hard:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 vol->retry = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001752 break;
1753 case Opt_soft:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 vol->retry = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001755 break;
1756 case Opt_perm:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 vol->noperm = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001758 break;
1759 case Opt_noperm:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 vol->noperm = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001761 break;
1762 case Opt_mapchars:
Steve French2baa2682014-09-27 02:19:01 -05001763 vol->sfu_remap = true;
1764 vol->remap = false; /* disable SFM mapping */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001765 break;
1766 case Opt_nomapchars:
Steve French2baa2682014-09-27 02:19:01 -05001767 vol->sfu_remap = false;
1768 break;
1769 case Opt_mapposix:
1770 vol->remap = true;
1771 vol->sfu_remap = false; /* disable SFU mapping */
1772 break;
1773 case Opt_nomapposix:
1774 vol->remap = false;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001775 break;
1776 case Opt_sfu:
Steve French50c2f752007-07-13 00:33:32 +00001777 vol->sfu_emul = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001778 break;
1779 case Opt_nosfu:
Steve French50c2f752007-07-13 00:33:32 +00001780 vol->sfu_emul = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001781 break;
1782 case Opt_nodfs:
Steve French2c1b8612008-10-16 18:35:21 +00001783 vol->nodfs = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001784 break;
Paulo Alcantara (SUSE)8eecd1c2019-07-16 19:04:50 -03001785 case Opt_rootfs:
1786#ifdef CONFIG_CIFS_ROOT
1787 vol->rootfs = true;
1788#endif
1789 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001790 case Opt_posixpaths:
Jeremy Allisonac670552005-06-22 17:26:35 -07001791 vol->posix_paths = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001792 break;
1793 case Opt_noposixpaths:
Jeremy Allisonac670552005-06-22 17:26:35 -07001794 vol->posix_paths = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001795 break;
1796 case Opt_nounix:
Steve Frenchb3266142018-05-20 23:41:10 -05001797 if (vol->linux_ext)
1798 cifs_dbg(VFS,
1799 "conflicting unix mount options\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00001800 vol->no_linux_ext = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001801 break;
Steve Frenchb3266142018-05-20 23:41:10 -05001802 case Opt_unix:
1803 if (vol->no_linux_ext)
1804 cifs_dbg(VFS,
1805 "conflicting unix mount options\n");
1806 vol->linux_ext = 1;
1807 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001808 case Opt_nocase:
Steve French50c2f752007-07-13 00:33:32 +00001809 vol->nocase = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001810 break;
1811 case Opt_brl:
Steve Frenchc46fa8a2005-08-18 20:49:57 -07001812 vol->nobrl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001813 break;
1814 case Opt_nobrl:
Steve Frenchc46fa8a2005-08-18 20:49:57 -07001815 vol->nobrl = 1;
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +04001816 /*
1817 * turn off mandatory locking in mode
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001818 * if remote locking is turned off since the
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +04001819 * local vfs will do advisory
1820 */
Steve French50c2f752007-07-13 00:33:32 +00001821 if (vol->file_mode ==
1822 (S_IALLUGO & ~(S_ISUID | S_IXGRP)))
Steve Frenchd3485d32005-08-19 11:04:29 -07001823 vol->file_mode = S_IALLUGO;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001824 break;
Steve French3d4ef9a2018-04-25 22:19:09 -05001825 case Opt_nohandlecache:
1826 vol->nohandlecache = 1;
1827 break;
1828 case Opt_handlecache:
1829 vol->nohandlecache = 0;
1830 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001831 case Opt_forcemandatorylock:
Steve French13a6e422008-12-02 17:24:33 +00001832 vol->mand_lock = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001833 break;
1834 case Opt_setuids:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 vol->setuids = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001836 break;
1837 case Opt_nosetuids:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 vol->setuids = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001839 break;
Steve French95932652016-09-23 01:36:34 -05001840 case Opt_setuidfromacl:
1841 vol->setuidfromacl = 1;
1842 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001843 case Opt_dynperm:
Jeff Laytond0a9c072008-05-12 22:23:49 +00001844 vol->dynperm = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001845 break;
1846 case Opt_nodynperm:
Jeff Laytond0a9c072008-05-12 22:23:49 +00001847 vol->dynperm = false;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001848 break;
1849 case Opt_nohard:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 vol->retry = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001851 break;
1852 case Opt_nosoft:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 vol->retry = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001854 break;
1855 case Opt_nointr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 vol->intr = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001857 break;
1858 case Opt_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 vol->intr = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001860 break;
1861 case Opt_nostrictsync:
Steve Frenchbe652442009-02-23 15:21:59 +00001862 vol->nostrictsync = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001863 break;
1864 case Opt_strictsync:
Steve Frenchbe652442009-02-23 15:21:59 +00001865 vol->nostrictsync = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001866 break;
1867 case Opt_serverino:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 vol->server_ino = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001869 break;
1870 case Opt_noserverino:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 vol->server_ino = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001872 break;
1873 case Opt_rwpidforward:
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00001874 vol->rwpidforward = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001875 break;
Steve French412094a2019-06-24 02:01:42 -05001876 case Opt_modesid:
1877 vol->mode_ace = 1;
1878 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001879 case Opt_cifsacl:
Steve French0a4b92c2006-01-12 15:44:21 -08001880 vol->cifs_acl = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001881 break;
1882 case Opt_nocifsacl:
Steve French0a4b92c2006-01-12 15:44:21 -08001883 vol->cifs_acl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001884 break;
1885 case Opt_acl:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 vol->no_psx_acl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001887 break;
1888 case Opt_noacl:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 vol->no_psx_acl = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001890 break;
1891 case Opt_locallease:
Steve French84210e92008-10-23 04:42:37 +00001892 vol->local_lease = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001893 break;
1894 case Opt_sign:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001895 vol->sign = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001896 break;
Steve French4f5c10f2019-09-03 21:18:49 -05001897 case Opt_ignore_signature:
1898 vol->sign = true;
1899 vol->ignore_signature = true;
1900 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001901 case Opt_seal:
Steve French95b1cb92008-05-15 16:44:38 +00001902 /* we do not do the following in secFlags because seal
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001903 * is a per tree connection (mount) not a per socket
1904 * or per-smb connection option in the protocol
1905 * vol->secFlg |= CIFSSEC_MUST_SEAL;
1906 */
Steve French95b1cb92008-05-15 16:44:38 +00001907 vol->seal = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001908 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001909 case Opt_noac:
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001910 pr_warn("CIFS: Mount option noac not supported. Instead set /proc/fs/cifs/LookupCacheEnabled to 0\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001911 break;
1912 case Opt_fsc:
Suresh Jayaraman607a5692010-11-24 17:49:05 +05301913#ifndef CONFIG_CIFS_FSCACHE
Joe Perchesf96637b2013-05-04 22:12:25 -05001914 cifs_dbg(VFS, "FS-Cache support needs CONFIG_CIFS_FSCACHE kernel config option set\n");
Sean Finneyb9468452011-04-11 13:19:32 +00001915 goto cifs_parse_mount_err;
Suresh Jayaraman607a5692010-11-24 17:49:05 +05301916#endif
Suresh Jayaramanfa1df752010-07-05 18:13:36 +05301917 vol->fsc = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001918 break;
1919 case Opt_mfsymlinks:
Stefan Metzmacher736a33202010-07-30 14:56:00 +02001920 vol->mfsymlinks = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001921 break;
1922 case Opt_multiuser:
Jeff Layton0eb8a132010-10-06 19:51:12 -04001923 vol->multiuser = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001924 break;
Jeff Laytond8162552012-03-23 14:40:56 -04001925 case Opt_sloppy:
1926 sloppy = true;
1927 break;
Jeff Laytona0b3df52013-05-24 07:40:59 -04001928 case Opt_nosharesock:
1929 vol->nosharesock = true;
1930 break;
Steve Frenchb2a30772015-09-29 21:49:28 -05001931 case Opt_nopersistent:
1932 vol->nopersistent = true;
1933 if (vol->persistent) {
1934 cifs_dbg(VFS,
1935 "persistenthandles mount options conflict\n");
1936 goto cifs_parse_mount_err;
1937 }
1938 break;
1939 case Opt_persistent:
1940 vol->persistent = true;
Steve French592fafe2015-11-03 10:08:53 -06001941 if ((vol->nopersistent) || (vol->resilient)) {
Steve Frenchb2a30772015-09-29 21:49:28 -05001942 cifs_dbg(VFS,
1943 "persistenthandles mount options conflict\n");
1944 goto cifs_parse_mount_err;
1945 }
1946 break;
Steve French592fafe2015-11-03 10:08:53 -06001947 case Opt_resilient:
1948 vol->resilient = true;
1949 if (vol->persistent) {
1950 cifs_dbg(VFS,
1951 "persistenthandles mount options conflict\n");
1952 goto cifs_parse_mount_err;
1953 }
1954 break;
1955 case Opt_noresilient:
1956 vol->resilient = false; /* already the default */
1957 break;
Germano Percossi39566442016-12-15 12:31:18 +05301958 case Opt_domainauto:
1959 vol->domainauto = true;
1960 break;
Long Li8339dd32017-11-07 01:54:55 -07001961 case Opt_rdma:
1962 vol->rdma = true;
1963 break;
Aurelien Aptelbcc88802019-09-20 04:32:20 +02001964 case Opt_multichannel:
1965 vol->multichannel = true;
1966 break;
1967 case Opt_nomultichannel:
1968 vol->multichannel = false;
1969 break;
Steve French9fe5ff12019-06-24 20:39:04 -05001970 case Opt_compress:
1971 vol->compression = UNKNOWN_TYPE;
1972 cifs_dbg(VFS,
1973 "SMB3 compression support is experimental\n");
1974 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001975
1976 /* Numeric Values */
1977 case Opt_backupuid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001978 if (get_option_uid(args, &vol->backupuid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001979 cifs_dbg(VFS, "%s: Invalid backupuid value\n",
1980 __func__);
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001981 goto cifs_parse_mount_err;
1982 }
1983 vol->backupuid_specified = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001984 break;
1985 case Opt_backupgid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001986 if (get_option_gid(args, &vol->backupgid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001987 cifs_dbg(VFS, "%s: Invalid backupgid value\n",
1988 __func__);
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001989 goto cifs_parse_mount_err;
1990 }
1991 vol->backupgid_specified = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001992 break;
1993 case Opt_uid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001994 if (get_option_uid(args, &vol->linux_uid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001995 cifs_dbg(VFS, "%s: Invalid uid value\n",
1996 __func__);
Sean Finneyb9468452011-04-11 13:19:32 +00001997 goto cifs_parse_mount_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001999 uid_specified = true;
2000 break;
2001 case Opt_cruid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08002002 if (get_option_uid(args, &vol->cred_uid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002003 cifs_dbg(VFS, "%s: Invalid cruid value\n",
2004 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002005 goto cifs_parse_mount_err;
2006 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002007 break;
2008 case Opt_gid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08002009 if (get_option_gid(args, &vol->linux_gid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002010 cifs_dbg(VFS, "%s: Invalid gid value\n",
2011 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002012 goto cifs_parse_mount_err;
2013 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002014 gid_specified = true;
2015 break;
2016 case Opt_file_mode:
2017 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002018 cifs_dbg(VFS, "%s: Invalid file_mode value\n",
2019 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002020 goto cifs_parse_mount_err;
2021 }
2022 vol->file_mode = option;
2023 break;
2024 case Opt_dirmode:
2025 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002026 cifs_dbg(VFS, "%s: Invalid dir_mode value\n",
2027 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002028 goto cifs_parse_mount_err;
2029 }
2030 vol->dir_mode = option;
2031 break;
2032 case Opt_port:
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002033 if (get_option_ul(args, &option) ||
2034 option > USHRT_MAX) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002035 cifs_dbg(VFS, "%s: Invalid port value\n",
2036 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002037 goto cifs_parse_mount_err;
2038 }
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002039 port = (unsigned short)option;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002040 break;
Steve French563317e2019-09-08 23:22:02 -05002041 case Opt_min_enc_offload:
2042 if (get_option_ul(args, &option)) {
2043 cifs_dbg(VFS, "Invalid minimum encrypted read offload size (esize)\n");
2044 goto cifs_parse_mount_err;
2045 }
2046 vol->min_offload = option;
2047 break;
Steve Frenche8506d22019-02-28 21:32:15 -06002048 case Opt_blocksize:
2049 if (get_option_ul(args, &option)) {
2050 cifs_dbg(VFS, "%s: Invalid blocksize value\n",
2051 __func__);
2052 goto cifs_parse_mount_err;
2053 }
2054 /*
2055 * inode blocksize realistically should never need to be
2056 * less than 16K or greater than 16M and default is 1MB.
2057 * Note that small inode block sizes (e.g. 64K) can lead
2058 * to very poor performance of common tools like cp and scp
2059 */
2060 if ((option < CIFS_MAX_MSGSIZE) ||
2061 (option > (4 * SMB3_DEFAULT_IOSIZE))) {
2062 cifs_dbg(VFS, "%s: Invalid blocksize\n",
2063 __func__);
2064 goto cifs_parse_mount_err;
2065 }
2066 vol->bsize = option;
2067 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002068 case Opt_rsize:
2069 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002070 cifs_dbg(VFS, "%s: Invalid rsize value\n",
2071 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002072 goto cifs_parse_mount_err;
2073 }
2074 vol->rsize = option;
2075 break;
2076 case Opt_wsize:
2077 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002078 cifs_dbg(VFS, "%s: Invalid wsize value\n",
2079 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002080 goto cifs_parse_mount_err;
2081 }
2082 vol->wsize = option;
2083 break;
2084 case Opt_actimeo:
2085 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002086 cifs_dbg(VFS, "%s: Invalid actimeo value\n",
2087 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002088 goto cifs_parse_mount_err;
2089 }
2090 vol->actimeo = HZ * option;
2091 if (vol->actimeo > CIFS_MAX_ACTIMEO) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002092 cifs_dbg(VFS, "attribute cache timeout too large\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002093 goto cifs_parse_mount_err;
2094 }
2095 break;
Steve Frenchca567eb2019-03-29 16:31:07 -05002096 case Opt_handletimeout:
2097 if (get_option_ul(args, &option)) {
2098 cifs_dbg(VFS, "%s: Invalid handletimeout value\n",
2099 __func__);
2100 goto cifs_parse_mount_err;
2101 }
2102 vol->handle_timeout = option;
2103 if (vol->handle_timeout > SMB3_MAX_HANDLE_TIMEOUT) {
2104 cifs_dbg(VFS, "Invalid handle cache timeout, longer than 16 minutes\n");
2105 goto cifs_parse_mount_err;
2106 }
2107 break;
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002108 case Opt_echo_interval:
2109 if (get_option_ul(args, &option)) {
2110 cifs_dbg(VFS, "%s: Invalid echo interval value\n",
2111 __func__);
2112 goto cifs_parse_mount_err;
2113 }
2114 vol->echo_interval = option;
2115 break;
Steve French8b217fe2016-11-11 22:36:20 -06002116 case Opt_snapshot:
2117 if (get_option_ul(args, &option)) {
2118 cifs_dbg(VFS, "%s: Invalid snapshot time\n",
2119 __func__);
2120 goto cifs_parse_mount_err;
2121 }
2122 vol->snapshot_time = option;
2123 break;
Steve French141891f2016-09-23 00:44:16 -05002124 case Opt_max_credits:
2125 if (get_option_ul(args, &option) || (option < 20) ||
2126 (option > 60000)) {
2127 cifs_dbg(VFS, "%s: Invalid max_credits value\n",
2128 __func__);
2129 goto cifs_parse_mount_err;
2130 }
2131 vol->max_credits = option;
2132 break;
Aurelien Aptelbcc88802019-09-20 04:32:20 +02002133 case Opt_max_channels:
2134 if (get_option_ul(args, &option) || option < 1 ||
2135 option > CIFS_MAX_CHANNELS) {
2136 cifs_dbg(VFS, "%s: Invalid max_channels value, needs to be 1-%d\n",
2137 __func__, CIFS_MAX_CHANNELS);
2138 goto cifs_parse_mount_err;
2139 }
2140 vol->max_channels = option;
2141 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002142
2143 /* String Arguments */
2144
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01002145 case Opt_blank_user:
2146 /* null user, ie. anonymous authentication */
2147 vol->nullauth = 1;
2148 vol->username = NULL;
2149 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002150 case Opt_user:
2151 string = match_strdup(args);
2152 if (string == NULL)
2153 goto out_nomem;
2154
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002155 if (strnlen(string, CIFS_MAX_USERNAME_LEN) >
2156 CIFS_MAX_USERNAME_LEN) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002157 pr_warn("CIFS: username too long\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002158 goto cifs_parse_mount_err;
2159 }
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04002160
2161 kfree(vol->username);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002162 vol->username = kstrdup(string, GFP_KERNEL);
Joe Perchesf96637b2013-05-04 22:12:25 -05002163 if (!vol->username)
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002164 goto cifs_parse_mount_err;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002165 break;
2166 case Opt_blank_pass:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002167 /* passwords have to be handled differently
2168 * to allow the character used for deliminator
2169 * to be passed within them
2170 */
2171
Sachin Prabhuc369c9a2013-04-09 18:17:41 +01002172 /*
2173 * Check if this is a case where the password
2174 * starts with a delimiter
2175 */
2176 tmp_end = strchr(data, '=');
2177 tmp_end++;
2178 if (!(tmp_end < end && tmp_end[1] == delim)) {
2179 /* No it is not. Set the password to NULL */
Aurelien Aptel97f4b722018-01-25 15:59:39 +01002180 kzfree(vol->password);
Sachin Prabhuc369c9a2013-04-09 18:17:41 +01002181 vol->password = NULL;
2182 break;
2183 }
Gustavo A. R. Silva07fa6012018-11-27 10:01:51 +11002184 /* Fallthrough - to Opt_pass below.*/
Sachin Prabhuc369c9a2013-04-09 18:17:41 +01002185 case Opt_pass:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002186 /* Obtain the value string */
2187 value = strchr(data, '=');
Sachin Prabhu10238072012-03-28 18:07:08 +01002188 value++;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002189
2190 /* Set tmp_end to end of the string */
2191 tmp_end = (char *) value + strlen(value);
2192
2193 /* Check if following character is the deliminator
2194 * If yes, we have encountered a double deliminator
2195 * reset the NULL character to the deliminator
2196 */
Suresh Jayaramane73f8432012-06-12 07:15:50 +05302197 if (tmp_end < end && tmp_end[1] == delim) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002198 tmp_end[0] = delim;
2199
Suresh Jayaramane73f8432012-06-12 07:15:50 +05302200 /* Keep iterating until we get to a single
2201 * deliminator OR the end
2202 */
2203 while ((tmp_end = strchr(tmp_end, delim))
2204 != NULL && (tmp_end[1] == delim)) {
2205 tmp_end = (char *) &tmp_end[2];
2206 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002207
Suresh Jayaramane73f8432012-06-12 07:15:50 +05302208 /* Reset var options to point to next element */
2209 if (tmp_end) {
2210 tmp_end[0] = '\0';
2211 options = (char *) &tmp_end[1];
2212 } else
2213 /* Reached the end of the mount option
2214 * string */
2215 options = end;
2216 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002217
Aurelien Aptel97f4b722018-01-25 15:59:39 +01002218 kzfree(vol->password);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002219 /* Now build new password string */
2220 temp_len = strlen(value);
2221 vol->password = kzalloc(temp_len+1, GFP_KERNEL);
2222 if (vol->password == NULL) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002223 pr_warn("CIFS: no memory for password\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002224 goto cifs_parse_mount_err;
2225 }
2226
2227 for (i = 0, j = 0; i < temp_len; i++, j++) {
2228 vol->password[j] = value[i];
2229 if ((value[i] == delim) &&
2230 value[i+1] == delim)
2231 /* skip the second deliminator */
2232 i++;
2233 }
2234 vol->password[j] = '\0';
2235 break;
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01002236 case Opt_blank_ip:
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002237 /* FIXME: should this be an error instead? */
2238 got_ip = false;
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01002239 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002240 case Opt_ip:
2241 string = match_strdup(args);
2242 if (string == NULL)
2243 goto out_nomem;
2244
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002245 if (!cifs_convert_address(dstaddr, string,
2246 strlen(string))) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002247 pr_err("CIFS: bad ip= option (%s).\n", string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002248 goto cifs_parse_mount_err;
2249 }
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002250 got_ip = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002251 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002252 case Opt_domain:
2253 string = match_strdup(args);
2254 if (string == NULL)
2255 goto out_nomem;
2256
Chen Gang057d6332013-07-19 09:01:36 +08002257 if (strnlen(string, CIFS_MAX_DOMAINNAME_LEN)
2258 == CIFS_MAX_DOMAINNAME_LEN) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002259 pr_warn("CIFS: domain name too long\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002260 goto cifs_parse_mount_err;
2261 }
2262
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04002263 kfree(vol->domainname);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002264 vol->domainname = kstrdup(string, GFP_KERNEL);
2265 if (!vol->domainname) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002266 pr_warn("CIFS: no memory for domainname\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002267 goto cifs_parse_mount_err;
2268 }
Joe Perchesf96637b2013-05-04 22:12:25 -05002269 cifs_dbg(FYI, "Domain name set\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002270 break;
2271 case Opt_srcaddr:
2272 string = match_strdup(args);
2273 if (string == NULL)
2274 goto out_nomem;
2275
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01002276 if (!cifs_convert_address(
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002277 (struct sockaddr *)&vol->srcaddr,
2278 string, strlen(string))) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002279 pr_warn("CIFS: Could not parse srcaddr: %s\n",
2280 string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002281 goto cifs_parse_mount_err;
2282 }
2283 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002284 case Opt_iocharset:
2285 string = match_strdup(args);
2286 if (string == NULL)
2287 goto out_nomem;
2288
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01002289 if (strnlen(string, 1024) >= 65) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002290 pr_warn("CIFS: iocharset name too long.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002291 goto cifs_parse_mount_err;
2292 }
2293
Rasmus Villemoes87e747c2014-10-13 15:54:35 -07002294 if (strncasecmp(string, "default", 7) != 0) {
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04002295 kfree(vol->iocharset);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002296 vol->iocharset = kstrdup(string,
2297 GFP_KERNEL);
2298 if (!vol->iocharset) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002299 pr_warn("CIFS: no memory for charset\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002300 goto cifs_parse_mount_err;
2301 }
2302 }
2303 /* if iocharset not set then load_nls_default
2304 * is used by caller
2305 */
Joe Perchesf96637b2013-05-04 22:12:25 -05002306 cifs_dbg(FYI, "iocharset set to %s\n", string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002307 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002308 case Opt_netbiosname:
2309 string = match_strdup(args);
2310 if (string == NULL)
2311 goto out_nomem;
2312
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002313 memset(vol->source_rfc1001_name, 0x20,
2314 RFC1001_NAME_LEN);
2315 /*
2316 * FIXME: are there cases in which a comma can
2317 * be valid in workstation netbios name (and
2318 * need special handling)?
2319 */
2320 for (i = 0; i < RFC1001_NAME_LEN; i++) {
2321 /* don't ucase netbiosname for user */
2322 if (string[i] == 0)
2323 break;
2324 vol->source_rfc1001_name[i] = string[i];
2325 }
2326 /* The string has 16th byte zero still from
2327 * set at top of the function
2328 */
2329 if (i == RFC1001_NAME_LEN && string[i] != 0)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002330 pr_warn("CIFS: netbiosname longer than 15 truncated.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002331 break;
2332 case Opt_servern:
2333 /* servernetbiosname specified override *SMBSERVER */
2334 string = match_strdup(args);
2335 if (string == NULL)
2336 goto out_nomem;
2337
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002338 /* last byte, type, is 0x20 for servr type */
2339 memset(vol->target_rfc1001_name, 0x20,
2340 RFC1001_NAME_LEN_WITH_NULL);
2341
2342 /* BB are there cases in which a comma can be
2343 valid in this workstation netbios name
2344 (and need special handling)? */
2345
2346 /* user or mount helper must uppercase the
2347 netbios name */
2348 for (i = 0; i < 15; i++) {
2349 if (string[i] == 0)
2350 break;
2351 vol->target_rfc1001_name[i] = string[i];
2352 }
2353 /* The string has 16th byte zero still from
2354 set at top of the function */
2355 if (i == RFC1001_NAME_LEN && string[i] != 0)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002356 pr_warn("CIFS: server netbiosname longer than 15 truncated.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002357 break;
2358 case Opt_ver:
Steve French7e682f72017-08-31 21:34:24 -05002359 /* version of mount userspace tools, not dialect */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002360 string = match_strdup(args);
2361 if (string == NULL)
2362 goto out_nomem;
2363
Steve French7e682f72017-08-31 21:34:24 -05002364 /* If interface changes in mount.cifs bump to new ver */
Rasmus Villemoes87e747c2014-10-13 15:54:35 -07002365 if (strncasecmp(string, "1", 1) == 0) {
Steve French7e682f72017-08-31 21:34:24 -05002366 if (strlen(string) > 1) {
2367 pr_warn("Bad mount helper ver=%s. Did "
2368 "you want SMB1 (CIFS) dialect "
2369 "and mean to type vers=1.0 "
2370 "instead?\n", string);
2371 goto cifs_parse_mount_err;
2372 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002373 /* This is the default */
2374 break;
2375 }
2376 /* For all other value, error */
Steve French7e682f72017-08-31 21:34:24 -05002377 pr_warn("CIFS: Invalid mount helper version specified\n");
Sean Finneyb9468452011-04-11 13:19:32 +00002378 goto cifs_parse_mount_err;
Jeff Layton23db65f2012-05-15 12:20:51 -04002379 case Opt_vers:
Steve French7e682f72017-08-31 21:34:24 -05002380 /* protocol version (dialect) */
Jeff Layton23db65f2012-05-15 12:20:51 -04002381 string = match_strdup(args);
2382 if (string == NULL)
2383 goto out_nomem;
2384
Steve Frenchc7c137b2018-06-06 17:59:29 -05002385 if (cifs_parse_smb_version(string, vol, is_smb3) != 0)
Jeff Layton23db65f2012-05-15 12:20:51 -04002386 goto cifs_parse_mount_err;
Steve French7e682f72017-08-31 21:34:24 -05002387 got_version = true;
Jeff Layton23db65f2012-05-15 12:20:51 -04002388 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002389 case Opt_sec:
2390 string = match_strdup(args);
2391 if (string == NULL)
2392 goto out_nomem;
2393
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002394 if (cifs_parse_security_flavors(string, vol) != 0)
2395 goto cifs_parse_mount_err;
2396 break;
Jeff Layton15b6a472012-05-16 07:50:15 -04002397 case Opt_cache:
2398 string = match_strdup(args);
2399 if (string == NULL)
2400 goto out_nomem;
2401
2402 if (cifs_parse_cache_flavor(string, vol) != 0)
2403 goto cifs_parse_mount_err;
2404 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002405 default:
Jeff Laytond8162552012-03-23 14:40:56 -04002406 /*
2407 * An option we don't recognize. Save it off for later
2408 * if we haven't already found one
2409 */
2410 if (!invalid)
2411 invalid = data;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002412 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002414 /* Free up any allocated string */
2415 kfree(string);
2416 string = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 }
Jeff Layton0eb8a132010-10-06 19:51:12 -04002418
Jeff Laytond8162552012-03-23 14:40:56 -04002419 if (!sloppy && invalid) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002420 pr_err("CIFS: Unknown mount option \"%s\"\n", invalid);
Jeff Laytond8162552012-03-23 14:40:56 -04002421 goto cifs_parse_mount_err;
2422 }
2423
Long Li8339dd32017-11-07 01:54:55 -07002424 if (vol->rdma && vol->vals->protocol_id < SMB30_PROT_ID) {
2425 cifs_dbg(VFS, "SMB Direct requires Version >=3.0\n");
2426 goto cifs_parse_mount_err;
2427 }
2428
Jeff Layton8a8798a2012-01-17 16:09:15 -05002429#ifndef CONFIG_KEYS
2430 /* Muliuser mounts require CONFIG_KEYS support */
2431 if (vol->multiuser) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002432 cifs_dbg(VFS, "Multiuser mounts require kernels with CONFIG_KEYS enabled\n");
Sean Finneyb9468452011-04-11 13:19:32 +00002433 goto cifs_parse_mount_err;
Jeff Layton0eb8a132010-10-06 19:51:12 -04002434 }
Jeff Layton8a8798a2012-01-17 16:09:15 -05002435#endif
Jeff Laytone5e69ab2012-11-25 08:00:42 -05002436 if (!vol->UNC) {
Jeff Layton37d4f992013-05-24 07:40:05 -04002437 cifs_dbg(VFS, "CIFS mount error: No usable UNC path provided in device string!\n");
Jeff Laytone5e69ab2012-11-25 08:00:42 -05002438 goto cifs_parse_mount_err;
2439 }
Jeff Layton0eb8a132010-10-06 19:51:12 -04002440
Jeff Layton62a1a432012-12-10 06:10:45 -05002441 /* make sure UNC has a share name */
2442 if (!strchr(vol->UNC + 3, '\\')) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002443 cifs_dbg(VFS, "Malformed UNC. Unable to find share name.\n");
Jeff Layton62a1a432012-12-10 06:10:45 -05002444 goto cifs_parse_mount_err;
2445 }
2446
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002447 if (!got_ip) {
Daniel N Pettersson29bb3152017-04-27 11:32:36 +02002448 int len;
2449 const char *slash;
2450
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002451 /* No ip= option specified? Try to get it from UNC */
Daniel N Pettersson29bb3152017-04-27 11:32:36 +02002452 /* Use the address part of the UNC. */
2453 slash = strchr(&vol->UNC[2], '\\');
2454 len = slash - &vol->UNC[2];
2455 if (!cifs_convert_address(dstaddr, &vol->UNC[2], len)) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002456 pr_err("Unable to determine destination address.\n");
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002457 goto cifs_parse_mount_err;
2458 }
2459 }
2460
2461 /* set the port that we got earlier */
2462 cifs_set_port(dstaddr, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
Jeff Layton9b9d6b242009-07-31 06:56:09 -04002464 if (uid_specified)
2465 vol->override_uid = override_uid;
2466 else if (override_uid == 1)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002467 pr_notice("CIFS: ignoring forceuid mount option specified with no uid= option.\n");
Jeff Layton9b9d6b242009-07-31 06:56:09 -04002468
2469 if (gid_specified)
2470 vol->override_gid = override_gid;
2471 else if (override_gid == 1)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002472 pr_notice("CIFS: ignoring forcegid mount option specified with no gid= option.\n");
Jeff Layton9b9d6b242009-07-31 06:56:09 -04002473
Steve French7e682f72017-08-31 21:34:24 -05002474 if (got_version == false)
Steve Frenchba553442020-03-04 23:56:52 -06002475 pr_warn_once("No dialect specified on mount. Default has changed"
2476 " to a more secure dialect, SMB2.1 or later (e.g. "
2477 "SMB3.1.1), from CIFS (SMB1). To use the less secure "
2478 "SMB1 dialect to access old servers which do not "
2479 "support SMB3.1.1 (or even SMB3 or SMB2.1) specify "
2480 "vers=1.0 on mount.\n");
Steve French7e682f72017-08-31 21:34:24 -05002481
Sean Finneyb9468452011-04-11 13:19:32 +00002482 kfree(mountdata_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 return 0;
Sean Finneyb9468452011-04-11 13:19:32 +00002484
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002485out_nomem:
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002486 pr_warn("Could not allocate temporary buffer\n");
Sean Finneyb9468452011-04-11 13:19:32 +00002487cifs_parse_mount_err:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002488 kfree(string);
Sean Finneyb9468452011-04-11 13:19:32 +00002489 kfree(mountdata_copy);
2490 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491}
2492
Ben Greear3eb9a882010-09-01 17:06:02 -07002493/** Returns true if srcaddr isn't specified and rhs isn't
2494 * specified, or if srcaddr is specified and
2495 * matches the IP address of the rhs argument.
2496 */
Jeff Layton45151482010-07-06 20:43:02 -04002497static bool
Ben Greear3eb9a882010-09-01 17:06:02 -07002498srcip_matches(struct sockaddr *srcaddr, struct sockaddr *rhs)
2499{
2500 switch (srcaddr->sa_family) {
2501 case AF_UNSPEC:
2502 return (rhs->sa_family == AF_UNSPEC);
2503 case AF_INET: {
2504 struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr;
2505 struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs;
2506 return (saddr4->sin_addr.s_addr == vaddr4->sin_addr.s_addr);
2507 }
2508 case AF_INET6: {
2509 struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr;
Nickolai Zeldoviche3e27752013-01-16 21:36:17 -05002510 struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs;
Ben Greear3eb9a882010-09-01 17:06:02 -07002511 return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr);
2512 }
2513 default:
2514 WARN_ON(1);
2515 return false; /* don't expect to be here */
2516 }
2517}
2518
Pavel Shilovsky4b886132010-12-13 22:18:07 +03002519/*
2520 * If no port is specified in addr structure, we try to match with 445 port
2521 * and if it fails - with 139 ports. It should be called only if address
2522 * families of server and addr are equal.
2523 */
2524static bool
2525match_port(struct TCP_Server_Info *server, struct sockaddr *addr)
2526{
Steve French6da97912011-03-13 18:55:55 +00002527 __be16 port, *sport;
Pavel Shilovsky4b886132010-12-13 22:18:07 +03002528
Long Li3b249112019-05-15 14:09:04 -07002529 /* SMBDirect manages its own ports, don't match it here */
2530 if (server->rdma)
2531 return true;
2532
Pavel Shilovsky4b886132010-12-13 22:18:07 +03002533 switch (addr->sa_family) {
2534 case AF_INET:
2535 sport = &((struct sockaddr_in *) &server->dstaddr)->sin_port;
2536 port = ((struct sockaddr_in *) addr)->sin_port;
2537 break;
2538 case AF_INET6:
2539 sport = &((struct sockaddr_in6 *) &server->dstaddr)->sin6_port;
2540 port = ((struct sockaddr_in6 *) addr)->sin6_port;
2541 break;
2542 default:
2543 WARN_ON(1);
2544 return false;
2545 }
2546
2547 if (!port) {
2548 port = htons(CIFS_PORT);
2549 if (port == *sport)
2550 return true;
2551
2552 port = htons(RFC1001_PORT);
2553 }
2554
2555 return port == *sport;
2556}
Ben Greear3eb9a882010-09-01 17:06:02 -07002557
2558static bool
2559match_address(struct TCP_Server_Info *server, struct sockaddr *addr,
2560 struct sockaddr *srcaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561{
Jeff Layton45151482010-07-06 20:43:02 -04002562 switch (addr->sa_family) {
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002563 case AF_INET: {
2564 struct sockaddr_in *addr4 = (struct sockaddr_in *)addr;
2565 struct sockaddr_in *srv_addr4 =
2566 (struct sockaddr_in *)&server->dstaddr;
2567
2568 if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr)
Jeff Layton45151482010-07-06 20:43:02 -04002569 return false;
Jeff Layton45151482010-07-06 20:43:02 -04002570 break;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002571 }
2572 case AF_INET6: {
2573 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr;
2574 struct sockaddr_in6 *srv_addr6 =
2575 (struct sockaddr_in6 *)&server->dstaddr;
2576
Jeff Layton45151482010-07-06 20:43:02 -04002577 if (!ipv6_addr_equal(&addr6->sin6_addr,
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002578 &srv_addr6->sin6_addr))
Jeff Layton45151482010-07-06 20:43:02 -04002579 return false;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002580 if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id)
Jeff Layton45151482010-07-06 20:43:02 -04002581 return false;
Jeff Layton45151482010-07-06 20:43:02 -04002582 break;
2583 }
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002584 default:
2585 WARN_ON(1);
2586 return false; /* don't expect to be here */
2587 }
Jeff Layton45151482010-07-06 20:43:02 -04002588
Ben Greear3eb9a882010-09-01 17:06:02 -07002589 if (!srcip_matches(srcaddr, (struct sockaddr *)&server->srcaddr))
2590 return false;
2591
Jeff Layton45151482010-07-06 20:43:02 -04002592 return true;
2593}
2594
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002595static bool
2596match_security(struct TCP_Server_Info *server, struct smb_vol *vol)
2597{
Jeff Layton3f618222013-06-12 19:52:14 -05002598 /*
2599 * The select_sectype function should either return the vol->sectype
2600 * that was specified, or "Unspecified" if that sectype was not
2601 * compatible with the given NEGOTIATE request.
2602 */
Sachin Prabhuef65aae2017-01-18 15:35:57 +05302603 if (server->ops->select_sectype(server, vol->sectype)
2604 == Unspecified)
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002605 return false;
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002606
Jeff Layton3f618222013-06-12 19:52:14 -05002607 /*
2608 * Now check if signing mode is acceptable. No need to check
2609 * global_secflags at this point since if MUST_SIGN is set then
2610 * the server->sign had better be too.
2611 */
Jeff Layton38d77c52013-05-26 07:01:00 -04002612 if (vol->sign && !server->sign)
2613 return false;
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002614
2615 return true;
2616}
2617
Jeff Layton9fa114f2012-11-26 11:09:57 -05002618static int match_server(struct TCP_Server_Info *server, struct smb_vol *vol)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002619{
Jeff Layton9fa114f2012-11-26 11:09:57 -05002620 struct sockaddr *addr = (struct sockaddr *)&vol->dstaddr;
2621
Jeff Laytona0b3df52013-05-24 07:40:59 -04002622 if (vol->nosharesock)
2623 return 0;
2624
Steve French43cdae82019-06-13 14:26:49 -05002625 /* If multidialect negotiation see if existing sessions match one */
2626 if (strcmp(vol->vals->version_string, SMB3ANY_VERSION_STRING) == 0) {
2627 if (server->vals->protocol_id < SMB30_PROT_ID)
2628 return 0;
2629 } else if (strcmp(vol->vals->version_string,
2630 SMBDEFAULT_VERSION_STRING) == 0) {
2631 if (server->vals->protocol_id < SMB21_PROT_ID)
2632 return 0;
2633 } else if ((server->vals != vol->vals) || (server->ops != vol->ops))
Jeff Layton23db65f2012-05-15 12:20:51 -04002634 return 0;
2635
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002636 if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns))
2637 return 0;
2638
2639 if (!match_address(server, addr,
2640 (struct sockaddr *)&vol->srcaddr))
2641 return 0;
2642
2643 if (!match_port(server, addr))
2644 return 0;
2645
2646 if (!match_security(server, vol))
2647 return 0;
2648
Rabin Vincentb782fcc2016-07-19 09:25:45 +02002649 if (server->echo_interval != vol->echo_interval * HZ)
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002650 return 0;
2651
Long Li8339dd32017-11-07 01:54:55 -07002652 if (server->rdma != vol->rdma)
2653 return 0;
2654
Steve French4f5c10f2019-09-03 21:18:49 -05002655 if (server->ignore_signature != vol->ignore_signature)
2656 return 0;
2657
Steve French563317e2019-09-08 23:22:02 -05002658 if (server->min_offload != vol->min_offload)
2659 return 0;
2660
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002661 return 1;
2662}
2663
Paulo Alcantara54be1f62018-11-14 16:01:21 -02002664struct TCP_Server_Info *
Jeff Layton9fa114f2012-11-26 11:09:57 -05002665cifs_find_tcp_session(struct smb_vol *vol)
Jeff Layton45151482010-07-06 20:43:02 -04002666{
Jeff Laytone7ddee92008-11-14 13:44:38 -05002667 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302669 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton45151482010-07-06 20:43:02 -04002670 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
Paulo Alcantara (SUSE)3345bb42019-12-04 11:25:06 -03002671 /*
2672 * Skip ses channels since they're only handled in lower layers
2673 * (e.g. cifs_send_recv).
2674 */
2675 if (server->is_channel || !match_server(server, vol))
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002676 continue;
2677
Jeff Laytone7ddee92008-11-14 13:44:38 -05002678 ++server->srv_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302679 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -05002680 cifs_dbg(FYI, "Existing tcp session with server found\n");
Jeff Laytone7ddee92008-11-14 13:44:38 -05002681 return server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302683 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 return NULL;
2685}
2686
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002687void
2688cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689{
Steve Frencha5c3e1c2014-09-16 04:16:19 -05002690 struct task_struct *task;
2691
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302692 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002693 if (--server->srv_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302694 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002695 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 }
Steve Frenchdea570e02008-05-06 22:05:51 +00002697
Rob Landleyf1d0c992011-01-22 15:44:05 -06002698 put_net(cifs_net_ns(server));
2699
Jeff Laytone7ddee92008-11-14 13:44:38 -05002700 list_del_init(&server->tcp_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302701 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002702
Jeff Laytonc74093b2011-01-11 07:24:23 -05002703 cancel_delayed_work_sync(&server->echo);
2704
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002705 if (from_reconnect)
2706 /*
2707 * Avoid deadlock here: reconnect work calls
2708 * cifs_put_tcp_session() at its end. Need to be sure
2709 * that reconnect work does nothing with server pointer after
2710 * that step.
2711 */
2712 cancel_delayed_work(&server->reconnect);
2713 else
2714 cancel_delayed_work_sync(&server->reconnect);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002715
Jeff Laytone7ddee92008-11-14 13:44:38 -05002716 spin_lock(&GlobalMid_Lock);
2717 server->tcpStatus = CifsExiting;
2718 spin_unlock(&GlobalMid_Lock);
2719
Pavel Shilovsky026e93d2016-11-03 16:47:37 -07002720 cifs_crypto_secmech_release(server);
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05302721 cifs_fscache_release_client_cookie(server);
2722
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05002723 kfree(server->session_key.response);
2724 server->session_key.response = NULL;
2725 server->session_key.len = 0;
Steve Frencha5c3e1c2014-09-16 04:16:19 -05002726
2727 task = xchg(&server->tsk, NULL);
2728 if (task)
Eric W. Biederman72abe3b2019-05-15 12:33:50 -05002729 send_sig(SIGKILL, task, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730}
2731
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02002732struct TCP_Server_Info *
Jeff Layton63c038c2008-12-01 18:41:46 -05002733cifs_get_tcp_session(struct smb_vol *volume_info)
2734{
2735 struct TCP_Server_Info *tcp_ses = NULL;
Jeff Layton63c038c2008-12-01 18:41:46 -05002736 int rc;
2737
Joe Perchesf96637b2013-05-04 22:12:25 -05002738 cifs_dbg(FYI, "UNC: %s\n", volume_info->UNC);
Jeff Layton63c038c2008-12-01 18:41:46 -05002739
2740 /* see if we already have a matching tcp_ses */
Jeff Layton9fa114f2012-11-26 11:09:57 -05002741 tcp_ses = cifs_find_tcp_session(volume_info);
Jeff Layton63c038c2008-12-01 18:41:46 -05002742 if (tcp_ses)
2743 return tcp_ses;
2744
2745 tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL);
2746 if (!tcp_ses) {
2747 rc = -ENOMEM;
2748 goto out_err;
2749 }
2750
Jeff Layton23db65f2012-05-15 12:20:51 -04002751 tcp_ses->ops = volume_info->ops;
2752 tcp_ses->vals = volume_info->vals;
Rob Landleyf1d0c992011-01-22 15:44:05 -06002753 cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns));
Jeff Layton63c038c2008-12-01 18:41:46 -05002754 tcp_ses->hostname = extract_hostname(volume_info->UNC);
2755 if (IS_ERR(tcp_ses->hostname)) {
2756 rc = PTR_ERR(tcp_ses->hostname);
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002757 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002758 }
2759
Paulo Alcantara (SUSE)8eecd1c2019-07-16 19:04:50 -03002760 tcp_ses->noblockcnt = volume_info->rootfs;
2761 tcp_ses->noblocksnd = volume_info->noblocksnd || volume_info->rootfs;
Jeff Layton63c038c2008-12-01 18:41:46 -05002762 tcp_ses->noautotune = volume_info->noautotune;
Steve French6a5fa2362010-01-01 01:28:43 +00002763 tcp_ses->tcp_nodelay = volume_info->sockopt_tcp_nodelay;
Long Li8339dd32017-11-07 01:54:55 -07002764 tcp_ses->rdma = volume_info->rdma;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +03002765 tcp_ses->in_flight = 0;
Steve French1b63f182019-09-09 22:57:11 -05002766 tcp_ses->max_in_flight = 0;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +04002767 tcp_ses->credits = 1;
Jeff Layton63c038c2008-12-01 18:41:46 -05002768 init_waitqueue_head(&tcp_ses->response_q);
2769 init_waitqueue_head(&tcp_ses->request_q);
2770 INIT_LIST_HEAD(&tcp_ses->pending_mid_q);
2771 mutex_init(&tcp_ses->srv_mutex);
2772 memcpy(tcp_ses->workstation_RFC1001_name,
2773 volume_info->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
2774 memcpy(tcp_ses->server_RFC1001_name,
2775 volume_info->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -05002776 tcp_ses->session_estab = false;
Jeff Layton63c038c2008-12-01 18:41:46 -05002777 tcp_ses->sequence_number = 0;
Pavel Shilovsky5b964852019-01-18 11:30:26 -08002778 tcp_ses->reconnect_instance = 1;
Steve Frenchfda35942011-01-20 18:06:34 +00002779 tcp_ses->lstrp = jiffies;
Steve French9fe5ff12019-06-24 20:39:04 -05002780 tcp_ses->compress_algorithm = cpu_to_le16(volume_info->compression);
Jeff Layton58fa0152012-05-01 17:41:16 -04002781 spin_lock_init(&tcp_ses->req_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002782 INIT_LIST_HEAD(&tcp_ses->tcp_ses_list);
2783 INIT_LIST_HEAD(&tcp_ses->smb_ses_list);
Jeff Laytonc74093b2011-01-11 07:24:23 -05002784 INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002785 INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server);
2786 mutex_init(&tcp_ses->reconnect_mutex);
Jeff Layton9fa114f2012-11-26 11:09:57 -05002787 memcpy(&tcp_ses->srcaddr, &volume_info->srcaddr,
2788 sizeof(tcp_ses->srcaddr));
2789 memcpy(&tcp_ses->dstaddr, &volume_info->dstaddr,
2790 sizeof(tcp_ses->dstaddr));
Aurelien Aptelbcc88802019-09-20 04:32:20 +02002791 if (volume_info->use_client_guid)
2792 memcpy(tcp_ses->client_guid, volume_info->client_guid,
2793 SMB2_CLIENT_GUID_SIZE);
2794 else
2795 generate_random_uuid(tcp_ses->client_guid);
Jeff Layton63c038c2008-12-01 18:41:46 -05002796 /*
2797 * at this point we are the only ones with the pointer
2798 * to the struct since the kernel thread not created yet
2799 * no need to spinlock this init of tcpStatus or srv_count
2800 */
2801 tcp_ses->tcpStatus = CifsNew;
2802 ++tcp_ses->srv_count;
2803
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002804 if (volume_info->echo_interval >= SMB_ECHO_INTERVAL_MIN &&
2805 volume_info->echo_interval <= SMB_ECHO_INTERVAL_MAX)
2806 tcp_ses->echo_interval = volume_info->echo_interval * HZ;
2807 else
2808 tcp_ses->echo_interval = SMB_ECHO_INTERVAL_DEFAULT * HZ;
Long Li2f894642017-11-22 17:38:34 -07002809 if (tcp_ses->rdma) {
2810#ifndef CONFIG_CIFS_SMB_DIRECT
2811 cifs_dbg(VFS, "CONFIG_CIFS_SMB_DIRECT is not enabled\n");
2812 rc = -ENOENT;
2813 goto out_err_crypto_release;
2814#endif
2815 tcp_ses->smbd_conn = smbd_get_connection(
2816 tcp_ses, (struct sockaddr *)&volume_info->dstaddr);
2817 if (tcp_ses->smbd_conn) {
2818 cifs_dbg(VFS, "RDMA transport established\n");
2819 rc = 0;
2820 goto smbd_connected;
2821 } else {
2822 rc = -ENOENT;
2823 goto out_err_crypto_release;
2824 }
2825 }
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002826 rc = ip_connect(tcp_ses);
Jeff Layton63c038c2008-12-01 18:41:46 -05002827 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002828 cifs_dbg(VFS, "Error connecting to socket. Aborting operation.\n");
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002829 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002830 }
Long Li2f894642017-11-22 17:38:34 -07002831smbd_connected:
Jeff Layton63c038c2008-12-01 18:41:46 -05002832 /*
2833 * since we're in a cifs function already, we know that
2834 * this will succeed. No need for try_module_get().
2835 */
2836 __module_get(THIS_MODULE);
Al Viro7c97c202011-06-21 08:51:28 -04002837 tcp_ses->tsk = kthread_run(cifs_demultiplex_thread,
Jeff Layton63c038c2008-12-01 18:41:46 -05002838 tcp_ses, "cifsd");
2839 if (IS_ERR(tcp_ses->tsk)) {
2840 rc = PTR_ERR(tcp_ses->tsk);
Joe Perchesf96637b2013-05-04 22:12:25 -05002841 cifs_dbg(VFS, "error %d create cifsd thread\n", rc);
Jeff Layton63c038c2008-12-01 18:41:46 -05002842 module_put(THIS_MODULE);
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002843 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002844 }
Steve French563317e2019-09-08 23:22:02 -05002845 tcp_ses->min_offload = volume_info->min_offload;
Steve Frenchfd88ce92011-04-12 01:01:14 +00002846 tcp_ses->tcpStatus = CifsNeedNegotiate;
Jeff Layton63c038c2008-12-01 18:41:46 -05002847
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02002848 tcp_ses->nr_targets = 1;
Steve French4f5c10f2019-09-03 21:18:49 -05002849 tcp_ses->ignore_signature = volume_info->ignore_signature;
Jeff Layton63c038c2008-12-01 18:41:46 -05002850 /* thread spawned, put it on the list */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302851 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002852 list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302853 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002854
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05302855 cifs_fscache_get_client_cookie(tcp_ses);
2856
Jeff Laytonc74093b2011-01-11 07:24:23 -05002857 /* queue echo request delayed work */
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002858 queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval);
Jeff Laytonc74093b2011-01-11 07:24:23 -05002859
Jeff Layton63c038c2008-12-01 18:41:46 -05002860 return tcp_ses;
2861
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002862out_err_crypto_release:
Pavel Shilovsky026e93d2016-11-03 16:47:37 -07002863 cifs_crypto_secmech_release(tcp_ses);
Shirish Pargaonkard2b91522010-10-21 14:25:08 -05002864
Rob Landleyf1d0c992011-01-22 15:44:05 -06002865 put_net(cifs_net_ns(tcp_ses));
2866
Jeff Layton63c038c2008-12-01 18:41:46 -05002867out_err:
2868 if (tcp_ses) {
Steve French8347a5c2009-10-06 18:31:29 +00002869 if (!IS_ERR(tcp_ses->hostname))
2870 kfree(tcp_ses->hostname);
Jeff Layton63c038c2008-12-01 18:41:46 -05002871 if (tcp_ses->ssocket)
2872 sock_release(tcp_ses->ssocket);
2873 kfree(tcp_ses);
2874 }
2875 return ERR_PTR(rc);
2876}
2877
Steve French96daf2b2011-05-27 04:34:02 +00002878static int match_session(struct cifs_ses *ses, struct smb_vol *vol)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002879{
Jeff Layton3f618222013-06-12 19:52:14 -05002880 if (vol->sectype != Unspecified &&
2881 vol->sectype != ses->sectype)
2882 return 0;
2883
Aurelien Aptelbcc88802019-09-20 04:32:20 +02002884 /*
2885 * If an existing session is limited to less channels than
2886 * requested, it should not be reused
2887 */
2888 if (ses->chan_max < vol->max_channels)
2889 return 0;
2890
Jeff Layton3f618222013-06-12 19:52:14 -05002891 switch (ses->sectype) {
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002892 case Kerberos:
Eric W. Biederman64ed39d2013-02-06 02:30:39 -08002893 if (!uid_eq(vol->cred_uid, ses->cred_uid))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002894 return 0;
2895 break;
2896 default:
Jeff Layton04febab2012-01-17 16:09:15 -05002897 /* NULL username means anonymous session */
2898 if (ses->user_name == NULL) {
2899 if (!vol->nullauth)
2900 return 0;
2901 break;
2902 }
2903
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002904 /* anything else takes username/password */
Jeff Layton04febab2012-01-17 16:09:15 -05002905 if (strncmp(ses->user_name,
2906 vol->username ? vol->username : "",
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002907 CIFS_MAX_USERNAME_LEN))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002908 return 0;
Jeff Layton08b37d52014-05-23 06:53:10 -04002909 if ((vol->username && strlen(vol->username) != 0) &&
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002910 ses->password != NULL &&
2911 strncmp(ses->password,
2912 vol->password ? vol->password : "",
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002913 CIFS_MAX_PASSWORD_LEN))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002914 return 0;
2915 }
2916 return 1;
2917}
2918
Aurelien Aptelb327a712018-01-24 13:46:10 +01002919/**
2920 * cifs_setup_ipc - helper to setup the IPC tcon for the session
2921 *
2922 * A new IPC connection is made and stored in the session
2923 * tcon_ipc. The IPC tcon has the same lifetime as the session.
2924 */
2925static int
2926cifs_setup_ipc(struct cifs_ses *ses, struct smb_vol *volume_info)
2927{
2928 int rc = 0, xid;
2929 struct cifs_tcon *tcon;
2930 struct nls_table *nls_codepage;
2931 char unc[SERVER_NAME_LENGTH + sizeof("//x/IPC$")] = {0};
2932 bool seal = false;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002933 struct TCP_Server_Info *server = ses->server;
Aurelien Aptelb327a712018-01-24 13:46:10 +01002934
2935 /*
2936 * If the mount request that resulted in the creation of the
2937 * session requires encryption, force IPC to be encrypted too.
2938 */
2939 if (volume_info->seal) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002940 if (server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION)
Aurelien Aptelb327a712018-01-24 13:46:10 +01002941 seal = true;
2942 else {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002943 cifs_server_dbg(VFS,
Aurelien Aptelb327a712018-01-24 13:46:10 +01002944 "IPC: server doesn't support encryption\n");
2945 return -EOPNOTSUPP;
2946 }
2947 }
2948
2949 tcon = tconInfoAlloc();
2950 if (tcon == NULL)
2951 return -ENOMEM;
2952
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002953 scnprintf(unc, sizeof(unc), "\\\\%s\\IPC$", server->hostname);
Aurelien Aptelb327a712018-01-24 13:46:10 +01002954
2955 /* cannot fail */
2956 nls_codepage = load_nls_default();
2957
2958 xid = get_xid();
2959 tcon->ses = ses;
2960 tcon->ipc = true;
2961 tcon->seal = seal;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002962 rc = server->ops->tree_connect(xid, ses, unc, tcon, nls_codepage);
Aurelien Aptelb327a712018-01-24 13:46:10 +01002963 free_xid(xid);
2964
2965 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002966 cifs_server_dbg(VFS, "failed to connect to IPC (rc=%d)\n", rc);
Aurelien Aptelb327a712018-01-24 13:46:10 +01002967 tconInfoFree(tcon);
2968 goto out;
2969 }
2970
2971 cifs_dbg(FYI, "IPC tcon rc = %d ipc tid = %d\n", rc, tcon->tid);
2972
2973 ses->tcon_ipc = tcon;
2974out:
2975 unload_nls(nls_codepage);
2976 return rc;
2977}
2978
2979/**
2980 * cifs_free_ipc - helper to release the session IPC tcon
2981 *
2982 * Needs to be called everytime a session is destroyed
2983 */
2984static int
2985cifs_free_ipc(struct cifs_ses *ses)
2986{
2987 int rc = 0, xid;
2988 struct cifs_tcon *tcon = ses->tcon_ipc;
2989
2990 if (tcon == NULL)
2991 return 0;
2992
2993 if (ses->server->ops->tree_disconnect) {
2994 xid = get_xid();
2995 rc = ses->server->ops->tree_disconnect(xid, tcon);
2996 free_xid(xid);
2997 }
2998
2999 if (rc)
3000 cifs_dbg(FYI, "failed to disconnect IPC tcon (rc=%d)\n", rc);
3001
3002 tconInfoFree(tcon);
3003 ses->tcon_ipc = NULL;
3004 return rc;
3005}
3006
Steve French96daf2b2011-05-27 04:34:02 +00003007static struct cifs_ses *
Jeff Layton4ff67b72010-07-06 20:43:02 -04003008cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb_vol *vol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
Steve French96daf2b2011-05-27 04:34:02 +00003010 struct cifs_ses *ses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303012 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton4ff67b72010-07-06 20:43:02 -04003013 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05003014 if (ses->status == CifsExiting)
3015 continue;
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00003016 if (!match_session(ses, vol))
3017 continue;
Jeff Layton14fbf502008-11-14 13:53:46 -05003018 ++ses->ses_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303019 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05003020 return ses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303022 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 return NULL;
3024}
3025
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03003026void cifs_put_smb_ses(struct cifs_ses *ses)
Jeff Layton14fbf502008-11-14 13:53:46 -05003027{
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05003028 unsigned int rc, xid;
Jeff Layton14fbf502008-11-14 13:53:46 -05003029 struct TCP_Server_Info *server = ses->server;
3030
Joe Perchesf96637b2013-05-04 22:12:25 -05003031 cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05003032
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303033 spin_lock(&cifs_tcp_ses_lock);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05003034 if (ses->status == CifsExiting) {
3035 spin_unlock(&cifs_tcp_ses_lock);
3036 return;
3037 }
Jeff Layton14fbf502008-11-14 13:53:46 -05003038 if (--ses->ses_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303039 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05003040 return;
3041 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05003042 if (ses->status == CifsGood)
3043 ses->status = CifsExiting;
3044 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05003045
Aurelien Aptelb327a712018-01-24 13:46:10 +01003046 cifs_free_ipc(ses);
3047
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05003048 if (ses->status == CifsExiting && server->ops->logoff) {
3049 xid = get_xid();
3050 rc = server->ops->logoff(xid, ses);
3051 if (rc)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10003052 cifs_server_dbg(VFS, "%s: Session Logoff failure rc=%d\n",
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05003053 __func__, rc);
3054 _free_xid(xid);
3055 }
3056
3057 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05003058 list_del_init(&ses->smb_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303059 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05003060
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02003061 /* close any extra channels */
3062 if (ses->chan_count > 1) {
3063 int i;
3064
3065 for (i = 1; i < ses->chan_count; i++)
3066 cifs_put_tcp_session(ses->chans[i].server, 0);
3067 }
3068
Jeff Layton14fbf502008-11-14 13:53:46 -05003069 sesInfoFree(ses);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07003070 cifs_put_tcp_session(server, 0);
Jeff Layton14fbf502008-11-14 13:53:46 -05003071}
3072
Jeff Layton8a8798a2012-01-17 16:09:15 -05003073#ifdef CONFIG_KEYS
3074
Chen Gang057d6332013-07-19 09:01:36 +08003075/* strlen("cifs:a:") + CIFS_MAX_DOMAINNAME_LEN + 1 */
3076#define CIFSCREDS_DESC_SIZE (7 + CIFS_MAX_DOMAINNAME_LEN + 1)
Jeff Layton8a8798a2012-01-17 16:09:15 -05003077
3078/* Populate username and pw fields from keyring if possible */
3079static int
3080cifs_set_cifscreds(struct smb_vol *vol, struct cifs_ses *ses)
3081{
3082 int rc = 0;
Ronnie Sahlbergf2aee322019-08-22 08:09:50 +10003083 int is_domain = 0;
David Howells146aa8b2015-10-21 14:04:48 +01003084 const char *delim, *payload;
3085 char *desc;
Jeff Layton8a8798a2012-01-17 16:09:15 -05003086 ssize_t len;
3087 struct key *key;
3088 struct TCP_Server_Info *server = ses->server;
3089 struct sockaddr_in *sa;
3090 struct sockaddr_in6 *sa6;
David Howells146aa8b2015-10-21 14:04:48 +01003091 const struct user_key_payload *upayload;
Jeff Layton8a8798a2012-01-17 16:09:15 -05003092
3093 desc = kmalloc(CIFSCREDS_DESC_SIZE, GFP_KERNEL);
3094 if (!desc)
3095 return -ENOMEM;
3096
3097 /* try to find an address key first */
3098 switch (server->dstaddr.ss_family) {
3099 case AF_INET:
3100 sa = (struct sockaddr_in *)&server->dstaddr;
3101 sprintf(desc, "cifs:a:%pI4", &sa->sin_addr.s_addr);
3102 break;
3103 case AF_INET6:
3104 sa6 = (struct sockaddr_in6 *)&server->dstaddr;
3105 sprintf(desc, "cifs:a:%pI6c", &sa6->sin6_addr.s6_addr);
3106 break;
3107 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05003108 cifs_dbg(FYI, "Bad ss_family (%hu)\n",
3109 server->dstaddr.ss_family);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003110 rc = -EINVAL;
3111 goto out_err;
3112 }
3113
Joe Perchesf96637b2013-05-04 22:12:25 -05003114 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
Linus Torvalds028db3e2019-07-10 18:43:43 -07003115 key = request_key(&key_type_logon, desc, "");
Jeff Layton8a8798a2012-01-17 16:09:15 -05003116 if (IS_ERR(key)) {
3117 if (!ses->domainName) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003118 cifs_dbg(FYI, "domainName is NULL\n");
Jeff Layton8a8798a2012-01-17 16:09:15 -05003119 rc = PTR_ERR(key);
3120 goto out_err;
3121 }
3122
3123 /* didn't work, try to find a domain key */
3124 sprintf(desc, "cifs:d:%s", ses->domainName);
Joe Perchesf96637b2013-05-04 22:12:25 -05003125 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
Linus Torvalds028db3e2019-07-10 18:43:43 -07003126 key = request_key(&key_type_logon, desc, "");
Jeff Layton8a8798a2012-01-17 16:09:15 -05003127 if (IS_ERR(key)) {
3128 rc = PTR_ERR(key);
3129 goto out_err;
3130 }
Ronnie Sahlbergf2aee322019-08-22 08:09:50 +10003131 is_domain = 1;
Jeff Layton8a8798a2012-01-17 16:09:15 -05003132 }
3133
3134 down_read(&key->sem);
David Howells0837e492017-03-01 15:11:23 +00003135 upayload = user_key_payload_locked(key);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003136 if (IS_ERR_OR_NULL(upayload)) {
Jeff Layton4edc53c2012-02-07 06:30:51 -05003137 rc = upayload ? PTR_ERR(upayload) : -EINVAL;
Jeff Layton8a8798a2012-01-17 16:09:15 -05003138 goto out_key_put;
3139 }
3140
3141 /* find first : in payload */
David Howells146aa8b2015-10-21 14:04:48 +01003142 payload = upayload->data;
Jeff Layton8a8798a2012-01-17 16:09:15 -05003143 delim = strnchr(payload, upayload->datalen, ':');
Joe Perchesf96637b2013-05-04 22:12:25 -05003144 cifs_dbg(FYI, "payload=%s\n", payload);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003145 if (!delim) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003146 cifs_dbg(FYI, "Unable to find ':' in payload (datalen=%d)\n",
3147 upayload->datalen);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003148 rc = -EINVAL;
3149 goto out_key_put;
3150 }
3151
3152 len = delim - payload;
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04003153 if (len > CIFS_MAX_USERNAME_LEN || len <= 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003154 cifs_dbg(FYI, "Bad value from username search (len=%zd)\n",
3155 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003156 rc = -EINVAL;
3157 goto out_key_put;
3158 }
3159
3160 vol->username = kstrndup(payload, len, GFP_KERNEL);
3161 if (!vol->username) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003162 cifs_dbg(FYI, "Unable to allocate %zd bytes for username\n",
3163 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003164 rc = -ENOMEM;
3165 goto out_key_put;
3166 }
Joe Perchesf96637b2013-05-04 22:12:25 -05003167 cifs_dbg(FYI, "%s: username=%s\n", __func__, vol->username);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003168
3169 len = key->datalen - (len + 1);
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04003170 if (len > CIFS_MAX_PASSWORD_LEN || len <= 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003171 cifs_dbg(FYI, "Bad len for password search (len=%zd)\n", len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003172 rc = -EINVAL;
3173 kfree(vol->username);
3174 vol->username = NULL;
3175 goto out_key_put;
3176 }
3177
3178 ++delim;
3179 vol->password = kstrndup(delim, len, GFP_KERNEL);
3180 if (!vol->password) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003181 cifs_dbg(FYI, "Unable to allocate %zd bytes for password\n",
3182 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003183 rc = -ENOMEM;
3184 kfree(vol->username);
3185 vol->username = NULL;
3186 goto out_key_put;
3187 }
3188
Ronnie Sahlbergf2aee322019-08-22 08:09:50 +10003189 /*
3190 * If we have a domain key then we must set the domainName in the
3191 * for the request.
3192 */
3193 if (is_domain && ses->domainName) {
3194 vol->domainname = kstrndup(ses->domainName,
3195 strlen(ses->domainName),
3196 GFP_KERNEL);
3197 if (!vol->domainname) {
3198 cifs_dbg(FYI, "Unable to allocate %zd bytes for "
3199 "domain\n", len);
3200 rc = -ENOMEM;
3201 kfree(vol->username);
3202 vol->username = NULL;
Dan Carpenter478228e2019-08-27 13:59:17 +03003203 kzfree(vol->password);
Ronnie Sahlbergf2aee322019-08-22 08:09:50 +10003204 vol->password = NULL;
3205 goto out_key_put;
3206 }
3207 }
3208
Jeff Layton8a8798a2012-01-17 16:09:15 -05003209out_key_put:
3210 up_read(&key->sem);
3211 key_put(key);
3212out_err:
3213 kfree(desc);
Joe Perchesf96637b2013-05-04 22:12:25 -05003214 cifs_dbg(FYI, "%s: returning %d\n", __func__, rc);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003215 return rc;
3216}
3217#else /* ! CONFIG_KEYS */
3218static inline int
3219cifs_set_cifscreds(struct smb_vol *vol __attribute__((unused)),
3220 struct cifs_ses *ses __attribute__((unused)))
3221{
3222 return -ENOSYS;
3223}
3224#endif /* CONFIG_KEYS */
3225
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01003226/**
3227 * cifs_get_smb_ses - get a session matching @volume_info data from @server
3228 *
3229 * This function assumes it is being called from cifs_mount() where we
3230 * already got a server reference (server refcount +1). See
3231 * cifs_get_tcon() for refcount explanations.
3232 */
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03003233struct cifs_ses *
Jeff Layton36988c72010-04-24 07:57:43 -04003234cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb_vol *volume_info)
3235{
Pavel Shilovsky286170a2012-05-25 10:43:58 +04003236 int rc = -ENOMEM;
3237 unsigned int xid;
Steve French96daf2b2011-05-27 04:34:02 +00003238 struct cifs_ses *ses;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003239 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
3240 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
Jeff Layton36988c72010-04-24 07:57:43 -04003241
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003242 xid = get_xid();
Jeff Layton36988c72010-04-24 07:57:43 -04003243
Jeff Layton4ff67b72010-07-06 20:43:02 -04003244 ses = cifs_find_smb_ses(server, volume_info);
Jeff Layton36988c72010-04-24 07:57:43 -04003245 if (ses) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003246 cifs_dbg(FYI, "Existing smb sess found (status=%d)\n",
3247 ses->status);
Jeff Layton36988c72010-04-24 07:57:43 -04003248
Jeff Layton36988c72010-04-24 07:57:43 -04003249 mutex_lock(&ses->session_mutex);
Jeff Layton198b5682010-04-24 07:57:48 -04003250 rc = cifs_negotiate_protocol(xid, ses);
3251 if (rc) {
3252 mutex_unlock(&ses->session_mutex);
3253 /* problem -- put our ses reference */
3254 cifs_put_smb_ses(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003255 free_xid(xid);
Jeff Layton198b5682010-04-24 07:57:48 -04003256 return ERR_PTR(rc);
3257 }
Jeff Layton36988c72010-04-24 07:57:43 -04003258 if (ses->need_reconnect) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003259 cifs_dbg(FYI, "Session needs reconnect\n");
Jeff Layton36988c72010-04-24 07:57:43 -04003260 rc = cifs_setup_session(xid, ses,
3261 volume_info->local_nls);
3262 if (rc) {
3263 mutex_unlock(&ses->session_mutex);
3264 /* problem -- put our reference */
3265 cifs_put_smb_ses(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003266 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04003267 return ERR_PTR(rc);
3268 }
3269 }
3270 mutex_unlock(&ses->session_mutex);
Jeff Layton460cf342010-09-14 11:38:24 -04003271
3272 /* existing SMB ses has a server reference already */
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07003273 cifs_put_tcp_session(server, 0);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003274 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04003275 return ses;
3276 }
3277
Joe Perchesf96637b2013-05-04 22:12:25 -05003278 cifs_dbg(FYI, "Existing smb sess not found\n");
Jeff Layton36988c72010-04-24 07:57:43 -04003279 ses = sesInfoAlloc();
3280 if (ses == NULL)
3281 goto get_ses_fail;
3282
3283 /* new SMB session uses our server ref */
3284 ses->server = server;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003285 if (server->dstaddr.ss_family == AF_INET6)
3286 sprintf(ses->serverName, "%pI6", &addr6->sin6_addr);
Jeff Layton36988c72010-04-24 07:57:43 -04003287 else
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003288 sprintf(ses->serverName, "%pI4", &addr->sin_addr);
Jeff Layton36988c72010-04-24 07:57:43 -04003289
Steve French8727c8a2011-02-25 01:11:56 -06003290 if (volume_info->username) {
3291 ses->user_name = kstrdup(volume_info->username, GFP_KERNEL);
3292 if (!ses->user_name)
3293 goto get_ses_fail;
3294 }
Jeff Layton36988c72010-04-24 07:57:43 -04003295
3296 /* volume_info->password freed at unmount */
3297 if (volume_info->password) {
3298 ses->password = kstrdup(volume_info->password, GFP_KERNEL);
3299 if (!ses->password)
3300 goto get_ses_fail;
3301 }
3302 if (volume_info->domainname) {
Shirish Pargaonkard3686d52010-10-28 09:53:07 -05003303 ses->domainName = kstrdup(volume_info->domainname, GFP_KERNEL);
3304 if (!ses->domainName)
3305 goto get_ses_fail;
Jeff Layton36988c72010-04-24 07:57:43 -04003306 }
Germano Percossi39566442016-12-15 12:31:18 +05303307 if (volume_info->domainauto)
3308 ses->domainAuto = volume_info->domainauto;
Jeff Layton3e4b3e12010-07-19 18:00:17 -04003309 ses->cred_uid = volume_info->cred_uid;
Jeff Layton36988c72010-04-24 07:57:43 -04003310 ses->linux_uid = volume_info->linux_uid;
Steve Frenchd9b94202011-04-12 01:24:57 +00003311
Jeff Layton28e11bd2013-05-26 07:01:00 -04003312 ses->sectype = volume_info->sectype;
3313 ses->sign = volume_info->sign;
Jeff Layton36988c72010-04-24 07:57:43 -04003314 mutex_lock(&ses->session_mutex);
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02003315
3316 /* add server as first channel */
3317 ses->chans[0].server = server;
3318 ses->chan_count = 1;
3319 ses->chan_max = volume_info->multichannel ? volume_info->max_channels:1;
3320
Jeff Layton198b5682010-04-24 07:57:48 -04003321 rc = cifs_negotiate_protocol(xid, ses);
3322 if (!rc)
3323 rc = cifs_setup_session(xid, ses, volume_info->local_nls);
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02003324
3325 /* each channel uses a different signing key */
3326 memcpy(ses->chans[0].signkey, ses->smb3signingkey,
3327 sizeof(ses->smb3signingkey));
3328
Jeff Layton36988c72010-04-24 07:57:43 -04003329 mutex_unlock(&ses->session_mutex);
Steve Frenchc8e56f12010-09-08 21:10:58 +00003330 if (rc)
Jeff Layton36988c72010-04-24 07:57:43 -04003331 goto get_ses_fail;
3332
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02003333 /* success, put it on the list and add it as first channel */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303334 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton36988c72010-04-24 07:57:43 -04003335 list_add(&ses->smb_ses_list, &server->smb_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303336 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton36988c72010-04-24 07:57:43 -04003337
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003338 free_xid(xid);
Aurelien Aptelb327a712018-01-24 13:46:10 +01003339
3340 cifs_setup_ipc(ses, volume_info);
3341
Jeff Layton36988c72010-04-24 07:57:43 -04003342 return ses;
3343
3344get_ses_fail:
3345 sesInfoFree(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003346 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04003347 return ERR_PTR(rc);
3348}
3349
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08003350static int match_tcon(struct cifs_tcon *tcon, struct smb_vol *volume_info)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00003351{
3352 if (tcon->tidStatus == CifsExiting)
3353 return 0;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08003354 if (strncmp(tcon->treeName, volume_info->UNC, MAX_TREE_SIZE))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00003355 return 0;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08003356 if (tcon->seal != volume_info->seal)
3357 return 0;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08003358 if (tcon->snapshot_time != volume_info->snapshot_time)
3359 return 0;
Steve Frenchca567eb2019-03-29 16:31:07 -05003360 if (tcon->handle_timeout != volume_info->handle_timeout)
3361 return 0;
Steve French3e7a02d2019-09-11 21:46:20 -05003362 if (tcon->no_lease != volume_info->no_lease)
3363 return 0;
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00003364 return 1;
3365}
3366
Steve French96daf2b2011-05-27 04:34:02 +00003367static struct cifs_tcon *
Steve French8b217fe2016-11-11 22:36:20 -06003368cifs_find_tcon(struct cifs_ses *ses, struct smb_vol *volume_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369{
3370 struct list_head *tmp;
Steve French96daf2b2011-05-27 04:34:02 +00003371 struct cifs_tcon *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303373 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05003374 list_for_each(tmp, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +00003375 tcon = list_entry(tmp, struct cifs_tcon, tcon_list);
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08003376 if (!match_tcon(tcon, volume_info))
Jeff Laytonf1987b42008-11-15 11:12:47 -05003377 continue;
Jeff Laytonf1987b42008-11-15 11:12:47 -05003378 ++tcon->tc_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303379 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 return tcon;
3381 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303382 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 return NULL;
3384}
3385
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07003386void
Steve French96daf2b2011-05-27 04:34:02 +00003387cifs_put_tcon(struct cifs_tcon *tcon)
Jeff Laytonf1987b42008-11-15 11:12:47 -05003388{
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003389 unsigned int xid;
Aurelien Aptelb327a712018-01-24 13:46:10 +01003390 struct cifs_ses *ses;
Jeff Laytonf1987b42008-11-15 11:12:47 -05003391
Aurelien Aptelb327a712018-01-24 13:46:10 +01003392 /*
3393 * IPC tcon share the lifetime of their session and are
3394 * destroyed in the session put function
3395 */
3396 if (tcon == NULL || tcon->ipc)
3397 return;
3398
3399 ses = tcon->ses;
Joe Perchesf96637b2013-05-04 22:12:25 -05003400 cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303401 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05003402 if (--tcon->tc_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303403 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05003404 return;
3405 }
3406
3407 list_del_init(&tcon->tcon_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303408 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05003409
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003410 xid = get_xid();
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003411 if (ses->server->ops->tree_disconnect)
3412 ses->server->ops->tree_disconnect(xid, tcon);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003413 _free_xid(xid);
Jeff Laytonf1987b42008-11-15 11:12:47 -05003414
Suresh Jayaramand03382c2010-07-05 18:12:27 +05303415 cifs_fscache_release_super_cookie(tcon);
Steve French9f841592010-07-23 20:37:53 +00003416 tconInfoFree(tcon);
Jeff Laytonf1987b42008-11-15 11:12:47 -05003417 cifs_put_smb_ses(ses);
3418}
3419
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01003420/**
3421 * cifs_get_tcon - get a tcon matching @volume_info data from @ses
3422 *
3423 * - tcon refcount is the number of mount points using the tcon.
3424 * - ses refcount is the number of tcon using the session.
3425 *
3426 * 1. This function assumes it is being called from cifs_mount() where
3427 * we already got a session reference (ses refcount +1).
3428 *
3429 * 2. Since we're in the context of adding a mount point, the end
3430 * result should be either:
3431 *
3432 * a) a new tcon already allocated with refcount=1 (1 mount point) and
3433 * its session refcount incremented (1 new tcon). This +1 was
3434 * already done in (1).
3435 *
3436 * b) an existing tcon with refcount+1 (add a mount point to it) and
3437 * identical ses refcount (no new tcon). Because of (1) we need to
3438 * decrement the ses refcount.
3439 */
Steve French96daf2b2011-05-27 04:34:02 +00003440static struct cifs_tcon *
3441cifs_get_tcon(struct cifs_ses *ses, struct smb_vol *volume_info)
Jeff Laytond00c28d2010-04-24 07:57:44 -04003442{
3443 int rc, xid;
Steve French96daf2b2011-05-27 04:34:02 +00003444 struct cifs_tcon *tcon;
Jeff Laytond00c28d2010-04-24 07:57:44 -04003445
Steve French8b217fe2016-11-11 22:36:20 -06003446 tcon = cifs_find_tcon(ses, volume_info);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003447 if (tcon) {
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01003448 /*
3449 * tcon has refcount already incremented but we need to
3450 * decrement extra ses reference gotten by caller (case b)
3451 */
Joe Perchesf96637b2013-05-04 22:12:25 -05003452 cifs_dbg(FYI, "Found match on UNC path\n");
Jeff Laytond00c28d2010-04-24 07:57:44 -04003453 cifs_put_smb_ses(ses);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003454 return tcon;
3455 }
3456
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003457 if (!ses->server->ops->tree_connect) {
3458 rc = -ENOSYS;
3459 goto out_fail;
3460 }
3461
Jeff Laytond00c28d2010-04-24 07:57:44 -04003462 tcon = tconInfoAlloc();
3463 if (tcon == NULL) {
3464 rc = -ENOMEM;
3465 goto out_fail;
3466 }
3467
Steve French8b217fe2016-11-11 22:36:20 -06003468 if (volume_info->snapshot_time) {
Steve French8b217fe2016-11-11 22:36:20 -06003469 if (ses->server->vals->protocol_id == 0) {
3470 cifs_dbg(VFS,
3471 "Use SMB2 or later for snapshot mount option\n");
3472 rc = -EOPNOTSUPP;
3473 goto out_fail;
3474 } else
3475 tcon->snapshot_time = volume_info->snapshot_time;
Steve French8b217fe2016-11-11 22:36:20 -06003476 }
3477
Steve Frenchca567eb2019-03-29 16:31:07 -05003478 if (volume_info->handle_timeout) {
3479 if (ses->server->vals->protocol_id == 0) {
3480 cifs_dbg(VFS,
3481 "Use SMB2.1 or later for handle timeout option\n");
3482 rc = -EOPNOTSUPP;
3483 goto out_fail;
3484 } else
3485 tcon->handle_timeout = volume_info->handle_timeout;
3486 }
3487
Jeff Laytond00c28d2010-04-24 07:57:44 -04003488 tcon->ses = ses;
3489 if (volume_info->password) {
3490 tcon->password = kstrdup(volume_info->password, GFP_KERNEL);
3491 if (!tcon->password) {
3492 rc = -ENOMEM;
3493 goto out_fail;
3494 }
3495 }
3496
Steve French23657ad2018-04-22 15:14:58 -05003497 if (volume_info->seal) {
3498 if (ses->server->vals->protocol_id == 0) {
3499 cifs_dbg(VFS,
3500 "SMB3 or later required for encryption\n");
3501 rc = -EOPNOTSUPP;
3502 goto out_fail;
3503 } else if (tcon->ses->server->capabilities &
3504 SMB2_GLOBAL_CAP_ENCRYPTION)
3505 tcon->seal = true;
3506 else {
3507 cifs_dbg(VFS, "Encryption is not supported on share\n");
3508 rc = -EOPNOTSUPP;
3509 goto out_fail;
3510 }
3511 }
3512
Steve French8505c8b2018-06-18 14:01:59 -05003513 if (volume_info->linux_ext) {
3514 if (ses->server->posix_ext_supported) {
Steve Frenchb3266142018-05-20 23:41:10 -05003515 tcon->posix_extensions = true;
Steve French2fbb5642018-06-12 12:11:31 -05003516 printk_once(KERN_WARNING
3517 "SMB3.11 POSIX Extensions are experimental\n");
Steve French8505c8b2018-06-18 14:01:59 -05003518 } else {
3519 cifs_dbg(VFS, "Server does not support mounting with posix SMB3.11 extensions.\n");
3520 rc = -EOPNOTSUPP;
3521 goto out_fail;
Steve French2fbb5642018-06-12 12:11:31 -05003522 }
Steve Frenchb3266142018-05-20 23:41:10 -05003523 }
Steve Frenchb3266142018-05-20 23:41:10 -05003524
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003525 /*
3526 * BB Do we need to wrap session_mutex around this TCon call and Unix
3527 * SetFS as we do on SessSetup and reconnect?
3528 */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003529 xid = get_xid();
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003530 rc = ses->server->ops->tree_connect(xid, ses, volume_info->UNC, tcon,
3531 volume_info->local_nls);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003532 free_xid(xid);
Joe Perchesf96637b2013-05-04 22:12:25 -05003533 cifs_dbg(FYI, "Tcon rc = %d\n", rc);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003534 if (rc)
3535 goto out_fail;
3536
Steve Frenchb618f002015-11-03 09:15:03 -06003537 tcon->use_persistent = false;
3538 /* check if SMB2 or later, CIFS does not support persistent handles */
3539 if (volume_info->persistent) {
3540 if (ses->server->vals->protocol_id == 0) {
3541 cifs_dbg(VFS,
3542 "SMB3 or later required for persistent handles\n");
3543 rc = -EOPNOTSUPP;
3544 goto out_fail;
3545 } else if (ses->server->capabilities &
3546 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
3547 tcon->use_persistent = true;
3548 else /* persistent handles requested but not supported */ {
3549 cifs_dbg(VFS,
3550 "Persistent handles not supported on share\n");
3551 rc = -EOPNOTSUPP;
3552 goto out_fail;
3553 }
3554 } else if ((tcon->capabilities & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY)
3555 && (ses->server->capabilities & SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
3556 && (volume_info->nopersistent == false)) {
3557 cifs_dbg(FYI, "enabling persistent handles\n");
3558 tcon->use_persistent = true;
Steve French592fafe2015-11-03 10:08:53 -06003559 } else if (volume_info->resilient) {
3560 if (ses->server->vals->protocol_id == 0) {
3561 cifs_dbg(VFS,
3562 "SMB2.1 or later required for resilient handles\n");
3563 rc = -EOPNOTSUPP;
3564 goto out_fail;
3565 }
3566 tcon->use_resilient = true;
Steve Frenchb618f002015-11-03 09:15:03 -06003567 }
3568
Steve Frenchcae53f72019-09-03 17:49:46 -05003569 /* If the user really knows what they are doing they can override */
3570 if (tcon->share_flags & SMB2_SHAREFLAG_NO_CACHING) {
3571 if (volume_info->cache_ro)
3572 cifs_dbg(VFS, "cache=ro requested on mount but NO_CACHING flag set on share\n");
3573 else if (volume_info->cache_rw)
3574 cifs_dbg(VFS, "cache=singleclient requested on mount but NO_CACHING flag set on share\n");
3575 }
3576
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003577 /*
3578 * We can have only one retry value for a connection to a share so for
3579 * resources mounted more than once to the same server share the last
3580 * value passed in for the retry flag is used.
3581 */
Jeff Laytond00c28d2010-04-24 07:57:44 -04003582 tcon->retry = volume_info->retry;
3583 tcon->nocase = volume_info->nocase;
Steve French3d4ef9a2018-04-25 22:19:09 -05003584 tcon->nohandlecache = volume_info->nohandlecache;
Jeff Laytond00c28d2010-04-24 07:57:44 -04003585 tcon->local_lease = volume_info->local_lease;
Steve French3e7a02d2019-09-11 21:46:20 -05003586 tcon->no_lease = volume_info->no_lease;
Pavel Shilovsky233839b2012-09-19 06:22:45 -07003587 INIT_LIST_HEAD(&tcon->pending_opens);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003588
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303589 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003590 list_add(&tcon->tcon_list, &ses->tcon_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303591 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003592
Suresh Jayaramand03382c2010-07-05 18:12:27 +05303593 cifs_fscache_get_super_cookie(tcon);
3594
Jeff Laytond00c28d2010-04-24 07:57:44 -04003595 return tcon;
3596
3597out_fail:
3598 tconInfoFree(tcon);
3599 return ERR_PTR(rc);
3600}
3601
Jeff Layton9d002df2010-10-06 19:51:11 -04003602void
3603cifs_put_tlink(struct tcon_link *tlink)
3604{
3605 if (!tlink || IS_ERR(tlink))
3606 return;
3607
3608 if (!atomic_dec_and_test(&tlink->tl_count) ||
3609 test_bit(TCON_LINK_IN_TREE, &tlink->tl_flags)) {
3610 tlink->tl_time = jiffies;
3611 return;
3612 }
3613
3614 if (!IS_ERR(tlink_tcon(tlink)))
3615 cifs_put_tcon(tlink_tcon(tlink));
3616 kfree(tlink);
3617 return;
3618}
Jeff Laytond00c28d2010-04-24 07:57:44 -04003619
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003620static int
3621compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data)
3622{
3623 struct cifs_sb_info *old = CIFS_SB(sb);
3624 struct cifs_sb_info *new = mnt_data->cifs_sb;
Paulo Alcantara (SUSE)29fbeb72019-06-18 16:16:02 -03003625 unsigned int oldflags = old->mnt_cifs_flags & CIFS_MOUNT_MASK;
3626 unsigned int newflags = new->mnt_cifs_flags & CIFS_MOUNT_MASK;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003627
3628 if ((sb->s_flags & CIFS_MS_MASK) != (mnt_data->flags & CIFS_MS_MASK))
3629 return 0;
3630
Paulo Alcantara (SUSE)29fbeb72019-06-18 16:16:02 -03003631 if (old->mnt_cifs_serverino_autodisabled)
3632 newflags &= ~CIFS_MOUNT_SERVER_INUM;
3633
3634 if (oldflags != newflags)
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003635 return 0;
3636
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003637 /*
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003638 * We want to share sb only if we don't specify an r/wsize or
3639 * specified r/wsize is greater than or equal to existing one.
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003640 */
3641 if (new->wsize && new->wsize < old->wsize)
3642 return 0;
3643
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003644 if (new->rsize && new->rsize < old->rsize)
3645 return 0;
3646
Eric W. Biederman1f682332013-02-06 01:20:20 -08003647 if (!uid_eq(old->mnt_uid, new->mnt_uid) || !gid_eq(old->mnt_gid, new->mnt_gid))
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003648 return 0;
3649
3650 if (old->mnt_file_mode != new->mnt_file_mode ||
3651 old->mnt_dir_mode != new->mnt_dir_mode)
3652 return 0;
3653
3654 if (strcmp(old->local_nls->charset, new->local_nls->charset))
3655 return 0;
3656
3657 if (old->actimeo != new->actimeo)
3658 return 0;
3659
3660 return 1;
3661}
3662
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003663static int
3664match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data)
3665{
3666 struct cifs_sb_info *old = CIFS_SB(sb);
3667 struct cifs_sb_info *new = mnt_data->cifs_sb;
Ronnie Sahlbergfe129262020-01-22 11:07:56 +10003668 bool old_set = (old->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) &&
3669 old->prepath;
3670 bool new_set = (new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) &&
3671 new->prepath;
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003672
Sachin Prabhucd8c4292017-04-26 14:05:46 +01003673 if (old_set && new_set && !strcmp(new->prepath, old->prepath))
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003674 return 1;
Sachin Prabhucd8c4292017-04-26 14:05:46 +01003675 else if (!old_set && !new_set)
3676 return 1;
3677
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003678 return 0;
3679}
3680
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003681int
3682cifs_match_super(struct super_block *sb, void *data)
3683{
3684 struct cifs_mnt_data *mnt_data = (struct cifs_mnt_data *)data;
3685 struct smb_vol *volume_info;
3686 struct cifs_sb_info *cifs_sb;
3687 struct TCP_Server_Info *tcp_srv;
Steve French96daf2b2011-05-27 04:34:02 +00003688 struct cifs_ses *ses;
3689 struct cifs_tcon *tcon;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003690 struct tcon_link *tlink;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003691 int rc = 0;
3692
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003693 spin_lock(&cifs_tcp_ses_lock);
3694 cifs_sb = CIFS_SB(sb);
3695 tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
3696 if (IS_ERR(tlink)) {
3697 spin_unlock(&cifs_tcp_ses_lock);
3698 return rc;
3699 }
3700 tcon = tlink_tcon(tlink);
3701 ses = tcon->ses;
3702 tcp_srv = ses->server;
3703
3704 volume_info = mnt_data->vol;
3705
Jeff Layton9fa114f2012-11-26 11:09:57 -05003706 if (!match_server(tcp_srv, volume_info) ||
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003707 !match_session(ses, volume_info) ||
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08003708 !match_tcon(tcon, volume_info) ||
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003709 !match_prepath(sb, mnt_data)) {
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003710 rc = 0;
3711 goto out;
3712 }
3713
3714 rc = compare_mount_options(sb, mnt_data);
3715out:
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003716 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf484b5d02011-07-11 10:16:34 -04003717 cifs_put_tlink(tlink);
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003718 return rc;
3719}
3720
Jeff Layton09e50d52008-07-23 10:11:19 -04003721#ifdef CONFIG_DEBUG_LOCK_ALLOC
3722static struct lock_class_key cifs_key[2];
3723static struct lock_class_key cifs_slock_key[2];
3724
3725static inline void
3726cifs_reclassify_socket4(struct socket *sock)
3727{
3728 struct sock *sk = sock->sk;
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02003729 BUG_ON(!sock_allow_reclassification(sk));
Jeff Layton09e50d52008-07-23 10:11:19 -04003730 sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS",
3731 &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]);
3732}
3733
3734static inline void
3735cifs_reclassify_socket6(struct socket *sock)
3736{
3737 struct sock *sk = sock->sk;
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02003738 BUG_ON(!sock_allow_reclassification(sk));
Jeff Layton09e50d52008-07-23 10:11:19 -04003739 sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS",
3740 &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]);
3741}
3742#else
3743static inline void
3744cifs_reclassify_socket4(struct socket *sock)
3745{
3746}
3747
3748static inline void
3749cifs_reclassify_socket6(struct socket *sock)
3750{
3751}
3752#endif
3753
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754/* See RFC1001 section 14 on representation of Netbios names */
Steve French50c2f752007-07-13 00:33:32 +00003755static void rfc1002mangle(char *target, char *source, unsigned int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756{
Steve French50c2f752007-07-13 00:33:32 +00003757 unsigned int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
Steve French50c2f752007-07-13 00:33:32 +00003759 for (i = 0, j = 0; i < (length); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 /* mask a nibble at a time and encode */
3761 target[j] = 'A' + (0x0F & (source[i] >> 4));
3762 target[j+1] = 'A' + (0x0F & source[i]);
Steve French50c2f752007-07-13 00:33:32 +00003763 j += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 }
3765
3766}
3767
Ben Greear3eb9a882010-09-01 17:06:02 -07003768static int
3769bind_socket(struct TCP_Server_Info *server)
3770{
3771 int rc = 0;
3772 if (server->srcaddr.ss_family != AF_UNSPEC) {
3773 /* Bind to the specified local IP address */
3774 struct socket *socket = server->ssocket;
3775 rc = socket->ops->bind(socket,
3776 (struct sockaddr *) &server->srcaddr,
3777 sizeof(server->srcaddr));
3778 if (rc < 0) {
3779 struct sockaddr_in *saddr4;
3780 struct sockaddr_in6 *saddr6;
3781 saddr4 = (struct sockaddr_in *)&server->srcaddr;
3782 saddr6 = (struct sockaddr_in6 *)&server->srcaddr;
3783 if (saddr6->sin6_family == AF_INET6)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10003784 cifs_server_dbg(VFS, "Failed to bind to: %pI6c, error: %d\n",
Joe Perchesf96637b2013-05-04 22:12:25 -05003785 &saddr6->sin6_addr, rc);
Ben Greear3eb9a882010-09-01 17:06:02 -07003786 else
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10003787 cifs_server_dbg(VFS, "Failed to bind to: %pI4, error: %d\n",
Joe Perchesf96637b2013-05-04 22:12:25 -05003788 &saddr4->sin_addr.s_addr, rc);
Ben Greear3eb9a882010-09-01 17:06:02 -07003789 }
3790 }
3791 return rc;
3792}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793
3794static int
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003795ip_rfc1001_connect(struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796{
3797 int rc = 0;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003798 /*
3799 * some servers require RFC1001 sessinit before sending
3800 * negprot - BB check reconnection in case where second
3801 * sessinit is sent but no second negprot
3802 */
3803 struct rfc1002_session_packet *ses_init_buf;
3804 struct smb_hdr *smb_buf;
3805 ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet),
3806 GFP_KERNEL);
3807 if (ses_init_buf) {
3808 ses_init_buf->trailer.session_req.called_len = 32;
3809
Colin Ian King997152f2016-01-25 16:25:54 +00003810 if (server->server_RFC1001_name[0] != 0)
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003811 rfc1002mangle(ses_init_buf->trailer.
3812 session_req.called_name,
3813 server->server_RFC1001_name,
3814 RFC1001_NAME_LEN_WITH_NULL);
3815 else
3816 rfc1002mangle(ses_init_buf->trailer.
3817 session_req.called_name,
3818 DEFAULT_CIFS_CALLED_NAME,
3819 RFC1001_NAME_LEN_WITH_NULL);
3820
3821 ses_init_buf->trailer.session_req.calling_len = 32;
3822
3823 /*
3824 * calling name ends in null (byte 16) from old smb
3825 * convention.
3826 */
Steve Frenchc85c35f2015-03-27 01:15:02 -05003827 if (server->workstation_RFC1001_name[0] != 0)
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003828 rfc1002mangle(ses_init_buf->trailer.
3829 session_req.calling_name,
3830 server->workstation_RFC1001_name,
3831 RFC1001_NAME_LEN_WITH_NULL);
3832 else
3833 rfc1002mangle(ses_init_buf->trailer.
3834 session_req.calling_name,
3835 "LINUX_CIFS_CLNT",
3836 RFC1001_NAME_LEN_WITH_NULL);
3837
3838 ses_init_buf->trailer.session_req.scope1 = 0;
3839 ses_init_buf->trailer.session_req.scope2 = 0;
3840 smb_buf = (struct smb_hdr *)ses_init_buf;
3841
3842 /* sizeof RFC1002_SESSION_REQUEST with no scope */
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003843 smb_buf->smb_buf_length = cpu_to_be32(0x81000044);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003844 rc = smb_send(server, smb_buf, 0x44);
3845 kfree(ses_init_buf);
3846 /*
3847 * RFC1001 layer in at least one server
3848 * requires very short break before negprot
3849 * presumably because not expecting negprot
3850 * to follow so fast. This is a simple
3851 * solution that works without
3852 * complicating the code and causes no
3853 * significant slowing down on mount
3854 * for everyone else
3855 */
3856 usleep_range(1000, 2000);
3857 }
3858 /*
3859 * else the negprot may still work without this
3860 * even though malloc failed
3861 */
3862
3863 return rc;
3864}
3865
3866static int
3867generic_ip_connect(struct TCP_Server_Info *server)
3868{
3869 int rc = 0;
Steve French6da97912011-03-13 18:55:55 +00003870 __be16 sport;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003871 int slen, sfamily;
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003872 struct socket *socket = server->ssocket;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003873 struct sockaddr *saddr;
3874
3875 saddr = (struct sockaddr *) &server->dstaddr;
3876
3877 if (server->dstaddr.ss_family == AF_INET6) {
3878 sport = ((struct sockaddr_in6 *) saddr)->sin6_port;
3879 slen = sizeof(struct sockaddr_in6);
3880 sfamily = AF_INET6;
3881 } else {
3882 sport = ((struct sockaddr_in *) saddr)->sin_port;
3883 slen = sizeof(struct sockaddr_in);
3884 sfamily = AF_INET;
3885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003887 if (socket == NULL) {
Rob Landleyf1d0c992011-01-22 15:44:05 -06003888 rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM,
3889 IPPROTO_TCP, &socket, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 if (rc < 0) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10003891 cifs_server_dbg(VFS, "Error %d creating socket\n", rc);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003892 server->ssocket = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 }
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003895
3896 /* BB other socket options to set KEEPALIVE, NODELAY? */
Joe Perchesf96637b2013-05-04 22:12:25 -05003897 cifs_dbg(FYI, "Socket created\n");
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003898 server->ssocket = socket;
3899 socket->sk->sk_allocation = GFP_NOFS;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003900 if (sfamily == AF_INET6)
3901 cifs_reclassify_socket6(socket);
3902 else
3903 cifs_reclassify_socket4(socket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 }
3905
Ben Greear3eb9a882010-09-01 17:06:02 -07003906 rc = bind_socket(server);
3907 if (rc < 0)
3908 return rc;
3909
Jeff Laytond5c56052008-12-01 18:42:33 -05003910 /*
3911 * Eventually check for other socket options to change from
3912 * the default. sock_setsockopt not used because it expects
3913 * user space buffer
3914 */
3915 socket->sk->sk_rcvtimeo = 7 * HZ;
Steve Frenchda505c32009-01-19 03:49:35 +00003916 socket->sk->sk_sndtimeo = 5 * HZ;
Steve French6a5fa2362010-01-01 01:28:43 +00003917
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003918 /* make the bufsizes depend on wsize/rsize and max requests */
3919 if (server->noautotune) {
3920 if (socket->sk->sk_sndbuf < (200 * 1024))
3921 socket->sk->sk_sndbuf = 200 * 1024;
3922 if (socket->sk->sk_rcvbuf < (140 * 1024))
3923 socket->sk->sk_rcvbuf = 140 * 1024;
3924 }
3925
Steve French6a5fa2362010-01-01 01:28:43 +00003926 if (server->tcp_nodelay) {
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003927 int val = 1;
Steve French6a5fa2362010-01-01 01:28:43 +00003928 rc = kernel_setsockopt(socket, SOL_TCP, TCP_NODELAY,
3929 (char *)&val, sizeof(val));
3930 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05003931 cifs_dbg(FYI, "set TCP_NODELAY socket option error %d\n",
3932 rc);
Steve French6a5fa2362010-01-01 01:28:43 +00003933 }
3934
Joe Perchesf96637b2013-05-04 22:12:25 -05003935 cifs_dbg(FYI, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx\n",
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003936 socket->sk->sk_sndbuf,
3937 socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo);
3938
Paulo Alcantara (SUSE)8eecd1c2019-07-16 19:04:50 -03003939 rc = socket->ops->connect(socket, saddr, slen,
3940 server->noblockcnt ? O_NONBLOCK : 0);
Paulo Alcantara (SUSE)d532cc72019-10-10 12:31:58 -03003941 /*
3942 * When mounting SMB root file systems, we do not want to block in
3943 * connect. Otherwise bail out and then let cifs_reconnect() perform
3944 * reconnect failover - if possible.
3945 */
3946 if (server->noblockcnt && rc == -EINPROGRESS)
Paulo Alcantara (SUSE)8eecd1c2019-07-16 19:04:50 -03003947 rc = 0;
Jeff Laytonee1b3ea2011-06-21 07:18:26 -04003948 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003949 cifs_dbg(FYI, "Error %d connecting to server\n", rc);
Jeff Laytonee1b3ea2011-06-21 07:18:26 -04003950 sock_release(socket);
3951 server->ssocket = NULL;
3952 return rc;
3953 }
3954
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003955 if (sport == htons(RFC1001_PORT))
3956 rc = ip_rfc1001_connect(server);
Steve French50c2f752007-07-13 00:33:32 +00003957
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 return rc;
3959}
3960
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003961static int
3962ip_connect(struct TCP_Server_Info *server)
3963{
Steve French6da97912011-03-13 18:55:55 +00003964 __be16 *sport;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003965 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
3966 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
3967
3968 if (server->dstaddr.ss_family == AF_INET6)
3969 sport = &addr6->sin6_port;
3970 else
3971 sport = &addr->sin_port;
3972
3973 if (*sport == 0) {
3974 int rc;
3975
3976 /* try with 445 port at first */
3977 *sport = htons(CIFS_PORT);
3978
3979 rc = generic_ip_connect(server);
3980 if (rc >= 0)
3981 return rc;
3982
3983 /* if it failed, try with 139 port */
3984 *sport = htons(RFC1001_PORT);
3985 }
3986
3987 return generic_ip_connect(server);
3988}
3989
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003990void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon,
Al Viro2c6292a2011-06-17 09:05:48 -04003991 struct cifs_sb_info *cifs_sb, struct smb_vol *vol_info)
Steve French8af18972007-02-14 04:42:51 +00003992{
3993 /* if we are reconnecting then should we check to see if
3994 * any requested capabilities changed locally e.g. via
3995 * remount but we can not do much about it here
3996 * if they have (even if we could detect it by the following)
3997 * Perhaps we could add a backpointer to array of sb from tcon
3998 * or if we change to make all sb to same share the same
3999 * sb as NFS - then we only have one backpointer to sb.
4000 * What if we wanted to mount the server share twice once with
4001 * and once without posixacls or posix paths? */
4002 __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French50c2f752007-07-13 00:33:32 +00004003
Steve Frenchc18c8422007-07-18 23:21:09 +00004004 if (vol_info && vol_info->no_linux_ext) {
4005 tcon->fsUnixInfo.Capability = 0;
4006 tcon->unix_ext = 0; /* Unix Extensions disabled */
Joe Perchesf96637b2013-05-04 22:12:25 -05004007 cifs_dbg(FYI, "Linux protocol extensions disabled\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00004008 return;
4009 } else if (vol_info)
4010 tcon->unix_ext = 1; /* Unix Extensions supported */
4011
4012 if (tcon->unix_ext == 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004013 cifs_dbg(FYI, "Unix extensions disabled so not set on reconnect\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00004014 return;
4015 }
Steve French50c2f752007-07-13 00:33:32 +00004016
Steve Frenchfb8c4b12007-07-10 01:16:18 +00004017 if (!CIFSSMBQFSUnixInfo(xid, tcon)) {
Steve French8af18972007-02-14 04:42:51 +00004018 __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
Joe Perchesf96637b2013-05-04 22:12:25 -05004019 cifs_dbg(FYI, "unix caps which server supports %lld\n", cap);
Steve French8af18972007-02-14 04:42:51 +00004020 /* check for reconnect case in which we do not
4021 want to change the mount behavior if we can avoid it */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00004022 if (vol_info == NULL) {
Steve French50c2f752007-07-13 00:33:32 +00004023 /* turn off POSIX ACL and PATHNAMES if not set
Steve French8af18972007-02-14 04:42:51 +00004024 originally at mount time */
4025 if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0)
4026 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
Igor Mammedov11b6d642008-02-15 19:06:04 +00004027 if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
4028 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004029 cifs_dbg(VFS, "POSIXPATH support change\n");
Steve French8af18972007-02-14 04:42:51 +00004030 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
Igor Mammedov11b6d642008-02-15 19:06:04 +00004031 } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004032 cifs_dbg(VFS, "possible reconnect error\n");
4033 cifs_dbg(VFS, "server disabled POSIX path support\n");
Igor Mammedov11b6d642008-02-15 19:06:04 +00004034 }
Steve French8af18972007-02-14 04:42:51 +00004035 }
Steve French50c2f752007-07-13 00:33:32 +00004036
Steve French6848b732011-05-26 18:38:54 +00004037 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004038 cifs_dbg(VFS, "per-share encryption not supported yet\n");
Steve French6848b732011-05-26 18:38:54 +00004039
Steve French8af18972007-02-14 04:42:51 +00004040 cap &= CIFS_UNIX_CAP_MASK;
Steve French75865f8c2007-06-24 18:30:48 +00004041 if (vol_info && vol_info->no_psx_acl)
Steve French8af18972007-02-14 04:42:51 +00004042 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
Steve French75865f8c2007-06-24 18:30:48 +00004043 else if (CIFS_UNIX_POSIX_ACL_CAP & cap) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004044 cifs_dbg(FYI, "negotiated posix acl support\n");
Al Viro2c6292a2011-06-17 09:05:48 -04004045 if (cifs_sb)
4046 cifs_sb->mnt_cifs_flags |=
4047 CIFS_MOUNT_POSIXACL;
Steve French8af18972007-02-14 04:42:51 +00004048 }
4049
Steve French75865f8c2007-06-24 18:30:48 +00004050 if (vol_info && vol_info->posix_paths == 0)
Steve French8af18972007-02-14 04:42:51 +00004051 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
Steve French75865f8c2007-06-24 18:30:48 +00004052 else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004053 cifs_dbg(FYI, "negotiate posix pathnames\n");
Al Viro2c6292a2011-06-17 09:05:48 -04004054 if (cifs_sb)
4055 cifs_sb->mnt_cifs_flags |=
Steve French8af18972007-02-14 04:42:51 +00004056 CIFS_MOUNT_POSIX_PATHS;
4057 }
Steve French50c2f752007-07-13 00:33:32 +00004058
Joe Perchesf96637b2013-05-04 22:12:25 -05004059 cifs_dbg(FYI, "Negotiate caps 0x%x\n", (int)cap);
Steve French8af18972007-02-14 04:42:51 +00004060#ifdef CONFIG_CIFS_DEBUG2
Steve French75865f8c2007-06-24 18:30:48 +00004061 if (cap & CIFS_UNIX_FCNTL_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004062 cifs_dbg(FYI, "FCNTL cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00004063 if (cap & CIFS_UNIX_EXTATTR_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004064 cifs_dbg(FYI, "EXTATTR cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00004065 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004066 cifs_dbg(FYI, "POSIX path cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00004067 if (cap & CIFS_UNIX_XATTR_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004068 cifs_dbg(FYI, "XATTR cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00004069 if (cap & CIFS_UNIX_POSIX_ACL_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004070 cifs_dbg(FYI, "POSIX ACL cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00004071 if (cap & CIFS_UNIX_LARGE_READ_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004072 cifs_dbg(FYI, "very large read cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00004073 if (cap & CIFS_UNIX_LARGE_WRITE_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004074 cifs_dbg(FYI, "very large write cap\n");
Steve French6848b732011-05-26 18:38:54 +00004075 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004076 cifs_dbg(FYI, "transport encryption cap\n");
Steve French6848b732011-05-26 18:38:54 +00004077 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004078 cifs_dbg(FYI, "mandatory transport encryption cap\n");
Steve French8af18972007-02-14 04:42:51 +00004079#endif /* CIFS_DEBUG2 */
4080 if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) {
Steve French442aa312007-09-24 20:25:46 +00004081 if (vol_info == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004082 cifs_dbg(FYI, "resetting capabilities failed\n");
Steve French442aa312007-09-24 20:25:46 +00004083 } else
Joe Perchesf96637b2013-05-04 22:12:25 -05004084 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 +00004085
Steve French8af18972007-02-14 04:42:51 +00004086 }
4087 }
4088}
4089
Sachin Prabhu4214ebf2016-07-29 22:38:19 +01004090int cifs_setup_cifs_sb(struct smb_vol *pvolume_info,
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004091 struct cifs_sb_info *cifs_sb)
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -04004092{
Jeff Layton2de970f2010-10-06 19:51:12 -04004093 INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks);
4094
Al Viro2ced6f62011-06-17 09:20:04 -04004095 spin_lock_init(&cifs_sb->tlink_tree_lock);
4096 cifs_sb->tlink_tree = RB_ROOT;
4097
Steve Frenche8506d22019-02-28 21:32:15 -06004098 cifs_sb->bsize = pvolume_info->bsize;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04004099 /*
Jeff Layton5eba8ab2011-10-19 15:30:26 -04004100 * Temporarily set r/wsize for matching superblock. If we end up using
4101 * new sb then client will later negotiate it downward if needed.
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04004102 */
Jeff Layton5eba8ab2011-10-19 15:30:26 -04004103 cifs_sb->rsize = pvolume_info->rsize;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04004104 cifs_sb->wsize = pvolume_info->wsize;
4105
Steve French3b795212008-11-13 19:45:32 +00004106 cifs_sb->mnt_uid = pvolume_info->linux_uid;
4107 cifs_sb->mnt_gid = pvolume_info->linux_gid;
4108 cifs_sb->mnt_file_mode = pvolume_info->file_mode;
4109 cifs_sb->mnt_dir_mode = pvolume_info->dir_mode;
Frank Sorensonf52aa792020-02-12 15:31:48 -06004110 cifs_dbg(FYI, "file mode: %04ho dir mode: %04ho\n",
Joe Perchesf96637b2013-05-04 22:12:25 -05004111 cifs_sb->mnt_file_mode, cifs_sb->mnt_dir_mode);
Steve French3b795212008-11-13 19:45:32 +00004112
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05304113 cifs_sb->actimeo = pvolume_info->actimeo;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004114 cifs_sb->local_nls = pvolume_info->local_nls;
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05304115
Aurelien Aptel83930722018-09-20 18:10:25 -07004116 if (pvolume_info->nodfs)
4117 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_DFS;
Steve French3b795212008-11-13 19:45:32 +00004118 if (pvolume_info->noperm)
4119 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_PERM;
4120 if (pvolume_info->setuids)
4121 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SET_UID;
Steve French95932652016-09-23 01:36:34 -05004122 if (pvolume_info->setuidfromacl)
4123 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UID_FROM_ACL;
Steve French3b795212008-11-13 19:45:32 +00004124 if (pvolume_info->server_ino)
4125 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SERVER_INUM;
4126 if (pvolume_info->remap)
Steve French2baa2682014-09-27 02:19:01 -05004127 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SFM_CHR;
4128 if (pvolume_info->sfu_remap)
Steve French3b795212008-11-13 19:45:32 +00004129 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SPECIAL_CHR;
4130 if (pvolume_info->no_xattr)
4131 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_XATTR;
4132 if (pvolume_info->sfu_emul)
4133 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UNX_EMUL;
4134 if (pvolume_info->nobrl)
4135 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_BRL;
Steve French3d4ef9a2018-04-25 22:19:09 -05004136 if (pvolume_info->nohandlecache)
4137 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_HANDLE_CACHE;
Steve Frenchbe652442009-02-23 15:21:59 +00004138 if (pvolume_info->nostrictsync)
Steve French4717bed2009-02-24 14:44:19 +00004139 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOSSYNC;
Steve French13a6e422008-12-02 17:24:33 +00004140 if (pvolume_info->mand_lock)
4141 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOPOSIXBRL;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00004142 if (pvolume_info->rwpidforward)
4143 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RWPIDFORWARD;
Steve French412094a2019-06-24 02:01:42 -05004144 if (pvolume_info->mode_ace)
4145 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MODE_FROM_SID;
Steve French3b795212008-11-13 19:45:32 +00004146 if (pvolume_info->cifs_acl)
4147 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_ACL;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01004148 if (pvolume_info->backupuid_specified) {
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05004149 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPUID;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01004150 cifs_sb->mnt_backupuid = pvolume_info->backupuid;
4151 }
4152 if (pvolume_info->backupgid_specified) {
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05004153 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPGID;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01004154 cifs_sb->mnt_backupgid = pvolume_info->backupgid;
4155 }
Steve French3b795212008-11-13 19:45:32 +00004156 if (pvolume_info->override_uid)
4157 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_UID;
4158 if (pvolume_info->override_gid)
4159 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_GID;
4160 if (pvolume_info->dynperm)
4161 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DYNPERM;
Suresh Jayaramanfa1df752010-07-05 18:13:36 +05304162 if (pvolume_info->fsc)
4163 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_FSCACHE;
Jeff Layton0eb8a132010-10-06 19:51:12 -04004164 if (pvolume_info->multiuser)
4165 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_MULTIUSER |
4166 CIFS_MOUNT_NO_PERM);
Pavel Shilovskyd39454f2011-01-24 14:16:35 -05004167 if (pvolume_info->strict_io)
4168 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_STRICT_IO;
Steve French3b795212008-11-13 19:45:32 +00004169 if (pvolume_info->direct_io) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004170 cifs_dbg(FYI, "mounting share using direct i/o\n");
Steve French3b795212008-11-13 19:45:32 +00004171 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DIRECT_IO;
4172 }
Steve French83bbfa72019-08-27 23:58:54 -05004173 if (pvolume_info->cache_ro) {
4174 cifs_dbg(VFS, "mounting share with read only caching. Ensure that the share will not be modified while in use.\n");
4175 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RO_CACHE;
Steve French41e033f2019-08-30 02:12:41 -05004176 } else if (pvolume_info->cache_rw) {
4177 cifs_dbg(VFS, "mounting share in single client RW caching mode. Ensure that no other systems will be accessing the share.\n");
4178 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_RO_CACHE |
4179 CIFS_MOUNT_RW_CACHE);
Steve French83bbfa72019-08-27 23:58:54 -05004180 }
Stefan Metzmacher736a33202010-07-30 14:56:00 +02004181 if (pvolume_info->mfsymlinks) {
4182 if (pvolume_info->sfu_emul) {
Steve Frenchdb8b6312014-09-22 05:13:55 -05004183 /*
4184 * Our SFU ("Services for Unix" emulation does not allow
4185 * creating symlinks but does allow reading existing SFU
4186 * symlinks (it does allow both creating and reading SFU
4187 * style mknod and FIFOs though). When "mfsymlinks" and
4188 * "sfu" are both enabled at the same time, it allows
4189 * reading both types of symlinks, but will only create
4190 * them with mfsymlinks format. This allows better
4191 * Apple compatibility (probably better for Samba too)
4192 * while still recognizing old Windows style symlinks.
4193 */
4194 cifs_dbg(VFS, "mount options mfsymlinks and sfu both enabled\n");
Stefan Metzmacher736a33202010-07-30 14:56:00 +02004195 }
Steve Frenchdb8b6312014-09-22 05:13:55 -05004196 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MF_SYMLINKS;
Stefan Metzmacher736a33202010-07-30 14:56:00 +02004197 }
Steve French3b795212008-11-13 19:45:32 +00004198
4199 if ((pvolume_info->cifs_acl) && (pvolume_info->dynperm))
Joe Perchesf96637b2013-05-04 22:12:25 -05004200 cifs_dbg(VFS, "mount option dynperm ignored if cifsacl mount option supported\n");
Sachin Prabhu4214ebf2016-07-29 22:38:19 +01004201
4202 if (pvolume_info->prepath) {
4203 cifs_sb->prepath = kstrdup(pvolume_info->prepath, GFP_KERNEL);
4204 if (cifs_sb->prepath == NULL)
4205 return -ENOMEM;
4206 }
4207
4208 return 0;
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -04004209}
4210
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004211void
4212cifs_cleanup_volume_info_contents(struct smb_vol *volume_info)
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004213{
Sean Finneyb9468452011-04-11 13:19:32 +00004214 kfree(volume_info->username);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004215 kzfree(volume_info->password);
Jesper Juhl95c75452011-08-27 18:58:34 +02004216 kfree(volume_info->UNC);
Sean Finneyb9468452011-04-11 13:19:32 +00004217 kfree(volume_info->domainname);
4218 kfree(volume_info->iocharset);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004219 kfree(volume_info->prepath);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004220}
4221
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04004222void
4223cifs_cleanup_volume_info(struct smb_vol *volume_info)
4224{
4225 if (!volume_info)
4226 return;
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004227 cifs_cleanup_volume_info_contents(volume_info);
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04004228 kfree(volume_info);
4229}
4230
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004231/* Release all succeed connections */
4232static inline void mount_put_conns(struct cifs_sb_info *cifs_sb,
4233 unsigned int xid,
4234 struct TCP_Server_Info *server,
4235 struct cifs_ses *ses, struct cifs_tcon *tcon)
4236{
4237 int rc = 0;
4238
4239 if (tcon)
4240 cifs_put_tcon(tcon);
4241 else if (ses)
4242 cifs_put_smb_ses(ses);
4243 else if (server)
4244 cifs_put_tcp_session(server, 0);
4245 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_POSIX_PATHS;
4246 free_xid(xid);
4247}
4248
4249/* Get connections for tcp, ses and tcon */
4250static int mount_get_conns(struct smb_vol *vol, struct cifs_sb_info *cifs_sb,
4251 unsigned int *xid,
4252 struct TCP_Server_Info **nserver,
4253 struct cifs_ses **nses, struct cifs_tcon **ntcon)
4254{
4255 int rc = 0;
4256 struct TCP_Server_Info *server;
4257 struct cifs_ses *ses;
4258 struct cifs_tcon *tcon;
4259
4260 *nserver = NULL;
4261 *nses = NULL;
4262 *ntcon = NULL;
4263
4264 *xid = get_xid();
4265
4266 /* get a reference to a tcp session */
4267 server = cifs_get_tcp_session(vol);
4268 if (IS_ERR(server)) {
4269 rc = PTR_ERR(server);
4270 return rc;
4271 }
4272
4273 *nserver = server;
4274
4275 if ((vol->max_credits < 20) || (vol->max_credits > 60000))
4276 server->max_credits = SMB2_MAX_CREDITS_AVAILABLE;
4277 else
4278 server->max_credits = vol->max_credits;
4279
4280 /* get a reference to a SMB session */
4281 ses = cifs_get_smb_ses(server, vol);
4282 if (IS_ERR(ses)) {
4283 rc = PTR_ERR(ses);
4284 return rc;
4285 }
4286
4287 *nses = ses;
4288
4289 if ((vol->persistent == true) && (!(ses->server->capabilities &
4290 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES))) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10004291 cifs_server_dbg(VFS, "persistent handles not supported by server\n");
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004292 return -EOPNOTSUPP;
4293 }
4294
4295 /* search for existing tcon to this server share */
4296 tcon = cifs_get_tcon(ses, vol);
4297 if (IS_ERR(tcon)) {
4298 rc = PTR_ERR(tcon);
4299 return rc;
4300 }
4301
4302 *ntcon = tcon;
4303
4304 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
4305 if (tcon->posix_extensions)
4306 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS;
4307
4308 /* tell server which Unix caps we support */
4309 if (cap_unix(tcon->ses)) {
4310 /*
4311 * reset of caps checks mount to see if unix extensions disabled
4312 * for just this mount.
4313 */
4314 reset_cifs_unix_caps(*xid, tcon, cifs_sb, vol);
4315 if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) &&
4316 (le64_to_cpu(tcon->fsUnixInfo.Capability) &
4317 CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP))
4318 return -EACCES;
4319 } else
4320 tcon->unix_ext = 0; /* server does not support them */
4321
4322 /* do not care if a following call succeed - informational */
Steve French1981eba2019-08-29 22:33:38 -05004323 if (!tcon->pipe && server->ops->qfs_tcon) {
Amir Goldstein0f060932020-02-03 21:46:43 +02004324 server->ops->qfs_tcon(*xid, tcon, cifs_sb);
Steve French1981eba2019-08-29 22:33:38 -05004325 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE) {
4326 if (tcon->fsDevInfo.DeviceCharacteristics &
Steve French52870d52019-10-01 21:25:46 -05004327 cpu_to_le32(FILE_READ_ONLY_DEVICE))
Steve French1981eba2019-08-29 22:33:38 -05004328 cifs_dbg(VFS, "mounted to read only share\n");
Steve French41e033f2019-08-30 02:12:41 -05004329 else if ((cifs_sb->mnt_cifs_flags &
4330 CIFS_MOUNT_RW_CACHE) == 0)
Steve French1981eba2019-08-29 22:33:38 -05004331 cifs_dbg(VFS, "read only mount of RW share\n");
Steve French41e033f2019-08-30 02:12:41 -05004332 /* no need to log a RW mount of a typical RW share */
Steve French1981eba2019-08-29 22:33:38 -05004333 }
4334 }
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004335
4336 cifs_sb->wsize = server->ops->negotiate_wsize(tcon, vol);
4337 cifs_sb->rsize = server->ops->negotiate_rsize(tcon, vol);
4338
4339 return 0;
4340}
4341
4342static int mount_setup_tlink(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses,
4343 struct cifs_tcon *tcon)
4344{
4345 struct tcon_link *tlink;
4346
4347 /* hang the tcon off of the superblock */
4348 tlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
4349 if (tlink == NULL)
4350 return -ENOMEM;
4351
4352 tlink->tl_uid = ses->linux_uid;
4353 tlink->tl_tcon = tcon;
4354 tlink->tl_time = jiffies;
4355 set_bit(TCON_LINK_MASTER, &tlink->tl_flags);
4356 set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4357
4358 cifs_sb->master_tlink = tlink;
4359 spin_lock(&cifs_sb->tlink_tree_lock);
4360 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
4361 spin_unlock(&cifs_sb->tlink_tree_lock);
4362
4363 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
4364 TLINK_IDLE_EXPIRE);
4365 return 0;
4366}
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04004367
Steve French2d6d5892009-04-09 00:36:44 +00004368#ifdef CONFIG_CIFS_DFS_UPCALL
Steve French6d3ea7e2012-11-28 22:34:41 -06004369/*
4370 * cifs_build_path_to_root returns full path to root when we do not have an
4371 * exiting connection (tcon)
4372 */
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004373static char *
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04004374build_unc_path_to_root(const struct smb_vol *vol,
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004375 const struct cifs_sb_info *cifs_sb, bool useppath)
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004376{
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04004377 char *full_path, *pos;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004378 unsigned int pplen = useppath && vol->prepath ?
4379 strlen(vol->prepath) + 1 : 0;
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04004380 unsigned int unc_len = strnlen(vol->UNC, MAX_TREE_SIZE + 1);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004381
Ronnie Sahlberg340625e2019-08-27 09:30:14 +10004382 if (unc_len > MAX_TREE_SIZE)
4383 return ERR_PTR(-EINVAL);
4384
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04004385 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004386 if (full_path == NULL)
4387 return ERR_PTR(-ENOMEM);
4388
Ronnie Sahlberg340625e2019-08-27 09:30:14 +10004389 memcpy(full_path, vol->UNC, unc_len);
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04004390 pos = full_path + unc_len;
4391
4392 if (pplen) {
Jeff Layton1fc29ba2013-05-31 10:00:18 -04004393 *pos = CIFS_DIR_SEP(cifs_sb);
Ronnie Sahlberg340625e2019-08-27 09:30:14 +10004394 memcpy(pos + 1, vol->prepath, pplen);
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04004395 pos += pplen;
4396 }
4397
4398 *pos = '\0'; /* add trailing null */
Steve Frenchf87d39d2011-05-27 03:50:55 +00004399 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
Joe Perchesf96637b2013-05-04 22:12:25 -05004400 cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004401 return full_path;
4402}
Sean Finneydd613942011-04-11 13:19:30 +00004403
Paulo Alcantara1c780222018-11-14 16:24:03 -02004404/**
4405 * expand_dfs_referral - Perform a dfs referral query and update the cifs_sb
4406 *
Sean Finneydd613942011-04-11 13:19:30 +00004407 *
Sean Finney046462a2011-04-11 13:19:33 +00004408 * If a referral is found, cifs_sb->mountdata will be (re-)allocated
4409 * to a string containing updated options for the submount. Otherwise it
4410 * will be left untouched.
Sean Finneydd613942011-04-11 13:19:30 +00004411 *
4412 * Returns the rc from get_dfs_path to the caller, which can be used to
4413 * determine whether there were referrals.
4414 */
4415static int
Pavel Shilovskyb669f332012-05-27 20:21:53 +04004416expand_dfs_referral(const unsigned int xid, struct cifs_ses *ses,
Sean Finneydd613942011-04-11 13:19:30 +00004417 struct smb_vol *volume_info, struct cifs_sb_info *cifs_sb,
Sean Finney046462a2011-04-11 13:19:33 +00004418 int check_prefix)
Sean Finneydd613942011-04-11 13:19:30 +00004419{
4420 int rc;
Paulo Alcantara1c780222018-11-14 16:24:03 -02004421 struct dfs_info3_param referral = {0};
Sean Finneydd613942011-04-11 13:19:30 +00004422 char *full_path = NULL, *ref_path = NULL, *mdata = NULL;
4423
Aurelien Aptel83930722018-09-20 18:10:25 -07004424 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
4425 return -EREMOTE;
4426
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004427 full_path = build_unc_path_to_root(volume_info, cifs_sb, true);
Sean Finneydd613942011-04-11 13:19:30 +00004428 if (IS_ERR(full_path))
4429 return PTR_ERR(full_path);
4430
4431 /* For DFS paths, skip the first '\' of the UNC */
4432 ref_path = check_prefix ? full_path + 1 : volume_info->UNC + 1;
4433
Paulo Alcantara1c780222018-11-14 16:24:03 -02004434 rc = dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb),
4435 ref_path, &referral, NULL);
4436 if (!rc) {
Sean Finneydd613942011-04-11 13:19:30 +00004437 char *fake_devname = NULL;
4438
4439 mdata = cifs_compose_mount_options(cifs_sb->mountdata,
Paulo Alcantara1c780222018-11-14 16:24:03 -02004440 full_path + 1, &referral,
Sean Finneydd613942011-04-11 13:19:30 +00004441 &fake_devname);
Paulo Alcantara1c780222018-11-14 16:24:03 -02004442 free_dfs_info_param(&referral);
Sean Finney046462a2011-04-11 13:19:33 +00004443
Sean Finneydd613942011-04-11 13:19:30 +00004444 if (IS_ERR(mdata)) {
4445 rc = PTR_ERR(mdata);
4446 mdata = NULL;
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04004447 } else {
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004448 cifs_cleanup_volume_info_contents(volume_info);
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04004449 rc = cifs_setup_volume_info(volume_info, mdata,
Paulo Alcantara1c780222018-11-14 16:24:03 -02004450 fake_devname, false);
Sean Finneydd613942011-04-11 13:19:30 +00004451 }
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04004452 kfree(fake_devname);
4453 kfree(cifs_sb->mountdata);
Sean Finney046462a2011-04-11 13:19:33 +00004454 cifs_sb->mountdata = mdata;
Sean Finneydd613942011-04-11 13:19:30 +00004455 }
4456 kfree(full_path);
4457 return rc;
4458}
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004459
4460static inline int get_next_dfs_tgt(const char *path,
4461 struct dfs_cache_tgt_list *tgt_list,
4462 struct dfs_cache_tgt_iterator **tgt_it)
4463{
4464 if (!*tgt_it)
4465 *tgt_it = dfs_cache_get_tgt_iterator(tgt_list);
4466 else
4467 *tgt_it = dfs_cache_get_next_tgt(tgt_list, *tgt_it);
4468 return !*tgt_it ? -EHOSTDOWN : 0;
4469}
4470
4471static int update_vol_info(const struct dfs_cache_tgt_iterator *tgt_it,
4472 struct smb_vol *fake_vol, struct smb_vol *vol)
4473{
4474 const char *tgt = dfs_cache_get_tgt_name(tgt_it);
4475 int len = strlen(tgt) + 2;
4476 char *new_unc;
4477
4478 new_unc = kmalloc(len, GFP_KERNEL);
4479 if (!new_unc)
4480 return -ENOMEM;
Ronnie Sahlberg74ea5f92019-02-09 09:51:11 +10004481 scnprintf(new_unc, len, "\\%s", tgt);
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004482
4483 kfree(vol->UNC);
4484 vol->UNC = new_unc;
4485
4486 if (fake_vol->prepath) {
4487 kfree(vol->prepath);
4488 vol->prepath = fake_vol->prepath;
4489 fake_vol->prepath = NULL;
4490 }
4491 memcpy(&vol->dstaddr, &fake_vol->dstaddr, sizeof(vol->dstaddr));
4492
4493 return 0;
4494}
4495
4496static int setup_dfs_tgt_conn(const char *path,
4497 const struct dfs_cache_tgt_iterator *tgt_it,
4498 struct cifs_sb_info *cifs_sb,
4499 struct smb_vol *vol,
4500 unsigned int *xid,
4501 struct TCP_Server_Info **server,
4502 struct cifs_ses **ses,
4503 struct cifs_tcon **tcon)
4504{
4505 int rc;
4506 struct dfs_info3_param ref = {0};
4507 char *mdata = NULL, *fake_devname = NULL;
Steve Frenchd0959b02019-10-05 10:53:58 -05004508 struct smb_vol fake_vol = {NULL};
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004509
4510 cifs_dbg(FYI, "%s: dfs path: %s\n", __func__, path);
4511
4512 rc = dfs_cache_get_tgt_referral(path, tgt_it, &ref);
4513 if (rc)
4514 return rc;
4515
4516 mdata = cifs_compose_mount_options(cifs_sb->mountdata, path, &ref,
4517 &fake_devname);
4518 free_dfs_info_param(&ref);
4519
4520 if (IS_ERR(mdata)) {
4521 rc = PTR_ERR(mdata);
4522 mdata = NULL;
4523 } else {
4524 cifs_dbg(FYI, "%s: fake_devname: %s\n", __func__, fake_devname);
4525 rc = cifs_setup_volume_info(&fake_vol, mdata, fake_devname,
4526 false);
4527 }
4528 kfree(mdata);
4529 kfree(fake_devname);
4530
4531 if (!rc) {
4532 /*
4533 * We use a 'fake_vol' here because we need pass it down to the
4534 * mount_{get,put} functions to test connection against new DFS
4535 * targets.
4536 */
4537 mount_put_conns(cifs_sb, *xid, *server, *ses, *tcon);
4538 rc = mount_get_conns(&fake_vol, cifs_sb, xid, server, ses,
4539 tcon);
4540 if (!rc) {
4541 /*
4542 * We were able to connect to new target server.
4543 * Update current volume info with new target server.
4544 */
4545 rc = update_vol_info(tgt_it, &fake_vol, vol);
4546 }
4547 }
4548 cifs_cleanup_volume_info_contents(&fake_vol);
4549 return rc;
4550}
4551
4552static int mount_do_dfs_failover(const char *path,
4553 struct cifs_sb_info *cifs_sb,
4554 struct smb_vol *vol,
4555 struct cifs_ses *root_ses,
4556 unsigned int *xid,
4557 struct TCP_Server_Info **server,
4558 struct cifs_ses **ses,
4559 struct cifs_tcon **tcon)
4560{
4561 int rc;
4562 struct dfs_cache_tgt_list tgt_list;
4563 struct dfs_cache_tgt_iterator *tgt_it = NULL;
4564
4565 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
4566 return -EOPNOTSUPP;
4567
4568 rc = dfs_cache_noreq_find(path, NULL, &tgt_list);
4569 if (rc)
4570 return rc;
4571
4572 for (;;) {
4573 /* Get next DFS target server - if any */
4574 rc = get_next_dfs_tgt(path, &tgt_list, &tgt_it);
4575 if (rc)
4576 break;
4577 /* Connect to next DFS target */
4578 rc = setup_dfs_tgt_conn(path, tgt_it, cifs_sb, vol, xid, server,
4579 ses, tcon);
4580 if (!rc || rc == -EACCES || rc == -EOPNOTSUPP)
4581 break;
4582 }
4583 if (!rc) {
4584 /*
4585 * Update DFS target hint in DFS referral cache with the target
4586 * server we successfully reconnected to.
4587 */
4588 rc = dfs_cache_update_tgthint(*xid, root_ses ? root_ses : *ses,
4589 cifs_sb->local_nls,
4590 cifs_remap(cifs_sb), path,
4591 tgt_it);
4592 }
4593 dfs_cache_free_tgts(&tgt_list);
4594 return rc;
4595}
Steve French2d6d5892009-04-09 00:36:44 +00004596#endif
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004597
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03004598int
Jeff Layton04db79b2011-07-06 08:10:38 -04004599cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data,
Steve Frenchc7c137b2018-06-06 17:59:29 -05004600 const char *devname, bool is_smb3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601{
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004602 int rc = 0;
Sean Finneydd613942011-04-11 13:19:30 +00004603
Steve Frenchc7c137b2018-06-06 17:59:29 -05004604 if (cifs_parse_mount_options(mount_data, devname, volume_info, is_smb3))
Jeff Layton04db79b2011-07-06 08:10:38 -04004605 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606
Jeff Layton7586b762008-12-01 18:41:49 -05004607 if (volume_info->nullauth) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004608 cifs_dbg(FYI, "Anonymous login\n");
Jeff Layton04febab2012-01-17 16:09:15 -05004609 kfree(volume_info->username);
4610 volume_info->username = NULL;
Jeff Layton7586b762008-12-01 18:41:49 -05004611 } else if (volume_info->username) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 /* BB fixme parse for domain name here */
Joe Perchesf96637b2013-05-04 22:12:25 -05004613 cifs_dbg(FYI, "Username: %s\n", volume_info->username);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -05004615 cifs_dbg(VFS, "No username specified\n");
Steve French50c2f752007-07-13 00:33:32 +00004616 /* In userspace mount helper we can get user name from alternate
4617 locations such as env variables and files on disk */
Jeff Layton04db79b2011-07-06 08:10:38 -04004618 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 }
4620
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 /* this is needed for ASCII cp to Unicode converts */
Jeff Layton7586b762008-12-01 18:41:49 -05004622 if (volume_info->iocharset == NULL) {
Jeff Laytona5fc4ce2010-04-24 07:57:42 -04004623 /* load_nls_default cannot return null */
4624 volume_info->local_nls = load_nls_default();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625 } else {
Jeff Laytona5fc4ce2010-04-24 07:57:42 -04004626 volume_info->local_nls = load_nls(volume_info->iocharset);
4627 if (volume_info->local_nls == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004628 cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n",
Joe Perchesb6b38f72010-04-21 03:50:45 +00004629 volume_info->iocharset);
Jeff Layton04db79b2011-07-06 08:10:38 -04004630 return -ELIBACC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 }
4632 }
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004633
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004634 return rc;
Jeff Layton04db79b2011-07-06 08:10:38 -04004635}
4636
4637struct smb_vol *
Steve Frenchc7c137b2018-06-06 17:59:29 -05004638cifs_get_volume_info(char *mount_data, const char *devname, bool is_smb3)
Jeff Layton04db79b2011-07-06 08:10:38 -04004639{
4640 int rc;
4641 struct smb_vol *volume_info;
4642
Jeff Layton6ee95422012-11-26 11:09:57 -05004643 volume_info = kmalloc(sizeof(struct smb_vol), GFP_KERNEL);
Jeff Layton04db79b2011-07-06 08:10:38 -04004644 if (!volume_info)
4645 return ERR_PTR(-ENOMEM);
4646
Steve Frenchc7c137b2018-06-06 17:59:29 -05004647 rc = cifs_setup_volume_info(volume_info, mount_data, devname, is_smb3);
Jeff Layton04db79b2011-07-06 08:10:38 -04004648 if (rc) {
4649 cifs_cleanup_volume_info(volume_info);
4650 volume_info = ERR_PTR(rc);
4651 }
4652
4653 return volume_info;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004654}
4655
Aurelien Aptela6b50582016-05-25 19:59:09 +02004656static int
4657cifs_are_all_path_components_accessible(struct TCP_Server_Info *server,
4658 unsigned int xid,
4659 struct cifs_tcon *tcon,
4660 struct cifs_sb_info *cifs_sb,
Ronnie Sahlbergce465bf2019-07-11 13:46:58 +10004661 char *full_path,
4662 int added_treename)
Aurelien Aptela6b50582016-05-25 19:59:09 +02004663{
4664 int rc;
4665 char *s;
4666 char sep, tmp;
Ronnie Sahlbergce465bf2019-07-11 13:46:58 +10004667 int skip = added_treename ? 1 : 0;
Aurelien Aptela6b50582016-05-25 19:59:09 +02004668
4669 sep = CIFS_DIR_SEP(cifs_sb);
4670 s = full_path;
4671
4672 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, "");
4673 while (rc == 0) {
4674 /* skip separators */
4675 while (*s == sep)
4676 s++;
4677 if (!*s)
4678 break;
4679 /* next separator */
4680 while (*s && *s != sep)
4681 s++;
Ronnie Sahlbergce465bf2019-07-11 13:46:58 +10004682 /*
4683 * if the treename is added, we then have to skip the first
4684 * part within the separators
4685 */
4686 if (skip) {
4687 skip = 0;
4688 continue;
4689 }
Aurelien Aptela6b50582016-05-25 19:59:09 +02004690 /*
4691 * temporarily null-terminate the path at the end of
4692 * the current component
4693 */
4694 tmp = *s;
4695 *s = 0;
4696 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
4697 full_path);
4698 *s = tmp;
4699 }
4700 return rc;
4701}
4702
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004703/*
4704 * Check if path is remote (e.g. a DFS share). Return -EREMOTE if it is,
4705 * otherwise 0.
4706 */
4707static int is_path_remote(struct cifs_sb_info *cifs_sb, struct smb_vol *vol,
4708 const unsigned int xid,
4709 struct TCP_Server_Info *server,
4710 struct cifs_tcon *tcon)
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004711{
Jeff Layton1daaae82012-03-21 06:30:40 -04004712 int rc;
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004713 char *full_path;
4714
4715 if (!server->ops->is_path_accessible)
4716 return -EOPNOTSUPP;
4717
4718 /*
4719 * cifs_build_path_to_root works only when we have a valid tcon
4720 */
4721 full_path = cifs_build_path_to_root(vol, cifs_sb, tcon,
4722 tcon->Flags & SMB_SHARE_IS_IN_DFS);
4723 if (full_path == NULL)
4724 return -ENOMEM;
4725
4726 cifs_dbg(FYI, "%s: full_path: %s\n", __func__, full_path);
4727
4728 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
4729 full_path);
4730 if (rc != 0 && rc != -EREMOTE) {
4731 kfree(full_path);
4732 return rc;
4733 }
4734
4735 if (rc != -EREMOTE) {
4736 rc = cifs_are_all_path_components_accessible(server, xid, tcon,
Ronnie Sahlbergce465bf2019-07-11 13:46:58 +10004737 cifs_sb, full_path, tcon->Flags & SMB_SHARE_IS_IN_DFS);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004738 if (rc != 0) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10004739 cifs_server_dbg(VFS, "cannot query dirs between root and final path, "
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004740 "enabling CIFS_MOUNT_USE_PREFIX_PATH\n");
4741 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
4742 rc = 0;
4743 }
4744 }
4745
4746 kfree(full_path);
4747 return rc;
4748}
4749
4750#ifdef CONFIG_CIFS_DFS_UPCALL
Paulo Alcantara (SUSE)5bb30a42019-11-22 12:30:56 -03004751static inline void set_root_tcon(struct cifs_sb_info *cifs_sb,
4752 struct cifs_tcon *tcon,
4753 struct cifs_tcon **root)
4754{
4755 spin_lock(&cifs_tcp_ses_lock);
4756 tcon->tc_count++;
4757 tcon->remap = cifs_remap(cifs_sb);
4758 spin_unlock(&cifs_tcp_ses_lock);
4759 *root = tcon;
4760}
4761
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004762int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *vol)
4763{
4764 int rc = 0;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004765 unsigned int xid;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04004766 struct cifs_ses *ses;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004767 struct cifs_tcon *root_tcon = NULL;
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004768 struct cifs_tcon *tcon = NULL;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04004769 struct TCP_Server_Info *server;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004770 char *root_path = NULL, *full_path = NULL;
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03004771 char *old_mountdata, *origin_mountdata = NULL;
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004772 int count;
Al Virodd854462011-06-17 08:24:42 -04004773
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004774 rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses, &tcon);
4775 if (!rc && tcon) {
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004776 /* If not a standalone DFS root, then check if path is remote */
4777 rc = dfs_cache_find(xid, ses, cifs_sb->local_nls,
4778 cifs_remap(cifs_sb), vol->UNC + 1, NULL,
4779 NULL);
4780 if (rc) {
4781 rc = is_path_remote(cifs_sb, vol, xid, server, tcon);
4782 if (!rc)
4783 goto out;
4784 if (rc != -EREMOTE)
4785 goto error;
4786 }
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004787 }
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004788 /*
4789 * If first DFS target server went offline and we failed to connect it,
4790 * server and ses pointers are NULL at this point, though we still have
4791 * chance to get a cached DFS referral in expand_dfs_referral() and
4792 * retry next target available in it.
4793 *
4794 * If a NULL ses ptr is passed to dfs_cache_find(), a lookup will be
4795 * performed against DFS path and *no* requests will be sent to server
4796 * for any new DFS referrals. Hence it's safe to skip checking whether
4797 * server or ses ptr is NULL.
4798 */
4799 if (rc == -EACCES || rc == -EOPNOTSUPP)
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004800 goto error;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004801
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004802 root_path = build_unc_path_to_root(vol, cifs_sb, false);
4803 if (IS_ERR(root_path)) {
4804 rc = PTR_ERR(root_path);
4805 root_path = NULL;
4806 goto error;
4807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02004809 full_path = build_unc_path_to_root(vol, cifs_sb, true);
4810 if (IS_ERR(full_path)) {
4811 rc = PTR_ERR(full_path);
4812 full_path = NULL;
4813 goto error;
4814 }
Sean Finneyc1508ca2011-04-11 13:19:31 +00004815 /*
4816 * Perform an unconditional check for whether there are DFS
4817 * referrals for this path without prefix, to provide support
4818 * for DFS referrals from w2k8 servers which don't seem to respond
4819 * with PATH_NOT_COVERED to requests that include the prefix.
4820 * Chase the referral if found, otherwise continue normally.
4821 */
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004822 old_mountdata = cifs_sb->mountdata;
4823 (void)expand_dfs_referral(xid, ses, vol, cifs_sb, false);
Sean Finneyc1508ca2011-04-11 13:19:31 +00004824
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004825 if (cifs_sb->mountdata == NULL) {
4826 rc = -ENOENT;
4827 goto error;
4828 }
4829
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03004830 /* Save DFS root volume information for DFS refresh worker */
4831 origin_mountdata = kstrndup(cifs_sb->mountdata,
4832 strlen(cifs_sb->mountdata), GFP_KERNEL);
4833 if (!origin_mountdata) {
4834 rc = -ENOMEM;
4835 goto error;
4836 }
4837
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004838 if (cifs_sb->mountdata != old_mountdata) {
4839 /* If we were redirected, reconnect to new target server */
4840 mount_put_conns(cifs_sb, xid, server, ses, tcon);
4841 rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses, &tcon);
4842 }
4843 if (rc) {
4844 if (rc == -EACCES || rc == -EOPNOTSUPP)
4845 goto error;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004846 /* Perform DFS failover to any other DFS targets */
4847 rc = mount_do_dfs_failover(root_path + 1, cifs_sb, vol, NULL,
4848 &xid, &server, &ses, &tcon);
4849 if (rc)
4850 goto error;
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004851 }
4852
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004853 kfree(root_path);
4854 root_path = build_unc_path_to_root(vol, cifs_sb, false);
4855 if (IS_ERR(root_path)) {
4856 rc = PTR_ERR(root_path);
4857 root_path = NULL;
4858 goto error;
4859 }
4860 /* Cache out resolved root server */
4861 (void)dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb),
4862 root_path + 1, NULL, NULL);
Paulo Alcantara (SUSE)5bb30a42019-11-22 12:30:56 -03004863 kfree(root_path);
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004864 root_path = NULL;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004865
Paulo Alcantara (SUSE)5bb30a42019-11-22 12:30:56 -03004866 set_root_tcon(cifs_sb, tcon, &root_tcon);
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004867
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004868 for (count = 1; ;) {
4869 if (!rc && tcon) {
4870 rc = is_path_remote(cifs_sb, vol, xid, server, tcon);
4871 if (!rc || rc != -EREMOTE)
4872 break;
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004873 }
Steve French6d3ea7e2012-11-28 22:34:41 -06004874 /*
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004875 * BB: when we implement proper loop detection,
4876 * we will remove this check. But now we need it
4877 * to prevent an indefinite loop if 'DFS tree' is
4878 * misconfigured (i.e. has loops).
Steve French6d3ea7e2012-11-28 22:34:41 -06004879 */
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004880 if (count++ > MAX_NESTED_LINKS) {
Igor Mammedov5c2503a2009-04-21 19:31:05 +04004881 rc = -ELOOP;
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004882 break;
Igor Mammedov5c2503a2009-04-21 19:31:05 +04004883 }
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004884
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004885 kfree(full_path);
4886 full_path = build_unc_path_to_root(vol, cifs_sb, true);
4887 if (IS_ERR(full_path)) {
4888 rc = PTR_ERR(full_path);
4889 full_path = NULL;
4890 break;
4891 }
4892
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004893 old_mountdata = cifs_sb->mountdata;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004894 rc = expand_dfs_referral(xid, root_tcon->ses, vol, cifs_sb,
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004895 true);
4896 if (rc)
4897 break;
Jeff Layton7b91e262009-07-23 15:22:30 -04004898
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004899 if (cifs_sb->mountdata != old_mountdata) {
4900 mount_put_conns(cifs_sb, xid, server, ses, tcon);
4901 rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses,
4902 &tcon);
Paulo Alcantara (SUSE)5bb30a42019-11-22 12:30:56 -03004903 /*
4904 * Ensure that DFS referrals go through new root server.
4905 */
4906 if (!rc && tcon &&
4907 (tcon->share_flags & (SHI1005_FLAGS_DFS |
4908 SHI1005_FLAGS_DFS_ROOT))) {
4909 cifs_put_tcon(root_tcon);
4910 set_root_tcon(cifs_sb, tcon, &root_tcon);
4911 }
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004912 }
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004913 if (rc) {
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004914 if (rc == -EACCES || rc == -EOPNOTSUPP)
4915 break;
4916 /* Perform DFS failover to any other DFS targets */
4917 rc = mount_do_dfs_failover(full_path + 1, cifs_sb, vol,
4918 root_tcon->ses, &xid,
4919 &server, &ses, &tcon);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004920 if (rc == -EACCES || rc == -EOPNOTSUPP || !server ||
4921 !ses)
4922 goto error;
4923 }
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004924 }
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004925 cifs_put_tcon(root_tcon);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004926
Jeff Layton9d002df2010-10-06 19:51:11 -04004927 if (rc)
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004928 goto error;
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004929
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02004930 spin_lock(&cifs_tcp_ses_lock);
4931 if (!tcon->dfs_path) {
4932 /* Save full path in new tcon to do failover when reconnecting tcons */
4933 tcon->dfs_path = full_path;
4934 full_path = NULL;
4935 tcon->remap = cifs_remap(cifs_sb);
4936 }
4937 cifs_sb->origin_fullpath = kstrndup(tcon->dfs_path,
YueHaibing2f0a6172018-12-18 01:34:39 +00004938 strlen(tcon->dfs_path),
4939 GFP_ATOMIC);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02004940 if (!cifs_sb->origin_fullpath) {
4941 spin_unlock(&cifs_tcp_ses_lock);
4942 rc = -ENOMEM;
4943 goto error;
4944 }
4945 spin_unlock(&cifs_tcp_ses_lock);
4946
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03004947 rc = dfs_cache_add_vol(origin_mountdata, vol, cifs_sb->origin_fullpath);
Paulo Alcantarae511d312018-11-14 17:16:44 -02004948 if (rc) {
4949 kfree(cifs_sb->origin_fullpath);
4950 goto error;
4951 }
Aurelien Aptel5fc7fcd2018-11-16 16:13:25 +01004952 /*
4953 * After reconnecting to a different server, unique ids won't
4954 * match anymore, so we disable serverino. This prevents
4955 * dentry revalidation to think the dentry are stale (ESTALE).
4956 */
4957 cifs_autodisable_serverino(cifs_sb);
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03004958 /*
4959 * Force the use of prefix path to support failover on DFS paths that
4960 * resolve to targets that have different prefix paths.
4961 */
4962 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
4963 kfree(cifs_sb->prepath);
4964 cifs_sb->prepath = vol->prepath;
4965 vol->prepath = NULL;
4966
Jeff Layton70fe7dc2007-11-16 22:21:07 +00004967out:
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004968 free_xid(xid);
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02004969 cifs_try_adding_channels(ses);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004970 return mount_setup_tlink(cifs_sb, ses, tcon);
4971
4972error:
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004973 kfree(full_path);
4974 kfree(root_path);
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03004975 kfree(origin_mountdata);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004976 mount_put_conns(cifs_sb, xid, server, ses, tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977 return rc;
4978}
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004979#else
4980int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *vol)
4981{
4982 int rc = 0;
4983 unsigned int xid;
4984 struct cifs_ses *ses;
4985 struct cifs_tcon *tcon;
4986 struct TCP_Server_Info *server;
4987
4988 rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses, &tcon);
4989 if (rc)
4990 goto error;
4991
4992 if (tcon) {
4993 rc = is_path_remote(cifs_sb, vol, xid, server, tcon);
4994 if (rc == -EREMOTE)
4995 rc = -EOPNOTSUPP;
4996 if (rc)
4997 goto error;
4998 }
4999
5000 free_xid(xid);
5001
5002 return mount_setup_tlink(cifs_sb, ses, tcon);
5003
5004error:
5005 mount_put_conns(cifs_sb, xid, server, ses, tcon);
5006 return rc;
5007}
5008#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009
Jeff Layton8d1bca32011-06-11 21:17:10 -04005010/*
Aurelien Aptelb327a712018-01-24 13:46:10 +01005011 * Issue a TREE_CONNECT request.
Jeff Layton8d1bca32011-06-11 21:17:10 -04005012 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013int
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04005014CIFSTCon(const unsigned int xid, struct cifs_ses *ses,
Steve French96daf2b2011-05-27 04:34:02 +00005015 const char *tree, struct cifs_tcon *tcon,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 const struct nls_table *nls_codepage)
5017{
5018 struct smb_hdr *smb_buffer;
5019 struct smb_hdr *smb_buffer_response;
5020 TCONX_REQ *pSMB;
5021 TCONX_RSP *pSMBr;
5022 unsigned char *bcc_ptr;
5023 int rc = 0;
Jeff Layton690c5222011-01-20 13:36:51 -05005024 int length;
5025 __u16 bytes_left, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026
5027 if (ses == NULL)
5028 return -EIO;
5029
5030 smb_buffer = cifs_buf_get();
Steve Frenchca43e3b2009-09-01 17:20:50 +00005031 if (smb_buffer == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032 return -ENOMEM;
Steve Frenchca43e3b2009-09-01 17:20:50 +00005033
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 smb_buffer_response = smb_buffer;
5035
5036 header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX,
5037 NULL /*no tid */ , 4 /*wct */ );
Steve French1982c342005-08-17 12:38:22 -07005038
Pavel Shilovsky88257362012-05-23 14:01:59 +04005039 smb_buffer->Mid = get_next_mid(ses->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040 smb_buffer->Uid = ses->Suid;
5041 pSMB = (TCONX_REQ *) smb_buffer;
5042 pSMBr = (TCONX_RSP *) smb_buffer_response;
5043
5044 pSMB->AndXCommand = 0xFF;
5045 pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046 bcc_ptr = &pSMB->Password[0];
Aurelien Aptelb327a712018-01-24 13:46:10 +01005047 if (tcon->pipe || (ses->server->sec_mode & SECMODE_USER)) {
Steve Frencheeac8042006-01-13 21:34:58 -08005048 pSMB->PasswordLength = cpu_to_le16(1); /* minimum */
Steve French7c7b25b2006-06-01 19:20:10 +00005049 *bcc_ptr = 0; /* password is null byte */
Steve Frencheeac8042006-01-13 21:34:58 -08005050 bcc_ptr++; /* skip password */
Steve French7c7b25b2006-06-01 19:20:10 +00005051 /* already aligned so no need to do it below */
Steve Frencheeac8042006-01-13 21:34:58 -08005052 } else {
Shirish Pargaonkar540b2e32011-01-18 22:33:54 -06005053 pSMB->PasswordLength = cpu_to_le16(CIFS_AUTH_RESP_SIZE);
Steve Frencheeac8042006-01-13 21:34:58 -08005054 /* BB FIXME add code to fail this if NTLMv2 or Kerberos
5055 specified as required (when that support is added to
5056 the vfs in the future) as only NTLM or the much
Steve French7c7b25b2006-06-01 19:20:10 +00005057 weaker LANMAN (which we do not send by default) is accepted
Steve Frencheeac8042006-01-13 21:34:58 -08005058 by Samba (not sure whether other servers allow
5059 NTLMv2 password here) */
Steve French7c7b25b2006-06-01 19:20:10 +00005060#ifdef CONFIG_CIFS_WEAK_PW_HASH
Jeff Layton04912d62010-04-24 07:57:45 -04005061 if ((global_secflags & CIFSSEC_MAY_LANMAN) &&
Jeff Layton3f618222013-06-12 19:52:14 -05005062 (ses->sectype == LANMAN))
Shirish Pargaonkard3ba50b2010-10-27 15:20:36 -05005063 calc_lanman_hash(tcon->password, ses->server->cryptkey,
Steve French96daf2b2011-05-27 04:34:02 +00005064 ses->server->sec_mode &
Jeff Layton4e53a3f2008-12-05 20:41:21 -05005065 SECMODE_PW_ENCRYPT ? true : false,
5066 bcc_ptr);
Steve French7c7b25b2006-06-01 19:20:10 +00005067 else
5068#endif /* CIFS_WEAK_PW_HASH */
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -06005069 rc = SMBNTencrypt(tcon->password, ses->server->cryptkey,
Shirish Pargaonkar9ef59922011-10-20 13:21:59 -05005070 bcc_ptr, nls_codepage);
Steve Frenchf3a31a22015-03-26 19:23:20 -05005071 if (rc) {
5072 cifs_dbg(FYI, "%s Can't generate NTLM rsp. Error: %d\n",
5073 __func__, rc);
5074 cifs_buf_release(smb_buffer);
5075 return rc;
5076 }
Steve Frencheeac8042006-01-13 21:34:58 -08005077
Shirish Pargaonkar540b2e32011-01-18 22:33:54 -06005078 bcc_ptr += CIFS_AUTH_RESP_SIZE;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00005079 if (ses->capabilities & CAP_UNICODE) {
Steve French7c7b25b2006-06-01 19:20:10 +00005080 /* must align unicode strings */
5081 *bcc_ptr = 0; /* null byte password */
5082 bcc_ptr++;
5083 }
Steve Frencheeac8042006-01-13 21:34:58 -08005084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085
Jeff Layton38d77c52013-05-26 07:01:00 -04005086 if (ses->server->sign)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087 smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
5088
5089 if (ses->capabilities & CAP_STATUS32) {
5090 smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS;
5091 }
5092 if (ses->capabilities & CAP_DFS) {
5093 smb_buffer->Flags2 |= SMBFLG2_DFS;
5094 }
5095 if (ses->capabilities & CAP_UNICODE) {
5096 smb_buffer->Flags2 |= SMBFLG2_UNICODE;
5097 length =
Steve Frenchacbbb762012-01-18 22:32:33 -06005098 cifs_strtoUTF16((__le16 *) bcc_ptr, tree,
Steve French50c2f752007-07-13 00:33:32 +00005099 6 /* max utf8 char length in bytes */ *
Steve Frencha878fb22006-05-30 18:04:19 +00005100 (/* server len*/ + 256 /* share len */), nls_codepage);
5101 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 bcc_ptr += 2; /* skip trailing null */
5103 } else { /* ASCII */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 strcpy(bcc_ptr, tree);
5105 bcc_ptr += strlen(tree) + 1;
5106 }
5107 strcpy(bcc_ptr, "?????");
5108 bcc_ptr += strlen("?????");
5109 bcc_ptr += 1;
5110 count = bcc_ptr - &pSMB->Password[0];
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005111 pSMB->hdr.smb_buf_length = cpu_to_be32(be32_to_cpu(
5112 pSMB->hdr.smb_buf_length) + count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113 pSMB->ByteCount = cpu_to_le16(count);
5114
Steve French133672e2007-11-13 22:41:37 +00005115 rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length,
Jeff Layton77499812011-01-11 07:24:23 -05005116 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118 /* above now done in SendReceive */
Aurelien Aptelb327a712018-01-24 13:46:10 +01005119 if (rc == 0) {
Steve French0e0d2cf2009-05-01 05:27:32 +00005120 bool is_unicode;
5121
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122 tcon->tidStatus = CifsGood;
Steve French3b795212008-11-13 19:45:32 +00005123 tcon->need_reconnect = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124 tcon->tid = smb_buffer_response->Tid;
5125 bcc_ptr = pByteArea(smb_buffer_response);
Jeff Layton690c5222011-01-20 13:36:51 -05005126 bytes_left = get_bcc(smb_buffer_response);
Jeff Laytoncc20c032009-04-30 07:16:21 -04005127 length = strnlen(bcc_ptr, bytes_left - 2);
Steve French0e0d2cf2009-05-01 05:27:32 +00005128 if (smb_buffer->Flags2 & SMBFLG2_UNICODE)
5129 is_unicode = true;
5130 else
5131 is_unicode = false;
5132
Jeff Laytoncc20c032009-04-30 07:16:21 -04005133
Steve French50c2f752007-07-13 00:33:32 +00005134 /* skip service field (NB: this field is always ASCII) */
Steve French7f8ed422007-09-28 22:28:55 +00005135 if (length == 3) {
5136 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') &&
5137 (bcc_ptr[2] == 'C')) {
Joe Perchesf96637b2013-05-04 22:12:25 -05005138 cifs_dbg(FYI, "IPC connection\n");
Aurelien Aptelb327a712018-01-24 13:46:10 +01005139 tcon->ipc = true;
5140 tcon->pipe = true;
Steve French7f8ed422007-09-28 22:28:55 +00005141 }
5142 } else if (length == 2) {
5143 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) {
5144 /* the most common case */
Joe Perchesf96637b2013-05-04 22:12:25 -05005145 cifs_dbg(FYI, "disk share connection\n");
Steve French7f8ed422007-09-28 22:28:55 +00005146 }
5147 }
Steve French50c2f752007-07-13 00:33:32 +00005148 bcc_ptr += length + 1;
Jeff Laytoncc20c032009-04-30 07:16:21 -04005149 bytes_left -= (length + 1);
Zhao Hongjiang46b51d02013-06-24 01:57:47 -05005150 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
Jeff Laytoncc20c032009-04-30 07:16:21 -04005151
5152 /* mostly informational -- no need to fail on error here */
Jeff Layton90a98b22009-07-20 13:40:52 -04005153 kfree(tcon->nativeFileSystem);
Steve Frenchacbbb762012-01-18 22:32:33 -06005154 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr,
Steve French0e0d2cf2009-05-01 05:27:32 +00005155 bytes_left, is_unicode,
Jeff Laytoncc20c032009-04-30 07:16:21 -04005156 nls_codepage);
5157
Joe Perchesf96637b2013-05-04 22:12:25 -05005158 cifs_dbg(FYI, "nativeFileSystem=%s\n", tcon->nativeFileSystem);
Jeff Laytoncc20c032009-04-30 07:16:21 -04005159
Steve Frenchfb8c4b12007-07-10 01:16:18 +00005160 if ((smb_buffer_response->WordCount == 3) ||
Steve French1a4e15a2006-10-12 21:33:51 +00005161 (smb_buffer_response->WordCount == 7))
5162 /* field is in same location */
Steve French39798772006-05-31 22:40:51 +00005163 tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport);
5164 else
5165 tcon->Flags = 0;
Joe Perchesf96637b2013-05-04 22:12:25 -05005166 cifs_dbg(FYI, "Tcon flags: 0x%x\n", tcon->Flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 }
5168
Mariusz Kozlowskia8a11d32007-10-03 16:41:24 +00005169 cifs_buf_release(smb_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 return rc;
5171}
5172
Al Viro2e32cf52013-10-03 12:53:37 -04005173static void delayed_free(struct rcu_head *p)
5174{
5175 struct cifs_sb_info *sbi = container_of(p, struct cifs_sb_info, rcu);
5176 unload_nls(sbi->local_nls);
5177 kfree(sbi);
5178}
5179
Al Viro2a9b9952011-06-17 09:27:16 -04005180void
5181cifs_umount(struct cifs_sb_info *cifs_sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182{
Jeff Laytonb647c352010-10-28 11:16:44 -04005183 struct rb_root *root = &cifs_sb->tlink_tree;
5184 struct rb_node *node;
5185 struct tcon_link *tlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186
Jeff Layton2de970f2010-10-06 19:51:12 -04005187 cancel_delayed_work_sync(&cifs_sb->prune_tlinks);
5188
Jeff Laytonb647c352010-10-28 11:16:44 -04005189 spin_lock(&cifs_sb->tlink_tree_lock);
5190 while ((node = rb_first(root))) {
5191 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
5192 cifs_get_tlink(tlink);
5193 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
5194 rb_erase(node, root);
Steve French50c2f752007-07-13 00:33:32 +00005195
Jeff Laytonb647c352010-10-28 11:16:44 -04005196 spin_unlock(&cifs_sb->tlink_tree_lock);
5197 cifs_put_tlink(tlink);
5198 spin_lock(&cifs_sb->tlink_tree_lock);
5199 }
5200 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04005201
Al Virod757d712011-06-17 09:42:43 -04005202 kfree(cifs_sb->mountdata);
Aurelien Aptela6b50582016-05-25 19:59:09 +02005203 kfree(cifs_sb->prepath);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02005204#ifdef CONFIG_CIFS_DFS_UPCALL
Paulo Alcantarae511d312018-11-14 17:16:44 -02005205 dfs_cache_del_vol(cifs_sb->origin_fullpath);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02005206 kfree(cifs_sb->origin_fullpath);
5207#endif
Al Viro2e32cf52013-10-03 12:53:37 -04005208 call_rcu(&cifs_sb->rcu, delayed_free);
Steve French50c2f752007-07-13 00:33:32 +00005209}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210
Pavel Shilovsky286170a2012-05-25 10:43:58 +04005211int
5212cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213{
5214 int rc = 0;
Aurelien Aptelf6a6bf72019-09-20 06:22:14 +02005215 struct TCP_Server_Info *server = cifs_ses_server(ses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216
Pavel Shilovsky286170a2012-05-25 10:43:58 +04005217 if (!server->ops->need_neg || !server->ops->negotiate)
5218 return -ENOSYS;
5219
Jeff Layton198b5682010-04-24 07:57:48 -04005220 /* only send once per connect */
Pavel Shilovsky286170a2012-05-25 10:43:58 +04005221 if (!server->ops->need_neg(server))
Jeff Layton198b5682010-04-24 07:57:48 -04005222 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223
Pavel Shilovsky286170a2012-05-25 10:43:58 +04005224 rc = server->ops->negotiate(xid, ses);
Jeff Layton198b5682010-04-24 07:57:48 -04005225 if (rc == 0) {
5226 spin_lock(&GlobalMid_Lock);
Jeff Layton7fdbaa12011-06-10 16:14:57 -04005227 if (server->tcpStatus == CifsNeedNegotiate)
Jeff Layton198b5682010-04-24 07:57:48 -04005228 server->tcpStatus = CifsGood;
5229 else
5230 rc = -EHOSTDOWN;
5231 spin_unlock(&GlobalMid_Lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232 }
Steve French26b994f2008-08-06 05:11:33 +00005233
Jeff Layton198b5682010-04-24 07:57:48 -04005234 return rc;
5235}
Steve French26b994f2008-08-06 05:11:33 +00005236
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04005237int
5238cifs_setup_session(const unsigned int xid, struct cifs_ses *ses,
5239 struct nls_table *nls_info)
Jeff Layton198b5682010-04-24 07:57:48 -04005240{
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04005241 int rc = -ENOSYS;
Aurelien Aptelf6a6bf72019-09-20 06:22:14 +02005242 struct TCP_Server_Info *server = cifs_ses_server(ses);
Jeff Layton198b5682010-04-24 07:57:48 -04005243
Aurelien Apteld70e9fa2019-09-20 06:31:10 +02005244 if (!ses->binding) {
5245 ses->capabilities = server->capabilities;
5246 if (linuxExtEnabled == 0)
5247 ses->capabilities &= (~server->vals->cap_unix);
5248
5249 if (ses->auth_key.response) {
5250 cifs_dbg(FYI, "Free previous auth_key.response = %p\n",
5251 ses->auth_key.response);
5252 kfree(ses->auth_key.response);
5253 ses->auth_key.response = NULL;
5254 ses->auth_key.len = 0;
5255 }
5256 }
Steve French20418ac2009-04-30 16:13:32 +00005257
Joe Perchesf96637b2013-05-04 22:12:25 -05005258 cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n",
Steve French96daf2b2011-05-27 04:34:02 +00005259 server->sec_mode, server->capabilities, server->timeAdj);
Jeff Laytoncb7691b2008-08-18 15:41:05 -04005260
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04005261 if (server->ops->sess_setup)
5262 rc = server->ops->sess_setup(xid, ses, nls_info);
5263
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -05005264 if (rc)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10005265 cifs_server_dbg(VFS, "Send error in SessSetup = %d\n", rc);
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05005266
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267 return rc;
5268}
5269
Jeff Layton8a8798a2012-01-17 16:09:15 -05005270static int
5271cifs_set_vol_auth(struct smb_vol *vol, struct cifs_ses *ses)
5272{
Jeff Layton3f618222013-06-12 19:52:14 -05005273 vol->sectype = ses->sectype;
5274
5275 /* krb5 is special, since we don't need username or pw */
5276 if (vol->sectype == Kerberos)
Jeff Layton8a8798a2012-01-17 16:09:15 -05005277 return 0;
Jeff Layton8a8798a2012-01-17 16:09:15 -05005278
5279 return cifs_set_cifscreds(vol, ses);
5280}
5281
Steve French96daf2b2011-05-27 04:34:02 +00005282static struct cifs_tcon *
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08005283cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid)
Jeff Layton9d002df2010-10-06 19:51:11 -04005284{
Jeff Layton8a8798a2012-01-17 16:09:15 -05005285 int rc;
Steve French96daf2b2011-05-27 04:34:02 +00005286 struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb);
5287 struct cifs_ses *ses;
5288 struct cifs_tcon *tcon = NULL;
Jeff Layton9d002df2010-10-06 19:51:11 -04005289 struct smb_vol *vol_info;
Jeff Layton9d002df2010-10-06 19:51:11 -04005290
5291 vol_info = kzalloc(sizeof(*vol_info), GFP_KERNEL);
Dan Carpenter803ab972012-01-24 11:39:22 +03005292 if (vol_info == NULL)
5293 return ERR_PTR(-ENOMEM);
Jeff Layton9d002df2010-10-06 19:51:11 -04005294
Jeff Layton9d002df2010-10-06 19:51:11 -04005295 vol_info->local_nls = cifs_sb->local_nls;
5296 vol_info->linux_uid = fsuid;
5297 vol_info->cred_uid = fsuid;
5298 vol_info->UNC = master_tcon->treeName;
5299 vol_info->retry = master_tcon->retry;
5300 vol_info->nocase = master_tcon->nocase;
Steve French3d4ef9a2018-04-25 22:19:09 -05005301 vol_info->nohandlecache = master_tcon->nohandlecache;
Jeff Layton9d002df2010-10-06 19:51:11 -04005302 vol_info->local_lease = master_tcon->local_lease;
5303 vol_info->no_linux_ext = !master_tcon->unix_ext;
Jeff Layton28e11bd2013-05-26 07:01:00 -04005304 vol_info->sectype = master_tcon->ses->sectype;
5305 vol_info->sign = master_tcon->ses->sign;
Jeff Layton9d002df2010-10-06 19:51:11 -04005306
Jeff Layton8a8798a2012-01-17 16:09:15 -05005307 rc = cifs_set_vol_auth(vol_info, master_tcon->ses);
5308 if (rc) {
5309 tcon = ERR_PTR(rc);
5310 goto out;
5311 }
Jeff Layton9d002df2010-10-06 19:51:11 -04005312
5313 /* get a reference for the same TCP session */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05305314 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04005315 ++master_tcon->ses->server->srv_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05305316 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04005317
5318 ses = cifs_get_smb_ses(master_tcon->ses->server, vol_info);
5319 if (IS_ERR(ses)) {
Steve French96daf2b2011-05-27 04:34:02 +00005320 tcon = (struct cifs_tcon *)ses;
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07005321 cifs_put_tcp_session(master_tcon->ses->server, 0);
Jeff Layton9d002df2010-10-06 19:51:11 -04005322 goto out;
5323 }
5324
5325 tcon = cifs_get_tcon(ses, vol_info);
5326 if (IS_ERR(tcon)) {
5327 cifs_put_smb_ses(ses);
5328 goto out;
5329 }
5330
Steve Frenchce558b02018-05-31 19:16:54 -05005331 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
5332 if (tcon->posix_extensions)
5333 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS;
Steve French0fdfef92018-06-28 19:30:23 -05005334
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04005335 if (cap_unix(ses))
Jeff Layton9d002df2010-10-06 19:51:11 -04005336 reset_cifs_unix_caps(0, tcon, NULL, vol_info);
Steve Frenchb3266142018-05-20 23:41:10 -05005337
Jeff Layton9d002df2010-10-06 19:51:11 -04005338out:
Jeff Layton8a8798a2012-01-17 16:09:15 -05005339 kfree(vol_info->username);
Aurelien Aptel97f4b722018-01-25 15:59:39 +01005340 kzfree(vol_info->password);
Jeff Layton9d002df2010-10-06 19:51:11 -04005341 kfree(vol_info);
5342
5343 return tcon;
5344}
5345
Steve French96daf2b2011-05-27 04:34:02 +00005346struct cifs_tcon *
Jeff Layton9d002df2010-10-06 19:51:11 -04005347cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb)
5348{
5349 return tlink_tcon(cifs_sb_master_tlink(cifs_sb));
5350}
5351
Jeff Laytonb647c352010-10-28 11:16:44 -04005352/* find and return a tlink with given uid */
5353static struct tcon_link *
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08005354tlink_rb_search(struct rb_root *root, kuid_t uid)
Jeff Laytonb647c352010-10-28 11:16:44 -04005355{
5356 struct rb_node *node = root->rb_node;
5357 struct tcon_link *tlink;
5358
5359 while (node) {
5360 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
5361
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08005362 if (uid_gt(tlink->tl_uid, uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04005363 node = node->rb_left;
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08005364 else if (uid_lt(tlink->tl_uid, uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04005365 node = node->rb_right;
5366 else
5367 return tlink;
5368 }
5369 return NULL;
5370}
5371
5372/* insert a tcon_link into the tree */
5373static void
5374tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink)
5375{
5376 struct rb_node **new = &(root->rb_node), *parent = NULL;
5377 struct tcon_link *tlink;
5378
5379 while (*new) {
5380 tlink = rb_entry(*new, struct tcon_link, tl_rbnode);
5381 parent = *new;
5382
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08005383 if (uid_gt(tlink->tl_uid, new_tlink->tl_uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04005384 new = &((*new)->rb_left);
5385 else
5386 new = &((*new)->rb_right);
5387 }
5388
5389 rb_link_node(&new_tlink->tl_rbnode, parent, new);
5390 rb_insert_color(&new_tlink->tl_rbnode, root);
5391}
5392
Jeff Layton9d002df2010-10-06 19:51:11 -04005393/*
5394 * Find or construct an appropriate tcon given a cifs_sb and the fsuid of the
5395 * current task.
5396 *
5397 * If the superblock doesn't refer to a multiuser mount, then just return
5398 * the master tcon for the mount.
5399 *
Suresh Jayaraman6ef933a2010-11-03 10:53:49 +05305400 * First, search the rbtree for an existing tcon for this fsuid. If one
Jeff Layton9d002df2010-10-06 19:51:11 -04005401 * exists, then check to see if it's pending construction. If it is then wait
5402 * for construction to complete. Once it's no longer pending, check to see if
5403 * it failed and either return an error or retry construction, depending on
5404 * the timeout.
5405 *
5406 * If one doesn't exist then insert a new tcon_link struct into the tree and
5407 * try to construct a new one.
5408 */
5409struct tcon_link *
5410cifs_sb_tlink(struct cifs_sb_info *cifs_sb)
5411{
5412 int ret;
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08005413 kuid_t fsuid = current_fsuid();
Jeff Layton9d002df2010-10-06 19:51:11 -04005414 struct tcon_link *tlink, *newtlink;
5415
5416 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
5417 return cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
5418
5419 spin_lock(&cifs_sb->tlink_tree_lock);
Jeff Laytonb647c352010-10-28 11:16:44 -04005420 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
Jeff Layton9d002df2010-10-06 19:51:11 -04005421 if (tlink)
5422 cifs_get_tlink(tlink);
5423 spin_unlock(&cifs_sb->tlink_tree_lock);
5424
5425 if (tlink == NULL) {
5426 newtlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
5427 if (newtlink == NULL)
5428 return ERR_PTR(-ENOMEM);
Jeff Laytonb647c352010-10-28 11:16:44 -04005429 newtlink->tl_uid = fsuid;
Jeff Layton9d002df2010-10-06 19:51:11 -04005430 newtlink->tl_tcon = ERR_PTR(-EACCES);
5431 set_bit(TCON_LINK_PENDING, &newtlink->tl_flags);
5432 set_bit(TCON_LINK_IN_TREE, &newtlink->tl_flags);
5433 cifs_get_tlink(newtlink);
5434
Jeff Layton9d002df2010-10-06 19:51:11 -04005435 spin_lock(&cifs_sb->tlink_tree_lock);
5436 /* was one inserted after previous search? */
Jeff Laytonb647c352010-10-28 11:16:44 -04005437 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
Jeff Layton9d002df2010-10-06 19:51:11 -04005438 if (tlink) {
5439 cifs_get_tlink(tlink);
5440 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04005441 kfree(newtlink);
5442 goto wait_for_construction;
5443 }
Jeff Layton9d002df2010-10-06 19:51:11 -04005444 tlink = newtlink;
Jeff Laytonb647c352010-10-28 11:16:44 -04005445 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
5446 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04005447 } else {
5448wait_for_construction:
5449 ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING,
Jeff Layton9d002df2010-10-06 19:51:11 -04005450 TASK_INTERRUPTIBLE);
5451 if (ret) {
5452 cifs_put_tlink(tlink);
NeilBrown74316202014-07-07 15:16:04 +10005453 return ERR_PTR(-ERESTARTSYS);
Jeff Layton9d002df2010-10-06 19:51:11 -04005454 }
5455
5456 /* if it's good, return it */
5457 if (!IS_ERR(tlink->tl_tcon))
5458 return tlink;
5459
5460 /* return error if we tried this already recently */
5461 if (time_before(jiffies, tlink->tl_time + TLINK_ERROR_EXPIRE)) {
5462 cifs_put_tlink(tlink);
5463 return ERR_PTR(-EACCES);
5464 }
5465
5466 if (test_and_set_bit(TCON_LINK_PENDING, &tlink->tl_flags))
5467 goto wait_for_construction;
5468 }
5469
5470 tlink->tl_tcon = cifs_construct_tcon(cifs_sb, fsuid);
5471 clear_bit(TCON_LINK_PENDING, &tlink->tl_flags);
5472 wake_up_bit(&tlink->tl_flags, TCON_LINK_PENDING);
5473
5474 if (IS_ERR(tlink->tl_tcon)) {
5475 cifs_put_tlink(tlink);
5476 return ERR_PTR(-EACCES);
5477 }
5478
5479 return tlink;
5480}
Jeff Layton2de970f2010-10-06 19:51:12 -04005481
5482/*
5483 * periodic workqueue job that scans tcon_tree for a superblock and closes
5484 * out tcons.
5485 */
5486static void
5487cifs_prune_tlinks(struct work_struct *work)
5488{
5489 struct cifs_sb_info *cifs_sb = container_of(work, struct cifs_sb_info,
5490 prune_tlinks.work);
Jeff Laytonb647c352010-10-28 11:16:44 -04005491 struct rb_root *root = &cifs_sb->tlink_tree;
Colin Ian King37e12f52018-01-17 09:52:39 +00005492 struct rb_node *node;
Jeff Laytonb647c352010-10-28 11:16:44 -04005493 struct rb_node *tmp;
5494 struct tcon_link *tlink;
Jeff Layton2de970f2010-10-06 19:51:12 -04005495
Jeff Laytonb647c352010-10-28 11:16:44 -04005496 /*
5497 * Because we drop the spinlock in the loop in order to put the tlink
5498 * it's not guarded against removal of links from the tree. The only
5499 * places that remove entries from the tree are this function and
5500 * umounts. Because this function is non-reentrant and is canceled
5501 * before umount can proceed, this is safe.
5502 */
5503 spin_lock(&cifs_sb->tlink_tree_lock);
5504 node = rb_first(root);
5505 while (node != NULL) {
5506 tmp = node;
5507 node = rb_next(tmp);
5508 tlink = rb_entry(tmp, struct tcon_link, tl_rbnode);
5509
5510 if (test_bit(TCON_LINK_MASTER, &tlink->tl_flags) ||
5511 atomic_read(&tlink->tl_count) != 0 ||
5512 time_after(tlink->tl_time + TLINK_IDLE_EXPIRE, jiffies))
5513 continue;
5514
5515 cifs_get_tlink(tlink);
5516 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
5517 rb_erase(tmp, root);
5518
Jeff Layton2de970f2010-10-06 19:51:12 -04005519 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Laytonb647c352010-10-28 11:16:44 -04005520 cifs_put_tlink(tlink);
5521 spin_lock(&cifs_sb->tlink_tree_lock);
5522 }
5523 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton2de970f2010-10-06 19:51:12 -04005524
Jeff Laytonda472fc2012-03-23 14:40:53 -04005525 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
Jeff Layton2de970f2010-10-06 19:51:12 -04005526 TLINK_IDLE_EXPIRE);
5527}