blob: b68c5b9ffbeacc63b24c8945cbbb92d5ac28e328 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#define CIFS_PORT 445
61#define RFC1001_PORT 139
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063extern mempool_t *cifs_req_poolp;
Steve Frenchf92a7202018-05-24 04:11:07 -050064extern bool disable_legacy_dialects;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Jeff Layton2de970f2010-10-06 19:51:12 -040066/* FIXME: should these be tunable? */
Jeff Layton9d002df2010-10-06 19:51:11 -040067#define TLINK_ERROR_EXPIRE (1 * HZ)
Jeff Layton2de970f2010-10-06 19:51:12 -040068#define TLINK_IDLE_EXPIRE (600 * HZ)
Jeff Layton9d002df2010-10-06 19:51:11 -040069
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040070enum {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040071 /* Mount options that take no arguments */
72 Opt_user_xattr, Opt_nouser_xattr,
73 Opt_forceuid, Opt_noforceuid,
Jeff Layton72bd4812012-10-03 16:02:36 -040074 Opt_forcegid, Opt_noforcegid,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040075 Opt_noblocksend, Opt_noautotune,
76 Opt_hard, Opt_soft, Opt_perm, Opt_noperm,
Steve French2baa2682014-09-27 02:19:01 -050077 Opt_mapposix, Opt_nomapposix,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040078 Opt_mapchars, Opt_nomapchars, Opt_sfu,
79 Opt_nosfu, Opt_nodfs, Opt_posixpaths,
Steve Frenchb3266142018-05-20 23:41:10 -050080 Opt_noposixpaths, Opt_nounix, Opt_unix,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040081 Opt_nocase,
82 Opt_brl, Opt_nobrl,
Steve French3d4ef9a2018-04-25 22:19:09 -050083 Opt_handlecache, Opt_nohandlecache,
Steve French95932652016-09-23 01:36:34 -050084 Opt_forcemandatorylock, Opt_setuidfromacl, Opt_setuids,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040085 Opt_nosetuids, Opt_dynperm, Opt_nodynperm,
86 Opt_nohard, Opt_nosoft,
87 Opt_nointr, Opt_intr,
88 Opt_nostrictsync, Opt_strictsync,
89 Opt_serverino, Opt_noserverino,
90 Opt_rwpidforward, Opt_cifsacl, Opt_nocifsacl,
91 Opt_acl, Opt_noacl, Opt_locallease,
Jeff Layton1b359202012-09-19 15:20:27 -070092 Opt_sign, Opt_seal, Opt_noac,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040093 Opt_fsc, Opt_mfsymlinks,
Jeff Laytona0b3df52013-05-24 07:40:59 -040094 Opt_multiuser, Opt_sloppy, Opt_nosharesock,
Steve Frenchb2a30772015-09-29 21:49:28 -050095 Opt_persistent, Opt_nopersistent,
Steve French592fafe2015-11-03 10:08:53 -060096 Opt_resilient, Opt_noresilient,
Long Li8339dd32017-11-07 01:54:55 -070097 Opt_domainauto, Opt_rdma,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040098
99 /* Mount options which take numeric value */
100 Opt_backupuid, Opt_backupgid, Opt_uid,
101 Opt_cruid, Opt_gid, Opt_file_mode,
102 Opt_dirmode, Opt_port,
103 Opt_rsize, Opt_wsize, Opt_actimeo,
Steve French141891f2016-09-23 00:44:16 -0500104 Opt_echo_interval, Opt_max_credits,
Steve French8b217fe2016-11-11 22:36:20 -0600105 Opt_snapshot,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400106
107 /* Mount options which take string value */
108 Opt_user, Opt_pass, Opt_ip,
Jeff Layton73a999f2013-03-22 08:42:57 -0400109 Opt_domain, Opt_srcaddr, Opt_iocharset,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400110 Opt_netbiosname, Opt_servern,
Jeff Layton23db65f2012-05-15 12:20:51 -0400111 Opt_ver, Opt_vers, Opt_sec, Opt_cache,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400112
113 /* Mount options to be ignored */
114 Opt_ignore,
115
116 /* Options which could be blank */
117 Opt_blank_pass,
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100118 Opt_blank_user,
119 Opt_blank_ip,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400120
121 Opt_err
122};
123
124static const match_table_t cifs_mount_option_tokens = {
125
126 { Opt_user_xattr, "user_xattr" },
127 { Opt_nouser_xattr, "nouser_xattr" },
128 { Opt_forceuid, "forceuid" },
129 { Opt_noforceuid, "noforceuid" },
Jeff Layton72bd4812012-10-03 16:02:36 -0400130 { Opt_forcegid, "forcegid" },
131 { Opt_noforcegid, "noforcegid" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400132 { Opt_noblocksend, "noblocksend" },
133 { Opt_noautotune, "noautotune" },
134 { Opt_hard, "hard" },
135 { Opt_soft, "soft" },
136 { Opt_perm, "perm" },
137 { Opt_noperm, "noperm" },
Steve French2baa2682014-09-27 02:19:01 -0500138 { Opt_mapchars, "mapchars" }, /* SFU style */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400139 { Opt_nomapchars, "nomapchars" },
Steve French2baa2682014-09-27 02:19:01 -0500140 { Opt_mapposix, "mapposix" }, /* SFM style */
141 { Opt_nomapposix, "nomapposix" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400142 { Opt_sfu, "sfu" },
143 { Opt_nosfu, "nosfu" },
144 { Opt_nodfs, "nodfs" },
145 { Opt_posixpaths, "posixpaths" },
146 { Opt_noposixpaths, "noposixpaths" },
147 { Opt_nounix, "nounix" },
148 { Opt_nounix, "nolinux" },
Steve Frenchb3266142018-05-20 23:41:10 -0500149 { Opt_nounix, "noposix" },
150 { Opt_unix, "unix" },
151 { Opt_unix, "linux" },
152 { Opt_unix, "posix" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400153 { Opt_nocase, "nocase" },
154 { Opt_nocase, "ignorecase" },
155 { Opt_brl, "brl" },
156 { Opt_nobrl, "nobrl" },
Steve French3d4ef9a2018-04-25 22:19:09 -0500157 { Opt_handlecache, "handlecache" },
158 { Opt_nohandlecache, "nohandlecache" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400159 { Opt_nobrl, "nolock" },
160 { Opt_forcemandatorylock, "forcemandatorylock" },
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +0400161 { Opt_forcemandatorylock, "forcemand" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400162 { Opt_setuids, "setuids" },
163 { Opt_nosetuids, "nosetuids" },
Steve French95932652016-09-23 01:36:34 -0500164 { Opt_setuidfromacl, "idsfromsid" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400165 { Opt_dynperm, "dynperm" },
166 { Opt_nodynperm, "nodynperm" },
167 { Opt_nohard, "nohard" },
168 { Opt_nosoft, "nosoft" },
169 { Opt_nointr, "nointr" },
170 { Opt_intr, "intr" },
171 { Opt_nostrictsync, "nostrictsync" },
172 { Opt_strictsync, "strictsync" },
173 { Opt_serverino, "serverino" },
174 { Opt_noserverino, "noserverino" },
175 { Opt_rwpidforward, "rwpidforward" },
176 { Opt_cifsacl, "cifsacl" },
177 { Opt_nocifsacl, "nocifsacl" },
178 { Opt_acl, "acl" },
179 { Opt_noacl, "noacl" },
180 { Opt_locallease, "locallease" },
181 { Opt_sign, "sign" },
182 { Opt_seal, "seal" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400183 { Opt_noac, "noac" },
184 { Opt_fsc, "fsc" },
185 { Opt_mfsymlinks, "mfsymlinks" },
186 { Opt_multiuser, "multiuser" },
Jeff Laytond8162552012-03-23 14:40:56 -0400187 { Opt_sloppy, "sloppy" },
Jeff Laytona0b3df52013-05-24 07:40:59 -0400188 { Opt_nosharesock, "nosharesock" },
Steve Frenchb2a30772015-09-29 21:49:28 -0500189 { Opt_persistent, "persistenthandles"},
190 { Opt_nopersistent, "nopersistenthandles"},
Steve French592fafe2015-11-03 10:08:53 -0600191 { Opt_resilient, "resilienthandles"},
192 { Opt_noresilient, "noresilienthandles"},
Germano Percossi39566442016-12-15 12:31:18 +0530193 { Opt_domainauto, "domainauto"},
Long Li8339dd32017-11-07 01:54:55 -0700194 { Opt_rdma, "rdma"},
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400195
196 { Opt_backupuid, "backupuid=%s" },
197 { Opt_backupgid, "backupgid=%s" },
198 { Opt_uid, "uid=%s" },
199 { Opt_cruid, "cruid=%s" },
200 { Opt_gid, "gid=%s" },
201 { Opt_file_mode, "file_mode=%s" },
202 { Opt_dirmode, "dirmode=%s" },
203 { Opt_dirmode, "dir_mode=%s" },
204 { Opt_port, "port=%s" },
205 { Opt_rsize, "rsize=%s" },
206 { Opt_wsize, "wsize=%s" },
207 { Opt_actimeo, "actimeo=%s" },
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600208 { Opt_echo_interval, "echo_interval=%s" },
Steve French141891f2016-09-23 00:44:16 -0500209 { Opt_max_credits, "max_credits=%s" },
Steve French8b217fe2016-11-11 22:36:20 -0600210 { Opt_snapshot, "snapshot=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400211
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100212 { Opt_blank_user, "user=" },
213 { Opt_blank_user, "username=" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400214 { Opt_user, "user=%s" },
215 { Opt_user, "username=%s" },
216 { Opt_blank_pass, "pass=" },
Jesper Nilsson3c15b4c2012-11-29 17:31:16 +0100217 { Opt_blank_pass, "password=" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400218 { Opt_pass, "pass=%s" },
219 { Opt_pass, "password=%s" },
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100220 { Opt_blank_ip, "ip=" },
221 { Opt_blank_ip, "addr=" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400222 { Opt_ip, "ip=%s" },
223 { Opt_ip, "addr=%s" },
Jeff Layton73a999f2013-03-22 08:42:57 -0400224 { Opt_ignore, "unc=%s" },
225 { Opt_ignore, "target=%s" },
226 { Opt_ignore, "path=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400227 { Opt_domain, "dom=%s" },
228 { Opt_domain, "domain=%s" },
229 { Opt_domain, "workgroup=%s" },
230 { Opt_srcaddr, "srcaddr=%s" },
Jeff Layton73a999f2013-03-22 08:42:57 -0400231 { Opt_ignore, "prefixpath=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400232 { Opt_iocharset, "iocharset=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400233 { Opt_netbiosname, "netbiosname=%s" },
234 { Opt_servern, "servern=%s" },
235 { Opt_ver, "ver=%s" },
Jeff Layton23db65f2012-05-15 12:20:51 -0400236 { Opt_vers, "vers=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400237 { Opt_sec, "sec=%s" },
Jeff Layton15b6a472012-05-16 07:50:15 -0400238 { Opt_cache, "cache=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400239
240 { Opt_ignore, "cred" },
241 { Opt_ignore, "credentials" },
Jeff Laytona557b972012-05-02 14:02:40 -0400242 { Opt_ignore, "cred=%s" },
243 { Opt_ignore, "credentials=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400244 { Opt_ignore, "guest" },
245 { Opt_ignore, "rw" },
246 { Opt_ignore, "ro" },
247 { Opt_ignore, "suid" },
248 { Opt_ignore, "nosuid" },
249 { Opt_ignore, "exec" },
250 { Opt_ignore, "noexec" },
251 { Opt_ignore, "nodev" },
252 { Opt_ignore, "noauto" },
253 { Opt_ignore, "dev" },
254 { Opt_ignore, "mand" },
255 { Opt_ignore, "nomand" },
256 { Opt_ignore, "_netdev" },
257
258 { Opt_err, NULL }
259};
260
261enum {
262 Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p,
263 Opt_sec_ntlmsspi, Opt_sec_ntlmssp,
Jeff Layton76596242012-07-23 20:34:17 -0400264 Opt_ntlm, Opt_sec_ntlmi, Opt_sec_ntlmv2,
265 Opt_sec_ntlmv2i, Opt_sec_lanman,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400266 Opt_sec_none,
267
268 Opt_sec_err
269};
270
271static const match_table_t cifs_secflavor_tokens = {
272 { Opt_sec_krb5, "krb5" },
273 { Opt_sec_krb5i, "krb5i" },
274 { Opt_sec_krb5p, "krb5p" },
275 { Opt_sec_ntlmsspi, "ntlmsspi" },
276 { Opt_sec_ntlmssp, "ntlmssp" },
277 { Opt_ntlm, "ntlm" },
278 { Opt_sec_ntlmi, "ntlmi" },
Jeff Layton76596242012-07-23 20:34:17 -0400279 { Opt_sec_ntlmv2, "nontlm" },
280 { Opt_sec_ntlmv2, "ntlmv2" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400281 { Opt_sec_ntlmv2i, "ntlmv2i" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400282 { Opt_sec_lanman, "lanman" },
283 { Opt_sec_none, "none" },
284
285 { Opt_sec_err, NULL }
286};
287
Jeff Layton15b6a472012-05-16 07:50:15 -0400288/* cache flavors */
289enum {
290 Opt_cache_loose,
291 Opt_cache_strict,
292 Opt_cache_none,
293 Opt_cache_err
294};
295
296static const match_table_t cifs_cacheflavor_tokens = {
297 { Opt_cache_loose, "loose" },
298 { Opt_cache_strict, "strict" },
299 { Opt_cache_none, "none" },
300 { Opt_cache_err, NULL }
301};
302
Jeff Layton23db65f2012-05-15 12:20:51 -0400303static const match_table_t cifs_smb_version_tokens = {
304 { Smb_1, SMB1_VERSION_STRING },
Steve Frenchdd446b12012-11-28 23:21:06 -0600305 { Smb_20, SMB20_VERSION_STRING},
Steve French1080ef72011-02-24 18:07:19 +0000306 { Smb_21, SMB21_VERSION_STRING },
Steve Frenche4aa25e2012-10-01 12:26:22 -0500307 { Smb_30, SMB30_VERSION_STRING },
Steve French20b6d8b2013-06-12 22:48:41 -0500308 { Smb_302, SMB302_VERSION_STRING },
Steve French5f7fbf72014-12-17 22:52:58 -0600309#ifdef CONFIG_CIFS_SMB311
310 { Smb_311, SMB311_VERSION_STRING },
Steve Frenchaab18932015-06-23 23:37:11 -0500311 { Smb_311, ALT_SMB311_VERSION_STRING },
Steve French5f7fbf72014-12-17 22:52:58 -0600312#endif /* SMB311 */
Steve French9764c022017-09-17 10:41:35 -0500313 { Smb_3any, SMB3ANY_VERSION_STRING },
314 { Smb_default, SMBDEFAULT_VERSION_STRING },
Steve French5f7fbf72014-12-17 22:52:58 -0600315 { Smb_version_err, NULL }
Jeff Layton23db65f2012-05-15 12:20:51 -0400316};
317
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300318static int ip_connect(struct TCP_Server_Info *server);
319static int generic_ip_connect(struct TCP_Server_Info *server);
Jeff Laytonb647c352010-10-28 11:16:44 -0400320static void tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink);
Jeff Layton2de970f2010-10-06 19:51:12 -0400321static void cifs_prune_tlinks(struct work_struct *work);
Jeff Laytonb9bce2e2011-07-06 08:10:39 -0400322static int cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data,
323 const char *devname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Jeff Laytond5c56052008-12-01 18:42:33 -0500325/*
326 * cifs tcp session reconnection
327 *
328 * mark tcp session as reconnecting so temporarily locked
329 * mark all smb sessions as reconnecting for tcp session
330 * reconnect tcp session
331 * wake up waiters on reconnection? - (not needed currently)
332 */
Pavel Shilovsky28ea5292012-05-23 16:18:00 +0400333int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334cifs_reconnect(struct TCP_Server_Info *server)
335{
336 int rc = 0;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500337 struct list_head *tmp, *tmp2;
Steve French96daf2b2011-05-27 04:34:02 +0000338 struct cifs_ses *ses;
339 struct cifs_tcon *tcon;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000340 struct mid_q_entry *mid_entry;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400341 struct list_head retry_list;
Steve French50c2f752007-07-13 00:33:32 +0000342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 spin_lock(&GlobalMid_Lock);
Jeff Layton469ee612008-10-16 18:46:39 +0000344 if (server->tcpStatus == CifsExiting) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000345 /* the demux thread will exit normally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 next time through the loop */
347 spin_unlock(&GlobalMid_Lock);
348 return rc;
349 } else
350 server->tcpStatus = CifsNeedReconnect;
351 spin_unlock(&GlobalMid_Lock);
352 server->maxBuf = 0;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400353 server->max_read = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Joe Perchesf96637b2013-05-04 22:12:25 -0500355 cifs_dbg(FYI, "Reconnecting tcp session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* before reconnecting the tcp session, mark the smb session (uid)
358 and the tid bad so they are not used until reconnected */
Joe Perchesf96637b2013-05-04 22:12:25 -0500359 cifs_dbg(FYI, "%s: marking sessions and tcons for reconnect\n",
360 __func__);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530361 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -0500362 list_for_each(tmp, &server->smb_ses_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000363 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
Jeff Layton14fbf502008-11-14 13:53:46 -0500364 ses->need_reconnect = true;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500365 list_for_each(tmp2, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000366 tcon = list_entry(tmp2, struct cifs_tcon, tcon_list);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500367 tcon->need_reconnect = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
Aurelien Aptelb327a712018-01-24 13:46:10 +0100369 if (ses->tcon_ipc)
370 ses->tcon_ipc->need_reconnect = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530372 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 /* do not want to be sending data on a socket we are freeing */
Joe Perchesf96637b2013-05-04 22:12:25 -0500375 cifs_dbg(FYI, "%s: tearing down socket\n", __func__);
Jeff Layton72ca5452008-12-01 07:09:36 -0500376 mutex_lock(&server->srv_mutex);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000377 if (server->ssocket) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500378 cifs_dbg(FYI, "State: 0x%x Flags: 0x%lx\n",
379 server->ssocket->state, server->ssocket->flags);
Trond Myklebust91cf45f2007-11-12 18:10:39 -0800380 kernel_sock_shutdown(server->ssocket, SHUT_WR);
Joe Perchesf96637b2013-05-04 22:12:25 -0500381 cifs_dbg(FYI, "Post shutdown state: 0x%x Flags: 0x%lx\n",
382 server->ssocket->state, server->ssocket->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 sock_release(server->ssocket);
384 server->ssocket = NULL;
385 }
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -0500386 server->sequence_number = 0;
387 server->session_estab = false;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500388 kfree(server->session_key.response);
389 server->session_key.response = NULL;
390 server->session_key.len = 0;
Steve Frenchfda35942011-01-20 18:06:34 +0000391 server->lstrp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500393 /* mark submitted MIDs for retry and issue callback */
Jeff Layton3c1105d2011-05-22 07:09:13 -0400394 INIT_LIST_HEAD(&retry_list);
Joe Perchesf96637b2013-05-04 22:12:25 -0500395 cifs_dbg(FYI, "%s: moving mids to private list\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 spin_lock(&GlobalMid_Lock);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500397 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
398 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400399 if (mid_entry->mid_state == MID_REQUEST_SUBMITTED)
400 mid_entry->mid_state = MID_RETRY_NEEDED;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400401 list_move(&mid_entry->qhead, &retry_list);
402 }
403 spin_unlock(&GlobalMid_Lock);
Rabin Vincent820962d2015-12-23 07:32:41 +0100404 mutex_unlock(&server->srv_mutex);
Jeff Layton3c1105d2011-05-22 07:09:13 -0400405
Joe Perchesf96637b2013-05-04 22:12:25 -0500406 cifs_dbg(FYI, "%s: issuing mid callbacks\n", __func__);
Jeff Layton3c1105d2011-05-22 07:09:13 -0400407 list_for_each_safe(tmp, tmp2, &retry_list) {
408 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500409 list_del_init(&mid_entry->qhead);
410 mid_entry->callback(mid_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Jeff Layton7fdbaa12011-06-10 16:14:57 -0400413 do {
Steve French6c3d8902006-07-31 22:46:20 +0000414 try_to_freeze();
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300415
416 /* we should try only the port we connected to before */
Jeff Layton73e216a2013-09-05 08:38:10 -0400417 mutex_lock(&server->srv_mutex);
Long Li781a8052017-11-22 17:38:36 -0700418 if (cifs_rdma_enabled(server))
419 rc = smbd_reconnect(server);
420 else
421 rc = generic_ip_connect(server);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000422 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500423 cifs_dbg(FYI, "reconnect error %d\n", rc);
Federico Sauter4afe2602015-03-17 17:45:28 +0100424 mutex_unlock(&server->srv_mutex);
Steve French0cb766a2005-04-28 22:41:11 -0700425 msleep(3000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 } else {
427 atomic_inc(&tcpSesReconnectCount);
428 spin_lock(&GlobalMid_Lock);
Jeff Layton469ee612008-10-16 18:46:39 +0000429 if (server->tcpStatus != CifsExiting)
Steve Frenchfd88ce92011-04-12 01:01:14 +0000430 server->tcpStatus = CifsNeedNegotiate;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000431 spin_unlock(&GlobalMid_Lock);
Federico Sauter4afe2602015-03-17 17:45:28 +0100432 mutex_unlock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
Jeff Layton7fdbaa12011-06-10 16:14:57 -0400434 } while (server->tcpStatus == CifsNeedReconnect);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500435
Sachin Prabhub8c60012016-10-20 19:52:24 -0400436 if (server->tcpStatus == CifsNeedNegotiate)
437 mod_delayed_work(cifsiod_wq, &server->echo, 0);
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return rc;
440}
441
Jeff Laytonc74093b2011-01-11 07:24:23 -0500442static void
443cifs_echo_request(struct work_struct *work)
444{
445 int rc;
446 struct TCP_Server_Info *server = container_of(work,
447 struct TCP_Server_Info, echo.work);
Sachin Prabhub8c60012016-10-20 19:52:24 -0400448 unsigned long echo_interval;
Jeff Laytonc74093b2011-01-11 07:24:23 -0500449
Jeff Layton247ec9b2011-02-04 17:09:50 -0500450 /*
Sachin Prabhub8c60012016-10-20 19:52:24 -0400451 * If we need to renegotiate, set echo interval to zero to
452 * immediately call echo service where we can renegotiate.
453 */
454 if (server->tcpStatus == CifsNeedNegotiate)
455 echo_interval = 0;
456 else
457 echo_interval = server->echo_interval;
458
459 /*
460 * We cannot send an echo if it is disabled.
461 * Also, no need to ping if we got a response recently.
Jeff Layton247ec9b2011-02-04 17:09:50 -0500462 */
Steve French4fcd1812016-06-22 20:12:05 -0500463
464 if (server->tcpStatus == CifsNeedReconnect ||
Sachin Prabhub8c60012016-10-20 19:52:24 -0400465 server->tcpStatus == CifsExiting ||
466 server->tcpStatus == CifsNew ||
Pavel Shilovskyf6d76172012-05-25 14:47:16 +0400467 (server->ops->can_echo && !server->ops->can_echo(server)) ||
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600468 time_before(jiffies, server->lstrp + echo_interval - HZ))
Jeff Laytonc74093b2011-01-11 07:24:23 -0500469 goto requeue_echo;
470
Pavel Shilovskyf6d76172012-05-25 14:47:16 +0400471 rc = server->ops->echo ? server->ops->echo(server) : -ENOSYS;
Jeff Laytonc74093b2011-01-11 07:24:23 -0500472 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500473 cifs_dbg(FYI, "Unable to send echo request to server: %s\n",
474 server->hostname);
Jeff Laytonc74093b2011-01-11 07:24:23 -0500475
476requeue_echo:
Sachin Prabhub8c60012016-10-20 19:52:24 -0400477 queue_delayed_work(cifsiod_wq, &server->echo, server->echo_interval);
Jeff Laytonc74093b2011-01-11 07:24:23 -0500478}
479
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400480static bool
Jeff Layton2a37ef92011-10-19 15:29:23 -0400481allocate_buffers(struct TCP_Server_Info *server)
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400482{
Jeff Layton2a37ef92011-10-19 15:29:23 -0400483 if (!server->bigbuf) {
484 server->bigbuf = (char *)cifs_buf_get();
485 if (!server->bigbuf) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500486 cifs_dbg(VFS, "No memory for large SMB response\n");
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400487 msleep(3000);
488 /* retry will check if exiting */
489 return false;
490 }
Jeff Layton2a37ef92011-10-19 15:29:23 -0400491 } else if (server->large_buf) {
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400492 /* we are reusing a dirty large buf, clear its start */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400493 memset(server->bigbuf, 0, HEADER_SIZE(server));
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400494 }
495
Jeff Layton2a37ef92011-10-19 15:29:23 -0400496 if (!server->smallbuf) {
497 server->smallbuf = (char *)cifs_small_buf_get();
498 if (!server->smallbuf) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500499 cifs_dbg(VFS, "No memory for SMB response\n");
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400500 msleep(1000);
501 /* retry will check if exiting */
502 return false;
503 }
504 /* beginning of smb buffer is cleared in our buf_get */
505 } else {
506 /* if existing small buf clear beginning */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400507 memset(server->smallbuf, 0, HEADER_SIZE(server));
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400508 }
509
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400510 return true;
511}
512
Jeff Laytonba749e62011-10-11 06:41:32 -0400513static bool
514server_unresponsive(struct TCP_Server_Info *server)
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400515{
Pavel Shilovsky6dae51a2012-02-21 16:50:23 +0300516 /*
517 * We need to wait 2 echo intervals to make sure we handle such
518 * situations right:
519 * 1s client sends a normal SMB request
520 * 2s client gets a response
521 * 30s echo workqueue job pops, and decides we got a response recently
522 * and don't need to send another
523 * ...
524 * 65s kernel_recvmsg times out, and we see that we haven't gotten
525 * a response in >60s.
526 */
Samuel Cabrero76e75272017-07-11 12:44:39 +0200527 if ((server->tcpStatus == CifsGood ||
528 server->tcpStatus == CifsNeedNegotiate) &&
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600529 time_after(jiffies, server->lstrp + 2 * server->echo_interval)) {
530 cifs_dbg(VFS, "Server %s has not responded in %lu seconds. Reconnecting...\n",
531 server->hostname, (2 * server->echo_interval) / HZ);
Jeff Laytonba749e62011-10-11 06:41:32 -0400532 cifs_reconnect(server);
533 wake_up(&server->response_q);
534 return true;
535 }
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400536
Jeff Laytonba749e62011-10-11 06:41:32 -0400537 return false;
538}
539
Al Viro71335662016-01-09 19:54:50 -0500540static int
541cifs_readv_from_socket(struct TCP_Server_Info *server, struct msghdr *smb_msg)
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400542{
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400543 int length = 0;
544 int total_read;
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400545
Al Viro71335662016-01-09 19:54:50 -0500546 smb_msg->msg_control = NULL;
547 smb_msg->msg_controllen = 0;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400548
Al Viro71335662016-01-09 19:54:50 -0500549 for (total_read = 0; msg_data_left(smb_msg); total_read += length) {
Jeff Layton95edcff2011-12-01 20:22:41 -0500550 try_to_freeze();
551
Al Viro71335662016-01-09 19:54:50 -0500552 if (server_unresponsive(server))
553 return -ECONNABORTED;
Long Li2fef1372017-11-22 17:38:41 -0700554 if (cifs_rdma_enabled(server) && server->smbd_conn)
555 length = smbd_recv(server->smbd_conn, smb_msg);
556 else
557 length = sock_recvmsg(server->ssocket, smb_msg, 0);
Al Viro71335662016-01-09 19:54:50 -0500558
559 if (server->tcpStatus == CifsExiting)
560 return -ESHUTDOWN;
561
562 if (server->tcpStatus == CifsNeedReconnect) {
563 cifs_reconnect(server);
564 return -ECONNABORTED;
Jeff Laytonba749e62011-10-11 06:41:32 -0400565 }
566
Al Viro71335662016-01-09 19:54:50 -0500567 if (length == -ERESTARTSYS ||
568 length == -EAGAIN ||
569 length == -EINTR) {
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400570 /*
571 * Minimum sleep to prevent looping, allowing socket
572 * to clear and app threads to set tcpStatus
573 * CifsNeedReconnect if server hung.
574 */
575 usleep_range(1000, 2000);
576 length = 0;
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400577 continue;
Al Viro71335662016-01-09 19:54:50 -0500578 }
579
580 if (length <= 0) {
Al Viro09aab882015-11-13 03:00:17 -0500581 cifs_dbg(FYI, "Received no data or error: %d\n", length);
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400582 cifs_reconnect(server);
Al Viro71335662016-01-09 19:54:50 -0500583 return -ECONNABORTED;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400584 }
585 }
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400586 return total_read;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400587}
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400588
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400589int
590cifs_read_from_socket(struct TCP_Server_Info *server, char *buf,
591 unsigned int to_read)
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400592{
Al Viro71335662016-01-09 19:54:50 -0500593 struct msghdr smb_msg;
594 struct kvec iov = {.iov_base = buf, .iov_len = to_read};
595 iov_iter_kvec(&smb_msg.msg_iter, READ | ITER_KVEC, &iov, 1, to_read);
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400596
Al Viro71335662016-01-09 19:54:50 -0500597 return cifs_readv_from_socket(server, &smb_msg);
598}
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400599
Al Viro71335662016-01-09 19:54:50 -0500600int
601cifs_read_page_from_socket(struct TCP_Server_Info *server, struct page *page,
602 unsigned int to_read)
603{
604 struct msghdr smb_msg;
605 struct bio_vec bv = {.bv_page = page, .bv_len = to_read};
606 iov_iter_bvec(&smb_msg.msg_iter, READ | ITER_BVEC, &bv, 1, to_read);
607 return cifs_readv_from_socket(server, &smb_msg);
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400608}
609
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400610static bool
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400611is_smb_response(struct TCP_Server_Info *server, unsigned char type)
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400612{
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400613 /*
614 * The first byte big endian of the length field,
615 * is actually not part of the length but the type
616 * with the most common, zero, as regular data.
617 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400618 switch (type) {
619 case RFC1002_SESSION_MESSAGE:
620 /* Regular SMB response */
621 return true;
622 case RFC1002_SESSION_KEEP_ALIVE:
Joe Perchesf96637b2013-05-04 22:12:25 -0500623 cifs_dbg(FYI, "RFC 1002 session keep alive\n");
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400624 break;
625 case RFC1002_POSITIVE_SESSION_RESPONSE:
Joe Perchesf96637b2013-05-04 22:12:25 -0500626 cifs_dbg(FYI, "RFC 1002 positive session response\n");
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400627 break;
628 case RFC1002_NEGATIVE_SESSION_RESPONSE:
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400629 /*
630 * We get this from Windows 98 instead of an error on
631 * SMB negprot response.
632 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500633 cifs_dbg(FYI, "RFC 1002 negative session response\n");
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400634 /* give server a second to clean up */
635 msleep(1000);
636 /*
637 * Always try 445 first on reconnect since we get NACK
638 * on some if we ever connected to port 139 (the NACK
639 * is since we do not begin with RFC1001 session
640 * initialize frame).
641 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400642 cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400643 cifs_reconnect(server);
644 wake_up(&server->response_q);
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400645 break;
646 default:
Joe Perchesf96637b2013-05-04 22:12:25 -0500647 cifs_dbg(VFS, "RFC 1002 unknown response type 0x%x\n", type);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400648 cifs_reconnect(server);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400649 }
650
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400651 return false;
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400652}
653
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400654void
655dequeue_mid(struct mid_q_entry *mid, bool malformed)
Jeff Laytonea1f4502011-10-19 15:29:05 -0400656{
657#ifdef CONFIG_CIFS_STATS2
658 mid->when_received = jiffies;
659#endif
660 spin_lock(&GlobalMid_Lock);
661 if (!malformed)
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400662 mid->mid_state = MID_RESPONSE_RECEIVED;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400663 else
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400664 mid->mid_state = MID_RESPONSE_MALFORMED;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400665 list_del_init(&mid->qhead);
666 spin_unlock(&GlobalMid_Lock);
667}
668
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400669static void
670handle_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server,
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400671 char *buf, int malformed)
Jeff Laytonea1f4502011-10-19 15:29:05 -0400672{
Pavel Shilovsky316cf942012-05-23 14:31:03 +0400673 if (server->ops->check_trans2 &&
674 server->ops->check_trans2(mid, server, buf, malformed))
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400675 return;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400676 mid->resp_buf = buf;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400677 mid->large_buf = server->large_buf;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400678 /* Was previous buf put in mpx struct for multi-rsp? */
679 if (!mid->multiRsp) {
680 /* smb buffer will be freed by user thread */
681 if (server->large_buf)
682 server->bigbuf = NULL;
683 else
684 server->smallbuf = NULL;
685 }
Jeff Laytonffc00e22011-10-19 15:29:13 -0400686 dequeue_mid(mid, malformed);
Pavel Shilovskyad69bae2011-08-01 13:19:43 +0400687}
688
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400689static void clean_demultiplex_info(struct TCP_Server_Info *server)
690{
691 int length;
692
693 /* take it off the list, if it's not already */
694 spin_lock(&cifs_tcp_ses_lock);
695 list_del_init(&server->tcp_ses_list);
696 spin_unlock(&cifs_tcp_ses_lock);
697
698 spin_lock(&GlobalMid_Lock);
699 server->tcpStatus = CifsExiting;
700 spin_unlock(&GlobalMid_Lock);
701 wake_up_all(&server->response_q);
702
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400703 /* check if we have blocked requests that need to free */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300704 spin_lock(&server->req_lock);
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400705 if (server->credits <= 0)
706 server->credits = 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300707 spin_unlock(&server->req_lock);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400708 /*
709 * Although there should not be any requests blocked on this queue it
710 * can not hurt to be paranoid and try to wake up requests that may
711 * haven been blocked when more than 50 at time were on the wire to the
712 * same server - they now will see the session is in exit state and get
713 * out of SendReceive.
714 */
715 wake_up_all(&server->request_q);
716 /* give those requests time to exit */
717 msleep(125);
Long Libce9ce72017-11-22 17:38:38 -0700718 if (cifs_rdma_enabled(server) && server->smbd_conn) {
719 smbd_destroy(server->smbd_conn);
720 server->smbd_conn = NULL;
721 }
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400722 if (server->ssocket) {
723 sock_release(server->ssocket);
724 server->ssocket = NULL;
725 }
726
727 if (!list_empty(&server->pending_mid_q)) {
728 struct list_head dispose_list;
729 struct mid_q_entry *mid_entry;
730 struct list_head *tmp, *tmp2;
731
732 INIT_LIST_HEAD(&dispose_list);
733 spin_lock(&GlobalMid_Lock);
734 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
735 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500736 cifs_dbg(FYI, "Clearing mid 0x%llx\n", mid_entry->mid);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400737 mid_entry->mid_state = MID_SHUTDOWN;
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400738 list_move(&mid_entry->qhead, &dispose_list);
739 }
740 spin_unlock(&GlobalMid_Lock);
741
742 /* now walk dispose list and issue callbacks */
743 list_for_each_safe(tmp, tmp2, &dispose_list) {
744 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500745 cifs_dbg(FYI, "Callback mid 0x%llx\n", mid_entry->mid);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400746 list_del_init(&mid_entry->qhead);
747 mid_entry->callback(mid_entry);
748 }
749 /* 1/8th of sec is more than enough time for them to exit */
750 msleep(125);
751 }
752
753 if (!list_empty(&server->pending_mid_q)) {
754 /*
755 * mpx threads have not exited yet give them at least the smb
756 * send timeout time for long ops.
757 *
758 * Due to delays on oplock break requests, we need to wait at
759 * least 45 seconds before giving up on a request getting a
760 * response and going ahead and killing cifsd.
761 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500762 cifs_dbg(FYI, "Wait for exit from demultiplex thread\n");
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400763 msleep(46000);
764 /*
765 * If threads still have not exited they are probably never
766 * coming home not much else we can do but free the memory.
767 */
768 }
769
770 kfree(server->hostname);
771 kfree(server);
772
773 length = atomic_dec_return(&tcpSesAllocCount);
774 if (length > 0)
David Rientjes11d83362015-04-14 15:48:21 -0700775 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400776}
777
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400778static int
Jeff Laytone9097ab2011-10-19 15:29:40 -0400779standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid)
780{
781 int length;
782 char *buf = server->smallbuf;
Ronnie Sahlberg2e964672018-04-09 18:06:26 +1000783 unsigned int pdu_length = server->pdu_size;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400784
785 /* make sure this will fit in a large buffer */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100786 if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) -
787 server->vals->header_preamble_size) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500788 cifs_dbg(VFS, "SMB response too long (%u bytes)\n", pdu_length);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400789 cifs_reconnect(server);
790 wake_up(&server->response_q);
Pavel Shilovsky3fabaa22014-07-10 09:55:52 +0400791 return -ECONNABORTED;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400792 }
793
794 /* switch to large buffer if too big for a small one */
795 if (pdu_length > MAX_CIFS_SMALL_BUFFER_SIZE - 4) {
796 server->large_buf = true;
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400797 memcpy(server->bigbuf, buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400798 buf = server->bigbuf;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400799 }
800
801 /* now read the rest */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400802 length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1,
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100803 pdu_length - HEADER_SIZE(server) + 1
804 + server->vals->header_preamble_size);
805
Jeff Laytone9097ab2011-10-19 15:29:40 -0400806 if (length < 0)
807 return length;
808 server->total_read += length;
809
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400810 dump_smb(buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400811
Pavel Shilovsky4326ed22016-11-17 15:24:46 -0800812 return cifs_handle_standard(server, mid);
813}
814
815int
816cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid)
817{
818 char *buf = server->large_buf ? server->bigbuf : server->smallbuf;
819 int length;
820
Jeff Laytone9097ab2011-10-19 15:29:40 -0400821 /*
822 * We know that we received enough to get to the MID as we
823 * checked the pdu_length earlier. Now check to see
824 * if the rest of the header is OK. We borrow the length
825 * var for the rest of the loop to avoid a new stack var.
826 *
827 * 48 bytes is enough to display the header and a little bit
828 * into the payload for debugging purposes.
829 */
Steve French373512e2015-12-18 13:05:30 -0600830 length = server->ops->check_message(buf, server->total_read, server);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400831 if (length != 0)
832 cifs_dump_mem("Bad SMB: ", buf,
833 min_t(unsigned int, server->total_read, 48));
834
Pavel Shilovsky511c54a2017-07-08 14:32:00 -0700835 if (server->ops->is_session_expired &&
836 server->ops->is_session_expired(buf)) {
837 cifs_reconnect(server);
838 wake_up(&server->response_q);
839 return -1;
840 }
841
Pavel Shilovsky2e44b282012-09-18 16:20:33 -0700842 if (server->ops->is_status_pending &&
843 server->ops->is_status_pending(buf, server, length))
844 return -1;
845
Jeff Laytonff4fa4a2012-02-07 06:31:05 -0500846 if (!mid)
847 return length;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400848
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400849 handle_mid(mid, server, buf, length);
Jeff Laytonff4fa4a2012-02-07 06:31:05 -0500850 return 0;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400851}
852
853static int
Al Viro7c97c202011-06-21 08:51:28 -0400854cifs_demultiplex_thread(void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
856 int length;
Al Viro7c97c202011-06-21 08:51:28 -0400857 struct TCP_Server_Info *server = p;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400858 unsigned int pdu_length;
859 char *buf = NULL;
Steve Frencha5c3e1c2014-09-16 04:16:19 -0500860 struct task_struct *task_to_wake = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 struct mid_q_entry *mid_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 current->flags |= PF_MEMALLOC;
Joe Perchesf96637b2013-05-04 22:12:25 -0500864 cifs_dbg(FYI, "Demultiplex PID: %d\n", task_pid_nr(current));
Jeff Layton93d0ec82008-08-02 08:00:48 -0400865
866 length = atomic_inc_return(&tcpSesAllocCount);
867 if (length > 1)
David Rientjes11d83362015-04-14 15:48:21 -0700868 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700870 set_freezable();
Jeff Layton469ee612008-10-16 18:46:39 +0000871 while (server->tcpStatus != CifsExiting) {
Steve Frenchede13272005-08-30 20:10:14 -0700872 if (try_to_freeze())
873 continue;
Steve Frenchb8643e12005-04-28 22:41:07 -0700874
Jeff Layton2a37ef92011-10-19 15:29:23 -0400875 if (!allocate_buffers(server))
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400876 continue;
Steve Frenchb8643e12005-04-28 22:41:07 -0700877
Jeff Layton2a37ef92011-10-19 15:29:23 -0400878 server->large_buf = false;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400879 buf = server->smallbuf;
Steve Frenchf01d5e12007-08-30 21:13:31 +0000880 pdu_length = 4; /* enough to get RFC1001 header */
Steve Frenchfda35942011-01-20 18:06:34 +0000881
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400882 length = cifs_read_from_socket(server, buf, pdu_length);
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400883 if (length < 0)
Steve Frenchfda35942011-01-20 18:06:34 +0000884 continue;
Ronnie Sahlberg977b6172018-06-01 10:53:02 +1000885
886 if (server->vals->header_preamble_size == 0)
887 server->total_read = 0;
888 else
889 server->total_read = length;
Steve French67010fb2005-04-28 22:41:09 -0700890
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400891 /*
892 * The right amount was read from socket - 4 bytes,
893 * so we can now interpret the length field.
894 */
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400895 pdu_length = get_rfc1002_length(buf);
Ronnie Sahlberg2e964672018-04-09 18:06:26 +1000896 server->pdu_size = pdu_length;
Steve French46810cb2005-04-28 22:41:09 -0700897
Joe Perchesf96637b2013-05-04 22:12:25 -0500898 cifs_dbg(FYI, "RFC1002 header 0x%x\n", pdu_length);
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400899 if (!is_smb_response(server, buf[0]))
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000900 continue;
Steve Frenche4eb2952005-04-28 22:41:09 -0700901
Jeff Layton89482a52011-10-19 15:28:57 -0400902 /* make sure we have enough to get to the MID */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100903 if (pdu_length < HEADER_SIZE(server) - 1 -
904 server->vals->header_preamble_size) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500905 cifs_dbg(VFS, "SMB response too short (%u bytes)\n",
906 pdu_length);
Jeff Layton89482a52011-10-19 15:28:57 -0400907 cifs_reconnect(server);
908 wake_up(&server->response_q);
909 continue;
Steve Frenche4eb2952005-04-28 22:41:09 -0700910 }
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400911
Jeff Layton89482a52011-10-19 15:28:57 -0400912 /* read down to the MID */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100913 length = cifs_read_from_socket(server,
914 buf + server->vals->header_preamble_size,
915 HEADER_SIZE(server) - 1
916 - server->vals->header_preamble_size);
Jeff Layton89482a52011-10-19 15:28:57 -0400917 if (length < 0)
918 continue;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400919 server->total_read += length;
Jeff Layton89482a52011-10-19 15:28:57 -0400920
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -0800921 if (server->ops->is_transform_hdr &&
922 server->ops->receive_transform &&
923 server->ops->is_transform_hdr(buf)) {
924 length = server->ops->receive_transform(server,
925 &mid_entry);
926 } else {
927 mid_entry = server->ops->find_mid(server, buf);
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400928
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -0800929 if (!mid_entry || !mid_entry->receive)
930 length = standard_receive3(server, mid_entry);
931 else
932 length = mid_entry->receive(server, mid_entry);
933 }
Jeff Layton44d22d82011-10-19 15:29:49 -0400934
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400935 if (length < 0)
Steve Frenche4eb2952005-04-28 22:41:09 -0700936 continue;
937
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400938 if (server->large_buf)
Jeff Laytone9097ab2011-10-19 15:29:40 -0400939 buf = server->bigbuf;
Steve Frenche4eb2952005-04-28 22:41:09 -0700940
Steve Frenchfda35942011-01-20 18:06:34 +0000941 server->lstrp = jiffies;
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500942 if (mid_entry != NULL) {
Ronnie Sahlberge19b2bc2018-04-09 18:06:28 +1000943 mid_entry->resp_buf_size = server->pdu_size;
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800944 if ((mid_entry->mid_flags & MID_WAIT_CANCELLED) &&
945 mid_entry->mid_state == MID_RESPONSE_RECEIVED &&
946 server->ops->handle_cancelled_mid)
947 server->ops->handle_cancelled_mid(
948 mid_entry->resp_buf,
949 server);
950
Jeff Layton2a37ef92011-10-19 15:29:23 -0400951 if (!mid_entry->multiRsp || mid_entry->multiEnd)
952 mid_entry->callback(mid_entry);
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800953 } else if (server->ops->is_oplock_break &&
954 server->ops->is_oplock_break(buf, server)) {
955 cifs_dbg(FYI, "Received oplock break\n");
956 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500957 cifs_dbg(VFS, "No task to wake, unknown frame received! NumMids %d\n",
958 atomic_read(&midCount));
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400959 cifs_dump_mem("Received Data is: ", buf,
960 HEADER_SIZE(server));
Steve French39798772006-05-31 22:40:51 +0000961#ifdef CONFIG_CIFS_DEBUG2
Pavel Shilovsky7f0adb52012-05-28 15:50:10 +0400962 if (server->ops->dump_detail)
Steve French71992e622018-05-06 15:58:51 -0500963 server->ops->dump_detail(buf, server);
Steve French39798772006-05-31 22:40:51 +0000964 cifs_dump_mids(server);
965#endif /* CIFS_DEBUG2 */
Steve French50c2f752007-07-13 00:33:32 +0000966
Steve Frenche4eb2952005-04-28 22:41:09 -0700967 }
968 } /* end while !EXITING */
969
Justin P. Mattockfd62cb72011-02-24 22:15:02 -0800970 /* buffer usually freed in free_mid - need to free it here on exit */
Jeff Layton2a37ef92011-10-19 15:29:23 -0400971 cifs_buf_release(server->bigbuf);
972 if (server->smallbuf) /* no sense logging a debug message if NULL */
973 cifs_small_buf_release(server->smallbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Steve Frencha5c3e1c2014-09-16 04:16:19 -0500975 task_to_wake = xchg(&server->tsk, NULL);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400976 clean_demultiplex_info(server);
Steve Frencha5c3e1c2014-09-16 04:16:19 -0500977
978 /* if server->tsk was NULL then wait for a signal before exiting */
979 if (!task_to_wake) {
980 set_current_state(TASK_INTERRUPTIBLE);
981 while (!signal_pending(current)) {
982 schedule();
983 set_current_state(TASK_INTERRUPTIBLE);
984 }
985 set_current_state(TASK_RUNNING);
986 }
987
Jeff Layton0468a2c2008-12-01 07:09:35 -0500988 module_put_and_exit(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
990
Jeff Laytonc359cf32007-11-16 22:22:06 +0000991/* extract the host portion of the UNC string */
992static char *
993extract_hostname(const char *unc)
994{
995 const char *src;
996 char *dst, *delim;
997 unsigned int len;
998
999 /* skip double chars at beginning of string */
1000 /* BB: check validity of these bytes? */
1001 src = unc + 2;
1002
1003 /* delimiter between hostname and sharename is always '\\' now */
1004 delim = strchr(src, '\\');
1005 if (!delim)
1006 return ERR_PTR(-EINVAL);
1007
1008 len = delim - src;
1009 dst = kmalloc((len + 1), GFP_KERNEL);
1010 if (dst == NULL)
1011 return ERR_PTR(-ENOMEM);
1012
1013 memcpy(dst, src, len);
1014 dst[len] = '\0';
1015
1016 return dst;
1017}
1018
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001019static int get_option_ul(substring_t args[], unsigned long *option)
1020{
1021 int rc;
1022 char *string;
1023
1024 string = match_strdup(args);
1025 if (string == NULL)
1026 return -ENOMEM;
Sachin Prabhubfa890a2012-04-13 14:04:32 +01001027 rc = kstrtoul(string, 0, option);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001028 kfree(string);
1029
1030 return rc;
1031}
1032
Eric W. Biederman3da46562013-02-06 01:37:39 -08001033static int get_option_uid(substring_t args[], kuid_t *result)
1034{
1035 unsigned long value;
1036 kuid_t uid;
1037 int rc;
1038
1039 rc = get_option_ul(args, &value);
1040 if (rc)
1041 return rc;
1042
1043 uid = make_kuid(current_user_ns(), value);
1044 if (!uid_valid(uid))
1045 return -EINVAL;
1046
1047 *result = uid;
1048 return 0;
1049}
1050
1051static int get_option_gid(substring_t args[], kgid_t *result)
1052{
1053 unsigned long value;
1054 kgid_t gid;
1055 int rc;
1056
1057 rc = get_option_ul(args, &value);
1058 if (rc)
1059 return rc;
1060
1061 gid = make_kgid(current_user_ns(), value);
1062 if (!gid_valid(gid))
1063 return -EINVAL;
1064
1065 *result = gid;
1066 return 0;
1067}
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001068
1069static int cifs_parse_security_flavors(char *value,
1070 struct smb_vol *vol)
1071{
1072
1073 substring_t args[MAX_OPT_ARGS];
1074
Jeff Layton1e3cc572013-06-10 17:12:23 -05001075 /*
1076 * With mount options, the last one should win. Reset any existing
1077 * settings back to default.
1078 */
1079 vol->sectype = Unspecified;
1080 vol->sign = false;
1081
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001082 switch (match_token(value, cifs_secflavor_tokens, args)) {
Jeff Layton3f618222013-06-12 19:52:14 -05001083 case Opt_sec_krb5p:
1084 cifs_dbg(VFS, "sec=krb5p is not supported!\n");
1085 return 1;
1086 case Opt_sec_krb5i:
1087 vol->sign = true;
1088 /* Fallthrough */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001089 case Opt_sec_krb5:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001090 vol->sectype = Kerberos;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001091 break;
1092 case Opt_sec_ntlmsspi:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001093 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001094 /* Fallthrough */
1095 case Opt_sec_ntlmssp:
1096 vol->sectype = RawNTLMSSP;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001097 break;
1098 case Opt_sec_ntlmi:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001099 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001100 /* Fallthrough */
1101 case Opt_ntlm:
1102 vol->sectype = NTLM;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001103 break;
1104 case Opt_sec_ntlmv2i:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001105 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001106 /* Fallthrough */
1107 case Opt_sec_ntlmv2:
1108 vol->sectype = NTLMv2;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001109 break;
1110#ifdef CONFIG_CIFS_WEAK_PW_HASH
1111 case Opt_sec_lanman:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001112 vol->sectype = LANMAN;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001113 break;
1114#endif
1115 case Opt_sec_none:
1116 vol->nullauth = 1;
1117 break;
1118 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001119 cifs_dbg(VFS, "bad security option: %s\n", value);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001120 return 1;
1121 }
1122
1123 return 0;
1124}
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126static int
Jeff Layton15b6a472012-05-16 07:50:15 -04001127cifs_parse_cache_flavor(char *value, struct smb_vol *vol)
1128{
1129 substring_t args[MAX_OPT_ARGS];
1130
1131 switch (match_token(value, cifs_cacheflavor_tokens, args)) {
1132 case Opt_cache_loose:
1133 vol->direct_io = false;
1134 vol->strict_io = false;
1135 break;
1136 case Opt_cache_strict:
1137 vol->direct_io = false;
1138 vol->strict_io = true;
1139 break;
1140 case Opt_cache_none:
1141 vol->direct_io = true;
1142 vol->strict_io = false;
1143 break;
1144 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001145 cifs_dbg(VFS, "bad cache= option: %s\n", value);
Jeff Layton15b6a472012-05-16 07:50:15 -04001146 return 1;
1147 }
1148 return 0;
1149}
1150
1151static int
Jeff Layton23db65f2012-05-15 12:20:51 -04001152cifs_parse_smb_version(char *value, struct smb_vol *vol)
1153{
1154 substring_t args[MAX_OPT_ARGS];
1155
1156 switch (match_token(value, cifs_smb_version_tokens, args)) {
1157 case Smb_1:
Steve Frenchf92a7202018-05-24 04:11:07 -05001158 if (disable_legacy_dialects) {
1159 cifs_dbg(VFS, "mount with legacy dialect disabled\n");
1160 return 1;
1161 }
Jeff Layton23db65f2012-05-15 12:20:51 -04001162 vol->ops = &smb1_operations;
1163 vol->vals = &smb1_values;
1164 break;
Steve Frenchdd446b12012-11-28 23:21:06 -06001165 case Smb_20:
Steve Frenchf92a7202018-05-24 04:11:07 -05001166 if (disable_legacy_dialects) {
1167 cifs_dbg(VFS, "mount with legacy dialect disabled\n");
1168 return 1;
1169 }
Pavel Shilovsky53ef1012013-09-05 16:11:28 +04001170 vol->ops = &smb20_operations;
Steve Frenchdd446b12012-11-28 23:21:06 -06001171 vol->vals = &smb20_values;
1172 break;
Steve French1080ef72011-02-24 18:07:19 +00001173 case Smb_21:
1174 vol->ops = &smb21_operations;
1175 vol->vals = &smb21_values;
1176 break;
Steve Frenche4aa25e2012-10-01 12:26:22 -05001177 case Smb_30:
Steve French38107d42012-12-08 22:08:06 -06001178 vol->ops = &smb30_operations;
Steve Frenche4aa25e2012-10-01 12:26:22 -05001179 vol->vals = &smb30_values;
1180 break;
Steve French20b6d8b2013-06-12 22:48:41 -05001181 case Smb_302:
1182 vol->ops = &smb30_operations; /* currently identical with 3.0 */
1183 vol->vals = &smb302_values;
1184 break;
Steve French5f7fbf72014-12-17 22:52:58 -06001185#ifdef CONFIG_CIFS_SMB311
1186 case Smb_311:
Steve Frenchaab18932015-06-23 23:37:11 -05001187 vol->ops = &smb311_operations;
Steve French5f7fbf72014-12-17 22:52:58 -06001188 vol->vals = &smb311_values;
1189 break;
1190#endif /* SMB311 */
Steve French9764c022017-09-17 10:41:35 -05001191 case Smb_3any:
1192 vol->ops = &smb30_operations; /* currently identical with 3.0 */
1193 vol->vals = &smb3any_values;
1194 break;
1195 case Smb_default:
1196 vol->ops = &smb30_operations; /* currently identical with 3.0 */
1197 vol->vals = &smbdefault_values;
1198 break;
Jeff Layton23db65f2012-05-15 12:20:51 -04001199 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001200 cifs_dbg(VFS, "Unknown vers= option specified: %s\n", value);
Jeff Layton23db65f2012-05-15 12:20:51 -04001201 return 1;
1202 }
1203 return 0;
1204}
1205
Jeff Laytond387a5c2012-12-10 06:10:46 -05001206/*
1207 * Parse a devname into substrings and populate the vol->UNC and vol->prepath
1208 * fields with the result. Returns 0 on success and an error otherwise.
1209 */
1210static int
1211cifs_parse_devname(const char *devname, struct smb_vol *vol)
1212{
1213 char *pos;
1214 const char *delims = "/\\";
1215 size_t len;
1216
1217 /* make sure we have a valid UNC double delimiter prefix */
1218 len = strspn(devname, delims);
1219 if (len != 2)
1220 return -EINVAL;
1221
1222 /* find delimiter between host and sharename */
1223 pos = strpbrk(devname + 2, delims);
1224 if (!pos)
1225 return -EINVAL;
1226
1227 /* skip past delimiter */
1228 ++pos;
1229
1230 /* now go until next delimiter or end of string */
1231 len = strcspn(pos, delims);
1232
1233 /* move "pos" up to delimiter or NULL */
1234 pos += len;
1235 vol->UNC = kstrndup(devname, pos - devname, GFP_KERNEL);
1236 if (!vol->UNC)
1237 return -ENOMEM;
1238
1239 convert_delimiter(vol->UNC, '\\');
1240
Sachin Prabhu11e31642016-02-08 13:44:01 +05301241 /* skip any delimiter */
1242 if (*pos == '/' || *pos == '\\')
1243 pos++;
1244
1245 /* If pos is NULL then no prepath */
1246 if (!*pos)
Jeff Laytond387a5c2012-12-10 06:10:46 -05001247 return 0;
1248
1249 vol->prepath = kstrdup(pos, GFP_KERNEL);
1250 if (!vol->prepath)
1251 return -ENOMEM;
1252
1253 return 0;
1254}
1255
Jeff Layton23db65f2012-05-15 12:20:51 -04001256static int
Sean Finneyb9468452011-04-11 13:19:32 +00001257cifs_parse_mount_options(const char *mountdata, const char *devname,
Steve French50c2f752007-07-13 00:33:32 +00001258 struct smb_vol *vol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001260 char *data, *end;
Vasily Averin957df452011-06-06 11:33:12 +04001261 char *mountdata_copy = NULL, *options;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 unsigned int temp_len, i, j;
1263 char separator[2];
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001264 short int override_uid = -1;
1265 short int override_gid = -1;
1266 bool uid_specified = false;
1267 bool gid_specified = false;
Jeff Laytond8162552012-03-23 14:40:56 -04001268 bool sloppy = false;
1269 char *invalid = NULL;
Jeff Layton88463992010-11-22 15:31:03 -05001270 char *nodename = utsname()->nodename;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001271 char *string = NULL;
1272 char *tmp_end, *value;
1273 char delim;
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001274 bool got_ip = false;
Steve French7e682f72017-08-31 21:34:24 -05001275 bool got_version = false;
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001276 unsigned short port = 0;
1277 struct sockaddr *dstaddr = (struct sockaddr *)&vol->dstaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 separator[0] = ',';
Steve French50c2f752007-07-13 00:33:32 +00001280 separator[1] = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001281 delim = separator[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Jeff Layton6ee95422012-11-26 11:09:57 -05001283 /* ensure we always start with zeroed-out smb_vol */
1284 memset(vol, 0, sizeof(*vol));
1285
Jeff Layton88463992010-11-22 15:31:03 -05001286 /*
1287 * does not have to be perfect mapping since field is
1288 * informational, only used for servers that do not support
1289 * port 445 and it can be overridden at mount time
1290 */
Jeff Layton1397f2e2011-01-07 11:30:28 -05001291 memset(vol->source_rfc1001_name, 0x20, RFC1001_NAME_LEN);
1292 for (i = 0; i < strnlen(nodename, RFC1001_NAME_LEN); i++)
Jeff Layton88463992010-11-22 15:31:03 -05001293 vol->source_rfc1001_name[i] = toupper(nodename[i]);
1294
Jeff Layton1397f2e2011-01-07 11:30:28 -05001295 vol->source_rfc1001_name[RFC1001_NAME_LEN] = 0;
Steve Frencha10faeb22005-08-22 21:38:31 -07001296 /* null target name indicates to use *SMBSERVR default called name
1297 if we end up sending RFC1001 session initialize */
1298 vol->target_rfc1001_name[0] = 0;
Jeff Layton3e4b3e12010-07-19 18:00:17 -04001299 vol->cred_uid = current_uid();
1300 vol->linux_uid = current_uid();
David Howellsa001e5b2008-11-14 10:38:47 +11001301 vol->linux_gid = current_gid();
Jeff Laytonf55ed1a2009-05-26 16:28:11 -04001302
Steve French2baa2682014-09-27 02:19:01 -05001303 /*
1304 * default to SFM style remapping of seven reserved characters
1305 * unless user overrides it or we negotiate CIFS POSIX where
1306 * it is unnecessary. Can not simultaneously use more than one mapping
1307 * since then readdir could list files that open could not open
1308 */
1309 vol->remap = true;
1310
Jeff Laytonf55ed1a2009-05-26 16:28:11 -04001311 /* default to only allowing write access to owner of the mount */
1312 vol->dir_mode = vol->file_mode = S_IRUGO | S_IXUGO | S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 /* vol->retry default is 0 (i.e. "soft" limited retry not hard retry) */
Jeremy Allisonac670552005-06-22 17:26:35 -07001315 /* default is always to request posix paths. */
1316 vol->posix_paths = 1;
Jeff Laytona0c92172009-05-27 15:40:47 -04001317 /* default to using server inode numbers where available */
1318 vol->server_ino = 1;
Jeremy Allisonac670552005-06-22 17:26:35 -07001319
Jeff Layton1b359202012-09-19 15:20:27 -07001320 /* default is to use strict cifs caching semantics */
1321 vol->strict_io = true;
1322
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05301323 vol->actimeo = CIFS_DEF_ACTIMEO;
1324
Steve French9764c022017-09-17 10:41:35 -05001325 /* offer SMB2.1 and later (SMB3 etc). Secure and widely accepted */
1326 vol->ops = &smb30_operations;
1327 vol->vals = &smbdefault_values;
Jeff Layton23db65f2012-05-15 12:20:51 -04001328
Rabin Vincentb782fcc2016-07-19 09:25:45 +02001329 vol->echo_interval = SMB_ECHO_INTERVAL_DEFAULT;
1330
Sean Finneyb9468452011-04-11 13:19:32 +00001331 if (!mountdata)
1332 goto cifs_parse_mount_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Sean Finneyb9468452011-04-11 13:19:32 +00001334 mountdata_copy = kstrndup(mountdata, PAGE_SIZE, GFP_KERNEL);
1335 if (!mountdata_copy)
1336 goto cifs_parse_mount_err;
1337
1338 options = mountdata_copy;
Pavel Shilovsky4906e502011-04-14 22:00:56 +04001339 end = options + strlen(options);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001340
Steve French50c2f752007-07-13 00:33:32 +00001341 if (strncmp(options, "sep=", 4) == 0) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001342 if (options[4] != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 separator[0] = options[4];
1344 options += 5;
1345 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -05001346 cifs_dbg(FYI, "Null separator not allowed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
1348 }
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001349 vol->backupuid_specified = false; /* no backup intent for a user */
1350 vol->backupgid_specified = false; /* no backup intent for a group */
Steve French50c2f752007-07-13 00:33:32 +00001351
Jeff Layton37d4f992013-05-24 07:40:05 -04001352 switch (cifs_parse_devname(devname, vol)) {
1353 case 0:
1354 break;
1355 case -ENOMEM:
1356 cifs_dbg(VFS, "Unable to allocate memory for devname.\n");
1357 goto cifs_parse_mount_err;
1358 case -EINVAL:
1359 cifs_dbg(VFS, "Malformed UNC in devname.\n");
1360 goto cifs_parse_mount_err;
1361 default:
1362 cifs_dbg(VFS, "Unknown error parsing devname.\n");
1363 goto cifs_parse_mount_err;
Jeff Laytond387a5c2012-12-10 06:10:46 -05001364 }
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 while ((data = strsep(&options, separator)) != NULL) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001367 substring_t args[MAX_OPT_ARGS];
1368 unsigned long option;
1369 int token;
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 if (!*data)
1372 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001374 token = match_token(data, cifs_mount_option_tokens, args);
1375
1376 switch (token) {
1377
1378 /* Ingnore the following */
1379 case Opt_ignore:
1380 break;
1381
1382 /* Boolean values */
1383 case Opt_user_xattr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 vol->no_xattr = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001385 break;
1386 case Opt_nouser_xattr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 vol->no_xattr = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001388 break;
1389 case Opt_forceuid:
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001390 override_uid = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001391 break;
1392 case Opt_noforceuid:
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001393 override_uid = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001394 break;
Jeff Layton72bd4812012-10-03 16:02:36 -04001395 case Opt_forcegid:
1396 override_gid = 1;
1397 break;
1398 case Opt_noforcegid:
1399 override_gid = 0;
1400 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001401 case Opt_noblocksend:
Steve Frenchedf1ae42008-10-29 00:47:57 +00001402 vol->noblocksnd = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001403 break;
1404 case Opt_noautotune:
Steve Frenchedf1ae42008-10-29 00:47:57 +00001405 vol->noautotune = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001406 break;
1407 case Opt_hard:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 vol->retry = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001409 break;
1410 case Opt_soft:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 vol->retry = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001412 break;
1413 case Opt_perm:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 vol->noperm = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001415 break;
1416 case Opt_noperm:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 vol->noperm = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001418 break;
1419 case Opt_mapchars:
Steve French2baa2682014-09-27 02:19:01 -05001420 vol->sfu_remap = true;
1421 vol->remap = false; /* disable SFM mapping */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001422 break;
1423 case Opt_nomapchars:
Steve French2baa2682014-09-27 02:19:01 -05001424 vol->sfu_remap = false;
1425 break;
1426 case Opt_mapposix:
1427 vol->remap = true;
1428 vol->sfu_remap = false; /* disable SFU mapping */
1429 break;
1430 case Opt_nomapposix:
1431 vol->remap = false;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001432 break;
1433 case Opt_sfu:
Steve French50c2f752007-07-13 00:33:32 +00001434 vol->sfu_emul = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001435 break;
1436 case Opt_nosfu:
Steve French50c2f752007-07-13 00:33:32 +00001437 vol->sfu_emul = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001438 break;
1439 case Opt_nodfs:
Steve French2c1b8612008-10-16 18:35:21 +00001440 vol->nodfs = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001441 break;
1442 case Opt_posixpaths:
Jeremy Allisonac670552005-06-22 17:26:35 -07001443 vol->posix_paths = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001444 break;
1445 case Opt_noposixpaths:
Jeremy Allisonac670552005-06-22 17:26:35 -07001446 vol->posix_paths = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001447 break;
1448 case Opt_nounix:
Steve Frenchb3266142018-05-20 23:41:10 -05001449 if (vol->linux_ext)
1450 cifs_dbg(VFS,
1451 "conflicting unix mount options\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00001452 vol->no_linux_ext = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001453 break;
Steve Frenchb3266142018-05-20 23:41:10 -05001454 case Opt_unix:
1455 if (vol->no_linux_ext)
1456 cifs_dbg(VFS,
1457 "conflicting unix mount options\n");
1458 vol->linux_ext = 1;
1459 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001460 case Opt_nocase:
Steve French50c2f752007-07-13 00:33:32 +00001461 vol->nocase = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001462 break;
1463 case Opt_brl:
Steve Frenchc46fa8a2005-08-18 20:49:57 -07001464 vol->nobrl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001465 break;
1466 case Opt_nobrl:
Steve Frenchc46fa8a2005-08-18 20:49:57 -07001467 vol->nobrl = 1;
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +04001468 /*
1469 * turn off mandatory locking in mode
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001470 * if remote locking is turned off since the
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +04001471 * local vfs will do advisory
1472 */
Steve French50c2f752007-07-13 00:33:32 +00001473 if (vol->file_mode ==
1474 (S_IALLUGO & ~(S_ISUID | S_IXGRP)))
Steve Frenchd3485d32005-08-19 11:04:29 -07001475 vol->file_mode = S_IALLUGO;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001476 break;
Steve French3d4ef9a2018-04-25 22:19:09 -05001477 case Opt_nohandlecache:
1478 vol->nohandlecache = 1;
1479 break;
1480 case Opt_handlecache:
1481 vol->nohandlecache = 0;
1482 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001483 case Opt_forcemandatorylock:
Steve French13a6e422008-12-02 17:24:33 +00001484 vol->mand_lock = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001485 break;
1486 case Opt_setuids:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 vol->setuids = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001488 break;
1489 case Opt_nosetuids:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 vol->setuids = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001491 break;
Steve French95932652016-09-23 01:36:34 -05001492 case Opt_setuidfromacl:
1493 vol->setuidfromacl = 1;
1494 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001495 case Opt_dynperm:
Jeff Laytond0a9c072008-05-12 22:23:49 +00001496 vol->dynperm = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001497 break;
1498 case Opt_nodynperm:
Jeff Laytond0a9c072008-05-12 22:23:49 +00001499 vol->dynperm = false;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001500 break;
1501 case Opt_nohard:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 vol->retry = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001503 break;
1504 case Opt_nosoft:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 vol->retry = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001506 break;
1507 case Opt_nointr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 vol->intr = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001509 break;
1510 case Opt_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 vol->intr = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001512 break;
1513 case Opt_nostrictsync:
Steve Frenchbe652442009-02-23 15:21:59 +00001514 vol->nostrictsync = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001515 break;
1516 case Opt_strictsync:
Steve Frenchbe652442009-02-23 15:21:59 +00001517 vol->nostrictsync = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001518 break;
1519 case Opt_serverino:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 vol->server_ino = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001521 break;
1522 case Opt_noserverino:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 vol->server_ino = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001524 break;
1525 case Opt_rwpidforward:
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00001526 vol->rwpidforward = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001527 break;
1528 case Opt_cifsacl:
Steve French0a4b92c2006-01-12 15:44:21 -08001529 vol->cifs_acl = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001530 break;
1531 case Opt_nocifsacl:
Steve French0a4b92c2006-01-12 15:44:21 -08001532 vol->cifs_acl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001533 break;
1534 case Opt_acl:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 vol->no_psx_acl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001536 break;
1537 case Opt_noacl:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 vol->no_psx_acl = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001539 break;
1540 case Opt_locallease:
Steve French84210e92008-10-23 04:42:37 +00001541 vol->local_lease = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001542 break;
1543 case Opt_sign:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001544 vol->sign = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001545 break;
1546 case Opt_seal:
Steve French95b1cb92008-05-15 16:44:38 +00001547 /* we do not do the following in secFlags because seal
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001548 * is a per tree connection (mount) not a per socket
1549 * or per-smb connection option in the protocol
1550 * vol->secFlg |= CIFSSEC_MUST_SEAL;
1551 */
Steve French95b1cb92008-05-15 16:44:38 +00001552 vol->seal = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001553 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001554 case Opt_noac:
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001555 pr_warn("CIFS: Mount option noac not supported. Instead set /proc/fs/cifs/LookupCacheEnabled to 0\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001556 break;
1557 case Opt_fsc:
Suresh Jayaraman607a5692010-11-24 17:49:05 +05301558#ifndef CONFIG_CIFS_FSCACHE
Joe Perchesf96637b2013-05-04 22:12:25 -05001559 cifs_dbg(VFS, "FS-Cache support needs CONFIG_CIFS_FSCACHE kernel config option set\n");
Sean Finneyb9468452011-04-11 13:19:32 +00001560 goto cifs_parse_mount_err;
Suresh Jayaraman607a5692010-11-24 17:49:05 +05301561#endif
Suresh Jayaramanfa1df752010-07-05 18:13:36 +05301562 vol->fsc = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001563 break;
1564 case Opt_mfsymlinks:
Stefan Metzmacher736a33202010-07-30 14:56:00 +02001565 vol->mfsymlinks = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001566 break;
1567 case Opt_multiuser:
Jeff Layton0eb8a132010-10-06 19:51:12 -04001568 vol->multiuser = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001569 break;
Jeff Laytond8162552012-03-23 14:40:56 -04001570 case Opt_sloppy:
1571 sloppy = true;
1572 break;
Jeff Laytona0b3df52013-05-24 07:40:59 -04001573 case Opt_nosharesock:
1574 vol->nosharesock = true;
1575 break;
Steve Frenchb2a30772015-09-29 21:49:28 -05001576 case Opt_nopersistent:
1577 vol->nopersistent = true;
1578 if (vol->persistent) {
1579 cifs_dbg(VFS,
1580 "persistenthandles mount options conflict\n");
1581 goto cifs_parse_mount_err;
1582 }
1583 break;
1584 case Opt_persistent:
1585 vol->persistent = true;
Steve French592fafe2015-11-03 10:08:53 -06001586 if ((vol->nopersistent) || (vol->resilient)) {
Steve Frenchb2a30772015-09-29 21:49:28 -05001587 cifs_dbg(VFS,
1588 "persistenthandles mount options conflict\n");
1589 goto cifs_parse_mount_err;
1590 }
1591 break;
Steve French592fafe2015-11-03 10:08:53 -06001592 case Opt_resilient:
1593 vol->resilient = true;
1594 if (vol->persistent) {
1595 cifs_dbg(VFS,
1596 "persistenthandles mount options conflict\n");
1597 goto cifs_parse_mount_err;
1598 }
1599 break;
1600 case Opt_noresilient:
1601 vol->resilient = false; /* already the default */
1602 break;
Germano Percossi39566442016-12-15 12:31:18 +05301603 case Opt_domainauto:
1604 vol->domainauto = true;
1605 break;
Long Li8339dd32017-11-07 01:54:55 -07001606 case Opt_rdma:
1607 vol->rdma = true;
1608 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001609
1610 /* Numeric Values */
1611 case Opt_backupuid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001612 if (get_option_uid(args, &vol->backupuid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001613 cifs_dbg(VFS, "%s: Invalid backupuid value\n",
1614 __func__);
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001615 goto cifs_parse_mount_err;
1616 }
1617 vol->backupuid_specified = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001618 break;
1619 case Opt_backupgid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001620 if (get_option_gid(args, &vol->backupgid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001621 cifs_dbg(VFS, "%s: Invalid backupgid value\n",
1622 __func__);
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001623 goto cifs_parse_mount_err;
1624 }
1625 vol->backupgid_specified = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001626 break;
1627 case Opt_uid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001628 if (get_option_uid(args, &vol->linux_uid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001629 cifs_dbg(VFS, "%s: Invalid uid value\n",
1630 __func__);
Sean Finneyb9468452011-04-11 13:19:32 +00001631 goto cifs_parse_mount_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001633 uid_specified = true;
1634 break;
1635 case Opt_cruid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001636 if (get_option_uid(args, &vol->cred_uid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001637 cifs_dbg(VFS, "%s: Invalid cruid value\n",
1638 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001639 goto cifs_parse_mount_err;
1640 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001641 break;
1642 case Opt_gid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001643 if (get_option_gid(args, &vol->linux_gid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001644 cifs_dbg(VFS, "%s: Invalid gid value\n",
1645 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001646 goto cifs_parse_mount_err;
1647 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001648 gid_specified = true;
1649 break;
1650 case Opt_file_mode:
1651 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001652 cifs_dbg(VFS, "%s: Invalid file_mode value\n",
1653 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001654 goto cifs_parse_mount_err;
1655 }
1656 vol->file_mode = option;
1657 break;
1658 case Opt_dirmode:
1659 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001660 cifs_dbg(VFS, "%s: Invalid dir_mode value\n",
1661 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001662 goto cifs_parse_mount_err;
1663 }
1664 vol->dir_mode = option;
1665 break;
1666 case Opt_port:
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001667 if (get_option_ul(args, &option) ||
1668 option > USHRT_MAX) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001669 cifs_dbg(VFS, "%s: Invalid port value\n",
1670 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001671 goto cifs_parse_mount_err;
1672 }
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001673 port = (unsigned short)option;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001674 break;
1675 case Opt_rsize:
1676 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001677 cifs_dbg(VFS, "%s: Invalid rsize value\n",
1678 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001679 goto cifs_parse_mount_err;
1680 }
1681 vol->rsize = option;
1682 break;
1683 case Opt_wsize:
1684 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001685 cifs_dbg(VFS, "%s: Invalid wsize value\n",
1686 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001687 goto cifs_parse_mount_err;
1688 }
1689 vol->wsize = option;
1690 break;
1691 case Opt_actimeo:
1692 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001693 cifs_dbg(VFS, "%s: Invalid actimeo value\n",
1694 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001695 goto cifs_parse_mount_err;
1696 }
1697 vol->actimeo = HZ * option;
1698 if (vol->actimeo > CIFS_MAX_ACTIMEO) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001699 cifs_dbg(VFS, "attribute cache timeout too large\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001700 goto cifs_parse_mount_err;
1701 }
1702 break;
Steve Frenchadfeb3e2015-12-18 12:31:36 -06001703 case Opt_echo_interval:
1704 if (get_option_ul(args, &option)) {
1705 cifs_dbg(VFS, "%s: Invalid echo interval value\n",
1706 __func__);
1707 goto cifs_parse_mount_err;
1708 }
1709 vol->echo_interval = option;
1710 break;
Steve French8b217fe2016-11-11 22:36:20 -06001711 case Opt_snapshot:
1712 if (get_option_ul(args, &option)) {
1713 cifs_dbg(VFS, "%s: Invalid snapshot time\n",
1714 __func__);
1715 goto cifs_parse_mount_err;
1716 }
1717 vol->snapshot_time = option;
1718 break;
Steve French141891f2016-09-23 00:44:16 -05001719 case Opt_max_credits:
1720 if (get_option_ul(args, &option) || (option < 20) ||
1721 (option > 60000)) {
1722 cifs_dbg(VFS, "%s: Invalid max_credits value\n",
1723 __func__);
1724 goto cifs_parse_mount_err;
1725 }
1726 vol->max_credits = option;
1727 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001728
1729 /* String Arguments */
1730
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001731 case Opt_blank_user:
1732 /* null user, ie. anonymous authentication */
1733 vol->nullauth = 1;
1734 vol->username = NULL;
1735 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001736 case Opt_user:
1737 string = match_strdup(args);
1738 if (string == NULL)
1739 goto out_nomem;
1740
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04001741 if (strnlen(string, CIFS_MAX_USERNAME_LEN) >
1742 CIFS_MAX_USERNAME_LEN) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001743 pr_warn("CIFS: username too long\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001744 goto cifs_parse_mount_err;
1745 }
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04001746
1747 kfree(vol->username);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001748 vol->username = kstrdup(string, GFP_KERNEL);
Joe Perchesf96637b2013-05-04 22:12:25 -05001749 if (!vol->username)
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001750 goto cifs_parse_mount_err;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001751 break;
1752 case Opt_blank_pass:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001753 /* passwords have to be handled differently
1754 * to allow the character used for deliminator
1755 * to be passed within them
1756 */
1757
Sachin Prabhuc369c9a2013-04-09 18:17:41 +01001758 /*
1759 * Check if this is a case where the password
1760 * starts with a delimiter
1761 */
1762 tmp_end = strchr(data, '=');
1763 tmp_end++;
1764 if (!(tmp_end < end && tmp_end[1] == delim)) {
1765 /* No it is not. Set the password to NULL */
Aurelien Aptel97f4b722018-01-25 15:59:39 +01001766 kzfree(vol->password);
Sachin Prabhuc369c9a2013-04-09 18:17:41 +01001767 vol->password = NULL;
1768 break;
1769 }
1770 /* Yes it is. Drop down to Opt_pass below.*/
1771 case Opt_pass:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001772 /* Obtain the value string */
1773 value = strchr(data, '=');
Sachin Prabhu10238072012-03-28 18:07:08 +01001774 value++;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001775
1776 /* Set tmp_end to end of the string */
1777 tmp_end = (char *) value + strlen(value);
1778
1779 /* Check if following character is the deliminator
1780 * If yes, we have encountered a double deliminator
1781 * reset the NULL character to the deliminator
1782 */
Suresh Jayaramane73f8432012-06-12 07:15:50 +05301783 if (tmp_end < end && tmp_end[1] == delim) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001784 tmp_end[0] = delim;
1785
Suresh Jayaramane73f8432012-06-12 07:15:50 +05301786 /* Keep iterating until we get to a single
1787 * deliminator OR the end
1788 */
1789 while ((tmp_end = strchr(tmp_end, delim))
1790 != NULL && (tmp_end[1] == delim)) {
1791 tmp_end = (char *) &tmp_end[2];
1792 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001793
Suresh Jayaramane73f8432012-06-12 07:15:50 +05301794 /* Reset var options to point to next element */
1795 if (tmp_end) {
1796 tmp_end[0] = '\0';
1797 options = (char *) &tmp_end[1];
1798 } else
1799 /* Reached the end of the mount option
1800 * string */
1801 options = end;
1802 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001803
Aurelien Aptel97f4b722018-01-25 15:59:39 +01001804 kzfree(vol->password);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001805 /* Now build new password string */
1806 temp_len = strlen(value);
1807 vol->password = kzalloc(temp_len+1, GFP_KERNEL);
1808 if (vol->password == NULL) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001809 pr_warn("CIFS: no memory for password\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001810 goto cifs_parse_mount_err;
1811 }
1812
1813 for (i = 0, j = 0; i < temp_len; i++, j++) {
1814 vol->password[j] = value[i];
1815 if ((value[i] == delim) &&
1816 value[i+1] == delim)
1817 /* skip the second deliminator */
1818 i++;
1819 }
1820 vol->password[j] = '\0';
1821 break;
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001822 case Opt_blank_ip:
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001823 /* FIXME: should this be an error instead? */
1824 got_ip = false;
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001825 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001826 case Opt_ip:
1827 string = match_strdup(args);
1828 if (string == NULL)
1829 goto out_nomem;
1830
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001831 if (!cifs_convert_address(dstaddr, string,
1832 strlen(string))) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001833 pr_err("CIFS: bad ip= option (%s).\n", string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001834 goto cifs_parse_mount_err;
1835 }
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001836 got_ip = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001837 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001838 case Opt_domain:
1839 string = match_strdup(args);
1840 if (string == NULL)
1841 goto out_nomem;
1842
Chen Gang057d6332013-07-19 09:01:36 +08001843 if (strnlen(string, CIFS_MAX_DOMAINNAME_LEN)
1844 == CIFS_MAX_DOMAINNAME_LEN) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001845 pr_warn("CIFS: domain name too long\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001846 goto cifs_parse_mount_err;
1847 }
1848
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04001849 kfree(vol->domainname);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001850 vol->domainname = kstrdup(string, GFP_KERNEL);
1851 if (!vol->domainname) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001852 pr_warn("CIFS: no memory for domainname\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001853 goto cifs_parse_mount_err;
1854 }
Joe Perchesf96637b2013-05-04 22:12:25 -05001855 cifs_dbg(FYI, "Domain name set\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001856 break;
1857 case Opt_srcaddr:
1858 string = match_strdup(args);
1859 if (string == NULL)
1860 goto out_nomem;
1861
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001862 if (!cifs_convert_address(
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001863 (struct sockaddr *)&vol->srcaddr,
1864 string, strlen(string))) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001865 pr_warn("CIFS: Could not parse srcaddr: %s\n",
1866 string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001867 goto cifs_parse_mount_err;
1868 }
1869 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001870 case Opt_iocharset:
1871 string = match_strdup(args);
1872 if (string == NULL)
1873 goto out_nomem;
1874
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001875 if (strnlen(string, 1024) >= 65) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001876 pr_warn("CIFS: iocharset name too long.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001877 goto cifs_parse_mount_err;
1878 }
1879
Rasmus Villemoes87e747c2014-10-13 15:54:35 -07001880 if (strncasecmp(string, "default", 7) != 0) {
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04001881 kfree(vol->iocharset);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001882 vol->iocharset = kstrdup(string,
1883 GFP_KERNEL);
1884 if (!vol->iocharset) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001885 pr_warn("CIFS: no memory for charset\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001886 goto cifs_parse_mount_err;
1887 }
1888 }
1889 /* if iocharset not set then load_nls_default
1890 * is used by caller
1891 */
Joe Perchesf96637b2013-05-04 22:12:25 -05001892 cifs_dbg(FYI, "iocharset set to %s\n", string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001893 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001894 case Opt_netbiosname:
1895 string = match_strdup(args);
1896 if (string == NULL)
1897 goto out_nomem;
1898
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001899 memset(vol->source_rfc1001_name, 0x20,
1900 RFC1001_NAME_LEN);
1901 /*
1902 * FIXME: are there cases in which a comma can
1903 * be valid in workstation netbios name (and
1904 * need special handling)?
1905 */
1906 for (i = 0; i < RFC1001_NAME_LEN; i++) {
1907 /* don't ucase netbiosname for user */
1908 if (string[i] == 0)
1909 break;
1910 vol->source_rfc1001_name[i] = string[i];
1911 }
1912 /* The string has 16th byte zero still from
1913 * set at top of the function
1914 */
1915 if (i == RFC1001_NAME_LEN && string[i] != 0)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001916 pr_warn("CIFS: netbiosname longer than 15 truncated.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001917 break;
1918 case Opt_servern:
1919 /* servernetbiosname specified override *SMBSERVER */
1920 string = match_strdup(args);
1921 if (string == NULL)
1922 goto out_nomem;
1923
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001924 /* last byte, type, is 0x20 for servr type */
1925 memset(vol->target_rfc1001_name, 0x20,
1926 RFC1001_NAME_LEN_WITH_NULL);
1927
1928 /* BB are there cases in which a comma can be
1929 valid in this workstation netbios name
1930 (and need special handling)? */
1931
1932 /* user or mount helper must uppercase the
1933 netbios name */
1934 for (i = 0; i < 15; i++) {
1935 if (string[i] == 0)
1936 break;
1937 vol->target_rfc1001_name[i] = string[i];
1938 }
1939 /* The string has 16th byte zero still from
1940 set at top of the function */
1941 if (i == RFC1001_NAME_LEN && string[i] != 0)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001942 pr_warn("CIFS: server netbiosname longer than 15 truncated.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001943 break;
1944 case Opt_ver:
Steve French7e682f72017-08-31 21:34:24 -05001945 /* version of mount userspace tools, not dialect */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001946 string = match_strdup(args);
1947 if (string == NULL)
1948 goto out_nomem;
1949
Steve French7e682f72017-08-31 21:34:24 -05001950 /* If interface changes in mount.cifs bump to new ver */
Rasmus Villemoes87e747c2014-10-13 15:54:35 -07001951 if (strncasecmp(string, "1", 1) == 0) {
Steve French7e682f72017-08-31 21:34:24 -05001952 if (strlen(string) > 1) {
1953 pr_warn("Bad mount helper ver=%s. Did "
1954 "you want SMB1 (CIFS) dialect "
1955 "and mean to type vers=1.0 "
1956 "instead?\n", string);
1957 goto cifs_parse_mount_err;
1958 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001959 /* This is the default */
1960 break;
1961 }
1962 /* For all other value, error */
Steve French7e682f72017-08-31 21:34:24 -05001963 pr_warn("CIFS: Invalid mount helper version specified\n");
Sean Finneyb9468452011-04-11 13:19:32 +00001964 goto cifs_parse_mount_err;
Jeff Layton23db65f2012-05-15 12:20:51 -04001965 case Opt_vers:
Steve French7e682f72017-08-31 21:34:24 -05001966 /* protocol version (dialect) */
Jeff Layton23db65f2012-05-15 12:20:51 -04001967 string = match_strdup(args);
1968 if (string == NULL)
1969 goto out_nomem;
1970
1971 if (cifs_parse_smb_version(string, vol) != 0)
1972 goto cifs_parse_mount_err;
Steve French7e682f72017-08-31 21:34:24 -05001973 got_version = true;
Jeff Layton23db65f2012-05-15 12:20:51 -04001974 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001975 case Opt_sec:
1976 string = match_strdup(args);
1977 if (string == NULL)
1978 goto out_nomem;
1979
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001980 if (cifs_parse_security_flavors(string, vol) != 0)
1981 goto cifs_parse_mount_err;
1982 break;
Jeff Layton15b6a472012-05-16 07:50:15 -04001983 case Opt_cache:
1984 string = match_strdup(args);
1985 if (string == NULL)
1986 goto out_nomem;
1987
1988 if (cifs_parse_cache_flavor(string, vol) != 0)
1989 goto cifs_parse_mount_err;
1990 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001991 default:
Jeff Laytond8162552012-03-23 14:40:56 -04001992 /*
1993 * An option we don't recognize. Save it off for later
1994 * if we haven't already found one
1995 */
1996 if (!invalid)
1997 invalid = data;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001998 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002000 /* Free up any allocated string */
2001 kfree(string);
2002 string = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 }
Jeff Layton0eb8a132010-10-06 19:51:12 -04002004
Jeff Laytond8162552012-03-23 14:40:56 -04002005 if (!sloppy && invalid) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002006 pr_err("CIFS: Unknown mount option \"%s\"\n", invalid);
Jeff Laytond8162552012-03-23 14:40:56 -04002007 goto cifs_parse_mount_err;
2008 }
2009
Long Li8339dd32017-11-07 01:54:55 -07002010 if (vol->rdma && vol->vals->protocol_id < SMB30_PROT_ID) {
2011 cifs_dbg(VFS, "SMB Direct requires Version >=3.0\n");
2012 goto cifs_parse_mount_err;
2013 }
2014
Jeff Layton8a8798a2012-01-17 16:09:15 -05002015#ifndef CONFIG_KEYS
2016 /* Muliuser mounts require CONFIG_KEYS support */
2017 if (vol->multiuser) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002018 cifs_dbg(VFS, "Multiuser mounts require kernels with CONFIG_KEYS enabled\n");
Sean Finneyb9468452011-04-11 13:19:32 +00002019 goto cifs_parse_mount_err;
Jeff Layton0eb8a132010-10-06 19:51:12 -04002020 }
Jeff Layton8a8798a2012-01-17 16:09:15 -05002021#endif
Jeff Laytone5e69ab2012-11-25 08:00:42 -05002022 if (!vol->UNC) {
Jeff Layton37d4f992013-05-24 07:40:05 -04002023 cifs_dbg(VFS, "CIFS mount error: No usable UNC path provided in device string!\n");
Jeff Laytone5e69ab2012-11-25 08:00:42 -05002024 goto cifs_parse_mount_err;
2025 }
Jeff Layton0eb8a132010-10-06 19:51:12 -04002026
Jeff Layton62a1a432012-12-10 06:10:45 -05002027 /* make sure UNC has a share name */
2028 if (!strchr(vol->UNC + 3, '\\')) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002029 cifs_dbg(VFS, "Malformed UNC. Unable to find share name.\n");
Jeff Layton62a1a432012-12-10 06:10:45 -05002030 goto cifs_parse_mount_err;
2031 }
2032
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002033 if (!got_ip) {
Daniel N Pettersson29bb3152017-04-27 11:32:36 +02002034 int len;
2035 const char *slash;
2036
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002037 /* No ip= option specified? Try to get it from UNC */
Daniel N Pettersson29bb3152017-04-27 11:32:36 +02002038 /* Use the address part of the UNC. */
2039 slash = strchr(&vol->UNC[2], '\\');
2040 len = slash - &vol->UNC[2];
2041 if (!cifs_convert_address(dstaddr, &vol->UNC[2], len)) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002042 pr_err("Unable to determine destination address.\n");
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002043 goto cifs_parse_mount_err;
2044 }
2045 }
2046
2047 /* set the port that we got earlier */
2048 cifs_set_port(dstaddr, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Jeff Layton9b9d6b242009-07-31 06:56:09 -04002050 if (uid_specified)
2051 vol->override_uid = override_uid;
2052 else if (override_uid == 1)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002053 pr_notice("CIFS: ignoring forceuid mount option specified with no uid= option.\n");
Jeff Layton9b9d6b242009-07-31 06:56:09 -04002054
2055 if (gid_specified)
2056 vol->override_gid = override_gid;
2057 else if (override_gid == 1)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002058 pr_notice("CIFS: ignoring forcegid mount option specified with no gid= option.\n");
Jeff Layton9b9d6b242009-07-31 06:56:09 -04002059
Steve French7e682f72017-08-31 21:34:24 -05002060 if (got_version == false)
2061 pr_warn("No dialect specified on mount. Default has changed to "
Steve French9764c022017-09-17 10:41:35 -05002062 "a more secure dialect, SMB2.1 or later (e.g. SMB3), from CIFS "
Steve French7e682f72017-08-31 21:34:24 -05002063 "(SMB1). To use the less secure SMB1 dialect to access "
Steve French9764c022017-09-17 10:41:35 -05002064 "old servers which do not support SMB3 (or SMB2.1) specify vers=1.0"
2065 " on mount.\n");
Steve French7e682f72017-08-31 21:34:24 -05002066
Sean Finneyb9468452011-04-11 13:19:32 +00002067 kfree(mountdata_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 return 0;
Sean Finneyb9468452011-04-11 13:19:32 +00002069
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002070out_nomem:
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002071 pr_warn("Could not allocate temporary buffer\n");
Sean Finneyb9468452011-04-11 13:19:32 +00002072cifs_parse_mount_err:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002073 kfree(string);
Sean Finneyb9468452011-04-11 13:19:32 +00002074 kfree(mountdata_copy);
2075 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076}
2077
Ben Greear3eb9a882010-09-01 17:06:02 -07002078/** Returns true if srcaddr isn't specified and rhs isn't
2079 * specified, or if srcaddr is specified and
2080 * matches the IP address of the rhs argument.
2081 */
Jeff Layton45151482010-07-06 20:43:02 -04002082static bool
Ben Greear3eb9a882010-09-01 17:06:02 -07002083srcip_matches(struct sockaddr *srcaddr, struct sockaddr *rhs)
2084{
2085 switch (srcaddr->sa_family) {
2086 case AF_UNSPEC:
2087 return (rhs->sa_family == AF_UNSPEC);
2088 case AF_INET: {
2089 struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr;
2090 struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs;
2091 return (saddr4->sin_addr.s_addr == vaddr4->sin_addr.s_addr);
2092 }
2093 case AF_INET6: {
2094 struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr;
Nickolai Zeldoviche3e27752013-01-16 21:36:17 -05002095 struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs;
Ben Greear3eb9a882010-09-01 17:06:02 -07002096 return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr);
2097 }
2098 default:
2099 WARN_ON(1);
2100 return false; /* don't expect to be here */
2101 }
2102}
2103
Pavel Shilovsky4b886132010-12-13 22:18:07 +03002104/*
2105 * If no port is specified in addr structure, we try to match with 445 port
2106 * and if it fails - with 139 ports. It should be called only if address
2107 * families of server and addr are equal.
2108 */
2109static bool
2110match_port(struct TCP_Server_Info *server, struct sockaddr *addr)
2111{
Steve French6da97912011-03-13 18:55:55 +00002112 __be16 port, *sport;
Pavel Shilovsky4b886132010-12-13 22:18:07 +03002113
2114 switch (addr->sa_family) {
2115 case AF_INET:
2116 sport = &((struct sockaddr_in *) &server->dstaddr)->sin_port;
2117 port = ((struct sockaddr_in *) addr)->sin_port;
2118 break;
2119 case AF_INET6:
2120 sport = &((struct sockaddr_in6 *) &server->dstaddr)->sin6_port;
2121 port = ((struct sockaddr_in6 *) addr)->sin6_port;
2122 break;
2123 default:
2124 WARN_ON(1);
2125 return false;
2126 }
2127
2128 if (!port) {
2129 port = htons(CIFS_PORT);
2130 if (port == *sport)
2131 return true;
2132
2133 port = htons(RFC1001_PORT);
2134 }
2135
2136 return port == *sport;
2137}
Ben Greear3eb9a882010-09-01 17:06:02 -07002138
2139static bool
2140match_address(struct TCP_Server_Info *server, struct sockaddr *addr,
2141 struct sockaddr *srcaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
Jeff Layton45151482010-07-06 20:43:02 -04002143 switch (addr->sa_family) {
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002144 case AF_INET: {
2145 struct sockaddr_in *addr4 = (struct sockaddr_in *)addr;
2146 struct sockaddr_in *srv_addr4 =
2147 (struct sockaddr_in *)&server->dstaddr;
2148
2149 if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr)
Jeff Layton45151482010-07-06 20:43:02 -04002150 return false;
Jeff Layton45151482010-07-06 20:43:02 -04002151 break;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002152 }
2153 case AF_INET6: {
2154 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr;
2155 struct sockaddr_in6 *srv_addr6 =
2156 (struct sockaddr_in6 *)&server->dstaddr;
2157
Jeff Layton45151482010-07-06 20:43:02 -04002158 if (!ipv6_addr_equal(&addr6->sin6_addr,
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002159 &srv_addr6->sin6_addr))
Jeff Layton45151482010-07-06 20:43:02 -04002160 return false;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002161 if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id)
Jeff Layton45151482010-07-06 20:43:02 -04002162 return false;
Jeff Layton45151482010-07-06 20:43:02 -04002163 break;
2164 }
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002165 default:
2166 WARN_ON(1);
2167 return false; /* don't expect to be here */
2168 }
Jeff Layton45151482010-07-06 20:43:02 -04002169
Ben Greear3eb9a882010-09-01 17:06:02 -07002170 if (!srcip_matches(srcaddr, (struct sockaddr *)&server->srcaddr))
2171 return false;
2172
Jeff Layton45151482010-07-06 20:43:02 -04002173 return true;
2174}
2175
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002176static bool
2177match_security(struct TCP_Server_Info *server, struct smb_vol *vol)
2178{
Jeff Layton3f618222013-06-12 19:52:14 -05002179 /*
2180 * The select_sectype function should either return the vol->sectype
2181 * that was specified, or "Unspecified" if that sectype was not
2182 * compatible with the given NEGOTIATE request.
2183 */
Sachin Prabhuef65aae2017-01-18 15:35:57 +05302184 if (server->ops->select_sectype(server, vol->sectype)
2185 == Unspecified)
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002186 return false;
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002187
Jeff Layton3f618222013-06-12 19:52:14 -05002188 /*
2189 * Now check if signing mode is acceptable. No need to check
2190 * global_secflags at this point since if MUST_SIGN is set then
2191 * the server->sign had better be too.
2192 */
Jeff Layton38d77c52013-05-26 07:01:00 -04002193 if (vol->sign && !server->sign)
2194 return false;
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002195
2196 return true;
2197}
2198
Jeff Layton9fa114f2012-11-26 11:09:57 -05002199static int match_server(struct TCP_Server_Info *server, struct smb_vol *vol)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002200{
Jeff Layton9fa114f2012-11-26 11:09:57 -05002201 struct sockaddr *addr = (struct sockaddr *)&vol->dstaddr;
2202
Jeff Laytona0b3df52013-05-24 07:40:59 -04002203 if (vol->nosharesock)
2204 return 0;
2205
Steve French9764c022017-09-17 10:41:35 -05002206 /* BB update this for smb3any and default case */
Jeff Layton23db65f2012-05-15 12:20:51 -04002207 if ((server->vals != vol->vals) || (server->ops != vol->ops))
2208 return 0;
2209
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002210 if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns))
2211 return 0;
2212
2213 if (!match_address(server, addr,
2214 (struct sockaddr *)&vol->srcaddr))
2215 return 0;
2216
2217 if (!match_port(server, addr))
2218 return 0;
2219
2220 if (!match_security(server, vol))
2221 return 0;
2222
Rabin Vincentb782fcc2016-07-19 09:25:45 +02002223 if (server->echo_interval != vol->echo_interval * HZ)
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002224 return 0;
2225
Long Li8339dd32017-11-07 01:54:55 -07002226 if (server->rdma != vol->rdma)
2227 return 0;
2228
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002229 return 1;
2230}
2231
Jeff Layton45151482010-07-06 20:43:02 -04002232static struct TCP_Server_Info *
Jeff Layton9fa114f2012-11-26 11:09:57 -05002233cifs_find_tcp_session(struct smb_vol *vol)
Jeff Layton45151482010-07-06 20:43:02 -04002234{
Jeff Laytone7ddee92008-11-14 13:44:38 -05002235 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302237 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton45151482010-07-06 20:43:02 -04002238 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
Jeff Layton9fa114f2012-11-26 11:09:57 -05002239 if (!match_server(server, vol))
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002240 continue;
2241
Jeff Laytone7ddee92008-11-14 13:44:38 -05002242 ++server->srv_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302243 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -05002244 cifs_dbg(FYI, "Existing tcp session with server found\n");
Jeff Laytone7ddee92008-11-14 13:44:38 -05002245 return server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302247 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 return NULL;
2249}
2250
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002251void
2252cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
Steve Frencha5c3e1c2014-09-16 04:16:19 -05002254 struct task_struct *task;
2255
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302256 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002257 if (--server->srv_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302258 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002259 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 }
Steve Frenchdea570e02008-05-06 22:05:51 +00002261
Rob Landleyf1d0c992011-01-22 15:44:05 -06002262 put_net(cifs_net_ns(server));
2263
Jeff Laytone7ddee92008-11-14 13:44:38 -05002264 list_del_init(&server->tcp_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302265 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002266
Jeff Laytonc74093b2011-01-11 07:24:23 -05002267 cancel_delayed_work_sync(&server->echo);
2268
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002269 if (from_reconnect)
2270 /*
2271 * Avoid deadlock here: reconnect work calls
2272 * cifs_put_tcp_session() at its end. Need to be sure
2273 * that reconnect work does nothing with server pointer after
2274 * that step.
2275 */
2276 cancel_delayed_work(&server->reconnect);
2277 else
2278 cancel_delayed_work_sync(&server->reconnect);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002279
Jeff Laytone7ddee92008-11-14 13:44:38 -05002280 spin_lock(&GlobalMid_Lock);
2281 server->tcpStatus = CifsExiting;
2282 spin_unlock(&GlobalMid_Lock);
2283
Pavel Shilovsky026e93d2016-11-03 16:47:37 -07002284 cifs_crypto_secmech_release(server);
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05302285 cifs_fscache_release_client_cookie(server);
2286
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05002287 kfree(server->session_key.response);
2288 server->session_key.response = NULL;
2289 server->session_key.len = 0;
Steve Frencha5c3e1c2014-09-16 04:16:19 -05002290
2291 task = xchg(&server->tsk, NULL);
2292 if (task)
2293 force_sig(SIGKILL, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294}
2295
Jeff Layton63c038c2008-12-01 18:41:46 -05002296static struct TCP_Server_Info *
2297cifs_get_tcp_session(struct smb_vol *volume_info)
2298{
2299 struct TCP_Server_Info *tcp_ses = NULL;
Jeff Layton63c038c2008-12-01 18:41:46 -05002300 int rc;
2301
Joe Perchesf96637b2013-05-04 22:12:25 -05002302 cifs_dbg(FYI, "UNC: %s\n", volume_info->UNC);
Jeff Layton63c038c2008-12-01 18:41:46 -05002303
2304 /* see if we already have a matching tcp_ses */
Jeff Layton9fa114f2012-11-26 11:09:57 -05002305 tcp_ses = cifs_find_tcp_session(volume_info);
Jeff Layton63c038c2008-12-01 18:41:46 -05002306 if (tcp_ses)
2307 return tcp_ses;
2308
2309 tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL);
2310 if (!tcp_ses) {
2311 rc = -ENOMEM;
2312 goto out_err;
2313 }
2314
Jeff Layton23db65f2012-05-15 12:20:51 -04002315 tcp_ses->ops = volume_info->ops;
2316 tcp_ses->vals = volume_info->vals;
Rob Landleyf1d0c992011-01-22 15:44:05 -06002317 cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns));
Jeff Layton63c038c2008-12-01 18:41:46 -05002318 tcp_ses->hostname = extract_hostname(volume_info->UNC);
2319 if (IS_ERR(tcp_ses->hostname)) {
2320 rc = PTR_ERR(tcp_ses->hostname);
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002321 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002322 }
2323
2324 tcp_ses->noblocksnd = volume_info->noblocksnd;
2325 tcp_ses->noautotune = volume_info->noautotune;
Steve French6a5fa2362010-01-01 01:28:43 +00002326 tcp_ses->tcp_nodelay = volume_info->sockopt_tcp_nodelay;
Long Li8339dd32017-11-07 01:54:55 -07002327 tcp_ses->rdma = volume_info->rdma;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +03002328 tcp_ses->in_flight = 0;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +04002329 tcp_ses->credits = 1;
Jeff Layton63c038c2008-12-01 18:41:46 -05002330 init_waitqueue_head(&tcp_ses->response_q);
2331 init_waitqueue_head(&tcp_ses->request_q);
2332 INIT_LIST_HEAD(&tcp_ses->pending_mid_q);
2333 mutex_init(&tcp_ses->srv_mutex);
2334 memcpy(tcp_ses->workstation_RFC1001_name,
2335 volume_info->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
2336 memcpy(tcp_ses->server_RFC1001_name,
2337 volume_info->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -05002338 tcp_ses->session_estab = false;
Jeff Layton63c038c2008-12-01 18:41:46 -05002339 tcp_ses->sequence_number = 0;
Steve Frenchfda35942011-01-20 18:06:34 +00002340 tcp_ses->lstrp = jiffies;
Jeff Layton58fa0152012-05-01 17:41:16 -04002341 spin_lock_init(&tcp_ses->req_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002342 INIT_LIST_HEAD(&tcp_ses->tcp_ses_list);
2343 INIT_LIST_HEAD(&tcp_ses->smb_ses_list);
Jeff Laytonc74093b2011-01-11 07:24:23 -05002344 INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002345 INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server);
2346 mutex_init(&tcp_ses->reconnect_mutex);
Jeff Layton9fa114f2012-11-26 11:09:57 -05002347 memcpy(&tcp_ses->srcaddr, &volume_info->srcaddr,
2348 sizeof(tcp_ses->srcaddr));
2349 memcpy(&tcp_ses->dstaddr, &volume_info->dstaddr,
2350 sizeof(tcp_ses->dstaddr));
Steve Frenchfa70b872016-09-22 00:39:34 -05002351 generate_random_uuid(tcp_ses->client_guid);
Jeff Layton63c038c2008-12-01 18:41:46 -05002352 /*
2353 * at this point we are the only ones with the pointer
2354 * to the struct since the kernel thread not created yet
2355 * no need to spinlock this init of tcpStatus or srv_count
2356 */
2357 tcp_ses->tcpStatus = CifsNew;
2358 ++tcp_ses->srv_count;
2359
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002360 if (volume_info->echo_interval >= SMB_ECHO_INTERVAL_MIN &&
2361 volume_info->echo_interval <= SMB_ECHO_INTERVAL_MAX)
2362 tcp_ses->echo_interval = volume_info->echo_interval * HZ;
2363 else
2364 tcp_ses->echo_interval = SMB_ECHO_INTERVAL_DEFAULT * HZ;
Long Li2f894642017-11-22 17:38:34 -07002365 if (tcp_ses->rdma) {
2366#ifndef CONFIG_CIFS_SMB_DIRECT
2367 cifs_dbg(VFS, "CONFIG_CIFS_SMB_DIRECT is not enabled\n");
2368 rc = -ENOENT;
2369 goto out_err_crypto_release;
2370#endif
2371 tcp_ses->smbd_conn = smbd_get_connection(
2372 tcp_ses, (struct sockaddr *)&volume_info->dstaddr);
2373 if (tcp_ses->smbd_conn) {
2374 cifs_dbg(VFS, "RDMA transport established\n");
2375 rc = 0;
2376 goto smbd_connected;
2377 } else {
2378 rc = -ENOENT;
2379 goto out_err_crypto_release;
2380 }
2381 }
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002382 rc = ip_connect(tcp_ses);
Jeff Layton63c038c2008-12-01 18:41:46 -05002383 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002384 cifs_dbg(VFS, "Error connecting to socket. Aborting operation.\n");
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002385 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002386 }
Long Li2f894642017-11-22 17:38:34 -07002387smbd_connected:
Jeff Layton63c038c2008-12-01 18:41:46 -05002388 /*
2389 * since we're in a cifs function already, we know that
2390 * this will succeed. No need for try_module_get().
2391 */
2392 __module_get(THIS_MODULE);
Al Viro7c97c202011-06-21 08:51:28 -04002393 tcp_ses->tsk = kthread_run(cifs_demultiplex_thread,
Jeff Layton63c038c2008-12-01 18:41:46 -05002394 tcp_ses, "cifsd");
2395 if (IS_ERR(tcp_ses->tsk)) {
2396 rc = PTR_ERR(tcp_ses->tsk);
Joe Perchesf96637b2013-05-04 22:12:25 -05002397 cifs_dbg(VFS, "error %d create cifsd thread\n", rc);
Jeff Layton63c038c2008-12-01 18:41:46 -05002398 module_put(THIS_MODULE);
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002399 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002400 }
Steve Frenchfd88ce92011-04-12 01:01:14 +00002401 tcp_ses->tcpStatus = CifsNeedNegotiate;
Jeff Layton63c038c2008-12-01 18:41:46 -05002402
2403 /* thread spawned, put it on the list */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302404 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002405 list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302406 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002407
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05302408 cifs_fscache_get_client_cookie(tcp_ses);
2409
Jeff Laytonc74093b2011-01-11 07:24:23 -05002410 /* queue echo request delayed work */
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002411 queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval);
Jeff Laytonc74093b2011-01-11 07:24:23 -05002412
Jeff Layton63c038c2008-12-01 18:41:46 -05002413 return tcp_ses;
2414
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002415out_err_crypto_release:
Pavel Shilovsky026e93d2016-11-03 16:47:37 -07002416 cifs_crypto_secmech_release(tcp_ses);
Shirish Pargaonkard2b91522010-10-21 14:25:08 -05002417
Rob Landleyf1d0c992011-01-22 15:44:05 -06002418 put_net(cifs_net_ns(tcp_ses));
2419
Jeff Layton63c038c2008-12-01 18:41:46 -05002420out_err:
2421 if (tcp_ses) {
Steve French8347a5c2009-10-06 18:31:29 +00002422 if (!IS_ERR(tcp_ses->hostname))
2423 kfree(tcp_ses->hostname);
Jeff Layton63c038c2008-12-01 18:41:46 -05002424 if (tcp_ses->ssocket)
2425 sock_release(tcp_ses->ssocket);
2426 kfree(tcp_ses);
2427 }
2428 return ERR_PTR(rc);
2429}
2430
Steve French96daf2b2011-05-27 04:34:02 +00002431static int match_session(struct cifs_ses *ses, struct smb_vol *vol)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002432{
Jeff Layton3f618222013-06-12 19:52:14 -05002433 if (vol->sectype != Unspecified &&
2434 vol->sectype != ses->sectype)
2435 return 0;
2436
2437 switch (ses->sectype) {
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002438 case Kerberos:
Eric W. Biederman64ed39d2013-02-06 02:30:39 -08002439 if (!uid_eq(vol->cred_uid, ses->cred_uid))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002440 return 0;
2441 break;
2442 default:
Jeff Layton04febab2012-01-17 16:09:15 -05002443 /* NULL username means anonymous session */
2444 if (ses->user_name == NULL) {
2445 if (!vol->nullauth)
2446 return 0;
2447 break;
2448 }
2449
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002450 /* anything else takes username/password */
Jeff Layton04febab2012-01-17 16:09:15 -05002451 if (strncmp(ses->user_name,
2452 vol->username ? vol->username : "",
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002453 CIFS_MAX_USERNAME_LEN))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002454 return 0;
Jeff Layton08b37d52014-05-23 06:53:10 -04002455 if ((vol->username && strlen(vol->username) != 0) &&
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002456 ses->password != NULL &&
2457 strncmp(ses->password,
2458 vol->password ? vol->password : "",
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002459 CIFS_MAX_PASSWORD_LEN))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002460 return 0;
2461 }
2462 return 1;
2463}
2464
Aurelien Aptelb327a712018-01-24 13:46:10 +01002465/**
2466 * cifs_setup_ipc - helper to setup the IPC tcon for the session
2467 *
2468 * A new IPC connection is made and stored in the session
2469 * tcon_ipc. The IPC tcon has the same lifetime as the session.
2470 */
2471static int
2472cifs_setup_ipc(struct cifs_ses *ses, struct smb_vol *volume_info)
2473{
2474 int rc = 0, xid;
2475 struct cifs_tcon *tcon;
2476 struct nls_table *nls_codepage;
2477 char unc[SERVER_NAME_LENGTH + sizeof("//x/IPC$")] = {0};
2478 bool seal = false;
2479
2480 /*
2481 * If the mount request that resulted in the creation of the
2482 * session requires encryption, force IPC to be encrypted too.
2483 */
2484 if (volume_info->seal) {
2485 if (ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION)
2486 seal = true;
2487 else {
2488 cifs_dbg(VFS,
2489 "IPC: server doesn't support encryption\n");
2490 return -EOPNOTSUPP;
2491 }
2492 }
2493
2494 tcon = tconInfoAlloc();
2495 if (tcon == NULL)
2496 return -ENOMEM;
2497
2498 snprintf(unc, sizeof(unc), "\\\\%s\\IPC$", ses->serverName);
2499
2500 /* cannot fail */
2501 nls_codepage = load_nls_default();
2502
2503 xid = get_xid();
2504 tcon->ses = ses;
2505 tcon->ipc = true;
2506 tcon->seal = seal;
2507 rc = ses->server->ops->tree_connect(xid, ses, unc, tcon, nls_codepage);
2508 free_xid(xid);
2509
2510 if (rc) {
2511 cifs_dbg(VFS, "failed to connect to IPC (rc=%d)\n", rc);
2512 tconInfoFree(tcon);
2513 goto out;
2514 }
2515
2516 cifs_dbg(FYI, "IPC tcon rc = %d ipc tid = %d\n", rc, tcon->tid);
2517
2518 ses->tcon_ipc = tcon;
2519out:
2520 unload_nls(nls_codepage);
2521 return rc;
2522}
2523
2524/**
2525 * cifs_free_ipc - helper to release the session IPC tcon
2526 *
2527 * Needs to be called everytime a session is destroyed
2528 */
2529static int
2530cifs_free_ipc(struct cifs_ses *ses)
2531{
2532 int rc = 0, xid;
2533 struct cifs_tcon *tcon = ses->tcon_ipc;
2534
2535 if (tcon == NULL)
2536 return 0;
2537
2538 if (ses->server->ops->tree_disconnect) {
2539 xid = get_xid();
2540 rc = ses->server->ops->tree_disconnect(xid, tcon);
2541 free_xid(xid);
2542 }
2543
2544 if (rc)
2545 cifs_dbg(FYI, "failed to disconnect IPC tcon (rc=%d)\n", rc);
2546
2547 tconInfoFree(tcon);
2548 ses->tcon_ipc = NULL;
2549 return rc;
2550}
2551
Steve French96daf2b2011-05-27 04:34:02 +00002552static struct cifs_ses *
Jeff Layton4ff67b72010-07-06 20:43:02 -04002553cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb_vol *vol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554{
Steve French96daf2b2011-05-27 04:34:02 +00002555 struct cifs_ses *ses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302557 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton4ff67b72010-07-06 20:43:02 -04002558 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002559 if (ses->status == CifsExiting)
2560 continue;
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002561 if (!match_session(ses, vol))
2562 continue;
Jeff Layton14fbf502008-11-14 13:53:46 -05002563 ++ses->ses_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302564 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002565 return ses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302567 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 return NULL;
2569}
2570
Jeff Layton14fbf502008-11-14 13:53:46 -05002571static void
Steve French96daf2b2011-05-27 04:34:02 +00002572cifs_put_smb_ses(struct cifs_ses *ses)
Jeff Layton14fbf502008-11-14 13:53:46 -05002573{
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002574 unsigned int rc, xid;
Jeff Layton14fbf502008-11-14 13:53:46 -05002575 struct TCP_Server_Info *server = ses->server;
2576
Joe Perchesf96637b2013-05-04 22:12:25 -05002577 cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002578
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302579 spin_lock(&cifs_tcp_ses_lock);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002580 if (ses->status == CifsExiting) {
2581 spin_unlock(&cifs_tcp_ses_lock);
2582 return;
2583 }
Jeff Layton14fbf502008-11-14 13:53:46 -05002584 if (--ses->ses_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302585 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002586 return;
2587 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002588 if (ses->status == CifsGood)
2589 ses->status = CifsExiting;
2590 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002591
Aurelien Aptelb327a712018-01-24 13:46:10 +01002592 cifs_free_ipc(ses);
2593
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002594 if (ses->status == CifsExiting && server->ops->logoff) {
2595 xid = get_xid();
2596 rc = server->ops->logoff(xid, ses);
2597 if (rc)
2598 cifs_dbg(VFS, "%s: Session Logoff failure rc=%d\n",
2599 __func__, rc);
2600 _free_xid(xid);
2601 }
2602
2603 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002604 list_del_init(&ses->smb_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302605 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002606
Jeff Layton14fbf502008-11-14 13:53:46 -05002607 sesInfoFree(ses);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002608 cifs_put_tcp_session(server, 0);
Jeff Layton14fbf502008-11-14 13:53:46 -05002609}
2610
Jeff Layton8a8798a2012-01-17 16:09:15 -05002611#ifdef CONFIG_KEYS
2612
Chen Gang057d6332013-07-19 09:01:36 +08002613/* strlen("cifs:a:") + CIFS_MAX_DOMAINNAME_LEN + 1 */
2614#define CIFSCREDS_DESC_SIZE (7 + CIFS_MAX_DOMAINNAME_LEN + 1)
Jeff Layton8a8798a2012-01-17 16:09:15 -05002615
2616/* Populate username and pw fields from keyring if possible */
2617static int
2618cifs_set_cifscreds(struct smb_vol *vol, struct cifs_ses *ses)
2619{
2620 int rc = 0;
David Howells146aa8b2015-10-21 14:04:48 +01002621 const char *delim, *payload;
2622 char *desc;
Jeff Layton8a8798a2012-01-17 16:09:15 -05002623 ssize_t len;
2624 struct key *key;
2625 struct TCP_Server_Info *server = ses->server;
2626 struct sockaddr_in *sa;
2627 struct sockaddr_in6 *sa6;
David Howells146aa8b2015-10-21 14:04:48 +01002628 const struct user_key_payload *upayload;
Jeff Layton8a8798a2012-01-17 16:09:15 -05002629
2630 desc = kmalloc(CIFSCREDS_DESC_SIZE, GFP_KERNEL);
2631 if (!desc)
2632 return -ENOMEM;
2633
2634 /* try to find an address key first */
2635 switch (server->dstaddr.ss_family) {
2636 case AF_INET:
2637 sa = (struct sockaddr_in *)&server->dstaddr;
2638 sprintf(desc, "cifs:a:%pI4", &sa->sin_addr.s_addr);
2639 break;
2640 case AF_INET6:
2641 sa6 = (struct sockaddr_in6 *)&server->dstaddr;
2642 sprintf(desc, "cifs:a:%pI6c", &sa6->sin6_addr.s6_addr);
2643 break;
2644 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05002645 cifs_dbg(FYI, "Bad ss_family (%hu)\n",
2646 server->dstaddr.ss_family);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002647 rc = -EINVAL;
2648 goto out_err;
2649 }
2650
Joe Perchesf96637b2013-05-04 22:12:25 -05002651 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002652 key = request_key(&key_type_logon, desc, "");
2653 if (IS_ERR(key)) {
2654 if (!ses->domainName) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002655 cifs_dbg(FYI, "domainName is NULL\n");
Jeff Layton8a8798a2012-01-17 16:09:15 -05002656 rc = PTR_ERR(key);
2657 goto out_err;
2658 }
2659
2660 /* didn't work, try to find a domain key */
2661 sprintf(desc, "cifs:d:%s", ses->domainName);
Joe Perchesf96637b2013-05-04 22:12:25 -05002662 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002663 key = request_key(&key_type_logon, desc, "");
2664 if (IS_ERR(key)) {
2665 rc = PTR_ERR(key);
2666 goto out_err;
2667 }
2668 }
2669
2670 down_read(&key->sem);
David Howells0837e492017-03-01 15:11:23 +00002671 upayload = user_key_payload_locked(key);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002672 if (IS_ERR_OR_NULL(upayload)) {
Jeff Layton4edc53c2012-02-07 06:30:51 -05002673 rc = upayload ? PTR_ERR(upayload) : -EINVAL;
Jeff Layton8a8798a2012-01-17 16:09:15 -05002674 goto out_key_put;
2675 }
2676
2677 /* find first : in payload */
David Howells146aa8b2015-10-21 14:04:48 +01002678 payload = upayload->data;
Jeff Layton8a8798a2012-01-17 16:09:15 -05002679 delim = strnchr(payload, upayload->datalen, ':');
Joe Perchesf96637b2013-05-04 22:12:25 -05002680 cifs_dbg(FYI, "payload=%s\n", payload);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002681 if (!delim) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002682 cifs_dbg(FYI, "Unable to find ':' in payload (datalen=%d)\n",
2683 upayload->datalen);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002684 rc = -EINVAL;
2685 goto out_key_put;
2686 }
2687
2688 len = delim - payload;
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002689 if (len > CIFS_MAX_USERNAME_LEN || len <= 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002690 cifs_dbg(FYI, "Bad value from username search (len=%zd)\n",
2691 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002692 rc = -EINVAL;
2693 goto out_key_put;
2694 }
2695
2696 vol->username = kstrndup(payload, len, GFP_KERNEL);
2697 if (!vol->username) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002698 cifs_dbg(FYI, "Unable to allocate %zd bytes for username\n",
2699 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002700 rc = -ENOMEM;
2701 goto out_key_put;
2702 }
Joe Perchesf96637b2013-05-04 22:12:25 -05002703 cifs_dbg(FYI, "%s: username=%s\n", __func__, vol->username);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002704
2705 len = key->datalen - (len + 1);
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002706 if (len > CIFS_MAX_PASSWORD_LEN || len <= 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002707 cifs_dbg(FYI, "Bad len for password search (len=%zd)\n", len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002708 rc = -EINVAL;
2709 kfree(vol->username);
2710 vol->username = NULL;
2711 goto out_key_put;
2712 }
2713
2714 ++delim;
2715 vol->password = kstrndup(delim, len, GFP_KERNEL);
2716 if (!vol->password) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002717 cifs_dbg(FYI, "Unable to allocate %zd bytes for password\n",
2718 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002719 rc = -ENOMEM;
2720 kfree(vol->username);
2721 vol->username = NULL;
2722 goto out_key_put;
2723 }
2724
2725out_key_put:
2726 up_read(&key->sem);
2727 key_put(key);
2728out_err:
2729 kfree(desc);
Joe Perchesf96637b2013-05-04 22:12:25 -05002730 cifs_dbg(FYI, "%s: returning %d\n", __func__, rc);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002731 return rc;
2732}
2733#else /* ! CONFIG_KEYS */
2734static inline int
2735cifs_set_cifscreds(struct smb_vol *vol __attribute__((unused)),
2736 struct cifs_ses *ses __attribute__((unused)))
2737{
2738 return -ENOSYS;
2739}
2740#endif /* CONFIG_KEYS */
2741
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01002742/**
2743 * cifs_get_smb_ses - get a session matching @volume_info data from @server
2744 *
2745 * This function assumes it is being called from cifs_mount() where we
2746 * already got a server reference (server refcount +1). See
2747 * cifs_get_tcon() for refcount explanations.
2748 */
Steve French96daf2b2011-05-27 04:34:02 +00002749static struct cifs_ses *
Jeff Layton36988c72010-04-24 07:57:43 -04002750cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb_vol *volume_info)
2751{
Pavel Shilovsky286170a2012-05-25 10:43:58 +04002752 int rc = -ENOMEM;
2753 unsigned int xid;
Steve French96daf2b2011-05-27 04:34:02 +00002754 struct cifs_ses *ses;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002755 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
2756 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
Jeff Layton36988c72010-04-24 07:57:43 -04002757
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002758 xid = get_xid();
Jeff Layton36988c72010-04-24 07:57:43 -04002759
Jeff Layton4ff67b72010-07-06 20:43:02 -04002760 ses = cifs_find_smb_ses(server, volume_info);
Jeff Layton36988c72010-04-24 07:57:43 -04002761 if (ses) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002762 cifs_dbg(FYI, "Existing smb sess found (status=%d)\n",
2763 ses->status);
Jeff Layton36988c72010-04-24 07:57:43 -04002764
Jeff Layton36988c72010-04-24 07:57:43 -04002765 mutex_lock(&ses->session_mutex);
Jeff Layton198b5682010-04-24 07:57:48 -04002766 rc = cifs_negotiate_protocol(xid, ses);
2767 if (rc) {
2768 mutex_unlock(&ses->session_mutex);
2769 /* problem -- put our ses reference */
2770 cifs_put_smb_ses(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002771 free_xid(xid);
Jeff Layton198b5682010-04-24 07:57:48 -04002772 return ERR_PTR(rc);
2773 }
Jeff Layton36988c72010-04-24 07:57:43 -04002774 if (ses->need_reconnect) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002775 cifs_dbg(FYI, "Session needs reconnect\n");
Jeff Layton36988c72010-04-24 07:57:43 -04002776 rc = cifs_setup_session(xid, ses,
2777 volume_info->local_nls);
2778 if (rc) {
2779 mutex_unlock(&ses->session_mutex);
2780 /* problem -- put our reference */
2781 cifs_put_smb_ses(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002782 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04002783 return ERR_PTR(rc);
2784 }
2785 }
2786 mutex_unlock(&ses->session_mutex);
Jeff Layton460cf342010-09-14 11:38:24 -04002787
2788 /* existing SMB ses has a server reference already */
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002789 cifs_put_tcp_session(server, 0);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002790 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04002791 return ses;
2792 }
2793
Joe Perchesf96637b2013-05-04 22:12:25 -05002794 cifs_dbg(FYI, "Existing smb sess not found\n");
Jeff Layton36988c72010-04-24 07:57:43 -04002795 ses = sesInfoAlloc();
2796 if (ses == NULL)
2797 goto get_ses_fail;
2798
2799 /* new SMB session uses our server ref */
2800 ses->server = server;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002801 if (server->dstaddr.ss_family == AF_INET6)
2802 sprintf(ses->serverName, "%pI6", &addr6->sin6_addr);
Jeff Layton36988c72010-04-24 07:57:43 -04002803 else
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002804 sprintf(ses->serverName, "%pI4", &addr->sin_addr);
Jeff Layton36988c72010-04-24 07:57:43 -04002805
Steve French8727c8a2011-02-25 01:11:56 -06002806 if (volume_info->username) {
2807 ses->user_name = kstrdup(volume_info->username, GFP_KERNEL);
2808 if (!ses->user_name)
2809 goto get_ses_fail;
2810 }
Jeff Layton36988c72010-04-24 07:57:43 -04002811
2812 /* volume_info->password freed at unmount */
2813 if (volume_info->password) {
2814 ses->password = kstrdup(volume_info->password, GFP_KERNEL);
2815 if (!ses->password)
2816 goto get_ses_fail;
2817 }
2818 if (volume_info->domainname) {
Shirish Pargaonkard3686d52010-10-28 09:53:07 -05002819 ses->domainName = kstrdup(volume_info->domainname, GFP_KERNEL);
2820 if (!ses->domainName)
2821 goto get_ses_fail;
Jeff Layton36988c72010-04-24 07:57:43 -04002822 }
Germano Percossi39566442016-12-15 12:31:18 +05302823 if (volume_info->domainauto)
2824 ses->domainAuto = volume_info->domainauto;
Jeff Layton3e4b3e12010-07-19 18:00:17 -04002825 ses->cred_uid = volume_info->cred_uid;
Jeff Layton36988c72010-04-24 07:57:43 -04002826 ses->linux_uid = volume_info->linux_uid;
Steve Frenchd9b94202011-04-12 01:24:57 +00002827
Jeff Layton28e11bd2013-05-26 07:01:00 -04002828 ses->sectype = volume_info->sectype;
2829 ses->sign = volume_info->sign;
Jeff Layton36988c72010-04-24 07:57:43 -04002830
2831 mutex_lock(&ses->session_mutex);
Jeff Layton198b5682010-04-24 07:57:48 -04002832 rc = cifs_negotiate_protocol(xid, ses);
2833 if (!rc)
2834 rc = cifs_setup_session(xid, ses, volume_info->local_nls);
Jeff Layton36988c72010-04-24 07:57:43 -04002835 mutex_unlock(&ses->session_mutex);
Steve Frenchc8e56f12010-09-08 21:10:58 +00002836 if (rc)
Jeff Layton36988c72010-04-24 07:57:43 -04002837 goto get_ses_fail;
2838
2839 /* success, put it on the list */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302840 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton36988c72010-04-24 07:57:43 -04002841 list_add(&ses->smb_ses_list, &server->smb_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302842 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton36988c72010-04-24 07:57:43 -04002843
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002844 free_xid(xid);
Aurelien Aptelb327a712018-01-24 13:46:10 +01002845
2846 cifs_setup_ipc(ses, volume_info);
2847
Jeff Layton36988c72010-04-24 07:57:43 -04002848 return ses;
2849
2850get_ses_fail:
2851 sesInfoFree(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002852 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04002853 return ERR_PTR(rc);
2854}
2855
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002856static int match_tcon(struct cifs_tcon *tcon, struct smb_vol *volume_info)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002857{
2858 if (tcon->tidStatus == CifsExiting)
2859 return 0;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002860 if (strncmp(tcon->treeName, volume_info->UNC, MAX_TREE_SIZE))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002861 return 0;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002862 if (tcon->seal != volume_info->seal)
2863 return 0;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002864 if (tcon->snapshot_time != volume_info->snapshot_time)
2865 return 0;
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002866 return 1;
2867}
2868
Steve French96daf2b2011-05-27 04:34:02 +00002869static struct cifs_tcon *
Steve French8b217fe2016-11-11 22:36:20 -06002870cifs_find_tcon(struct cifs_ses *ses, struct smb_vol *volume_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871{
2872 struct list_head *tmp;
Steve French96daf2b2011-05-27 04:34:02 +00002873 struct cifs_tcon *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302875 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002876 list_for_each(tmp, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +00002877 tcon = list_entry(tmp, struct cifs_tcon, tcon_list);
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002878 if (!match_tcon(tcon, volume_info))
Jeff Laytonf1987b42008-11-15 11:12:47 -05002879 continue;
Jeff Laytonf1987b42008-11-15 11:12:47 -05002880 ++tcon->tc_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302881 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 return tcon;
2883 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302884 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 return NULL;
2886}
2887
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002888void
Steve French96daf2b2011-05-27 04:34:02 +00002889cifs_put_tcon(struct cifs_tcon *tcon)
Jeff Laytonf1987b42008-11-15 11:12:47 -05002890{
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002891 unsigned int xid;
Aurelien Aptelb327a712018-01-24 13:46:10 +01002892 struct cifs_ses *ses;
Jeff Laytonf1987b42008-11-15 11:12:47 -05002893
Aurelien Aptelb327a712018-01-24 13:46:10 +01002894 /*
2895 * IPC tcon share the lifetime of their session and are
2896 * destroyed in the session put function
2897 */
2898 if (tcon == NULL || tcon->ipc)
2899 return;
2900
2901 ses = tcon->ses;
Joe Perchesf96637b2013-05-04 22:12:25 -05002902 cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302903 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002904 if (--tcon->tc_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302905 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002906 return;
2907 }
2908
2909 list_del_init(&tcon->tcon_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302910 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002911
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002912 xid = get_xid();
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002913 if (ses->server->ops->tree_disconnect)
2914 ses->server->ops->tree_disconnect(xid, tcon);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002915 _free_xid(xid);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002916
Suresh Jayaramand03382c2010-07-05 18:12:27 +05302917 cifs_fscache_release_super_cookie(tcon);
Steve French9f841592010-07-23 20:37:53 +00002918 tconInfoFree(tcon);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002919 cifs_put_smb_ses(ses);
2920}
2921
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01002922/**
2923 * cifs_get_tcon - get a tcon matching @volume_info data from @ses
2924 *
2925 * - tcon refcount is the number of mount points using the tcon.
2926 * - ses refcount is the number of tcon using the session.
2927 *
2928 * 1. This function assumes it is being called from cifs_mount() where
2929 * we already got a session reference (ses refcount +1).
2930 *
2931 * 2. Since we're in the context of adding a mount point, the end
2932 * result should be either:
2933 *
2934 * a) a new tcon already allocated with refcount=1 (1 mount point) and
2935 * its session refcount incremented (1 new tcon). This +1 was
2936 * already done in (1).
2937 *
2938 * b) an existing tcon with refcount+1 (add a mount point to it) and
2939 * identical ses refcount (no new tcon). Because of (1) we need to
2940 * decrement the ses refcount.
2941 */
Steve French96daf2b2011-05-27 04:34:02 +00002942static struct cifs_tcon *
2943cifs_get_tcon(struct cifs_ses *ses, struct smb_vol *volume_info)
Jeff Laytond00c28d2010-04-24 07:57:44 -04002944{
2945 int rc, xid;
Steve French96daf2b2011-05-27 04:34:02 +00002946 struct cifs_tcon *tcon;
Jeff Laytond00c28d2010-04-24 07:57:44 -04002947
Steve French8b217fe2016-11-11 22:36:20 -06002948 tcon = cifs_find_tcon(ses, volume_info);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002949 if (tcon) {
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01002950 /*
2951 * tcon has refcount already incremented but we need to
2952 * decrement extra ses reference gotten by caller (case b)
2953 */
Joe Perchesf96637b2013-05-04 22:12:25 -05002954 cifs_dbg(FYI, "Found match on UNC path\n");
Jeff Laytond00c28d2010-04-24 07:57:44 -04002955 cifs_put_smb_ses(ses);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002956 return tcon;
2957 }
2958
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002959 if (!ses->server->ops->tree_connect) {
2960 rc = -ENOSYS;
2961 goto out_fail;
2962 }
2963
Jeff Laytond00c28d2010-04-24 07:57:44 -04002964 tcon = tconInfoAlloc();
2965 if (tcon == NULL) {
2966 rc = -ENOMEM;
2967 goto out_fail;
2968 }
2969
Steve French8b217fe2016-11-11 22:36:20 -06002970 if (volume_info->snapshot_time) {
Steve French8b217fe2016-11-11 22:36:20 -06002971 if (ses->server->vals->protocol_id == 0) {
2972 cifs_dbg(VFS,
2973 "Use SMB2 or later for snapshot mount option\n");
2974 rc = -EOPNOTSUPP;
2975 goto out_fail;
2976 } else
2977 tcon->snapshot_time = volume_info->snapshot_time;
Steve French8b217fe2016-11-11 22:36:20 -06002978 }
2979
Jeff Laytond00c28d2010-04-24 07:57:44 -04002980 tcon->ses = ses;
2981 if (volume_info->password) {
2982 tcon->password = kstrdup(volume_info->password, GFP_KERNEL);
2983 if (!tcon->password) {
2984 rc = -ENOMEM;
2985 goto out_fail;
2986 }
2987 }
2988
Steve French23657ad2018-04-22 15:14:58 -05002989 if (volume_info->seal) {
2990 if (ses->server->vals->protocol_id == 0) {
2991 cifs_dbg(VFS,
2992 "SMB3 or later required for encryption\n");
2993 rc = -EOPNOTSUPP;
2994 goto out_fail;
2995 } else if (tcon->ses->server->capabilities &
2996 SMB2_GLOBAL_CAP_ENCRYPTION)
2997 tcon->seal = true;
2998 else {
2999 cifs_dbg(VFS, "Encryption is not supported on share\n");
3000 rc = -EOPNOTSUPP;
3001 goto out_fail;
3002 }
3003 }
3004
Steve Frenchb3266142018-05-20 23:41:10 -05003005#ifdef CONFIG_CIFS_SMB311
3006 if ((volume_info->linux_ext) && (ses->server->posix_ext_supported)) {
3007 if (ses->server->vals->protocol_id == SMB311_PROT_ID)
3008 tcon->posix_extensions = true;
3009 }
3010#endif /* 311 */
3011
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003012 /*
3013 * BB Do we need to wrap session_mutex around this TCon call and Unix
3014 * SetFS as we do on SessSetup and reconnect?
3015 */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003016 xid = get_xid();
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003017 rc = ses->server->ops->tree_connect(xid, ses, volume_info->UNC, tcon,
3018 volume_info->local_nls);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003019 free_xid(xid);
Joe Perchesf96637b2013-05-04 22:12:25 -05003020 cifs_dbg(FYI, "Tcon rc = %d\n", rc);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003021 if (rc)
3022 goto out_fail;
3023
3024 if (volume_info->nodfs) {
3025 tcon->Flags &= ~SMB_SHARE_IS_IN_DFS;
Joe Perchesf96637b2013-05-04 22:12:25 -05003026 cifs_dbg(FYI, "DFS disabled (%d)\n", tcon->Flags);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003027 }
Steve Frenchb618f002015-11-03 09:15:03 -06003028 tcon->use_persistent = false;
3029 /* check if SMB2 or later, CIFS does not support persistent handles */
3030 if (volume_info->persistent) {
3031 if (ses->server->vals->protocol_id == 0) {
3032 cifs_dbg(VFS,
3033 "SMB3 or later required for persistent handles\n");
3034 rc = -EOPNOTSUPP;
3035 goto out_fail;
3036 } else if (ses->server->capabilities &
3037 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
3038 tcon->use_persistent = true;
3039 else /* persistent handles requested but not supported */ {
3040 cifs_dbg(VFS,
3041 "Persistent handles not supported on share\n");
3042 rc = -EOPNOTSUPP;
3043 goto out_fail;
3044 }
3045 } else if ((tcon->capabilities & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY)
3046 && (ses->server->capabilities & SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
3047 && (volume_info->nopersistent == false)) {
3048 cifs_dbg(FYI, "enabling persistent handles\n");
3049 tcon->use_persistent = true;
Steve French592fafe2015-11-03 10:08:53 -06003050 } else if (volume_info->resilient) {
3051 if (ses->server->vals->protocol_id == 0) {
3052 cifs_dbg(VFS,
3053 "SMB2.1 or later required for resilient handles\n");
3054 rc = -EOPNOTSUPP;
3055 goto out_fail;
3056 }
3057 tcon->use_resilient = true;
Steve Frenchb618f002015-11-03 09:15:03 -06003058 }
3059
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003060 /*
3061 * We can have only one retry value for a connection to a share so for
3062 * resources mounted more than once to the same server share the last
3063 * value passed in for the retry flag is used.
3064 */
Jeff Laytond00c28d2010-04-24 07:57:44 -04003065 tcon->retry = volume_info->retry;
3066 tcon->nocase = volume_info->nocase;
Steve French3d4ef9a2018-04-25 22:19:09 -05003067 tcon->nohandlecache = volume_info->nohandlecache;
Jeff Laytond00c28d2010-04-24 07:57:44 -04003068 tcon->local_lease = volume_info->local_lease;
Pavel Shilovsky233839b2012-09-19 06:22:45 -07003069 INIT_LIST_HEAD(&tcon->pending_opens);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003070
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303071 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003072 list_add(&tcon->tcon_list, &ses->tcon_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303073 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003074
Suresh Jayaramand03382c2010-07-05 18:12:27 +05303075 cifs_fscache_get_super_cookie(tcon);
3076
Jeff Laytond00c28d2010-04-24 07:57:44 -04003077 return tcon;
3078
3079out_fail:
3080 tconInfoFree(tcon);
3081 return ERR_PTR(rc);
3082}
3083
Jeff Layton9d002df2010-10-06 19:51:11 -04003084void
3085cifs_put_tlink(struct tcon_link *tlink)
3086{
3087 if (!tlink || IS_ERR(tlink))
3088 return;
3089
3090 if (!atomic_dec_and_test(&tlink->tl_count) ||
3091 test_bit(TCON_LINK_IN_TREE, &tlink->tl_flags)) {
3092 tlink->tl_time = jiffies;
3093 return;
3094 }
3095
3096 if (!IS_ERR(tlink_tcon(tlink)))
3097 cifs_put_tcon(tlink_tcon(tlink));
3098 kfree(tlink);
3099 return;
3100}
Jeff Laytond00c28d2010-04-24 07:57:44 -04003101
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003102static inline struct tcon_link *
Pavel Shilovskycd518752011-06-09 12:58:53 +04003103cifs_sb_master_tlink(struct cifs_sb_info *cifs_sb)
3104{
3105 return cifs_sb->master_tlink;
3106}
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003107
3108static int
3109compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data)
3110{
3111 struct cifs_sb_info *old = CIFS_SB(sb);
3112 struct cifs_sb_info *new = mnt_data->cifs_sb;
3113
3114 if ((sb->s_flags & CIFS_MS_MASK) != (mnt_data->flags & CIFS_MS_MASK))
3115 return 0;
3116
3117 if ((old->mnt_cifs_flags & CIFS_MOUNT_MASK) !=
3118 (new->mnt_cifs_flags & CIFS_MOUNT_MASK))
3119 return 0;
3120
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003121 /*
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003122 * We want to share sb only if we don't specify an r/wsize or
3123 * specified r/wsize is greater than or equal to existing one.
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003124 */
3125 if (new->wsize && new->wsize < old->wsize)
3126 return 0;
3127
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003128 if (new->rsize && new->rsize < old->rsize)
3129 return 0;
3130
Eric W. Biederman1f682332013-02-06 01:20:20 -08003131 if (!uid_eq(old->mnt_uid, new->mnt_uid) || !gid_eq(old->mnt_gid, new->mnt_gid))
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003132 return 0;
3133
3134 if (old->mnt_file_mode != new->mnt_file_mode ||
3135 old->mnt_dir_mode != new->mnt_dir_mode)
3136 return 0;
3137
3138 if (strcmp(old->local_nls->charset, new->local_nls->charset))
3139 return 0;
3140
3141 if (old->actimeo != new->actimeo)
3142 return 0;
3143
3144 return 1;
3145}
3146
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003147static int
3148match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data)
3149{
3150 struct cifs_sb_info *old = CIFS_SB(sb);
3151 struct cifs_sb_info *new = mnt_data->cifs_sb;
Sachin Prabhucd8c4292017-04-26 14:05:46 +01003152 bool old_set = old->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH;
3153 bool new_set = new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH;
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003154
Sachin Prabhucd8c4292017-04-26 14:05:46 +01003155 if (old_set && new_set && !strcmp(new->prepath, old->prepath))
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003156 return 1;
Sachin Prabhucd8c4292017-04-26 14:05:46 +01003157 else if (!old_set && !new_set)
3158 return 1;
3159
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003160 return 0;
3161}
3162
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003163int
3164cifs_match_super(struct super_block *sb, void *data)
3165{
3166 struct cifs_mnt_data *mnt_data = (struct cifs_mnt_data *)data;
3167 struct smb_vol *volume_info;
3168 struct cifs_sb_info *cifs_sb;
3169 struct TCP_Server_Info *tcp_srv;
Steve French96daf2b2011-05-27 04:34:02 +00003170 struct cifs_ses *ses;
3171 struct cifs_tcon *tcon;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003172 struct tcon_link *tlink;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003173 int rc = 0;
3174
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003175 spin_lock(&cifs_tcp_ses_lock);
3176 cifs_sb = CIFS_SB(sb);
3177 tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
3178 if (IS_ERR(tlink)) {
3179 spin_unlock(&cifs_tcp_ses_lock);
3180 return rc;
3181 }
3182 tcon = tlink_tcon(tlink);
3183 ses = tcon->ses;
3184 tcp_srv = ses->server;
3185
3186 volume_info = mnt_data->vol;
3187
Jeff Layton9fa114f2012-11-26 11:09:57 -05003188 if (!match_server(tcp_srv, volume_info) ||
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003189 !match_session(ses, volume_info) ||
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08003190 !match_tcon(tcon, volume_info) ||
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003191 !match_prepath(sb, mnt_data)) {
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003192 rc = 0;
3193 goto out;
3194 }
3195
3196 rc = compare_mount_options(sb, mnt_data);
3197out:
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003198 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf484b5d02011-07-11 10:16:34 -04003199 cifs_put_tlink(tlink);
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003200 return rc;
3201}
3202
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203int
Pavel Shilovskyb669f332012-05-27 20:21:53 +04003204get_dfs_path(const unsigned int xid, struct cifs_ses *ses, const char *old_path,
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003205 const struct nls_table *nls_codepage, unsigned int *num_referrals,
3206 struct dfs_info3_param **referrals, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 int rc = 0;
3209
Aurelien Aptelb327a712018-01-24 13:46:10 +01003210 if (!ses->server->ops->get_dfs_refer)
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003211 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003213 *num_referrals = 0;
3214 *referrals = NULL;
3215
Aurelien Aptelb327a712018-01-24 13:46:10 +01003216 rc = ses->server->ops->get_dfs_refer(xid, ses, old_path,
3217 referrals, num_referrals,
3218 nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 return rc;
3220}
3221
Jeff Layton09e50d52008-07-23 10:11:19 -04003222#ifdef CONFIG_DEBUG_LOCK_ALLOC
3223static struct lock_class_key cifs_key[2];
3224static struct lock_class_key cifs_slock_key[2];
3225
3226static inline void
3227cifs_reclassify_socket4(struct socket *sock)
3228{
3229 struct sock *sk = sock->sk;
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02003230 BUG_ON(!sock_allow_reclassification(sk));
Jeff Layton09e50d52008-07-23 10:11:19 -04003231 sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS",
3232 &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]);
3233}
3234
3235static inline void
3236cifs_reclassify_socket6(struct socket *sock)
3237{
3238 struct sock *sk = sock->sk;
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02003239 BUG_ON(!sock_allow_reclassification(sk));
Jeff Layton09e50d52008-07-23 10:11:19 -04003240 sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS",
3241 &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]);
3242}
3243#else
3244static inline void
3245cifs_reclassify_socket4(struct socket *sock)
3246{
3247}
3248
3249static inline void
3250cifs_reclassify_socket6(struct socket *sock)
3251{
3252}
3253#endif
3254
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255/* See RFC1001 section 14 on representation of Netbios names */
Steve French50c2f752007-07-13 00:33:32 +00003256static void rfc1002mangle(char *target, char *source, unsigned int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257{
Steve French50c2f752007-07-13 00:33:32 +00003258 unsigned int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
Steve French50c2f752007-07-13 00:33:32 +00003260 for (i = 0, j = 0; i < (length); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 /* mask a nibble at a time and encode */
3262 target[j] = 'A' + (0x0F & (source[i] >> 4));
3263 target[j+1] = 'A' + (0x0F & source[i]);
Steve French50c2f752007-07-13 00:33:32 +00003264 j += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 }
3266
3267}
3268
Ben Greear3eb9a882010-09-01 17:06:02 -07003269static int
3270bind_socket(struct TCP_Server_Info *server)
3271{
3272 int rc = 0;
3273 if (server->srcaddr.ss_family != AF_UNSPEC) {
3274 /* Bind to the specified local IP address */
3275 struct socket *socket = server->ssocket;
3276 rc = socket->ops->bind(socket,
3277 (struct sockaddr *) &server->srcaddr,
3278 sizeof(server->srcaddr));
3279 if (rc < 0) {
3280 struct sockaddr_in *saddr4;
3281 struct sockaddr_in6 *saddr6;
3282 saddr4 = (struct sockaddr_in *)&server->srcaddr;
3283 saddr6 = (struct sockaddr_in6 *)&server->srcaddr;
3284 if (saddr6->sin6_family == AF_INET6)
Joe Perchesf96637b2013-05-04 22:12:25 -05003285 cifs_dbg(VFS, "Failed to bind to: %pI6c, error: %d\n",
3286 &saddr6->sin6_addr, rc);
Ben Greear3eb9a882010-09-01 17:06:02 -07003287 else
Joe Perchesf96637b2013-05-04 22:12:25 -05003288 cifs_dbg(VFS, "Failed to bind to: %pI4, error: %d\n",
3289 &saddr4->sin_addr.s_addr, rc);
Ben Greear3eb9a882010-09-01 17:06:02 -07003290 }
3291 }
3292 return rc;
3293}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294
3295static int
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003296ip_rfc1001_connect(struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297{
3298 int rc = 0;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003299 /*
3300 * some servers require RFC1001 sessinit before sending
3301 * negprot - BB check reconnection in case where second
3302 * sessinit is sent but no second negprot
3303 */
3304 struct rfc1002_session_packet *ses_init_buf;
3305 struct smb_hdr *smb_buf;
3306 ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet),
3307 GFP_KERNEL);
3308 if (ses_init_buf) {
3309 ses_init_buf->trailer.session_req.called_len = 32;
3310
Colin Ian King997152f2016-01-25 16:25:54 +00003311 if (server->server_RFC1001_name[0] != 0)
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003312 rfc1002mangle(ses_init_buf->trailer.
3313 session_req.called_name,
3314 server->server_RFC1001_name,
3315 RFC1001_NAME_LEN_WITH_NULL);
3316 else
3317 rfc1002mangle(ses_init_buf->trailer.
3318 session_req.called_name,
3319 DEFAULT_CIFS_CALLED_NAME,
3320 RFC1001_NAME_LEN_WITH_NULL);
3321
3322 ses_init_buf->trailer.session_req.calling_len = 32;
3323
3324 /*
3325 * calling name ends in null (byte 16) from old smb
3326 * convention.
3327 */
Steve Frenchc85c35f2015-03-27 01:15:02 -05003328 if (server->workstation_RFC1001_name[0] != 0)
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003329 rfc1002mangle(ses_init_buf->trailer.
3330 session_req.calling_name,
3331 server->workstation_RFC1001_name,
3332 RFC1001_NAME_LEN_WITH_NULL);
3333 else
3334 rfc1002mangle(ses_init_buf->trailer.
3335 session_req.calling_name,
3336 "LINUX_CIFS_CLNT",
3337 RFC1001_NAME_LEN_WITH_NULL);
3338
3339 ses_init_buf->trailer.session_req.scope1 = 0;
3340 ses_init_buf->trailer.session_req.scope2 = 0;
3341 smb_buf = (struct smb_hdr *)ses_init_buf;
3342
3343 /* sizeof RFC1002_SESSION_REQUEST with no scope */
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003344 smb_buf->smb_buf_length = cpu_to_be32(0x81000044);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003345 rc = smb_send(server, smb_buf, 0x44);
3346 kfree(ses_init_buf);
3347 /*
3348 * RFC1001 layer in at least one server
3349 * requires very short break before negprot
3350 * presumably because not expecting negprot
3351 * to follow so fast. This is a simple
3352 * solution that works without
3353 * complicating the code and causes no
3354 * significant slowing down on mount
3355 * for everyone else
3356 */
3357 usleep_range(1000, 2000);
3358 }
3359 /*
3360 * else the negprot may still work without this
3361 * even though malloc failed
3362 */
3363
3364 return rc;
3365}
3366
3367static int
3368generic_ip_connect(struct TCP_Server_Info *server)
3369{
3370 int rc = 0;
Steve French6da97912011-03-13 18:55:55 +00003371 __be16 sport;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003372 int slen, sfamily;
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003373 struct socket *socket = server->ssocket;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003374 struct sockaddr *saddr;
3375
3376 saddr = (struct sockaddr *) &server->dstaddr;
3377
3378 if (server->dstaddr.ss_family == AF_INET6) {
3379 sport = ((struct sockaddr_in6 *) saddr)->sin6_port;
3380 slen = sizeof(struct sockaddr_in6);
3381 sfamily = AF_INET6;
3382 } else {
3383 sport = ((struct sockaddr_in *) saddr)->sin_port;
3384 slen = sizeof(struct sockaddr_in);
3385 sfamily = AF_INET;
3386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003388 if (socket == NULL) {
Rob Landleyf1d0c992011-01-22 15:44:05 -06003389 rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM,
3390 IPPROTO_TCP, &socket, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003392 cifs_dbg(VFS, "Error %d creating socket\n", rc);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003393 server->ssocket = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 }
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003396
3397 /* BB other socket options to set KEEPALIVE, NODELAY? */
Joe Perchesf96637b2013-05-04 22:12:25 -05003398 cifs_dbg(FYI, "Socket created\n");
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003399 server->ssocket = socket;
3400 socket->sk->sk_allocation = GFP_NOFS;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003401 if (sfamily == AF_INET6)
3402 cifs_reclassify_socket6(socket);
3403 else
3404 cifs_reclassify_socket4(socket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 }
3406
Ben Greear3eb9a882010-09-01 17:06:02 -07003407 rc = bind_socket(server);
3408 if (rc < 0)
3409 return rc;
3410
Jeff Laytond5c56052008-12-01 18:42:33 -05003411 /*
3412 * Eventually check for other socket options to change from
3413 * the default. sock_setsockopt not used because it expects
3414 * user space buffer
3415 */
3416 socket->sk->sk_rcvtimeo = 7 * HZ;
Steve Frenchda505c32009-01-19 03:49:35 +00003417 socket->sk->sk_sndtimeo = 5 * HZ;
Steve French6a5fa2362010-01-01 01:28:43 +00003418
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003419 /* make the bufsizes depend on wsize/rsize and max requests */
3420 if (server->noautotune) {
3421 if (socket->sk->sk_sndbuf < (200 * 1024))
3422 socket->sk->sk_sndbuf = 200 * 1024;
3423 if (socket->sk->sk_rcvbuf < (140 * 1024))
3424 socket->sk->sk_rcvbuf = 140 * 1024;
3425 }
3426
Steve French6a5fa2362010-01-01 01:28:43 +00003427 if (server->tcp_nodelay) {
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003428 int val = 1;
Steve French6a5fa2362010-01-01 01:28:43 +00003429 rc = kernel_setsockopt(socket, SOL_TCP, TCP_NODELAY,
3430 (char *)&val, sizeof(val));
3431 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05003432 cifs_dbg(FYI, "set TCP_NODELAY socket option error %d\n",
3433 rc);
Steve French6a5fa2362010-01-01 01:28:43 +00003434 }
3435
Joe Perchesf96637b2013-05-04 22:12:25 -05003436 cifs_dbg(FYI, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx\n",
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003437 socket->sk->sk_sndbuf,
3438 socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo);
3439
Jeff Laytonee1b3ea2011-06-21 07:18:26 -04003440 rc = socket->ops->connect(socket, saddr, slen, 0);
3441 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003442 cifs_dbg(FYI, "Error %d connecting to server\n", rc);
Jeff Laytonee1b3ea2011-06-21 07:18:26 -04003443 sock_release(socket);
3444 server->ssocket = NULL;
3445 return rc;
3446 }
3447
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003448 if (sport == htons(RFC1001_PORT))
3449 rc = ip_rfc1001_connect(server);
Steve French50c2f752007-07-13 00:33:32 +00003450
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 return rc;
3452}
3453
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003454static int
3455ip_connect(struct TCP_Server_Info *server)
3456{
Steve French6da97912011-03-13 18:55:55 +00003457 __be16 *sport;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003458 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
3459 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
3460
3461 if (server->dstaddr.ss_family == AF_INET6)
3462 sport = &addr6->sin6_port;
3463 else
3464 sport = &addr->sin_port;
3465
3466 if (*sport == 0) {
3467 int rc;
3468
3469 /* try with 445 port at first */
3470 *sport = htons(CIFS_PORT);
3471
3472 rc = generic_ip_connect(server);
3473 if (rc >= 0)
3474 return rc;
3475
3476 /* if it failed, try with 139 port */
3477 *sport = htons(RFC1001_PORT);
3478 }
3479
3480 return generic_ip_connect(server);
3481}
3482
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003483void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon,
Al Viro2c6292a2011-06-17 09:05:48 -04003484 struct cifs_sb_info *cifs_sb, struct smb_vol *vol_info)
Steve French8af18972007-02-14 04:42:51 +00003485{
3486 /* if we are reconnecting then should we check to see if
3487 * any requested capabilities changed locally e.g. via
3488 * remount but we can not do much about it here
3489 * if they have (even if we could detect it by the following)
3490 * Perhaps we could add a backpointer to array of sb from tcon
3491 * or if we change to make all sb to same share the same
3492 * sb as NFS - then we only have one backpointer to sb.
3493 * What if we wanted to mount the server share twice once with
3494 * and once without posixacls or posix paths? */
3495 __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French50c2f752007-07-13 00:33:32 +00003496
Steve Frenchc18c8422007-07-18 23:21:09 +00003497 if (vol_info && vol_info->no_linux_ext) {
3498 tcon->fsUnixInfo.Capability = 0;
3499 tcon->unix_ext = 0; /* Unix Extensions disabled */
Joe Perchesf96637b2013-05-04 22:12:25 -05003500 cifs_dbg(FYI, "Linux protocol extensions disabled\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00003501 return;
3502 } else if (vol_info)
3503 tcon->unix_ext = 1; /* Unix Extensions supported */
3504
3505 if (tcon->unix_ext == 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003506 cifs_dbg(FYI, "Unix extensions disabled so not set on reconnect\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00003507 return;
3508 }
Steve French50c2f752007-07-13 00:33:32 +00003509
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003510 if (!CIFSSMBQFSUnixInfo(xid, tcon)) {
Steve French8af18972007-02-14 04:42:51 +00003511 __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
Joe Perchesf96637b2013-05-04 22:12:25 -05003512 cifs_dbg(FYI, "unix caps which server supports %lld\n", cap);
Steve French8af18972007-02-14 04:42:51 +00003513 /* check for reconnect case in which we do not
3514 want to change the mount behavior if we can avoid it */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003515 if (vol_info == NULL) {
Steve French50c2f752007-07-13 00:33:32 +00003516 /* turn off POSIX ACL and PATHNAMES if not set
Steve French8af18972007-02-14 04:42:51 +00003517 originally at mount time */
3518 if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0)
3519 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
Igor Mammedov11b6d642008-02-15 19:06:04 +00003520 if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
3521 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003522 cifs_dbg(VFS, "POSIXPATH support change\n");
Steve French8af18972007-02-14 04:42:51 +00003523 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
Igor Mammedov11b6d642008-02-15 19:06:04 +00003524 } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003525 cifs_dbg(VFS, "possible reconnect error\n");
3526 cifs_dbg(VFS, "server disabled POSIX path support\n");
Igor Mammedov11b6d642008-02-15 19:06:04 +00003527 }
Steve French8af18972007-02-14 04:42:51 +00003528 }
Steve French50c2f752007-07-13 00:33:32 +00003529
Steve French6848b732011-05-26 18:38:54 +00003530 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003531 cifs_dbg(VFS, "per-share encryption not supported yet\n");
Steve French6848b732011-05-26 18:38:54 +00003532
Steve French8af18972007-02-14 04:42:51 +00003533 cap &= CIFS_UNIX_CAP_MASK;
Steve French75865f8c2007-06-24 18:30:48 +00003534 if (vol_info && vol_info->no_psx_acl)
Steve French8af18972007-02-14 04:42:51 +00003535 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
Steve French75865f8c2007-06-24 18:30:48 +00003536 else if (CIFS_UNIX_POSIX_ACL_CAP & cap) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003537 cifs_dbg(FYI, "negotiated posix acl support\n");
Al Viro2c6292a2011-06-17 09:05:48 -04003538 if (cifs_sb)
3539 cifs_sb->mnt_cifs_flags |=
3540 CIFS_MOUNT_POSIXACL;
Steve French8af18972007-02-14 04:42:51 +00003541 }
3542
Steve French75865f8c2007-06-24 18:30:48 +00003543 if (vol_info && vol_info->posix_paths == 0)
Steve French8af18972007-02-14 04:42:51 +00003544 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
Steve French75865f8c2007-06-24 18:30:48 +00003545 else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003546 cifs_dbg(FYI, "negotiate posix pathnames\n");
Al Viro2c6292a2011-06-17 09:05:48 -04003547 if (cifs_sb)
3548 cifs_sb->mnt_cifs_flags |=
Steve French8af18972007-02-14 04:42:51 +00003549 CIFS_MOUNT_POSIX_PATHS;
3550 }
Steve French50c2f752007-07-13 00:33:32 +00003551
Joe Perchesf96637b2013-05-04 22:12:25 -05003552 cifs_dbg(FYI, "Negotiate caps 0x%x\n", (int)cap);
Steve French8af18972007-02-14 04:42:51 +00003553#ifdef CONFIG_CIFS_DEBUG2
Steve French75865f8c2007-06-24 18:30:48 +00003554 if (cap & CIFS_UNIX_FCNTL_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003555 cifs_dbg(FYI, "FCNTL cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003556 if (cap & CIFS_UNIX_EXTATTR_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003557 cifs_dbg(FYI, "EXTATTR cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003558 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003559 cifs_dbg(FYI, "POSIX path cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003560 if (cap & CIFS_UNIX_XATTR_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003561 cifs_dbg(FYI, "XATTR cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003562 if (cap & CIFS_UNIX_POSIX_ACL_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003563 cifs_dbg(FYI, "POSIX ACL cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003564 if (cap & CIFS_UNIX_LARGE_READ_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003565 cifs_dbg(FYI, "very large read cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003566 if (cap & CIFS_UNIX_LARGE_WRITE_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003567 cifs_dbg(FYI, "very large write cap\n");
Steve French6848b732011-05-26 18:38:54 +00003568 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003569 cifs_dbg(FYI, "transport encryption cap\n");
Steve French6848b732011-05-26 18:38:54 +00003570 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003571 cifs_dbg(FYI, "mandatory transport encryption cap\n");
Steve French8af18972007-02-14 04:42:51 +00003572#endif /* CIFS_DEBUG2 */
3573 if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) {
Steve French442aa312007-09-24 20:25:46 +00003574 if (vol_info == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003575 cifs_dbg(FYI, "resetting capabilities failed\n");
Steve French442aa312007-09-24 20:25:46 +00003576 } else
Joe Perchesf96637b2013-05-04 22:12:25 -05003577 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 +00003578
Steve French8af18972007-02-14 04:42:51 +00003579 }
3580 }
3581}
3582
Sachin Prabhu4214ebf2016-07-29 22:38:19 +01003583int cifs_setup_cifs_sb(struct smb_vol *pvolume_info,
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003584 struct cifs_sb_info *cifs_sb)
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -04003585{
Jeff Layton2de970f2010-10-06 19:51:12 -04003586 INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks);
3587
Al Viro2ced6f62011-06-17 09:20:04 -04003588 spin_lock_init(&cifs_sb->tlink_tree_lock);
3589 cifs_sb->tlink_tree = RB_ROOT;
3590
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003591 /*
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003592 * Temporarily set r/wsize for matching superblock. If we end up using
3593 * new sb then client will later negotiate it downward if needed.
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003594 */
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003595 cifs_sb->rsize = pvolume_info->rsize;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003596 cifs_sb->wsize = pvolume_info->wsize;
3597
Steve French3b795212008-11-13 19:45:32 +00003598 cifs_sb->mnt_uid = pvolume_info->linux_uid;
3599 cifs_sb->mnt_gid = pvolume_info->linux_gid;
3600 cifs_sb->mnt_file_mode = pvolume_info->file_mode;
3601 cifs_sb->mnt_dir_mode = pvolume_info->dir_mode;
Joe Perchesf96637b2013-05-04 22:12:25 -05003602 cifs_dbg(FYI, "file mode: 0x%hx dir mode: 0x%hx\n",
3603 cifs_sb->mnt_file_mode, cifs_sb->mnt_dir_mode);
Steve French3b795212008-11-13 19:45:32 +00003604
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05303605 cifs_sb->actimeo = pvolume_info->actimeo;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003606 cifs_sb->local_nls = pvolume_info->local_nls;
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05303607
Steve French3b795212008-11-13 19:45:32 +00003608 if (pvolume_info->noperm)
3609 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_PERM;
3610 if (pvolume_info->setuids)
3611 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SET_UID;
Steve French95932652016-09-23 01:36:34 -05003612 if (pvolume_info->setuidfromacl)
3613 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UID_FROM_ACL;
Steve French3b795212008-11-13 19:45:32 +00003614 if (pvolume_info->server_ino)
3615 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SERVER_INUM;
3616 if (pvolume_info->remap)
Steve French2baa2682014-09-27 02:19:01 -05003617 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SFM_CHR;
3618 if (pvolume_info->sfu_remap)
Steve French3b795212008-11-13 19:45:32 +00003619 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SPECIAL_CHR;
3620 if (pvolume_info->no_xattr)
3621 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_XATTR;
3622 if (pvolume_info->sfu_emul)
3623 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UNX_EMUL;
3624 if (pvolume_info->nobrl)
3625 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_BRL;
Steve French3d4ef9a2018-04-25 22:19:09 -05003626 if (pvolume_info->nohandlecache)
3627 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_HANDLE_CACHE;
Steve Frenchbe652442009-02-23 15:21:59 +00003628 if (pvolume_info->nostrictsync)
Steve French4717bed2009-02-24 14:44:19 +00003629 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOSSYNC;
Steve French13a6e422008-12-02 17:24:33 +00003630 if (pvolume_info->mand_lock)
3631 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOPOSIXBRL;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00003632 if (pvolume_info->rwpidforward)
3633 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RWPIDFORWARD;
Steve French3b795212008-11-13 19:45:32 +00003634 if (pvolume_info->cifs_acl)
3635 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_ACL;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01003636 if (pvolume_info->backupuid_specified) {
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05003637 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPUID;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01003638 cifs_sb->mnt_backupuid = pvolume_info->backupuid;
3639 }
3640 if (pvolume_info->backupgid_specified) {
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05003641 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPGID;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01003642 cifs_sb->mnt_backupgid = pvolume_info->backupgid;
3643 }
Steve French3b795212008-11-13 19:45:32 +00003644 if (pvolume_info->override_uid)
3645 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_UID;
3646 if (pvolume_info->override_gid)
3647 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_GID;
3648 if (pvolume_info->dynperm)
3649 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DYNPERM;
Suresh Jayaramanfa1df752010-07-05 18:13:36 +05303650 if (pvolume_info->fsc)
3651 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_FSCACHE;
Jeff Layton0eb8a132010-10-06 19:51:12 -04003652 if (pvolume_info->multiuser)
3653 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_MULTIUSER |
3654 CIFS_MOUNT_NO_PERM);
Pavel Shilovskyd39454f2011-01-24 14:16:35 -05003655 if (pvolume_info->strict_io)
3656 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_STRICT_IO;
Steve French3b795212008-11-13 19:45:32 +00003657 if (pvolume_info->direct_io) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003658 cifs_dbg(FYI, "mounting share using direct i/o\n");
Steve French3b795212008-11-13 19:45:32 +00003659 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DIRECT_IO;
3660 }
Stefan Metzmacher736a33202010-07-30 14:56:00 +02003661 if (pvolume_info->mfsymlinks) {
3662 if (pvolume_info->sfu_emul) {
Steve Frenchdb8b6312014-09-22 05:13:55 -05003663 /*
3664 * Our SFU ("Services for Unix" emulation does not allow
3665 * creating symlinks but does allow reading existing SFU
3666 * symlinks (it does allow both creating and reading SFU
3667 * style mknod and FIFOs though). When "mfsymlinks" and
3668 * "sfu" are both enabled at the same time, it allows
3669 * reading both types of symlinks, but will only create
3670 * them with mfsymlinks format. This allows better
3671 * Apple compatibility (probably better for Samba too)
3672 * while still recognizing old Windows style symlinks.
3673 */
3674 cifs_dbg(VFS, "mount options mfsymlinks and sfu both enabled\n");
Stefan Metzmacher736a33202010-07-30 14:56:00 +02003675 }
Steve Frenchdb8b6312014-09-22 05:13:55 -05003676 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MF_SYMLINKS;
Stefan Metzmacher736a33202010-07-30 14:56:00 +02003677 }
Steve French3b795212008-11-13 19:45:32 +00003678
3679 if ((pvolume_info->cifs_acl) && (pvolume_info->dynperm))
Joe Perchesf96637b2013-05-04 22:12:25 -05003680 cifs_dbg(VFS, "mount option dynperm ignored if cifsacl mount option supported\n");
Sachin Prabhu4214ebf2016-07-29 22:38:19 +01003681
3682 if (pvolume_info->prepath) {
3683 cifs_sb->prepath = kstrdup(pvolume_info->prepath, GFP_KERNEL);
3684 if (cifs_sb->prepath == NULL)
3685 return -ENOMEM;
3686 }
3687
3688 return 0;
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -04003689}
3690
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003691static void
3692cleanup_volume_info_contents(struct smb_vol *volume_info)
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003693{
Sean Finneyb9468452011-04-11 13:19:32 +00003694 kfree(volume_info->username);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003695 kzfree(volume_info->password);
Jesper Juhl95c75452011-08-27 18:58:34 +02003696 kfree(volume_info->UNC);
Sean Finneyb9468452011-04-11 13:19:32 +00003697 kfree(volume_info->domainname);
3698 kfree(volume_info->iocharset);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003699 kfree(volume_info->prepath);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003700}
3701
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003702void
3703cifs_cleanup_volume_info(struct smb_vol *volume_info)
3704{
3705 if (!volume_info)
3706 return;
3707 cleanup_volume_info_contents(volume_info);
3708 kfree(volume_info);
3709}
3710
3711
Steve French2d6d5892009-04-09 00:36:44 +00003712#ifdef CONFIG_CIFS_DFS_UPCALL
Steve French6d3ea7e2012-11-28 22:34:41 -06003713/*
3714 * cifs_build_path_to_root returns full path to root when we do not have an
3715 * exiting connection (tcon)
3716 */
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003717static char *
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003718build_unc_path_to_root(const struct smb_vol *vol,
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003719 const struct cifs_sb_info *cifs_sb)
3720{
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003721 char *full_path, *pos;
Jeff Layton839db3d2012-12-10 06:10:45 -05003722 unsigned int pplen = vol->prepath ? strlen(vol->prepath) + 1 : 0;
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003723 unsigned int unc_len = strnlen(vol->UNC, MAX_TREE_SIZE + 1);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003724
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003725 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003726 if (full_path == NULL)
3727 return ERR_PTR(-ENOMEM);
3728
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003729 strncpy(full_path, vol->UNC, unc_len);
3730 pos = full_path + unc_len;
3731
3732 if (pplen) {
Jeff Layton1fc29ba2013-05-31 10:00:18 -04003733 *pos = CIFS_DIR_SEP(cifs_sb);
3734 strncpy(pos + 1, vol->prepath, pplen);
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003735 pos += pplen;
3736 }
3737
3738 *pos = '\0'; /* add trailing null */
Steve Frenchf87d39d2011-05-27 03:50:55 +00003739 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
Joe Perchesf96637b2013-05-04 22:12:25 -05003740 cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003741 return full_path;
3742}
Sean Finneydd613942011-04-11 13:19:30 +00003743
3744/*
3745 * Perform a dfs referral query for a share and (optionally) prefix
3746 *
Sean Finney046462a2011-04-11 13:19:33 +00003747 * If a referral is found, cifs_sb->mountdata will be (re-)allocated
3748 * to a string containing updated options for the submount. Otherwise it
3749 * will be left untouched.
Sean Finneydd613942011-04-11 13:19:30 +00003750 *
3751 * Returns the rc from get_dfs_path to the caller, which can be used to
3752 * determine whether there were referrals.
3753 */
3754static int
Pavel Shilovskyb669f332012-05-27 20:21:53 +04003755expand_dfs_referral(const unsigned int xid, struct cifs_ses *ses,
Sean Finneydd613942011-04-11 13:19:30 +00003756 struct smb_vol *volume_info, struct cifs_sb_info *cifs_sb,
Sean Finney046462a2011-04-11 13:19:33 +00003757 int check_prefix)
Sean Finneydd613942011-04-11 13:19:30 +00003758{
3759 int rc;
3760 unsigned int num_referrals = 0;
3761 struct dfs_info3_param *referrals = NULL;
3762 char *full_path = NULL, *ref_path = NULL, *mdata = NULL;
3763
3764 full_path = build_unc_path_to_root(volume_info, cifs_sb);
3765 if (IS_ERR(full_path))
3766 return PTR_ERR(full_path);
3767
3768 /* For DFS paths, skip the first '\' of the UNC */
3769 ref_path = check_prefix ? full_path + 1 : volume_info->UNC + 1;
3770
Pavel Shilovskyb669f332012-05-27 20:21:53 +04003771 rc = get_dfs_path(xid, ses, ref_path, cifs_sb->local_nls,
Steve French2baa2682014-09-27 02:19:01 -05003772 &num_referrals, &referrals, cifs_remap(cifs_sb));
Sean Finneydd613942011-04-11 13:19:30 +00003773
3774 if (!rc && num_referrals > 0) {
3775 char *fake_devname = NULL;
3776
3777 mdata = cifs_compose_mount_options(cifs_sb->mountdata,
3778 full_path + 1, referrals,
3779 &fake_devname);
3780
3781 free_dfs_info_array(referrals, num_referrals);
Sean Finney046462a2011-04-11 13:19:33 +00003782
Sean Finneydd613942011-04-11 13:19:30 +00003783 if (IS_ERR(mdata)) {
3784 rc = PTR_ERR(mdata);
3785 mdata = NULL;
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003786 } else {
3787 cleanup_volume_info_contents(volume_info);
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003788 rc = cifs_setup_volume_info(volume_info, mdata,
3789 fake_devname);
Sean Finneydd613942011-04-11 13:19:30 +00003790 }
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003791 kfree(fake_devname);
3792 kfree(cifs_sb->mountdata);
Sean Finney046462a2011-04-11 13:19:33 +00003793 cifs_sb->mountdata = mdata;
Sean Finneydd613942011-04-11 13:19:30 +00003794 }
3795 kfree(full_path);
3796 return rc;
3797}
Steve French2d6d5892009-04-09 00:36:44 +00003798#endif
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003799
Jeff Layton04db79b2011-07-06 08:10:38 -04003800static int
3801cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data,
3802 const char *devname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803{
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003804 int rc = 0;
Sean Finneydd613942011-04-11 13:19:30 +00003805
Jeff Layton04db79b2011-07-06 08:10:38 -04003806 if (cifs_parse_mount_options(mount_data, devname, volume_info))
3807 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
Jeff Layton7586b762008-12-01 18:41:49 -05003809 if (volume_info->nullauth) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003810 cifs_dbg(FYI, "Anonymous login\n");
Jeff Layton04febab2012-01-17 16:09:15 -05003811 kfree(volume_info->username);
3812 volume_info->username = NULL;
Jeff Layton7586b762008-12-01 18:41:49 -05003813 } else if (volume_info->username) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814 /* BB fixme parse for domain name here */
Joe Perchesf96637b2013-05-04 22:12:25 -05003815 cifs_dbg(FYI, "Username: %s\n", volume_info->username);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -05003817 cifs_dbg(VFS, "No username specified\n");
Steve French50c2f752007-07-13 00:33:32 +00003818 /* In userspace mount helper we can get user name from alternate
3819 locations such as env variables and files on disk */
Jeff Layton04db79b2011-07-06 08:10:38 -04003820 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 }
3822
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 /* this is needed for ASCII cp to Unicode converts */
Jeff Layton7586b762008-12-01 18:41:49 -05003824 if (volume_info->iocharset == NULL) {
Jeff Laytona5fc4ce2010-04-24 07:57:42 -04003825 /* load_nls_default cannot return null */
3826 volume_info->local_nls = load_nls_default();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 } else {
Jeff Laytona5fc4ce2010-04-24 07:57:42 -04003828 volume_info->local_nls = load_nls(volume_info->iocharset);
3829 if (volume_info->local_nls == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003830 cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n",
Joe Perchesb6b38f72010-04-21 03:50:45 +00003831 volume_info->iocharset);
Jeff Layton04db79b2011-07-06 08:10:38 -04003832 return -ELIBACC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 }
3834 }
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003835
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003836 return rc;
Jeff Layton04db79b2011-07-06 08:10:38 -04003837}
3838
3839struct smb_vol *
3840cifs_get_volume_info(char *mount_data, const char *devname)
3841{
3842 int rc;
3843 struct smb_vol *volume_info;
3844
Jeff Layton6ee95422012-11-26 11:09:57 -05003845 volume_info = kmalloc(sizeof(struct smb_vol), GFP_KERNEL);
Jeff Layton04db79b2011-07-06 08:10:38 -04003846 if (!volume_info)
3847 return ERR_PTR(-ENOMEM);
3848
3849 rc = cifs_setup_volume_info(volume_info, mount_data, devname);
3850 if (rc) {
3851 cifs_cleanup_volume_info(volume_info);
3852 volume_info = ERR_PTR(rc);
3853 }
3854
3855 return volume_info;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003856}
3857
Aurelien Aptela6b50582016-05-25 19:59:09 +02003858static int
3859cifs_are_all_path_components_accessible(struct TCP_Server_Info *server,
3860 unsigned int xid,
3861 struct cifs_tcon *tcon,
3862 struct cifs_sb_info *cifs_sb,
3863 char *full_path)
3864{
3865 int rc;
3866 char *s;
3867 char sep, tmp;
3868
3869 sep = CIFS_DIR_SEP(cifs_sb);
3870 s = full_path;
3871
3872 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, "");
3873 while (rc == 0) {
3874 /* skip separators */
3875 while (*s == sep)
3876 s++;
3877 if (!*s)
3878 break;
3879 /* next separator */
3880 while (*s && *s != sep)
3881 s++;
3882
3883 /*
3884 * temporarily null-terminate the path at the end of
3885 * the current component
3886 */
3887 tmp = *s;
3888 *s = 0;
3889 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3890 full_path);
3891 *s = tmp;
3892 }
3893 return rc;
3894}
3895
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003896int
Al Viro2c6292a2011-06-17 09:05:48 -04003897cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *volume_info)
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003898{
Jeff Layton1daaae82012-03-21 06:30:40 -04003899 int rc;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003900 unsigned int xid;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003901 struct cifs_ses *ses;
Steve French96daf2b2011-05-27 04:34:02 +00003902 struct cifs_tcon *tcon;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003903 struct TCP_Server_Info *server;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003904 char *full_path;
3905 struct tcon_link *tlink;
3906#ifdef CONFIG_CIFS_DFS_UPCALL
3907 int referral_walks_count = 0;
Jeff Layton20547492011-07-09 12:21:07 -04003908#endif
Al Virodd854462011-06-17 08:24:42 -04003909
Jeff Layton20547492011-07-09 12:21:07 -04003910#ifdef CONFIG_CIFS_DFS_UPCALL
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003911try_mount_again:
3912 /* cleanup activities if we're chasing a referral */
3913 if (referral_walks_count) {
3914 if (tcon)
3915 cifs_put_tcon(tcon);
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003916 else if (ses)
3917 cifs_put_smb_ses(ses);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003918
Sachin Prabhu1dfd18d2015-06-16 16:36:17 +01003919 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_POSIX_PATHS;
3920
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003921 free_xid(xid);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003922 }
3923#endif
Jeff Layton1daaae82012-03-21 06:30:40 -04003924 rc = 0;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003925 tcon = NULL;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003926 ses = NULL;
3927 server = NULL;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003928 full_path = NULL;
3929 tlink = NULL;
3930
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003931 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
Jeff Layton63c038c2008-12-01 18:41:46 -05003933 /* get a reference to a tcp session */
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003934 server = cifs_get_tcp_session(volume_info);
3935 if (IS_ERR(server)) {
3936 rc = PTR_ERR(server);
Jeff Layton63c038c2008-12-01 18:41:46 -05003937 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 }
Steve French141891f2016-09-23 00:44:16 -05003939 if ((volume_info->max_credits < 20) ||
3940 (volume_info->max_credits > 60000))
3941 server->max_credits = SMB2_MAX_CREDITS_AVAILABLE;
3942 else
3943 server->max_credits = volume_info->max_credits;
Jeff Layton36988c72010-04-24 07:57:43 -04003944 /* get a reference to a SMB session */
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003945 ses = cifs_get_smb_ses(server, volume_info);
3946 if (IS_ERR(ses)) {
3947 rc = PTR_ERR(ses);
3948 ses = NULL;
Jeff Layton36988c72010-04-24 07:57:43 -04003949 goto mount_fail_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 }
Steve French50c2f752007-07-13 00:33:32 +00003951
Steve Frenchb618f002015-11-03 09:15:03 -06003952 if ((volume_info->persistent == true) && ((ses->server->capabilities &
3953 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES) == 0)) {
3954 cifs_dbg(VFS, "persistent handles not supported by server\n");
3955 rc = -EOPNOTSUPP;
3956 goto mount_fail_check;
3957 }
Steve French592fafe2015-11-03 10:08:53 -06003958
Jeff Laytond00c28d2010-04-24 07:57:44 -04003959 /* search for existing tcon to this server share */
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003960 tcon = cifs_get_tcon(ses, volume_info);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003961 if (IS_ERR(tcon)) {
3962 rc = PTR_ERR(tcon);
3963 tcon = NULL;
Mark Syms40920c22016-11-29 11:36:46 +00003964 if (rc == -EACCES)
3965 goto mount_fail_check;
3966
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003967 goto remote_path_check;
Jeff Laytond00c28d2010-04-24 07:57:44 -04003968 }
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003969
Steve Frenchce558b02018-05-31 19:16:54 -05003970#ifdef CONFIG_CIFS_SMB311
3971 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
3972 if (tcon->posix_extensions)
3973 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS;
3974#endif /* SMB3.11 */
3975
Steve French6848b732011-05-26 18:38:54 +00003976 /* tell server which Unix caps we support */
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04003977 if (cap_unix(tcon->ses)) {
Steve French6848b732011-05-26 18:38:54 +00003978 /* reset of caps checks mount to see if unix extensions
3979 disabled for just this mount */
Al Viro2c6292a2011-06-17 09:05:48 -04003980 reset_cifs_unix_caps(xid, tcon, cifs_sb, volume_info);
Steve French6848b732011-05-26 18:38:54 +00003981 if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) &&
3982 (le64_to_cpu(tcon->fsUnixInfo.Capability) &
3983 CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)) {
3984 rc = -EACCES;
3985 goto mount_fail_check;
3986 }
3987 } else
3988 tcon->unix_ext = 0; /* server does not support them */
3989
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003990 /* do not care if a following call succeed - informational */
Aurelien Aptelb327a712018-01-24 13:46:10 +01003991 if (!tcon->pipe && server->ops->qfs_tcon)
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003992 server->ops->qfs_tcon(xid, tcon);
Steve Frenchd82c2df2008-11-15 00:07:26 +00003993
Pavel Shilovsky24985c52012-09-18 16:20:28 -07003994 cifs_sb->wsize = server->ops->negotiate_wsize(tcon, volume_info);
3995 cifs_sb->rsize = server->ops->negotiate_rsize(tcon, volume_info);
Jeff Laytonf7910cb2011-05-19 16:22:58 -04003996
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003997remote_path_check:
Sean Finneyc1508ca2011-04-11 13:19:31 +00003998#ifdef CONFIG_CIFS_DFS_UPCALL
3999 /*
4000 * Perform an unconditional check for whether there are DFS
4001 * referrals for this path without prefix, to provide support
4002 * for DFS referrals from w2k8 servers which don't seem to respond
4003 * with PATH_NOT_COVERED to requests that include the prefix.
4004 * Chase the referral if found, otherwise continue normally.
4005 */
4006 if (referral_walks_count == 0) {
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04004007 int refrc = expand_dfs_referral(xid, ses, volume_info, cifs_sb,
4008 false);
Sean Finneyc1508ca2011-04-11 13:19:31 +00004009 if (!refrc) {
4010 referral_walks_count++;
4011 goto try_mount_again;
4012 }
4013 }
4014#endif
4015
Steve Frenchf87d39d2011-05-27 03:50:55 +00004016 /* check if a whole path is not remote */
Jeff Layton70945642011-03-14 13:48:08 -04004017 if (!rc && tcon) {
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004018 if (!server->ops->is_path_accessible) {
4019 rc = -ENOSYS;
4020 goto mount_fail_check;
4021 }
Steve French6d3ea7e2012-11-28 22:34:41 -06004022 /*
4023 * cifs_build_path_to_root works only when we have a valid tcon
4024 */
Sachin Prabhu374402a2016-12-15 12:31:19 +05304025 full_path = cifs_build_path_to_root(volume_info, cifs_sb, tcon,
4026 tcon->Flags & SMB_SHARE_IS_IN_DFS);
Igor Mammedove4cce942009-02-10 14:10:26 +03004027 if (full_path == NULL) {
4028 rc = -ENOMEM;
4029 goto mount_fail_check;
4030 }
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004031 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
4032 full_path);
Jeff Layton03ceace2010-12-06 21:07:33 -05004033 if (rc != 0 && rc != -EREMOTE) {
Igor Mammedove4cce942009-02-10 14:10:26 +03004034 kfree(full_path);
4035 goto mount_fail_check;
4036 }
Aurelien Aptela6b50582016-05-25 19:59:09 +02004037
Sachin Prabhud1713562016-09-06 13:22:34 +01004038 if (rc != -EREMOTE) {
4039 rc = cifs_are_all_path_components_accessible(server,
Aurelien Aptela6b50582016-05-25 19:59:09 +02004040 xid, tcon, cifs_sb,
4041 full_path);
Sachin Prabhud1713562016-09-06 13:22:34 +01004042 if (rc != 0) {
4043 cifs_dbg(VFS, "cannot query dirs between root and final path, "
4044 "enabling CIFS_MOUNT_USE_PREFIX_PATH\n");
4045 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
4046 rc = 0;
4047 }
Aurelien Aptela6b50582016-05-25 19:59:09 +02004048 }
Igor Mammedove4cce942009-02-10 14:10:26 +03004049 kfree(full_path);
4050 }
4051
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004052 /* get referral if needed */
4053 if (rc == -EREMOTE) {
Steve Frenchd036f502009-04-03 03:12:08 +00004054#ifdef CONFIG_CIFS_DFS_UPCALL
Igor Mammedov5c2503a2009-04-21 19:31:05 +04004055 if (referral_walks_count > MAX_NESTED_LINKS) {
4056 /*
4057 * BB: when we implement proper loop detection,
4058 * we will remove this check. But now we need it
4059 * to prevent an indefinite loop if 'DFS tree' is
4060 * misconfigured (i.e. has loops).
4061 */
4062 rc = -ELOOP;
4063 goto mount_fail_check;
4064 }
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004065
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04004066 rc = expand_dfs_referral(xid, ses, volume_info, cifs_sb, true);
Jeff Layton7b91e262009-07-23 15:22:30 -04004067
Sean Finneydd613942011-04-11 13:19:30 +00004068 if (!rc) {
Igor Mammedov5c2503a2009-04-21 19:31:05 +04004069 referral_walks_count++;
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004070 goto try_mount_again;
4071 }
Sean Finneydd613942011-04-11 13:19:30 +00004072 goto mount_fail_check;
Steve Frenchd036f502009-04-03 03:12:08 +00004073#else /* No DFS support, return error on mount */
4074 rc = -EOPNOTSUPP;
4075#endif
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004076 }
4077
Jeff Layton9d002df2010-10-06 19:51:11 -04004078 if (rc)
4079 goto mount_fail_check;
4080
4081 /* now, hang the tcon off of the superblock */
4082 tlink = kzalloc(sizeof *tlink, GFP_KERNEL);
4083 if (tlink == NULL) {
4084 rc = -ENOMEM;
4085 goto mount_fail_check;
4086 }
4087
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04004088 tlink->tl_uid = ses->linux_uid;
Jeff Layton9d002df2010-10-06 19:51:11 -04004089 tlink->tl_tcon = tcon;
4090 tlink->tl_time = jiffies;
4091 set_bit(TCON_LINK_MASTER, &tlink->tl_flags);
4092 set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4093
Jeff Layton413e6612010-10-28 13:33:38 -04004094 cifs_sb->master_tlink = tlink;
Jeff Laytonb647c352010-10-28 11:16:44 -04004095 spin_lock(&cifs_sb->tlink_tree_lock);
4096 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
4097 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton413e6612010-10-28 13:33:38 -04004098
Jeff Laytonda472fc2012-03-23 14:40:53 -04004099 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
Jeff Layton2de970f2010-10-06 19:51:12 -04004100 TLINK_IDLE_EXPIRE);
4101
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004102mount_fail_check:
4103 /* on error free sesinfo and tcon struct if needed */
4104 if (rc) {
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004105 /* If find_unc succeeded then rc == 0 so we can not end */
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004106 /* up accidentally freeing someone elses tcon struct */
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004107 if (tcon)
4108 cifs_put_tcon(tcon);
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04004109 else if (ses)
4110 cifs_put_smb_ses(ses);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004111 else
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07004112 cifs_put_tcp_session(server, 0);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004113 }
4114
Jeff Layton70fe7dc2007-11-16 22:21:07 +00004115out:
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004116 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 return rc;
4118}
4119
Jeff Layton8d1bca32011-06-11 21:17:10 -04004120/*
Aurelien Aptelb327a712018-01-24 13:46:10 +01004121 * Issue a TREE_CONNECT request.
Jeff Layton8d1bca32011-06-11 21:17:10 -04004122 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123int
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04004124CIFSTCon(const unsigned int xid, struct cifs_ses *ses,
Steve French96daf2b2011-05-27 04:34:02 +00004125 const char *tree, struct cifs_tcon *tcon,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126 const struct nls_table *nls_codepage)
4127{
4128 struct smb_hdr *smb_buffer;
4129 struct smb_hdr *smb_buffer_response;
4130 TCONX_REQ *pSMB;
4131 TCONX_RSP *pSMBr;
4132 unsigned char *bcc_ptr;
4133 int rc = 0;
Jeff Layton690c5222011-01-20 13:36:51 -05004134 int length;
4135 __u16 bytes_left, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136
4137 if (ses == NULL)
4138 return -EIO;
4139
4140 smb_buffer = cifs_buf_get();
Steve Frenchca43e3b2009-09-01 17:20:50 +00004141 if (smb_buffer == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 return -ENOMEM;
Steve Frenchca43e3b2009-09-01 17:20:50 +00004143
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 smb_buffer_response = smb_buffer;
4145
4146 header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX,
4147 NULL /*no tid */ , 4 /*wct */ );
Steve French1982c342005-08-17 12:38:22 -07004148
Pavel Shilovsky88257362012-05-23 14:01:59 +04004149 smb_buffer->Mid = get_next_mid(ses->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 smb_buffer->Uid = ses->Suid;
4151 pSMB = (TCONX_REQ *) smb_buffer;
4152 pSMBr = (TCONX_RSP *) smb_buffer_response;
4153
4154 pSMB->AndXCommand = 0xFF;
4155 pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 bcc_ptr = &pSMB->Password[0];
Aurelien Aptelb327a712018-01-24 13:46:10 +01004157 if (tcon->pipe || (ses->server->sec_mode & SECMODE_USER)) {
Steve Frencheeac8042006-01-13 21:34:58 -08004158 pSMB->PasswordLength = cpu_to_le16(1); /* minimum */
Steve French7c7b25b2006-06-01 19:20:10 +00004159 *bcc_ptr = 0; /* password is null byte */
Steve Frencheeac8042006-01-13 21:34:58 -08004160 bcc_ptr++; /* skip password */
Steve French7c7b25b2006-06-01 19:20:10 +00004161 /* already aligned so no need to do it below */
Steve Frencheeac8042006-01-13 21:34:58 -08004162 } else {
Shirish Pargaonkar540b2e32011-01-18 22:33:54 -06004163 pSMB->PasswordLength = cpu_to_le16(CIFS_AUTH_RESP_SIZE);
Steve Frencheeac8042006-01-13 21:34:58 -08004164 /* BB FIXME add code to fail this if NTLMv2 or Kerberos
4165 specified as required (when that support is added to
4166 the vfs in the future) as only NTLM or the much
Steve French7c7b25b2006-06-01 19:20:10 +00004167 weaker LANMAN (which we do not send by default) is accepted
Steve Frencheeac8042006-01-13 21:34:58 -08004168 by Samba (not sure whether other servers allow
4169 NTLMv2 password here) */
Steve French7c7b25b2006-06-01 19:20:10 +00004170#ifdef CONFIG_CIFS_WEAK_PW_HASH
Jeff Layton04912d62010-04-24 07:57:45 -04004171 if ((global_secflags & CIFSSEC_MAY_LANMAN) &&
Jeff Layton3f618222013-06-12 19:52:14 -05004172 (ses->sectype == LANMAN))
Shirish Pargaonkard3ba50b2010-10-27 15:20:36 -05004173 calc_lanman_hash(tcon->password, ses->server->cryptkey,
Steve French96daf2b2011-05-27 04:34:02 +00004174 ses->server->sec_mode &
Jeff Layton4e53a3f2008-12-05 20:41:21 -05004175 SECMODE_PW_ENCRYPT ? true : false,
4176 bcc_ptr);
Steve French7c7b25b2006-06-01 19:20:10 +00004177 else
4178#endif /* CIFS_WEAK_PW_HASH */
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -06004179 rc = SMBNTencrypt(tcon->password, ses->server->cryptkey,
Shirish Pargaonkar9ef59922011-10-20 13:21:59 -05004180 bcc_ptr, nls_codepage);
Steve Frenchf3a31a22015-03-26 19:23:20 -05004181 if (rc) {
4182 cifs_dbg(FYI, "%s Can't generate NTLM rsp. Error: %d\n",
4183 __func__, rc);
4184 cifs_buf_release(smb_buffer);
4185 return rc;
4186 }
Steve Frencheeac8042006-01-13 21:34:58 -08004187
Shirish Pargaonkar540b2e32011-01-18 22:33:54 -06004188 bcc_ptr += CIFS_AUTH_RESP_SIZE;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00004189 if (ses->capabilities & CAP_UNICODE) {
Steve French7c7b25b2006-06-01 19:20:10 +00004190 /* must align unicode strings */
4191 *bcc_ptr = 0; /* null byte password */
4192 bcc_ptr++;
4193 }
Steve Frencheeac8042006-01-13 21:34:58 -08004194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
Jeff Layton38d77c52013-05-26 07:01:00 -04004196 if (ses->server->sign)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197 smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
4198
4199 if (ses->capabilities & CAP_STATUS32) {
4200 smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS;
4201 }
4202 if (ses->capabilities & CAP_DFS) {
4203 smb_buffer->Flags2 |= SMBFLG2_DFS;
4204 }
4205 if (ses->capabilities & CAP_UNICODE) {
4206 smb_buffer->Flags2 |= SMBFLG2_UNICODE;
4207 length =
Steve Frenchacbbb762012-01-18 22:32:33 -06004208 cifs_strtoUTF16((__le16 *) bcc_ptr, tree,
Steve French50c2f752007-07-13 00:33:32 +00004209 6 /* max utf8 char length in bytes */ *
Steve Frencha878fb22006-05-30 18:04:19 +00004210 (/* server len*/ + 256 /* share len */), nls_codepage);
4211 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 bcc_ptr += 2; /* skip trailing null */
4213 } else { /* ASCII */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 strcpy(bcc_ptr, tree);
4215 bcc_ptr += strlen(tree) + 1;
4216 }
4217 strcpy(bcc_ptr, "?????");
4218 bcc_ptr += strlen("?????");
4219 bcc_ptr += 1;
4220 count = bcc_ptr - &pSMB->Password[0];
Steve Frenchbe8e3b02011-04-29 05:40:20 +00004221 pSMB->hdr.smb_buf_length = cpu_to_be32(be32_to_cpu(
4222 pSMB->hdr.smb_buf_length) + count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 pSMB->ByteCount = cpu_to_le16(count);
4224
Steve French133672e2007-11-13 22:41:37 +00004225 rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length,
Jeff Layton77499812011-01-11 07:24:23 -05004226 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 /* above now done in SendReceive */
Aurelien Aptelb327a712018-01-24 13:46:10 +01004229 if (rc == 0) {
Steve French0e0d2cf2009-05-01 05:27:32 +00004230 bool is_unicode;
4231
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 tcon->tidStatus = CifsGood;
Steve French3b795212008-11-13 19:45:32 +00004233 tcon->need_reconnect = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 tcon->tid = smb_buffer_response->Tid;
4235 bcc_ptr = pByteArea(smb_buffer_response);
Jeff Layton690c5222011-01-20 13:36:51 -05004236 bytes_left = get_bcc(smb_buffer_response);
Jeff Laytoncc20c032009-04-30 07:16:21 -04004237 length = strnlen(bcc_ptr, bytes_left - 2);
Steve French0e0d2cf2009-05-01 05:27:32 +00004238 if (smb_buffer->Flags2 & SMBFLG2_UNICODE)
4239 is_unicode = true;
4240 else
4241 is_unicode = false;
4242
Jeff Laytoncc20c032009-04-30 07:16:21 -04004243
Steve French50c2f752007-07-13 00:33:32 +00004244 /* skip service field (NB: this field is always ASCII) */
Steve French7f8ed422007-09-28 22:28:55 +00004245 if (length == 3) {
4246 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') &&
4247 (bcc_ptr[2] == 'C')) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004248 cifs_dbg(FYI, "IPC connection\n");
Aurelien Aptelb327a712018-01-24 13:46:10 +01004249 tcon->ipc = true;
4250 tcon->pipe = true;
Steve French7f8ed422007-09-28 22:28:55 +00004251 }
4252 } else if (length == 2) {
4253 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) {
4254 /* the most common case */
Joe Perchesf96637b2013-05-04 22:12:25 -05004255 cifs_dbg(FYI, "disk share connection\n");
Steve French7f8ed422007-09-28 22:28:55 +00004256 }
4257 }
Steve French50c2f752007-07-13 00:33:32 +00004258 bcc_ptr += length + 1;
Jeff Laytoncc20c032009-04-30 07:16:21 -04004259 bytes_left -= (length + 1);
Zhao Hongjiang46b51d02013-06-24 01:57:47 -05004260 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
Jeff Laytoncc20c032009-04-30 07:16:21 -04004261
4262 /* mostly informational -- no need to fail on error here */
Jeff Layton90a98b22009-07-20 13:40:52 -04004263 kfree(tcon->nativeFileSystem);
Steve Frenchacbbb762012-01-18 22:32:33 -06004264 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr,
Steve French0e0d2cf2009-05-01 05:27:32 +00004265 bytes_left, is_unicode,
Jeff Laytoncc20c032009-04-30 07:16:21 -04004266 nls_codepage);
4267
Joe Perchesf96637b2013-05-04 22:12:25 -05004268 cifs_dbg(FYI, "nativeFileSystem=%s\n", tcon->nativeFileSystem);
Jeff Laytoncc20c032009-04-30 07:16:21 -04004269
Steve Frenchfb8c4b12007-07-10 01:16:18 +00004270 if ((smb_buffer_response->WordCount == 3) ||
Steve French1a4e15a2006-10-12 21:33:51 +00004271 (smb_buffer_response->WordCount == 7))
4272 /* field is in same location */
Steve French39798772006-05-31 22:40:51 +00004273 tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport);
4274 else
4275 tcon->Flags = 0;
Joe Perchesf96637b2013-05-04 22:12:25 -05004276 cifs_dbg(FYI, "Tcon flags: 0x%x\n", tcon->Flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277 }
4278
Mariusz Kozlowskia8a11d32007-10-03 16:41:24 +00004279 cifs_buf_release(smb_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 return rc;
4281}
4282
Al Viro2e32cf52013-10-03 12:53:37 -04004283static void delayed_free(struct rcu_head *p)
4284{
4285 struct cifs_sb_info *sbi = container_of(p, struct cifs_sb_info, rcu);
4286 unload_nls(sbi->local_nls);
4287 kfree(sbi);
4288}
4289
Al Viro2a9b9952011-06-17 09:27:16 -04004290void
4291cifs_umount(struct cifs_sb_info *cifs_sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292{
Jeff Laytonb647c352010-10-28 11:16:44 -04004293 struct rb_root *root = &cifs_sb->tlink_tree;
4294 struct rb_node *node;
4295 struct tcon_link *tlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296
Jeff Layton2de970f2010-10-06 19:51:12 -04004297 cancel_delayed_work_sync(&cifs_sb->prune_tlinks);
4298
Jeff Laytonb647c352010-10-28 11:16:44 -04004299 spin_lock(&cifs_sb->tlink_tree_lock);
4300 while ((node = rb_first(root))) {
4301 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
4302 cifs_get_tlink(tlink);
4303 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4304 rb_erase(node, root);
Steve French50c2f752007-07-13 00:33:32 +00004305
Jeff Laytonb647c352010-10-28 11:16:44 -04004306 spin_unlock(&cifs_sb->tlink_tree_lock);
4307 cifs_put_tlink(tlink);
4308 spin_lock(&cifs_sb->tlink_tree_lock);
4309 }
4310 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004311
Al Virod757d712011-06-17 09:42:43 -04004312 kfree(cifs_sb->mountdata);
Aurelien Aptela6b50582016-05-25 19:59:09 +02004313 kfree(cifs_sb->prepath);
Al Viro2e32cf52013-10-03 12:53:37 -04004314 call_rcu(&cifs_sb->rcu, delayed_free);
Steve French50c2f752007-07-13 00:33:32 +00004315}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316
Pavel Shilovsky286170a2012-05-25 10:43:58 +04004317int
4318cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319{
4320 int rc = 0;
Jeff Layton198b5682010-04-24 07:57:48 -04004321 struct TCP_Server_Info *server = ses->server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322
Pavel Shilovsky286170a2012-05-25 10:43:58 +04004323 if (!server->ops->need_neg || !server->ops->negotiate)
4324 return -ENOSYS;
4325
Jeff Layton198b5682010-04-24 07:57:48 -04004326 /* only send once per connect */
Pavel Shilovsky286170a2012-05-25 10:43:58 +04004327 if (!server->ops->need_neg(server))
Jeff Layton198b5682010-04-24 07:57:48 -04004328 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329
Pavel Shilovsky45275782012-05-17 17:53:29 +04004330 set_credits(server, 1);
Pavel Shilovsky286170a2012-05-25 10:43:58 +04004331
4332 rc = server->ops->negotiate(xid, ses);
Jeff Layton198b5682010-04-24 07:57:48 -04004333 if (rc == 0) {
4334 spin_lock(&GlobalMid_Lock);
Jeff Layton7fdbaa12011-06-10 16:14:57 -04004335 if (server->tcpStatus == CifsNeedNegotiate)
Jeff Layton198b5682010-04-24 07:57:48 -04004336 server->tcpStatus = CifsGood;
4337 else
4338 rc = -EHOSTDOWN;
4339 spin_unlock(&GlobalMid_Lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 }
Steve French26b994f2008-08-06 05:11:33 +00004341
Jeff Layton198b5682010-04-24 07:57:48 -04004342 return rc;
4343}
Steve French26b994f2008-08-06 05:11:33 +00004344
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04004345int
4346cifs_setup_session(const unsigned int xid, struct cifs_ses *ses,
4347 struct nls_table *nls_info)
Jeff Layton198b5682010-04-24 07:57:48 -04004348{
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04004349 int rc = -ENOSYS;
Jeff Layton198b5682010-04-24 07:57:48 -04004350 struct TCP_Server_Info *server = ses->server;
4351
Jeff Layton198b5682010-04-24 07:57:48 -04004352 ses->capabilities = server->capabilities;
Steve French26b994f2008-08-06 05:11:33 +00004353 if (linuxExtEnabled == 0)
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04004354 ses->capabilities &= (~server->vals->cap_unix);
Steve French20418ac2009-04-30 16:13:32 +00004355
Joe Perchesf96637b2013-05-04 22:12:25 -05004356 cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n",
Steve French96daf2b2011-05-27 04:34:02 +00004357 server->sec_mode, server->capabilities, server->timeAdj);
Jeff Laytoncb7691b2008-08-18 15:41:05 -04004358
Shu Wangf5c4ba82017-09-08 18:48:33 +08004359 if (ses->auth_key.response) {
Steve French2a182872018-03-29 12:16:34 -05004360 cifs_dbg(FYI, "Free previous auth_key.response = %p\n",
Shu Wangf5c4ba82017-09-08 18:48:33 +08004361 ses->auth_key.response);
4362 kfree(ses->auth_key.response);
4363 ses->auth_key.response = NULL;
4364 ses->auth_key.len = 0;
4365 }
4366
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04004367 if (server->ops->sess_setup)
4368 rc = server->ops->sess_setup(xid, ses, nls_info);
4369
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -05004370 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05004371 cifs_dbg(VFS, "Send error in SessSetup = %d\n", rc);
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05004372
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373 return rc;
4374}
4375
Jeff Layton8a8798a2012-01-17 16:09:15 -05004376static int
4377cifs_set_vol_auth(struct smb_vol *vol, struct cifs_ses *ses)
4378{
Jeff Layton3f618222013-06-12 19:52:14 -05004379 vol->sectype = ses->sectype;
4380
4381 /* krb5 is special, since we don't need username or pw */
4382 if (vol->sectype == Kerberos)
Jeff Layton8a8798a2012-01-17 16:09:15 -05004383 return 0;
Jeff Layton8a8798a2012-01-17 16:09:15 -05004384
4385 return cifs_set_cifscreds(vol, ses);
4386}
4387
Steve French96daf2b2011-05-27 04:34:02 +00004388static struct cifs_tcon *
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004389cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid)
Jeff Layton9d002df2010-10-06 19:51:11 -04004390{
Jeff Layton8a8798a2012-01-17 16:09:15 -05004391 int rc;
Steve French96daf2b2011-05-27 04:34:02 +00004392 struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb);
4393 struct cifs_ses *ses;
4394 struct cifs_tcon *tcon = NULL;
Jeff Layton9d002df2010-10-06 19:51:11 -04004395 struct smb_vol *vol_info;
Jeff Layton9d002df2010-10-06 19:51:11 -04004396
4397 vol_info = kzalloc(sizeof(*vol_info), GFP_KERNEL);
Dan Carpenter803ab972012-01-24 11:39:22 +03004398 if (vol_info == NULL)
4399 return ERR_PTR(-ENOMEM);
Jeff Layton9d002df2010-10-06 19:51:11 -04004400
Jeff Layton9d002df2010-10-06 19:51:11 -04004401 vol_info->local_nls = cifs_sb->local_nls;
4402 vol_info->linux_uid = fsuid;
4403 vol_info->cred_uid = fsuid;
4404 vol_info->UNC = master_tcon->treeName;
4405 vol_info->retry = master_tcon->retry;
4406 vol_info->nocase = master_tcon->nocase;
Steve French3d4ef9a2018-04-25 22:19:09 -05004407 vol_info->nohandlecache = master_tcon->nohandlecache;
Jeff Layton9d002df2010-10-06 19:51:11 -04004408 vol_info->local_lease = master_tcon->local_lease;
4409 vol_info->no_linux_ext = !master_tcon->unix_ext;
Jeff Layton28e11bd2013-05-26 07:01:00 -04004410 vol_info->sectype = master_tcon->ses->sectype;
4411 vol_info->sign = master_tcon->ses->sign;
Jeff Layton9d002df2010-10-06 19:51:11 -04004412
Jeff Layton8a8798a2012-01-17 16:09:15 -05004413 rc = cifs_set_vol_auth(vol_info, master_tcon->ses);
4414 if (rc) {
4415 tcon = ERR_PTR(rc);
4416 goto out;
4417 }
Jeff Layton9d002df2010-10-06 19:51:11 -04004418
4419 /* get a reference for the same TCP session */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05304420 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004421 ++master_tcon->ses->server->srv_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05304422 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004423
4424 ses = cifs_get_smb_ses(master_tcon->ses->server, vol_info);
4425 if (IS_ERR(ses)) {
Steve French96daf2b2011-05-27 04:34:02 +00004426 tcon = (struct cifs_tcon *)ses;
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07004427 cifs_put_tcp_session(master_tcon->ses->server, 0);
Jeff Layton9d002df2010-10-06 19:51:11 -04004428 goto out;
4429 }
4430
4431 tcon = cifs_get_tcon(ses, vol_info);
4432 if (IS_ERR(tcon)) {
4433 cifs_put_smb_ses(ses);
4434 goto out;
4435 }
4436
Steve Frenchce558b02018-05-31 19:16:54 -05004437#ifdef CONFIG_CIFS_SMB311
4438 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
4439 if (tcon->posix_extensions)
4440 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS;
4441#endif /* SMB3.11 */
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04004442 if (cap_unix(ses))
Jeff Layton9d002df2010-10-06 19:51:11 -04004443 reset_cifs_unix_caps(0, tcon, NULL, vol_info);
Steve Frenchb3266142018-05-20 23:41:10 -05004444
Jeff Layton9d002df2010-10-06 19:51:11 -04004445out:
Jeff Layton8a8798a2012-01-17 16:09:15 -05004446 kfree(vol_info->username);
Aurelien Aptel97f4b722018-01-25 15:59:39 +01004447 kzfree(vol_info->password);
Jeff Layton9d002df2010-10-06 19:51:11 -04004448 kfree(vol_info);
4449
4450 return tcon;
4451}
4452
Steve French96daf2b2011-05-27 04:34:02 +00004453struct cifs_tcon *
Jeff Layton9d002df2010-10-06 19:51:11 -04004454cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb)
4455{
4456 return tlink_tcon(cifs_sb_master_tlink(cifs_sb));
4457}
4458
Jeff Laytonb647c352010-10-28 11:16:44 -04004459/* find and return a tlink with given uid */
4460static struct tcon_link *
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004461tlink_rb_search(struct rb_root *root, kuid_t uid)
Jeff Laytonb647c352010-10-28 11:16:44 -04004462{
4463 struct rb_node *node = root->rb_node;
4464 struct tcon_link *tlink;
4465
4466 while (node) {
4467 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
4468
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004469 if (uid_gt(tlink->tl_uid, uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04004470 node = node->rb_left;
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004471 else if (uid_lt(tlink->tl_uid, uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04004472 node = node->rb_right;
4473 else
4474 return tlink;
4475 }
4476 return NULL;
4477}
4478
4479/* insert a tcon_link into the tree */
4480static void
4481tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink)
4482{
4483 struct rb_node **new = &(root->rb_node), *parent = NULL;
4484 struct tcon_link *tlink;
4485
4486 while (*new) {
4487 tlink = rb_entry(*new, struct tcon_link, tl_rbnode);
4488 parent = *new;
4489
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004490 if (uid_gt(tlink->tl_uid, new_tlink->tl_uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04004491 new = &((*new)->rb_left);
4492 else
4493 new = &((*new)->rb_right);
4494 }
4495
4496 rb_link_node(&new_tlink->tl_rbnode, parent, new);
4497 rb_insert_color(&new_tlink->tl_rbnode, root);
4498}
4499
Jeff Layton9d002df2010-10-06 19:51:11 -04004500/*
4501 * Find or construct an appropriate tcon given a cifs_sb and the fsuid of the
4502 * current task.
4503 *
4504 * If the superblock doesn't refer to a multiuser mount, then just return
4505 * the master tcon for the mount.
4506 *
Suresh Jayaraman6ef933a2010-11-03 10:53:49 +05304507 * First, search the rbtree for an existing tcon for this fsuid. If one
Jeff Layton9d002df2010-10-06 19:51:11 -04004508 * exists, then check to see if it's pending construction. If it is then wait
4509 * for construction to complete. Once it's no longer pending, check to see if
4510 * it failed and either return an error or retry construction, depending on
4511 * the timeout.
4512 *
4513 * If one doesn't exist then insert a new tcon_link struct into the tree and
4514 * try to construct a new one.
4515 */
4516struct tcon_link *
4517cifs_sb_tlink(struct cifs_sb_info *cifs_sb)
4518{
4519 int ret;
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004520 kuid_t fsuid = current_fsuid();
Jeff Layton9d002df2010-10-06 19:51:11 -04004521 struct tcon_link *tlink, *newtlink;
4522
4523 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
4524 return cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
4525
4526 spin_lock(&cifs_sb->tlink_tree_lock);
Jeff Laytonb647c352010-10-28 11:16:44 -04004527 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
Jeff Layton9d002df2010-10-06 19:51:11 -04004528 if (tlink)
4529 cifs_get_tlink(tlink);
4530 spin_unlock(&cifs_sb->tlink_tree_lock);
4531
4532 if (tlink == NULL) {
4533 newtlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
4534 if (newtlink == NULL)
4535 return ERR_PTR(-ENOMEM);
Jeff Laytonb647c352010-10-28 11:16:44 -04004536 newtlink->tl_uid = fsuid;
Jeff Layton9d002df2010-10-06 19:51:11 -04004537 newtlink->tl_tcon = ERR_PTR(-EACCES);
4538 set_bit(TCON_LINK_PENDING, &newtlink->tl_flags);
4539 set_bit(TCON_LINK_IN_TREE, &newtlink->tl_flags);
4540 cifs_get_tlink(newtlink);
4541
Jeff Layton9d002df2010-10-06 19:51:11 -04004542 spin_lock(&cifs_sb->tlink_tree_lock);
4543 /* was one inserted after previous search? */
Jeff Laytonb647c352010-10-28 11:16:44 -04004544 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
Jeff Layton9d002df2010-10-06 19:51:11 -04004545 if (tlink) {
4546 cifs_get_tlink(tlink);
4547 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004548 kfree(newtlink);
4549 goto wait_for_construction;
4550 }
Jeff Layton9d002df2010-10-06 19:51:11 -04004551 tlink = newtlink;
Jeff Laytonb647c352010-10-28 11:16:44 -04004552 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
4553 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004554 } else {
4555wait_for_construction:
4556 ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING,
Jeff Layton9d002df2010-10-06 19:51:11 -04004557 TASK_INTERRUPTIBLE);
4558 if (ret) {
4559 cifs_put_tlink(tlink);
NeilBrown74316202014-07-07 15:16:04 +10004560 return ERR_PTR(-ERESTARTSYS);
Jeff Layton9d002df2010-10-06 19:51:11 -04004561 }
4562
4563 /* if it's good, return it */
4564 if (!IS_ERR(tlink->tl_tcon))
4565 return tlink;
4566
4567 /* return error if we tried this already recently */
4568 if (time_before(jiffies, tlink->tl_time + TLINK_ERROR_EXPIRE)) {
4569 cifs_put_tlink(tlink);
4570 return ERR_PTR(-EACCES);
4571 }
4572
4573 if (test_and_set_bit(TCON_LINK_PENDING, &tlink->tl_flags))
4574 goto wait_for_construction;
4575 }
4576
4577 tlink->tl_tcon = cifs_construct_tcon(cifs_sb, fsuid);
4578 clear_bit(TCON_LINK_PENDING, &tlink->tl_flags);
4579 wake_up_bit(&tlink->tl_flags, TCON_LINK_PENDING);
4580
4581 if (IS_ERR(tlink->tl_tcon)) {
4582 cifs_put_tlink(tlink);
4583 return ERR_PTR(-EACCES);
4584 }
4585
4586 return tlink;
4587}
Jeff Layton2de970f2010-10-06 19:51:12 -04004588
4589/*
4590 * periodic workqueue job that scans tcon_tree for a superblock and closes
4591 * out tcons.
4592 */
4593static void
4594cifs_prune_tlinks(struct work_struct *work)
4595{
4596 struct cifs_sb_info *cifs_sb = container_of(work, struct cifs_sb_info,
4597 prune_tlinks.work);
Jeff Laytonb647c352010-10-28 11:16:44 -04004598 struct rb_root *root = &cifs_sb->tlink_tree;
Colin Ian King37e12f52018-01-17 09:52:39 +00004599 struct rb_node *node;
Jeff Laytonb647c352010-10-28 11:16:44 -04004600 struct rb_node *tmp;
4601 struct tcon_link *tlink;
Jeff Layton2de970f2010-10-06 19:51:12 -04004602
Jeff Laytonb647c352010-10-28 11:16:44 -04004603 /*
4604 * Because we drop the spinlock in the loop in order to put the tlink
4605 * it's not guarded against removal of links from the tree. The only
4606 * places that remove entries from the tree are this function and
4607 * umounts. Because this function is non-reentrant and is canceled
4608 * before umount can proceed, this is safe.
4609 */
4610 spin_lock(&cifs_sb->tlink_tree_lock);
4611 node = rb_first(root);
4612 while (node != NULL) {
4613 tmp = node;
4614 node = rb_next(tmp);
4615 tlink = rb_entry(tmp, struct tcon_link, tl_rbnode);
4616
4617 if (test_bit(TCON_LINK_MASTER, &tlink->tl_flags) ||
4618 atomic_read(&tlink->tl_count) != 0 ||
4619 time_after(tlink->tl_time + TLINK_IDLE_EXPIRE, jiffies))
4620 continue;
4621
4622 cifs_get_tlink(tlink);
4623 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4624 rb_erase(tmp, root);
4625
Jeff Layton2de970f2010-10-06 19:51:12 -04004626 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Laytonb647c352010-10-28 11:16:44 -04004627 cifs_put_tlink(tlink);
4628 spin_lock(&cifs_sb->tlink_tree_lock);
4629 }
4630 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton2de970f2010-10-06 19:51:12 -04004631
Jeff Laytonda472fc2012-03-23 14:40:53 -04004632 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
Jeff Layton2de970f2010-10-06 19:51:12 -04004633 TLINK_IDLE_EXPIRE);
4634}