blob: a64dfa95a925acaefa19ddc027ff2c454ada96a8 [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>
Ingo Molnar3f07c012017-02-08 18:51:30 +010024#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/list.h>
26#include <linux/wait.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/pagemap.h>
29#include <linux/ctype.h>
30#include <linux/utsname.h>
31#include <linux/mempool.h>
Steve Frenchb8643e12005-04-28 22:41:07 -070032#include <linux/delay.h>
Steve Frenchf1914012005-08-18 09:37:34 -070033#include <linux/completion.h>
Igor Mammedovaaf737a2007-04-03 19:16:43 +000034#include <linux/kthread.h>
Steve French0ae0efa2005-10-10 10:57:19 -070035#include <linux/pagevec.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080036#include <linux/freezer.h>
Igor Mammedov5c2503a2009-04-21 19:31:05 +040037#include <linux/namei.h>
Andrew Lunnc6e970a2017-03-28 23:45:06 +020038#include <linux/uuid.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080039#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/processor.h>
Jeff Layton50b64e32009-06-02 06:55:20 -040041#include <linux/inet.h>
Paul Gortmaker143cb492011-07-01 14:23:34 -040042#include <linux/module.h>
Jeff Layton8a8798a2012-01-17 16:09:15 -050043#include <keys/user-type.h>
Steve French0e2beda2009-01-30 21:24:41 +000044#include <net/ipv6.h>
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040045#include <linux/parser.h>
Christoph Hellwig2f8b5442016-11-01 07:40:13 -060046#include <linux/bvec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include "cifspdu.h"
48#include "cifsglob.h"
49#include "cifsproto.h"
50#include "cifs_unicode.h"
51#include "cifs_debug.h"
52#include "cifs_fs_sb.h"
53#include "ntlmssp.h"
54#include "nterr.h"
55#include "rfc1002pdu.h"
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +053056#include "fscache.h"
Pavel Shilovsky53e0e112016-11-04 11:50:31 -070057#include "smb2proto.h"
Long Li2f894642017-11-22 17:38:34 -070058#include "smbdirect.h"
Paulo Alcantara1c780222018-11-14 16:24:03 -020059#include "dns_resolve.h"
Paulo Alcantara93d5cb52018-11-14 17:13:25 -020060#include "cifsfs.h"
Paulo Alcantara1c780222018-11-14 16:24:03 -020061#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,
Steve French9fe5ff12019-06-24 20:39:04 -0500100 Opt_compress,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400101
102 /* Mount options which take numeric value */
103 Opt_backupuid, Opt_backupgid, Opt_uid,
104 Opt_cruid, Opt_gid, Opt_file_mode,
105 Opt_dirmode, Opt_port,
Steve French563317e2019-09-08 23:22:02 -0500106 Opt_min_enc_offload,
Steve Frenche8506d22019-02-28 21:32:15 -0600107 Opt_blocksize, Opt_rsize, Opt_wsize, Opt_actimeo,
Steve Frenchca567eb2019-03-29 16:31:07 -0500108 Opt_echo_interval, Opt_max_credits, Opt_handletimeout,
Steve French8b217fe2016-11-11 22:36:20 -0600109 Opt_snapshot,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400110
111 /* Mount options which take string value */
112 Opt_user, Opt_pass, Opt_ip,
Jeff Layton73a999f2013-03-22 08:42:57 -0400113 Opt_domain, Opt_srcaddr, Opt_iocharset,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400114 Opt_netbiosname, Opt_servern,
Jeff Layton23db65f2012-05-15 12:20:51 -0400115 Opt_ver, Opt_vers, Opt_sec, Opt_cache,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400116
117 /* Mount options to be ignored */
118 Opt_ignore,
119
120 /* Options which could be blank */
121 Opt_blank_pass,
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100122 Opt_blank_user,
123 Opt_blank_ip,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400124
125 Opt_err
126};
127
128static const match_table_t cifs_mount_option_tokens = {
129
130 { Opt_user_xattr, "user_xattr" },
131 { Opt_nouser_xattr, "nouser_xattr" },
132 { Opt_forceuid, "forceuid" },
133 { Opt_noforceuid, "noforceuid" },
Jeff Layton72bd4812012-10-03 16:02:36 -0400134 { Opt_forcegid, "forcegid" },
135 { Opt_noforcegid, "noforcegid" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400136 { Opt_noblocksend, "noblocksend" },
137 { Opt_noautotune, "noautotune" },
Steve French3e7a02d2019-09-11 21:46:20 -0500138 { Opt_nolease, "nolease" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400139 { Opt_hard, "hard" },
140 { Opt_soft, "soft" },
141 { Opt_perm, "perm" },
142 { Opt_noperm, "noperm" },
Steve French2baa2682014-09-27 02:19:01 -0500143 { Opt_mapchars, "mapchars" }, /* SFU style */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400144 { Opt_nomapchars, "nomapchars" },
Steve French2baa2682014-09-27 02:19:01 -0500145 { Opt_mapposix, "mapposix" }, /* SFM style */
146 { Opt_nomapposix, "nomapposix" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400147 { Opt_sfu, "sfu" },
148 { Opt_nosfu, "nosfu" },
149 { Opt_nodfs, "nodfs" },
150 { Opt_posixpaths, "posixpaths" },
151 { Opt_noposixpaths, "noposixpaths" },
152 { Opt_nounix, "nounix" },
153 { Opt_nounix, "nolinux" },
Steve Frenchb3266142018-05-20 23:41:10 -0500154 { Opt_nounix, "noposix" },
155 { Opt_unix, "unix" },
156 { Opt_unix, "linux" },
157 { Opt_unix, "posix" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400158 { Opt_nocase, "nocase" },
159 { Opt_nocase, "ignorecase" },
160 { Opt_brl, "brl" },
161 { Opt_nobrl, "nobrl" },
Steve French3d4ef9a2018-04-25 22:19:09 -0500162 { Opt_handlecache, "handlecache" },
163 { Opt_nohandlecache, "nohandlecache" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400164 { Opt_nobrl, "nolock" },
165 { Opt_forcemandatorylock, "forcemandatorylock" },
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +0400166 { Opt_forcemandatorylock, "forcemand" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400167 { Opt_setuids, "setuids" },
168 { Opt_nosetuids, "nosetuids" },
Steve French95932652016-09-23 01:36:34 -0500169 { Opt_setuidfromacl, "idsfromsid" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400170 { Opt_dynperm, "dynperm" },
171 { Opt_nodynperm, "nodynperm" },
172 { Opt_nohard, "nohard" },
173 { Opt_nosoft, "nosoft" },
174 { Opt_nointr, "nointr" },
175 { Opt_intr, "intr" },
176 { Opt_nostrictsync, "nostrictsync" },
177 { Opt_strictsync, "strictsync" },
178 { Opt_serverino, "serverino" },
179 { Opt_noserverino, "noserverino" },
180 { Opt_rwpidforward, "rwpidforward" },
Steve French412094a2019-06-24 02:01:42 -0500181 { Opt_modesid, "modefromsid" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400182 { Opt_cifsacl, "cifsacl" },
183 { Opt_nocifsacl, "nocifsacl" },
184 { Opt_acl, "acl" },
185 { Opt_noacl, "noacl" },
186 { Opt_locallease, "locallease" },
187 { Opt_sign, "sign" },
Steve French4f5c10f2019-09-03 21:18:49 -0500188 { Opt_ignore_signature, "signloosely" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400189 { Opt_seal, "seal" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400190 { Opt_noac, "noac" },
191 { Opt_fsc, "fsc" },
192 { Opt_mfsymlinks, "mfsymlinks" },
193 { Opt_multiuser, "multiuser" },
Jeff Laytond8162552012-03-23 14:40:56 -0400194 { Opt_sloppy, "sloppy" },
Jeff Laytona0b3df52013-05-24 07:40:59 -0400195 { Opt_nosharesock, "nosharesock" },
Steve Frenchb2a30772015-09-29 21:49:28 -0500196 { Opt_persistent, "persistenthandles"},
197 { Opt_nopersistent, "nopersistenthandles"},
Steve French592fafe2015-11-03 10:08:53 -0600198 { Opt_resilient, "resilienthandles"},
199 { Opt_noresilient, "noresilienthandles"},
Germano Percossi39566442016-12-15 12:31:18 +0530200 { Opt_domainauto, "domainauto"},
Long Li8339dd32017-11-07 01:54:55 -0700201 { Opt_rdma, "rdma"},
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400202
203 { Opt_backupuid, "backupuid=%s" },
204 { Opt_backupgid, "backupgid=%s" },
205 { Opt_uid, "uid=%s" },
206 { Opt_cruid, "cruid=%s" },
207 { Opt_gid, "gid=%s" },
208 { Opt_file_mode, "file_mode=%s" },
209 { Opt_dirmode, "dirmode=%s" },
210 { Opt_dirmode, "dir_mode=%s" },
211 { Opt_port, "port=%s" },
Steve French563317e2019-09-08 23:22:02 -0500212 { Opt_min_enc_offload, "esize=%s" },
Steve Frenche8506d22019-02-28 21:32:15 -0600213 { Opt_blocksize, "bsize=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400214 { Opt_rsize, "rsize=%s" },
215 { Opt_wsize, "wsize=%s" },
216 { Opt_actimeo, "actimeo=%s" },
Steve Frenchca567eb2019-03-29 16:31:07 -0500217 { Opt_handletimeout, "handletimeout=%s" },
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600218 { Opt_echo_interval, "echo_interval=%s" },
Steve French141891f2016-09-23 00:44:16 -0500219 { Opt_max_credits, "max_credits=%s" },
Steve French8b217fe2016-11-11 22:36:20 -0600220 { Opt_snapshot, "snapshot=%s" },
Steve French9fe5ff12019-06-24 20:39:04 -0500221 { Opt_compress, "compress=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400222
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100223 { Opt_blank_user, "user=" },
224 { Opt_blank_user, "username=" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400225 { Opt_user, "user=%s" },
226 { Opt_user, "username=%s" },
227 { Opt_blank_pass, "pass=" },
Jesper Nilsson3c15b4c2012-11-29 17:31:16 +0100228 { Opt_blank_pass, "password=" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400229 { Opt_pass, "pass=%s" },
230 { Opt_pass, "password=%s" },
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100231 { Opt_blank_ip, "ip=" },
232 { Opt_blank_ip, "addr=" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400233 { Opt_ip, "ip=%s" },
234 { Opt_ip, "addr=%s" },
Jeff Layton73a999f2013-03-22 08:42:57 -0400235 { Opt_ignore, "unc=%s" },
236 { Opt_ignore, "target=%s" },
237 { Opt_ignore, "path=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400238 { Opt_domain, "dom=%s" },
239 { Opt_domain, "domain=%s" },
240 { Opt_domain, "workgroup=%s" },
241 { Opt_srcaddr, "srcaddr=%s" },
Jeff Layton73a999f2013-03-22 08:42:57 -0400242 { Opt_ignore, "prefixpath=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400243 { Opt_iocharset, "iocharset=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400244 { Opt_netbiosname, "netbiosname=%s" },
245 { Opt_servern, "servern=%s" },
246 { Opt_ver, "ver=%s" },
Jeff Layton23db65f2012-05-15 12:20:51 -0400247 { Opt_vers, "vers=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400248 { Opt_sec, "sec=%s" },
Jeff Layton15b6a472012-05-16 07:50:15 -0400249 { Opt_cache, "cache=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400250
251 { Opt_ignore, "cred" },
252 { Opt_ignore, "credentials" },
Jeff Laytona557b972012-05-02 14:02:40 -0400253 { Opt_ignore, "cred=%s" },
254 { Opt_ignore, "credentials=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400255 { Opt_ignore, "guest" },
256 { Opt_ignore, "rw" },
257 { Opt_ignore, "ro" },
258 { Opt_ignore, "suid" },
259 { Opt_ignore, "nosuid" },
260 { Opt_ignore, "exec" },
261 { Opt_ignore, "noexec" },
262 { Opt_ignore, "nodev" },
263 { Opt_ignore, "noauto" },
264 { Opt_ignore, "dev" },
265 { Opt_ignore, "mand" },
266 { Opt_ignore, "nomand" },
Steve French9b9c5be2018-09-22 12:07:06 -0500267 { Opt_ignore, "relatime" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400268 { Opt_ignore, "_netdev" },
Paulo Alcantara (SUSE)8eecd1c2019-07-16 19:04:50 -0300269 { Opt_rootfs, "rootfs" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400270
271 { Opt_err, NULL }
272};
273
274enum {
275 Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p,
276 Opt_sec_ntlmsspi, Opt_sec_ntlmssp,
Jeff Layton76596242012-07-23 20:34:17 -0400277 Opt_ntlm, Opt_sec_ntlmi, Opt_sec_ntlmv2,
278 Opt_sec_ntlmv2i, Opt_sec_lanman,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400279 Opt_sec_none,
280
281 Opt_sec_err
282};
283
284static const match_table_t cifs_secflavor_tokens = {
285 { Opt_sec_krb5, "krb5" },
286 { Opt_sec_krb5i, "krb5i" },
287 { Opt_sec_krb5p, "krb5p" },
288 { Opt_sec_ntlmsspi, "ntlmsspi" },
289 { Opt_sec_ntlmssp, "ntlmssp" },
290 { Opt_ntlm, "ntlm" },
291 { Opt_sec_ntlmi, "ntlmi" },
Jeff Layton76596242012-07-23 20:34:17 -0400292 { Opt_sec_ntlmv2, "nontlm" },
293 { Opt_sec_ntlmv2, "ntlmv2" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400294 { Opt_sec_ntlmv2i, "ntlmv2i" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400295 { Opt_sec_lanman, "lanman" },
296 { Opt_sec_none, "none" },
297
298 { Opt_sec_err, NULL }
299};
300
Jeff Layton15b6a472012-05-16 07:50:15 -0400301/* cache flavors */
302enum {
303 Opt_cache_loose,
304 Opt_cache_strict,
305 Opt_cache_none,
Steve French83bbfa72019-08-27 23:58:54 -0500306 Opt_cache_ro,
Steve French41e033f2019-08-30 02:12:41 -0500307 Opt_cache_rw,
Jeff Layton15b6a472012-05-16 07:50:15 -0400308 Opt_cache_err
309};
310
311static const match_table_t cifs_cacheflavor_tokens = {
312 { Opt_cache_loose, "loose" },
313 { Opt_cache_strict, "strict" },
314 { Opt_cache_none, "none" },
Steve French83bbfa72019-08-27 23:58:54 -0500315 { Opt_cache_ro, "ro" },
Steve French41e033f2019-08-30 02:12:41 -0500316 { Opt_cache_rw, "singleclient" },
Jeff Layton15b6a472012-05-16 07:50:15 -0400317 { Opt_cache_err, NULL }
318};
319
Jeff Layton23db65f2012-05-15 12:20:51 -0400320static const match_table_t cifs_smb_version_tokens = {
321 { Smb_1, SMB1_VERSION_STRING },
Steve Frenchdd446b12012-11-28 23:21:06 -0600322 { Smb_20, SMB20_VERSION_STRING},
Steve French1080ef72011-02-24 18:07:19 +0000323 { Smb_21, SMB21_VERSION_STRING },
Steve Frenche4aa25e2012-10-01 12:26:22 -0500324 { Smb_30, SMB30_VERSION_STRING },
Steve French20b6d8b2013-06-12 22:48:41 -0500325 { Smb_302, SMB302_VERSION_STRING },
Kenneth D'souza4a3b38a2018-11-17 10:33:30 +0530326 { Smb_302, ALT_SMB302_VERSION_STRING },
Steve French5f7fbf72014-12-17 22:52:58 -0600327 { Smb_311, SMB311_VERSION_STRING },
Steve Frenchaab18932015-06-23 23:37:11 -0500328 { Smb_311, ALT_SMB311_VERSION_STRING },
Steve French9764c022017-09-17 10:41:35 -0500329 { Smb_3any, SMB3ANY_VERSION_STRING },
330 { Smb_default, SMBDEFAULT_VERSION_STRING },
Steve French5f7fbf72014-12-17 22:52:58 -0600331 { Smb_version_err, NULL }
Jeff Layton23db65f2012-05-15 12:20:51 -0400332};
333
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300334static int ip_connect(struct TCP_Server_Info *server);
335static int generic_ip_connect(struct TCP_Server_Info *server);
Jeff Laytonb647c352010-10-28 11:16:44 -0400336static void tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink);
Jeff Layton2de970f2010-10-06 19:51:12 -0400337static void cifs_prune_tlinks(struct work_struct *work);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200338static char *extract_hostname(const char *unc);
339
Paulo Alcantara28eb24f2018-11-20 15:16:36 -0200340/*
341 * Resolve hostname and set ip addr in tcp ses. Useful for hostnames that may
342 * get their ip addresses changed at some point.
343 *
344 * This should be called with server->srv_mutex held.
345 */
346#ifdef CONFIG_CIFS_DFS_UPCALL
347static int reconn_set_ipaddr(struct TCP_Server_Info *server)
348{
349 int rc;
350 int len;
351 char *unc, *ipaddr = NULL;
352
353 if (!server->hostname)
354 return -EINVAL;
355
356 len = strlen(server->hostname) + 3;
357
358 unc = kmalloc(len, GFP_KERNEL);
359 if (!unc) {
360 cifs_dbg(FYI, "%s: failed to create UNC path\n", __func__);
361 return -ENOMEM;
362 }
Ronnie Sahlberg74ea5f92019-02-09 09:51:11 +1000363 scnprintf(unc, len, "\\\\%s", server->hostname);
Paulo Alcantara28eb24f2018-11-20 15:16:36 -0200364
365 rc = dns_resolve_server_name_to_ip(unc, &ipaddr);
366 kfree(unc);
367
368 if (rc < 0) {
369 cifs_dbg(FYI, "%s: failed to resolve server part of %s to IP: %d\n",
370 __func__, server->hostname, rc);
371 return rc;
372 }
373
374 rc = cifs_convert_address((struct sockaddr *)&server->dstaddr, ipaddr,
375 strlen(ipaddr));
376 kfree(ipaddr);
377
378 return !rc ? -1 : 0;
379}
380#else
381static inline int reconn_set_ipaddr(struct TCP_Server_Info *server)
382{
383 return 0;
384}
385#endif
386
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200387#ifdef CONFIG_CIFS_DFS_UPCALL
388struct super_cb_data {
389 struct TCP_Server_Info *server;
390 struct cifs_sb_info *cifs_sb;
391};
392
393/* These functions must be called with server->srv_mutex held */
394
395static void super_cb(struct super_block *sb, void *arg)
396{
397 struct super_cb_data *d = arg;
398 struct cifs_sb_info *cifs_sb;
399 struct cifs_tcon *tcon;
400
401 if (d->cifs_sb)
402 return;
403
404 cifs_sb = CIFS_SB(sb);
405 tcon = cifs_sb_master_tcon(cifs_sb);
406 if (tcon->ses->server == d->server)
407 d->cifs_sb = cifs_sb;
408}
409
410static inline struct cifs_sb_info *
411find_super_by_tcp(struct TCP_Server_Info *server)
412{
413 struct super_cb_data d = {
414 .server = server,
415 .cifs_sb = NULL,
416 };
417
418 iterate_supers_type(&cifs_fs_type, super_cb, &d);
419 return d.cifs_sb ? d.cifs_sb : ERR_PTR(-ENOENT);
420}
421
422static void reconn_inval_dfs_target(struct TCP_Server_Info *server,
423 struct cifs_sb_info *cifs_sb,
424 struct dfs_cache_tgt_list *tgt_list,
425 struct dfs_cache_tgt_iterator **tgt_it)
426{
427 const char *name;
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200428
429 if (!cifs_sb || !cifs_sb->origin_fullpath || !tgt_list ||
430 !server->nr_targets)
431 return;
432
433 if (!*tgt_it) {
434 *tgt_it = dfs_cache_get_tgt_iterator(tgt_list);
435 } else {
436 *tgt_it = dfs_cache_get_next_tgt(tgt_list, *tgt_it);
437 if (!*tgt_it)
438 *tgt_it = dfs_cache_get_tgt_iterator(tgt_list);
439 }
440
441 cifs_dbg(FYI, "%s: UNC: %s\n", __func__, cifs_sb->origin_fullpath);
442
443 name = dfs_cache_get_tgt_name(*tgt_it);
444
445 kfree(server->hostname);
446
447 server->hostname = extract_hostname(name);
Dan Carpenter84288172019-01-05 15:25:29 +0300448 if (IS_ERR(server->hostname)) {
449 cifs_dbg(FYI,
450 "%s: failed to extract hostname from target: %ld\n",
451 __func__, PTR_ERR(server->hostname));
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200452 }
453}
454
455static inline int reconn_setup_dfs_targets(struct cifs_sb_info *cifs_sb,
456 struct dfs_cache_tgt_list *tl,
457 struct dfs_cache_tgt_iterator **it)
458{
459 if (!cifs_sb->origin_fullpath)
460 return -EOPNOTSUPP;
461 return dfs_cache_noreq_find(cifs_sb->origin_fullpath + 1, NULL, tl);
462}
463#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Jeff Laytond5c56052008-12-01 18:42:33 -0500465/*
466 * cifs tcp session reconnection
467 *
468 * mark tcp session as reconnecting so temporarily locked
469 * mark all smb sessions as reconnecting for tcp session
470 * reconnect tcp session
471 * wake up waiters on reconnection? - (not needed currently)
472 */
Pavel Shilovsky28ea5292012-05-23 16:18:00 +0400473int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474cifs_reconnect(struct TCP_Server_Info *server)
475{
476 int rc = 0;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500477 struct list_head *tmp, *tmp2;
Steve French96daf2b2011-05-27 04:34:02 +0000478 struct cifs_ses *ses;
479 struct cifs_tcon *tcon;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000480 struct mid_q_entry *mid_entry;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400481 struct list_head retry_list;
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200482#ifdef CONFIG_CIFS_DFS_UPCALL
Paulo Alcantara23324402018-11-20 14:37:18 -0200483 struct cifs_sb_info *cifs_sb = NULL;
484 struct dfs_cache_tgt_list tgt_list = {0};
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200485 struct dfs_cache_tgt_iterator *tgt_it = NULL;
486#endif
Steve French50c2f752007-07-13 00:33:32 +0000487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 spin_lock(&GlobalMid_Lock);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200489 server->nr_targets = 1;
490#ifdef CONFIG_CIFS_DFS_UPCALL
Ronnie Sahlberg61cabc72019-06-14 13:02:29 +1000491 spin_unlock(&GlobalMid_Lock);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200492 cifs_sb = find_super_by_tcp(server);
493 if (IS_ERR(cifs_sb)) {
494 rc = PTR_ERR(cifs_sb);
495 cifs_dbg(FYI, "%s: will not do DFS failover: rc = %d\n",
496 __func__, rc);
497 cifs_sb = NULL;
498 } else {
499 rc = reconn_setup_dfs_targets(cifs_sb, &tgt_list, &tgt_it);
Steve French55a7f002019-01-01 17:19:45 -0600500 if (rc && (rc != -EOPNOTSUPP)) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000501 cifs_server_dbg(VFS, "%s: no target servers for DFS failover\n",
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200502 __func__);
503 } else {
504 server->nr_targets = dfs_cache_get_nr_tgts(&tgt_list);
505 }
506 }
507 cifs_dbg(FYI, "%s: will retry %d target(s)\n", __func__,
508 server->nr_targets);
Ronnie Sahlberg61cabc72019-06-14 13:02:29 +1000509 spin_lock(&GlobalMid_Lock);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200510#endif
Jeff Layton469ee612008-10-16 18:46:39 +0000511 if (server->tcpStatus == CifsExiting) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000512 /* the demux thread will exit normally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 next time through the loop */
514 spin_unlock(&GlobalMid_Lock);
515 return rc;
516 } else
517 server->tcpStatus = CifsNeedReconnect;
518 spin_unlock(&GlobalMid_Lock);
519 server->maxBuf = 0;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400520 server->max_read = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Steve French6e4d3bb2018-09-22 11:25:04 -0500522 cifs_dbg(FYI, "Mark tcp session as need reconnect\n");
Steve Frenchbf1fdeb2018-07-30 19:23:09 -0500523 trace_smb3_reconnect(server->CurrentMid, server->hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 /* before reconnecting the tcp session, mark the smb session (uid)
526 and the tid bad so they are not used until reconnected */
Joe Perchesf96637b2013-05-04 22:12:25 -0500527 cifs_dbg(FYI, "%s: marking sessions and tcons for reconnect\n",
528 __func__);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530529 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -0500530 list_for_each(tmp, &server->smb_ses_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000531 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
Jeff Layton14fbf502008-11-14 13:53:46 -0500532 ses->need_reconnect = true;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500533 list_for_each(tmp2, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000534 tcon = list_entry(tmp2, struct cifs_tcon, tcon_list);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500535 tcon->need_reconnect = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
Aurelien Aptelb327a712018-01-24 13:46:10 +0100537 if (ses->tcon_ipc)
538 ses->tcon_ipc->need_reconnect = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530540 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /* do not want to be sending data on a socket we are freeing */
Joe Perchesf96637b2013-05-04 22:12:25 -0500543 cifs_dbg(FYI, "%s: tearing down socket\n", __func__);
Jeff Layton72ca5452008-12-01 07:09:36 -0500544 mutex_lock(&server->srv_mutex);
Long Li1d2a4f52019-05-13 21:01:28 -0700545 if (server->ssocket) {
546 cifs_dbg(FYI, "State: 0x%x Flags: 0x%lx\n",
547 server->ssocket->state, server->ssocket->flags);
548 kernel_sock_shutdown(server->ssocket, SHUT_WR);
549 cifs_dbg(FYI, "Post shutdown state: 0x%x Flags: 0x%lx\n",
550 server->ssocket->state, server->ssocket->flags);
551 sock_release(server->ssocket);
552 server->ssocket = NULL;
553 }
554 server->sequence_number = 0;
555 server->session_estab = false;
556 kfree(server->session_key.response);
557 server->session_key.response = NULL;
558 server->session_key.len = 0;
559 server->lstrp = jiffies;
Long Li214bab42019-04-05 21:36:35 +0000560
561 /* mark submitted MIDs for retry and issue callback */
562 INIT_LIST_HEAD(&retry_list);
563 cifs_dbg(FYI, "%s: moving mids to private list\n", __func__);
564 spin_lock(&GlobalMid_Lock);
565 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
566 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
567 if (mid_entry->mid_state == MID_REQUEST_SUBMITTED)
568 mid_entry->mid_state = MID_RETRY_NEEDED;
569 list_move(&mid_entry->qhead, &retry_list);
570 }
571 spin_unlock(&GlobalMid_Lock);
Long Li1d2a4f52019-05-13 21:01:28 -0700572 mutex_unlock(&server->srv_mutex);
Long Li214bab42019-04-05 21:36:35 +0000573
574 cifs_dbg(FYI, "%s: issuing mid callbacks\n", __func__);
575 list_for_each_safe(tmp, tmp2, &retry_list) {
576 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
577 list_del_init(&mid_entry->qhead);
578 mid_entry->callback(mid_entry);
579 }
580
Long Li1d2a4f52019-05-13 21:01:28 -0700581 if (cifs_rdma_enabled(server)) {
582 mutex_lock(&server->srv_mutex);
Long Li050b8c32019-04-04 11:35:42 -0500583 smbd_destroy(server);
Long Li1d2a4f52019-05-13 21:01:28 -0700584 mutex_unlock(&server->srv_mutex);
585 }
Jeff Layton3c1105d2011-05-22 07:09:13 -0400586
Jeff Layton7fdbaa12011-06-10 16:14:57 -0400587 do {
Steve French6c3d8902006-07-31 22:46:20 +0000588 try_to_freeze();
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300589
Jeff Layton73e216a2013-09-05 08:38:10 -0400590 mutex_lock(&server->srv_mutex);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200591 /*
592 * Set up next DFS target server (if any) for reconnect. If DFS
593 * feature is disabled, then we will retry last server we
594 * connected to before.
595 */
Long Li781a8052017-11-22 17:38:36 -0700596 if (cifs_rdma_enabled(server))
597 rc = smbd_reconnect(server);
598 else
599 rc = generic_ip_connect(server);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000600 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500601 cifs_dbg(FYI, "reconnect error %d\n", rc);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200602#ifdef CONFIG_CIFS_DFS_UPCALL
603 reconn_inval_dfs_target(server, cifs_sb, &tgt_list,
604 &tgt_it);
605#endif
Paulo Alcantara28eb24f2018-11-20 15:16:36 -0200606 rc = reconn_set_ipaddr(server);
607 if (rc) {
608 cifs_dbg(FYI, "%s: failed to resolve hostname: %d\n",
609 __func__, rc);
610 }
Federico Sauter4afe2602015-03-17 17:45:28 +0100611 mutex_unlock(&server->srv_mutex);
Steve French0cb766a2005-04-28 22:41:11 -0700612 msleep(3000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 } else {
614 atomic_inc(&tcpSesReconnectCount);
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800615 set_credits(server, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 spin_lock(&GlobalMid_Lock);
Jeff Layton469ee612008-10-16 18:46:39 +0000617 if (server->tcpStatus != CifsExiting)
Steve Frenchfd88ce92011-04-12 01:01:14 +0000618 server->tcpStatus = CifsNeedNegotiate;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000619 spin_unlock(&GlobalMid_Lock);
Federico Sauter4afe2602015-03-17 17:45:28 +0100620 mutex_unlock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
Jeff Layton7fdbaa12011-06-10 16:14:57 -0400622 } while (server->tcpStatus == CifsNeedReconnect);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500623
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200624#ifdef CONFIG_CIFS_DFS_UPCALL
625 if (tgt_it) {
626 rc = dfs_cache_noreq_update_tgthint(cifs_sb->origin_fullpath + 1,
627 tgt_it);
628 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000629 cifs_server_dbg(VFS, "%s: failed to update DFS target hint: rc = %d\n",
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200630 __func__, rc);
631 }
632 rc = dfs_cache_update_vol(cifs_sb->origin_fullpath, server);
633 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000634 cifs_server_dbg(VFS, "%s: failed to update vol info in DFS cache: rc = %d\n",
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200635 __func__, rc);
636 }
Paulo Alcantara23324402018-11-20 14:37:18 -0200637 dfs_cache_free_tgts(&tgt_list);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200638 }
Paulo Alcantara93d5cb52018-11-14 17:13:25 -0200639#endif
Sachin Prabhub8c60012016-10-20 19:52:24 -0400640 if (server->tcpStatus == CifsNeedNegotiate)
641 mod_delayed_work(cifsiod_wq, &server->echo, 0);
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return rc;
644}
645
Jeff Laytonc74093b2011-01-11 07:24:23 -0500646static void
647cifs_echo_request(struct work_struct *work)
648{
649 int rc;
650 struct TCP_Server_Info *server = container_of(work,
651 struct TCP_Server_Info, echo.work);
Sachin Prabhub8c60012016-10-20 19:52:24 -0400652 unsigned long echo_interval;
Jeff Laytonc74093b2011-01-11 07:24:23 -0500653
Jeff Layton247ec9b2011-02-04 17:09:50 -0500654 /*
Sachin Prabhub8c60012016-10-20 19:52:24 -0400655 * If we need to renegotiate, set echo interval to zero to
656 * immediately call echo service where we can renegotiate.
657 */
658 if (server->tcpStatus == CifsNeedNegotiate)
659 echo_interval = 0;
660 else
661 echo_interval = server->echo_interval;
662
663 /*
664 * We cannot send an echo if it is disabled.
665 * Also, no need to ping if we got a response recently.
Jeff Layton247ec9b2011-02-04 17:09:50 -0500666 */
Steve French4fcd1812016-06-22 20:12:05 -0500667
668 if (server->tcpStatus == CifsNeedReconnect ||
Sachin Prabhub8c60012016-10-20 19:52:24 -0400669 server->tcpStatus == CifsExiting ||
670 server->tcpStatus == CifsNew ||
Pavel Shilovskyf6d76172012-05-25 14:47:16 +0400671 (server->ops->can_echo && !server->ops->can_echo(server)) ||
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600672 time_before(jiffies, server->lstrp + echo_interval - HZ))
Jeff Laytonc74093b2011-01-11 07:24:23 -0500673 goto requeue_echo;
674
Pavel Shilovskyf6d76172012-05-25 14:47:16 +0400675 rc = server->ops->echo ? server->ops->echo(server) : -ENOSYS;
Jeff Laytonc74093b2011-01-11 07:24:23 -0500676 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500677 cifs_dbg(FYI, "Unable to send echo request to server: %s\n",
678 server->hostname);
Jeff Laytonc74093b2011-01-11 07:24:23 -0500679
680requeue_echo:
Sachin Prabhub8c60012016-10-20 19:52:24 -0400681 queue_delayed_work(cifsiod_wq, &server->echo, server->echo_interval);
Jeff Laytonc74093b2011-01-11 07:24:23 -0500682}
683
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400684static bool
Jeff Layton2a37ef92011-10-19 15:29:23 -0400685allocate_buffers(struct TCP_Server_Info *server)
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400686{
Jeff Layton2a37ef92011-10-19 15:29:23 -0400687 if (!server->bigbuf) {
688 server->bigbuf = (char *)cifs_buf_get();
689 if (!server->bigbuf) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000690 cifs_server_dbg(VFS, "No memory for large SMB response\n");
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400691 msleep(3000);
692 /* retry will check if exiting */
693 return false;
694 }
Jeff Layton2a37ef92011-10-19 15:29:23 -0400695 } else if (server->large_buf) {
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400696 /* we are reusing a dirty large buf, clear its start */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400697 memset(server->bigbuf, 0, HEADER_SIZE(server));
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400698 }
699
Jeff Layton2a37ef92011-10-19 15:29:23 -0400700 if (!server->smallbuf) {
701 server->smallbuf = (char *)cifs_small_buf_get();
702 if (!server->smallbuf) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000703 cifs_server_dbg(VFS, "No memory for SMB response\n");
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400704 msleep(1000);
705 /* retry will check if exiting */
706 return false;
707 }
708 /* beginning of smb buffer is cleared in our buf_get */
709 } else {
710 /* if existing small buf clear beginning */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400711 memset(server->smallbuf, 0, HEADER_SIZE(server));
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400712 }
713
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400714 return true;
715}
716
Jeff Laytonba749e62011-10-11 06:41:32 -0400717static bool
718server_unresponsive(struct TCP_Server_Info *server)
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400719{
Pavel Shilovsky6dae51a2012-02-21 16:50:23 +0300720 /*
Ronnie Sahlbergf2caf902019-07-06 06:52:46 +1000721 * We need to wait 3 echo intervals to make sure we handle such
Pavel Shilovsky6dae51a2012-02-21 16:50:23 +0300722 * situations right:
723 * 1s client sends a normal SMB request
Ronnie Sahlbergbecc2ba2019-07-24 11:43:49 +1000724 * 2s client gets a response
Pavel Shilovsky6dae51a2012-02-21 16:50:23 +0300725 * 30s echo workqueue job pops, and decides we got a response recently
726 * and don't need to send another
727 * ...
728 * 65s kernel_recvmsg times out, and we see that we haven't gotten
729 * a response in >60s.
730 */
Samuel Cabrero76e75272017-07-11 12:44:39 +0200731 if ((server->tcpStatus == CifsGood ||
732 server->tcpStatus == CifsNeedNegotiate) &&
Ronnie Sahlbergf2caf902019-07-06 06:52:46 +1000733 time_after(jiffies, server->lstrp + 3 * server->echo_interval)) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000734 cifs_server_dbg(VFS, "has not responded in %lu seconds. Reconnecting...\n",
735 (3 * server->echo_interval) / HZ);
Jeff Laytonba749e62011-10-11 06:41:32 -0400736 cifs_reconnect(server);
737 wake_up(&server->response_q);
738 return true;
739 }
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400740
Jeff Laytonba749e62011-10-11 06:41:32 -0400741 return false;
742}
743
Pavel Shilovskyef68e832019-01-18 17:25:36 -0800744static inline bool
745zero_credits(struct TCP_Server_Info *server)
746{
747 int val;
748
749 spin_lock(&server->req_lock);
750 val = server->credits + server->echo_credits + server->oplock_credits;
751 if (server->in_flight == 0 && val == 0) {
752 spin_unlock(&server->req_lock);
753 return true;
754 }
755 spin_unlock(&server->req_lock);
756 return false;
757}
758
Al Viro71335662016-01-09 19:54:50 -0500759static int
760cifs_readv_from_socket(struct TCP_Server_Info *server, struct msghdr *smb_msg)
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400761{
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400762 int length = 0;
763 int total_read;
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400764
Al Viro71335662016-01-09 19:54:50 -0500765 smb_msg->msg_control = NULL;
766 smb_msg->msg_controllen = 0;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400767
Al Viro71335662016-01-09 19:54:50 -0500768 for (total_read = 0; msg_data_left(smb_msg); total_read += length) {
Jeff Layton95edcff2011-12-01 20:22:41 -0500769 try_to_freeze();
770
Pavel Shilovskyef68e832019-01-18 17:25:36 -0800771 /* reconnect if no credits and no requests in flight */
772 if (zero_credits(server)) {
773 cifs_reconnect(server);
774 return -ECONNABORTED;
775 }
776
Al Viro71335662016-01-09 19:54:50 -0500777 if (server_unresponsive(server))
778 return -ECONNABORTED;
Long Li2fef1372017-11-22 17:38:41 -0700779 if (cifs_rdma_enabled(server) && server->smbd_conn)
780 length = smbd_recv(server->smbd_conn, smb_msg);
781 else
782 length = sock_recvmsg(server->ssocket, smb_msg, 0);
Al Viro71335662016-01-09 19:54:50 -0500783
784 if (server->tcpStatus == CifsExiting)
785 return -ESHUTDOWN;
786
787 if (server->tcpStatus == CifsNeedReconnect) {
788 cifs_reconnect(server);
789 return -ECONNABORTED;
Jeff Laytonba749e62011-10-11 06:41:32 -0400790 }
791
Al Viro71335662016-01-09 19:54:50 -0500792 if (length == -ERESTARTSYS ||
793 length == -EAGAIN ||
794 length == -EINTR) {
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400795 /*
796 * Minimum sleep to prevent looping, allowing socket
797 * to clear and app threads to set tcpStatus
798 * CifsNeedReconnect if server hung.
799 */
800 usleep_range(1000, 2000);
801 length = 0;
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400802 continue;
Al Viro71335662016-01-09 19:54:50 -0500803 }
804
805 if (length <= 0) {
Al Viro09aab882015-11-13 03:00:17 -0500806 cifs_dbg(FYI, "Received no data or error: %d\n", length);
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400807 cifs_reconnect(server);
Al Viro71335662016-01-09 19:54:50 -0500808 return -ECONNABORTED;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400809 }
810 }
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400811 return total_read;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400812}
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400813
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400814int
815cifs_read_from_socket(struct TCP_Server_Info *server, char *buf,
816 unsigned int to_read)
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400817{
Al Viro71335662016-01-09 19:54:50 -0500818 struct msghdr smb_msg;
819 struct kvec iov = {.iov_base = buf, .iov_len = to_read};
David Howellsaa563d72018-10-20 00:57:56 +0100820 iov_iter_kvec(&smb_msg.msg_iter, READ, &iov, 1, to_read);
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400821
Al Viro71335662016-01-09 19:54:50 -0500822 return cifs_readv_from_socket(server, &smb_msg);
823}
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400824
Al Viro71335662016-01-09 19:54:50 -0500825int
826cifs_read_page_from_socket(struct TCP_Server_Info *server, struct page *page,
Long Li1dbe3462018-05-30 12:47:55 -0700827 unsigned int page_offset, unsigned int to_read)
Al Viro71335662016-01-09 19:54:50 -0500828{
829 struct msghdr smb_msg;
Long Li1dbe3462018-05-30 12:47:55 -0700830 struct bio_vec bv = {
831 .bv_page = page, .bv_len = to_read, .bv_offset = page_offset};
David Howellsaa563d72018-10-20 00:57:56 +0100832 iov_iter_bvec(&smb_msg.msg_iter, READ, &bv, 1, to_read);
Al Viro71335662016-01-09 19:54:50 -0500833 return cifs_readv_from_socket(server, &smb_msg);
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400834}
835
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400836static bool
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400837is_smb_response(struct TCP_Server_Info *server, unsigned char type)
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400838{
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400839 /*
840 * The first byte big endian of the length field,
841 * is actually not part of the length but the type
842 * with the most common, zero, as regular data.
843 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400844 switch (type) {
845 case RFC1002_SESSION_MESSAGE:
846 /* Regular SMB response */
847 return true;
848 case RFC1002_SESSION_KEEP_ALIVE:
Joe Perchesf96637b2013-05-04 22:12:25 -0500849 cifs_dbg(FYI, "RFC 1002 session keep alive\n");
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400850 break;
851 case RFC1002_POSITIVE_SESSION_RESPONSE:
Joe Perchesf96637b2013-05-04 22:12:25 -0500852 cifs_dbg(FYI, "RFC 1002 positive session response\n");
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400853 break;
854 case RFC1002_NEGATIVE_SESSION_RESPONSE:
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400855 /*
856 * We get this from Windows 98 instead of an error on
857 * SMB negprot response.
858 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500859 cifs_dbg(FYI, "RFC 1002 negative session response\n");
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400860 /* give server a second to clean up */
861 msleep(1000);
862 /*
863 * Always try 445 first on reconnect since we get NACK
864 * on some if we ever connected to port 139 (the NACK
865 * is since we do not begin with RFC1001 session
866 * initialize frame).
867 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400868 cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400869 cifs_reconnect(server);
870 wake_up(&server->response_q);
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400871 break;
872 default:
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000873 cifs_server_dbg(VFS, "RFC 1002 unknown response type 0x%x\n", type);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400874 cifs_reconnect(server);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400875 }
876
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400877 return false;
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400878}
879
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400880void
881dequeue_mid(struct mid_q_entry *mid, bool malformed)
Jeff Laytonea1f4502011-10-19 15:29:05 -0400882{
883#ifdef CONFIG_CIFS_STATS2
884 mid->when_received = jiffies;
885#endif
886 spin_lock(&GlobalMid_Lock);
887 if (!malformed)
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400888 mid->mid_state = MID_RESPONSE_RECEIVED;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400889 else
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400890 mid->mid_state = MID_RESPONSE_MALFORMED;
Ronnie Sahlbergddf83af2018-08-30 10:12:59 +1000891 /*
892 * Trying to handle/dequeue a mid after the send_recv()
893 * function has finished processing it is a bug.
894 */
895 if (mid->mid_flags & MID_DELETED)
896 printk_once(KERN_WARNING
897 "trying to dequeue a deleted mid\n");
898 else
899 list_del_init(&mid->qhead);
Jeff Laytonea1f4502011-10-19 15:29:05 -0400900 spin_unlock(&GlobalMid_Lock);
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;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400910 mid->resp_buf = buf;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400911 mid->large_buf = server->large_buf;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400912 /* Was previous buf put in mpx struct for multi-rsp? */
913 if (!mid->multiRsp) {
914 /* smb buffer will be freed by user thread */
915 if (server->large_buf)
916 server->bigbuf = NULL;
917 else
918 server->smallbuf = NULL;
919 }
Jeff Laytonffc00e22011-10-19 15:29:13 -0400920 dequeue_mid(mid, malformed);
Pavel Shilovskyad69bae2011-08-01 13:19:43 +0400921}
922
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400923static void clean_demultiplex_info(struct TCP_Server_Info *server)
924{
925 int length;
926
927 /* take it off the list, if it's not already */
928 spin_lock(&cifs_tcp_ses_lock);
929 list_del_init(&server->tcp_ses_list);
930 spin_unlock(&cifs_tcp_ses_lock);
931
932 spin_lock(&GlobalMid_Lock);
933 server->tcpStatus = CifsExiting;
934 spin_unlock(&GlobalMid_Lock);
935 wake_up_all(&server->response_q);
936
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400937 /* check if we have blocked requests that need to free */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300938 spin_lock(&server->req_lock);
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400939 if (server->credits <= 0)
940 server->credits = 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300941 spin_unlock(&server->req_lock);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400942 /*
943 * Although there should not be any requests blocked on this queue it
944 * can not hurt to be paranoid and try to wake up requests that may
945 * haven been blocked when more than 50 at time were on the wire to the
946 * same server - they now will see the session is in exit state and get
947 * out of SendReceive.
948 */
949 wake_up_all(&server->request_q);
950 /* give those requests time to exit */
951 msleep(125);
Long Li050b8c32019-04-04 11:35:42 -0500952 if (cifs_rdma_enabled(server))
953 smbd_destroy(server);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400954 if (server->ssocket) {
955 sock_release(server->ssocket);
956 server->ssocket = NULL;
957 }
958
959 if (!list_empty(&server->pending_mid_q)) {
960 struct list_head dispose_list;
961 struct mid_q_entry *mid_entry;
962 struct list_head *tmp, *tmp2;
963
964 INIT_LIST_HEAD(&dispose_list);
965 spin_lock(&GlobalMid_Lock);
966 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
967 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500968 cifs_dbg(FYI, "Clearing mid 0x%llx\n", mid_entry->mid);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400969 mid_entry->mid_state = MID_SHUTDOWN;
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400970 list_move(&mid_entry->qhead, &dispose_list);
971 }
972 spin_unlock(&GlobalMid_Lock);
973
974 /* now walk dispose list and issue callbacks */
975 list_for_each_safe(tmp, tmp2, &dispose_list) {
976 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500977 cifs_dbg(FYI, "Callback mid 0x%llx\n", mid_entry->mid);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400978 list_del_init(&mid_entry->qhead);
979 mid_entry->callback(mid_entry);
980 }
981 /* 1/8th of sec is more than enough time for them to exit */
982 msleep(125);
983 }
984
985 if (!list_empty(&server->pending_mid_q)) {
986 /*
987 * mpx threads have not exited yet give them at least the smb
988 * send timeout time for long ops.
989 *
990 * Due to delays on oplock break requests, we need to wait at
991 * least 45 seconds before giving up on a request getting a
992 * response and going ahead and killing cifsd.
993 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500994 cifs_dbg(FYI, "Wait for exit from demultiplex thread\n");
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400995 msleep(46000);
996 /*
997 * If threads still have not exited they are probably never
998 * coming home not much else we can do but free the memory.
999 */
1000 }
1001
1002 kfree(server->hostname);
1003 kfree(server);
1004
1005 length = atomic_dec_return(&tcpSesAllocCount);
1006 if (length > 0)
David Rientjes11d83362015-04-14 15:48:21 -07001007 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +04001008}
1009
Pavel Shilovskye7015fb2011-08-01 13:19:41 +04001010static int
Jeff Laytone9097ab2011-10-19 15:29:40 -04001011standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid)
1012{
1013 int length;
1014 char *buf = server->smallbuf;
Ronnie Sahlberg2e964672018-04-09 18:06:26 +10001015 unsigned int pdu_length = server->pdu_size;
Jeff Laytone9097ab2011-10-19 15:29:40 -04001016
1017 /* make sure this will fit in a large buffer */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +11001018 if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) -
1019 server->vals->header_preamble_size) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001020 cifs_server_dbg(VFS, "SMB response too long (%u bytes)\n", pdu_length);
Jeff Laytone9097ab2011-10-19 15:29:40 -04001021 cifs_reconnect(server);
1022 wake_up(&server->response_q);
Pavel Shilovsky3fabaa22014-07-10 09:55:52 +04001023 return -ECONNABORTED;
Jeff Laytone9097ab2011-10-19 15:29:40 -04001024 }
1025
1026 /* switch to large buffer if too big for a small one */
1027 if (pdu_length > MAX_CIFS_SMALL_BUFFER_SIZE - 4) {
1028 server->large_buf = true;
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001029 memcpy(server->bigbuf, buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -04001030 buf = server->bigbuf;
Jeff Laytone9097ab2011-10-19 15:29:40 -04001031 }
1032
1033 /* now read the rest */
Pavel Shilovsky1887f602012-05-17 12:45:31 +04001034 length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1,
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +11001035 pdu_length - HEADER_SIZE(server) + 1
1036 + server->vals->header_preamble_size);
1037
Jeff Laytone9097ab2011-10-19 15:29:40 -04001038 if (length < 0)
1039 return length;
1040 server->total_read += length;
1041
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001042 dump_smb(buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -04001043
Pavel Shilovsky4326ed22016-11-17 15:24:46 -08001044 return cifs_handle_standard(server, mid);
1045}
1046
1047int
1048cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid)
1049{
1050 char *buf = server->large_buf ? server->bigbuf : server->smallbuf;
1051 int length;
1052
Jeff Laytone9097ab2011-10-19 15:29:40 -04001053 /*
1054 * We know that we received enough to get to the MID as we
1055 * checked the pdu_length earlier. Now check to see
1056 * if the rest of the header is OK. We borrow the length
1057 * var for the rest of the loop to avoid a new stack var.
1058 *
1059 * 48 bytes is enough to display the header and a little bit
1060 * into the payload for debugging purposes.
1061 */
Steve French373512e2015-12-18 13:05:30 -06001062 length = server->ops->check_message(buf, server->total_read, server);
Jeff Laytone9097ab2011-10-19 15:29:40 -04001063 if (length != 0)
1064 cifs_dump_mem("Bad SMB: ", buf,
1065 min_t(unsigned int, server->total_read, 48));
1066
Pavel Shilovsky511c54a2017-07-08 14:32:00 -07001067 if (server->ops->is_session_expired &&
1068 server->ops->is_session_expired(buf)) {
1069 cifs_reconnect(server);
1070 wake_up(&server->response_q);
1071 return -1;
1072 }
1073
Pavel Shilovsky2e44b282012-09-18 16:20:33 -07001074 if (server->ops->is_status_pending &&
Pavel Shilovsky66265f12019-01-23 17:11:16 -08001075 server->ops->is_status_pending(buf, server))
Pavel Shilovsky2e44b282012-09-18 16:20:33 -07001076 return -1;
1077
Jeff Laytonff4fa4a2012-02-07 06:31:05 -05001078 if (!mid)
1079 return length;
Jeff Laytone9097ab2011-10-19 15:29:40 -04001080
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001081 handle_mid(mid, server, buf, length);
Jeff Laytonff4fa4a2012-02-07 06:31:05 -05001082 return 0;
Jeff Laytone9097ab2011-10-19 15:29:40 -04001083}
1084
Ronnie Sahlbergeca00452019-02-05 12:56:44 +10001085static void
1086smb2_add_credits_from_hdr(char *buffer, struct TCP_Server_Info *server)
1087{
1088 struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buffer;
1089
1090 /*
1091 * SMB1 does not use credits.
1092 */
1093 if (server->vals->header_preamble_size)
1094 return;
1095
1096 if (shdr->CreditRequest) {
1097 spin_lock(&server->req_lock);
1098 server->credits += le16_to_cpu(shdr->CreditRequest);
1099 spin_unlock(&server->req_lock);
1100 wake_up(&server->request_q);
1101 }
1102}
1103
1104
Jeff Laytone9097ab2011-10-19 15:29:40 -04001105static int
Al Viro7c97c202011-06-21 08:51:28 -04001106cifs_demultiplex_thread(void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001108 int i, num_mids, length;
Al Viro7c97c202011-06-21 08:51:28 -04001109 struct TCP_Server_Info *server = p;
Jeff Layton2a37ef92011-10-19 15:29:23 -04001110 unsigned int pdu_length;
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001111 unsigned int next_offset;
Jeff Layton2a37ef92011-10-19 15:29:23 -04001112 char *buf = NULL;
Steve Frencha5c3e1c2014-09-16 04:16:19 -05001113 struct task_struct *task_to_wake = NULL;
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001114 struct mid_q_entry *mids[MAX_COMPOUND];
1115 char *bufs[MAX_COMPOUND];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 current->flags |= PF_MEMALLOC;
Joe Perchesf96637b2013-05-04 22:12:25 -05001118 cifs_dbg(FYI, "Demultiplex PID: %d\n", task_pid_nr(current));
Jeff Layton93d0ec82008-08-02 08:00:48 -04001119
1120 length = atomic_inc_return(&tcpSesAllocCount);
1121 if (length > 1)
David Rientjes11d83362015-04-14 15:48:21 -07001122 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Rafael J. Wysocki83144182007-07-17 04:03:35 -07001124 set_freezable();
Eric W. Biederman33da8e72019-08-16 12:33:54 -05001125 allow_kernel_signal(SIGKILL);
Jeff Layton469ee612008-10-16 18:46:39 +00001126 while (server->tcpStatus != CifsExiting) {
Steve Frenchede13272005-08-30 20:10:14 -07001127 if (try_to_freeze())
1128 continue;
Steve Frenchb8643e12005-04-28 22:41:07 -07001129
Jeff Layton2a37ef92011-10-19 15:29:23 -04001130 if (!allocate_buffers(server))
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +04001131 continue;
Steve Frenchb8643e12005-04-28 22:41:07 -07001132
Jeff Layton2a37ef92011-10-19 15:29:23 -04001133 server->large_buf = false;
Jeff Layton2a37ef92011-10-19 15:29:23 -04001134 buf = server->smallbuf;
Steve Frenchf01d5e12007-08-30 21:13:31 +00001135 pdu_length = 4; /* enough to get RFC1001 header */
Steve Frenchfda35942011-01-20 18:06:34 +00001136
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001137 length = cifs_read_from_socket(server, buf, pdu_length);
Jeff Laytona52c1eb2011-10-11 06:41:32 -04001138 if (length < 0)
Steve Frenchfda35942011-01-20 18:06:34 +00001139 continue;
Ronnie Sahlberg977b6172018-06-01 10:53:02 +10001140
1141 if (server->vals->header_preamble_size == 0)
1142 server->total_read = 0;
1143 else
1144 server->total_read = length;
Steve French67010fb2005-04-28 22:41:09 -07001145
Pavel Shilovsky98bac622011-08-01 13:19:42 +04001146 /*
1147 * The right amount was read from socket - 4 bytes,
1148 * so we can now interpret the length field.
1149 */
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001150 pdu_length = get_rfc1002_length(buf);
Steve French46810cb2005-04-28 22:41:09 -07001151
Joe Perchesf96637b2013-05-04 22:12:25 -05001152 cifs_dbg(FYI, "RFC1002 header 0x%x\n", pdu_length);
Jeff Laytonfe11e4c2011-10-11 06:41:32 -04001153 if (!is_smb_response(server, buf[0]))
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001154 continue;
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001155next_pdu:
1156 server->pdu_size = pdu_length;
Steve Frenche4eb2952005-04-28 22:41:09 -07001157
Jeff Layton89482a52011-10-19 15:28:57 -04001158 /* make sure we have enough to get to the MID */
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001159 if (server->pdu_size < HEADER_SIZE(server) - 1 -
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +11001160 server->vals->header_preamble_size) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001161 cifs_server_dbg(VFS, "SMB response too short (%u bytes)\n",
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001162 server->pdu_size);
Jeff Layton89482a52011-10-19 15:28:57 -04001163 cifs_reconnect(server);
1164 wake_up(&server->response_q);
1165 continue;
Steve Frenche4eb2952005-04-28 22:41:09 -07001166 }
Pavel Shilovskye7015fb2011-08-01 13:19:41 +04001167
Jeff Layton89482a52011-10-19 15:28:57 -04001168 /* read down to the MID */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +11001169 length = cifs_read_from_socket(server,
1170 buf + server->vals->header_preamble_size,
1171 HEADER_SIZE(server) - 1
1172 - server->vals->header_preamble_size);
Jeff Layton89482a52011-10-19 15:28:57 -04001173 if (length < 0)
1174 continue;
Jeff Layton2a37ef92011-10-19 15:29:23 -04001175 server->total_read += length;
Jeff Layton89482a52011-10-19 15:28:57 -04001176
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001177 if (server->ops->next_header) {
1178 next_offset = server->ops->next_header(buf);
1179 if (next_offset)
1180 server->pdu_size = next_offset;
1181 }
1182
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001183 memset(mids, 0, sizeof(mids));
1184 memset(bufs, 0, sizeof(bufs));
1185 num_mids = 0;
1186
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -08001187 if (server->ops->is_transform_hdr &&
1188 server->ops->receive_transform &&
1189 server->ops->is_transform_hdr(buf)) {
1190 length = server->ops->receive_transform(server,
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001191 mids,
1192 bufs,
1193 &num_mids);
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -08001194 } else {
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001195 mids[0] = server->ops->find_mid(server, buf);
1196 bufs[0] = buf;
Steve French7af929d2018-10-02 18:54:09 -05001197 num_mids = 1;
Jeff Laytonc8054eb2011-10-19 15:29:31 -04001198
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001199 if (!mids[0] || !mids[0]->receive)
1200 length = standard_receive3(server, mids[0]);
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -08001201 else
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001202 length = mids[0]->receive(server, mids[0]);
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -08001203 }
Jeff Layton44d22d82011-10-19 15:29:49 -04001204
Lars Persson696e4202018-06-25 14:05:25 +02001205 if (length < 0) {
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001206 for (i = 0; i < num_mids; i++)
1207 if (mids[i])
1208 cifs_mid_q_entry_release(mids[i]);
Steve Frenche4eb2952005-04-28 22:41:09 -07001209 continue;
Lars Persson696e4202018-06-25 14:05:25 +02001210 }
Steve Frenche4eb2952005-04-28 22:41:09 -07001211
Steve Frenchfda35942011-01-20 18:06:34 +00001212 server->lstrp = jiffies;
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001213
1214 for (i = 0; i < num_mids; i++) {
1215 if (mids[i] != NULL) {
1216 mids[i]->resp_buf_size = server->pdu_size;
1217 if ((mids[i]->mid_flags & MID_WAIT_CANCELLED) &&
1218 mids[i]->mid_state == MID_RESPONSE_RECEIVED &&
1219 server->ops->handle_cancelled_mid)
1220 server->ops->handle_cancelled_mid(
1221 mids[i]->resp_buf,
Sachin Prabhu38bd4902017-03-03 15:41:38 -08001222 server);
1223
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001224 if (!mids[i]->multiRsp || mids[i]->multiEnd)
1225 mids[i]->callback(mids[i]);
Lars Persson696e4202018-06-25 14:05:25 +02001226
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001227 cifs_mid_q_entry_release(mids[i]);
1228 } else if (server->ops->is_oplock_break &&
1229 server->ops->is_oplock_break(bufs[i],
1230 server)) {
Ronnie Sahlbergeca00452019-02-05 12:56:44 +10001231 smb2_add_credits_from_hdr(bufs[i], server);
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001232 cifs_dbg(FYI, "Received oplock break\n");
1233 } else {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001234 cifs_server_dbg(VFS, "No task to wake, unknown frame "
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001235 "received! NumMids %d\n",
1236 atomic_read(&midCount));
1237 cifs_dump_mem("Received Data is: ", bufs[i],
1238 HEADER_SIZE(server));
Ronnie Sahlberg3e272572019-07-06 06:43:08 +10001239 smb2_add_credits_from_hdr(bufs[i], server);
Steve French39798772006-05-31 22:40:51 +00001240#ifdef CONFIG_CIFS_DEBUG2
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001241 if (server->ops->dump_detail)
1242 server->ops->dump_detail(bufs[i],
1243 server);
1244 cifs_dump_mids(server);
Steve French39798772006-05-31 22:40:51 +00001245#endif /* CIFS_DEBUG2 */
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001246 }
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001247 }
Ronnie Sahlbergb24df3e2018-08-08 15:07:45 +10001248
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +10001249 if (pdu_length > server->pdu_size) {
1250 if (!allocate_buffers(server))
1251 continue;
1252 pdu_length -= server->pdu_size;
1253 server->total_read = 0;
1254 server->large_buf = false;
1255 buf = server->smallbuf;
1256 goto next_pdu;
Steve Frenche4eb2952005-04-28 22:41:09 -07001257 }
1258 } /* end while !EXITING */
1259
Justin P. Mattockfd62cb72011-02-24 22:15:02 -08001260 /* buffer usually freed in free_mid - need to free it here on exit */
Jeff Layton2a37ef92011-10-19 15:29:23 -04001261 cifs_buf_release(server->bigbuf);
1262 if (server->smallbuf) /* no sense logging a debug message if NULL */
1263 cifs_small_buf_release(server->smallbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Steve Frencha5c3e1c2014-09-16 04:16:19 -05001265 task_to_wake = xchg(&server->tsk, NULL);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +04001266 clean_demultiplex_info(server);
Steve Frencha5c3e1c2014-09-16 04:16:19 -05001267
1268 /* if server->tsk was NULL then wait for a signal before exiting */
1269 if (!task_to_wake) {
1270 set_current_state(TASK_INTERRUPTIBLE);
1271 while (!signal_pending(current)) {
1272 schedule();
1273 set_current_state(TASK_INTERRUPTIBLE);
1274 }
1275 set_current_state(TASK_RUNNING);
1276 }
1277
Jeff Layton0468a2c2008-12-01 07:09:35 -05001278 module_put_and_exit(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279}
1280
Jeff Laytonc359cf32007-11-16 22:22:06 +00001281/* extract the host portion of the UNC string */
1282static char *
1283extract_hostname(const char *unc)
1284{
1285 const char *src;
1286 char *dst, *delim;
1287 unsigned int len;
1288
1289 /* skip double chars at beginning of string */
1290 /* BB: check validity of these bytes? */
Paulo Alcantarac34fea52018-11-14 14:03:40 -02001291 if (strlen(unc) < 3)
1292 return ERR_PTR(-EINVAL);
1293 for (src = unc; *src && *src == '\\'; src++)
1294 ;
1295 if (!*src)
1296 return ERR_PTR(-EINVAL);
Jeff Laytonc359cf32007-11-16 22:22:06 +00001297
1298 /* delimiter between hostname and sharename is always '\\' now */
1299 delim = strchr(src, '\\');
1300 if (!delim)
1301 return ERR_PTR(-EINVAL);
1302
1303 len = delim - src;
1304 dst = kmalloc((len + 1), GFP_KERNEL);
1305 if (dst == NULL)
1306 return ERR_PTR(-ENOMEM);
1307
1308 memcpy(dst, src, len);
1309 dst[len] = '\0';
1310
1311 return dst;
1312}
1313
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001314static int get_option_ul(substring_t args[], unsigned long *option)
1315{
1316 int rc;
1317 char *string;
1318
1319 string = match_strdup(args);
1320 if (string == NULL)
1321 return -ENOMEM;
Sachin Prabhubfa890a2012-04-13 14:04:32 +01001322 rc = kstrtoul(string, 0, option);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001323 kfree(string);
1324
1325 return rc;
1326}
1327
Eric W. Biederman3da46562013-02-06 01:37:39 -08001328static int get_option_uid(substring_t args[], kuid_t *result)
1329{
1330 unsigned long value;
1331 kuid_t uid;
1332 int rc;
1333
1334 rc = get_option_ul(args, &value);
1335 if (rc)
1336 return rc;
1337
1338 uid = make_kuid(current_user_ns(), value);
1339 if (!uid_valid(uid))
1340 return -EINVAL;
1341
1342 *result = uid;
1343 return 0;
1344}
1345
1346static int get_option_gid(substring_t args[], kgid_t *result)
1347{
1348 unsigned long value;
1349 kgid_t gid;
1350 int rc;
1351
1352 rc = get_option_ul(args, &value);
1353 if (rc)
1354 return rc;
1355
1356 gid = make_kgid(current_user_ns(), value);
1357 if (!gid_valid(gid))
1358 return -EINVAL;
1359
1360 *result = gid;
1361 return 0;
1362}
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001363
1364static int cifs_parse_security_flavors(char *value,
1365 struct smb_vol *vol)
1366{
1367
1368 substring_t args[MAX_OPT_ARGS];
1369
Jeff Layton1e3cc572013-06-10 17:12:23 -05001370 /*
1371 * With mount options, the last one should win. Reset any existing
1372 * settings back to default.
1373 */
1374 vol->sectype = Unspecified;
1375 vol->sign = false;
1376
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001377 switch (match_token(value, cifs_secflavor_tokens, args)) {
Jeff Layton3f618222013-06-12 19:52:14 -05001378 case Opt_sec_krb5p:
1379 cifs_dbg(VFS, "sec=krb5p is not supported!\n");
1380 return 1;
1381 case Opt_sec_krb5i:
1382 vol->sign = true;
1383 /* Fallthrough */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001384 case Opt_sec_krb5:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001385 vol->sectype = Kerberos;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001386 break;
1387 case Opt_sec_ntlmsspi:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001388 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001389 /* Fallthrough */
1390 case Opt_sec_ntlmssp:
1391 vol->sectype = RawNTLMSSP;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001392 break;
1393 case Opt_sec_ntlmi:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001394 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001395 /* Fallthrough */
1396 case Opt_ntlm:
1397 vol->sectype = NTLM;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001398 break;
1399 case Opt_sec_ntlmv2i:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001400 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001401 /* Fallthrough */
1402 case Opt_sec_ntlmv2:
1403 vol->sectype = NTLMv2;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001404 break;
1405#ifdef CONFIG_CIFS_WEAK_PW_HASH
1406 case Opt_sec_lanman:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001407 vol->sectype = LANMAN;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001408 break;
1409#endif
1410 case Opt_sec_none:
1411 vol->nullauth = 1;
1412 break;
1413 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001414 cifs_dbg(VFS, "bad security option: %s\n", value);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001415 return 1;
1416 }
1417
1418 return 0;
1419}
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421static int
Jeff Layton15b6a472012-05-16 07:50:15 -04001422cifs_parse_cache_flavor(char *value, struct smb_vol *vol)
1423{
1424 substring_t args[MAX_OPT_ARGS];
1425
1426 switch (match_token(value, cifs_cacheflavor_tokens, args)) {
1427 case Opt_cache_loose:
1428 vol->direct_io = false;
1429 vol->strict_io = false;
Steve French83bbfa72019-08-27 23:58:54 -05001430 vol->cache_ro = false;
Steve French41e033f2019-08-30 02:12:41 -05001431 vol->cache_rw = false;
Jeff Layton15b6a472012-05-16 07:50:15 -04001432 break;
1433 case Opt_cache_strict:
1434 vol->direct_io = false;
1435 vol->strict_io = true;
Steve French83bbfa72019-08-27 23:58:54 -05001436 vol->cache_ro = false;
Steve French41e033f2019-08-30 02:12:41 -05001437 vol->cache_rw = false;
Jeff Layton15b6a472012-05-16 07:50:15 -04001438 break;
1439 case Opt_cache_none:
1440 vol->direct_io = true;
1441 vol->strict_io = false;
Steve French83bbfa72019-08-27 23:58:54 -05001442 vol->cache_ro = false;
Steve French41e033f2019-08-30 02:12:41 -05001443 vol->cache_rw = false;
Steve French83bbfa72019-08-27 23:58:54 -05001444 break;
1445 case Opt_cache_ro:
1446 vol->direct_io = false;
1447 vol->strict_io = false;
1448 vol->cache_ro = true;
Steve French41e033f2019-08-30 02:12:41 -05001449 vol->cache_rw = false;
1450 break;
1451 case Opt_cache_rw:
1452 vol->direct_io = false;
1453 vol->strict_io = false;
1454 vol->cache_ro = false;
1455 vol->cache_rw = true;
Jeff Layton15b6a472012-05-16 07:50:15 -04001456 break;
1457 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001458 cifs_dbg(VFS, "bad cache= option: %s\n", value);
Jeff Layton15b6a472012-05-16 07:50:15 -04001459 return 1;
1460 }
1461 return 0;
1462}
1463
1464static int
Steve Frenchc7c137b2018-06-06 17:59:29 -05001465cifs_parse_smb_version(char *value, struct smb_vol *vol, bool is_smb3)
Jeff Layton23db65f2012-05-15 12:20:51 -04001466{
1467 substring_t args[MAX_OPT_ARGS];
1468
1469 switch (match_token(value, cifs_smb_version_tokens, args)) {
Steve French74204512018-06-19 14:34:08 -05001470#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
Jeff Layton23db65f2012-05-15 12:20:51 -04001471 case Smb_1:
Steve Frenchf92a7202018-05-24 04:11:07 -05001472 if (disable_legacy_dialects) {
1473 cifs_dbg(VFS, "mount with legacy dialect disabled\n");
1474 return 1;
1475 }
Steve Frenchc7c137b2018-06-06 17:59:29 -05001476 if (is_smb3) {
1477 cifs_dbg(VFS, "vers=1.0 (cifs) not permitted when mounting with smb3\n");
1478 return 1;
1479 }
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
Sean Finneyb9468452011-04-11 13:19:32 +00001667 if (!mountdata)
1668 goto cifs_parse_mount_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Sean Finneyb9468452011-04-11 13:19:32 +00001670 mountdata_copy = kstrndup(mountdata, PAGE_SIZE, GFP_KERNEL);
1671 if (!mountdata_copy)
1672 goto cifs_parse_mount_err;
1673
1674 options = mountdata_copy;
Pavel Shilovsky4906e502011-04-14 22:00:56 +04001675 end = options + strlen(options);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001676
Steve French50c2f752007-07-13 00:33:32 +00001677 if (strncmp(options, "sep=", 4) == 0) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001678 if (options[4] != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 separator[0] = options[4];
1680 options += 5;
1681 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -05001682 cifs_dbg(FYI, "Null separator not allowed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 }
1684 }
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001685 vol->backupuid_specified = false; /* no backup intent for a user */
1686 vol->backupgid_specified = false; /* no backup intent for a group */
Steve French50c2f752007-07-13 00:33:32 +00001687
Jeff Layton37d4f992013-05-24 07:40:05 -04001688 switch (cifs_parse_devname(devname, vol)) {
1689 case 0:
1690 break;
1691 case -ENOMEM:
1692 cifs_dbg(VFS, "Unable to allocate memory for devname.\n");
1693 goto cifs_parse_mount_err;
1694 case -EINVAL:
1695 cifs_dbg(VFS, "Malformed UNC in devname.\n");
1696 goto cifs_parse_mount_err;
1697 default:
1698 cifs_dbg(VFS, "Unknown error parsing devname.\n");
1699 goto cifs_parse_mount_err;
Jeff Laytond387a5c2012-12-10 06:10:46 -05001700 }
1701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 while ((data = strsep(&options, separator)) != NULL) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001703 substring_t args[MAX_OPT_ARGS];
1704 unsigned long option;
1705 int token;
1706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if (!*data)
1708 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001710 token = match_token(data, cifs_mount_option_tokens, args);
1711
1712 switch (token) {
1713
1714 /* Ingnore the following */
1715 case Opt_ignore:
1716 break;
1717
1718 /* Boolean values */
1719 case Opt_user_xattr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 vol->no_xattr = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001721 break;
1722 case Opt_nouser_xattr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 vol->no_xattr = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001724 break;
1725 case Opt_forceuid:
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001726 override_uid = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001727 break;
1728 case Opt_noforceuid:
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001729 override_uid = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001730 break;
Jeff Layton72bd4812012-10-03 16:02:36 -04001731 case Opt_forcegid:
1732 override_gid = 1;
1733 break;
1734 case Opt_noforcegid:
1735 override_gid = 0;
1736 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001737 case Opt_noblocksend:
Steve Frenchedf1ae42008-10-29 00:47:57 +00001738 vol->noblocksnd = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001739 break;
1740 case Opt_noautotune:
Steve Frenchedf1ae42008-10-29 00:47:57 +00001741 vol->noautotune = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001742 break;
Steve French3e7a02d2019-09-11 21:46:20 -05001743 case Opt_nolease:
1744 vol->no_lease = 1;
1745 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001746 case Opt_hard:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 vol->retry = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001748 break;
1749 case Opt_soft:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 vol->retry = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001751 break;
1752 case Opt_perm:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 vol->noperm = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001754 break;
1755 case Opt_noperm:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 vol->noperm = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001757 break;
1758 case Opt_mapchars:
Steve French2baa2682014-09-27 02:19:01 -05001759 vol->sfu_remap = true;
1760 vol->remap = false; /* disable SFM mapping */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001761 break;
1762 case Opt_nomapchars:
Steve French2baa2682014-09-27 02:19:01 -05001763 vol->sfu_remap = false;
1764 break;
1765 case Opt_mapposix:
1766 vol->remap = true;
1767 vol->sfu_remap = false; /* disable SFU mapping */
1768 break;
1769 case Opt_nomapposix:
1770 vol->remap = false;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001771 break;
1772 case Opt_sfu:
Steve French50c2f752007-07-13 00:33:32 +00001773 vol->sfu_emul = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001774 break;
1775 case Opt_nosfu:
Steve French50c2f752007-07-13 00:33:32 +00001776 vol->sfu_emul = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001777 break;
1778 case Opt_nodfs:
Steve French2c1b8612008-10-16 18:35:21 +00001779 vol->nodfs = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001780 break;
Paulo Alcantara (SUSE)8eecd1c2019-07-16 19:04:50 -03001781 case Opt_rootfs:
1782#ifdef CONFIG_CIFS_ROOT
1783 vol->rootfs = true;
1784#endif
1785 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001786 case Opt_posixpaths:
Jeremy Allisonac670552005-06-22 17:26:35 -07001787 vol->posix_paths = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001788 break;
1789 case Opt_noposixpaths:
Jeremy Allisonac670552005-06-22 17:26:35 -07001790 vol->posix_paths = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001791 break;
1792 case Opt_nounix:
Steve Frenchb3266142018-05-20 23:41:10 -05001793 if (vol->linux_ext)
1794 cifs_dbg(VFS,
1795 "conflicting unix mount options\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00001796 vol->no_linux_ext = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001797 break;
Steve Frenchb3266142018-05-20 23:41:10 -05001798 case Opt_unix:
1799 if (vol->no_linux_ext)
1800 cifs_dbg(VFS,
1801 "conflicting unix mount options\n");
1802 vol->linux_ext = 1;
1803 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001804 case Opt_nocase:
Steve French50c2f752007-07-13 00:33:32 +00001805 vol->nocase = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001806 break;
1807 case Opt_brl:
Steve Frenchc46fa8a2005-08-18 20:49:57 -07001808 vol->nobrl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001809 break;
1810 case Opt_nobrl:
Steve Frenchc46fa8a2005-08-18 20:49:57 -07001811 vol->nobrl = 1;
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +04001812 /*
1813 * turn off mandatory locking in mode
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001814 * if remote locking is turned off since the
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +04001815 * local vfs will do advisory
1816 */
Steve French50c2f752007-07-13 00:33:32 +00001817 if (vol->file_mode ==
1818 (S_IALLUGO & ~(S_ISUID | S_IXGRP)))
Steve Frenchd3485d32005-08-19 11:04:29 -07001819 vol->file_mode = S_IALLUGO;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001820 break;
Steve French3d4ef9a2018-04-25 22:19:09 -05001821 case Opt_nohandlecache:
1822 vol->nohandlecache = 1;
1823 break;
1824 case Opt_handlecache:
1825 vol->nohandlecache = 0;
1826 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001827 case Opt_forcemandatorylock:
Steve French13a6e422008-12-02 17:24:33 +00001828 vol->mand_lock = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001829 break;
1830 case Opt_setuids:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 vol->setuids = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001832 break;
1833 case Opt_nosetuids:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 vol->setuids = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001835 break;
Steve French95932652016-09-23 01:36:34 -05001836 case Opt_setuidfromacl:
1837 vol->setuidfromacl = 1;
1838 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001839 case Opt_dynperm:
Jeff Laytond0a9c072008-05-12 22:23:49 +00001840 vol->dynperm = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001841 break;
1842 case Opt_nodynperm:
Jeff Laytond0a9c072008-05-12 22:23:49 +00001843 vol->dynperm = false;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001844 break;
1845 case Opt_nohard:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 vol->retry = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001847 break;
1848 case Opt_nosoft:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 vol->retry = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001850 break;
1851 case Opt_nointr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 vol->intr = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001853 break;
1854 case Opt_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 vol->intr = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001856 break;
1857 case Opt_nostrictsync:
Steve Frenchbe652442009-02-23 15:21:59 +00001858 vol->nostrictsync = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001859 break;
1860 case Opt_strictsync:
Steve Frenchbe652442009-02-23 15:21:59 +00001861 vol->nostrictsync = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001862 break;
1863 case Opt_serverino:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 vol->server_ino = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001865 break;
1866 case Opt_noserverino:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 vol->server_ino = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001868 break;
1869 case Opt_rwpidforward:
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00001870 vol->rwpidforward = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001871 break;
Steve French412094a2019-06-24 02:01:42 -05001872 case Opt_modesid:
1873 vol->mode_ace = 1;
1874 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001875 case Opt_cifsacl:
Steve French0a4b92c2006-01-12 15:44:21 -08001876 vol->cifs_acl = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001877 break;
1878 case Opt_nocifsacl:
Steve French0a4b92c2006-01-12 15:44:21 -08001879 vol->cifs_acl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001880 break;
1881 case Opt_acl:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 vol->no_psx_acl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001883 break;
1884 case Opt_noacl:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 vol->no_psx_acl = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001886 break;
1887 case Opt_locallease:
Steve French84210e92008-10-23 04:42:37 +00001888 vol->local_lease = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001889 break;
1890 case Opt_sign:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001891 vol->sign = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001892 break;
Steve French4f5c10f2019-09-03 21:18:49 -05001893 case Opt_ignore_signature:
1894 vol->sign = true;
1895 vol->ignore_signature = true;
1896 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001897 case Opt_seal:
Steve French95b1cb92008-05-15 16:44:38 +00001898 /* we do not do the following in secFlags because seal
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001899 * is a per tree connection (mount) not a per socket
1900 * or per-smb connection option in the protocol
1901 * vol->secFlg |= CIFSSEC_MUST_SEAL;
1902 */
Steve French95b1cb92008-05-15 16:44:38 +00001903 vol->seal = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001904 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001905 case Opt_noac:
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001906 pr_warn("CIFS: Mount option noac not supported. Instead set /proc/fs/cifs/LookupCacheEnabled to 0\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001907 break;
1908 case Opt_fsc:
Suresh Jayaraman607a5692010-11-24 17:49:05 +05301909#ifndef CONFIG_CIFS_FSCACHE
Joe Perchesf96637b2013-05-04 22:12:25 -05001910 cifs_dbg(VFS, "FS-Cache support needs CONFIG_CIFS_FSCACHE kernel config option set\n");
Sean Finneyb9468452011-04-11 13:19:32 +00001911 goto cifs_parse_mount_err;
Suresh Jayaraman607a5692010-11-24 17:49:05 +05301912#endif
Suresh Jayaramanfa1df752010-07-05 18:13:36 +05301913 vol->fsc = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001914 break;
1915 case Opt_mfsymlinks:
Stefan Metzmacher736a33202010-07-30 14:56:00 +02001916 vol->mfsymlinks = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001917 break;
1918 case Opt_multiuser:
Jeff Layton0eb8a132010-10-06 19:51:12 -04001919 vol->multiuser = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001920 break;
Jeff Laytond8162552012-03-23 14:40:56 -04001921 case Opt_sloppy:
1922 sloppy = true;
1923 break;
Jeff Laytona0b3df52013-05-24 07:40:59 -04001924 case Opt_nosharesock:
1925 vol->nosharesock = true;
1926 break;
Steve Frenchb2a30772015-09-29 21:49:28 -05001927 case Opt_nopersistent:
1928 vol->nopersistent = true;
1929 if (vol->persistent) {
1930 cifs_dbg(VFS,
1931 "persistenthandles mount options conflict\n");
1932 goto cifs_parse_mount_err;
1933 }
1934 break;
1935 case Opt_persistent:
1936 vol->persistent = true;
Steve French592fafe2015-11-03 10:08:53 -06001937 if ((vol->nopersistent) || (vol->resilient)) {
Steve Frenchb2a30772015-09-29 21:49:28 -05001938 cifs_dbg(VFS,
1939 "persistenthandles mount options conflict\n");
1940 goto cifs_parse_mount_err;
1941 }
1942 break;
Steve French592fafe2015-11-03 10:08:53 -06001943 case Opt_resilient:
1944 vol->resilient = true;
1945 if (vol->persistent) {
1946 cifs_dbg(VFS,
1947 "persistenthandles mount options conflict\n");
1948 goto cifs_parse_mount_err;
1949 }
1950 break;
1951 case Opt_noresilient:
1952 vol->resilient = false; /* already the default */
1953 break;
Germano Percossi39566442016-12-15 12:31:18 +05301954 case Opt_domainauto:
1955 vol->domainauto = true;
1956 break;
Long Li8339dd32017-11-07 01:54:55 -07001957 case Opt_rdma:
1958 vol->rdma = true;
1959 break;
Steve French9fe5ff12019-06-24 20:39:04 -05001960 case Opt_compress:
1961 vol->compression = UNKNOWN_TYPE;
1962 cifs_dbg(VFS,
1963 "SMB3 compression support is experimental\n");
1964 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001965
1966 /* Numeric Values */
1967 case Opt_backupuid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001968 if (get_option_uid(args, &vol->backupuid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001969 cifs_dbg(VFS, "%s: Invalid backupuid value\n",
1970 __func__);
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001971 goto cifs_parse_mount_err;
1972 }
1973 vol->backupuid_specified = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001974 break;
1975 case Opt_backupgid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001976 if (get_option_gid(args, &vol->backupgid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001977 cifs_dbg(VFS, "%s: Invalid backupgid value\n",
1978 __func__);
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001979 goto cifs_parse_mount_err;
1980 }
1981 vol->backupgid_specified = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001982 break;
1983 case Opt_uid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001984 if (get_option_uid(args, &vol->linux_uid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001985 cifs_dbg(VFS, "%s: Invalid uid value\n",
1986 __func__);
Sean Finneyb9468452011-04-11 13:19:32 +00001987 goto cifs_parse_mount_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001989 uid_specified = true;
1990 break;
1991 case Opt_cruid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001992 if (get_option_uid(args, &vol->cred_uid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001993 cifs_dbg(VFS, "%s: Invalid cruid value\n",
1994 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001995 goto cifs_parse_mount_err;
1996 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001997 break;
1998 case Opt_gid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001999 if (get_option_gid(args, &vol->linux_gid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002000 cifs_dbg(VFS, "%s: Invalid gid value\n",
2001 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002002 goto cifs_parse_mount_err;
2003 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002004 gid_specified = true;
2005 break;
2006 case Opt_file_mode:
2007 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002008 cifs_dbg(VFS, "%s: Invalid file_mode value\n",
2009 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002010 goto cifs_parse_mount_err;
2011 }
2012 vol->file_mode = option;
2013 break;
2014 case Opt_dirmode:
2015 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002016 cifs_dbg(VFS, "%s: Invalid dir_mode value\n",
2017 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002018 goto cifs_parse_mount_err;
2019 }
2020 vol->dir_mode = option;
2021 break;
2022 case Opt_port:
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002023 if (get_option_ul(args, &option) ||
2024 option > USHRT_MAX) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002025 cifs_dbg(VFS, "%s: Invalid port value\n",
2026 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002027 goto cifs_parse_mount_err;
2028 }
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002029 port = (unsigned short)option;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002030 break;
Steve French563317e2019-09-08 23:22:02 -05002031 case Opt_min_enc_offload:
2032 if (get_option_ul(args, &option)) {
2033 cifs_dbg(VFS, "Invalid minimum encrypted read offload size (esize)\n");
2034 goto cifs_parse_mount_err;
2035 }
2036 vol->min_offload = option;
2037 break;
Steve Frenche8506d22019-02-28 21:32:15 -06002038 case Opt_blocksize:
2039 if (get_option_ul(args, &option)) {
2040 cifs_dbg(VFS, "%s: Invalid blocksize value\n",
2041 __func__);
2042 goto cifs_parse_mount_err;
2043 }
2044 /*
2045 * inode blocksize realistically should never need to be
2046 * less than 16K or greater than 16M and default is 1MB.
2047 * Note that small inode block sizes (e.g. 64K) can lead
2048 * to very poor performance of common tools like cp and scp
2049 */
2050 if ((option < CIFS_MAX_MSGSIZE) ||
2051 (option > (4 * SMB3_DEFAULT_IOSIZE))) {
2052 cifs_dbg(VFS, "%s: Invalid blocksize\n",
2053 __func__);
2054 goto cifs_parse_mount_err;
2055 }
2056 vol->bsize = option;
2057 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002058 case Opt_rsize:
2059 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002060 cifs_dbg(VFS, "%s: Invalid rsize value\n",
2061 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002062 goto cifs_parse_mount_err;
2063 }
2064 vol->rsize = option;
2065 break;
2066 case Opt_wsize:
2067 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002068 cifs_dbg(VFS, "%s: Invalid wsize value\n",
2069 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002070 goto cifs_parse_mount_err;
2071 }
2072 vol->wsize = option;
2073 break;
2074 case Opt_actimeo:
2075 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002076 cifs_dbg(VFS, "%s: Invalid actimeo value\n",
2077 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002078 goto cifs_parse_mount_err;
2079 }
2080 vol->actimeo = HZ * option;
2081 if (vol->actimeo > CIFS_MAX_ACTIMEO) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002082 cifs_dbg(VFS, "attribute cache timeout too large\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002083 goto cifs_parse_mount_err;
2084 }
2085 break;
Steve Frenchca567eb2019-03-29 16:31:07 -05002086 case Opt_handletimeout:
2087 if (get_option_ul(args, &option)) {
2088 cifs_dbg(VFS, "%s: Invalid handletimeout value\n",
2089 __func__);
2090 goto cifs_parse_mount_err;
2091 }
2092 vol->handle_timeout = option;
2093 if (vol->handle_timeout > SMB3_MAX_HANDLE_TIMEOUT) {
2094 cifs_dbg(VFS, "Invalid handle cache timeout, longer than 16 minutes\n");
2095 goto cifs_parse_mount_err;
2096 }
2097 break;
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002098 case Opt_echo_interval:
2099 if (get_option_ul(args, &option)) {
2100 cifs_dbg(VFS, "%s: Invalid echo interval value\n",
2101 __func__);
2102 goto cifs_parse_mount_err;
2103 }
2104 vol->echo_interval = option;
2105 break;
Steve French8b217fe2016-11-11 22:36:20 -06002106 case Opt_snapshot:
2107 if (get_option_ul(args, &option)) {
2108 cifs_dbg(VFS, "%s: Invalid snapshot time\n",
2109 __func__);
2110 goto cifs_parse_mount_err;
2111 }
2112 vol->snapshot_time = option;
2113 break;
Steve French141891f2016-09-23 00:44:16 -05002114 case Opt_max_credits:
2115 if (get_option_ul(args, &option) || (option < 20) ||
2116 (option > 60000)) {
2117 cifs_dbg(VFS, "%s: Invalid max_credits value\n",
2118 __func__);
2119 goto cifs_parse_mount_err;
2120 }
2121 vol->max_credits = option;
2122 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002123
2124 /* String Arguments */
2125
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01002126 case Opt_blank_user:
2127 /* null user, ie. anonymous authentication */
2128 vol->nullauth = 1;
2129 vol->username = NULL;
2130 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002131 case Opt_user:
2132 string = match_strdup(args);
2133 if (string == NULL)
2134 goto out_nomem;
2135
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002136 if (strnlen(string, CIFS_MAX_USERNAME_LEN) >
2137 CIFS_MAX_USERNAME_LEN) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002138 pr_warn("CIFS: username too long\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002139 goto cifs_parse_mount_err;
2140 }
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04002141
2142 kfree(vol->username);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002143 vol->username = kstrdup(string, GFP_KERNEL);
Joe Perchesf96637b2013-05-04 22:12:25 -05002144 if (!vol->username)
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002145 goto cifs_parse_mount_err;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002146 break;
2147 case Opt_blank_pass:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002148 /* passwords have to be handled differently
2149 * to allow the character used for deliminator
2150 * to be passed within them
2151 */
2152
Sachin Prabhuc369c9a2013-04-09 18:17:41 +01002153 /*
2154 * Check if this is a case where the password
2155 * starts with a delimiter
2156 */
2157 tmp_end = strchr(data, '=');
2158 tmp_end++;
2159 if (!(tmp_end < end && tmp_end[1] == delim)) {
2160 /* No it is not. Set the password to NULL */
Aurelien Aptel97f4b722018-01-25 15:59:39 +01002161 kzfree(vol->password);
Sachin Prabhuc369c9a2013-04-09 18:17:41 +01002162 vol->password = NULL;
2163 break;
2164 }
Gustavo A. R. Silva07fa6012018-11-27 10:01:51 +11002165 /* Fallthrough - to Opt_pass below.*/
Sachin Prabhuc369c9a2013-04-09 18:17:41 +01002166 case Opt_pass:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002167 /* Obtain the value string */
2168 value = strchr(data, '=');
Sachin Prabhu10238072012-03-28 18:07:08 +01002169 value++;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002170
2171 /* Set tmp_end to end of the string */
2172 tmp_end = (char *) value + strlen(value);
2173
2174 /* Check if following character is the deliminator
2175 * If yes, we have encountered a double deliminator
2176 * reset the NULL character to the deliminator
2177 */
Suresh Jayaramane73f8432012-06-12 07:15:50 +05302178 if (tmp_end < end && tmp_end[1] == delim) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002179 tmp_end[0] = delim;
2180
Suresh Jayaramane73f8432012-06-12 07:15:50 +05302181 /* Keep iterating until we get to a single
2182 * deliminator OR the end
2183 */
2184 while ((tmp_end = strchr(tmp_end, delim))
2185 != NULL && (tmp_end[1] == delim)) {
2186 tmp_end = (char *) &tmp_end[2];
2187 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002188
Suresh Jayaramane73f8432012-06-12 07:15:50 +05302189 /* Reset var options to point to next element */
2190 if (tmp_end) {
2191 tmp_end[0] = '\0';
2192 options = (char *) &tmp_end[1];
2193 } else
2194 /* Reached the end of the mount option
2195 * string */
2196 options = end;
2197 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002198
Aurelien Aptel97f4b722018-01-25 15:59:39 +01002199 kzfree(vol->password);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002200 /* Now build new password string */
2201 temp_len = strlen(value);
2202 vol->password = kzalloc(temp_len+1, GFP_KERNEL);
2203 if (vol->password == NULL) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002204 pr_warn("CIFS: no memory for password\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002205 goto cifs_parse_mount_err;
2206 }
2207
2208 for (i = 0, j = 0; i < temp_len; i++, j++) {
2209 vol->password[j] = value[i];
2210 if ((value[i] == delim) &&
2211 value[i+1] == delim)
2212 /* skip the second deliminator */
2213 i++;
2214 }
2215 vol->password[j] = '\0';
2216 break;
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01002217 case Opt_blank_ip:
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002218 /* FIXME: should this be an error instead? */
2219 got_ip = false;
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01002220 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002221 case Opt_ip:
2222 string = match_strdup(args);
2223 if (string == NULL)
2224 goto out_nomem;
2225
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002226 if (!cifs_convert_address(dstaddr, string,
2227 strlen(string))) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002228 pr_err("CIFS: bad ip= option (%s).\n", string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002229 goto cifs_parse_mount_err;
2230 }
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002231 got_ip = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002232 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002233 case Opt_domain:
2234 string = match_strdup(args);
2235 if (string == NULL)
2236 goto out_nomem;
2237
Chen Gang057d6332013-07-19 09:01:36 +08002238 if (strnlen(string, CIFS_MAX_DOMAINNAME_LEN)
2239 == CIFS_MAX_DOMAINNAME_LEN) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002240 pr_warn("CIFS: domain name too long\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002241 goto cifs_parse_mount_err;
2242 }
2243
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04002244 kfree(vol->domainname);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002245 vol->domainname = kstrdup(string, GFP_KERNEL);
2246 if (!vol->domainname) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002247 pr_warn("CIFS: no memory for domainname\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002248 goto cifs_parse_mount_err;
2249 }
Joe Perchesf96637b2013-05-04 22:12:25 -05002250 cifs_dbg(FYI, "Domain name set\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002251 break;
2252 case Opt_srcaddr:
2253 string = match_strdup(args);
2254 if (string == NULL)
2255 goto out_nomem;
2256
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01002257 if (!cifs_convert_address(
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002258 (struct sockaddr *)&vol->srcaddr,
2259 string, strlen(string))) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002260 pr_warn("CIFS: Could not parse srcaddr: %s\n",
2261 string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002262 goto cifs_parse_mount_err;
2263 }
2264 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002265 case Opt_iocharset:
2266 string = match_strdup(args);
2267 if (string == NULL)
2268 goto out_nomem;
2269
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01002270 if (strnlen(string, 1024) >= 65) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002271 pr_warn("CIFS: iocharset name too long.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002272 goto cifs_parse_mount_err;
2273 }
2274
Rasmus Villemoes87e747c2014-10-13 15:54:35 -07002275 if (strncasecmp(string, "default", 7) != 0) {
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04002276 kfree(vol->iocharset);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002277 vol->iocharset = kstrdup(string,
2278 GFP_KERNEL);
2279 if (!vol->iocharset) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002280 pr_warn("CIFS: no memory for charset\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002281 goto cifs_parse_mount_err;
2282 }
2283 }
2284 /* if iocharset not set then load_nls_default
2285 * is used by caller
2286 */
Joe Perchesf96637b2013-05-04 22:12:25 -05002287 cifs_dbg(FYI, "iocharset set to %s\n", string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002288 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002289 case Opt_netbiosname:
2290 string = match_strdup(args);
2291 if (string == NULL)
2292 goto out_nomem;
2293
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002294 memset(vol->source_rfc1001_name, 0x20,
2295 RFC1001_NAME_LEN);
2296 /*
2297 * FIXME: are there cases in which a comma can
2298 * be valid in workstation netbios name (and
2299 * need special handling)?
2300 */
2301 for (i = 0; i < RFC1001_NAME_LEN; i++) {
2302 /* don't ucase netbiosname for user */
2303 if (string[i] == 0)
2304 break;
2305 vol->source_rfc1001_name[i] = string[i];
2306 }
2307 /* The string has 16th byte zero still from
2308 * set at top of the function
2309 */
2310 if (i == RFC1001_NAME_LEN && string[i] != 0)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002311 pr_warn("CIFS: netbiosname longer than 15 truncated.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002312 break;
2313 case Opt_servern:
2314 /* servernetbiosname specified override *SMBSERVER */
2315 string = match_strdup(args);
2316 if (string == NULL)
2317 goto out_nomem;
2318
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002319 /* last byte, type, is 0x20 for servr type */
2320 memset(vol->target_rfc1001_name, 0x20,
2321 RFC1001_NAME_LEN_WITH_NULL);
2322
2323 /* BB are there cases in which a comma can be
2324 valid in this workstation netbios name
2325 (and need special handling)? */
2326
2327 /* user or mount helper must uppercase the
2328 netbios name */
2329 for (i = 0; i < 15; i++) {
2330 if (string[i] == 0)
2331 break;
2332 vol->target_rfc1001_name[i] = string[i];
2333 }
2334 /* The string has 16th byte zero still from
2335 set at top of the function */
2336 if (i == RFC1001_NAME_LEN && string[i] != 0)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002337 pr_warn("CIFS: server netbiosname longer than 15 truncated.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002338 break;
2339 case Opt_ver:
Steve French7e682f72017-08-31 21:34:24 -05002340 /* version of mount userspace tools, not dialect */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002341 string = match_strdup(args);
2342 if (string == NULL)
2343 goto out_nomem;
2344
Steve French7e682f72017-08-31 21:34:24 -05002345 /* If interface changes in mount.cifs bump to new ver */
Rasmus Villemoes87e747c2014-10-13 15:54:35 -07002346 if (strncasecmp(string, "1", 1) == 0) {
Steve French7e682f72017-08-31 21:34:24 -05002347 if (strlen(string) > 1) {
2348 pr_warn("Bad mount helper ver=%s. Did "
2349 "you want SMB1 (CIFS) dialect "
2350 "and mean to type vers=1.0 "
2351 "instead?\n", string);
2352 goto cifs_parse_mount_err;
2353 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002354 /* This is the default */
2355 break;
2356 }
2357 /* For all other value, error */
Steve French7e682f72017-08-31 21:34:24 -05002358 pr_warn("CIFS: Invalid mount helper version specified\n");
Sean Finneyb9468452011-04-11 13:19:32 +00002359 goto cifs_parse_mount_err;
Jeff Layton23db65f2012-05-15 12:20:51 -04002360 case Opt_vers:
Steve French7e682f72017-08-31 21:34:24 -05002361 /* protocol version (dialect) */
Jeff Layton23db65f2012-05-15 12:20:51 -04002362 string = match_strdup(args);
2363 if (string == NULL)
2364 goto out_nomem;
2365
Steve Frenchc7c137b2018-06-06 17:59:29 -05002366 if (cifs_parse_smb_version(string, vol, is_smb3) != 0)
Jeff Layton23db65f2012-05-15 12:20:51 -04002367 goto cifs_parse_mount_err;
Steve French7e682f72017-08-31 21:34:24 -05002368 got_version = true;
Jeff Layton23db65f2012-05-15 12:20:51 -04002369 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002370 case Opt_sec:
2371 string = match_strdup(args);
2372 if (string == NULL)
2373 goto out_nomem;
2374
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002375 if (cifs_parse_security_flavors(string, vol) != 0)
2376 goto cifs_parse_mount_err;
2377 break;
Jeff Layton15b6a472012-05-16 07:50:15 -04002378 case Opt_cache:
2379 string = match_strdup(args);
2380 if (string == NULL)
2381 goto out_nomem;
2382
2383 if (cifs_parse_cache_flavor(string, vol) != 0)
2384 goto cifs_parse_mount_err;
2385 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002386 default:
Jeff Laytond8162552012-03-23 14:40:56 -04002387 /*
2388 * An option we don't recognize. Save it off for later
2389 * if we haven't already found one
2390 */
2391 if (!invalid)
2392 invalid = data;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002393 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002395 /* Free up any allocated string */
2396 kfree(string);
2397 string = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 }
Jeff Layton0eb8a132010-10-06 19:51:12 -04002399
Jeff Laytond8162552012-03-23 14:40:56 -04002400 if (!sloppy && invalid) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002401 pr_err("CIFS: Unknown mount option \"%s\"\n", invalid);
Jeff Laytond8162552012-03-23 14:40:56 -04002402 goto cifs_parse_mount_err;
2403 }
2404
Long Li8339dd32017-11-07 01:54:55 -07002405 if (vol->rdma && vol->vals->protocol_id < SMB30_PROT_ID) {
2406 cifs_dbg(VFS, "SMB Direct requires Version >=3.0\n");
2407 goto cifs_parse_mount_err;
2408 }
2409
Jeff Layton8a8798a2012-01-17 16:09:15 -05002410#ifndef CONFIG_KEYS
2411 /* Muliuser mounts require CONFIG_KEYS support */
2412 if (vol->multiuser) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002413 cifs_dbg(VFS, "Multiuser mounts require kernels with CONFIG_KEYS enabled\n");
Sean Finneyb9468452011-04-11 13:19:32 +00002414 goto cifs_parse_mount_err;
Jeff Layton0eb8a132010-10-06 19:51:12 -04002415 }
Jeff Layton8a8798a2012-01-17 16:09:15 -05002416#endif
Jeff Laytone5e69ab2012-11-25 08:00:42 -05002417 if (!vol->UNC) {
Jeff Layton37d4f992013-05-24 07:40:05 -04002418 cifs_dbg(VFS, "CIFS mount error: No usable UNC path provided in device string!\n");
Jeff Laytone5e69ab2012-11-25 08:00:42 -05002419 goto cifs_parse_mount_err;
2420 }
Jeff Layton0eb8a132010-10-06 19:51:12 -04002421
Jeff Layton62a1a432012-12-10 06:10:45 -05002422 /* make sure UNC has a share name */
2423 if (!strchr(vol->UNC + 3, '\\')) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002424 cifs_dbg(VFS, "Malformed UNC. Unable to find share name.\n");
Jeff Layton62a1a432012-12-10 06:10:45 -05002425 goto cifs_parse_mount_err;
2426 }
2427
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002428 if (!got_ip) {
Daniel N Pettersson29bb3152017-04-27 11:32:36 +02002429 int len;
2430 const char *slash;
2431
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002432 /* No ip= option specified? Try to get it from UNC */
Daniel N Pettersson29bb3152017-04-27 11:32:36 +02002433 /* Use the address part of the UNC. */
2434 slash = strchr(&vol->UNC[2], '\\');
2435 len = slash - &vol->UNC[2];
2436 if (!cifs_convert_address(dstaddr, &vol->UNC[2], len)) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002437 pr_err("Unable to determine destination address.\n");
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002438 goto cifs_parse_mount_err;
2439 }
2440 }
2441
2442 /* set the port that we got earlier */
2443 cifs_set_port(dstaddr, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Jeff Layton9b9d6b242009-07-31 06:56:09 -04002445 if (uid_specified)
2446 vol->override_uid = override_uid;
2447 else if (override_uid == 1)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002448 pr_notice("CIFS: ignoring forceuid mount option specified with no uid= option.\n");
Jeff Layton9b9d6b242009-07-31 06:56:09 -04002449
2450 if (gid_specified)
2451 vol->override_gid = override_gid;
2452 else if (override_gid == 1)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002453 pr_notice("CIFS: ignoring forcegid mount option specified with no gid= option.\n");
Jeff Layton9b9d6b242009-07-31 06:56:09 -04002454
Steve French7e682f72017-08-31 21:34:24 -05002455 if (got_version == false)
2456 pr_warn("No dialect specified on mount. Default has changed to "
Steve French9764c022017-09-17 10:41:35 -05002457 "a more secure dialect, SMB2.1 or later (e.g. SMB3), from CIFS "
Steve French7e682f72017-08-31 21:34:24 -05002458 "(SMB1). To use the less secure SMB1 dialect to access "
Steve French9764c022017-09-17 10:41:35 -05002459 "old servers which do not support SMB3 (or SMB2.1) specify vers=1.0"
2460 " on mount.\n");
Steve French7e682f72017-08-31 21:34:24 -05002461
Sean Finneyb9468452011-04-11 13:19:32 +00002462 kfree(mountdata_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 return 0;
Sean Finneyb9468452011-04-11 13:19:32 +00002464
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002465out_nomem:
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002466 pr_warn("Could not allocate temporary buffer\n");
Sean Finneyb9468452011-04-11 13:19:32 +00002467cifs_parse_mount_err:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002468 kfree(string);
Sean Finneyb9468452011-04-11 13:19:32 +00002469 kfree(mountdata_copy);
2470 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471}
2472
Ben Greear3eb9a882010-09-01 17:06:02 -07002473/** Returns true if srcaddr isn't specified and rhs isn't
2474 * specified, or if srcaddr is specified and
2475 * matches the IP address of the rhs argument.
2476 */
Jeff Layton45151482010-07-06 20:43:02 -04002477static bool
Ben Greear3eb9a882010-09-01 17:06:02 -07002478srcip_matches(struct sockaddr *srcaddr, struct sockaddr *rhs)
2479{
2480 switch (srcaddr->sa_family) {
2481 case AF_UNSPEC:
2482 return (rhs->sa_family == AF_UNSPEC);
2483 case AF_INET: {
2484 struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr;
2485 struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs;
2486 return (saddr4->sin_addr.s_addr == vaddr4->sin_addr.s_addr);
2487 }
2488 case AF_INET6: {
2489 struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr;
Nickolai Zeldoviche3e27752013-01-16 21:36:17 -05002490 struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs;
Ben Greear3eb9a882010-09-01 17:06:02 -07002491 return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr);
2492 }
2493 default:
2494 WARN_ON(1);
2495 return false; /* don't expect to be here */
2496 }
2497}
2498
Pavel Shilovsky4b886132010-12-13 22:18:07 +03002499/*
2500 * If no port is specified in addr structure, we try to match with 445 port
2501 * and if it fails - with 139 ports. It should be called only if address
2502 * families of server and addr are equal.
2503 */
2504static bool
2505match_port(struct TCP_Server_Info *server, struct sockaddr *addr)
2506{
Steve French6da97912011-03-13 18:55:55 +00002507 __be16 port, *sport;
Pavel Shilovsky4b886132010-12-13 22:18:07 +03002508
Long Li3b249112019-05-15 14:09:04 -07002509 /* SMBDirect manages its own ports, don't match it here */
2510 if (server->rdma)
2511 return true;
2512
Pavel Shilovsky4b886132010-12-13 22:18:07 +03002513 switch (addr->sa_family) {
2514 case AF_INET:
2515 sport = &((struct sockaddr_in *) &server->dstaddr)->sin_port;
2516 port = ((struct sockaddr_in *) addr)->sin_port;
2517 break;
2518 case AF_INET6:
2519 sport = &((struct sockaddr_in6 *) &server->dstaddr)->sin6_port;
2520 port = ((struct sockaddr_in6 *) addr)->sin6_port;
2521 break;
2522 default:
2523 WARN_ON(1);
2524 return false;
2525 }
2526
2527 if (!port) {
2528 port = htons(CIFS_PORT);
2529 if (port == *sport)
2530 return true;
2531
2532 port = htons(RFC1001_PORT);
2533 }
2534
2535 return port == *sport;
2536}
Ben Greear3eb9a882010-09-01 17:06:02 -07002537
2538static bool
2539match_address(struct TCP_Server_Info *server, struct sockaddr *addr,
2540 struct sockaddr *srcaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541{
Jeff Layton45151482010-07-06 20:43:02 -04002542 switch (addr->sa_family) {
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002543 case AF_INET: {
2544 struct sockaddr_in *addr4 = (struct sockaddr_in *)addr;
2545 struct sockaddr_in *srv_addr4 =
2546 (struct sockaddr_in *)&server->dstaddr;
2547
2548 if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr)
Jeff Layton45151482010-07-06 20:43:02 -04002549 return false;
Jeff Layton45151482010-07-06 20:43:02 -04002550 break;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002551 }
2552 case AF_INET6: {
2553 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr;
2554 struct sockaddr_in6 *srv_addr6 =
2555 (struct sockaddr_in6 *)&server->dstaddr;
2556
Jeff Layton45151482010-07-06 20:43:02 -04002557 if (!ipv6_addr_equal(&addr6->sin6_addr,
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002558 &srv_addr6->sin6_addr))
Jeff Layton45151482010-07-06 20:43:02 -04002559 return false;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002560 if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id)
Jeff Layton45151482010-07-06 20:43:02 -04002561 return false;
Jeff Layton45151482010-07-06 20:43:02 -04002562 break;
2563 }
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002564 default:
2565 WARN_ON(1);
2566 return false; /* don't expect to be here */
2567 }
Jeff Layton45151482010-07-06 20:43:02 -04002568
Ben Greear3eb9a882010-09-01 17:06:02 -07002569 if (!srcip_matches(srcaddr, (struct sockaddr *)&server->srcaddr))
2570 return false;
2571
Jeff Layton45151482010-07-06 20:43:02 -04002572 return true;
2573}
2574
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002575static bool
2576match_security(struct TCP_Server_Info *server, struct smb_vol *vol)
2577{
Jeff Layton3f618222013-06-12 19:52:14 -05002578 /*
2579 * The select_sectype function should either return the vol->sectype
2580 * that was specified, or "Unspecified" if that sectype was not
2581 * compatible with the given NEGOTIATE request.
2582 */
Sachin Prabhuef65aae2017-01-18 15:35:57 +05302583 if (server->ops->select_sectype(server, vol->sectype)
2584 == Unspecified)
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002585 return false;
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002586
Jeff Layton3f618222013-06-12 19:52:14 -05002587 /*
2588 * Now check if signing mode is acceptable. No need to check
2589 * global_secflags at this point since if MUST_SIGN is set then
2590 * the server->sign had better be too.
2591 */
Jeff Layton38d77c52013-05-26 07:01:00 -04002592 if (vol->sign && !server->sign)
2593 return false;
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002594
2595 return true;
2596}
2597
Jeff Layton9fa114f2012-11-26 11:09:57 -05002598static int match_server(struct TCP_Server_Info *server, struct smb_vol *vol)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002599{
Jeff Layton9fa114f2012-11-26 11:09:57 -05002600 struct sockaddr *addr = (struct sockaddr *)&vol->dstaddr;
2601
Jeff Laytona0b3df52013-05-24 07:40:59 -04002602 if (vol->nosharesock)
2603 return 0;
2604
Steve French43cdae82019-06-13 14:26:49 -05002605 /* If multidialect negotiation see if existing sessions match one */
2606 if (strcmp(vol->vals->version_string, SMB3ANY_VERSION_STRING) == 0) {
2607 if (server->vals->protocol_id < SMB30_PROT_ID)
2608 return 0;
2609 } else if (strcmp(vol->vals->version_string,
2610 SMBDEFAULT_VERSION_STRING) == 0) {
2611 if (server->vals->protocol_id < SMB21_PROT_ID)
2612 return 0;
2613 } else if ((server->vals != vol->vals) || (server->ops != vol->ops))
Jeff Layton23db65f2012-05-15 12:20:51 -04002614 return 0;
2615
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002616 if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns))
2617 return 0;
2618
2619 if (!match_address(server, addr,
2620 (struct sockaddr *)&vol->srcaddr))
2621 return 0;
2622
2623 if (!match_port(server, addr))
2624 return 0;
2625
2626 if (!match_security(server, vol))
2627 return 0;
2628
Rabin Vincentb782fcc2016-07-19 09:25:45 +02002629 if (server->echo_interval != vol->echo_interval * HZ)
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002630 return 0;
2631
Long Li8339dd32017-11-07 01:54:55 -07002632 if (server->rdma != vol->rdma)
2633 return 0;
2634
Steve French4f5c10f2019-09-03 21:18:49 -05002635 if (server->ignore_signature != vol->ignore_signature)
2636 return 0;
2637
Steve French563317e2019-09-08 23:22:02 -05002638 if (server->min_offload != vol->min_offload)
2639 return 0;
2640
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002641 return 1;
2642}
2643
Paulo Alcantara54be1f62018-11-14 16:01:21 -02002644struct TCP_Server_Info *
Jeff Layton9fa114f2012-11-26 11:09:57 -05002645cifs_find_tcp_session(struct smb_vol *vol)
Jeff Layton45151482010-07-06 20:43:02 -04002646{
Jeff Laytone7ddee92008-11-14 13:44:38 -05002647 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302649 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton45151482010-07-06 20:43:02 -04002650 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
Jeff Layton9fa114f2012-11-26 11:09:57 -05002651 if (!match_server(server, vol))
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002652 continue;
2653
Jeff Laytone7ddee92008-11-14 13:44:38 -05002654 ++server->srv_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302655 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -05002656 cifs_dbg(FYI, "Existing tcp session with server found\n");
Jeff Laytone7ddee92008-11-14 13:44:38 -05002657 return server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302659 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 return NULL;
2661}
2662
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002663void
2664cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665{
Steve Frencha5c3e1c2014-09-16 04:16:19 -05002666 struct task_struct *task;
2667
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302668 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002669 if (--server->srv_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302670 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002671 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 }
Steve Frenchdea570e02008-05-06 22:05:51 +00002673
Rob Landleyf1d0c992011-01-22 15:44:05 -06002674 put_net(cifs_net_ns(server));
2675
Jeff Laytone7ddee92008-11-14 13:44:38 -05002676 list_del_init(&server->tcp_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302677 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002678
Jeff Laytonc74093b2011-01-11 07:24:23 -05002679 cancel_delayed_work_sync(&server->echo);
2680
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002681 if (from_reconnect)
2682 /*
2683 * Avoid deadlock here: reconnect work calls
2684 * cifs_put_tcp_session() at its end. Need to be sure
2685 * that reconnect work does nothing with server pointer after
2686 * that step.
2687 */
2688 cancel_delayed_work(&server->reconnect);
2689 else
2690 cancel_delayed_work_sync(&server->reconnect);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002691
Jeff Laytone7ddee92008-11-14 13:44:38 -05002692 spin_lock(&GlobalMid_Lock);
2693 server->tcpStatus = CifsExiting;
2694 spin_unlock(&GlobalMid_Lock);
2695
Pavel Shilovsky026e93d2016-11-03 16:47:37 -07002696 cifs_crypto_secmech_release(server);
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05302697 cifs_fscache_release_client_cookie(server);
2698
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05002699 kfree(server->session_key.response);
2700 server->session_key.response = NULL;
2701 server->session_key.len = 0;
Steve Frencha5c3e1c2014-09-16 04:16:19 -05002702
2703 task = xchg(&server->tsk, NULL);
2704 if (task)
Eric W. Biederman72abe3b2019-05-15 12:33:50 -05002705 send_sig(SIGKILL, task, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706}
2707
Jeff Layton63c038c2008-12-01 18:41:46 -05002708static struct TCP_Server_Info *
2709cifs_get_tcp_session(struct smb_vol *volume_info)
2710{
2711 struct TCP_Server_Info *tcp_ses = NULL;
Jeff Layton63c038c2008-12-01 18:41:46 -05002712 int rc;
2713
Joe Perchesf96637b2013-05-04 22:12:25 -05002714 cifs_dbg(FYI, "UNC: %s\n", volume_info->UNC);
Jeff Layton63c038c2008-12-01 18:41:46 -05002715
2716 /* see if we already have a matching tcp_ses */
Jeff Layton9fa114f2012-11-26 11:09:57 -05002717 tcp_ses = cifs_find_tcp_session(volume_info);
Jeff Layton63c038c2008-12-01 18:41:46 -05002718 if (tcp_ses)
2719 return tcp_ses;
2720
2721 tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL);
2722 if (!tcp_ses) {
2723 rc = -ENOMEM;
2724 goto out_err;
2725 }
2726
Jeff Layton23db65f2012-05-15 12:20:51 -04002727 tcp_ses->ops = volume_info->ops;
2728 tcp_ses->vals = volume_info->vals;
Rob Landleyf1d0c992011-01-22 15:44:05 -06002729 cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns));
Jeff Layton63c038c2008-12-01 18:41:46 -05002730 tcp_ses->hostname = extract_hostname(volume_info->UNC);
2731 if (IS_ERR(tcp_ses->hostname)) {
2732 rc = PTR_ERR(tcp_ses->hostname);
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002733 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002734 }
2735
Paulo Alcantara (SUSE)8eecd1c2019-07-16 19:04:50 -03002736 tcp_ses->noblockcnt = volume_info->rootfs;
2737 tcp_ses->noblocksnd = volume_info->noblocksnd || volume_info->rootfs;
Jeff Layton63c038c2008-12-01 18:41:46 -05002738 tcp_ses->noautotune = volume_info->noautotune;
Steve French6a5fa2362010-01-01 01:28:43 +00002739 tcp_ses->tcp_nodelay = volume_info->sockopt_tcp_nodelay;
Long Li8339dd32017-11-07 01:54:55 -07002740 tcp_ses->rdma = volume_info->rdma;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +03002741 tcp_ses->in_flight = 0;
Steve French1b63f182019-09-09 22:57:11 -05002742 tcp_ses->max_in_flight = 0;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +04002743 tcp_ses->credits = 1;
Jeff Layton63c038c2008-12-01 18:41:46 -05002744 init_waitqueue_head(&tcp_ses->response_q);
2745 init_waitqueue_head(&tcp_ses->request_q);
2746 INIT_LIST_HEAD(&tcp_ses->pending_mid_q);
2747 mutex_init(&tcp_ses->srv_mutex);
2748 memcpy(tcp_ses->workstation_RFC1001_name,
2749 volume_info->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
2750 memcpy(tcp_ses->server_RFC1001_name,
2751 volume_info->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -05002752 tcp_ses->session_estab = false;
Jeff Layton63c038c2008-12-01 18:41:46 -05002753 tcp_ses->sequence_number = 0;
Pavel Shilovsky5b964852019-01-18 11:30:26 -08002754 tcp_ses->reconnect_instance = 1;
Steve Frenchfda35942011-01-20 18:06:34 +00002755 tcp_ses->lstrp = jiffies;
Steve French9fe5ff12019-06-24 20:39:04 -05002756 tcp_ses->compress_algorithm = cpu_to_le16(volume_info->compression);
Jeff Layton58fa0152012-05-01 17:41:16 -04002757 spin_lock_init(&tcp_ses->req_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002758 INIT_LIST_HEAD(&tcp_ses->tcp_ses_list);
2759 INIT_LIST_HEAD(&tcp_ses->smb_ses_list);
Jeff Laytonc74093b2011-01-11 07:24:23 -05002760 INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002761 INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server);
2762 mutex_init(&tcp_ses->reconnect_mutex);
Jeff Layton9fa114f2012-11-26 11:09:57 -05002763 memcpy(&tcp_ses->srcaddr, &volume_info->srcaddr,
2764 sizeof(tcp_ses->srcaddr));
2765 memcpy(&tcp_ses->dstaddr, &volume_info->dstaddr,
2766 sizeof(tcp_ses->dstaddr));
Steve Frenchfa70b872016-09-22 00:39:34 -05002767 generate_random_uuid(tcp_ses->client_guid);
Jeff Layton63c038c2008-12-01 18:41:46 -05002768 /*
2769 * at this point we are the only ones with the pointer
2770 * to the struct since the kernel thread not created yet
2771 * no need to spinlock this init of tcpStatus or srv_count
2772 */
2773 tcp_ses->tcpStatus = CifsNew;
2774 ++tcp_ses->srv_count;
2775
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002776 if (volume_info->echo_interval >= SMB_ECHO_INTERVAL_MIN &&
2777 volume_info->echo_interval <= SMB_ECHO_INTERVAL_MAX)
2778 tcp_ses->echo_interval = volume_info->echo_interval * HZ;
2779 else
2780 tcp_ses->echo_interval = SMB_ECHO_INTERVAL_DEFAULT * HZ;
Long Li2f894642017-11-22 17:38:34 -07002781 if (tcp_ses->rdma) {
2782#ifndef CONFIG_CIFS_SMB_DIRECT
2783 cifs_dbg(VFS, "CONFIG_CIFS_SMB_DIRECT is not enabled\n");
2784 rc = -ENOENT;
2785 goto out_err_crypto_release;
2786#endif
2787 tcp_ses->smbd_conn = smbd_get_connection(
2788 tcp_ses, (struct sockaddr *)&volume_info->dstaddr);
2789 if (tcp_ses->smbd_conn) {
2790 cifs_dbg(VFS, "RDMA transport established\n");
2791 rc = 0;
2792 goto smbd_connected;
2793 } else {
2794 rc = -ENOENT;
2795 goto out_err_crypto_release;
2796 }
2797 }
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002798 rc = ip_connect(tcp_ses);
Jeff Layton63c038c2008-12-01 18:41:46 -05002799 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002800 cifs_dbg(VFS, "Error connecting to socket. Aborting operation.\n");
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002801 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002802 }
Long Li2f894642017-11-22 17:38:34 -07002803smbd_connected:
Jeff Layton63c038c2008-12-01 18:41:46 -05002804 /*
2805 * since we're in a cifs function already, we know that
2806 * this will succeed. No need for try_module_get().
2807 */
2808 __module_get(THIS_MODULE);
Al Viro7c97c202011-06-21 08:51:28 -04002809 tcp_ses->tsk = kthread_run(cifs_demultiplex_thread,
Jeff Layton63c038c2008-12-01 18:41:46 -05002810 tcp_ses, "cifsd");
2811 if (IS_ERR(tcp_ses->tsk)) {
2812 rc = PTR_ERR(tcp_ses->tsk);
Joe Perchesf96637b2013-05-04 22:12:25 -05002813 cifs_dbg(VFS, "error %d create cifsd thread\n", rc);
Jeff Layton63c038c2008-12-01 18:41:46 -05002814 module_put(THIS_MODULE);
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002815 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002816 }
Steve French563317e2019-09-08 23:22:02 -05002817 tcp_ses->min_offload = volume_info->min_offload;
Steve Frenchfd88ce92011-04-12 01:01:14 +00002818 tcp_ses->tcpStatus = CifsNeedNegotiate;
Jeff Layton63c038c2008-12-01 18:41:46 -05002819
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02002820 tcp_ses->nr_targets = 1;
Steve French4f5c10f2019-09-03 21:18:49 -05002821 tcp_ses->ignore_signature = volume_info->ignore_signature;
Jeff Layton63c038c2008-12-01 18:41:46 -05002822 /* thread spawned, put it on the list */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302823 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002824 list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302825 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002826
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05302827 cifs_fscache_get_client_cookie(tcp_ses);
2828
Jeff Laytonc74093b2011-01-11 07:24:23 -05002829 /* queue echo request delayed work */
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002830 queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval);
Jeff Laytonc74093b2011-01-11 07:24:23 -05002831
Jeff Layton63c038c2008-12-01 18:41:46 -05002832 return tcp_ses;
2833
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002834out_err_crypto_release:
Pavel Shilovsky026e93d2016-11-03 16:47:37 -07002835 cifs_crypto_secmech_release(tcp_ses);
Shirish Pargaonkard2b91522010-10-21 14:25:08 -05002836
Rob Landleyf1d0c992011-01-22 15:44:05 -06002837 put_net(cifs_net_ns(tcp_ses));
2838
Jeff Layton63c038c2008-12-01 18:41:46 -05002839out_err:
2840 if (tcp_ses) {
Steve French8347a5c2009-10-06 18:31:29 +00002841 if (!IS_ERR(tcp_ses->hostname))
2842 kfree(tcp_ses->hostname);
Jeff Layton63c038c2008-12-01 18:41:46 -05002843 if (tcp_ses->ssocket)
2844 sock_release(tcp_ses->ssocket);
2845 kfree(tcp_ses);
2846 }
2847 return ERR_PTR(rc);
2848}
2849
Steve French96daf2b2011-05-27 04:34:02 +00002850static int match_session(struct cifs_ses *ses, struct smb_vol *vol)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002851{
Jeff Layton3f618222013-06-12 19:52:14 -05002852 if (vol->sectype != Unspecified &&
2853 vol->sectype != ses->sectype)
2854 return 0;
2855
2856 switch (ses->sectype) {
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002857 case Kerberos:
Eric W. Biederman64ed39d2013-02-06 02:30:39 -08002858 if (!uid_eq(vol->cred_uid, ses->cred_uid))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002859 return 0;
2860 break;
2861 default:
Jeff Layton04febab2012-01-17 16:09:15 -05002862 /* NULL username means anonymous session */
2863 if (ses->user_name == NULL) {
2864 if (!vol->nullauth)
2865 return 0;
2866 break;
2867 }
2868
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002869 /* anything else takes username/password */
Jeff Layton04febab2012-01-17 16:09:15 -05002870 if (strncmp(ses->user_name,
2871 vol->username ? vol->username : "",
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002872 CIFS_MAX_USERNAME_LEN))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002873 return 0;
Jeff Layton08b37d52014-05-23 06:53:10 -04002874 if ((vol->username && strlen(vol->username) != 0) &&
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002875 ses->password != NULL &&
2876 strncmp(ses->password,
2877 vol->password ? vol->password : "",
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002878 CIFS_MAX_PASSWORD_LEN))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002879 return 0;
2880 }
2881 return 1;
2882}
2883
Aurelien Aptelb327a712018-01-24 13:46:10 +01002884/**
2885 * cifs_setup_ipc - helper to setup the IPC tcon for the session
2886 *
2887 * A new IPC connection is made and stored in the session
2888 * tcon_ipc. The IPC tcon has the same lifetime as the session.
2889 */
2890static int
2891cifs_setup_ipc(struct cifs_ses *ses, struct smb_vol *volume_info)
2892{
2893 int rc = 0, xid;
2894 struct cifs_tcon *tcon;
2895 struct nls_table *nls_codepage;
2896 char unc[SERVER_NAME_LENGTH + sizeof("//x/IPC$")] = {0};
2897 bool seal = false;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002898 struct TCP_Server_Info *server = ses->server;
Aurelien Aptelb327a712018-01-24 13:46:10 +01002899
2900 /*
2901 * If the mount request that resulted in the creation of the
2902 * session requires encryption, force IPC to be encrypted too.
2903 */
2904 if (volume_info->seal) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002905 if (server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION)
Aurelien Aptelb327a712018-01-24 13:46:10 +01002906 seal = true;
2907 else {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002908 cifs_server_dbg(VFS,
Aurelien Aptelb327a712018-01-24 13:46:10 +01002909 "IPC: server doesn't support encryption\n");
2910 return -EOPNOTSUPP;
2911 }
2912 }
2913
2914 tcon = tconInfoAlloc();
2915 if (tcon == NULL)
2916 return -ENOMEM;
2917
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002918 scnprintf(unc, sizeof(unc), "\\\\%s\\IPC$", server->hostname);
Aurelien Aptelb327a712018-01-24 13:46:10 +01002919
2920 /* cannot fail */
2921 nls_codepage = load_nls_default();
2922
2923 xid = get_xid();
2924 tcon->ses = ses;
2925 tcon->ipc = true;
2926 tcon->seal = seal;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002927 rc = server->ops->tree_connect(xid, ses, unc, tcon, nls_codepage);
Aurelien Aptelb327a712018-01-24 13:46:10 +01002928 free_xid(xid);
2929
2930 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10002931 cifs_server_dbg(VFS, "failed to connect to IPC (rc=%d)\n", rc);
Aurelien Aptelb327a712018-01-24 13:46:10 +01002932 tconInfoFree(tcon);
2933 goto out;
2934 }
2935
2936 cifs_dbg(FYI, "IPC tcon rc = %d ipc tid = %d\n", rc, tcon->tid);
2937
2938 ses->tcon_ipc = tcon;
2939out:
2940 unload_nls(nls_codepage);
2941 return rc;
2942}
2943
2944/**
2945 * cifs_free_ipc - helper to release the session IPC tcon
2946 *
2947 * Needs to be called everytime a session is destroyed
2948 */
2949static int
2950cifs_free_ipc(struct cifs_ses *ses)
2951{
2952 int rc = 0, xid;
2953 struct cifs_tcon *tcon = ses->tcon_ipc;
2954
2955 if (tcon == NULL)
2956 return 0;
2957
2958 if (ses->server->ops->tree_disconnect) {
2959 xid = get_xid();
2960 rc = ses->server->ops->tree_disconnect(xid, tcon);
2961 free_xid(xid);
2962 }
2963
2964 if (rc)
2965 cifs_dbg(FYI, "failed to disconnect IPC tcon (rc=%d)\n", rc);
2966
2967 tconInfoFree(tcon);
2968 ses->tcon_ipc = NULL;
2969 return rc;
2970}
2971
Steve French96daf2b2011-05-27 04:34:02 +00002972static struct cifs_ses *
Jeff Layton4ff67b72010-07-06 20:43:02 -04002973cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb_vol *vol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974{
Steve French96daf2b2011-05-27 04:34:02 +00002975 struct cifs_ses *ses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302977 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton4ff67b72010-07-06 20:43:02 -04002978 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002979 if (ses->status == CifsExiting)
2980 continue;
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002981 if (!match_session(ses, vol))
2982 continue;
Jeff Layton14fbf502008-11-14 13:53:46 -05002983 ++ses->ses_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302984 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002985 return ses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302987 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 return NULL;
2989}
2990
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03002991void cifs_put_smb_ses(struct cifs_ses *ses)
Jeff Layton14fbf502008-11-14 13:53:46 -05002992{
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002993 unsigned int rc, xid;
Jeff Layton14fbf502008-11-14 13:53:46 -05002994 struct TCP_Server_Info *server = ses->server;
2995
Joe Perchesf96637b2013-05-04 22:12:25 -05002996 cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002997
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302998 spin_lock(&cifs_tcp_ses_lock);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002999 if (ses->status == CifsExiting) {
3000 spin_unlock(&cifs_tcp_ses_lock);
3001 return;
3002 }
Jeff Layton14fbf502008-11-14 13:53:46 -05003003 if (--ses->ses_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303004 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05003005 return;
3006 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05003007 if (ses->status == CifsGood)
3008 ses->status = CifsExiting;
3009 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05003010
Aurelien Aptelb327a712018-01-24 13:46:10 +01003011 cifs_free_ipc(ses);
3012
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05003013 if (ses->status == CifsExiting && server->ops->logoff) {
3014 xid = get_xid();
3015 rc = server->ops->logoff(xid, ses);
3016 if (rc)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10003017 cifs_server_dbg(VFS, "%s: Session Logoff failure rc=%d\n",
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05003018 __func__, rc);
3019 _free_xid(xid);
3020 }
3021
3022 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05003023 list_del_init(&ses->smb_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303024 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05003025
Jeff Layton14fbf502008-11-14 13:53:46 -05003026 sesInfoFree(ses);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07003027 cifs_put_tcp_session(server, 0);
Jeff Layton14fbf502008-11-14 13:53:46 -05003028}
3029
Jeff Layton8a8798a2012-01-17 16:09:15 -05003030#ifdef CONFIG_KEYS
3031
Chen Gang057d6332013-07-19 09:01:36 +08003032/* strlen("cifs:a:") + CIFS_MAX_DOMAINNAME_LEN + 1 */
3033#define CIFSCREDS_DESC_SIZE (7 + CIFS_MAX_DOMAINNAME_LEN + 1)
Jeff Layton8a8798a2012-01-17 16:09:15 -05003034
3035/* Populate username and pw fields from keyring if possible */
3036static int
3037cifs_set_cifscreds(struct smb_vol *vol, struct cifs_ses *ses)
3038{
3039 int rc = 0;
Ronnie Sahlbergf2aee322019-08-22 08:09:50 +10003040 int is_domain = 0;
David Howells146aa8b2015-10-21 14:04:48 +01003041 const char *delim, *payload;
3042 char *desc;
Jeff Layton8a8798a2012-01-17 16:09:15 -05003043 ssize_t len;
3044 struct key *key;
3045 struct TCP_Server_Info *server = ses->server;
3046 struct sockaddr_in *sa;
3047 struct sockaddr_in6 *sa6;
David Howells146aa8b2015-10-21 14:04:48 +01003048 const struct user_key_payload *upayload;
Jeff Layton8a8798a2012-01-17 16:09:15 -05003049
3050 desc = kmalloc(CIFSCREDS_DESC_SIZE, GFP_KERNEL);
3051 if (!desc)
3052 return -ENOMEM;
3053
3054 /* try to find an address key first */
3055 switch (server->dstaddr.ss_family) {
3056 case AF_INET:
3057 sa = (struct sockaddr_in *)&server->dstaddr;
3058 sprintf(desc, "cifs:a:%pI4", &sa->sin_addr.s_addr);
3059 break;
3060 case AF_INET6:
3061 sa6 = (struct sockaddr_in6 *)&server->dstaddr;
3062 sprintf(desc, "cifs:a:%pI6c", &sa6->sin6_addr.s6_addr);
3063 break;
3064 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05003065 cifs_dbg(FYI, "Bad ss_family (%hu)\n",
3066 server->dstaddr.ss_family);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003067 rc = -EINVAL;
3068 goto out_err;
3069 }
3070
Joe Perchesf96637b2013-05-04 22:12:25 -05003071 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
Linus Torvalds028db3e2019-07-10 18:43:43 -07003072 key = request_key(&key_type_logon, desc, "");
Jeff Layton8a8798a2012-01-17 16:09:15 -05003073 if (IS_ERR(key)) {
3074 if (!ses->domainName) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003075 cifs_dbg(FYI, "domainName is NULL\n");
Jeff Layton8a8798a2012-01-17 16:09:15 -05003076 rc = PTR_ERR(key);
3077 goto out_err;
3078 }
3079
3080 /* didn't work, try to find a domain key */
3081 sprintf(desc, "cifs:d:%s", ses->domainName);
Joe Perchesf96637b2013-05-04 22:12:25 -05003082 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
Linus Torvalds028db3e2019-07-10 18:43:43 -07003083 key = request_key(&key_type_logon, desc, "");
Jeff Layton8a8798a2012-01-17 16:09:15 -05003084 if (IS_ERR(key)) {
3085 rc = PTR_ERR(key);
3086 goto out_err;
3087 }
Ronnie Sahlbergf2aee322019-08-22 08:09:50 +10003088 is_domain = 1;
Jeff Layton8a8798a2012-01-17 16:09:15 -05003089 }
3090
3091 down_read(&key->sem);
David Howells0837e492017-03-01 15:11:23 +00003092 upayload = user_key_payload_locked(key);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003093 if (IS_ERR_OR_NULL(upayload)) {
Jeff Layton4edc53c2012-02-07 06:30:51 -05003094 rc = upayload ? PTR_ERR(upayload) : -EINVAL;
Jeff Layton8a8798a2012-01-17 16:09:15 -05003095 goto out_key_put;
3096 }
3097
3098 /* find first : in payload */
David Howells146aa8b2015-10-21 14:04:48 +01003099 payload = upayload->data;
Jeff Layton8a8798a2012-01-17 16:09:15 -05003100 delim = strnchr(payload, upayload->datalen, ':');
Joe Perchesf96637b2013-05-04 22:12:25 -05003101 cifs_dbg(FYI, "payload=%s\n", payload);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003102 if (!delim) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003103 cifs_dbg(FYI, "Unable to find ':' in payload (datalen=%d)\n",
3104 upayload->datalen);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003105 rc = -EINVAL;
3106 goto out_key_put;
3107 }
3108
3109 len = delim - payload;
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04003110 if (len > CIFS_MAX_USERNAME_LEN || len <= 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003111 cifs_dbg(FYI, "Bad value from username search (len=%zd)\n",
3112 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003113 rc = -EINVAL;
3114 goto out_key_put;
3115 }
3116
3117 vol->username = kstrndup(payload, len, GFP_KERNEL);
3118 if (!vol->username) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003119 cifs_dbg(FYI, "Unable to allocate %zd bytes for username\n",
3120 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003121 rc = -ENOMEM;
3122 goto out_key_put;
3123 }
Joe Perchesf96637b2013-05-04 22:12:25 -05003124 cifs_dbg(FYI, "%s: username=%s\n", __func__, vol->username);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003125
3126 len = key->datalen - (len + 1);
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04003127 if (len > CIFS_MAX_PASSWORD_LEN || len <= 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003128 cifs_dbg(FYI, "Bad len for password search (len=%zd)\n", len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003129 rc = -EINVAL;
3130 kfree(vol->username);
3131 vol->username = NULL;
3132 goto out_key_put;
3133 }
3134
3135 ++delim;
3136 vol->password = kstrndup(delim, len, GFP_KERNEL);
3137 if (!vol->password) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003138 cifs_dbg(FYI, "Unable to allocate %zd bytes for password\n",
3139 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003140 rc = -ENOMEM;
3141 kfree(vol->username);
3142 vol->username = NULL;
3143 goto out_key_put;
3144 }
3145
Ronnie Sahlbergf2aee322019-08-22 08:09:50 +10003146 /*
3147 * If we have a domain key then we must set the domainName in the
3148 * for the request.
3149 */
3150 if (is_domain && ses->domainName) {
3151 vol->domainname = kstrndup(ses->domainName,
3152 strlen(ses->domainName),
3153 GFP_KERNEL);
3154 if (!vol->domainname) {
3155 cifs_dbg(FYI, "Unable to allocate %zd bytes for "
3156 "domain\n", len);
3157 rc = -ENOMEM;
3158 kfree(vol->username);
3159 vol->username = NULL;
Dan Carpenter478228e2019-08-27 13:59:17 +03003160 kzfree(vol->password);
Ronnie Sahlbergf2aee322019-08-22 08:09:50 +10003161 vol->password = NULL;
3162 goto out_key_put;
3163 }
3164 }
3165
Jeff Layton8a8798a2012-01-17 16:09:15 -05003166out_key_put:
3167 up_read(&key->sem);
3168 key_put(key);
3169out_err:
3170 kfree(desc);
Joe Perchesf96637b2013-05-04 22:12:25 -05003171 cifs_dbg(FYI, "%s: returning %d\n", __func__, rc);
Jeff Layton8a8798a2012-01-17 16:09:15 -05003172 return rc;
3173}
3174#else /* ! CONFIG_KEYS */
3175static inline int
3176cifs_set_cifscreds(struct smb_vol *vol __attribute__((unused)),
3177 struct cifs_ses *ses __attribute__((unused)))
3178{
3179 return -ENOSYS;
3180}
3181#endif /* CONFIG_KEYS */
3182
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01003183/**
3184 * cifs_get_smb_ses - get a session matching @volume_info data from @server
3185 *
3186 * This function assumes it is being called from cifs_mount() where we
3187 * already got a server reference (server refcount +1). See
3188 * cifs_get_tcon() for refcount explanations.
3189 */
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03003190struct cifs_ses *
Jeff Layton36988c72010-04-24 07:57:43 -04003191cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb_vol *volume_info)
3192{
Pavel Shilovsky286170a2012-05-25 10:43:58 +04003193 int rc = -ENOMEM;
3194 unsigned int xid;
Steve French96daf2b2011-05-27 04:34:02 +00003195 struct cifs_ses *ses;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003196 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
3197 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
Jeff Layton36988c72010-04-24 07:57:43 -04003198
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003199 xid = get_xid();
Jeff Layton36988c72010-04-24 07:57:43 -04003200
Jeff Layton4ff67b72010-07-06 20:43:02 -04003201 ses = cifs_find_smb_ses(server, volume_info);
Jeff Layton36988c72010-04-24 07:57:43 -04003202 if (ses) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003203 cifs_dbg(FYI, "Existing smb sess found (status=%d)\n",
3204 ses->status);
Jeff Layton36988c72010-04-24 07:57:43 -04003205
Jeff Layton36988c72010-04-24 07:57:43 -04003206 mutex_lock(&ses->session_mutex);
Jeff Layton198b5682010-04-24 07:57:48 -04003207 rc = cifs_negotiate_protocol(xid, ses);
3208 if (rc) {
3209 mutex_unlock(&ses->session_mutex);
3210 /* problem -- put our ses reference */
3211 cifs_put_smb_ses(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003212 free_xid(xid);
Jeff Layton198b5682010-04-24 07:57:48 -04003213 return ERR_PTR(rc);
3214 }
Jeff Layton36988c72010-04-24 07:57:43 -04003215 if (ses->need_reconnect) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003216 cifs_dbg(FYI, "Session needs reconnect\n");
Jeff Layton36988c72010-04-24 07:57:43 -04003217 rc = cifs_setup_session(xid, ses,
3218 volume_info->local_nls);
3219 if (rc) {
3220 mutex_unlock(&ses->session_mutex);
3221 /* problem -- put our reference */
3222 cifs_put_smb_ses(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003223 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04003224 return ERR_PTR(rc);
3225 }
3226 }
3227 mutex_unlock(&ses->session_mutex);
Jeff Layton460cf342010-09-14 11:38:24 -04003228
3229 /* existing SMB ses has a server reference already */
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07003230 cifs_put_tcp_session(server, 0);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003231 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04003232 return ses;
3233 }
3234
Joe Perchesf96637b2013-05-04 22:12:25 -05003235 cifs_dbg(FYI, "Existing smb sess not found\n");
Jeff Layton36988c72010-04-24 07:57:43 -04003236 ses = sesInfoAlloc();
3237 if (ses == NULL)
3238 goto get_ses_fail;
3239
3240 /* new SMB session uses our server ref */
3241 ses->server = server;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003242 if (server->dstaddr.ss_family == AF_INET6)
3243 sprintf(ses->serverName, "%pI6", &addr6->sin6_addr);
Jeff Layton36988c72010-04-24 07:57:43 -04003244 else
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003245 sprintf(ses->serverName, "%pI4", &addr->sin_addr);
Jeff Layton36988c72010-04-24 07:57:43 -04003246
Steve French8727c8a2011-02-25 01:11:56 -06003247 if (volume_info->username) {
3248 ses->user_name = kstrdup(volume_info->username, GFP_KERNEL);
3249 if (!ses->user_name)
3250 goto get_ses_fail;
3251 }
Jeff Layton36988c72010-04-24 07:57:43 -04003252
3253 /* volume_info->password freed at unmount */
3254 if (volume_info->password) {
3255 ses->password = kstrdup(volume_info->password, GFP_KERNEL);
3256 if (!ses->password)
3257 goto get_ses_fail;
3258 }
3259 if (volume_info->domainname) {
Shirish Pargaonkard3686d52010-10-28 09:53:07 -05003260 ses->domainName = kstrdup(volume_info->domainname, GFP_KERNEL);
3261 if (!ses->domainName)
3262 goto get_ses_fail;
Jeff Layton36988c72010-04-24 07:57:43 -04003263 }
Germano Percossi39566442016-12-15 12:31:18 +05303264 if (volume_info->domainauto)
3265 ses->domainAuto = volume_info->domainauto;
Jeff Layton3e4b3e12010-07-19 18:00:17 -04003266 ses->cred_uid = volume_info->cred_uid;
Jeff Layton36988c72010-04-24 07:57:43 -04003267 ses->linux_uid = volume_info->linux_uid;
Steve Frenchd9b94202011-04-12 01:24:57 +00003268
Jeff Layton28e11bd2013-05-26 07:01:00 -04003269 ses->sectype = volume_info->sectype;
3270 ses->sign = volume_info->sign;
Jeff Layton36988c72010-04-24 07:57:43 -04003271 mutex_lock(&ses->session_mutex);
Jeff Layton198b5682010-04-24 07:57:48 -04003272 rc = cifs_negotiate_protocol(xid, ses);
3273 if (!rc)
3274 rc = cifs_setup_session(xid, ses, volume_info->local_nls);
Jeff Layton36988c72010-04-24 07:57:43 -04003275 mutex_unlock(&ses->session_mutex);
Steve Frenchc8e56f12010-09-08 21:10:58 +00003276 if (rc)
Jeff Layton36988c72010-04-24 07:57:43 -04003277 goto get_ses_fail;
3278
3279 /* success, put it on the list */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303280 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton36988c72010-04-24 07:57:43 -04003281 list_add(&ses->smb_ses_list, &server->smb_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303282 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton36988c72010-04-24 07:57:43 -04003283
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003284 free_xid(xid);
Aurelien Aptelb327a712018-01-24 13:46:10 +01003285
3286 cifs_setup_ipc(ses, volume_info);
3287
Jeff Layton36988c72010-04-24 07:57:43 -04003288 return ses;
3289
3290get_ses_fail:
3291 sesInfoFree(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003292 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04003293 return ERR_PTR(rc);
3294}
3295
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08003296static int match_tcon(struct cifs_tcon *tcon, struct smb_vol *volume_info)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00003297{
3298 if (tcon->tidStatus == CifsExiting)
3299 return 0;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08003300 if (strncmp(tcon->treeName, volume_info->UNC, MAX_TREE_SIZE))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00003301 return 0;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08003302 if (tcon->seal != volume_info->seal)
3303 return 0;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08003304 if (tcon->snapshot_time != volume_info->snapshot_time)
3305 return 0;
Steve Frenchca567eb2019-03-29 16:31:07 -05003306 if (tcon->handle_timeout != volume_info->handle_timeout)
3307 return 0;
Steve French3e7a02d2019-09-11 21:46:20 -05003308 if (tcon->no_lease != volume_info->no_lease)
3309 return 0;
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00003310 return 1;
3311}
3312
Steve French96daf2b2011-05-27 04:34:02 +00003313static struct cifs_tcon *
Steve French8b217fe2016-11-11 22:36:20 -06003314cifs_find_tcon(struct cifs_ses *ses, struct smb_vol *volume_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315{
3316 struct list_head *tmp;
Steve French96daf2b2011-05-27 04:34:02 +00003317 struct cifs_tcon *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303319 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05003320 list_for_each(tmp, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +00003321 tcon = list_entry(tmp, struct cifs_tcon, tcon_list);
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08003322 if (!match_tcon(tcon, volume_info))
Jeff Laytonf1987b42008-11-15 11:12:47 -05003323 continue;
Jeff Laytonf1987b42008-11-15 11:12:47 -05003324 ++tcon->tc_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303325 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 return tcon;
3327 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303328 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 return NULL;
3330}
3331
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07003332void
Steve French96daf2b2011-05-27 04:34:02 +00003333cifs_put_tcon(struct cifs_tcon *tcon)
Jeff Laytonf1987b42008-11-15 11:12:47 -05003334{
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003335 unsigned int xid;
Aurelien Aptelb327a712018-01-24 13:46:10 +01003336 struct cifs_ses *ses;
Jeff Laytonf1987b42008-11-15 11:12:47 -05003337
Aurelien Aptelb327a712018-01-24 13:46:10 +01003338 /*
3339 * IPC tcon share the lifetime of their session and are
3340 * destroyed in the session put function
3341 */
3342 if (tcon == NULL || tcon->ipc)
3343 return;
3344
3345 ses = tcon->ses;
Joe Perchesf96637b2013-05-04 22:12:25 -05003346 cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303347 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05003348 if (--tcon->tc_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303349 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05003350 return;
3351 }
3352
3353 list_del_init(&tcon->tcon_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303354 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05003355
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003356 xid = get_xid();
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003357 if (ses->server->ops->tree_disconnect)
3358 ses->server->ops->tree_disconnect(xid, tcon);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003359 _free_xid(xid);
Jeff Laytonf1987b42008-11-15 11:12:47 -05003360
Suresh Jayaramand03382c2010-07-05 18:12:27 +05303361 cifs_fscache_release_super_cookie(tcon);
Steve French9f841592010-07-23 20:37:53 +00003362 tconInfoFree(tcon);
Jeff Laytonf1987b42008-11-15 11:12:47 -05003363 cifs_put_smb_ses(ses);
3364}
3365
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01003366/**
3367 * cifs_get_tcon - get a tcon matching @volume_info data from @ses
3368 *
3369 * - tcon refcount is the number of mount points using the tcon.
3370 * - ses refcount is the number of tcon using the session.
3371 *
3372 * 1. This function assumes it is being called from cifs_mount() where
3373 * we already got a session reference (ses refcount +1).
3374 *
3375 * 2. Since we're in the context of adding a mount point, the end
3376 * result should be either:
3377 *
3378 * a) a new tcon already allocated with refcount=1 (1 mount point) and
3379 * its session refcount incremented (1 new tcon). This +1 was
3380 * already done in (1).
3381 *
3382 * b) an existing tcon with refcount+1 (add a mount point to it) and
3383 * identical ses refcount (no new tcon). Because of (1) we need to
3384 * decrement the ses refcount.
3385 */
Steve French96daf2b2011-05-27 04:34:02 +00003386static struct cifs_tcon *
3387cifs_get_tcon(struct cifs_ses *ses, struct smb_vol *volume_info)
Jeff Laytond00c28d2010-04-24 07:57:44 -04003388{
3389 int rc, xid;
Steve French96daf2b2011-05-27 04:34:02 +00003390 struct cifs_tcon *tcon;
Jeff Laytond00c28d2010-04-24 07:57:44 -04003391
Steve French8b217fe2016-11-11 22:36:20 -06003392 tcon = cifs_find_tcon(ses, volume_info);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003393 if (tcon) {
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01003394 /*
3395 * tcon has refcount already incremented but we need to
3396 * decrement extra ses reference gotten by caller (case b)
3397 */
Joe Perchesf96637b2013-05-04 22:12:25 -05003398 cifs_dbg(FYI, "Found match on UNC path\n");
Jeff Laytond00c28d2010-04-24 07:57:44 -04003399 cifs_put_smb_ses(ses);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003400 return tcon;
3401 }
3402
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003403 if (!ses->server->ops->tree_connect) {
3404 rc = -ENOSYS;
3405 goto out_fail;
3406 }
3407
Jeff Laytond00c28d2010-04-24 07:57:44 -04003408 tcon = tconInfoAlloc();
3409 if (tcon == NULL) {
3410 rc = -ENOMEM;
3411 goto out_fail;
3412 }
3413
Steve French8b217fe2016-11-11 22:36:20 -06003414 if (volume_info->snapshot_time) {
Steve French8b217fe2016-11-11 22:36:20 -06003415 if (ses->server->vals->protocol_id == 0) {
3416 cifs_dbg(VFS,
3417 "Use SMB2 or later for snapshot mount option\n");
3418 rc = -EOPNOTSUPP;
3419 goto out_fail;
3420 } else
3421 tcon->snapshot_time = volume_info->snapshot_time;
Steve French8b217fe2016-11-11 22:36:20 -06003422 }
3423
Steve Frenchca567eb2019-03-29 16:31:07 -05003424 if (volume_info->handle_timeout) {
3425 if (ses->server->vals->protocol_id == 0) {
3426 cifs_dbg(VFS,
3427 "Use SMB2.1 or later for handle timeout option\n");
3428 rc = -EOPNOTSUPP;
3429 goto out_fail;
3430 } else
3431 tcon->handle_timeout = volume_info->handle_timeout;
3432 }
3433
Jeff Laytond00c28d2010-04-24 07:57:44 -04003434 tcon->ses = ses;
3435 if (volume_info->password) {
3436 tcon->password = kstrdup(volume_info->password, GFP_KERNEL);
3437 if (!tcon->password) {
3438 rc = -ENOMEM;
3439 goto out_fail;
3440 }
3441 }
3442
Steve French23657ad2018-04-22 15:14:58 -05003443 if (volume_info->seal) {
3444 if (ses->server->vals->protocol_id == 0) {
3445 cifs_dbg(VFS,
3446 "SMB3 or later required for encryption\n");
3447 rc = -EOPNOTSUPP;
3448 goto out_fail;
3449 } else if (tcon->ses->server->capabilities &
3450 SMB2_GLOBAL_CAP_ENCRYPTION)
3451 tcon->seal = true;
3452 else {
3453 cifs_dbg(VFS, "Encryption is not supported on share\n");
3454 rc = -EOPNOTSUPP;
3455 goto out_fail;
3456 }
3457 }
3458
Steve French8505c8b2018-06-18 14:01:59 -05003459 if (volume_info->linux_ext) {
3460 if (ses->server->posix_ext_supported) {
Steve Frenchb3266142018-05-20 23:41:10 -05003461 tcon->posix_extensions = true;
Steve French2fbb5642018-06-12 12:11:31 -05003462 printk_once(KERN_WARNING
3463 "SMB3.11 POSIX Extensions are experimental\n");
Steve French8505c8b2018-06-18 14:01:59 -05003464 } else {
3465 cifs_dbg(VFS, "Server does not support mounting with posix SMB3.11 extensions.\n");
3466 rc = -EOPNOTSUPP;
3467 goto out_fail;
Steve French2fbb5642018-06-12 12:11:31 -05003468 }
Steve Frenchb3266142018-05-20 23:41:10 -05003469 }
Steve Frenchb3266142018-05-20 23:41:10 -05003470
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003471 /*
3472 * BB Do we need to wrap session_mutex around this TCon call and Unix
3473 * SetFS as we do on SessSetup and reconnect?
3474 */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003475 xid = get_xid();
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003476 rc = ses->server->ops->tree_connect(xid, ses, volume_info->UNC, tcon,
3477 volume_info->local_nls);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003478 free_xid(xid);
Joe Perchesf96637b2013-05-04 22:12:25 -05003479 cifs_dbg(FYI, "Tcon rc = %d\n", rc);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003480 if (rc)
3481 goto out_fail;
3482
Steve Frenchb618f002015-11-03 09:15:03 -06003483 tcon->use_persistent = false;
3484 /* check if SMB2 or later, CIFS does not support persistent handles */
3485 if (volume_info->persistent) {
3486 if (ses->server->vals->protocol_id == 0) {
3487 cifs_dbg(VFS,
3488 "SMB3 or later required for persistent handles\n");
3489 rc = -EOPNOTSUPP;
3490 goto out_fail;
3491 } else if (ses->server->capabilities &
3492 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
3493 tcon->use_persistent = true;
3494 else /* persistent handles requested but not supported */ {
3495 cifs_dbg(VFS,
3496 "Persistent handles not supported on share\n");
3497 rc = -EOPNOTSUPP;
3498 goto out_fail;
3499 }
3500 } else if ((tcon->capabilities & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY)
3501 && (ses->server->capabilities & SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
3502 && (volume_info->nopersistent == false)) {
3503 cifs_dbg(FYI, "enabling persistent handles\n");
3504 tcon->use_persistent = true;
Steve French592fafe2015-11-03 10:08:53 -06003505 } else if (volume_info->resilient) {
3506 if (ses->server->vals->protocol_id == 0) {
3507 cifs_dbg(VFS,
3508 "SMB2.1 or later required for resilient handles\n");
3509 rc = -EOPNOTSUPP;
3510 goto out_fail;
3511 }
3512 tcon->use_resilient = true;
Steve Frenchb618f002015-11-03 09:15:03 -06003513 }
3514
Steve Frenchcae53f72019-09-03 17:49:46 -05003515 /* If the user really knows what they are doing they can override */
3516 if (tcon->share_flags & SMB2_SHAREFLAG_NO_CACHING) {
3517 if (volume_info->cache_ro)
3518 cifs_dbg(VFS, "cache=ro requested on mount but NO_CACHING flag set on share\n");
3519 else if (volume_info->cache_rw)
3520 cifs_dbg(VFS, "cache=singleclient requested on mount but NO_CACHING flag set on share\n");
3521 }
3522
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003523 /*
3524 * We can have only one retry value for a connection to a share so for
3525 * resources mounted more than once to the same server share the last
3526 * value passed in for the retry flag is used.
3527 */
Jeff Laytond00c28d2010-04-24 07:57:44 -04003528 tcon->retry = volume_info->retry;
3529 tcon->nocase = volume_info->nocase;
Steve French3d4ef9a2018-04-25 22:19:09 -05003530 tcon->nohandlecache = volume_info->nohandlecache;
Jeff Laytond00c28d2010-04-24 07:57:44 -04003531 tcon->local_lease = volume_info->local_lease;
Steve French3e7a02d2019-09-11 21:46:20 -05003532 tcon->no_lease = volume_info->no_lease;
Pavel Shilovsky233839b2012-09-19 06:22:45 -07003533 INIT_LIST_HEAD(&tcon->pending_opens);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003534
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303535 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003536 list_add(&tcon->tcon_list, &ses->tcon_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303537 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003538
Suresh Jayaramand03382c2010-07-05 18:12:27 +05303539 cifs_fscache_get_super_cookie(tcon);
3540
Jeff Laytond00c28d2010-04-24 07:57:44 -04003541 return tcon;
3542
3543out_fail:
3544 tconInfoFree(tcon);
3545 return ERR_PTR(rc);
3546}
3547
Jeff Layton9d002df2010-10-06 19:51:11 -04003548void
3549cifs_put_tlink(struct tcon_link *tlink)
3550{
3551 if (!tlink || IS_ERR(tlink))
3552 return;
3553
3554 if (!atomic_dec_and_test(&tlink->tl_count) ||
3555 test_bit(TCON_LINK_IN_TREE, &tlink->tl_flags)) {
3556 tlink->tl_time = jiffies;
3557 return;
3558 }
3559
3560 if (!IS_ERR(tlink_tcon(tlink)))
3561 cifs_put_tcon(tlink_tcon(tlink));
3562 kfree(tlink);
3563 return;
3564}
Jeff Laytond00c28d2010-04-24 07:57:44 -04003565
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003566static int
3567compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data)
3568{
3569 struct cifs_sb_info *old = CIFS_SB(sb);
3570 struct cifs_sb_info *new = mnt_data->cifs_sb;
Paulo Alcantara (SUSE)29fbeb72019-06-18 16:16:02 -03003571 unsigned int oldflags = old->mnt_cifs_flags & CIFS_MOUNT_MASK;
3572 unsigned int newflags = new->mnt_cifs_flags & CIFS_MOUNT_MASK;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003573
3574 if ((sb->s_flags & CIFS_MS_MASK) != (mnt_data->flags & CIFS_MS_MASK))
3575 return 0;
3576
Paulo Alcantara (SUSE)29fbeb72019-06-18 16:16:02 -03003577 if (old->mnt_cifs_serverino_autodisabled)
3578 newflags &= ~CIFS_MOUNT_SERVER_INUM;
3579
3580 if (oldflags != newflags)
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003581 return 0;
3582
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003583 /*
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003584 * We want to share sb only if we don't specify an r/wsize or
3585 * specified r/wsize is greater than or equal to existing one.
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003586 */
3587 if (new->wsize && new->wsize < old->wsize)
3588 return 0;
3589
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003590 if (new->rsize && new->rsize < old->rsize)
3591 return 0;
3592
Eric W. Biederman1f682332013-02-06 01:20:20 -08003593 if (!uid_eq(old->mnt_uid, new->mnt_uid) || !gid_eq(old->mnt_gid, new->mnt_gid))
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003594 return 0;
3595
3596 if (old->mnt_file_mode != new->mnt_file_mode ||
3597 old->mnt_dir_mode != new->mnt_dir_mode)
3598 return 0;
3599
3600 if (strcmp(old->local_nls->charset, new->local_nls->charset))
3601 return 0;
3602
3603 if (old->actimeo != new->actimeo)
3604 return 0;
3605
3606 return 1;
3607}
3608
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003609static int
3610match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data)
3611{
3612 struct cifs_sb_info *old = CIFS_SB(sb);
3613 struct cifs_sb_info *new = mnt_data->cifs_sb;
Sachin Prabhucd8c4292017-04-26 14:05:46 +01003614 bool old_set = old->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH;
3615 bool new_set = new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH;
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003616
Sachin Prabhucd8c4292017-04-26 14:05:46 +01003617 if (old_set && new_set && !strcmp(new->prepath, old->prepath))
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003618 return 1;
Sachin Prabhucd8c4292017-04-26 14:05:46 +01003619 else if (!old_set && !new_set)
3620 return 1;
3621
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003622 return 0;
3623}
3624
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003625int
3626cifs_match_super(struct super_block *sb, void *data)
3627{
3628 struct cifs_mnt_data *mnt_data = (struct cifs_mnt_data *)data;
3629 struct smb_vol *volume_info;
3630 struct cifs_sb_info *cifs_sb;
3631 struct TCP_Server_Info *tcp_srv;
Steve French96daf2b2011-05-27 04:34:02 +00003632 struct cifs_ses *ses;
3633 struct cifs_tcon *tcon;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003634 struct tcon_link *tlink;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003635 int rc = 0;
3636
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003637 spin_lock(&cifs_tcp_ses_lock);
3638 cifs_sb = CIFS_SB(sb);
3639 tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
3640 if (IS_ERR(tlink)) {
3641 spin_unlock(&cifs_tcp_ses_lock);
3642 return rc;
3643 }
3644 tcon = tlink_tcon(tlink);
3645 ses = tcon->ses;
3646 tcp_srv = ses->server;
3647
3648 volume_info = mnt_data->vol;
3649
Jeff Layton9fa114f2012-11-26 11:09:57 -05003650 if (!match_server(tcp_srv, volume_info) ||
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003651 !match_session(ses, volume_info) ||
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08003652 !match_tcon(tcon, volume_info) ||
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003653 !match_prepath(sb, mnt_data)) {
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003654 rc = 0;
3655 goto out;
3656 }
3657
3658 rc = compare_mount_options(sb, mnt_data);
3659out:
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003660 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf484b5d02011-07-11 10:16:34 -04003661 cifs_put_tlink(tlink);
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003662 return rc;
3663}
3664
Jeff Layton09e50d52008-07-23 10:11:19 -04003665#ifdef CONFIG_DEBUG_LOCK_ALLOC
3666static struct lock_class_key cifs_key[2];
3667static struct lock_class_key cifs_slock_key[2];
3668
3669static inline void
3670cifs_reclassify_socket4(struct socket *sock)
3671{
3672 struct sock *sk = sock->sk;
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02003673 BUG_ON(!sock_allow_reclassification(sk));
Jeff Layton09e50d52008-07-23 10:11:19 -04003674 sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS",
3675 &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]);
3676}
3677
3678static inline void
3679cifs_reclassify_socket6(struct socket *sock)
3680{
3681 struct sock *sk = sock->sk;
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02003682 BUG_ON(!sock_allow_reclassification(sk));
Jeff Layton09e50d52008-07-23 10:11:19 -04003683 sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS",
3684 &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]);
3685}
3686#else
3687static inline void
3688cifs_reclassify_socket4(struct socket *sock)
3689{
3690}
3691
3692static inline void
3693cifs_reclassify_socket6(struct socket *sock)
3694{
3695}
3696#endif
3697
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698/* See RFC1001 section 14 on representation of Netbios names */
Steve French50c2f752007-07-13 00:33:32 +00003699static void rfc1002mangle(char *target, char *source, unsigned int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700{
Steve French50c2f752007-07-13 00:33:32 +00003701 unsigned int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702
Steve French50c2f752007-07-13 00:33:32 +00003703 for (i = 0, j = 0; i < (length); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 /* mask a nibble at a time and encode */
3705 target[j] = 'A' + (0x0F & (source[i] >> 4));
3706 target[j+1] = 'A' + (0x0F & source[i]);
Steve French50c2f752007-07-13 00:33:32 +00003707 j += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 }
3709
3710}
3711
Ben Greear3eb9a882010-09-01 17:06:02 -07003712static int
3713bind_socket(struct TCP_Server_Info *server)
3714{
3715 int rc = 0;
3716 if (server->srcaddr.ss_family != AF_UNSPEC) {
3717 /* Bind to the specified local IP address */
3718 struct socket *socket = server->ssocket;
3719 rc = socket->ops->bind(socket,
3720 (struct sockaddr *) &server->srcaddr,
3721 sizeof(server->srcaddr));
3722 if (rc < 0) {
3723 struct sockaddr_in *saddr4;
3724 struct sockaddr_in6 *saddr6;
3725 saddr4 = (struct sockaddr_in *)&server->srcaddr;
3726 saddr6 = (struct sockaddr_in6 *)&server->srcaddr;
3727 if (saddr6->sin6_family == AF_INET6)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10003728 cifs_server_dbg(VFS, "Failed to bind to: %pI6c, error: %d\n",
Joe Perchesf96637b2013-05-04 22:12:25 -05003729 &saddr6->sin6_addr, rc);
Ben Greear3eb9a882010-09-01 17:06:02 -07003730 else
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10003731 cifs_server_dbg(VFS, "Failed to bind to: %pI4, error: %d\n",
Joe Perchesf96637b2013-05-04 22:12:25 -05003732 &saddr4->sin_addr.s_addr, rc);
Ben Greear3eb9a882010-09-01 17:06:02 -07003733 }
3734 }
3735 return rc;
3736}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
3738static int
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003739ip_rfc1001_connect(struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740{
3741 int rc = 0;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003742 /*
3743 * some servers require RFC1001 sessinit before sending
3744 * negprot - BB check reconnection in case where second
3745 * sessinit is sent but no second negprot
3746 */
3747 struct rfc1002_session_packet *ses_init_buf;
3748 struct smb_hdr *smb_buf;
3749 ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet),
3750 GFP_KERNEL);
3751 if (ses_init_buf) {
3752 ses_init_buf->trailer.session_req.called_len = 32;
3753
Colin Ian King997152f2016-01-25 16:25:54 +00003754 if (server->server_RFC1001_name[0] != 0)
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003755 rfc1002mangle(ses_init_buf->trailer.
3756 session_req.called_name,
3757 server->server_RFC1001_name,
3758 RFC1001_NAME_LEN_WITH_NULL);
3759 else
3760 rfc1002mangle(ses_init_buf->trailer.
3761 session_req.called_name,
3762 DEFAULT_CIFS_CALLED_NAME,
3763 RFC1001_NAME_LEN_WITH_NULL);
3764
3765 ses_init_buf->trailer.session_req.calling_len = 32;
3766
3767 /*
3768 * calling name ends in null (byte 16) from old smb
3769 * convention.
3770 */
Steve Frenchc85c35f2015-03-27 01:15:02 -05003771 if (server->workstation_RFC1001_name[0] != 0)
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003772 rfc1002mangle(ses_init_buf->trailer.
3773 session_req.calling_name,
3774 server->workstation_RFC1001_name,
3775 RFC1001_NAME_LEN_WITH_NULL);
3776 else
3777 rfc1002mangle(ses_init_buf->trailer.
3778 session_req.calling_name,
3779 "LINUX_CIFS_CLNT",
3780 RFC1001_NAME_LEN_WITH_NULL);
3781
3782 ses_init_buf->trailer.session_req.scope1 = 0;
3783 ses_init_buf->trailer.session_req.scope2 = 0;
3784 smb_buf = (struct smb_hdr *)ses_init_buf;
3785
3786 /* sizeof RFC1002_SESSION_REQUEST with no scope */
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003787 smb_buf->smb_buf_length = cpu_to_be32(0x81000044);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003788 rc = smb_send(server, smb_buf, 0x44);
3789 kfree(ses_init_buf);
3790 /*
3791 * RFC1001 layer in at least one server
3792 * requires very short break before negprot
3793 * presumably because not expecting negprot
3794 * to follow so fast. This is a simple
3795 * solution that works without
3796 * complicating the code and causes no
3797 * significant slowing down on mount
3798 * for everyone else
3799 */
3800 usleep_range(1000, 2000);
3801 }
3802 /*
3803 * else the negprot may still work without this
3804 * even though malloc failed
3805 */
3806
3807 return rc;
3808}
3809
3810static int
3811generic_ip_connect(struct TCP_Server_Info *server)
3812{
3813 int rc = 0;
Steve French6da97912011-03-13 18:55:55 +00003814 __be16 sport;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003815 int slen, sfamily;
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003816 struct socket *socket = server->ssocket;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003817 struct sockaddr *saddr;
3818
3819 saddr = (struct sockaddr *) &server->dstaddr;
3820
3821 if (server->dstaddr.ss_family == AF_INET6) {
3822 sport = ((struct sockaddr_in6 *) saddr)->sin6_port;
3823 slen = sizeof(struct sockaddr_in6);
3824 sfamily = AF_INET6;
3825 } else {
3826 sport = ((struct sockaddr_in *) saddr)->sin_port;
3827 slen = sizeof(struct sockaddr_in);
3828 sfamily = AF_INET;
3829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003831 if (socket == NULL) {
Rob Landleyf1d0c992011-01-22 15:44:05 -06003832 rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM,
3833 IPPROTO_TCP, &socket, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 if (rc < 0) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10003835 cifs_server_dbg(VFS, "Error %d creating socket\n", rc);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003836 server->ssocket = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 }
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003839
3840 /* BB other socket options to set KEEPALIVE, NODELAY? */
Joe Perchesf96637b2013-05-04 22:12:25 -05003841 cifs_dbg(FYI, "Socket created\n");
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003842 server->ssocket = socket;
3843 socket->sk->sk_allocation = GFP_NOFS;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003844 if (sfamily == AF_INET6)
3845 cifs_reclassify_socket6(socket);
3846 else
3847 cifs_reclassify_socket4(socket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 }
3849
Ben Greear3eb9a882010-09-01 17:06:02 -07003850 rc = bind_socket(server);
3851 if (rc < 0)
3852 return rc;
3853
Jeff Laytond5c56052008-12-01 18:42:33 -05003854 /*
3855 * Eventually check for other socket options to change from
3856 * the default. sock_setsockopt not used because it expects
3857 * user space buffer
3858 */
3859 socket->sk->sk_rcvtimeo = 7 * HZ;
Steve Frenchda505c32009-01-19 03:49:35 +00003860 socket->sk->sk_sndtimeo = 5 * HZ;
Steve French6a5fa2362010-01-01 01:28:43 +00003861
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003862 /* make the bufsizes depend on wsize/rsize and max requests */
3863 if (server->noautotune) {
3864 if (socket->sk->sk_sndbuf < (200 * 1024))
3865 socket->sk->sk_sndbuf = 200 * 1024;
3866 if (socket->sk->sk_rcvbuf < (140 * 1024))
3867 socket->sk->sk_rcvbuf = 140 * 1024;
3868 }
3869
Steve French6a5fa2362010-01-01 01:28:43 +00003870 if (server->tcp_nodelay) {
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003871 int val = 1;
Steve French6a5fa2362010-01-01 01:28:43 +00003872 rc = kernel_setsockopt(socket, SOL_TCP, TCP_NODELAY,
3873 (char *)&val, sizeof(val));
3874 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05003875 cifs_dbg(FYI, "set TCP_NODELAY socket option error %d\n",
3876 rc);
Steve French6a5fa2362010-01-01 01:28:43 +00003877 }
3878
Joe Perchesf96637b2013-05-04 22:12:25 -05003879 cifs_dbg(FYI, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx\n",
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003880 socket->sk->sk_sndbuf,
3881 socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo);
3882
Paulo Alcantara (SUSE)8eecd1c2019-07-16 19:04:50 -03003883 rc = socket->ops->connect(socket, saddr, slen,
3884 server->noblockcnt ? O_NONBLOCK : 0);
3885
3886 if (rc == -EINPROGRESS)
3887 rc = 0;
Jeff Laytonee1b3ea2011-06-21 07:18:26 -04003888 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003889 cifs_dbg(FYI, "Error %d connecting to server\n", rc);
Jeff Laytonee1b3ea2011-06-21 07:18:26 -04003890 sock_release(socket);
3891 server->ssocket = NULL;
3892 return rc;
3893 }
3894
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003895 if (sport == htons(RFC1001_PORT))
3896 rc = ip_rfc1001_connect(server);
Steve French50c2f752007-07-13 00:33:32 +00003897
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 return rc;
3899}
3900
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003901static int
3902ip_connect(struct TCP_Server_Info *server)
3903{
Steve French6da97912011-03-13 18:55:55 +00003904 __be16 *sport;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003905 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
3906 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
3907
3908 if (server->dstaddr.ss_family == AF_INET6)
3909 sport = &addr6->sin6_port;
3910 else
3911 sport = &addr->sin_port;
3912
3913 if (*sport == 0) {
3914 int rc;
3915
3916 /* try with 445 port at first */
3917 *sport = htons(CIFS_PORT);
3918
3919 rc = generic_ip_connect(server);
3920 if (rc >= 0)
3921 return rc;
3922
3923 /* if it failed, try with 139 port */
3924 *sport = htons(RFC1001_PORT);
3925 }
3926
3927 return generic_ip_connect(server);
3928}
3929
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003930void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon,
Al Viro2c6292a2011-06-17 09:05:48 -04003931 struct cifs_sb_info *cifs_sb, struct smb_vol *vol_info)
Steve French8af18972007-02-14 04:42:51 +00003932{
3933 /* if we are reconnecting then should we check to see if
3934 * any requested capabilities changed locally e.g. via
3935 * remount but we can not do much about it here
3936 * if they have (even if we could detect it by the following)
3937 * Perhaps we could add a backpointer to array of sb from tcon
3938 * or if we change to make all sb to same share the same
3939 * sb as NFS - then we only have one backpointer to sb.
3940 * What if we wanted to mount the server share twice once with
3941 * and once without posixacls or posix paths? */
3942 __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French50c2f752007-07-13 00:33:32 +00003943
Steve Frenchc18c8422007-07-18 23:21:09 +00003944 if (vol_info && vol_info->no_linux_ext) {
3945 tcon->fsUnixInfo.Capability = 0;
3946 tcon->unix_ext = 0; /* Unix Extensions disabled */
Joe Perchesf96637b2013-05-04 22:12:25 -05003947 cifs_dbg(FYI, "Linux protocol extensions disabled\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00003948 return;
3949 } else if (vol_info)
3950 tcon->unix_ext = 1; /* Unix Extensions supported */
3951
3952 if (tcon->unix_ext == 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003953 cifs_dbg(FYI, "Unix extensions disabled so not set on reconnect\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00003954 return;
3955 }
Steve French50c2f752007-07-13 00:33:32 +00003956
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003957 if (!CIFSSMBQFSUnixInfo(xid, tcon)) {
Steve French8af18972007-02-14 04:42:51 +00003958 __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
Joe Perchesf96637b2013-05-04 22:12:25 -05003959 cifs_dbg(FYI, "unix caps which server supports %lld\n", cap);
Steve French8af18972007-02-14 04:42:51 +00003960 /* check for reconnect case in which we do not
3961 want to change the mount behavior if we can avoid it */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003962 if (vol_info == NULL) {
Steve French50c2f752007-07-13 00:33:32 +00003963 /* turn off POSIX ACL and PATHNAMES if not set
Steve French8af18972007-02-14 04:42:51 +00003964 originally at mount time */
3965 if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0)
3966 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
Igor Mammedov11b6d642008-02-15 19:06:04 +00003967 if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
3968 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003969 cifs_dbg(VFS, "POSIXPATH support change\n");
Steve French8af18972007-02-14 04:42:51 +00003970 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
Igor Mammedov11b6d642008-02-15 19:06:04 +00003971 } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003972 cifs_dbg(VFS, "possible reconnect error\n");
3973 cifs_dbg(VFS, "server disabled POSIX path support\n");
Igor Mammedov11b6d642008-02-15 19:06:04 +00003974 }
Steve French8af18972007-02-14 04:42:51 +00003975 }
Steve French50c2f752007-07-13 00:33:32 +00003976
Steve French6848b732011-05-26 18:38:54 +00003977 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003978 cifs_dbg(VFS, "per-share encryption not supported yet\n");
Steve French6848b732011-05-26 18:38:54 +00003979
Steve French8af18972007-02-14 04:42:51 +00003980 cap &= CIFS_UNIX_CAP_MASK;
Steve French75865f8c2007-06-24 18:30:48 +00003981 if (vol_info && vol_info->no_psx_acl)
Steve French8af18972007-02-14 04:42:51 +00003982 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
Steve French75865f8c2007-06-24 18:30:48 +00003983 else if (CIFS_UNIX_POSIX_ACL_CAP & cap) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003984 cifs_dbg(FYI, "negotiated posix acl support\n");
Al Viro2c6292a2011-06-17 09:05:48 -04003985 if (cifs_sb)
3986 cifs_sb->mnt_cifs_flags |=
3987 CIFS_MOUNT_POSIXACL;
Steve French8af18972007-02-14 04:42:51 +00003988 }
3989
Steve French75865f8c2007-06-24 18:30:48 +00003990 if (vol_info && vol_info->posix_paths == 0)
Steve French8af18972007-02-14 04:42:51 +00003991 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
Steve French75865f8c2007-06-24 18:30:48 +00003992 else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003993 cifs_dbg(FYI, "negotiate posix pathnames\n");
Al Viro2c6292a2011-06-17 09:05:48 -04003994 if (cifs_sb)
3995 cifs_sb->mnt_cifs_flags |=
Steve French8af18972007-02-14 04:42:51 +00003996 CIFS_MOUNT_POSIX_PATHS;
3997 }
Steve French50c2f752007-07-13 00:33:32 +00003998
Joe Perchesf96637b2013-05-04 22:12:25 -05003999 cifs_dbg(FYI, "Negotiate caps 0x%x\n", (int)cap);
Steve French8af18972007-02-14 04:42:51 +00004000#ifdef CONFIG_CIFS_DEBUG2
Steve French75865f8c2007-06-24 18:30:48 +00004001 if (cap & CIFS_UNIX_FCNTL_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004002 cifs_dbg(FYI, "FCNTL cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00004003 if (cap & CIFS_UNIX_EXTATTR_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004004 cifs_dbg(FYI, "EXTATTR cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00004005 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004006 cifs_dbg(FYI, "POSIX path cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00004007 if (cap & CIFS_UNIX_XATTR_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004008 cifs_dbg(FYI, "XATTR cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00004009 if (cap & CIFS_UNIX_POSIX_ACL_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004010 cifs_dbg(FYI, "POSIX ACL cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00004011 if (cap & CIFS_UNIX_LARGE_READ_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004012 cifs_dbg(FYI, "very large read cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00004013 if (cap & CIFS_UNIX_LARGE_WRITE_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004014 cifs_dbg(FYI, "very large write cap\n");
Steve French6848b732011-05-26 18:38:54 +00004015 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004016 cifs_dbg(FYI, "transport encryption cap\n");
Steve French6848b732011-05-26 18:38:54 +00004017 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05004018 cifs_dbg(FYI, "mandatory transport encryption cap\n");
Steve French8af18972007-02-14 04:42:51 +00004019#endif /* CIFS_DEBUG2 */
4020 if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) {
Steve French442aa312007-09-24 20:25:46 +00004021 if (vol_info == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004022 cifs_dbg(FYI, "resetting capabilities failed\n");
Steve French442aa312007-09-24 20:25:46 +00004023 } else
Joe Perchesf96637b2013-05-04 22:12:25 -05004024 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 +00004025
Steve French8af18972007-02-14 04:42:51 +00004026 }
4027 }
4028}
4029
Sachin Prabhu4214ebf2016-07-29 22:38:19 +01004030int cifs_setup_cifs_sb(struct smb_vol *pvolume_info,
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004031 struct cifs_sb_info *cifs_sb)
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -04004032{
Jeff Layton2de970f2010-10-06 19:51:12 -04004033 INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks);
4034
Al Viro2ced6f62011-06-17 09:20:04 -04004035 spin_lock_init(&cifs_sb->tlink_tree_lock);
4036 cifs_sb->tlink_tree = RB_ROOT;
4037
Steve Frenche8506d22019-02-28 21:32:15 -06004038 cifs_sb->bsize = pvolume_info->bsize;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04004039 /*
Jeff Layton5eba8ab2011-10-19 15:30:26 -04004040 * Temporarily set r/wsize for matching superblock. If we end up using
4041 * new sb then client will later negotiate it downward if needed.
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04004042 */
Jeff Layton5eba8ab2011-10-19 15:30:26 -04004043 cifs_sb->rsize = pvolume_info->rsize;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04004044 cifs_sb->wsize = pvolume_info->wsize;
4045
Steve French3b795212008-11-13 19:45:32 +00004046 cifs_sb->mnt_uid = pvolume_info->linux_uid;
4047 cifs_sb->mnt_gid = pvolume_info->linux_gid;
4048 cifs_sb->mnt_file_mode = pvolume_info->file_mode;
4049 cifs_sb->mnt_dir_mode = pvolume_info->dir_mode;
Joe Perchesf96637b2013-05-04 22:12:25 -05004050 cifs_dbg(FYI, "file mode: 0x%hx dir mode: 0x%hx\n",
4051 cifs_sb->mnt_file_mode, cifs_sb->mnt_dir_mode);
Steve French3b795212008-11-13 19:45:32 +00004052
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05304053 cifs_sb->actimeo = pvolume_info->actimeo;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004054 cifs_sb->local_nls = pvolume_info->local_nls;
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05304055
Aurelien Aptel83930722018-09-20 18:10:25 -07004056 if (pvolume_info->nodfs)
4057 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_DFS;
Steve French3b795212008-11-13 19:45:32 +00004058 if (pvolume_info->noperm)
4059 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_PERM;
4060 if (pvolume_info->setuids)
4061 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SET_UID;
Steve French95932652016-09-23 01:36:34 -05004062 if (pvolume_info->setuidfromacl)
4063 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UID_FROM_ACL;
Steve French3b795212008-11-13 19:45:32 +00004064 if (pvolume_info->server_ino)
4065 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SERVER_INUM;
4066 if (pvolume_info->remap)
Steve French2baa2682014-09-27 02:19:01 -05004067 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SFM_CHR;
4068 if (pvolume_info->sfu_remap)
Steve French3b795212008-11-13 19:45:32 +00004069 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SPECIAL_CHR;
4070 if (pvolume_info->no_xattr)
4071 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_XATTR;
4072 if (pvolume_info->sfu_emul)
4073 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UNX_EMUL;
4074 if (pvolume_info->nobrl)
4075 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_BRL;
Steve French3d4ef9a2018-04-25 22:19:09 -05004076 if (pvolume_info->nohandlecache)
4077 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_HANDLE_CACHE;
Steve Frenchbe652442009-02-23 15:21:59 +00004078 if (pvolume_info->nostrictsync)
Steve French4717bed2009-02-24 14:44:19 +00004079 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOSSYNC;
Steve French13a6e422008-12-02 17:24:33 +00004080 if (pvolume_info->mand_lock)
4081 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOPOSIXBRL;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00004082 if (pvolume_info->rwpidforward)
4083 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RWPIDFORWARD;
Steve French412094a2019-06-24 02:01:42 -05004084 if (pvolume_info->mode_ace)
4085 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MODE_FROM_SID;
Steve French3b795212008-11-13 19:45:32 +00004086 if (pvolume_info->cifs_acl)
4087 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_ACL;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01004088 if (pvolume_info->backupuid_specified) {
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05004089 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPUID;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01004090 cifs_sb->mnt_backupuid = pvolume_info->backupuid;
4091 }
4092 if (pvolume_info->backupgid_specified) {
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05004093 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPGID;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01004094 cifs_sb->mnt_backupgid = pvolume_info->backupgid;
4095 }
Steve French3b795212008-11-13 19:45:32 +00004096 if (pvolume_info->override_uid)
4097 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_UID;
4098 if (pvolume_info->override_gid)
4099 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_GID;
4100 if (pvolume_info->dynperm)
4101 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DYNPERM;
Suresh Jayaramanfa1df752010-07-05 18:13:36 +05304102 if (pvolume_info->fsc)
4103 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_FSCACHE;
Jeff Layton0eb8a132010-10-06 19:51:12 -04004104 if (pvolume_info->multiuser)
4105 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_MULTIUSER |
4106 CIFS_MOUNT_NO_PERM);
Pavel Shilovskyd39454f2011-01-24 14:16:35 -05004107 if (pvolume_info->strict_io)
4108 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_STRICT_IO;
Steve French3b795212008-11-13 19:45:32 +00004109 if (pvolume_info->direct_io) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004110 cifs_dbg(FYI, "mounting share using direct i/o\n");
Steve French3b795212008-11-13 19:45:32 +00004111 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DIRECT_IO;
4112 }
Steve French83bbfa72019-08-27 23:58:54 -05004113 if (pvolume_info->cache_ro) {
4114 cifs_dbg(VFS, "mounting share with read only caching. Ensure that the share will not be modified while in use.\n");
4115 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RO_CACHE;
Steve French41e033f2019-08-30 02:12:41 -05004116 } else if (pvolume_info->cache_rw) {
4117 cifs_dbg(VFS, "mounting share in single client RW caching mode. Ensure that no other systems will be accessing the share.\n");
4118 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_RO_CACHE |
4119 CIFS_MOUNT_RW_CACHE);
Steve French83bbfa72019-08-27 23:58:54 -05004120 }
Stefan Metzmacher736a33202010-07-30 14:56:00 +02004121 if (pvolume_info->mfsymlinks) {
4122 if (pvolume_info->sfu_emul) {
Steve Frenchdb8b6312014-09-22 05:13:55 -05004123 /*
4124 * Our SFU ("Services for Unix" emulation does not allow
4125 * creating symlinks but does allow reading existing SFU
4126 * symlinks (it does allow both creating and reading SFU
4127 * style mknod and FIFOs though). When "mfsymlinks" and
4128 * "sfu" are both enabled at the same time, it allows
4129 * reading both types of symlinks, but will only create
4130 * them with mfsymlinks format. This allows better
4131 * Apple compatibility (probably better for Samba too)
4132 * while still recognizing old Windows style symlinks.
4133 */
4134 cifs_dbg(VFS, "mount options mfsymlinks and sfu both enabled\n");
Stefan Metzmacher736a33202010-07-30 14:56:00 +02004135 }
Steve Frenchdb8b6312014-09-22 05:13:55 -05004136 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MF_SYMLINKS;
Stefan Metzmacher736a33202010-07-30 14:56:00 +02004137 }
Steve French3b795212008-11-13 19:45:32 +00004138
4139 if ((pvolume_info->cifs_acl) && (pvolume_info->dynperm))
Joe Perchesf96637b2013-05-04 22:12:25 -05004140 cifs_dbg(VFS, "mount option dynperm ignored if cifsacl mount option supported\n");
Sachin Prabhu4214ebf2016-07-29 22:38:19 +01004141
4142 if (pvolume_info->prepath) {
4143 cifs_sb->prepath = kstrdup(pvolume_info->prepath, GFP_KERNEL);
4144 if (cifs_sb->prepath == NULL)
4145 return -ENOMEM;
4146 }
4147
4148 return 0;
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -04004149}
4150
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004151void
4152cifs_cleanup_volume_info_contents(struct smb_vol *volume_info)
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004153{
Sean Finneyb9468452011-04-11 13:19:32 +00004154 kfree(volume_info->username);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004155 kzfree(volume_info->password);
Jesper Juhl95c75452011-08-27 18:58:34 +02004156 kfree(volume_info->UNC);
Sean Finneyb9468452011-04-11 13:19:32 +00004157 kfree(volume_info->domainname);
4158 kfree(volume_info->iocharset);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004159 kfree(volume_info->prepath);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004160}
4161
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04004162void
4163cifs_cleanup_volume_info(struct smb_vol *volume_info)
4164{
4165 if (!volume_info)
4166 return;
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004167 cifs_cleanup_volume_info_contents(volume_info);
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04004168 kfree(volume_info);
4169}
4170
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004171/* Release all succeed connections */
4172static inline void mount_put_conns(struct cifs_sb_info *cifs_sb,
4173 unsigned int xid,
4174 struct TCP_Server_Info *server,
4175 struct cifs_ses *ses, struct cifs_tcon *tcon)
4176{
4177 int rc = 0;
4178
4179 if (tcon)
4180 cifs_put_tcon(tcon);
4181 else if (ses)
4182 cifs_put_smb_ses(ses);
4183 else if (server)
4184 cifs_put_tcp_session(server, 0);
4185 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_POSIX_PATHS;
4186 free_xid(xid);
4187}
4188
4189/* Get connections for tcp, ses and tcon */
4190static int mount_get_conns(struct smb_vol *vol, struct cifs_sb_info *cifs_sb,
4191 unsigned int *xid,
4192 struct TCP_Server_Info **nserver,
4193 struct cifs_ses **nses, struct cifs_tcon **ntcon)
4194{
4195 int rc = 0;
4196 struct TCP_Server_Info *server;
4197 struct cifs_ses *ses;
4198 struct cifs_tcon *tcon;
4199
4200 *nserver = NULL;
4201 *nses = NULL;
4202 *ntcon = NULL;
4203
4204 *xid = get_xid();
4205
4206 /* get a reference to a tcp session */
4207 server = cifs_get_tcp_session(vol);
4208 if (IS_ERR(server)) {
4209 rc = PTR_ERR(server);
4210 return rc;
4211 }
4212
4213 *nserver = server;
4214
4215 if ((vol->max_credits < 20) || (vol->max_credits > 60000))
4216 server->max_credits = SMB2_MAX_CREDITS_AVAILABLE;
4217 else
4218 server->max_credits = vol->max_credits;
4219
4220 /* get a reference to a SMB session */
4221 ses = cifs_get_smb_ses(server, vol);
4222 if (IS_ERR(ses)) {
4223 rc = PTR_ERR(ses);
4224 return rc;
4225 }
4226
4227 *nses = ses;
4228
4229 if ((vol->persistent == true) && (!(ses->server->capabilities &
4230 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES))) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10004231 cifs_server_dbg(VFS, "persistent handles not supported by server\n");
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004232 return -EOPNOTSUPP;
4233 }
4234
4235 /* search for existing tcon to this server share */
4236 tcon = cifs_get_tcon(ses, vol);
4237 if (IS_ERR(tcon)) {
4238 rc = PTR_ERR(tcon);
4239 return rc;
4240 }
4241
4242 *ntcon = tcon;
4243
4244 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
4245 if (tcon->posix_extensions)
4246 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS;
4247
4248 /* tell server which Unix caps we support */
4249 if (cap_unix(tcon->ses)) {
4250 /*
4251 * reset of caps checks mount to see if unix extensions disabled
4252 * for just this mount.
4253 */
4254 reset_cifs_unix_caps(*xid, tcon, cifs_sb, vol);
4255 if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) &&
4256 (le64_to_cpu(tcon->fsUnixInfo.Capability) &
4257 CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP))
4258 return -EACCES;
4259 } else
4260 tcon->unix_ext = 0; /* server does not support them */
4261
4262 /* do not care if a following call succeed - informational */
Steve French1981eba2019-08-29 22:33:38 -05004263 if (!tcon->pipe && server->ops->qfs_tcon) {
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004264 server->ops->qfs_tcon(*xid, tcon);
Steve French1981eba2019-08-29 22:33:38 -05004265 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE) {
4266 if (tcon->fsDevInfo.DeviceCharacteristics &
Steve French52870d52019-10-01 21:25:46 -05004267 cpu_to_le32(FILE_READ_ONLY_DEVICE))
Steve French1981eba2019-08-29 22:33:38 -05004268 cifs_dbg(VFS, "mounted to read only share\n");
Steve French41e033f2019-08-30 02:12:41 -05004269 else if ((cifs_sb->mnt_cifs_flags &
4270 CIFS_MOUNT_RW_CACHE) == 0)
Steve French1981eba2019-08-29 22:33:38 -05004271 cifs_dbg(VFS, "read only mount of RW share\n");
Steve French41e033f2019-08-30 02:12:41 -05004272 /* no need to log a RW mount of a typical RW share */
Steve French1981eba2019-08-29 22:33:38 -05004273 }
4274 }
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004275
4276 cifs_sb->wsize = server->ops->negotiate_wsize(tcon, vol);
4277 cifs_sb->rsize = server->ops->negotiate_rsize(tcon, vol);
4278
4279 return 0;
4280}
4281
4282static int mount_setup_tlink(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses,
4283 struct cifs_tcon *tcon)
4284{
4285 struct tcon_link *tlink;
4286
4287 /* hang the tcon off of the superblock */
4288 tlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
4289 if (tlink == NULL)
4290 return -ENOMEM;
4291
4292 tlink->tl_uid = ses->linux_uid;
4293 tlink->tl_tcon = tcon;
4294 tlink->tl_time = jiffies;
4295 set_bit(TCON_LINK_MASTER, &tlink->tl_flags);
4296 set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4297
4298 cifs_sb->master_tlink = tlink;
4299 spin_lock(&cifs_sb->tlink_tree_lock);
4300 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
4301 spin_unlock(&cifs_sb->tlink_tree_lock);
4302
4303 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
4304 TLINK_IDLE_EXPIRE);
4305 return 0;
4306}
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04004307
Steve French2d6d5892009-04-09 00:36:44 +00004308#ifdef CONFIG_CIFS_DFS_UPCALL
Steve French6d3ea7e2012-11-28 22:34:41 -06004309/*
4310 * cifs_build_path_to_root returns full path to root when we do not have an
4311 * exiting connection (tcon)
4312 */
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004313static char *
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04004314build_unc_path_to_root(const struct smb_vol *vol,
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004315 const struct cifs_sb_info *cifs_sb, bool useppath)
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004316{
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04004317 char *full_path, *pos;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004318 unsigned int pplen = useppath && vol->prepath ?
4319 strlen(vol->prepath) + 1 : 0;
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04004320 unsigned int unc_len = strnlen(vol->UNC, MAX_TREE_SIZE + 1);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004321
Ronnie Sahlberg340625e2019-08-27 09:30:14 +10004322 if (unc_len > MAX_TREE_SIZE)
4323 return ERR_PTR(-EINVAL);
4324
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04004325 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004326 if (full_path == NULL)
4327 return ERR_PTR(-ENOMEM);
4328
Ronnie Sahlberg340625e2019-08-27 09:30:14 +10004329 memcpy(full_path, vol->UNC, unc_len);
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04004330 pos = full_path + unc_len;
4331
4332 if (pplen) {
Jeff Layton1fc29ba2013-05-31 10:00:18 -04004333 *pos = CIFS_DIR_SEP(cifs_sb);
Ronnie Sahlberg340625e2019-08-27 09:30:14 +10004334 memcpy(pos + 1, vol->prepath, pplen);
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04004335 pos += pplen;
4336 }
4337
4338 *pos = '\0'; /* add trailing null */
Steve Frenchf87d39d2011-05-27 03:50:55 +00004339 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
Joe Perchesf96637b2013-05-04 22:12:25 -05004340 cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004341 return full_path;
4342}
Sean Finneydd613942011-04-11 13:19:30 +00004343
Paulo Alcantara1c780222018-11-14 16:24:03 -02004344/**
4345 * expand_dfs_referral - Perform a dfs referral query and update the cifs_sb
4346 *
Sean Finneydd613942011-04-11 13:19:30 +00004347 *
Sean Finney046462a2011-04-11 13:19:33 +00004348 * If a referral is found, cifs_sb->mountdata will be (re-)allocated
4349 * to a string containing updated options for the submount. Otherwise it
4350 * will be left untouched.
Sean Finneydd613942011-04-11 13:19:30 +00004351 *
4352 * Returns the rc from get_dfs_path to the caller, which can be used to
4353 * determine whether there were referrals.
4354 */
4355static int
Pavel Shilovskyb669f332012-05-27 20:21:53 +04004356expand_dfs_referral(const unsigned int xid, struct cifs_ses *ses,
Sean Finneydd613942011-04-11 13:19:30 +00004357 struct smb_vol *volume_info, struct cifs_sb_info *cifs_sb,
Sean Finney046462a2011-04-11 13:19:33 +00004358 int check_prefix)
Sean Finneydd613942011-04-11 13:19:30 +00004359{
4360 int rc;
Paulo Alcantara1c780222018-11-14 16:24:03 -02004361 struct dfs_info3_param referral = {0};
Sean Finneydd613942011-04-11 13:19:30 +00004362 char *full_path = NULL, *ref_path = NULL, *mdata = NULL;
4363
Aurelien Aptel83930722018-09-20 18:10:25 -07004364 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
4365 return -EREMOTE;
4366
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004367 full_path = build_unc_path_to_root(volume_info, cifs_sb, true);
Sean Finneydd613942011-04-11 13:19:30 +00004368 if (IS_ERR(full_path))
4369 return PTR_ERR(full_path);
4370
4371 /* For DFS paths, skip the first '\' of the UNC */
4372 ref_path = check_prefix ? full_path + 1 : volume_info->UNC + 1;
4373
Paulo Alcantara1c780222018-11-14 16:24:03 -02004374 rc = dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb),
4375 ref_path, &referral, NULL);
4376 if (!rc) {
Sean Finneydd613942011-04-11 13:19:30 +00004377 char *fake_devname = NULL;
4378
4379 mdata = cifs_compose_mount_options(cifs_sb->mountdata,
Paulo Alcantara1c780222018-11-14 16:24:03 -02004380 full_path + 1, &referral,
Sean Finneydd613942011-04-11 13:19:30 +00004381 &fake_devname);
Paulo Alcantara1c780222018-11-14 16:24:03 -02004382 free_dfs_info_param(&referral);
Sean Finney046462a2011-04-11 13:19:33 +00004383
Sean Finneydd613942011-04-11 13:19:30 +00004384 if (IS_ERR(mdata)) {
4385 rc = PTR_ERR(mdata);
4386 mdata = NULL;
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04004387 } else {
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004388 cifs_cleanup_volume_info_contents(volume_info);
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04004389 rc = cifs_setup_volume_info(volume_info, mdata,
Paulo Alcantara1c780222018-11-14 16:24:03 -02004390 fake_devname, false);
Sean Finneydd613942011-04-11 13:19:30 +00004391 }
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04004392 kfree(fake_devname);
4393 kfree(cifs_sb->mountdata);
Sean Finney046462a2011-04-11 13:19:33 +00004394 cifs_sb->mountdata = mdata;
Sean Finneydd613942011-04-11 13:19:30 +00004395 }
4396 kfree(full_path);
4397 return rc;
4398}
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004399
4400static inline int get_next_dfs_tgt(const char *path,
4401 struct dfs_cache_tgt_list *tgt_list,
4402 struct dfs_cache_tgt_iterator **tgt_it)
4403{
4404 if (!*tgt_it)
4405 *tgt_it = dfs_cache_get_tgt_iterator(tgt_list);
4406 else
4407 *tgt_it = dfs_cache_get_next_tgt(tgt_list, *tgt_it);
4408 return !*tgt_it ? -EHOSTDOWN : 0;
4409}
4410
4411static int update_vol_info(const struct dfs_cache_tgt_iterator *tgt_it,
4412 struct smb_vol *fake_vol, struct smb_vol *vol)
4413{
4414 const char *tgt = dfs_cache_get_tgt_name(tgt_it);
4415 int len = strlen(tgt) + 2;
4416 char *new_unc;
4417
4418 new_unc = kmalloc(len, GFP_KERNEL);
4419 if (!new_unc)
4420 return -ENOMEM;
Ronnie Sahlberg74ea5f92019-02-09 09:51:11 +10004421 scnprintf(new_unc, len, "\\%s", tgt);
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004422
4423 kfree(vol->UNC);
4424 vol->UNC = new_unc;
4425
4426 if (fake_vol->prepath) {
4427 kfree(vol->prepath);
4428 vol->prepath = fake_vol->prepath;
4429 fake_vol->prepath = NULL;
4430 }
4431 memcpy(&vol->dstaddr, &fake_vol->dstaddr, sizeof(vol->dstaddr));
4432
4433 return 0;
4434}
4435
4436static int setup_dfs_tgt_conn(const char *path,
4437 const struct dfs_cache_tgt_iterator *tgt_it,
4438 struct cifs_sb_info *cifs_sb,
4439 struct smb_vol *vol,
4440 unsigned int *xid,
4441 struct TCP_Server_Info **server,
4442 struct cifs_ses **ses,
4443 struct cifs_tcon **tcon)
4444{
4445 int rc;
4446 struct dfs_info3_param ref = {0};
4447 char *mdata = NULL, *fake_devname = NULL;
Steve Frenchd0959b02019-10-05 10:53:58 -05004448 struct smb_vol fake_vol = {NULL};
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004449
4450 cifs_dbg(FYI, "%s: dfs path: %s\n", __func__, path);
4451
4452 rc = dfs_cache_get_tgt_referral(path, tgt_it, &ref);
4453 if (rc)
4454 return rc;
4455
4456 mdata = cifs_compose_mount_options(cifs_sb->mountdata, path, &ref,
4457 &fake_devname);
4458 free_dfs_info_param(&ref);
4459
4460 if (IS_ERR(mdata)) {
4461 rc = PTR_ERR(mdata);
4462 mdata = NULL;
4463 } else {
4464 cifs_dbg(FYI, "%s: fake_devname: %s\n", __func__, fake_devname);
4465 rc = cifs_setup_volume_info(&fake_vol, mdata, fake_devname,
4466 false);
4467 }
4468 kfree(mdata);
4469 kfree(fake_devname);
4470
4471 if (!rc) {
4472 /*
4473 * We use a 'fake_vol' here because we need pass it down to the
4474 * mount_{get,put} functions to test connection against new DFS
4475 * targets.
4476 */
4477 mount_put_conns(cifs_sb, *xid, *server, *ses, *tcon);
4478 rc = mount_get_conns(&fake_vol, cifs_sb, xid, server, ses,
4479 tcon);
4480 if (!rc) {
4481 /*
4482 * We were able to connect to new target server.
4483 * Update current volume info with new target server.
4484 */
4485 rc = update_vol_info(tgt_it, &fake_vol, vol);
4486 }
4487 }
4488 cifs_cleanup_volume_info_contents(&fake_vol);
4489 return rc;
4490}
4491
4492static int mount_do_dfs_failover(const char *path,
4493 struct cifs_sb_info *cifs_sb,
4494 struct smb_vol *vol,
4495 struct cifs_ses *root_ses,
4496 unsigned int *xid,
4497 struct TCP_Server_Info **server,
4498 struct cifs_ses **ses,
4499 struct cifs_tcon **tcon)
4500{
4501 int rc;
4502 struct dfs_cache_tgt_list tgt_list;
4503 struct dfs_cache_tgt_iterator *tgt_it = NULL;
4504
4505 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
4506 return -EOPNOTSUPP;
4507
4508 rc = dfs_cache_noreq_find(path, NULL, &tgt_list);
4509 if (rc)
4510 return rc;
4511
4512 for (;;) {
4513 /* Get next DFS target server - if any */
4514 rc = get_next_dfs_tgt(path, &tgt_list, &tgt_it);
4515 if (rc)
4516 break;
4517 /* Connect to next DFS target */
4518 rc = setup_dfs_tgt_conn(path, tgt_it, cifs_sb, vol, xid, server,
4519 ses, tcon);
4520 if (!rc || rc == -EACCES || rc == -EOPNOTSUPP)
4521 break;
4522 }
4523 if (!rc) {
4524 /*
4525 * Update DFS target hint in DFS referral cache with the target
4526 * server we successfully reconnected to.
4527 */
4528 rc = dfs_cache_update_tgthint(*xid, root_ses ? root_ses : *ses,
4529 cifs_sb->local_nls,
4530 cifs_remap(cifs_sb), path,
4531 tgt_it);
4532 }
4533 dfs_cache_free_tgts(&tgt_list);
4534 return rc;
4535}
Steve French2d6d5892009-04-09 00:36:44 +00004536#endif
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004537
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03004538int
Jeff Layton04db79b2011-07-06 08:10:38 -04004539cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data,
Steve Frenchc7c137b2018-06-06 17:59:29 -05004540 const char *devname, bool is_smb3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541{
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004542 int rc = 0;
Sean Finneydd613942011-04-11 13:19:30 +00004543
Steve Frenchc7c137b2018-06-06 17:59:29 -05004544 if (cifs_parse_mount_options(mount_data, devname, volume_info, is_smb3))
Jeff Layton04db79b2011-07-06 08:10:38 -04004545 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546
Jeff Layton7586b762008-12-01 18:41:49 -05004547 if (volume_info->nullauth) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004548 cifs_dbg(FYI, "Anonymous login\n");
Jeff Layton04febab2012-01-17 16:09:15 -05004549 kfree(volume_info->username);
4550 volume_info->username = NULL;
Jeff Layton7586b762008-12-01 18:41:49 -05004551 } else if (volume_info->username) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 /* BB fixme parse for domain name here */
Joe Perchesf96637b2013-05-04 22:12:25 -05004553 cifs_dbg(FYI, "Username: %s\n", volume_info->username);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -05004555 cifs_dbg(VFS, "No username specified\n");
Steve French50c2f752007-07-13 00:33:32 +00004556 /* In userspace mount helper we can get user name from alternate
4557 locations such as env variables and files on disk */
Jeff Layton04db79b2011-07-06 08:10:38 -04004558 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 }
4560
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 /* this is needed for ASCII cp to Unicode converts */
Jeff Layton7586b762008-12-01 18:41:49 -05004562 if (volume_info->iocharset == NULL) {
Jeff Laytona5fc4ce2010-04-24 07:57:42 -04004563 /* load_nls_default cannot return null */
4564 volume_info->local_nls = load_nls_default();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 } else {
Jeff Laytona5fc4ce2010-04-24 07:57:42 -04004566 volume_info->local_nls = load_nls(volume_info->iocharset);
4567 if (volume_info->local_nls == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004568 cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n",
Joe Perchesb6b38f72010-04-21 03:50:45 +00004569 volume_info->iocharset);
Jeff Layton04db79b2011-07-06 08:10:38 -04004570 return -ELIBACC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 }
4572 }
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004573
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004574 return rc;
Jeff Layton04db79b2011-07-06 08:10:38 -04004575}
4576
4577struct smb_vol *
Steve Frenchc7c137b2018-06-06 17:59:29 -05004578cifs_get_volume_info(char *mount_data, const char *devname, bool is_smb3)
Jeff Layton04db79b2011-07-06 08:10:38 -04004579{
4580 int rc;
4581 struct smb_vol *volume_info;
4582
Jeff Layton6ee95422012-11-26 11:09:57 -05004583 volume_info = kmalloc(sizeof(struct smb_vol), GFP_KERNEL);
Jeff Layton04db79b2011-07-06 08:10:38 -04004584 if (!volume_info)
4585 return ERR_PTR(-ENOMEM);
4586
Steve Frenchc7c137b2018-06-06 17:59:29 -05004587 rc = cifs_setup_volume_info(volume_info, mount_data, devname, is_smb3);
Jeff Layton04db79b2011-07-06 08:10:38 -04004588 if (rc) {
4589 cifs_cleanup_volume_info(volume_info);
4590 volume_info = ERR_PTR(rc);
4591 }
4592
4593 return volume_info;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004594}
4595
Aurelien Aptela6b50582016-05-25 19:59:09 +02004596static int
4597cifs_are_all_path_components_accessible(struct TCP_Server_Info *server,
4598 unsigned int xid,
4599 struct cifs_tcon *tcon,
4600 struct cifs_sb_info *cifs_sb,
Ronnie Sahlbergce465bf2019-07-11 13:46:58 +10004601 char *full_path,
4602 int added_treename)
Aurelien Aptela6b50582016-05-25 19:59:09 +02004603{
4604 int rc;
4605 char *s;
4606 char sep, tmp;
Ronnie Sahlbergce465bf2019-07-11 13:46:58 +10004607 int skip = added_treename ? 1 : 0;
Aurelien Aptela6b50582016-05-25 19:59:09 +02004608
4609 sep = CIFS_DIR_SEP(cifs_sb);
4610 s = full_path;
4611
4612 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, "");
4613 while (rc == 0) {
4614 /* skip separators */
4615 while (*s == sep)
4616 s++;
4617 if (!*s)
4618 break;
4619 /* next separator */
4620 while (*s && *s != sep)
4621 s++;
Ronnie Sahlbergce465bf2019-07-11 13:46:58 +10004622 /*
4623 * if the treename is added, we then have to skip the first
4624 * part within the separators
4625 */
4626 if (skip) {
4627 skip = 0;
4628 continue;
4629 }
Aurelien Aptela6b50582016-05-25 19:59:09 +02004630 /*
4631 * temporarily null-terminate the path at the end of
4632 * the current component
4633 */
4634 tmp = *s;
4635 *s = 0;
4636 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
4637 full_path);
4638 *s = tmp;
4639 }
4640 return rc;
4641}
4642
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004643/*
4644 * Check if path is remote (e.g. a DFS share). Return -EREMOTE if it is,
4645 * otherwise 0.
4646 */
4647static int is_path_remote(struct cifs_sb_info *cifs_sb, struct smb_vol *vol,
4648 const unsigned int xid,
4649 struct TCP_Server_Info *server,
4650 struct cifs_tcon *tcon)
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004651{
Jeff Layton1daaae82012-03-21 06:30:40 -04004652 int rc;
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004653 char *full_path;
4654
4655 if (!server->ops->is_path_accessible)
4656 return -EOPNOTSUPP;
4657
4658 /*
4659 * cifs_build_path_to_root works only when we have a valid tcon
4660 */
4661 full_path = cifs_build_path_to_root(vol, cifs_sb, tcon,
4662 tcon->Flags & SMB_SHARE_IS_IN_DFS);
4663 if (full_path == NULL)
4664 return -ENOMEM;
4665
4666 cifs_dbg(FYI, "%s: full_path: %s\n", __func__, full_path);
4667
4668 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
4669 full_path);
4670 if (rc != 0 && rc != -EREMOTE) {
4671 kfree(full_path);
4672 return rc;
4673 }
4674
4675 if (rc != -EREMOTE) {
4676 rc = cifs_are_all_path_components_accessible(server, xid, tcon,
Ronnie Sahlbergce465bf2019-07-11 13:46:58 +10004677 cifs_sb, full_path, tcon->Flags & SMB_SHARE_IS_IN_DFS);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004678 if (rc != 0) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10004679 cifs_server_dbg(VFS, "cannot query dirs between root and final path, "
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004680 "enabling CIFS_MOUNT_USE_PREFIX_PATH\n");
4681 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
4682 rc = 0;
4683 }
4684 }
4685
4686 kfree(full_path);
4687 return rc;
4688}
4689
4690#ifdef CONFIG_CIFS_DFS_UPCALL
4691int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *vol)
4692{
4693 int rc = 0;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004694 unsigned int xid;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04004695 struct cifs_ses *ses;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004696 struct cifs_tcon *root_tcon = NULL;
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004697 struct cifs_tcon *tcon = NULL;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04004698 struct TCP_Server_Info *server;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004699 char *root_path = NULL, *full_path = NULL;
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03004700 char *old_mountdata, *origin_mountdata = NULL;
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004701 int count;
Al Virodd854462011-06-17 08:24:42 -04004702
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004703 rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses, &tcon);
4704 if (!rc && tcon) {
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004705 /* If not a standalone DFS root, then check if path is remote */
4706 rc = dfs_cache_find(xid, ses, cifs_sb->local_nls,
4707 cifs_remap(cifs_sb), vol->UNC + 1, NULL,
4708 NULL);
4709 if (rc) {
4710 rc = is_path_remote(cifs_sb, vol, xid, server, tcon);
4711 if (!rc)
4712 goto out;
4713 if (rc != -EREMOTE)
4714 goto error;
4715 }
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004716 }
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004717 /*
4718 * If first DFS target server went offline and we failed to connect it,
4719 * server and ses pointers are NULL at this point, though we still have
4720 * chance to get a cached DFS referral in expand_dfs_referral() and
4721 * retry next target available in it.
4722 *
4723 * If a NULL ses ptr is passed to dfs_cache_find(), a lookup will be
4724 * performed against DFS path and *no* requests will be sent to server
4725 * for any new DFS referrals. Hence it's safe to skip checking whether
4726 * server or ses ptr is NULL.
4727 */
4728 if (rc == -EACCES || rc == -EOPNOTSUPP)
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004729 goto error;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00004730
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004731 root_path = build_unc_path_to_root(vol, cifs_sb, false);
4732 if (IS_ERR(root_path)) {
4733 rc = PTR_ERR(root_path);
4734 root_path = NULL;
4735 goto error;
4736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02004738 full_path = build_unc_path_to_root(vol, cifs_sb, true);
4739 if (IS_ERR(full_path)) {
4740 rc = PTR_ERR(full_path);
4741 full_path = NULL;
4742 goto error;
4743 }
Sean Finneyc1508ca2011-04-11 13:19:31 +00004744 /*
4745 * Perform an unconditional check for whether there are DFS
4746 * referrals for this path without prefix, to provide support
4747 * for DFS referrals from w2k8 servers which don't seem to respond
4748 * with PATH_NOT_COVERED to requests that include the prefix.
4749 * Chase the referral if found, otherwise continue normally.
4750 */
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004751 old_mountdata = cifs_sb->mountdata;
4752 (void)expand_dfs_referral(xid, ses, vol, cifs_sb, false);
Sean Finneyc1508ca2011-04-11 13:19:31 +00004753
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004754 if (cifs_sb->mountdata == NULL) {
4755 rc = -ENOENT;
4756 goto error;
4757 }
4758
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03004759 /* Save DFS root volume information for DFS refresh worker */
4760 origin_mountdata = kstrndup(cifs_sb->mountdata,
4761 strlen(cifs_sb->mountdata), GFP_KERNEL);
4762 if (!origin_mountdata) {
4763 rc = -ENOMEM;
4764 goto error;
4765 }
4766
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004767 if (cifs_sb->mountdata != old_mountdata) {
4768 /* If we were redirected, reconnect to new target server */
4769 mount_put_conns(cifs_sb, xid, server, ses, tcon);
4770 rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses, &tcon);
4771 }
4772 if (rc) {
4773 if (rc == -EACCES || rc == -EOPNOTSUPP)
4774 goto error;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004775 /* Perform DFS failover to any other DFS targets */
4776 rc = mount_do_dfs_failover(root_path + 1, cifs_sb, vol, NULL,
4777 &xid, &server, &ses, &tcon);
4778 if (rc)
4779 goto error;
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004780 }
4781
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004782 kfree(root_path);
4783 root_path = build_unc_path_to_root(vol, cifs_sb, false);
4784 if (IS_ERR(root_path)) {
4785 rc = PTR_ERR(root_path);
4786 root_path = NULL;
4787 goto error;
4788 }
4789 /* Cache out resolved root server */
4790 (void)dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb),
4791 root_path + 1, NULL, NULL);
4792 /*
4793 * Save root tcon for additional DFS requests to update or create a new
4794 * DFS cache entry, or even perform DFS failover.
4795 */
4796 spin_lock(&cifs_tcp_ses_lock);
4797 tcon->tc_count++;
4798 tcon->dfs_path = root_path;
4799 root_path = NULL;
4800 tcon->remap = cifs_remap(cifs_sb);
4801 spin_unlock(&cifs_tcp_ses_lock);
4802
4803 root_tcon = tcon;
4804
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004805 for (count = 1; ;) {
4806 if (!rc && tcon) {
4807 rc = is_path_remote(cifs_sb, vol, xid, server, tcon);
4808 if (!rc || rc != -EREMOTE)
4809 break;
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004810 }
Steve French6d3ea7e2012-11-28 22:34:41 -06004811 /*
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004812 * BB: when we implement proper loop detection,
4813 * we will remove this check. But now we need it
4814 * to prevent an indefinite loop if 'DFS tree' is
4815 * misconfigured (i.e. has loops).
Steve French6d3ea7e2012-11-28 22:34:41 -06004816 */
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004817 if (count++ > MAX_NESTED_LINKS) {
Igor Mammedov5c2503a2009-04-21 19:31:05 +04004818 rc = -ELOOP;
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004819 break;
Igor Mammedov5c2503a2009-04-21 19:31:05 +04004820 }
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004821
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004822 kfree(full_path);
4823 full_path = build_unc_path_to_root(vol, cifs_sb, true);
4824 if (IS_ERR(full_path)) {
4825 rc = PTR_ERR(full_path);
4826 full_path = NULL;
4827 break;
4828 }
4829
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004830 old_mountdata = cifs_sb->mountdata;
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004831 rc = expand_dfs_referral(xid, root_tcon->ses, vol, cifs_sb,
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004832 true);
4833 if (rc)
4834 break;
Jeff Layton7b91e262009-07-23 15:22:30 -04004835
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004836 if (cifs_sb->mountdata != old_mountdata) {
4837 mount_put_conns(cifs_sb, xid, server, ses, tcon);
4838 rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses,
4839 &tcon);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004840 }
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004841 if (rc) {
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004842 if (rc == -EACCES || rc == -EOPNOTSUPP)
4843 break;
4844 /* Perform DFS failover to any other DFS targets */
4845 rc = mount_do_dfs_failover(full_path + 1, cifs_sb, vol,
4846 root_tcon->ses, &xid,
4847 &server, &ses, &tcon);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004848 if (rc == -EACCES || rc == -EOPNOTSUPP || !server ||
4849 !ses)
4850 goto error;
4851 }
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004852 }
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004853 cifs_put_tcon(root_tcon);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004854
Jeff Layton9d002df2010-10-06 19:51:11 -04004855 if (rc)
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004856 goto error;
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004857
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02004858 spin_lock(&cifs_tcp_ses_lock);
4859 if (!tcon->dfs_path) {
4860 /* Save full path in new tcon to do failover when reconnecting tcons */
4861 tcon->dfs_path = full_path;
4862 full_path = NULL;
4863 tcon->remap = cifs_remap(cifs_sb);
4864 }
4865 cifs_sb->origin_fullpath = kstrndup(tcon->dfs_path,
YueHaibing2f0a6172018-12-18 01:34:39 +00004866 strlen(tcon->dfs_path),
4867 GFP_ATOMIC);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02004868 if (!cifs_sb->origin_fullpath) {
4869 spin_unlock(&cifs_tcp_ses_lock);
4870 rc = -ENOMEM;
4871 goto error;
4872 }
4873 spin_unlock(&cifs_tcp_ses_lock);
4874
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03004875 rc = dfs_cache_add_vol(origin_mountdata, vol, cifs_sb->origin_fullpath);
Paulo Alcantarae511d312018-11-14 17:16:44 -02004876 if (rc) {
4877 kfree(cifs_sb->origin_fullpath);
4878 goto error;
4879 }
Aurelien Aptel5fc7fcd2018-11-16 16:13:25 +01004880 /*
4881 * After reconnecting to a different server, unique ids won't
4882 * match anymore, so we disable serverino. This prevents
4883 * dentry revalidation to think the dentry are stale (ESTALE).
4884 */
4885 cifs_autodisable_serverino(cifs_sb);
Jeff Layton70fe7dc2007-11-16 22:21:07 +00004886out:
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004887 free_xid(xid);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004888 return mount_setup_tlink(cifs_sb, ses, tcon);
4889
4890error:
Paulo Alcantara4a367dc2018-11-14 16:53:52 -02004891 kfree(full_path);
4892 kfree(root_path);
Paulo Alcantara (SUSE)50720102019-03-19 16:54:29 -03004893 kfree(origin_mountdata);
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004894 mount_put_conns(cifs_sb, xid, server, ses, tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 return rc;
4896}
Paulo Alcantara56c762e2018-11-14 13:03:14 -02004897#else
4898int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *vol)
4899{
4900 int rc = 0;
4901 unsigned int xid;
4902 struct cifs_ses *ses;
4903 struct cifs_tcon *tcon;
4904 struct TCP_Server_Info *server;
4905
4906 rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses, &tcon);
4907 if (rc)
4908 goto error;
4909
4910 if (tcon) {
4911 rc = is_path_remote(cifs_sb, vol, xid, server, tcon);
4912 if (rc == -EREMOTE)
4913 rc = -EOPNOTSUPP;
4914 if (rc)
4915 goto error;
4916 }
4917
4918 free_xid(xid);
4919
4920 return mount_setup_tlink(cifs_sb, ses, tcon);
4921
4922error:
4923 mount_put_conns(cifs_sb, xid, server, ses, tcon);
4924 return rc;
4925}
4926#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927
Jeff Layton8d1bca32011-06-11 21:17:10 -04004928/*
Aurelien Aptelb327a712018-01-24 13:46:10 +01004929 * Issue a TREE_CONNECT request.
Jeff Layton8d1bca32011-06-11 21:17:10 -04004930 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931int
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04004932CIFSTCon(const unsigned int xid, struct cifs_ses *ses,
Steve French96daf2b2011-05-27 04:34:02 +00004933 const char *tree, struct cifs_tcon *tcon,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 const struct nls_table *nls_codepage)
4935{
4936 struct smb_hdr *smb_buffer;
4937 struct smb_hdr *smb_buffer_response;
4938 TCONX_REQ *pSMB;
4939 TCONX_RSP *pSMBr;
4940 unsigned char *bcc_ptr;
4941 int rc = 0;
Jeff Layton690c5222011-01-20 13:36:51 -05004942 int length;
4943 __u16 bytes_left, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944
4945 if (ses == NULL)
4946 return -EIO;
4947
4948 smb_buffer = cifs_buf_get();
Steve Frenchca43e3b2009-09-01 17:20:50 +00004949 if (smb_buffer == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950 return -ENOMEM;
Steve Frenchca43e3b2009-09-01 17:20:50 +00004951
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952 smb_buffer_response = smb_buffer;
4953
4954 header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX,
4955 NULL /*no tid */ , 4 /*wct */ );
Steve French1982c342005-08-17 12:38:22 -07004956
Pavel Shilovsky88257362012-05-23 14:01:59 +04004957 smb_buffer->Mid = get_next_mid(ses->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958 smb_buffer->Uid = ses->Suid;
4959 pSMB = (TCONX_REQ *) smb_buffer;
4960 pSMBr = (TCONX_RSP *) smb_buffer_response;
4961
4962 pSMB->AndXCommand = 0xFF;
4963 pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964 bcc_ptr = &pSMB->Password[0];
Aurelien Aptelb327a712018-01-24 13:46:10 +01004965 if (tcon->pipe || (ses->server->sec_mode & SECMODE_USER)) {
Steve Frencheeac8042006-01-13 21:34:58 -08004966 pSMB->PasswordLength = cpu_to_le16(1); /* minimum */
Steve French7c7b25b2006-06-01 19:20:10 +00004967 *bcc_ptr = 0; /* password is null byte */
Steve Frencheeac8042006-01-13 21:34:58 -08004968 bcc_ptr++; /* skip password */
Steve French7c7b25b2006-06-01 19:20:10 +00004969 /* already aligned so no need to do it below */
Steve Frencheeac8042006-01-13 21:34:58 -08004970 } else {
Shirish Pargaonkar540b2e32011-01-18 22:33:54 -06004971 pSMB->PasswordLength = cpu_to_le16(CIFS_AUTH_RESP_SIZE);
Steve Frencheeac8042006-01-13 21:34:58 -08004972 /* BB FIXME add code to fail this if NTLMv2 or Kerberos
4973 specified as required (when that support is added to
4974 the vfs in the future) as only NTLM or the much
Steve French7c7b25b2006-06-01 19:20:10 +00004975 weaker LANMAN (which we do not send by default) is accepted
Steve Frencheeac8042006-01-13 21:34:58 -08004976 by Samba (not sure whether other servers allow
4977 NTLMv2 password here) */
Steve French7c7b25b2006-06-01 19:20:10 +00004978#ifdef CONFIG_CIFS_WEAK_PW_HASH
Jeff Layton04912d62010-04-24 07:57:45 -04004979 if ((global_secflags & CIFSSEC_MAY_LANMAN) &&
Jeff Layton3f618222013-06-12 19:52:14 -05004980 (ses->sectype == LANMAN))
Shirish Pargaonkard3ba50b2010-10-27 15:20:36 -05004981 calc_lanman_hash(tcon->password, ses->server->cryptkey,
Steve French96daf2b2011-05-27 04:34:02 +00004982 ses->server->sec_mode &
Jeff Layton4e53a3f2008-12-05 20:41:21 -05004983 SECMODE_PW_ENCRYPT ? true : false,
4984 bcc_ptr);
Steve French7c7b25b2006-06-01 19:20:10 +00004985 else
4986#endif /* CIFS_WEAK_PW_HASH */
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -06004987 rc = SMBNTencrypt(tcon->password, ses->server->cryptkey,
Shirish Pargaonkar9ef59922011-10-20 13:21:59 -05004988 bcc_ptr, nls_codepage);
Steve Frenchf3a31a22015-03-26 19:23:20 -05004989 if (rc) {
4990 cifs_dbg(FYI, "%s Can't generate NTLM rsp. Error: %d\n",
4991 __func__, rc);
4992 cifs_buf_release(smb_buffer);
4993 return rc;
4994 }
Steve Frencheeac8042006-01-13 21:34:58 -08004995
Shirish Pargaonkar540b2e32011-01-18 22:33:54 -06004996 bcc_ptr += CIFS_AUTH_RESP_SIZE;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00004997 if (ses->capabilities & CAP_UNICODE) {
Steve French7c7b25b2006-06-01 19:20:10 +00004998 /* must align unicode strings */
4999 *bcc_ptr = 0; /* null byte password */
5000 bcc_ptr++;
5001 }
Steve Frencheeac8042006-01-13 21:34:58 -08005002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003
Jeff Layton38d77c52013-05-26 07:01:00 -04005004 if (ses->server->sign)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005 smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
5006
5007 if (ses->capabilities & CAP_STATUS32) {
5008 smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS;
5009 }
5010 if (ses->capabilities & CAP_DFS) {
5011 smb_buffer->Flags2 |= SMBFLG2_DFS;
5012 }
5013 if (ses->capabilities & CAP_UNICODE) {
5014 smb_buffer->Flags2 |= SMBFLG2_UNICODE;
5015 length =
Steve Frenchacbbb762012-01-18 22:32:33 -06005016 cifs_strtoUTF16((__le16 *) bcc_ptr, tree,
Steve French50c2f752007-07-13 00:33:32 +00005017 6 /* max utf8 char length in bytes */ *
Steve Frencha878fb22006-05-30 18:04:19 +00005018 (/* server len*/ + 256 /* share len */), nls_codepage);
5019 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020 bcc_ptr += 2; /* skip trailing null */
5021 } else { /* ASCII */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 strcpy(bcc_ptr, tree);
5023 bcc_ptr += strlen(tree) + 1;
5024 }
5025 strcpy(bcc_ptr, "?????");
5026 bcc_ptr += strlen("?????");
5027 bcc_ptr += 1;
5028 count = bcc_ptr - &pSMB->Password[0];
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005029 pSMB->hdr.smb_buf_length = cpu_to_be32(be32_to_cpu(
5030 pSMB->hdr.smb_buf_length) + count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031 pSMB->ByteCount = cpu_to_le16(count);
5032
Steve French133672e2007-11-13 22:41:37 +00005033 rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length,
Jeff Layton77499812011-01-11 07:24:23 -05005034 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036 /* above now done in SendReceive */
Aurelien Aptelb327a712018-01-24 13:46:10 +01005037 if (rc == 0) {
Steve French0e0d2cf2009-05-01 05:27:32 +00005038 bool is_unicode;
5039
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040 tcon->tidStatus = CifsGood;
Steve French3b795212008-11-13 19:45:32 +00005041 tcon->need_reconnect = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 tcon->tid = smb_buffer_response->Tid;
5043 bcc_ptr = pByteArea(smb_buffer_response);
Jeff Layton690c5222011-01-20 13:36:51 -05005044 bytes_left = get_bcc(smb_buffer_response);
Jeff Laytoncc20c032009-04-30 07:16:21 -04005045 length = strnlen(bcc_ptr, bytes_left - 2);
Steve French0e0d2cf2009-05-01 05:27:32 +00005046 if (smb_buffer->Flags2 & SMBFLG2_UNICODE)
5047 is_unicode = true;
5048 else
5049 is_unicode = false;
5050
Jeff Laytoncc20c032009-04-30 07:16:21 -04005051
Steve French50c2f752007-07-13 00:33:32 +00005052 /* skip service field (NB: this field is always ASCII) */
Steve French7f8ed422007-09-28 22:28:55 +00005053 if (length == 3) {
5054 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') &&
5055 (bcc_ptr[2] == 'C')) {
Joe Perchesf96637b2013-05-04 22:12:25 -05005056 cifs_dbg(FYI, "IPC connection\n");
Aurelien Aptelb327a712018-01-24 13:46:10 +01005057 tcon->ipc = true;
5058 tcon->pipe = true;
Steve French7f8ed422007-09-28 22:28:55 +00005059 }
5060 } else if (length == 2) {
5061 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) {
5062 /* the most common case */
Joe Perchesf96637b2013-05-04 22:12:25 -05005063 cifs_dbg(FYI, "disk share connection\n");
Steve French7f8ed422007-09-28 22:28:55 +00005064 }
5065 }
Steve French50c2f752007-07-13 00:33:32 +00005066 bcc_ptr += length + 1;
Jeff Laytoncc20c032009-04-30 07:16:21 -04005067 bytes_left -= (length + 1);
Zhao Hongjiang46b51d02013-06-24 01:57:47 -05005068 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
Jeff Laytoncc20c032009-04-30 07:16:21 -04005069
5070 /* mostly informational -- no need to fail on error here */
Jeff Layton90a98b22009-07-20 13:40:52 -04005071 kfree(tcon->nativeFileSystem);
Steve Frenchacbbb762012-01-18 22:32:33 -06005072 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr,
Steve French0e0d2cf2009-05-01 05:27:32 +00005073 bytes_left, is_unicode,
Jeff Laytoncc20c032009-04-30 07:16:21 -04005074 nls_codepage);
5075
Joe Perchesf96637b2013-05-04 22:12:25 -05005076 cifs_dbg(FYI, "nativeFileSystem=%s\n", tcon->nativeFileSystem);
Jeff Laytoncc20c032009-04-30 07:16:21 -04005077
Steve Frenchfb8c4b12007-07-10 01:16:18 +00005078 if ((smb_buffer_response->WordCount == 3) ||
Steve French1a4e15a2006-10-12 21:33:51 +00005079 (smb_buffer_response->WordCount == 7))
5080 /* field is in same location */
Steve French39798772006-05-31 22:40:51 +00005081 tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport);
5082 else
5083 tcon->Flags = 0;
Joe Perchesf96637b2013-05-04 22:12:25 -05005084 cifs_dbg(FYI, "Tcon flags: 0x%x\n", tcon->Flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085 }
5086
Mariusz Kozlowskia8a11d32007-10-03 16:41:24 +00005087 cifs_buf_release(smb_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088 return rc;
5089}
5090
Al Viro2e32cf52013-10-03 12:53:37 -04005091static void delayed_free(struct rcu_head *p)
5092{
5093 struct cifs_sb_info *sbi = container_of(p, struct cifs_sb_info, rcu);
5094 unload_nls(sbi->local_nls);
5095 kfree(sbi);
5096}
5097
Al Viro2a9b9952011-06-17 09:27:16 -04005098void
5099cifs_umount(struct cifs_sb_info *cifs_sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100{
Jeff Laytonb647c352010-10-28 11:16:44 -04005101 struct rb_root *root = &cifs_sb->tlink_tree;
5102 struct rb_node *node;
5103 struct tcon_link *tlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104
Jeff Layton2de970f2010-10-06 19:51:12 -04005105 cancel_delayed_work_sync(&cifs_sb->prune_tlinks);
5106
Jeff Laytonb647c352010-10-28 11:16:44 -04005107 spin_lock(&cifs_sb->tlink_tree_lock);
5108 while ((node = rb_first(root))) {
5109 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
5110 cifs_get_tlink(tlink);
5111 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
5112 rb_erase(node, root);
Steve French50c2f752007-07-13 00:33:32 +00005113
Jeff Laytonb647c352010-10-28 11:16:44 -04005114 spin_unlock(&cifs_sb->tlink_tree_lock);
5115 cifs_put_tlink(tlink);
5116 spin_lock(&cifs_sb->tlink_tree_lock);
5117 }
5118 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04005119
Al Virod757d712011-06-17 09:42:43 -04005120 kfree(cifs_sb->mountdata);
Aurelien Aptela6b50582016-05-25 19:59:09 +02005121 kfree(cifs_sb->prepath);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02005122#ifdef CONFIG_CIFS_DFS_UPCALL
Paulo Alcantarae511d312018-11-14 17:16:44 -02005123 dfs_cache_del_vol(cifs_sb->origin_fullpath);
Paulo Alcantara93d5cb52018-11-14 17:13:25 -02005124 kfree(cifs_sb->origin_fullpath);
5125#endif
Al Viro2e32cf52013-10-03 12:53:37 -04005126 call_rcu(&cifs_sb->rcu, delayed_free);
Steve French50c2f752007-07-13 00:33:32 +00005127}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128
Pavel Shilovsky286170a2012-05-25 10:43:58 +04005129int
5130cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131{
5132 int rc = 0;
Jeff Layton198b5682010-04-24 07:57:48 -04005133 struct TCP_Server_Info *server = ses->server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134
Pavel Shilovsky286170a2012-05-25 10:43:58 +04005135 if (!server->ops->need_neg || !server->ops->negotiate)
5136 return -ENOSYS;
5137
Jeff Layton198b5682010-04-24 07:57:48 -04005138 /* only send once per connect */
Pavel Shilovsky286170a2012-05-25 10:43:58 +04005139 if (!server->ops->need_neg(server))
Jeff Layton198b5682010-04-24 07:57:48 -04005140 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141
Pavel Shilovsky286170a2012-05-25 10:43:58 +04005142 rc = server->ops->negotiate(xid, ses);
Jeff Layton198b5682010-04-24 07:57:48 -04005143 if (rc == 0) {
5144 spin_lock(&GlobalMid_Lock);
Jeff Layton7fdbaa12011-06-10 16:14:57 -04005145 if (server->tcpStatus == CifsNeedNegotiate)
Jeff Layton198b5682010-04-24 07:57:48 -04005146 server->tcpStatus = CifsGood;
5147 else
5148 rc = -EHOSTDOWN;
5149 spin_unlock(&GlobalMid_Lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 }
Steve French26b994f2008-08-06 05:11:33 +00005151
Jeff Layton198b5682010-04-24 07:57:48 -04005152 return rc;
5153}
Steve French26b994f2008-08-06 05:11:33 +00005154
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04005155int
5156cifs_setup_session(const unsigned int xid, struct cifs_ses *ses,
5157 struct nls_table *nls_info)
Jeff Layton198b5682010-04-24 07:57:48 -04005158{
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04005159 int rc = -ENOSYS;
Jeff Layton198b5682010-04-24 07:57:48 -04005160 struct TCP_Server_Info *server = ses->server;
5161
Jeff Layton198b5682010-04-24 07:57:48 -04005162 ses->capabilities = server->capabilities;
Steve French26b994f2008-08-06 05:11:33 +00005163 if (linuxExtEnabled == 0)
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04005164 ses->capabilities &= (~server->vals->cap_unix);
Steve French20418ac2009-04-30 16:13:32 +00005165
Joe Perchesf96637b2013-05-04 22:12:25 -05005166 cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n",
Steve French96daf2b2011-05-27 04:34:02 +00005167 server->sec_mode, server->capabilities, server->timeAdj);
Jeff Laytoncb7691b2008-08-18 15:41:05 -04005168
Shu Wangf5c4ba82017-09-08 18:48:33 +08005169 if (ses->auth_key.response) {
Steve French2a182872018-03-29 12:16:34 -05005170 cifs_dbg(FYI, "Free previous auth_key.response = %p\n",
Shu Wangf5c4ba82017-09-08 18:48:33 +08005171 ses->auth_key.response);
5172 kfree(ses->auth_key.response);
5173 ses->auth_key.response = NULL;
5174 ses->auth_key.len = 0;
5175 }
5176
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04005177 if (server->ops->sess_setup)
5178 rc = server->ops->sess_setup(xid, ses, nls_info);
5179
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -05005180 if (rc)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10005181 cifs_server_dbg(VFS, "Send error in SessSetup = %d\n", rc);
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05005182
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 return rc;
5184}
5185
Jeff Layton8a8798a2012-01-17 16:09:15 -05005186static int
5187cifs_set_vol_auth(struct smb_vol *vol, struct cifs_ses *ses)
5188{
Jeff Layton3f618222013-06-12 19:52:14 -05005189 vol->sectype = ses->sectype;
5190
5191 /* krb5 is special, since we don't need username or pw */
5192 if (vol->sectype == Kerberos)
Jeff Layton8a8798a2012-01-17 16:09:15 -05005193 return 0;
Jeff Layton8a8798a2012-01-17 16:09:15 -05005194
5195 return cifs_set_cifscreds(vol, ses);
5196}
5197
Steve French96daf2b2011-05-27 04:34:02 +00005198static struct cifs_tcon *
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08005199cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid)
Jeff Layton9d002df2010-10-06 19:51:11 -04005200{
Jeff Layton8a8798a2012-01-17 16:09:15 -05005201 int rc;
Steve French96daf2b2011-05-27 04:34:02 +00005202 struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb);
5203 struct cifs_ses *ses;
5204 struct cifs_tcon *tcon = NULL;
Jeff Layton9d002df2010-10-06 19:51:11 -04005205 struct smb_vol *vol_info;
Jeff Layton9d002df2010-10-06 19:51:11 -04005206
5207 vol_info = kzalloc(sizeof(*vol_info), GFP_KERNEL);
Dan Carpenter803ab972012-01-24 11:39:22 +03005208 if (vol_info == NULL)
5209 return ERR_PTR(-ENOMEM);
Jeff Layton9d002df2010-10-06 19:51:11 -04005210
Jeff Layton9d002df2010-10-06 19:51:11 -04005211 vol_info->local_nls = cifs_sb->local_nls;
5212 vol_info->linux_uid = fsuid;
5213 vol_info->cred_uid = fsuid;
5214 vol_info->UNC = master_tcon->treeName;
5215 vol_info->retry = master_tcon->retry;
5216 vol_info->nocase = master_tcon->nocase;
Steve French3d4ef9a2018-04-25 22:19:09 -05005217 vol_info->nohandlecache = master_tcon->nohandlecache;
Jeff Layton9d002df2010-10-06 19:51:11 -04005218 vol_info->local_lease = master_tcon->local_lease;
5219 vol_info->no_linux_ext = !master_tcon->unix_ext;
Jeff Layton28e11bd2013-05-26 07:01:00 -04005220 vol_info->sectype = master_tcon->ses->sectype;
5221 vol_info->sign = master_tcon->ses->sign;
Jeff Layton9d002df2010-10-06 19:51:11 -04005222
Jeff Layton8a8798a2012-01-17 16:09:15 -05005223 rc = cifs_set_vol_auth(vol_info, master_tcon->ses);
5224 if (rc) {
5225 tcon = ERR_PTR(rc);
5226 goto out;
5227 }
Jeff Layton9d002df2010-10-06 19:51:11 -04005228
5229 /* get a reference for the same TCP session */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05305230 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04005231 ++master_tcon->ses->server->srv_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05305232 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04005233
5234 ses = cifs_get_smb_ses(master_tcon->ses->server, vol_info);
5235 if (IS_ERR(ses)) {
Steve French96daf2b2011-05-27 04:34:02 +00005236 tcon = (struct cifs_tcon *)ses;
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07005237 cifs_put_tcp_session(master_tcon->ses->server, 0);
Jeff Layton9d002df2010-10-06 19:51:11 -04005238 goto out;
5239 }
5240
5241 tcon = cifs_get_tcon(ses, vol_info);
5242 if (IS_ERR(tcon)) {
5243 cifs_put_smb_ses(ses);
5244 goto out;
5245 }
5246
Steve Frenchce558b02018-05-31 19:16:54 -05005247 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
5248 if (tcon->posix_extensions)
5249 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS;
Steve French0fdfef92018-06-28 19:30:23 -05005250
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04005251 if (cap_unix(ses))
Jeff Layton9d002df2010-10-06 19:51:11 -04005252 reset_cifs_unix_caps(0, tcon, NULL, vol_info);
Steve Frenchb3266142018-05-20 23:41:10 -05005253
Jeff Layton9d002df2010-10-06 19:51:11 -04005254out:
Jeff Layton8a8798a2012-01-17 16:09:15 -05005255 kfree(vol_info->username);
Aurelien Aptel97f4b722018-01-25 15:59:39 +01005256 kzfree(vol_info->password);
Jeff Layton9d002df2010-10-06 19:51:11 -04005257 kfree(vol_info);
5258
5259 return tcon;
5260}
5261
Steve French96daf2b2011-05-27 04:34:02 +00005262struct cifs_tcon *
Jeff Layton9d002df2010-10-06 19:51:11 -04005263cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb)
5264{
5265 return tlink_tcon(cifs_sb_master_tlink(cifs_sb));
5266}
5267
Jeff Laytonb647c352010-10-28 11:16:44 -04005268/* find and return a tlink with given uid */
5269static struct tcon_link *
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08005270tlink_rb_search(struct rb_root *root, kuid_t uid)
Jeff Laytonb647c352010-10-28 11:16:44 -04005271{
5272 struct rb_node *node = root->rb_node;
5273 struct tcon_link *tlink;
5274
5275 while (node) {
5276 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
5277
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08005278 if (uid_gt(tlink->tl_uid, uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04005279 node = node->rb_left;
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08005280 else if (uid_lt(tlink->tl_uid, uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04005281 node = node->rb_right;
5282 else
5283 return tlink;
5284 }
5285 return NULL;
5286}
5287
5288/* insert a tcon_link into the tree */
5289static void
5290tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink)
5291{
5292 struct rb_node **new = &(root->rb_node), *parent = NULL;
5293 struct tcon_link *tlink;
5294
5295 while (*new) {
5296 tlink = rb_entry(*new, struct tcon_link, tl_rbnode);
5297 parent = *new;
5298
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08005299 if (uid_gt(tlink->tl_uid, new_tlink->tl_uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04005300 new = &((*new)->rb_left);
5301 else
5302 new = &((*new)->rb_right);
5303 }
5304
5305 rb_link_node(&new_tlink->tl_rbnode, parent, new);
5306 rb_insert_color(&new_tlink->tl_rbnode, root);
5307}
5308
Jeff Layton9d002df2010-10-06 19:51:11 -04005309/*
5310 * Find or construct an appropriate tcon given a cifs_sb and the fsuid of the
5311 * current task.
5312 *
5313 * If the superblock doesn't refer to a multiuser mount, then just return
5314 * the master tcon for the mount.
5315 *
Suresh Jayaraman6ef933a2010-11-03 10:53:49 +05305316 * First, search the rbtree for an existing tcon for this fsuid. If one
Jeff Layton9d002df2010-10-06 19:51:11 -04005317 * exists, then check to see if it's pending construction. If it is then wait
5318 * for construction to complete. Once it's no longer pending, check to see if
5319 * it failed and either return an error or retry construction, depending on
5320 * the timeout.
5321 *
5322 * If one doesn't exist then insert a new tcon_link struct into the tree and
5323 * try to construct a new one.
5324 */
5325struct tcon_link *
5326cifs_sb_tlink(struct cifs_sb_info *cifs_sb)
5327{
5328 int ret;
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08005329 kuid_t fsuid = current_fsuid();
Jeff Layton9d002df2010-10-06 19:51:11 -04005330 struct tcon_link *tlink, *newtlink;
5331
5332 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
5333 return cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
5334
5335 spin_lock(&cifs_sb->tlink_tree_lock);
Jeff Laytonb647c352010-10-28 11:16:44 -04005336 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
Jeff Layton9d002df2010-10-06 19:51:11 -04005337 if (tlink)
5338 cifs_get_tlink(tlink);
5339 spin_unlock(&cifs_sb->tlink_tree_lock);
5340
5341 if (tlink == NULL) {
5342 newtlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
5343 if (newtlink == NULL)
5344 return ERR_PTR(-ENOMEM);
Jeff Laytonb647c352010-10-28 11:16:44 -04005345 newtlink->tl_uid = fsuid;
Jeff Layton9d002df2010-10-06 19:51:11 -04005346 newtlink->tl_tcon = ERR_PTR(-EACCES);
5347 set_bit(TCON_LINK_PENDING, &newtlink->tl_flags);
5348 set_bit(TCON_LINK_IN_TREE, &newtlink->tl_flags);
5349 cifs_get_tlink(newtlink);
5350
Jeff Layton9d002df2010-10-06 19:51:11 -04005351 spin_lock(&cifs_sb->tlink_tree_lock);
5352 /* was one inserted after previous search? */
Jeff Laytonb647c352010-10-28 11:16:44 -04005353 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
Jeff Layton9d002df2010-10-06 19:51:11 -04005354 if (tlink) {
5355 cifs_get_tlink(tlink);
5356 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04005357 kfree(newtlink);
5358 goto wait_for_construction;
5359 }
Jeff Layton9d002df2010-10-06 19:51:11 -04005360 tlink = newtlink;
Jeff Laytonb647c352010-10-28 11:16:44 -04005361 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
5362 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04005363 } else {
5364wait_for_construction:
5365 ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING,
Jeff Layton9d002df2010-10-06 19:51:11 -04005366 TASK_INTERRUPTIBLE);
5367 if (ret) {
5368 cifs_put_tlink(tlink);
NeilBrown74316202014-07-07 15:16:04 +10005369 return ERR_PTR(-ERESTARTSYS);
Jeff Layton9d002df2010-10-06 19:51:11 -04005370 }
5371
5372 /* if it's good, return it */
5373 if (!IS_ERR(tlink->tl_tcon))
5374 return tlink;
5375
5376 /* return error if we tried this already recently */
5377 if (time_before(jiffies, tlink->tl_time + TLINK_ERROR_EXPIRE)) {
5378 cifs_put_tlink(tlink);
5379 return ERR_PTR(-EACCES);
5380 }
5381
5382 if (test_and_set_bit(TCON_LINK_PENDING, &tlink->tl_flags))
5383 goto wait_for_construction;
5384 }
5385
5386 tlink->tl_tcon = cifs_construct_tcon(cifs_sb, fsuid);
5387 clear_bit(TCON_LINK_PENDING, &tlink->tl_flags);
5388 wake_up_bit(&tlink->tl_flags, TCON_LINK_PENDING);
5389
5390 if (IS_ERR(tlink->tl_tcon)) {
5391 cifs_put_tlink(tlink);
5392 return ERR_PTR(-EACCES);
5393 }
5394
5395 return tlink;
5396}
Jeff Layton2de970f2010-10-06 19:51:12 -04005397
5398/*
5399 * periodic workqueue job that scans tcon_tree for a superblock and closes
5400 * out tcons.
5401 */
5402static void
5403cifs_prune_tlinks(struct work_struct *work)
5404{
5405 struct cifs_sb_info *cifs_sb = container_of(work, struct cifs_sb_info,
5406 prune_tlinks.work);
Jeff Laytonb647c352010-10-28 11:16:44 -04005407 struct rb_root *root = &cifs_sb->tlink_tree;
Colin Ian King37e12f52018-01-17 09:52:39 +00005408 struct rb_node *node;
Jeff Laytonb647c352010-10-28 11:16:44 -04005409 struct rb_node *tmp;
5410 struct tcon_link *tlink;
Jeff Layton2de970f2010-10-06 19:51:12 -04005411
Jeff Laytonb647c352010-10-28 11:16:44 -04005412 /*
5413 * Because we drop the spinlock in the loop in order to put the tlink
5414 * it's not guarded against removal of links from the tree. The only
5415 * places that remove entries from the tree are this function and
5416 * umounts. Because this function is non-reentrant and is canceled
5417 * before umount can proceed, this is safe.
5418 */
5419 spin_lock(&cifs_sb->tlink_tree_lock);
5420 node = rb_first(root);
5421 while (node != NULL) {
5422 tmp = node;
5423 node = rb_next(tmp);
5424 tlink = rb_entry(tmp, struct tcon_link, tl_rbnode);
5425
5426 if (test_bit(TCON_LINK_MASTER, &tlink->tl_flags) ||
5427 atomic_read(&tlink->tl_count) != 0 ||
5428 time_after(tlink->tl_time + TLINK_IDLE_EXPIRE, jiffies))
5429 continue;
5430
5431 cifs_get_tlink(tlink);
5432 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
5433 rb_erase(tmp, root);
5434
Jeff Layton2de970f2010-10-06 19:51:12 -04005435 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Laytonb647c352010-10-28 11:16:44 -04005436 cifs_put_tlink(tlink);
5437 spin_lock(&cifs_sb->tlink_tree_lock);
5438 }
5439 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton2de970f2010-10-06 19:51:12 -04005440
Jeff Laytonda472fc2012-03-23 14:40:53 -04005441 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
Jeff Layton2de970f2010-10-06 19:51:12 -04005442 TLINK_IDLE_EXPIRE);
5443}