blob: 96645a7d8f27144a885863578d33e2b757afeec6 [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,
Steve Frenchc7c137b2018-06-06 17:59:29 -0500323 const char *devname, bool is_smb3);
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,
Long Li1dbe3462018-05-30 12:47:55 -0700602 unsigned int page_offset, unsigned int to_read)
Al Viro71335662016-01-09 19:54:50 -0500603{
604 struct msghdr smb_msg;
Long Li1dbe3462018-05-30 12:47:55 -0700605 struct bio_vec bv = {
606 .bv_page = page, .bv_len = to_read, .bv_offset = page_offset};
Al Viro71335662016-01-09 19:54:50 -0500607 iov_iter_bvec(&smb_msg.msg_iter, READ | ITER_BVEC, &bv, 1, to_read);
608 return cifs_readv_from_socket(server, &smb_msg);
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400609}
610
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400611static bool
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400612is_smb_response(struct TCP_Server_Info *server, unsigned char type)
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400613{
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400614 /*
615 * The first byte big endian of the length field,
616 * is actually not part of the length but the type
617 * with the most common, zero, as regular data.
618 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400619 switch (type) {
620 case RFC1002_SESSION_MESSAGE:
621 /* Regular SMB response */
622 return true;
623 case RFC1002_SESSION_KEEP_ALIVE:
Joe Perchesf96637b2013-05-04 22:12:25 -0500624 cifs_dbg(FYI, "RFC 1002 session keep alive\n");
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400625 break;
626 case RFC1002_POSITIVE_SESSION_RESPONSE:
Joe Perchesf96637b2013-05-04 22:12:25 -0500627 cifs_dbg(FYI, "RFC 1002 positive session response\n");
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400628 break;
629 case RFC1002_NEGATIVE_SESSION_RESPONSE:
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400630 /*
631 * We get this from Windows 98 instead of an error on
632 * SMB negprot response.
633 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500634 cifs_dbg(FYI, "RFC 1002 negative session response\n");
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400635 /* give server a second to clean up */
636 msleep(1000);
637 /*
638 * Always try 445 first on reconnect since we get NACK
639 * on some if we ever connected to port 139 (the NACK
640 * is since we do not begin with RFC1001 session
641 * initialize frame).
642 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400643 cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400644 cifs_reconnect(server);
645 wake_up(&server->response_q);
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400646 break;
647 default:
Joe Perchesf96637b2013-05-04 22:12:25 -0500648 cifs_dbg(VFS, "RFC 1002 unknown response type 0x%x\n", type);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400649 cifs_reconnect(server);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400650 }
651
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400652 return false;
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400653}
654
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400655void
656dequeue_mid(struct mid_q_entry *mid, bool malformed)
Jeff Laytonea1f4502011-10-19 15:29:05 -0400657{
658#ifdef CONFIG_CIFS_STATS2
659 mid->when_received = jiffies;
660#endif
661 spin_lock(&GlobalMid_Lock);
662 if (!malformed)
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400663 mid->mid_state = MID_RESPONSE_RECEIVED;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400664 else
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400665 mid->mid_state = MID_RESPONSE_MALFORMED;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400666 list_del_init(&mid->qhead);
667 spin_unlock(&GlobalMid_Lock);
668}
669
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400670static void
671handle_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server,
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400672 char *buf, int malformed)
Jeff Laytonea1f4502011-10-19 15:29:05 -0400673{
Pavel Shilovsky316cf942012-05-23 14:31:03 +0400674 if (server->ops->check_trans2 &&
675 server->ops->check_trans2(mid, server, buf, malformed))
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400676 return;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400677 mid->resp_buf = buf;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400678 mid->large_buf = server->large_buf;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400679 /* Was previous buf put in mpx struct for multi-rsp? */
680 if (!mid->multiRsp) {
681 /* smb buffer will be freed by user thread */
682 if (server->large_buf)
683 server->bigbuf = NULL;
684 else
685 server->smallbuf = NULL;
686 }
Jeff Laytonffc00e22011-10-19 15:29:13 -0400687 dequeue_mid(mid, malformed);
Pavel Shilovskyad69bae2011-08-01 13:19:43 +0400688}
689
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400690static void clean_demultiplex_info(struct TCP_Server_Info *server)
691{
692 int length;
693
694 /* take it off the list, if it's not already */
695 spin_lock(&cifs_tcp_ses_lock);
696 list_del_init(&server->tcp_ses_list);
697 spin_unlock(&cifs_tcp_ses_lock);
698
699 spin_lock(&GlobalMid_Lock);
700 server->tcpStatus = CifsExiting;
701 spin_unlock(&GlobalMid_Lock);
702 wake_up_all(&server->response_q);
703
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400704 /* check if we have blocked requests that need to free */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300705 spin_lock(&server->req_lock);
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400706 if (server->credits <= 0)
707 server->credits = 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300708 spin_unlock(&server->req_lock);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400709 /*
710 * Although there should not be any requests blocked on this queue it
711 * can not hurt to be paranoid and try to wake up requests that may
712 * haven been blocked when more than 50 at time were on the wire to the
713 * same server - they now will see the session is in exit state and get
714 * out of SendReceive.
715 */
716 wake_up_all(&server->request_q);
717 /* give those requests time to exit */
718 msleep(125);
Long Libce9ce72017-11-22 17:38:38 -0700719 if (cifs_rdma_enabled(server) && server->smbd_conn) {
720 smbd_destroy(server->smbd_conn);
721 server->smbd_conn = NULL;
722 }
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400723 if (server->ssocket) {
724 sock_release(server->ssocket);
725 server->ssocket = NULL;
726 }
727
728 if (!list_empty(&server->pending_mid_q)) {
729 struct list_head dispose_list;
730 struct mid_q_entry *mid_entry;
731 struct list_head *tmp, *tmp2;
732
733 INIT_LIST_HEAD(&dispose_list);
734 spin_lock(&GlobalMid_Lock);
735 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
736 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500737 cifs_dbg(FYI, "Clearing mid 0x%llx\n", mid_entry->mid);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400738 mid_entry->mid_state = MID_SHUTDOWN;
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400739 list_move(&mid_entry->qhead, &dispose_list);
740 }
741 spin_unlock(&GlobalMid_Lock);
742
743 /* now walk dispose list and issue callbacks */
744 list_for_each_safe(tmp, tmp2, &dispose_list) {
745 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500746 cifs_dbg(FYI, "Callback mid 0x%llx\n", mid_entry->mid);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400747 list_del_init(&mid_entry->qhead);
748 mid_entry->callback(mid_entry);
749 }
750 /* 1/8th of sec is more than enough time for them to exit */
751 msleep(125);
752 }
753
754 if (!list_empty(&server->pending_mid_q)) {
755 /*
756 * mpx threads have not exited yet give them at least the smb
757 * send timeout time for long ops.
758 *
759 * Due to delays on oplock break requests, we need to wait at
760 * least 45 seconds before giving up on a request getting a
761 * response and going ahead and killing cifsd.
762 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500763 cifs_dbg(FYI, "Wait for exit from demultiplex thread\n");
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400764 msleep(46000);
765 /*
766 * If threads still have not exited they are probably never
767 * coming home not much else we can do but free the memory.
768 */
769 }
770
771 kfree(server->hostname);
772 kfree(server);
773
774 length = atomic_dec_return(&tcpSesAllocCount);
775 if (length > 0)
David Rientjes11d83362015-04-14 15:48:21 -0700776 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400777}
778
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400779static int
Jeff Laytone9097ab2011-10-19 15:29:40 -0400780standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid)
781{
782 int length;
783 char *buf = server->smallbuf;
Ronnie Sahlberg2e964672018-04-09 18:06:26 +1000784 unsigned int pdu_length = server->pdu_size;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400785
786 /* make sure this will fit in a large buffer */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100787 if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) -
788 server->vals->header_preamble_size) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500789 cifs_dbg(VFS, "SMB response too long (%u bytes)\n", pdu_length);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400790 cifs_reconnect(server);
791 wake_up(&server->response_q);
Pavel Shilovsky3fabaa22014-07-10 09:55:52 +0400792 return -ECONNABORTED;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400793 }
794
795 /* switch to large buffer if too big for a small one */
796 if (pdu_length > MAX_CIFS_SMALL_BUFFER_SIZE - 4) {
797 server->large_buf = true;
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400798 memcpy(server->bigbuf, buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400799 buf = server->bigbuf;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400800 }
801
802 /* now read the rest */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400803 length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1,
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100804 pdu_length - HEADER_SIZE(server) + 1
805 + server->vals->header_preamble_size);
806
Jeff Laytone9097ab2011-10-19 15:29:40 -0400807 if (length < 0)
808 return length;
809 server->total_read += length;
810
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400811 dump_smb(buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400812
Pavel Shilovsky4326ed22016-11-17 15:24:46 -0800813 return cifs_handle_standard(server, mid);
814}
815
816int
817cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid)
818{
819 char *buf = server->large_buf ? server->bigbuf : server->smallbuf;
820 int length;
821
Jeff Laytone9097ab2011-10-19 15:29:40 -0400822 /*
823 * We know that we received enough to get to the MID as we
824 * checked the pdu_length earlier. Now check to see
825 * if the rest of the header is OK. We borrow the length
826 * var for the rest of the loop to avoid a new stack var.
827 *
828 * 48 bytes is enough to display the header and a little bit
829 * into the payload for debugging purposes.
830 */
Steve French373512e2015-12-18 13:05:30 -0600831 length = server->ops->check_message(buf, server->total_read, server);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400832 if (length != 0)
833 cifs_dump_mem("Bad SMB: ", buf,
834 min_t(unsigned int, server->total_read, 48));
835
Pavel Shilovsky511c54a2017-07-08 14:32:00 -0700836 if (server->ops->is_session_expired &&
837 server->ops->is_session_expired(buf)) {
838 cifs_reconnect(server);
839 wake_up(&server->response_q);
840 return -1;
841 }
842
Pavel Shilovsky2e44b282012-09-18 16:20:33 -0700843 if (server->ops->is_status_pending &&
844 server->ops->is_status_pending(buf, server, length))
845 return -1;
846
Jeff Laytonff4fa4a2012-02-07 06:31:05 -0500847 if (!mid)
848 return length;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400849
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400850 handle_mid(mid, server, buf, length);
Jeff Laytonff4fa4a2012-02-07 06:31:05 -0500851 return 0;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400852}
853
854static int
Al Viro7c97c202011-06-21 08:51:28 -0400855cifs_demultiplex_thread(void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 int length;
Al Viro7c97c202011-06-21 08:51:28 -0400858 struct TCP_Server_Info *server = p;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400859 unsigned int pdu_length;
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +1000860 unsigned int next_offset;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400861 char *buf = NULL;
Steve Frencha5c3e1c2014-09-16 04:16:19 -0500862 struct task_struct *task_to_wake = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 struct mid_q_entry *mid_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 current->flags |= PF_MEMALLOC;
Joe Perchesf96637b2013-05-04 22:12:25 -0500866 cifs_dbg(FYI, "Demultiplex PID: %d\n", task_pid_nr(current));
Jeff Layton93d0ec82008-08-02 08:00:48 -0400867
868 length = atomic_inc_return(&tcpSesAllocCount);
869 if (length > 1)
David Rientjes11d83362015-04-14 15:48:21 -0700870 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700872 set_freezable();
Jeff Layton469ee612008-10-16 18:46:39 +0000873 while (server->tcpStatus != CifsExiting) {
Steve Frenchede13272005-08-30 20:10:14 -0700874 if (try_to_freeze())
875 continue;
Steve Frenchb8643e12005-04-28 22:41:07 -0700876
Jeff Layton2a37ef92011-10-19 15:29:23 -0400877 if (!allocate_buffers(server))
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400878 continue;
Steve Frenchb8643e12005-04-28 22:41:07 -0700879
Jeff Layton2a37ef92011-10-19 15:29:23 -0400880 server->large_buf = false;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400881 buf = server->smallbuf;
Steve Frenchf01d5e12007-08-30 21:13:31 +0000882 pdu_length = 4; /* enough to get RFC1001 header */
Steve Frenchfda35942011-01-20 18:06:34 +0000883
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400884 length = cifs_read_from_socket(server, buf, pdu_length);
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400885 if (length < 0)
Steve Frenchfda35942011-01-20 18:06:34 +0000886 continue;
Ronnie Sahlberg977b6172018-06-01 10:53:02 +1000887
888 if (server->vals->header_preamble_size == 0)
889 server->total_read = 0;
890 else
891 server->total_read = length;
Steve French67010fb2005-04-28 22:41:09 -0700892
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400893 /*
894 * The right amount was read from socket - 4 bytes,
895 * so we can now interpret the length field.
896 */
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400897 pdu_length = get_rfc1002_length(buf);
Steve French46810cb2005-04-28 22:41:09 -0700898
Joe Perchesf96637b2013-05-04 22:12:25 -0500899 cifs_dbg(FYI, "RFC1002 header 0x%x\n", pdu_length);
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400900 if (!is_smb_response(server, buf[0]))
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000901 continue;
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +1000902next_pdu:
903 server->pdu_size = pdu_length;
Steve Frenche4eb2952005-04-28 22:41:09 -0700904
Jeff Layton89482a52011-10-19 15:28:57 -0400905 /* make sure we have enough to get to the MID */
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +1000906 if (server->pdu_size < HEADER_SIZE(server) - 1 -
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100907 server->vals->header_preamble_size) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500908 cifs_dbg(VFS, "SMB response too short (%u bytes)\n",
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +1000909 server->pdu_size);
Jeff Layton89482a52011-10-19 15:28:57 -0400910 cifs_reconnect(server);
911 wake_up(&server->response_q);
912 continue;
Steve Frenche4eb2952005-04-28 22:41:09 -0700913 }
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400914
Jeff Layton89482a52011-10-19 15:28:57 -0400915 /* read down to the MID */
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100916 length = cifs_read_from_socket(server,
917 buf + server->vals->header_preamble_size,
918 HEADER_SIZE(server) - 1
919 - server->vals->header_preamble_size);
Jeff Layton89482a52011-10-19 15:28:57 -0400920 if (length < 0)
921 continue;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400922 server->total_read += length;
Jeff Layton89482a52011-10-19 15:28:57 -0400923
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +1000924 if (server->ops->next_header) {
925 next_offset = server->ops->next_header(buf);
926 if (next_offset)
927 server->pdu_size = next_offset;
928 }
929
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -0800930 if (server->ops->is_transform_hdr &&
931 server->ops->receive_transform &&
932 server->ops->is_transform_hdr(buf)) {
933 length = server->ops->receive_transform(server,
934 &mid_entry);
935 } else {
936 mid_entry = server->ops->find_mid(server, buf);
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400937
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -0800938 if (!mid_entry || !mid_entry->receive)
939 length = standard_receive3(server, mid_entry);
940 else
941 length = mid_entry->receive(server, mid_entry);
942 }
Jeff Layton44d22d82011-10-19 15:29:49 -0400943
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400944 if (length < 0)
Steve Frenche4eb2952005-04-28 22:41:09 -0700945 continue;
946
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400947 if (server->large_buf)
Jeff Laytone9097ab2011-10-19 15:29:40 -0400948 buf = server->bigbuf;
Steve Frenche4eb2952005-04-28 22:41:09 -0700949
Steve Frenchfda35942011-01-20 18:06:34 +0000950 server->lstrp = jiffies;
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500951 if (mid_entry != NULL) {
Ronnie Sahlberge19b2bc2018-04-09 18:06:28 +1000952 mid_entry->resp_buf_size = server->pdu_size;
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800953 if ((mid_entry->mid_flags & MID_WAIT_CANCELLED) &&
954 mid_entry->mid_state == MID_RESPONSE_RECEIVED &&
955 server->ops->handle_cancelled_mid)
956 server->ops->handle_cancelled_mid(
957 mid_entry->resp_buf,
958 server);
959
Jeff Layton2a37ef92011-10-19 15:29:23 -0400960 if (!mid_entry->multiRsp || mid_entry->multiEnd)
961 mid_entry->callback(mid_entry);
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800962 } else if (server->ops->is_oplock_break &&
963 server->ops->is_oplock_break(buf, server)) {
964 cifs_dbg(FYI, "Received oplock break\n");
965 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500966 cifs_dbg(VFS, "No task to wake, unknown frame received! NumMids %d\n",
967 atomic_read(&midCount));
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400968 cifs_dump_mem("Received Data is: ", buf,
969 HEADER_SIZE(server));
Steve French39798772006-05-31 22:40:51 +0000970#ifdef CONFIG_CIFS_DEBUG2
Pavel Shilovsky7f0adb52012-05-28 15:50:10 +0400971 if (server->ops->dump_detail)
Steve French71992e622018-05-06 15:58:51 -0500972 server->ops->dump_detail(buf, server);
Steve French39798772006-05-31 22:40:51 +0000973 cifs_dump_mids(server);
974#endif /* CIFS_DEBUG2 */
Ronnie Sahlberg8ce79ec2018-06-01 10:53:08 +1000975 }
976 if (pdu_length > server->pdu_size) {
977 if (!allocate_buffers(server))
978 continue;
979 pdu_length -= server->pdu_size;
980 server->total_read = 0;
981 server->large_buf = false;
982 buf = server->smallbuf;
983 goto next_pdu;
Steve Frenche4eb2952005-04-28 22:41:09 -0700984 }
985 } /* end while !EXITING */
986
Justin P. Mattockfd62cb72011-02-24 22:15:02 -0800987 /* buffer usually freed in free_mid - need to free it here on exit */
Jeff Layton2a37ef92011-10-19 15:29:23 -0400988 cifs_buf_release(server->bigbuf);
989 if (server->smallbuf) /* no sense logging a debug message if NULL */
990 cifs_small_buf_release(server->smallbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Steve Frencha5c3e1c2014-09-16 04:16:19 -0500992 task_to_wake = xchg(&server->tsk, NULL);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400993 clean_demultiplex_info(server);
Steve Frencha5c3e1c2014-09-16 04:16:19 -0500994
995 /* if server->tsk was NULL then wait for a signal before exiting */
996 if (!task_to_wake) {
997 set_current_state(TASK_INTERRUPTIBLE);
998 while (!signal_pending(current)) {
999 schedule();
1000 set_current_state(TASK_INTERRUPTIBLE);
1001 }
1002 set_current_state(TASK_RUNNING);
1003 }
1004
Jeff Layton0468a2c2008-12-01 07:09:35 -05001005 module_put_and_exit(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
Jeff Laytonc359cf32007-11-16 22:22:06 +00001008/* extract the host portion of the UNC string */
1009static char *
1010extract_hostname(const char *unc)
1011{
1012 const char *src;
1013 char *dst, *delim;
1014 unsigned int len;
1015
1016 /* skip double chars at beginning of string */
1017 /* BB: check validity of these bytes? */
1018 src = unc + 2;
1019
1020 /* delimiter between hostname and sharename is always '\\' now */
1021 delim = strchr(src, '\\');
1022 if (!delim)
1023 return ERR_PTR(-EINVAL);
1024
1025 len = delim - src;
1026 dst = kmalloc((len + 1), GFP_KERNEL);
1027 if (dst == NULL)
1028 return ERR_PTR(-ENOMEM);
1029
1030 memcpy(dst, src, len);
1031 dst[len] = '\0';
1032
1033 return dst;
1034}
1035
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001036static int get_option_ul(substring_t args[], unsigned long *option)
1037{
1038 int rc;
1039 char *string;
1040
1041 string = match_strdup(args);
1042 if (string == NULL)
1043 return -ENOMEM;
Sachin Prabhubfa890a2012-04-13 14:04:32 +01001044 rc = kstrtoul(string, 0, option);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001045 kfree(string);
1046
1047 return rc;
1048}
1049
Eric W. Biederman3da46562013-02-06 01:37:39 -08001050static int get_option_uid(substring_t args[], kuid_t *result)
1051{
1052 unsigned long value;
1053 kuid_t uid;
1054 int rc;
1055
1056 rc = get_option_ul(args, &value);
1057 if (rc)
1058 return rc;
1059
1060 uid = make_kuid(current_user_ns(), value);
1061 if (!uid_valid(uid))
1062 return -EINVAL;
1063
1064 *result = uid;
1065 return 0;
1066}
1067
1068static int get_option_gid(substring_t args[], kgid_t *result)
1069{
1070 unsigned long value;
1071 kgid_t gid;
1072 int rc;
1073
1074 rc = get_option_ul(args, &value);
1075 if (rc)
1076 return rc;
1077
1078 gid = make_kgid(current_user_ns(), value);
1079 if (!gid_valid(gid))
1080 return -EINVAL;
1081
1082 *result = gid;
1083 return 0;
1084}
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001085
1086static int cifs_parse_security_flavors(char *value,
1087 struct smb_vol *vol)
1088{
1089
1090 substring_t args[MAX_OPT_ARGS];
1091
Jeff Layton1e3cc572013-06-10 17:12:23 -05001092 /*
1093 * With mount options, the last one should win. Reset any existing
1094 * settings back to default.
1095 */
1096 vol->sectype = Unspecified;
1097 vol->sign = false;
1098
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001099 switch (match_token(value, cifs_secflavor_tokens, args)) {
Jeff Layton3f618222013-06-12 19:52:14 -05001100 case Opt_sec_krb5p:
1101 cifs_dbg(VFS, "sec=krb5p is not supported!\n");
1102 return 1;
1103 case Opt_sec_krb5i:
1104 vol->sign = true;
1105 /* Fallthrough */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001106 case Opt_sec_krb5:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001107 vol->sectype = Kerberos;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001108 break;
1109 case Opt_sec_ntlmsspi:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001110 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001111 /* Fallthrough */
1112 case Opt_sec_ntlmssp:
1113 vol->sectype = RawNTLMSSP;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001114 break;
1115 case Opt_sec_ntlmi:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001116 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001117 /* Fallthrough */
1118 case Opt_ntlm:
1119 vol->sectype = NTLM;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001120 break;
1121 case Opt_sec_ntlmv2i:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001122 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001123 /* Fallthrough */
1124 case Opt_sec_ntlmv2:
1125 vol->sectype = NTLMv2;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001126 break;
1127#ifdef CONFIG_CIFS_WEAK_PW_HASH
1128 case Opt_sec_lanman:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001129 vol->sectype = LANMAN;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001130 break;
1131#endif
1132 case Opt_sec_none:
1133 vol->nullauth = 1;
1134 break;
1135 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001136 cifs_dbg(VFS, "bad security option: %s\n", value);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001137 return 1;
1138 }
1139
1140 return 0;
1141}
1142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143static int
Jeff Layton15b6a472012-05-16 07:50:15 -04001144cifs_parse_cache_flavor(char *value, struct smb_vol *vol)
1145{
1146 substring_t args[MAX_OPT_ARGS];
1147
1148 switch (match_token(value, cifs_cacheflavor_tokens, args)) {
1149 case Opt_cache_loose:
1150 vol->direct_io = false;
1151 vol->strict_io = false;
1152 break;
1153 case Opt_cache_strict:
1154 vol->direct_io = false;
1155 vol->strict_io = true;
1156 break;
1157 case Opt_cache_none:
1158 vol->direct_io = true;
1159 vol->strict_io = false;
1160 break;
1161 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001162 cifs_dbg(VFS, "bad cache= option: %s\n", value);
Jeff Layton15b6a472012-05-16 07:50:15 -04001163 return 1;
1164 }
1165 return 0;
1166}
1167
1168static int
Steve Frenchc7c137b2018-06-06 17:59:29 -05001169cifs_parse_smb_version(char *value, struct smb_vol *vol, bool is_smb3)
Jeff Layton23db65f2012-05-15 12:20:51 -04001170{
1171 substring_t args[MAX_OPT_ARGS];
1172
1173 switch (match_token(value, cifs_smb_version_tokens, args)) {
1174 case Smb_1:
Steve Frenchf92a7202018-05-24 04:11:07 -05001175 if (disable_legacy_dialects) {
1176 cifs_dbg(VFS, "mount with legacy dialect disabled\n");
1177 return 1;
1178 }
Steve Frenchc7c137b2018-06-06 17:59:29 -05001179 if (is_smb3) {
1180 cifs_dbg(VFS, "vers=1.0 (cifs) not permitted when mounting with smb3\n");
1181 return 1;
1182 }
Jeff Layton23db65f2012-05-15 12:20:51 -04001183 vol->ops = &smb1_operations;
1184 vol->vals = &smb1_values;
1185 break;
Steve Frenchdd446b12012-11-28 23:21:06 -06001186 case Smb_20:
Steve Frenchf92a7202018-05-24 04:11:07 -05001187 if (disable_legacy_dialects) {
1188 cifs_dbg(VFS, "mount with legacy dialect disabled\n");
1189 return 1;
1190 }
Steve Frenchc7c137b2018-06-06 17:59:29 -05001191 if (is_smb3) {
1192 cifs_dbg(VFS, "vers=2.0 not permitted when mounting with smb3\n");
1193 return 1;
1194 }
Pavel Shilovsky53ef1012013-09-05 16:11:28 +04001195 vol->ops = &smb20_operations;
Steve Frenchdd446b12012-11-28 23:21:06 -06001196 vol->vals = &smb20_values;
1197 break;
Steve French1080ef72011-02-24 18:07:19 +00001198 case Smb_21:
1199 vol->ops = &smb21_operations;
1200 vol->vals = &smb21_values;
1201 break;
Steve Frenche4aa25e2012-10-01 12:26:22 -05001202 case Smb_30:
Steve French38107d42012-12-08 22:08:06 -06001203 vol->ops = &smb30_operations;
Steve Frenche4aa25e2012-10-01 12:26:22 -05001204 vol->vals = &smb30_values;
1205 break;
Steve French20b6d8b2013-06-12 22:48:41 -05001206 case Smb_302:
1207 vol->ops = &smb30_operations; /* currently identical with 3.0 */
1208 vol->vals = &smb302_values;
1209 break;
Steve French5f7fbf72014-12-17 22:52:58 -06001210#ifdef CONFIG_CIFS_SMB311
1211 case Smb_311:
Steve Frenchaab18932015-06-23 23:37:11 -05001212 vol->ops = &smb311_operations;
Steve French5f7fbf72014-12-17 22:52:58 -06001213 vol->vals = &smb311_values;
1214 break;
1215#endif /* SMB311 */
Steve French9764c022017-09-17 10:41:35 -05001216 case Smb_3any:
1217 vol->ops = &smb30_operations; /* currently identical with 3.0 */
1218 vol->vals = &smb3any_values;
1219 break;
1220 case Smb_default:
1221 vol->ops = &smb30_operations; /* currently identical with 3.0 */
1222 vol->vals = &smbdefault_values;
1223 break;
Jeff Layton23db65f2012-05-15 12:20:51 -04001224 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001225 cifs_dbg(VFS, "Unknown vers= option specified: %s\n", value);
Jeff Layton23db65f2012-05-15 12:20:51 -04001226 return 1;
1227 }
1228 return 0;
1229}
1230
Jeff Laytond387a5c2012-12-10 06:10:46 -05001231/*
1232 * Parse a devname into substrings and populate the vol->UNC and vol->prepath
1233 * fields with the result. Returns 0 on success and an error otherwise.
1234 */
1235static int
1236cifs_parse_devname(const char *devname, struct smb_vol *vol)
1237{
1238 char *pos;
1239 const char *delims = "/\\";
1240 size_t len;
1241
1242 /* make sure we have a valid UNC double delimiter prefix */
1243 len = strspn(devname, delims);
1244 if (len != 2)
1245 return -EINVAL;
1246
1247 /* find delimiter between host and sharename */
1248 pos = strpbrk(devname + 2, delims);
1249 if (!pos)
1250 return -EINVAL;
1251
1252 /* skip past delimiter */
1253 ++pos;
1254
1255 /* now go until next delimiter or end of string */
1256 len = strcspn(pos, delims);
1257
1258 /* move "pos" up to delimiter or NULL */
1259 pos += len;
1260 vol->UNC = kstrndup(devname, pos - devname, GFP_KERNEL);
1261 if (!vol->UNC)
1262 return -ENOMEM;
1263
1264 convert_delimiter(vol->UNC, '\\');
1265
Sachin Prabhu11e31642016-02-08 13:44:01 +05301266 /* skip any delimiter */
1267 if (*pos == '/' || *pos == '\\')
1268 pos++;
1269
1270 /* If pos is NULL then no prepath */
1271 if (!*pos)
Jeff Laytond387a5c2012-12-10 06:10:46 -05001272 return 0;
1273
1274 vol->prepath = kstrdup(pos, GFP_KERNEL);
1275 if (!vol->prepath)
1276 return -ENOMEM;
1277
1278 return 0;
1279}
1280
Jeff Layton23db65f2012-05-15 12:20:51 -04001281static int
Sean Finneyb9468452011-04-11 13:19:32 +00001282cifs_parse_mount_options(const char *mountdata, const char *devname,
Steve Frenchc7c137b2018-06-06 17:59:29 -05001283 struct smb_vol *vol, bool is_smb3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001285 char *data, *end;
Vasily Averin957df452011-06-06 11:33:12 +04001286 char *mountdata_copy = NULL, *options;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 unsigned int temp_len, i, j;
1288 char separator[2];
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001289 short int override_uid = -1;
1290 short int override_gid = -1;
1291 bool uid_specified = false;
1292 bool gid_specified = false;
Jeff Laytond8162552012-03-23 14:40:56 -04001293 bool sloppy = false;
1294 char *invalid = NULL;
Jeff Layton88463992010-11-22 15:31:03 -05001295 char *nodename = utsname()->nodename;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001296 char *string = NULL;
1297 char *tmp_end, *value;
1298 char delim;
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001299 bool got_ip = false;
Steve French7e682f72017-08-31 21:34:24 -05001300 bool got_version = false;
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001301 unsigned short port = 0;
1302 struct sockaddr *dstaddr = (struct sockaddr *)&vol->dstaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 separator[0] = ',';
Steve French50c2f752007-07-13 00:33:32 +00001305 separator[1] = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001306 delim = separator[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Jeff Layton6ee95422012-11-26 11:09:57 -05001308 /* ensure we always start with zeroed-out smb_vol */
1309 memset(vol, 0, sizeof(*vol));
1310
Jeff Layton88463992010-11-22 15:31:03 -05001311 /*
1312 * does not have to be perfect mapping since field is
1313 * informational, only used for servers that do not support
1314 * port 445 and it can be overridden at mount time
1315 */
Jeff Layton1397f2e2011-01-07 11:30:28 -05001316 memset(vol->source_rfc1001_name, 0x20, RFC1001_NAME_LEN);
1317 for (i = 0; i < strnlen(nodename, RFC1001_NAME_LEN); i++)
Jeff Layton88463992010-11-22 15:31:03 -05001318 vol->source_rfc1001_name[i] = toupper(nodename[i]);
1319
Jeff Layton1397f2e2011-01-07 11:30:28 -05001320 vol->source_rfc1001_name[RFC1001_NAME_LEN] = 0;
Steve Frencha10faeb22005-08-22 21:38:31 -07001321 /* null target name indicates to use *SMBSERVR default called name
1322 if we end up sending RFC1001 session initialize */
1323 vol->target_rfc1001_name[0] = 0;
Jeff Layton3e4b3e12010-07-19 18:00:17 -04001324 vol->cred_uid = current_uid();
1325 vol->linux_uid = current_uid();
David Howellsa001e5b2008-11-14 10:38:47 +11001326 vol->linux_gid = current_gid();
Jeff Laytonf55ed1a2009-05-26 16:28:11 -04001327
Steve French2baa2682014-09-27 02:19:01 -05001328 /*
1329 * default to SFM style remapping of seven reserved characters
1330 * unless user overrides it or we negotiate CIFS POSIX where
1331 * it is unnecessary. Can not simultaneously use more than one mapping
1332 * since then readdir could list files that open could not open
1333 */
1334 vol->remap = true;
1335
Jeff Laytonf55ed1a2009-05-26 16:28:11 -04001336 /* default to only allowing write access to owner of the mount */
1337 vol->dir_mode = vol->file_mode = S_IRUGO | S_IXUGO | S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 /* vol->retry default is 0 (i.e. "soft" limited retry not hard retry) */
Jeremy Allisonac670552005-06-22 17:26:35 -07001340 /* default is always to request posix paths. */
1341 vol->posix_paths = 1;
Jeff Laytona0c92172009-05-27 15:40:47 -04001342 /* default to using server inode numbers where available */
1343 vol->server_ino = 1;
Jeremy Allisonac670552005-06-22 17:26:35 -07001344
Jeff Layton1b359202012-09-19 15:20:27 -07001345 /* default is to use strict cifs caching semantics */
1346 vol->strict_io = true;
1347
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05301348 vol->actimeo = CIFS_DEF_ACTIMEO;
1349
Steve French9764c022017-09-17 10:41:35 -05001350 /* offer SMB2.1 and later (SMB3 etc). Secure and widely accepted */
1351 vol->ops = &smb30_operations;
1352 vol->vals = &smbdefault_values;
Jeff Layton23db65f2012-05-15 12:20:51 -04001353
Rabin Vincentb782fcc2016-07-19 09:25:45 +02001354 vol->echo_interval = SMB_ECHO_INTERVAL_DEFAULT;
1355
Sean Finneyb9468452011-04-11 13:19:32 +00001356 if (!mountdata)
1357 goto cifs_parse_mount_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Sean Finneyb9468452011-04-11 13:19:32 +00001359 mountdata_copy = kstrndup(mountdata, PAGE_SIZE, GFP_KERNEL);
1360 if (!mountdata_copy)
1361 goto cifs_parse_mount_err;
1362
1363 options = mountdata_copy;
Pavel Shilovsky4906e502011-04-14 22:00:56 +04001364 end = options + strlen(options);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001365
Steve French50c2f752007-07-13 00:33:32 +00001366 if (strncmp(options, "sep=", 4) == 0) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001367 if (options[4] != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 separator[0] = options[4];
1369 options += 5;
1370 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -05001371 cifs_dbg(FYI, "Null separator not allowed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 }
1373 }
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001374 vol->backupuid_specified = false; /* no backup intent for a user */
1375 vol->backupgid_specified = false; /* no backup intent for a group */
Steve French50c2f752007-07-13 00:33:32 +00001376
Jeff Layton37d4f992013-05-24 07:40:05 -04001377 switch (cifs_parse_devname(devname, vol)) {
1378 case 0:
1379 break;
1380 case -ENOMEM:
1381 cifs_dbg(VFS, "Unable to allocate memory for devname.\n");
1382 goto cifs_parse_mount_err;
1383 case -EINVAL:
1384 cifs_dbg(VFS, "Malformed UNC in devname.\n");
1385 goto cifs_parse_mount_err;
1386 default:
1387 cifs_dbg(VFS, "Unknown error parsing devname.\n");
1388 goto cifs_parse_mount_err;
Jeff Laytond387a5c2012-12-10 06:10:46 -05001389 }
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 while ((data = strsep(&options, separator)) != NULL) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001392 substring_t args[MAX_OPT_ARGS];
1393 unsigned long option;
1394 int token;
1395
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 if (!*data)
1397 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001399 token = match_token(data, cifs_mount_option_tokens, args);
1400
1401 switch (token) {
1402
1403 /* Ingnore the following */
1404 case Opt_ignore:
1405 break;
1406
1407 /* Boolean values */
1408 case Opt_user_xattr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 vol->no_xattr = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001410 break;
1411 case Opt_nouser_xattr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 vol->no_xattr = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001413 break;
1414 case Opt_forceuid:
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001415 override_uid = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001416 break;
1417 case Opt_noforceuid:
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001418 override_uid = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001419 break;
Jeff Layton72bd4812012-10-03 16:02:36 -04001420 case Opt_forcegid:
1421 override_gid = 1;
1422 break;
1423 case Opt_noforcegid:
1424 override_gid = 0;
1425 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001426 case Opt_noblocksend:
Steve Frenchedf1ae42008-10-29 00:47:57 +00001427 vol->noblocksnd = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001428 break;
1429 case Opt_noautotune:
Steve Frenchedf1ae42008-10-29 00:47:57 +00001430 vol->noautotune = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001431 break;
1432 case Opt_hard:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 vol->retry = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001434 break;
1435 case Opt_soft:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 vol->retry = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001437 break;
1438 case Opt_perm:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 vol->noperm = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001440 break;
1441 case Opt_noperm:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 vol->noperm = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001443 break;
1444 case Opt_mapchars:
Steve French2baa2682014-09-27 02:19:01 -05001445 vol->sfu_remap = true;
1446 vol->remap = false; /* disable SFM mapping */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001447 break;
1448 case Opt_nomapchars:
Steve French2baa2682014-09-27 02:19:01 -05001449 vol->sfu_remap = false;
1450 break;
1451 case Opt_mapposix:
1452 vol->remap = true;
1453 vol->sfu_remap = false; /* disable SFU mapping */
1454 break;
1455 case Opt_nomapposix:
1456 vol->remap = false;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001457 break;
1458 case Opt_sfu:
Steve French50c2f752007-07-13 00:33:32 +00001459 vol->sfu_emul = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001460 break;
1461 case Opt_nosfu:
Steve French50c2f752007-07-13 00:33:32 +00001462 vol->sfu_emul = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001463 break;
1464 case Opt_nodfs:
Steve French2c1b8612008-10-16 18:35:21 +00001465 vol->nodfs = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001466 break;
1467 case Opt_posixpaths:
Jeremy Allisonac670552005-06-22 17:26:35 -07001468 vol->posix_paths = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001469 break;
1470 case Opt_noposixpaths:
Jeremy Allisonac670552005-06-22 17:26:35 -07001471 vol->posix_paths = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001472 break;
1473 case Opt_nounix:
Steve Frenchb3266142018-05-20 23:41:10 -05001474 if (vol->linux_ext)
1475 cifs_dbg(VFS,
1476 "conflicting unix mount options\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00001477 vol->no_linux_ext = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001478 break;
Steve Frenchb3266142018-05-20 23:41:10 -05001479 case Opt_unix:
1480 if (vol->no_linux_ext)
1481 cifs_dbg(VFS,
1482 "conflicting unix mount options\n");
1483 vol->linux_ext = 1;
1484 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001485 case Opt_nocase:
Steve French50c2f752007-07-13 00:33:32 +00001486 vol->nocase = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001487 break;
1488 case Opt_brl:
Steve Frenchc46fa8a2005-08-18 20:49:57 -07001489 vol->nobrl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001490 break;
1491 case Opt_nobrl:
Steve Frenchc46fa8a2005-08-18 20:49:57 -07001492 vol->nobrl = 1;
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +04001493 /*
1494 * turn off mandatory locking in mode
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001495 * if remote locking is turned off since the
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +04001496 * local vfs will do advisory
1497 */
Steve French50c2f752007-07-13 00:33:32 +00001498 if (vol->file_mode ==
1499 (S_IALLUGO & ~(S_ISUID | S_IXGRP)))
Steve Frenchd3485d32005-08-19 11:04:29 -07001500 vol->file_mode = S_IALLUGO;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001501 break;
Steve French3d4ef9a2018-04-25 22:19:09 -05001502 case Opt_nohandlecache:
1503 vol->nohandlecache = 1;
1504 break;
1505 case Opt_handlecache:
1506 vol->nohandlecache = 0;
1507 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001508 case Opt_forcemandatorylock:
Steve French13a6e422008-12-02 17:24:33 +00001509 vol->mand_lock = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001510 break;
1511 case Opt_setuids:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 vol->setuids = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001513 break;
1514 case Opt_nosetuids:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 vol->setuids = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001516 break;
Steve French95932652016-09-23 01:36:34 -05001517 case Opt_setuidfromacl:
1518 vol->setuidfromacl = 1;
1519 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001520 case Opt_dynperm:
Jeff Laytond0a9c072008-05-12 22:23:49 +00001521 vol->dynperm = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001522 break;
1523 case Opt_nodynperm:
Jeff Laytond0a9c072008-05-12 22:23:49 +00001524 vol->dynperm = false;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001525 break;
1526 case Opt_nohard:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 vol->retry = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001528 break;
1529 case Opt_nosoft:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 vol->retry = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001531 break;
1532 case Opt_nointr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 vol->intr = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001534 break;
1535 case Opt_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 vol->intr = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001537 break;
1538 case Opt_nostrictsync:
Steve Frenchbe652442009-02-23 15:21:59 +00001539 vol->nostrictsync = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001540 break;
1541 case Opt_strictsync:
Steve Frenchbe652442009-02-23 15:21:59 +00001542 vol->nostrictsync = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001543 break;
1544 case Opt_serverino:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 vol->server_ino = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001546 break;
1547 case Opt_noserverino:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 vol->server_ino = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001549 break;
1550 case Opt_rwpidforward:
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00001551 vol->rwpidforward = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001552 break;
1553 case Opt_cifsacl:
Steve French0a4b92c2006-01-12 15:44:21 -08001554 vol->cifs_acl = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001555 break;
1556 case Opt_nocifsacl:
Steve French0a4b92c2006-01-12 15:44:21 -08001557 vol->cifs_acl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001558 break;
1559 case Opt_acl:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 vol->no_psx_acl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001561 break;
1562 case Opt_noacl:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 vol->no_psx_acl = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001564 break;
1565 case Opt_locallease:
Steve French84210e92008-10-23 04:42:37 +00001566 vol->local_lease = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001567 break;
1568 case Opt_sign:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001569 vol->sign = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001570 break;
1571 case Opt_seal:
Steve French95b1cb92008-05-15 16:44:38 +00001572 /* we do not do the following in secFlags because seal
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001573 * is a per tree connection (mount) not a per socket
1574 * or per-smb connection option in the protocol
1575 * vol->secFlg |= CIFSSEC_MUST_SEAL;
1576 */
Steve French95b1cb92008-05-15 16:44:38 +00001577 vol->seal = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001578 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001579 case Opt_noac:
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001580 pr_warn("CIFS: Mount option noac not supported. Instead set /proc/fs/cifs/LookupCacheEnabled to 0\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001581 break;
1582 case Opt_fsc:
Suresh Jayaraman607a5692010-11-24 17:49:05 +05301583#ifndef CONFIG_CIFS_FSCACHE
Joe Perchesf96637b2013-05-04 22:12:25 -05001584 cifs_dbg(VFS, "FS-Cache support needs CONFIG_CIFS_FSCACHE kernel config option set\n");
Sean Finneyb9468452011-04-11 13:19:32 +00001585 goto cifs_parse_mount_err;
Suresh Jayaraman607a5692010-11-24 17:49:05 +05301586#endif
Suresh Jayaramanfa1df752010-07-05 18:13:36 +05301587 vol->fsc = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001588 break;
1589 case Opt_mfsymlinks:
Stefan Metzmacher736a3322010-07-30 14:56:00 +02001590 vol->mfsymlinks = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001591 break;
1592 case Opt_multiuser:
Jeff Layton0eb8a132010-10-06 19:51:12 -04001593 vol->multiuser = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001594 break;
Jeff Laytond8162552012-03-23 14:40:56 -04001595 case Opt_sloppy:
1596 sloppy = true;
1597 break;
Jeff Laytona0b3df52013-05-24 07:40:59 -04001598 case Opt_nosharesock:
1599 vol->nosharesock = true;
1600 break;
Steve Frenchb2a30772015-09-29 21:49:28 -05001601 case Opt_nopersistent:
1602 vol->nopersistent = true;
1603 if (vol->persistent) {
1604 cifs_dbg(VFS,
1605 "persistenthandles mount options conflict\n");
1606 goto cifs_parse_mount_err;
1607 }
1608 break;
1609 case Opt_persistent:
1610 vol->persistent = true;
Steve French592fafe2015-11-03 10:08:53 -06001611 if ((vol->nopersistent) || (vol->resilient)) {
Steve Frenchb2a30772015-09-29 21:49:28 -05001612 cifs_dbg(VFS,
1613 "persistenthandles mount options conflict\n");
1614 goto cifs_parse_mount_err;
1615 }
1616 break;
Steve French592fafe2015-11-03 10:08:53 -06001617 case Opt_resilient:
1618 vol->resilient = true;
1619 if (vol->persistent) {
1620 cifs_dbg(VFS,
1621 "persistenthandles mount options conflict\n");
1622 goto cifs_parse_mount_err;
1623 }
1624 break;
1625 case Opt_noresilient:
1626 vol->resilient = false; /* already the default */
1627 break;
Germano Percossi39566442016-12-15 12:31:18 +05301628 case Opt_domainauto:
1629 vol->domainauto = true;
1630 break;
Long Li8339dd32017-11-07 01:54:55 -07001631 case Opt_rdma:
1632 vol->rdma = true;
1633 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001634
1635 /* Numeric Values */
1636 case Opt_backupuid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001637 if (get_option_uid(args, &vol->backupuid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001638 cifs_dbg(VFS, "%s: Invalid backupuid value\n",
1639 __func__);
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001640 goto cifs_parse_mount_err;
1641 }
1642 vol->backupuid_specified = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001643 break;
1644 case Opt_backupgid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001645 if (get_option_gid(args, &vol->backupgid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001646 cifs_dbg(VFS, "%s: Invalid backupgid value\n",
1647 __func__);
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001648 goto cifs_parse_mount_err;
1649 }
1650 vol->backupgid_specified = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001651 break;
1652 case Opt_uid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001653 if (get_option_uid(args, &vol->linux_uid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001654 cifs_dbg(VFS, "%s: Invalid uid value\n",
1655 __func__);
Sean Finneyb9468452011-04-11 13:19:32 +00001656 goto cifs_parse_mount_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001658 uid_specified = true;
1659 break;
1660 case Opt_cruid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001661 if (get_option_uid(args, &vol->cred_uid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001662 cifs_dbg(VFS, "%s: Invalid cruid value\n",
1663 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001664 goto cifs_parse_mount_err;
1665 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001666 break;
1667 case Opt_gid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001668 if (get_option_gid(args, &vol->linux_gid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001669 cifs_dbg(VFS, "%s: Invalid gid value\n",
1670 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001671 goto cifs_parse_mount_err;
1672 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001673 gid_specified = true;
1674 break;
1675 case Opt_file_mode:
1676 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001677 cifs_dbg(VFS, "%s: Invalid file_mode value\n",
1678 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001679 goto cifs_parse_mount_err;
1680 }
1681 vol->file_mode = option;
1682 break;
1683 case Opt_dirmode:
1684 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001685 cifs_dbg(VFS, "%s: Invalid dir_mode value\n",
1686 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001687 goto cifs_parse_mount_err;
1688 }
1689 vol->dir_mode = option;
1690 break;
1691 case Opt_port:
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001692 if (get_option_ul(args, &option) ||
1693 option > USHRT_MAX) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001694 cifs_dbg(VFS, "%s: Invalid port value\n",
1695 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001696 goto cifs_parse_mount_err;
1697 }
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001698 port = (unsigned short)option;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001699 break;
1700 case Opt_rsize:
1701 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001702 cifs_dbg(VFS, "%s: Invalid rsize value\n",
1703 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001704 goto cifs_parse_mount_err;
1705 }
1706 vol->rsize = option;
1707 break;
1708 case Opt_wsize:
1709 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001710 cifs_dbg(VFS, "%s: Invalid wsize value\n",
1711 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001712 goto cifs_parse_mount_err;
1713 }
1714 vol->wsize = option;
1715 break;
1716 case Opt_actimeo:
1717 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001718 cifs_dbg(VFS, "%s: Invalid actimeo value\n",
1719 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001720 goto cifs_parse_mount_err;
1721 }
1722 vol->actimeo = HZ * option;
1723 if (vol->actimeo > CIFS_MAX_ACTIMEO) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001724 cifs_dbg(VFS, "attribute cache timeout too large\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001725 goto cifs_parse_mount_err;
1726 }
1727 break;
Steve Frenchadfeb3e2015-12-18 12:31:36 -06001728 case Opt_echo_interval:
1729 if (get_option_ul(args, &option)) {
1730 cifs_dbg(VFS, "%s: Invalid echo interval value\n",
1731 __func__);
1732 goto cifs_parse_mount_err;
1733 }
1734 vol->echo_interval = option;
1735 break;
Steve French8b217fe2016-11-11 22:36:20 -06001736 case Opt_snapshot:
1737 if (get_option_ul(args, &option)) {
1738 cifs_dbg(VFS, "%s: Invalid snapshot time\n",
1739 __func__);
1740 goto cifs_parse_mount_err;
1741 }
1742 vol->snapshot_time = option;
1743 break;
Steve French141891f2016-09-23 00:44:16 -05001744 case Opt_max_credits:
1745 if (get_option_ul(args, &option) || (option < 20) ||
1746 (option > 60000)) {
1747 cifs_dbg(VFS, "%s: Invalid max_credits value\n",
1748 __func__);
1749 goto cifs_parse_mount_err;
1750 }
1751 vol->max_credits = option;
1752 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001753
1754 /* String Arguments */
1755
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001756 case Opt_blank_user:
1757 /* null user, ie. anonymous authentication */
1758 vol->nullauth = 1;
1759 vol->username = NULL;
1760 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001761 case Opt_user:
1762 string = match_strdup(args);
1763 if (string == NULL)
1764 goto out_nomem;
1765
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04001766 if (strnlen(string, CIFS_MAX_USERNAME_LEN) >
1767 CIFS_MAX_USERNAME_LEN) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001768 pr_warn("CIFS: username too long\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001769 goto cifs_parse_mount_err;
1770 }
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04001771
1772 kfree(vol->username);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001773 vol->username = kstrdup(string, GFP_KERNEL);
Joe Perchesf96637b2013-05-04 22:12:25 -05001774 if (!vol->username)
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001775 goto cifs_parse_mount_err;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001776 break;
1777 case Opt_blank_pass:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001778 /* passwords have to be handled differently
1779 * to allow the character used for deliminator
1780 * to be passed within them
1781 */
1782
Sachin Prabhuc369c9a2013-04-09 18:17:41 +01001783 /*
1784 * Check if this is a case where the password
1785 * starts with a delimiter
1786 */
1787 tmp_end = strchr(data, '=');
1788 tmp_end++;
1789 if (!(tmp_end < end && tmp_end[1] == delim)) {
1790 /* No it is not. Set the password to NULL */
Aurelien Aptel97f4b722018-01-25 15:59:39 +01001791 kzfree(vol->password);
Sachin Prabhuc369c9a2013-04-09 18:17:41 +01001792 vol->password = NULL;
1793 break;
1794 }
1795 /* Yes it is. Drop down to Opt_pass below.*/
1796 case Opt_pass:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001797 /* Obtain the value string */
1798 value = strchr(data, '=');
Sachin Prabhu10238072012-03-28 18:07:08 +01001799 value++;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001800
1801 /* Set tmp_end to end of the string */
1802 tmp_end = (char *) value + strlen(value);
1803
1804 /* Check if following character is the deliminator
1805 * If yes, we have encountered a double deliminator
1806 * reset the NULL character to the deliminator
1807 */
Suresh Jayaramane73f8432012-06-12 07:15:50 +05301808 if (tmp_end < end && tmp_end[1] == delim) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001809 tmp_end[0] = delim;
1810
Suresh Jayaramane73f8432012-06-12 07:15:50 +05301811 /* Keep iterating until we get to a single
1812 * deliminator OR the end
1813 */
1814 while ((tmp_end = strchr(tmp_end, delim))
1815 != NULL && (tmp_end[1] == delim)) {
1816 tmp_end = (char *) &tmp_end[2];
1817 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001818
Suresh Jayaramane73f8432012-06-12 07:15:50 +05301819 /* Reset var options to point to next element */
1820 if (tmp_end) {
1821 tmp_end[0] = '\0';
1822 options = (char *) &tmp_end[1];
1823 } else
1824 /* Reached the end of the mount option
1825 * string */
1826 options = end;
1827 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001828
Aurelien Aptel97f4b722018-01-25 15:59:39 +01001829 kzfree(vol->password);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001830 /* Now build new password string */
1831 temp_len = strlen(value);
1832 vol->password = kzalloc(temp_len+1, GFP_KERNEL);
1833 if (vol->password == NULL) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001834 pr_warn("CIFS: no memory for password\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001835 goto cifs_parse_mount_err;
1836 }
1837
1838 for (i = 0, j = 0; i < temp_len; i++, j++) {
1839 vol->password[j] = value[i];
1840 if ((value[i] == delim) &&
1841 value[i+1] == delim)
1842 /* skip the second deliminator */
1843 i++;
1844 }
1845 vol->password[j] = '\0';
1846 break;
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001847 case Opt_blank_ip:
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001848 /* FIXME: should this be an error instead? */
1849 got_ip = false;
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001850 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001851 case Opt_ip:
1852 string = match_strdup(args);
1853 if (string == NULL)
1854 goto out_nomem;
1855
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001856 if (!cifs_convert_address(dstaddr, string,
1857 strlen(string))) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001858 pr_err("CIFS: bad ip= option (%s).\n", string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001859 goto cifs_parse_mount_err;
1860 }
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001861 got_ip = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001862 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001863 case Opt_domain:
1864 string = match_strdup(args);
1865 if (string == NULL)
1866 goto out_nomem;
1867
Chen Gang057d6332013-07-19 09:01:36 +08001868 if (strnlen(string, CIFS_MAX_DOMAINNAME_LEN)
1869 == CIFS_MAX_DOMAINNAME_LEN) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001870 pr_warn("CIFS: domain name too long\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001871 goto cifs_parse_mount_err;
1872 }
1873
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04001874 kfree(vol->domainname);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001875 vol->domainname = kstrdup(string, GFP_KERNEL);
1876 if (!vol->domainname) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001877 pr_warn("CIFS: no memory for domainname\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001878 goto cifs_parse_mount_err;
1879 }
Joe Perchesf96637b2013-05-04 22:12:25 -05001880 cifs_dbg(FYI, "Domain name set\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001881 break;
1882 case Opt_srcaddr:
1883 string = match_strdup(args);
1884 if (string == NULL)
1885 goto out_nomem;
1886
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001887 if (!cifs_convert_address(
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001888 (struct sockaddr *)&vol->srcaddr,
1889 string, strlen(string))) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001890 pr_warn("CIFS: Could not parse srcaddr: %s\n",
1891 string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001892 goto cifs_parse_mount_err;
1893 }
1894 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001895 case Opt_iocharset:
1896 string = match_strdup(args);
1897 if (string == NULL)
1898 goto out_nomem;
1899
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001900 if (strnlen(string, 1024) >= 65) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001901 pr_warn("CIFS: iocharset name too long.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001902 goto cifs_parse_mount_err;
1903 }
1904
Rasmus Villemoes87e747c2014-10-13 15:54:35 -07001905 if (strncasecmp(string, "default", 7) != 0) {
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04001906 kfree(vol->iocharset);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001907 vol->iocharset = kstrdup(string,
1908 GFP_KERNEL);
1909 if (!vol->iocharset) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001910 pr_warn("CIFS: no memory for charset\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001911 goto cifs_parse_mount_err;
1912 }
1913 }
1914 /* if iocharset not set then load_nls_default
1915 * is used by caller
1916 */
Joe Perchesf96637b2013-05-04 22:12:25 -05001917 cifs_dbg(FYI, "iocharset set to %s\n", string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001918 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001919 case Opt_netbiosname:
1920 string = match_strdup(args);
1921 if (string == NULL)
1922 goto out_nomem;
1923
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001924 memset(vol->source_rfc1001_name, 0x20,
1925 RFC1001_NAME_LEN);
1926 /*
1927 * FIXME: are there cases in which a comma can
1928 * be valid in workstation netbios name (and
1929 * need special handling)?
1930 */
1931 for (i = 0; i < RFC1001_NAME_LEN; i++) {
1932 /* don't ucase netbiosname for user */
1933 if (string[i] == 0)
1934 break;
1935 vol->source_rfc1001_name[i] = string[i];
1936 }
1937 /* The string has 16th byte zero still from
1938 * set at top of the function
1939 */
1940 if (i == RFC1001_NAME_LEN && string[i] != 0)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001941 pr_warn("CIFS: netbiosname longer than 15 truncated.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001942 break;
1943 case Opt_servern:
1944 /* servernetbiosname specified override *SMBSERVER */
1945 string = match_strdup(args);
1946 if (string == NULL)
1947 goto out_nomem;
1948
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001949 /* last byte, type, is 0x20 for servr type */
1950 memset(vol->target_rfc1001_name, 0x20,
1951 RFC1001_NAME_LEN_WITH_NULL);
1952
1953 /* BB are there cases in which a comma can be
1954 valid in this workstation netbios name
1955 (and need special handling)? */
1956
1957 /* user or mount helper must uppercase the
1958 netbios name */
1959 for (i = 0; i < 15; i++) {
1960 if (string[i] == 0)
1961 break;
1962 vol->target_rfc1001_name[i] = string[i];
1963 }
1964 /* The string has 16th byte zero still from
1965 set at top of the function */
1966 if (i == RFC1001_NAME_LEN && string[i] != 0)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001967 pr_warn("CIFS: server netbiosname longer than 15 truncated.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001968 break;
1969 case Opt_ver:
Steve French7e682f72017-08-31 21:34:24 -05001970 /* version of mount userspace tools, not dialect */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001971 string = match_strdup(args);
1972 if (string == NULL)
1973 goto out_nomem;
1974
Steve French7e682f72017-08-31 21:34:24 -05001975 /* If interface changes in mount.cifs bump to new ver */
Rasmus Villemoes87e747c2014-10-13 15:54:35 -07001976 if (strncasecmp(string, "1", 1) == 0) {
Steve French7e682f72017-08-31 21:34:24 -05001977 if (strlen(string) > 1) {
1978 pr_warn("Bad mount helper ver=%s. Did "
1979 "you want SMB1 (CIFS) dialect "
1980 "and mean to type vers=1.0 "
1981 "instead?\n", string);
1982 goto cifs_parse_mount_err;
1983 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001984 /* This is the default */
1985 break;
1986 }
1987 /* For all other value, error */
Steve French7e682f72017-08-31 21:34:24 -05001988 pr_warn("CIFS: Invalid mount helper version specified\n");
Sean Finneyb9468452011-04-11 13:19:32 +00001989 goto cifs_parse_mount_err;
Jeff Layton23db65f2012-05-15 12:20:51 -04001990 case Opt_vers:
Steve French7e682f72017-08-31 21:34:24 -05001991 /* protocol version (dialect) */
Jeff Layton23db65f2012-05-15 12:20:51 -04001992 string = match_strdup(args);
1993 if (string == NULL)
1994 goto out_nomem;
1995
Steve Frenchc7c137b2018-06-06 17:59:29 -05001996 if (cifs_parse_smb_version(string, vol, is_smb3) != 0)
Jeff Layton23db65f2012-05-15 12:20:51 -04001997 goto cifs_parse_mount_err;
Steve French7e682f72017-08-31 21:34:24 -05001998 got_version = true;
Jeff Layton23db65f2012-05-15 12:20:51 -04001999 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002000 case Opt_sec:
2001 string = match_strdup(args);
2002 if (string == NULL)
2003 goto out_nomem;
2004
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002005 if (cifs_parse_security_flavors(string, vol) != 0)
2006 goto cifs_parse_mount_err;
2007 break;
Jeff Layton15b6a472012-05-16 07:50:15 -04002008 case Opt_cache:
2009 string = match_strdup(args);
2010 if (string == NULL)
2011 goto out_nomem;
2012
2013 if (cifs_parse_cache_flavor(string, vol) != 0)
2014 goto cifs_parse_mount_err;
2015 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002016 default:
Jeff Laytond8162552012-03-23 14:40:56 -04002017 /*
2018 * An option we don't recognize. Save it off for later
2019 * if we haven't already found one
2020 */
2021 if (!invalid)
2022 invalid = data;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002023 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002025 /* Free up any allocated string */
2026 kfree(string);
2027 string = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
Jeff Layton0eb8a132010-10-06 19:51:12 -04002029
Jeff Laytond8162552012-03-23 14:40:56 -04002030 if (!sloppy && invalid) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002031 pr_err("CIFS: Unknown mount option \"%s\"\n", invalid);
Jeff Laytond8162552012-03-23 14:40:56 -04002032 goto cifs_parse_mount_err;
2033 }
2034
Long Li8339dd32017-11-07 01:54:55 -07002035 if (vol->rdma && vol->vals->protocol_id < SMB30_PROT_ID) {
2036 cifs_dbg(VFS, "SMB Direct requires Version >=3.0\n");
2037 goto cifs_parse_mount_err;
2038 }
2039
Jeff Layton8a8798a2012-01-17 16:09:15 -05002040#ifndef CONFIG_KEYS
2041 /* Muliuser mounts require CONFIG_KEYS support */
2042 if (vol->multiuser) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002043 cifs_dbg(VFS, "Multiuser mounts require kernels with CONFIG_KEYS enabled\n");
Sean Finneyb9468452011-04-11 13:19:32 +00002044 goto cifs_parse_mount_err;
Jeff Layton0eb8a132010-10-06 19:51:12 -04002045 }
Jeff Layton8a8798a2012-01-17 16:09:15 -05002046#endif
Jeff Laytone5e69ab2012-11-25 08:00:42 -05002047 if (!vol->UNC) {
Jeff Layton37d4f992013-05-24 07:40:05 -04002048 cifs_dbg(VFS, "CIFS mount error: No usable UNC path provided in device string!\n");
Jeff Laytone5e69ab2012-11-25 08:00:42 -05002049 goto cifs_parse_mount_err;
2050 }
Jeff Layton0eb8a132010-10-06 19:51:12 -04002051
Jeff Layton62a1a432012-12-10 06:10:45 -05002052 /* make sure UNC has a share name */
2053 if (!strchr(vol->UNC + 3, '\\')) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002054 cifs_dbg(VFS, "Malformed UNC. Unable to find share name.\n");
Jeff Layton62a1a432012-12-10 06:10:45 -05002055 goto cifs_parse_mount_err;
2056 }
2057
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002058 if (!got_ip) {
Daniel N Pettersson29bb3152017-04-27 11:32:36 +02002059 int len;
2060 const char *slash;
2061
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002062 /* No ip= option specified? Try to get it from UNC */
Daniel N Pettersson29bb3152017-04-27 11:32:36 +02002063 /* Use the address part of the UNC. */
2064 slash = strchr(&vol->UNC[2], '\\');
2065 len = slash - &vol->UNC[2];
2066 if (!cifs_convert_address(dstaddr, &vol->UNC[2], len)) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002067 pr_err("Unable to determine destination address.\n");
Jeff Laytonb979aaa2012-11-26 11:09:55 -05002068 goto cifs_parse_mount_err;
2069 }
2070 }
2071
2072 /* set the port that we got earlier */
2073 cifs_set_port(dstaddr, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Jeff Layton9b9d6b242009-07-31 06:56:09 -04002075 if (uid_specified)
2076 vol->override_uid = override_uid;
2077 else if (override_uid == 1)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002078 pr_notice("CIFS: ignoring forceuid mount option specified with no uid= option.\n");
Jeff Layton9b9d6b242009-07-31 06:56:09 -04002079
2080 if (gid_specified)
2081 vol->override_gid = override_gid;
2082 else if (override_gid == 1)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002083 pr_notice("CIFS: ignoring forcegid mount option specified with no gid= option.\n");
Jeff Layton9b9d6b242009-07-31 06:56:09 -04002084
Steve French7e682f72017-08-31 21:34:24 -05002085 if (got_version == false)
2086 pr_warn("No dialect specified on mount. Default has changed to "
Steve French9764c022017-09-17 10:41:35 -05002087 "a more secure dialect, SMB2.1 or later (e.g. SMB3), from CIFS "
Steve French7e682f72017-08-31 21:34:24 -05002088 "(SMB1). To use the less secure SMB1 dialect to access "
Steve French9764c022017-09-17 10:41:35 -05002089 "old servers which do not support SMB3 (or SMB2.1) specify vers=1.0"
2090 " on mount.\n");
Steve French7e682f72017-08-31 21:34:24 -05002091
Sean Finneyb9468452011-04-11 13:19:32 +00002092 kfree(mountdata_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 return 0;
Sean Finneyb9468452011-04-11 13:19:32 +00002094
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002095out_nomem:
Andy Shevchenko0b456f02014-08-27 16:49:44 +03002096 pr_warn("Could not allocate temporary buffer\n");
Sean Finneyb9468452011-04-11 13:19:32 +00002097cifs_parse_mount_err:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04002098 kfree(string);
Sean Finneyb9468452011-04-11 13:19:32 +00002099 kfree(mountdata_copy);
2100 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101}
2102
Ben Greear3eb9a882010-09-01 17:06:02 -07002103/** Returns true if srcaddr isn't specified and rhs isn't
2104 * specified, or if srcaddr is specified and
2105 * matches the IP address of the rhs argument.
2106 */
Jeff Layton45151482010-07-06 20:43:02 -04002107static bool
Ben Greear3eb9a882010-09-01 17:06:02 -07002108srcip_matches(struct sockaddr *srcaddr, struct sockaddr *rhs)
2109{
2110 switch (srcaddr->sa_family) {
2111 case AF_UNSPEC:
2112 return (rhs->sa_family == AF_UNSPEC);
2113 case AF_INET: {
2114 struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr;
2115 struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs;
2116 return (saddr4->sin_addr.s_addr == vaddr4->sin_addr.s_addr);
2117 }
2118 case AF_INET6: {
2119 struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr;
Nickolai Zeldoviche3e27752013-01-16 21:36:17 -05002120 struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs;
Ben Greear3eb9a882010-09-01 17:06:02 -07002121 return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr);
2122 }
2123 default:
2124 WARN_ON(1);
2125 return false; /* don't expect to be here */
2126 }
2127}
2128
Pavel Shilovsky4b886132010-12-13 22:18:07 +03002129/*
2130 * If no port is specified in addr structure, we try to match with 445 port
2131 * and if it fails - with 139 ports. It should be called only if address
2132 * families of server and addr are equal.
2133 */
2134static bool
2135match_port(struct TCP_Server_Info *server, struct sockaddr *addr)
2136{
Steve French6da97912011-03-13 18:55:55 +00002137 __be16 port, *sport;
Pavel Shilovsky4b886132010-12-13 22:18:07 +03002138
2139 switch (addr->sa_family) {
2140 case AF_INET:
2141 sport = &((struct sockaddr_in *) &server->dstaddr)->sin_port;
2142 port = ((struct sockaddr_in *) addr)->sin_port;
2143 break;
2144 case AF_INET6:
2145 sport = &((struct sockaddr_in6 *) &server->dstaddr)->sin6_port;
2146 port = ((struct sockaddr_in6 *) addr)->sin6_port;
2147 break;
2148 default:
2149 WARN_ON(1);
2150 return false;
2151 }
2152
2153 if (!port) {
2154 port = htons(CIFS_PORT);
2155 if (port == *sport)
2156 return true;
2157
2158 port = htons(RFC1001_PORT);
2159 }
2160
2161 return port == *sport;
2162}
Ben Greear3eb9a882010-09-01 17:06:02 -07002163
2164static bool
2165match_address(struct TCP_Server_Info *server, struct sockaddr *addr,
2166 struct sockaddr *srcaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167{
Jeff Layton45151482010-07-06 20:43:02 -04002168 switch (addr->sa_family) {
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002169 case AF_INET: {
2170 struct sockaddr_in *addr4 = (struct sockaddr_in *)addr;
2171 struct sockaddr_in *srv_addr4 =
2172 (struct sockaddr_in *)&server->dstaddr;
2173
2174 if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr)
Jeff Layton45151482010-07-06 20:43:02 -04002175 return false;
Jeff Layton45151482010-07-06 20:43:02 -04002176 break;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002177 }
2178 case AF_INET6: {
2179 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr;
2180 struct sockaddr_in6 *srv_addr6 =
2181 (struct sockaddr_in6 *)&server->dstaddr;
2182
Jeff Layton45151482010-07-06 20:43:02 -04002183 if (!ipv6_addr_equal(&addr6->sin6_addr,
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002184 &srv_addr6->sin6_addr))
Jeff Layton45151482010-07-06 20:43:02 -04002185 return false;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002186 if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id)
Jeff Layton45151482010-07-06 20:43:02 -04002187 return false;
Jeff Layton45151482010-07-06 20:43:02 -04002188 break;
2189 }
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002190 default:
2191 WARN_ON(1);
2192 return false; /* don't expect to be here */
2193 }
Jeff Layton45151482010-07-06 20:43:02 -04002194
Ben Greear3eb9a882010-09-01 17:06:02 -07002195 if (!srcip_matches(srcaddr, (struct sockaddr *)&server->srcaddr))
2196 return false;
2197
Jeff Layton45151482010-07-06 20:43:02 -04002198 return true;
2199}
2200
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002201static bool
2202match_security(struct TCP_Server_Info *server, struct smb_vol *vol)
2203{
Jeff Layton3f618222013-06-12 19:52:14 -05002204 /*
2205 * The select_sectype function should either return the vol->sectype
2206 * that was specified, or "Unspecified" if that sectype was not
2207 * compatible with the given NEGOTIATE request.
2208 */
Sachin Prabhuef65aae2017-01-18 15:35:57 +05302209 if (server->ops->select_sectype(server, vol->sectype)
2210 == Unspecified)
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002211 return false;
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002212
Jeff Layton3f618222013-06-12 19:52:14 -05002213 /*
2214 * Now check if signing mode is acceptable. No need to check
2215 * global_secflags at this point since if MUST_SIGN is set then
2216 * the server->sign had better be too.
2217 */
Jeff Layton38d77c52013-05-26 07:01:00 -04002218 if (vol->sign && !server->sign)
2219 return false;
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002220
2221 return true;
2222}
2223
Jeff Layton9fa114f2012-11-26 11:09:57 -05002224static int match_server(struct TCP_Server_Info *server, struct smb_vol *vol)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002225{
Jeff Layton9fa114f2012-11-26 11:09:57 -05002226 struct sockaddr *addr = (struct sockaddr *)&vol->dstaddr;
2227
Jeff Laytona0b3df52013-05-24 07:40:59 -04002228 if (vol->nosharesock)
2229 return 0;
2230
Steve French9764c022017-09-17 10:41:35 -05002231 /* BB update this for smb3any and default case */
Jeff Layton23db65f2012-05-15 12:20:51 -04002232 if ((server->vals != vol->vals) || (server->ops != vol->ops))
2233 return 0;
2234
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002235 if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns))
2236 return 0;
2237
2238 if (!match_address(server, addr,
2239 (struct sockaddr *)&vol->srcaddr))
2240 return 0;
2241
2242 if (!match_port(server, addr))
2243 return 0;
2244
2245 if (!match_security(server, vol))
2246 return 0;
2247
Rabin Vincentb782fcc2016-07-19 09:25:45 +02002248 if (server->echo_interval != vol->echo_interval * HZ)
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002249 return 0;
2250
Long Li8339dd32017-11-07 01:54:55 -07002251 if (server->rdma != vol->rdma)
2252 return 0;
2253
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002254 return 1;
2255}
2256
Jeff Layton45151482010-07-06 20:43:02 -04002257static struct TCP_Server_Info *
Jeff Layton9fa114f2012-11-26 11:09:57 -05002258cifs_find_tcp_session(struct smb_vol *vol)
Jeff Layton45151482010-07-06 20:43:02 -04002259{
Jeff Laytone7ddee92008-11-14 13:44:38 -05002260 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302262 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton45151482010-07-06 20:43:02 -04002263 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
Jeff Layton9fa114f2012-11-26 11:09:57 -05002264 if (!match_server(server, vol))
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002265 continue;
2266
Jeff Laytone7ddee92008-11-14 13:44:38 -05002267 ++server->srv_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302268 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -05002269 cifs_dbg(FYI, "Existing tcp session with server found\n");
Jeff Laytone7ddee92008-11-14 13:44:38 -05002270 return server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302272 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 return NULL;
2274}
2275
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002276void
2277cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
Steve Frencha5c3e1c2014-09-16 04:16:19 -05002279 struct task_struct *task;
2280
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302281 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002282 if (--server->srv_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302283 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002284 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 }
Steve Frenchdea570e02008-05-06 22:05:51 +00002286
Rob Landleyf1d0c992011-01-22 15:44:05 -06002287 put_net(cifs_net_ns(server));
2288
Jeff Laytone7ddee92008-11-14 13:44:38 -05002289 list_del_init(&server->tcp_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302290 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002291
Jeff Laytonc74093b2011-01-11 07:24:23 -05002292 cancel_delayed_work_sync(&server->echo);
2293
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002294 if (from_reconnect)
2295 /*
2296 * Avoid deadlock here: reconnect work calls
2297 * cifs_put_tcp_session() at its end. Need to be sure
2298 * that reconnect work does nothing with server pointer after
2299 * that step.
2300 */
2301 cancel_delayed_work(&server->reconnect);
2302 else
2303 cancel_delayed_work_sync(&server->reconnect);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002304
Jeff Laytone7ddee92008-11-14 13:44:38 -05002305 spin_lock(&GlobalMid_Lock);
2306 server->tcpStatus = CifsExiting;
2307 spin_unlock(&GlobalMid_Lock);
2308
Pavel Shilovsky026e93d2016-11-03 16:47:37 -07002309 cifs_crypto_secmech_release(server);
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05302310 cifs_fscache_release_client_cookie(server);
2311
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05002312 kfree(server->session_key.response);
2313 server->session_key.response = NULL;
2314 server->session_key.len = 0;
Steve Frencha5c3e1c2014-09-16 04:16:19 -05002315
2316 task = xchg(&server->tsk, NULL);
2317 if (task)
2318 force_sig(SIGKILL, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319}
2320
Jeff Layton63c038c2008-12-01 18:41:46 -05002321static struct TCP_Server_Info *
2322cifs_get_tcp_session(struct smb_vol *volume_info)
2323{
2324 struct TCP_Server_Info *tcp_ses = NULL;
Jeff Layton63c038c2008-12-01 18:41:46 -05002325 int rc;
2326
Joe Perchesf96637b2013-05-04 22:12:25 -05002327 cifs_dbg(FYI, "UNC: %s\n", volume_info->UNC);
Jeff Layton63c038c2008-12-01 18:41:46 -05002328
2329 /* see if we already have a matching tcp_ses */
Jeff Layton9fa114f2012-11-26 11:09:57 -05002330 tcp_ses = cifs_find_tcp_session(volume_info);
Jeff Layton63c038c2008-12-01 18:41:46 -05002331 if (tcp_ses)
2332 return tcp_ses;
2333
2334 tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL);
2335 if (!tcp_ses) {
2336 rc = -ENOMEM;
2337 goto out_err;
2338 }
2339
Jeff Layton23db65f2012-05-15 12:20:51 -04002340 tcp_ses->ops = volume_info->ops;
2341 tcp_ses->vals = volume_info->vals;
Rob Landleyf1d0c992011-01-22 15:44:05 -06002342 cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns));
Jeff Layton63c038c2008-12-01 18:41:46 -05002343 tcp_ses->hostname = extract_hostname(volume_info->UNC);
2344 if (IS_ERR(tcp_ses->hostname)) {
2345 rc = PTR_ERR(tcp_ses->hostname);
Shirish Pargaonkarf7c54452010-10-26 18:10:24 -05002346 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002347 }
2348
2349 tcp_ses->noblocksnd = volume_info->noblocksnd;
2350 tcp_ses->noautotune = volume_info->noautotune;
Steve French6a5fa2362010-01-01 01:28:43 +00002351 tcp_ses->tcp_nodelay = volume_info->sockopt_tcp_nodelay;
Long Li8339dd32017-11-07 01:54:55 -07002352 tcp_ses->rdma = volume_info->rdma;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +03002353 tcp_ses->in_flight = 0;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +04002354 tcp_ses->credits = 1;
Jeff Layton63c038c2008-12-01 18:41:46 -05002355 init_waitqueue_head(&tcp_ses->response_q);
2356 init_waitqueue_head(&tcp_ses->request_q);
2357 INIT_LIST_HEAD(&tcp_ses->pending_mid_q);
2358 mutex_init(&tcp_ses->srv_mutex);
2359 memcpy(tcp_ses->workstation_RFC1001_name,
2360 volume_info->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
2361 memcpy(tcp_ses->server_RFC1001_name,
2362 volume_info->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -05002363 tcp_ses->session_estab = false;
Jeff Layton63c038c2008-12-01 18:41:46 -05002364 tcp_ses->sequence_number = 0;
Steve Frenchfda35942011-01-20 18:06:34 +00002365 tcp_ses->lstrp = jiffies;
Jeff Layton58fa0152012-05-01 17:41:16 -04002366 spin_lock_init(&tcp_ses->req_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002367 INIT_LIST_HEAD(&tcp_ses->tcp_ses_list);
2368 INIT_LIST_HEAD(&tcp_ses->smb_ses_list);
Jeff Laytonc74093b2011-01-11 07:24:23 -05002369 INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002370 INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server);
2371 mutex_init(&tcp_ses->reconnect_mutex);
Jeff Layton9fa114f2012-11-26 11:09:57 -05002372 memcpy(&tcp_ses->srcaddr, &volume_info->srcaddr,
2373 sizeof(tcp_ses->srcaddr));
2374 memcpy(&tcp_ses->dstaddr, &volume_info->dstaddr,
2375 sizeof(tcp_ses->dstaddr));
Steve Frenchfa70b872016-09-22 00:39:34 -05002376 generate_random_uuid(tcp_ses->client_guid);
Jeff Layton63c038c2008-12-01 18:41:46 -05002377 /*
2378 * at this point we are the only ones with the pointer
2379 * to the struct since the kernel thread not created yet
2380 * no need to spinlock this init of tcpStatus or srv_count
2381 */
2382 tcp_ses->tcpStatus = CifsNew;
2383 ++tcp_ses->srv_count;
2384
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002385 if (volume_info->echo_interval >= SMB_ECHO_INTERVAL_MIN &&
2386 volume_info->echo_interval <= SMB_ECHO_INTERVAL_MAX)
2387 tcp_ses->echo_interval = volume_info->echo_interval * HZ;
2388 else
2389 tcp_ses->echo_interval = SMB_ECHO_INTERVAL_DEFAULT * HZ;
Long Li2f894642017-11-22 17:38:34 -07002390 if (tcp_ses->rdma) {
2391#ifndef CONFIG_CIFS_SMB_DIRECT
2392 cifs_dbg(VFS, "CONFIG_CIFS_SMB_DIRECT is not enabled\n");
2393 rc = -ENOENT;
2394 goto out_err_crypto_release;
2395#endif
2396 tcp_ses->smbd_conn = smbd_get_connection(
2397 tcp_ses, (struct sockaddr *)&volume_info->dstaddr);
2398 if (tcp_ses->smbd_conn) {
2399 cifs_dbg(VFS, "RDMA transport established\n");
2400 rc = 0;
2401 goto smbd_connected;
2402 } else {
2403 rc = -ENOENT;
2404 goto out_err_crypto_release;
2405 }
2406 }
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002407 rc = ip_connect(tcp_ses);
Jeff Layton63c038c2008-12-01 18:41:46 -05002408 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002409 cifs_dbg(VFS, "Error connecting to socket. Aborting operation.\n");
Shirish Pargaonkarf7c54452010-10-26 18:10:24 -05002410 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002411 }
Long Li2f894642017-11-22 17:38:34 -07002412smbd_connected:
Jeff Layton63c038c2008-12-01 18:41:46 -05002413 /*
2414 * since we're in a cifs function already, we know that
2415 * this will succeed. No need for try_module_get().
2416 */
2417 __module_get(THIS_MODULE);
Al Viro7c97c202011-06-21 08:51:28 -04002418 tcp_ses->tsk = kthread_run(cifs_demultiplex_thread,
Jeff Layton63c038c2008-12-01 18:41:46 -05002419 tcp_ses, "cifsd");
2420 if (IS_ERR(tcp_ses->tsk)) {
2421 rc = PTR_ERR(tcp_ses->tsk);
Joe Perchesf96637b2013-05-04 22:12:25 -05002422 cifs_dbg(VFS, "error %d create cifsd thread\n", rc);
Jeff Layton63c038c2008-12-01 18:41:46 -05002423 module_put(THIS_MODULE);
Shirish Pargaonkarf7c54452010-10-26 18:10:24 -05002424 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002425 }
Steve Frenchfd88ce92011-04-12 01:01:14 +00002426 tcp_ses->tcpStatus = CifsNeedNegotiate;
Jeff Layton63c038c2008-12-01 18:41:46 -05002427
2428 /* thread spawned, put it on the list */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302429 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002430 list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302431 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002432
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05302433 cifs_fscache_get_client_cookie(tcp_ses);
2434
Jeff Laytonc74093b2011-01-11 07:24:23 -05002435 /* queue echo request delayed work */
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002436 queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval);
Jeff Laytonc74093b2011-01-11 07:24:23 -05002437
Jeff Layton63c038c2008-12-01 18:41:46 -05002438 return tcp_ses;
2439
Shirish Pargaonkarf7c54452010-10-26 18:10:24 -05002440out_err_crypto_release:
Pavel Shilovsky026e93d2016-11-03 16:47:37 -07002441 cifs_crypto_secmech_release(tcp_ses);
Shirish Pargaonkard2b91522010-10-21 14:25:08 -05002442
Rob Landleyf1d0c992011-01-22 15:44:05 -06002443 put_net(cifs_net_ns(tcp_ses));
2444
Jeff Layton63c038c2008-12-01 18:41:46 -05002445out_err:
2446 if (tcp_ses) {
Steve French8347a5c2009-10-06 18:31:29 +00002447 if (!IS_ERR(tcp_ses->hostname))
2448 kfree(tcp_ses->hostname);
Jeff Layton63c038c2008-12-01 18:41:46 -05002449 if (tcp_ses->ssocket)
2450 sock_release(tcp_ses->ssocket);
2451 kfree(tcp_ses);
2452 }
2453 return ERR_PTR(rc);
2454}
2455
Steve French96daf2b2011-05-27 04:34:02 +00002456static int match_session(struct cifs_ses *ses, struct smb_vol *vol)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002457{
Jeff Layton3f618222013-06-12 19:52:14 -05002458 if (vol->sectype != Unspecified &&
2459 vol->sectype != ses->sectype)
2460 return 0;
2461
2462 switch (ses->sectype) {
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002463 case Kerberos:
Eric W. Biederman64ed39d2013-02-06 02:30:39 -08002464 if (!uid_eq(vol->cred_uid, ses->cred_uid))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002465 return 0;
2466 break;
2467 default:
Jeff Layton04febab2012-01-17 16:09:15 -05002468 /* NULL username means anonymous session */
2469 if (ses->user_name == NULL) {
2470 if (!vol->nullauth)
2471 return 0;
2472 break;
2473 }
2474
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002475 /* anything else takes username/password */
Jeff Layton04febab2012-01-17 16:09:15 -05002476 if (strncmp(ses->user_name,
2477 vol->username ? vol->username : "",
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002478 CIFS_MAX_USERNAME_LEN))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002479 return 0;
Jeff Layton08b37d52014-05-23 06:53:10 -04002480 if ((vol->username && strlen(vol->username) != 0) &&
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002481 ses->password != NULL &&
2482 strncmp(ses->password,
2483 vol->password ? vol->password : "",
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002484 CIFS_MAX_PASSWORD_LEN))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002485 return 0;
2486 }
2487 return 1;
2488}
2489
Aurelien Aptelb327a712018-01-24 13:46:10 +01002490/**
2491 * cifs_setup_ipc - helper to setup the IPC tcon for the session
2492 *
2493 * A new IPC connection is made and stored in the session
2494 * tcon_ipc. The IPC tcon has the same lifetime as the session.
2495 */
2496static int
2497cifs_setup_ipc(struct cifs_ses *ses, struct smb_vol *volume_info)
2498{
2499 int rc = 0, xid;
2500 struct cifs_tcon *tcon;
2501 struct nls_table *nls_codepage;
2502 char unc[SERVER_NAME_LENGTH + sizeof("//x/IPC$")] = {0};
2503 bool seal = false;
2504
2505 /*
2506 * If the mount request that resulted in the creation of the
2507 * session requires encryption, force IPC to be encrypted too.
2508 */
2509 if (volume_info->seal) {
2510 if (ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION)
2511 seal = true;
2512 else {
2513 cifs_dbg(VFS,
2514 "IPC: server doesn't support encryption\n");
2515 return -EOPNOTSUPP;
2516 }
2517 }
2518
2519 tcon = tconInfoAlloc();
2520 if (tcon == NULL)
2521 return -ENOMEM;
2522
2523 snprintf(unc, sizeof(unc), "\\\\%s\\IPC$", ses->serverName);
2524
2525 /* cannot fail */
2526 nls_codepage = load_nls_default();
2527
2528 xid = get_xid();
2529 tcon->ses = ses;
2530 tcon->ipc = true;
2531 tcon->seal = seal;
2532 rc = ses->server->ops->tree_connect(xid, ses, unc, tcon, nls_codepage);
2533 free_xid(xid);
2534
2535 if (rc) {
2536 cifs_dbg(VFS, "failed to connect to IPC (rc=%d)\n", rc);
2537 tconInfoFree(tcon);
2538 goto out;
2539 }
2540
2541 cifs_dbg(FYI, "IPC tcon rc = %d ipc tid = %d\n", rc, tcon->tid);
2542
2543 ses->tcon_ipc = tcon;
2544out:
2545 unload_nls(nls_codepage);
2546 return rc;
2547}
2548
2549/**
2550 * cifs_free_ipc - helper to release the session IPC tcon
2551 *
2552 * Needs to be called everytime a session is destroyed
2553 */
2554static int
2555cifs_free_ipc(struct cifs_ses *ses)
2556{
2557 int rc = 0, xid;
2558 struct cifs_tcon *tcon = ses->tcon_ipc;
2559
2560 if (tcon == NULL)
2561 return 0;
2562
2563 if (ses->server->ops->tree_disconnect) {
2564 xid = get_xid();
2565 rc = ses->server->ops->tree_disconnect(xid, tcon);
2566 free_xid(xid);
2567 }
2568
2569 if (rc)
2570 cifs_dbg(FYI, "failed to disconnect IPC tcon (rc=%d)\n", rc);
2571
2572 tconInfoFree(tcon);
2573 ses->tcon_ipc = NULL;
2574 return rc;
2575}
2576
Steve French96daf2b2011-05-27 04:34:02 +00002577static struct cifs_ses *
Jeff Layton4ff67b72010-07-06 20:43:02 -04002578cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb_vol *vol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579{
Steve French96daf2b2011-05-27 04:34:02 +00002580 struct cifs_ses *ses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302582 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton4ff67b72010-07-06 20:43:02 -04002583 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002584 if (ses->status == CifsExiting)
2585 continue;
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002586 if (!match_session(ses, vol))
2587 continue;
Jeff Layton14fbf502008-11-14 13:53:46 -05002588 ++ses->ses_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302589 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002590 return ses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302592 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 return NULL;
2594}
2595
Jeff Layton14fbf502008-11-14 13:53:46 -05002596static void
Steve French96daf2b2011-05-27 04:34:02 +00002597cifs_put_smb_ses(struct cifs_ses *ses)
Jeff Layton14fbf502008-11-14 13:53:46 -05002598{
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002599 unsigned int rc, xid;
Jeff Layton14fbf502008-11-14 13:53:46 -05002600 struct TCP_Server_Info *server = ses->server;
2601
Joe Perchesf96637b2013-05-04 22:12:25 -05002602 cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002603
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302604 spin_lock(&cifs_tcp_ses_lock);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002605 if (ses->status == CifsExiting) {
2606 spin_unlock(&cifs_tcp_ses_lock);
2607 return;
2608 }
Jeff Layton14fbf502008-11-14 13:53:46 -05002609 if (--ses->ses_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302610 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002611 return;
2612 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002613 if (ses->status == CifsGood)
2614 ses->status = CifsExiting;
2615 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002616
Aurelien Aptelb327a712018-01-24 13:46:10 +01002617 cifs_free_ipc(ses);
2618
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002619 if (ses->status == CifsExiting && server->ops->logoff) {
2620 xid = get_xid();
2621 rc = server->ops->logoff(xid, ses);
2622 if (rc)
2623 cifs_dbg(VFS, "%s: Session Logoff failure rc=%d\n",
2624 __func__, rc);
2625 _free_xid(xid);
2626 }
2627
2628 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002629 list_del_init(&ses->smb_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302630 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002631
Jeff Layton14fbf502008-11-14 13:53:46 -05002632 sesInfoFree(ses);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002633 cifs_put_tcp_session(server, 0);
Jeff Layton14fbf502008-11-14 13:53:46 -05002634}
2635
Jeff Layton8a8798a2012-01-17 16:09:15 -05002636#ifdef CONFIG_KEYS
2637
Chen Gang057d6332013-07-19 09:01:36 +08002638/* strlen("cifs:a:") + CIFS_MAX_DOMAINNAME_LEN + 1 */
2639#define CIFSCREDS_DESC_SIZE (7 + CIFS_MAX_DOMAINNAME_LEN + 1)
Jeff Layton8a8798a2012-01-17 16:09:15 -05002640
2641/* Populate username and pw fields from keyring if possible */
2642static int
2643cifs_set_cifscreds(struct smb_vol *vol, struct cifs_ses *ses)
2644{
2645 int rc = 0;
David Howells146aa8b2015-10-21 14:04:48 +01002646 const char *delim, *payload;
2647 char *desc;
Jeff Layton8a8798a2012-01-17 16:09:15 -05002648 ssize_t len;
2649 struct key *key;
2650 struct TCP_Server_Info *server = ses->server;
2651 struct sockaddr_in *sa;
2652 struct sockaddr_in6 *sa6;
David Howells146aa8b2015-10-21 14:04:48 +01002653 const struct user_key_payload *upayload;
Jeff Layton8a8798a2012-01-17 16:09:15 -05002654
2655 desc = kmalloc(CIFSCREDS_DESC_SIZE, GFP_KERNEL);
2656 if (!desc)
2657 return -ENOMEM;
2658
2659 /* try to find an address key first */
2660 switch (server->dstaddr.ss_family) {
2661 case AF_INET:
2662 sa = (struct sockaddr_in *)&server->dstaddr;
2663 sprintf(desc, "cifs:a:%pI4", &sa->sin_addr.s_addr);
2664 break;
2665 case AF_INET6:
2666 sa6 = (struct sockaddr_in6 *)&server->dstaddr;
2667 sprintf(desc, "cifs:a:%pI6c", &sa6->sin6_addr.s6_addr);
2668 break;
2669 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05002670 cifs_dbg(FYI, "Bad ss_family (%hu)\n",
2671 server->dstaddr.ss_family);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002672 rc = -EINVAL;
2673 goto out_err;
2674 }
2675
Joe Perchesf96637b2013-05-04 22:12:25 -05002676 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002677 key = request_key(&key_type_logon, desc, "");
2678 if (IS_ERR(key)) {
2679 if (!ses->domainName) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002680 cifs_dbg(FYI, "domainName is NULL\n");
Jeff Layton8a8798a2012-01-17 16:09:15 -05002681 rc = PTR_ERR(key);
2682 goto out_err;
2683 }
2684
2685 /* didn't work, try to find a domain key */
2686 sprintf(desc, "cifs:d:%s", ses->domainName);
Joe Perchesf96637b2013-05-04 22:12:25 -05002687 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002688 key = request_key(&key_type_logon, desc, "");
2689 if (IS_ERR(key)) {
2690 rc = PTR_ERR(key);
2691 goto out_err;
2692 }
2693 }
2694
2695 down_read(&key->sem);
David Howells0837e492017-03-01 15:11:23 +00002696 upayload = user_key_payload_locked(key);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002697 if (IS_ERR_OR_NULL(upayload)) {
Jeff Layton4edc53c2012-02-07 06:30:51 -05002698 rc = upayload ? PTR_ERR(upayload) : -EINVAL;
Jeff Layton8a8798a2012-01-17 16:09:15 -05002699 goto out_key_put;
2700 }
2701
2702 /* find first : in payload */
David Howells146aa8b2015-10-21 14:04:48 +01002703 payload = upayload->data;
Jeff Layton8a8798a2012-01-17 16:09:15 -05002704 delim = strnchr(payload, upayload->datalen, ':');
Joe Perchesf96637b2013-05-04 22:12:25 -05002705 cifs_dbg(FYI, "payload=%s\n", payload);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002706 if (!delim) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002707 cifs_dbg(FYI, "Unable to find ':' in payload (datalen=%d)\n",
2708 upayload->datalen);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002709 rc = -EINVAL;
2710 goto out_key_put;
2711 }
2712
2713 len = delim - payload;
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002714 if (len > CIFS_MAX_USERNAME_LEN || len <= 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002715 cifs_dbg(FYI, "Bad value from username search (len=%zd)\n",
2716 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002717 rc = -EINVAL;
2718 goto out_key_put;
2719 }
2720
2721 vol->username = kstrndup(payload, len, GFP_KERNEL);
2722 if (!vol->username) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002723 cifs_dbg(FYI, "Unable to allocate %zd bytes for username\n",
2724 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002725 rc = -ENOMEM;
2726 goto out_key_put;
2727 }
Joe Perchesf96637b2013-05-04 22:12:25 -05002728 cifs_dbg(FYI, "%s: username=%s\n", __func__, vol->username);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002729
2730 len = key->datalen - (len + 1);
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002731 if (len > CIFS_MAX_PASSWORD_LEN || len <= 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002732 cifs_dbg(FYI, "Bad len for password search (len=%zd)\n", len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002733 rc = -EINVAL;
2734 kfree(vol->username);
2735 vol->username = NULL;
2736 goto out_key_put;
2737 }
2738
2739 ++delim;
2740 vol->password = kstrndup(delim, len, GFP_KERNEL);
2741 if (!vol->password) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002742 cifs_dbg(FYI, "Unable to allocate %zd bytes for password\n",
2743 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002744 rc = -ENOMEM;
2745 kfree(vol->username);
2746 vol->username = NULL;
2747 goto out_key_put;
2748 }
2749
2750out_key_put:
2751 up_read(&key->sem);
2752 key_put(key);
2753out_err:
2754 kfree(desc);
Joe Perchesf96637b2013-05-04 22:12:25 -05002755 cifs_dbg(FYI, "%s: returning %d\n", __func__, rc);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002756 return rc;
2757}
2758#else /* ! CONFIG_KEYS */
2759static inline int
2760cifs_set_cifscreds(struct smb_vol *vol __attribute__((unused)),
2761 struct cifs_ses *ses __attribute__((unused)))
2762{
2763 return -ENOSYS;
2764}
2765#endif /* CONFIG_KEYS */
2766
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01002767/**
2768 * cifs_get_smb_ses - get a session matching @volume_info data from @server
2769 *
2770 * This function assumes it is being called from cifs_mount() where we
2771 * already got a server reference (server refcount +1). See
2772 * cifs_get_tcon() for refcount explanations.
2773 */
Steve French96daf2b2011-05-27 04:34:02 +00002774static struct cifs_ses *
Jeff Layton36988c72010-04-24 07:57:43 -04002775cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb_vol *volume_info)
2776{
Pavel Shilovsky286170a2012-05-25 10:43:58 +04002777 int rc = -ENOMEM;
2778 unsigned int xid;
Steve French96daf2b2011-05-27 04:34:02 +00002779 struct cifs_ses *ses;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002780 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
2781 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
Jeff Layton36988c72010-04-24 07:57:43 -04002782
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002783 xid = get_xid();
Jeff Layton36988c72010-04-24 07:57:43 -04002784
Jeff Layton4ff67b72010-07-06 20:43:02 -04002785 ses = cifs_find_smb_ses(server, volume_info);
Jeff Layton36988c72010-04-24 07:57:43 -04002786 if (ses) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002787 cifs_dbg(FYI, "Existing smb sess found (status=%d)\n",
2788 ses->status);
Jeff Layton36988c72010-04-24 07:57:43 -04002789
Jeff Layton36988c72010-04-24 07:57:43 -04002790 mutex_lock(&ses->session_mutex);
Jeff Layton198b5682010-04-24 07:57:48 -04002791 rc = cifs_negotiate_protocol(xid, ses);
2792 if (rc) {
2793 mutex_unlock(&ses->session_mutex);
2794 /* problem -- put our ses reference */
2795 cifs_put_smb_ses(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002796 free_xid(xid);
Jeff Layton198b5682010-04-24 07:57:48 -04002797 return ERR_PTR(rc);
2798 }
Jeff Layton36988c72010-04-24 07:57:43 -04002799 if (ses->need_reconnect) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002800 cifs_dbg(FYI, "Session needs reconnect\n");
Jeff Layton36988c72010-04-24 07:57:43 -04002801 rc = cifs_setup_session(xid, ses,
2802 volume_info->local_nls);
2803 if (rc) {
2804 mutex_unlock(&ses->session_mutex);
2805 /* problem -- put our reference */
2806 cifs_put_smb_ses(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002807 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04002808 return ERR_PTR(rc);
2809 }
2810 }
2811 mutex_unlock(&ses->session_mutex);
Jeff Layton460cf342010-09-14 11:38:24 -04002812
2813 /* existing SMB ses has a server reference already */
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002814 cifs_put_tcp_session(server, 0);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002815 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04002816 return ses;
2817 }
2818
Joe Perchesf96637b2013-05-04 22:12:25 -05002819 cifs_dbg(FYI, "Existing smb sess not found\n");
Jeff Layton36988c72010-04-24 07:57:43 -04002820 ses = sesInfoAlloc();
2821 if (ses == NULL)
2822 goto get_ses_fail;
2823
2824 /* new SMB session uses our server ref */
2825 ses->server = server;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002826 if (server->dstaddr.ss_family == AF_INET6)
2827 sprintf(ses->serverName, "%pI6", &addr6->sin6_addr);
Jeff Layton36988c72010-04-24 07:57:43 -04002828 else
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002829 sprintf(ses->serverName, "%pI4", &addr->sin_addr);
Jeff Layton36988c72010-04-24 07:57:43 -04002830
Steve French8727c8a2011-02-25 01:11:56 -06002831 if (volume_info->username) {
2832 ses->user_name = kstrdup(volume_info->username, GFP_KERNEL);
2833 if (!ses->user_name)
2834 goto get_ses_fail;
2835 }
Jeff Layton36988c72010-04-24 07:57:43 -04002836
2837 /* volume_info->password freed at unmount */
2838 if (volume_info->password) {
2839 ses->password = kstrdup(volume_info->password, GFP_KERNEL);
2840 if (!ses->password)
2841 goto get_ses_fail;
2842 }
2843 if (volume_info->domainname) {
Shirish Pargaonkard3686d52010-10-28 09:53:07 -05002844 ses->domainName = kstrdup(volume_info->domainname, GFP_KERNEL);
2845 if (!ses->domainName)
2846 goto get_ses_fail;
Jeff Layton36988c72010-04-24 07:57:43 -04002847 }
Germano Percossi39566442016-12-15 12:31:18 +05302848 if (volume_info->domainauto)
2849 ses->domainAuto = volume_info->domainauto;
Jeff Layton3e4b3e12010-07-19 18:00:17 -04002850 ses->cred_uid = volume_info->cred_uid;
Jeff Layton36988c72010-04-24 07:57:43 -04002851 ses->linux_uid = volume_info->linux_uid;
Steve Frenchd9b94202011-04-12 01:24:57 +00002852
Jeff Layton28e11bd2013-05-26 07:01:00 -04002853 ses->sectype = volume_info->sectype;
2854 ses->sign = volume_info->sign;
Jeff Layton36988c72010-04-24 07:57:43 -04002855
2856 mutex_lock(&ses->session_mutex);
Jeff Layton198b5682010-04-24 07:57:48 -04002857 rc = cifs_negotiate_protocol(xid, ses);
2858 if (!rc)
2859 rc = cifs_setup_session(xid, ses, volume_info->local_nls);
Jeff Layton36988c72010-04-24 07:57:43 -04002860 mutex_unlock(&ses->session_mutex);
Steve Frenchc8e56f12010-09-08 21:10:58 +00002861 if (rc)
Jeff Layton36988c72010-04-24 07:57:43 -04002862 goto get_ses_fail;
2863
2864 /* success, put it on the list */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302865 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton36988c72010-04-24 07:57:43 -04002866 list_add(&ses->smb_ses_list, &server->smb_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302867 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton36988c72010-04-24 07:57:43 -04002868
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002869 free_xid(xid);
Aurelien Aptelb327a712018-01-24 13:46:10 +01002870
2871 cifs_setup_ipc(ses, volume_info);
2872
Jeff Layton36988c72010-04-24 07:57:43 -04002873 return ses;
2874
2875get_ses_fail:
2876 sesInfoFree(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002877 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04002878 return ERR_PTR(rc);
2879}
2880
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002881static int match_tcon(struct cifs_tcon *tcon, struct smb_vol *volume_info)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002882{
2883 if (tcon->tidStatus == CifsExiting)
2884 return 0;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002885 if (strncmp(tcon->treeName, volume_info->UNC, MAX_TREE_SIZE))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002886 return 0;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002887 if (tcon->seal != volume_info->seal)
2888 return 0;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002889 if (tcon->snapshot_time != volume_info->snapshot_time)
2890 return 0;
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002891 return 1;
2892}
2893
Steve French96daf2b2011-05-27 04:34:02 +00002894static struct cifs_tcon *
Steve French8b217fe2016-11-11 22:36:20 -06002895cifs_find_tcon(struct cifs_ses *ses, struct smb_vol *volume_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896{
2897 struct list_head *tmp;
Steve French96daf2b2011-05-27 04:34:02 +00002898 struct cifs_tcon *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302900 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002901 list_for_each(tmp, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +00002902 tcon = list_entry(tmp, struct cifs_tcon, tcon_list);
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002903 if (!match_tcon(tcon, volume_info))
Jeff Laytonf1987b42008-11-15 11:12:47 -05002904 continue;
Jeff Laytonf1987b42008-11-15 11:12:47 -05002905 ++tcon->tc_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302906 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 return tcon;
2908 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302909 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 return NULL;
2911}
2912
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002913void
Steve French96daf2b2011-05-27 04:34:02 +00002914cifs_put_tcon(struct cifs_tcon *tcon)
Jeff Laytonf1987b42008-11-15 11:12:47 -05002915{
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002916 unsigned int xid;
Aurelien Aptelb327a712018-01-24 13:46:10 +01002917 struct cifs_ses *ses;
Jeff Laytonf1987b42008-11-15 11:12:47 -05002918
Aurelien Aptelb327a712018-01-24 13:46:10 +01002919 /*
2920 * IPC tcon share the lifetime of their session and are
2921 * destroyed in the session put function
2922 */
2923 if (tcon == NULL || tcon->ipc)
2924 return;
2925
2926 ses = tcon->ses;
Joe Perchesf96637b2013-05-04 22:12:25 -05002927 cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302928 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002929 if (--tcon->tc_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302930 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002931 return;
2932 }
2933
2934 list_del_init(&tcon->tcon_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302935 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002936
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002937 xid = get_xid();
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002938 if (ses->server->ops->tree_disconnect)
2939 ses->server->ops->tree_disconnect(xid, tcon);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002940 _free_xid(xid);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002941
Suresh Jayaramand03382c2010-07-05 18:12:27 +05302942 cifs_fscache_release_super_cookie(tcon);
Steve French9f841592010-07-23 20:37:53 +00002943 tconInfoFree(tcon);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002944 cifs_put_smb_ses(ses);
2945}
2946
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01002947/**
2948 * cifs_get_tcon - get a tcon matching @volume_info data from @ses
2949 *
2950 * - tcon refcount is the number of mount points using the tcon.
2951 * - ses refcount is the number of tcon using the session.
2952 *
2953 * 1. This function assumes it is being called from cifs_mount() where
2954 * we already got a session reference (ses refcount +1).
2955 *
2956 * 2. Since we're in the context of adding a mount point, the end
2957 * result should be either:
2958 *
2959 * a) a new tcon already allocated with refcount=1 (1 mount point) and
2960 * its session refcount incremented (1 new tcon). This +1 was
2961 * already done in (1).
2962 *
2963 * b) an existing tcon with refcount+1 (add a mount point to it) and
2964 * identical ses refcount (no new tcon). Because of (1) we need to
2965 * decrement the ses refcount.
2966 */
Steve French96daf2b2011-05-27 04:34:02 +00002967static struct cifs_tcon *
2968cifs_get_tcon(struct cifs_ses *ses, struct smb_vol *volume_info)
Jeff Laytond00c28d2010-04-24 07:57:44 -04002969{
2970 int rc, xid;
Steve French96daf2b2011-05-27 04:34:02 +00002971 struct cifs_tcon *tcon;
Jeff Laytond00c28d2010-04-24 07:57:44 -04002972
Steve French8b217fe2016-11-11 22:36:20 -06002973 tcon = cifs_find_tcon(ses, volume_info);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002974 if (tcon) {
Aurelien Aptel4a1360d2018-01-25 18:47:52 +01002975 /*
2976 * tcon has refcount already incremented but we need to
2977 * decrement extra ses reference gotten by caller (case b)
2978 */
Joe Perchesf96637b2013-05-04 22:12:25 -05002979 cifs_dbg(FYI, "Found match on UNC path\n");
Jeff Laytond00c28d2010-04-24 07:57:44 -04002980 cifs_put_smb_ses(ses);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002981 return tcon;
2982 }
2983
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002984 if (!ses->server->ops->tree_connect) {
2985 rc = -ENOSYS;
2986 goto out_fail;
2987 }
2988
Jeff Laytond00c28d2010-04-24 07:57:44 -04002989 tcon = tconInfoAlloc();
2990 if (tcon == NULL) {
2991 rc = -ENOMEM;
2992 goto out_fail;
2993 }
2994
Steve French8b217fe2016-11-11 22:36:20 -06002995 if (volume_info->snapshot_time) {
Steve French8b217fe2016-11-11 22:36:20 -06002996 if (ses->server->vals->protocol_id == 0) {
2997 cifs_dbg(VFS,
2998 "Use SMB2 or later for snapshot mount option\n");
2999 rc = -EOPNOTSUPP;
3000 goto out_fail;
3001 } else
3002 tcon->snapshot_time = volume_info->snapshot_time;
Steve French8b217fe2016-11-11 22:36:20 -06003003 }
3004
Jeff Laytond00c28d2010-04-24 07:57:44 -04003005 tcon->ses = ses;
3006 if (volume_info->password) {
3007 tcon->password = kstrdup(volume_info->password, GFP_KERNEL);
3008 if (!tcon->password) {
3009 rc = -ENOMEM;
3010 goto out_fail;
3011 }
3012 }
3013
Steve French23657ad2018-04-22 15:14:58 -05003014 if (volume_info->seal) {
3015 if (ses->server->vals->protocol_id == 0) {
3016 cifs_dbg(VFS,
3017 "SMB3 or later required for encryption\n");
3018 rc = -EOPNOTSUPP;
3019 goto out_fail;
3020 } else if (tcon->ses->server->capabilities &
3021 SMB2_GLOBAL_CAP_ENCRYPTION)
3022 tcon->seal = true;
3023 else {
3024 cifs_dbg(VFS, "Encryption is not supported on share\n");
3025 rc = -EOPNOTSUPP;
3026 goto out_fail;
3027 }
3028 }
3029
Steve Frenchb3266142018-05-20 23:41:10 -05003030#ifdef CONFIG_CIFS_SMB311
3031 if ((volume_info->linux_ext) && (ses->server->posix_ext_supported)) {
3032 if (ses->server->vals->protocol_id == SMB311_PROT_ID)
3033 tcon->posix_extensions = true;
3034 }
3035#endif /* 311 */
3036
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003037 /*
3038 * BB Do we need to wrap session_mutex around this TCon call and Unix
3039 * SetFS as we do on SessSetup and reconnect?
3040 */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003041 xid = get_xid();
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003042 rc = ses->server->ops->tree_connect(xid, ses, volume_info->UNC, tcon,
3043 volume_info->local_nls);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003044 free_xid(xid);
Joe Perchesf96637b2013-05-04 22:12:25 -05003045 cifs_dbg(FYI, "Tcon rc = %d\n", rc);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003046 if (rc)
3047 goto out_fail;
3048
3049 if (volume_info->nodfs) {
3050 tcon->Flags &= ~SMB_SHARE_IS_IN_DFS;
Joe Perchesf96637b2013-05-04 22:12:25 -05003051 cifs_dbg(FYI, "DFS disabled (%d)\n", tcon->Flags);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003052 }
Steve Frenchb618f002015-11-03 09:15:03 -06003053 tcon->use_persistent = false;
3054 /* check if SMB2 or later, CIFS does not support persistent handles */
3055 if (volume_info->persistent) {
3056 if (ses->server->vals->protocol_id == 0) {
3057 cifs_dbg(VFS,
3058 "SMB3 or later required for persistent handles\n");
3059 rc = -EOPNOTSUPP;
3060 goto out_fail;
3061 } else if (ses->server->capabilities &
3062 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
3063 tcon->use_persistent = true;
3064 else /* persistent handles requested but not supported */ {
3065 cifs_dbg(VFS,
3066 "Persistent handles not supported on share\n");
3067 rc = -EOPNOTSUPP;
3068 goto out_fail;
3069 }
3070 } else if ((tcon->capabilities & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY)
3071 && (ses->server->capabilities & SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
3072 && (volume_info->nopersistent == false)) {
3073 cifs_dbg(FYI, "enabling persistent handles\n");
3074 tcon->use_persistent = true;
Steve French592fafe2015-11-03 10:08:53 -06003075 } else if (volume_info->resilient) {
3076 if (ses->server->vals->protocol_id == 0) {
3077 cifs_dbg(VFS,
3078 "SMB2.1 or later required for resilient handles\n");
3079 rc = -EOPNOTSUPP;
3080 goto out_fail;
3081 }
3082 tcon->use_resilient = true;
Steve Frenchb618f002015-11-03 09:15:03 -06003083 }
3084
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003085 /*
3086 * We can have only one retry value for a connection to a share so for
3087 * resources mounted more than once to the same server share the last
3088 * value passed in for the retry flag is used.
3089 */
Jeff Laytond00c28d2010-04-24 07:57:44 -04003090 tcon->retry = volume_info->retry;
3091 tcon->nocase = volume_info->nocase;
Steve French3d4ef9a2018-04-25 22:19:09 -05003092 tcon->nohandlecache = volume_info->nohandlecache;
Jeff Laytond00c28d2010-04-24 07:57:44 -04003093 tcon->local_lease = volume_info->local_lease;
Pavel Shilovsky233839b2012-09-19 06:22:45 -07003094 INIT_LIST_HEAD(&tcon->pending_opens);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003095
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303096 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003097 list_add(&tcon->tcon_list, &ses->tcon_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303098 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003099
Suresh Jayaramand03382c2010-07-05 18:12:27 +05303100 cifs_fscache_get_super_cookie(tcon);
3101
Jeff Laytond00c28d2010-04-24 07:57:44 -04003102 return tcon;
3103
3104out_fail:
3105 tconInfoFree(tcon);
3106 return ERR_PTR(rc);
3107}
3108
Jeff Layton9d002df2010-10-06 19:51:11 -04003109void
3110cifs_put_tlink(struct tcon_link *tlink)
3111{
3112 if (!tlink || IS_ERR(tlink))
3113 return;
3114
3115 if (!atomic_dec_and_test(&tlink->tl_count) ||
3116 test_bit(TCON_LINK_IN_TREE, &tlink->tl_flags)) {
3117 tlink->tl_time = jiffies;
3118 return;
3119 }
3120
3121 if (!IS_ERR(tlink_tcon(tlink)))
3122 cifs_put_tcon(tlink_tcon(tlink));
3123 kfree(tlink);
3124 return;
3125}
Jeff Laytond00c28d2010-04-24 07:57:44 -04003126
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003127static int
3128compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data)
3129{
3130 struct cifs_sb_info *old = CIFS_SB(sb);
3131 struct cifs_sb_info *new = mnt_data->cifs_sb;
3132
3133 if ((sb->s_flags & CIFS_MS_MASK) != (mnt_data->flags & CIFS_MS_MASK))
3134 return 0;
3135
3136 if ((old->mnt_cifs_flags & CIFS_MOUNT_MASK) !=
3137 (new->mnt_cifs_flags & CIFS_MOUNT_MASK))
3138 return 0;
3139
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003140 /*
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003141 * We want to share sb only if we don't specify an r/wsize or
3142 * specified r/wsize is greater than or equal to existing one.
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003143 */
3144 if (new->wsize && new->wsize < old->wsize)
3145 return 0;
3146
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003147 if (new->rsize && new->rsize < old->rsize)
3148 return 0;
3149
Eric W. Biederman1f682332013-02-06 01:20:20 -08003150 if (!uid_eq(old->mnt_uid, new->mnt_uid) || !gid_eq(old->mnt_gid, new->mnt_gid))
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003151 return 0;
3152
3153 if (old->mnt_file_mode != new->mnt_file_mode ||
3154 old->mnt_dir_mode != new->mnt_dir_mode)
3155 return 0;
3156
3157 if (strcmp(old->local_nls->charset, new->local_nls->charset))
3158 return 0;
3159
3160 if (old->actimeo != new->actimeo)
3161 return 0;
3162
3163 return 1;
3164}
3165
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003166static int
3167match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data)
3168{
3169 struct cifs_sb_info *old = CIFS_SB(sb);
3170 struct cifs_sb_info *new = mnt_data->cifs_sb;
Sachin Prabhucd8c4292017-04-26 14:05:46 +01003171 bool old_set = old->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH;
3172 bool new_set = new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH;
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003173
Sachin Prabhucd8c4292017-04-26 14:05:46 +01003174 if (old_set && new_set && !strcmp(new->prepath, old->prepath))
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003175 return 1;
Sachin Prabhucd8c4292017-04-26 14:05:46 +01003176 else if (!old_set && !new_set)
3177 return 1;
3178
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003179 return 0;
3180}
3181
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003182int
3183cifs_match_super(struct super_block *sb, void *data)
3184{
3185 struct cifs_mnt_data *mnt_data = (struct cifs_mnt_data *)data;
3186 struct smb_vol *volume_info;
3187 struct cifs_sb_info *cifs_sb;
3188 struct TCP_Server_Info *tcp_srv;
Steve French96daf2b2011-05-27 04:34:02 +00003189 struct cifs_ses *ses;
3190 struct cifs_tcon *tcon;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003191 struct tcon_link *tlink;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003192 int rc = 0;
3193
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003194 spin_lock(&cifs_tcp_ses_lock);
3195 cifs_sb = CIFS_SB(sb);
3196 tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
3197 if (IS_ERR(tlink)) {
3198 spin_unlock(&cifs_tcp_ses_lock);
3199 return rc;
3200 }
3201 tcon = tlink_tcon(tlink);
3202 ses = tcon->ses;
3203 tcp_srv = ses->server;
3204
3205 volume_info = mnt_data->vol;
3206
Jeff Layton9fa114f2012-11-26 11:09:57 -05003207 if (!match_server(tcp_srv, volume_info) ||
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003208 !match_session(ses, volume_info) ||
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08003209 !match_tcon(tcon, volume_info) ||
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01003210 !match_prepath(sb, mnt_data)) {
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003211 rc = 0;
3212 goto out;
3213 }
3214
3215 rc = compare_mount_options(sb, mnt_data);
3216out:
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003217 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf484b5d02011-07-11 10:16:34 -04003218 cifs_put_tlink(tlink);
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003219 return rc;
3220}
3221
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222int
Pavel Shilovskyb669f332012-05-27 20:21:53 +04003223get_dfs_path(const unsigned int xid, struct cifs_ses *ses, const char *old_path,
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003224 const struct nls_table *nls_codepage, unsigned int *num_referrals,
3225 struct dfs_info3_param **referrals, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 int rc = 0;
3228
Aurelien Aptelb327a712018-01-24 13:46:10 +01003229 if (!ses->server->ops->get_dfs_refer)
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003230 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003232 *num_referrals = 0;
3233 *referrals = NULL;
3234
Aurelien Aptelb327a712018-01-24 13:46:10 +01003235 rc = ses->server->ops->get_dfs_refer(xid, ses, old_path,
3236 referrals, num_referrals,
3237 nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 return rc;
3239}
3240
Jeff Layton09e50d52008-07-23 10:11:19 -04003241#ifdef CONFIG_DEBUG_LOCK_ALLOC
3242static struct lock_class_key cifs_key[2];
3243static struct lock_class_key cifs_slock_key[2];
3244
3245static inline void
3246cifs_reclassify_socket4(struct socket *sock)
3247{
3248 struct sock *sk = sock->sk;
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02003249 BUG_ON(!sock_allow_reclassification(sk));
Jeff Layton09e50d52008-07-23 10:11:19 -04003250 sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS",
3251 &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]);
3252}
3253
3254static inline void
3255cifs_reclassify_socket6(struct socket *sock)
3256{
3257 struct sock *sk = sock->sk;
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02003258 BUG_ON(!sock_allow_reclassification(sk));
Jeff Layton09e50d52008-07-23 10:11:19 -04003259 sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS",
3260 &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]);
3261}
3262#else
3263static inline void
3264cifs_reclassify_socket4(struct socket *sock)
3265{
3266}
3267
3268static inline void
3269cifs_reclassify_socket6(struct socket *sock)
3270{
3271}
3272#endif
3273
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274/* See RFC1001 section 14 on representation of Netbios names */
Steve French50c2f752007-07-13 00:33:32 +00003275static void rfc1002mangle(char *target, char *source, unsigned int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276{
Steve French50c2f752007-07-13 00:33:32 +00003277 unsigned int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
Steve French50c2f752007-07-13 00:33:32 +00003279 for (i = 0, j = 0; i < (length); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 /* mask a nibble at a time and encode */
3281 target[j] = 'A' + (0x0F & (source[i] >> 4));
3282 target[j+1] = 'A' + (0x0F & source[i]);
Steve French50c2f752007-07-13 00:33:32 +00003283 j += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 }
3285
3286}
3287
Ben Greear3eb9a882010-09-01 17:06:02 -07003288static int
3289bind_socket(struct TCP_Server_Info *server)
3290{
3291 int rc = 0;
3292 if (server->srcaddr.ss_family != AF_UNSPEC) {
3293 /* Bind to the specified local IP address */
3294 struct socket *socket = server->ssocket;
3295 rc = socket->ops->bind(socket,
3296 (struct sockaddr *) &server->srcaddr,
3297 sizeof(server->srcaddr));
3298 if (rc < 0) {
3299 struct sockaddr_in *saddr4;
3300 struct sockaddr_in6 *saddr6;
3301 saddr4 = (struct sockaddr_in *)&server->srcaddr;
3302 saddr6 = (struct sockaddr_in6 *)&server->srcaddr;
3303 if (saddr6->sin6_family == AF_INET6)
Joe Perchesf96637b2013-05-04 22:12:25 -05003304 cifs_dbg(VFS, "Failed to bind to: %pI6c, error: %d\n",
3305 &saddr6->sin6_addr, rc);
Ben Greear3eb9a882010-09-01 17:06:02 -07003306 else
Joe Perchesf96637b2013-05-04 22:12:25 -05003307 cifs_dbg(VFS, "Failed to bind to: %pI4, error: %d\n",
3308 &saddr4->sin_addr.s_addr, rc);
Ben Greear3eb9a882010-09-01 17:06:02 -07003309 }
3310 }
3311 return rc;
3312}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313
3314static int
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003315ip_rfc1001_connect(struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316{
3317 int rc = 0;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003318 /*
3319 * some servers require RFC1001 sessinit before sending
3320 * negprot - BB check reconnection in case where second
3321 * sessinit is sent but no second negprot
3322 */
3323 struct rfc1002_session_packet *ses_init_buf;
3324 struct smb_hdr *smb_buf;
3325 ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet),
3326 GFP_KERNEL);
3327 if (ses_init_buf) {
3328 ses_init_buf->trailer.session_req.called_len = 32;
3329
Colin Ian King997152f2016-01-25 16:25:54 +00003330 if (server->server_RFC1001_name[0] != 0)
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003331 rfc1002mangle(ses_init_buf->trailer.
3332 session_req.called_name,
3333 server->server_RFC1001_name,
3334 RFC1001_NAME_LEN_WITH_NULL);
3335 else
3336 rfc1002mangle(ses_init_buf->trailer.
3337 session_req.called_name,
3338 DEFAULT_CIFS_CALLED_NAME,
3339 RFC1001_NAME_LEN_WITH_NULL);
3340
3341 ses_init_buf->trailer.session_req.calling_len = 32;
3342
3343 /*
3344 * calling name ends in null (byte 16) from old smb
3345 * convention.
3346 */
Steve Frenchc85c35f2015-03-27 01:15:02 -05003347 if (server->workstation_RFC1001_name[0] != 0)
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003348 rfc1002mangle(ses_init_buf->trailer.
3349 session_req.calling_name,
3350 server->workstation_RFC1001_name,
3351 RFC1001_NAME_LEN_WITH_NULL);
3352 else
3353 rfc1002mangle(ses_init_buf->trailer.
3354 session_req.calling_name,
3355 "LINUX_CIFS_CLNT",
3356 RFC1001_NAME_LEN_WITH_NULL);
3357
3358 ses_init_buf->trailer.session_req.scope1 = 0;
3359 ses_init_buf->trailer.session_req.scope2 = 0;
3360 smb_buf = (struct smb_hdr *)ses_init_buf;
3361
3362 /* sizeof RFC1002_SESSION_REQUEST with no scope */
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003363 smb_buf->smb_buf_length = cpu_to_be32(0x81000044);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003364 rc = smb_send(server, smb_buf, 0x44);
3365 kfree(ses_init_buf);
3366 /*
3367 * RFC1001 layer in at least one server
3368 * requires very short break before negprot
3369 * presumably because not expecting negprot
3370 * to follow so fast. This is a simple
3371 * solution that works without
3372 * complicating the code and causes no
3373 * significant slowing down on mount
3374 * for everyone else
3375 */
3376 usleep_range(1000, 2000);
3377 }
3378 /*
3379 * else the negprot may still work without this
3380 * even though malloc failed
3381 */
3382
3383 return rc;
3384}
3385
3386static int
3387generic_ip_connect(struct TCP_Server_Info *server)
3388{
3389 int rc = 0;
Steve French6da97912011-03-13 18:55:55 +00003390 __be16 sport;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003391 int slen, sfamily;
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003392 struct socket *socket = server->ssocket;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003393 struct sockaddr *saddr;
3394
3395 saddr = (struct sockaddr *) &server->dstaddr;
3396
3397 if (server->dstaddr.ss_family == AF_INET6) {
3398 sport = ((struct sockaddr_in6 *) saddr)->sin6_port;
3399 slen = sizeof(struct sockaddr_in6);
3400 sfamily = AF_INET6;
3401 } else {
3402 sport = ((struct sockaddr_in *) saddr)->sin_port;
3403 slen = sizeof(struct sockaddr_in);
3404 sfamily = AF_INET;
3405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003407 if (socket == NULL) {
Rob Landleyf1d0c992011-01-22 15:44:05 -06003408 rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM,
3409 IPPROTO_TCP, &socket, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003411 cifs_dbg(VFS, "Error %d creating socket\n", rc);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003412 server->ssocket = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 }
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003415
3416 /* BB other socket options to set KEEPALIVE, NODELAY? */
Joe Perchesf96637b2013-05-04 22:12:25 -05003417 cifs_dbg(FYI, "Socket created\n");
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003418 server->ssocket = socket;
3419 socket->sk->sk_allocation = GFP_NOFS;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003420 if (sfamily == AF_INET6)
3421 cifs_reclassify_socket6(socket);
3422 else
3423 cifs_reclassify_socket4(socket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 }
3425
Ben Greear3eb9a882010-09-01 17:06:02 -07003426 rc = bind_socket(server);
3427 if (rc < 0)
3428 return rc;
3429
Jeff Laytond5c56052008-12-01 18:42:33 -05003430 /*
3431 * Eventually check for other socket options to change from
3432 * the default. sock_setsockopt not used because it expects
3433 * user space buffer
3434 */
3435 socket->sk->sk_rcvtimeo = 7 * HZ;
Steve Frenchda505c32009-01-19 03:49:35 +00003436 socket->sk->sk_sndtimeo = 5 * HZ;
Steve French6a5fa2362010-01-01 01:28:43 +00003437
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003438 /* make the bufsizes depend on wsize/rsize and max requests */
3439 if (server->noautotune) {
3440 if (socket->sk->sk_sndbuf < (200 * 1024))
3441 socket->sk->sk_sndbuf = 200 * 1024;
3442 if (socket->sk->sk_rcvbuf < (140 * 1024))
3443 socket->sk->sk_rcvbuf = 140 * 1024;
3444 }
3445
Steve French6a5fa2362010-01-01 01:28:43 +00003446 if (server->tcp_nodelay) {
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003447 int val = 1;
Steve French6a5fa2362010-01-01 01:28:43 +00003448 rc = kernel_setsockopt(socket, SOL_TCP, TCP_NODELAY,
3449 (char *)&val, sizeof(val));
3450 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05003451 cifs_dbg(FYI, "set TCP_NODELAY socket option error %d\n",
3452 rc);
Steve French6a5fa2362010-01-01 01:28:43 +00003453 }
3454
Joe Perchesf96637b2013-05-04 22:12:25 -05003455 cifs_dbg(FYI, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx\n",
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003456 socket->sk->sk_sndbuf,
3457 socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo);
3458
Jeff Laytonee1b3ea2011-06-21 07:18:26 -04003459 rc = socket->ops->connect(socket, saddr, slen, 0);
3460 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003461 cifs_dbg(FYI, "Error %d connecting to server\n", rc);
Jeff Laytonee1b3ea2011-06-21 07:18:26 -04003462 sock_release(socket);
3463 server->ssocket = NULL;
3464 return rc;
3465 }
3466
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003467 if (sport == htons(RFC1001_PORT))
3468 rc = ip_rfc1001_connect(server);
Steve French50c2f752007-07-13 00:33:32 +00003469
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 return rc;
3471}
3472
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003473static int
3474ip_connect(struct TCP_Server_Info *server)
3475{
Steve French6da97912011-03-13 18:55:55 +00003476 __be16 *sport;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003477 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
3478 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
3479
3480 if (server->dstaddr.ss_family == AF_INET6)
3481 sport = &addr6->sin6_port;
3482 else
3483 sport = &addr->sin_port;
3484
3485 if (*sport == 0) {
3486 int rc;
3487
3488 /* try with 445 port at first */
3489 *sport = htons(CIFS_PORT);
3490
3491 rc = generic_ip_connect(server);
3492 if (rc >= 0)
3493 return rc;
3494
3495 /* if it failed, try with 139 port */
3496 *sport = htons(RFC1001_PORT);
3497 }
3498
3499 return generic_ip_connect(server);
3500}
3501
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003502void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon,
Al Viro2c6292a2011-06-17 09:05:48 -04003503 struct cifs_sb_info *cifs_sb, struct smb_vol *vol_info)
Steve French8af18972007-02-14 04:42:51 +00003504{
3505 /* if we are reconnecting then should we check to see if
3506 * any requested capabilities changed locally e.g. via
3507 * remount but we can not do much about it here
3508 * if they have (even if we could detect it by the following)
3509 * Perhaps we could add a backpointer to array of sb from tcon
3510 * or if we change to make all sb to same share the same
3511 * sb as NFS - then we only have one backpointer to sb.
3512 * What if we wanted to mount the server share twice once with
3513 * and once without posixacls or posix paths? */
3514 __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French50c2f752007-07-13 00:33:32 +00003515
Steve Frenchc18c8422007-07-18 23:21:09 +00003516 if (vol_info && vol_info->no_linux_ext) {
3517 tcon->fsUnixInfo.Capability = 0;
3518 tcon->unix_ext = 0; /* Unix Extensions disabled */
Joe Perchesf96637b2013-05-04 22:12:25 -05003519 cifs_dbg(FYI, "Linux protocol extensions disabled\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00003520 return;
3521 } else if (vol_info)
3522 tcon->unix_ext = 1; /* Unix Extensions supported */
3523
3524 if (tcon->unix_ext == 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003525 cifs_dbg(FYI, "Unix extensions disabled so not set on reconnect\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00003526 return;
3527 }
Steve French50c2f752007-07-13 00:33:32 +00003528
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003529 if (!CIFSSMBQFSUnixInfo(xid, tcon)) {
Steve French8af18972007-02-14 04:42:51 +00003530 __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
Joe Perchesf96637b2013-05-04 22:12:25 -05003531 cifs_dbg(FYI, "unix caps which server supports %lld\n", cap);
Steve French8af18972007-02-14 04:42:51 +00003532 /* check for reconnect case in which we do not
3533 want to change the mount behavior if we can avoid it */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003534 if (vol_info == NULL) {
Steve French50c2f752007-07-13 00:33:32 +00003535 /* turn off POSIX ACL and PATHNAMES if not set
Steve French8af18972007-02-14 04:42:51 +00003536 originally at mount time */
3537 if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0)
3538 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
Igor Mammedov11b6d642008-02-15 19:06:04 +00003539 if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
3540 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003541 cifs_dbg(VFS, "POSIXPATH support change\n");
Steve French8af18972007-02-14 04:42:51 +00003542 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
Igor Mammedov11b6d642008-02-15 19:06:04 +00003543 } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003544 cifs_dbg(VFS, "possible reconnect error\n");
3545 cifs_dbg(VFS, "server disabled POSIX path support\n");
Igor Mammedov11b6d642008-02-15 19:06:04 +00003546 }
Steve French8af18972007-02-14 04:42:51 +00003547 }
Steve French50c2f752007-07-13 00:33:32 +00003548
Steve French6848b732011-05-26 18:38:54 +00003549 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003550 cifs_dbg(VFS, "per-share encryption not supported yet\n");
Steve French6848b732011-05-26 18:38:54 +00003551
Steve French8af18972007-02-14 04:42:51 +00003552 cap &= CIFS_UNIX_CAP_MASK;
Steve French75865f8c2007-06-24 18:30:48 +00003553 if (vol_info && vol_info->no_psx_acl)
Steve French8af18972007-02-14 04:42:51 +00003554 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
Steve French75865f8c2007-06-24 18:30:48 +00003555 else if (CIFS_UNIX_POSIX_ACL_CAP & cap) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003556 cifs_dbg(FYI, "negotiated posix acl support\n");
Al Viro2c6292a2011-06-17 09:05:48 -04003557 if (cifs_sb)
3558 cifs_sb->mnt_cifs_flags |=
3559 CIFS_MOUNT_POSIXACL;
Steve French8af18972007-02-14 04:42:51 +00003560 }
3561
Steve French75865f8c2007-06-24 18:30:48 +00003562 if (vol_info && vol_info->posix_paths == 0)
Steve French8af18972007-02-14 04:42:51 +00003563 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
Steve French75865f8c2007-06-24 18:30:48 +00003564 else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003565 cifs_dbg(FYI, "negotiate posix pathnames\n");
Al Viro2c6292a2011-06-17 09:05:48 -04003566 if (cifs_sb)
3567 cifs_sb->mnt_cifs_flags |=
Steve French8af18972007-02-14 04:42:51 +00003568 CIFS_MOUNT_POSIX_PATHS;
3569 }
Steve French50c2f752007-07-13 00:33:32 +00003570
Joe Perchesf96637b2013-05-04 22:12:25 -05003571 cifs_dbg(FYI, "Negotiate caps 0x%x\n", (int)cap);
Steve French8af18972007-02-14 04:42:51 +00003572#ifdef CONFIG_CIFS_DEBUG2
Steve French75865f8c2007-06-24 18:30:48 +00003573 if (cap & CIFS_UNIX_FCNTL_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003574 cifs_dbg(FYI, "FCNTL cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003575 if (cap & CIFS_UNIX_EXTATTR_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003576 cifs_dbg(FYI, "EXTATTR cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003577 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003578 cifs_dbg(FYI, "POSIX path cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003579 if (cap & CIFS_UNIX_XATTR_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003580 cifs_dbg(FYI, "XATTR cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003581 if (cap & CIFS_UNIX_POSIX_ACL_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003582 cifs_dbg(FYI, "POSIX ACL cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003583 if (cap & CIFS_UNIX_LARGE_READ_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003584 cifs_dbg(FYI, "very large read cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003585 if (cap & CIFS_UNIX_LARGE_WRITE_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003586 cifs_dbg(FYI, "very large write cap\n");
Steve French6848b732011-05-26 18:38:54 +00003587 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003588 cifs_dbg(FYI, "transport encryption cap\n");
Steve French6848b732011-05-26 18:38:54 +00003589 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003590 cifs_dbg(FYI, "mandatory transport encryption cap\n");
Steve French8af18972007-02-14 04:42:51 +00003591#endif /* CIFS_DEBUG2 */
3592 if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) {
Steve French442aa312007-09-24 20:25:46 +00003593 if (vol_info == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003594 cifs_dbg(FYI, "resetting capabilities failed\n");
Steve French442aa312007-09-24 20:25:46 +00003595 } else
Joe Perchesf96637b2013-05-04 22:12:25 -05003596 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 +00003597
Steve French8af18972007-02-14 04:42:51 +00003598 }
3599 }
3600}
3601
Sachin Prabhu4214ebf2016-07-29 22:38:19 +01003602int cifs_setup_cifs_sb(struct smb_vol *pvolume_info,
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003603 struct cifs_sb_info *cifs_sb)
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -04003604{
Jeff Layton2de970f2010-10-06 19:51:12 -04003605 INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks);
3606
Al Viro2ced6f62011-06-17 09:20:04 -04003607 spin_lock_init(&cifs_sb->tlink_tree_lock);
3608 cifs_sb->tlink_tree = RB_ROOT;
3609
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003610 /*
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003611 * Temporarily set r/wsize for matching superblock. If we end up using
3612 * new sb then client will later negotiate it downward if needed.
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003613 */
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003614 cifs_sb->rsize = pvolume_info->rsize;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003615 cifs_sb->wsize = pvolume_info->wsize;
3616
Steve French3b795212008-11-13 19:45:32 +00003617 cifs_sb->mnt_uid = pvolume_info->linux_uid;
3618 cifs_sb->mnt_gid = pvolume_info->linux_gid;
3619 cifs_sb->mnt_file_mode = pvolume_info->file_mode;
3620 cifs_sb->mnt_dir_mode = pvolume_info->dir_mode;
Joe Perchesf96637b2013-05-04 22:12:25 -05003621 cifs_dbg(FYI, "file mode: 0x%hx dir mode: 0x%hx\n",
3622 cifs_sb->mnt_file_mode, cifs_sb->mnt_dir_mode);
Steve French3b795212008-11-13 19:45:32 +00003623
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05303624 cifs_sb->actimeo = pvolume_info->actimeo;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003625 cifs_sb->local_nls = pvolume_info->local_nls;
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05303626
Steve French3b795212008-11-13 19:45:32 +00003627 if (pvolume_info->noperm)
3628 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_PERM;
3629 if (pvolume_info->setuids)
3630 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SET_UID;
Steve French95932652016-09-23 01:36:34 -05003631 if (pvolume_info->setuidfromacl)
3632 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UID_FROM_ACL;
Steve French3b795212008-11-13 19:45:32 +00003633 if (pvolume_info->server_ino)
3634 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SERVER_INUM;
3635 if (pvolume_info->remap)
Steve French2baa2682014-09-27 02:19:01 -05003636 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SFM_CHR;
3637 if (pvolume_info->sfu_remap)
Steve French3b795212008-11-13 19:45:32 +00003638 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SPECIAL_CHR;
3639 if (pvolume_info->no_xattr)
3640 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_XATTR;
3641 if (pvolume_info->sfu_emul)
3642 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UNX_EMUL;
3643 if (pvolume_info->nobrl)
3644 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_BRL;
Steve French3d4ef9a2018-04-25 22:19:09 -05003645 if (pvolume_info->nohandlecache)
3646 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_HANDLE_CACHE;
Steve Frenchbe652442009-02-23 15:21:59 +00003647 if (pvolume_info->nostrictsync)
Steve French4717bed2009-02-24 14:44:19 +00003648 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOSSYNC;
Steve French13a6e422008-12-02 17:24:33 +00003649 if (pvolume_info->mand_lock)
3650 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOPOSIXBRL;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00003651 if (pvolume_info->rwpidforward)
3652 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RWPIDFORWARD;
Steve French3b795212008-11-13 19:45:32 +00003653 if (pvolume_info->cifs_acl)
3654 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_ACL;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01003655 if (pvolume_info->backupuid_specified) {
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05003656 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPUID;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01003657 cifs_sb->mnt_backupuid = pvolume_info->backupuid;
3658 }
3659 if (pvolume_info->backupgid_specified) {
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05003660 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPGID;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01003661 cifs_sb->mnt_backupgid = pvolume_info->backupgid;
3662 }
Steve French3b795212008-11-13 19:45:32 +00003663 if (pvolume_info->override_uid)
3664 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_UID;
3665 if (pvolume_info->override_gid)
3666 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_GID;
3667 if (pvolume_info->dynperm)
3668 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DYNPERM;
Suresh Jayaramanfa1df752010-07-05 18:13:36 +05303669 if (pvolume_info->fsc)
3670 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_FSCACHE;
Jeff Layton0eb8a132010-10-06 19:51:12 -04003671 if (pvolume_info->multiuser)
3672 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_MULTIUSER |
3673 CIFS_MOUNT_NO_PERM);
Pavel Shilovskyd39454f2011-01-24 14:16:35 -05003674 if (pvolume_info->strict_io)
3675 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_STRICT_IO;
Steve French3b795212008-11-13 19:45:32 +00003676 if (pvolume_info->direct_io) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003677 cifs_dbg(FYI, "mounting share using direct i/o\n");
Steve French3b795212008-11-13 19:45:32 +00003678 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DIRECT_IO;
3679 }
Stefan Metzmacher736a3322010-07-30 14:56:00 +02003680 if (pvolume_info->mfsymlinks) {
3681 if (pvolume_info->sfu_emul) {
Steve Frenchdb8b6312014-09-22 05:13:55 -05003682 /*
3683 * Our SFU ("Services for Unix" emulation does not allow
3684 * creating symlinks but does allow reading existing SFU
3685 * symlinks (it does allow both creating and reading SFU
3686 * style mknod and FIFOs though). When "mfsymlinks" and
3687 * "sfu" are both enabled at the same time, it allows
3688 * reading both types of symlinks, but will only create
3689 * them with mfsymlinks format. This allows better
3690 * Apple compatibility (probably better for Samba too)
3691 * while still recognizing old Windows style symlinks.
3692 */
3693 cifs_dbg(VFS, "mount options mfsymlinks and sfu both enabled\n");
Stefan Metzmacher736a3322010-07-30 14:56:00 +02003694 }
Steve Frenchdb8b6312014-09-22 05:13:55 -05003695 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MF_SYMLINKS;
Stefan Metzmacher736a3322010-07-30 14:56:00 +02003696 }
Steve French3b795212008-11-13 19:45:32 +00003697
3698 if ((pvolume_info->cifs_acl) && (pvolume_info->dynperm))
Joe Perchesf96637b2013-05-04 22:12:25 -05003699 cifs_dbg(VFS, "mount option dynperm ignored if cifsacl mount option supported\n");
Sachin Prabhu4214ebf2016-07-29 22:38:19 +01003700
3701 if (pvolume_info->prepath) {
3702 cifs_sb->prepath = kstrdup(pvolume_info->prepath, GFP_KERNEL);
3703 if (cifs_sb->prepath == NULL)
3704 return -ENOMEM;
3705 }
3706
3707 return 0;
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -04003708}
3709
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003710static void
3711cleanup_volume_info_contents(struct smb_vol *volume_info)
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003712{
Sean Finneyb9468452011-04-11 13:19:32 +00003713 kfree(volume_info->username);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003714 kzfree(volume_info->password);
Jesper Juhl95c75452011-08-27 18:58:34 +02003715 kfree(volume_info->UNC);
Sean Finneyb9468452011-04-11 13:19:32 +00003716 kfree(volume_info->domainname);
3717 kfree(volume_info->iocharset);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003718 kfree(volume_info->prepath);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003719}
3720
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003721void
3722cifs_cleanup_volume_info(struct smb_vol *volume_info)
3723{
3724 if (!volume_info)
3725 return;
3726 cleanup_volume_info_contents(volume_info);
3727 kfree(volume_info);
3728}
3729
3730
Steve French2d6d5892009-04-09 00:36:44 +00003731#ifdef CONFIG_CIFS_DFS_UPCALL
Steve French6d3ea7e2012-11-28 22:34:41 -06003732/*
3733 * cifs_build_path_to_root returns full path to root when we do not have an
3734 * exiting connection (tcon)
3735 */
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003736static char *
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003737build_unc_path_to_root(const struct smb_vol *vol,
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003738 const struct cifs_sb_info *cifs_sb)
3739{
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003740 char *full_path, *pos;
Jeff Layton839db3d2012-12-10 06:10:45 -05003741 unsigned int pplen = vol->prepath ? strlen(vol->prepath) + 1 : 0;
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003742 unsigned int unc_len = strnlen(vol->UNC, MAX_TREE_SIZE + 1);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003743
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003744 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003745 if (full_path == NULL)
3746 return ERR_PTR(-ENOMEM);
3747
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003748 strncpy(full_path, vol->UNC, unc_len);
3749 pos = full_path + unc_len;
3750
3751 if (pplen) {
Jeff Layton1fc29ba2013-05-31 10:00:18 -04003752 *pos = CIFS_DIR_SEP(cifs_sb);
3753 strncpy(pos + 1, vol->prepath, pplen);
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003754 pos += pplen;
3755 }
3756
3757 *pos = '\0'; /* add trailing null */
Steve Frenchf87d39d2011-05-27 03:50:55 +00003758 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
Joe Perchesf96637b2013-05-04 22:12:25 -05003759 cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003760 return full_path;
3761}
Sean Finneydd613942011-04-11 13:19:30 +00003762
3763/*
3764 * Perform a dfs referral query for a share and (optionally) prefix
3765 *
Sean Finney046462a2011-04-11 13:19:33 +00003766 * If a referral is found, cifs_sb->mountdata will be (re-)allocated
3767 * to a string containing updated options for the submount. Otherwise it
3768 * will be left untouched.
Sean Finneydd613942011-04-11 13:19:30 +00003769 *
3770 * Returns the rc from get_dfs_path to the caller, which can be used to
3771 * determine whether there were referrals.
3772 */
3773static int
Pavel Shilovskyb669f332012-05-27 20:21:53 +04003774expand_dfs_referral(const unsigned int xid, struct cifs_ses *ses,
Sean Finneydd613942011-04-11 13:19:30 +00003775 struct smb_vol *volume_info, struct cifs_sb_info *cifs_sb,
Sean Finney046462a2011-04-11 13:19:33 +00003776 int check_prefix)
Sean Finneydd613942011-04-11 13:19:30 +00003777{
3778 int rc;
3779 unsigned int num_referrals = 0;
3780 struct dfs_info3_param *referrals = NULL;
3781 char *full_path = NULL, *ref_path = NULL, *mdata = NULL;
3782
3783 full_path = build_unc_path_to_root(volume_info, cifs_sb);
3784 if (IS_ERR(full_path))
3785 return PTR_ERR(full_path);
3786
3787 /* For DFS paths, skip the first '\' of the UNC */
3788 ref_path = check_prefix ? full_path + 1 : volume_info->UNC + 1;
3789
Pavel Shilovskyb669f332012-05-27 20:21:53 +04003790 rc = get_dfs_path(xid, ses, ref_path, cifs_sb->local_nls,
Steve French2baa2682014-09-27 02:19:01 -05003791 &num_referrals, &referrals, cifs_remap(cifs_sb));
Sean Finneydd613942011-04-11 13:19:30 +00003792
3793 if (!rc && num_referrals > 0) {
3794 char *fake_devname = NULL;
3795
3796 mdata = cifs_compose_mount_options(cifs_sb->mountdata,
3797 full_path + 1, referrals,
3798 &fake_devname);
3799
3800 free_dfs_info_array(referrals, num_referrals);
Sean Finney046462a2011-04-11 13:19:33 +00003801
Sean Finneydd613942011-04-11 13:19:30 +00003802 if (IS_ERR(mdata)) {
3803 rc = PTR_ERR(mdata);
3804 mdata = NULL;
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003805 } else {
3806 cleanup_volume_info_contents(volume_info);
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003807 rc = cifs_setup_volume_info(volume_info, mdata,
Steve Frenchc7c137b2018-06-06 17:59:29 -05003808 fake_devname, false);
Sean Finneydd613942011-04-11 13:19:30 +00003809 }
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003810 kfree(fake_devname);
3811 kfree(cifs_sb->mountdata);
Sean Finney046462a2011-04-11 13:19:33 +00003812 cifs_sb->mountdata = mdata;
Sean Finneydd613942011-04-11 13:19:30 +00003813 }
3814 kfree(full_path);
3815 return rc;
3816}
Steve French2d6d5892009-04-09 00:36:44 +00003817#endif
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003818
Jeff Layton04db79b2011-07-06 08:10:38 -04003819static int
3820cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data,
Steve Frenchc7c137b2018-06-06 17:59:29 -05003821 const char *devname, bool is_smb3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822{
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003823 int rc = 0;
Sean Finneydd613942011-04-11 13:19:30 +00003824
Steve Frenchc7c137b2018-06-06 17:59:29 -05003825 if (cifs_parse_mount_options(mount_data, devname, volume_info, is_smb3))
Jeff Layton04db79b2011-07-06 08:10:38 -04003826 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827
Jeff Layton7586b762008-12-01 18:41:49 -05003828 if (volume_info->nullauth) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003829 cifs_dbg(FYI, "Anonymous login\n");
Jeff Layton04febab2012-01-17 16:09:15 -05003830 kfree(volume_info->username);
3831 volume_info->username = NULL;
Jeff Layton7586b762008-12-01 18:41:49 -05003832 } else if (volume_info->username) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 /* BB fixme parse for domain name here */
Joe Perchesf96637b2013-05-04 22:12:25 -05003834 cifs_dbg(FYI, "Username: %s\n", volume_info->username);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -05003836 cifs_dbg(VFS, "No username specified\n");
Steve French50c2f752007-07-13 00:33:32 +00003837 /* In userspace mount helper we can get user name from alternate
3838 locations such as env variables and files on disk */
Jeff Layton04db79b2011-07-06 08:10:38 -04003839 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 }
3841
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 /* this is needed for ASCII cp to Unicode converts */
Jeff Layton7586b762008-12-01 18:41:49 -05003843 if (volume_info->iocharset == NULL) {
Jeff Laytona5fc4ce2010-04-24 07:57:42 -04003844 /* load_nls_default cannot return null */
3845 volume_info->local_nls = load_nls_default();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 } else {
Jeff Laytona5fc4ce2010-04-24 07:57:42 -04003847 volume_info->local_nls = load_nls(volume_info->iocharset);
3848 if (volume_info->local_nls == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003849 cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n",
Joe Perchesb6b38f72010-04-21 03:50:45 +00003850 volume_info->iocharset);
Jeff Layton04db79b2011-07-06 08:10:38 -04003851 return -ELIBACC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 }
3853 }
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003854
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003855 return rc;
Jeff Layton04db79b2011-07-06 08:10:38 -04003856}
3857
3858struct smb_vol *
Steve Frenchc7c137b2018-06-06 17:59:29 -05003859cifs_get_volume_info(char *mount_data, const char *devname, bool is_smb3)
Jeff Layton04db79b2011-07-06 08:10:38 -04003860{
3861 int rc;
3862 struct smb_vol *volume_info;
3863
Jeff Layton6ee95422012-11-26 11:09:57 -05003864 volume_info = kmalloc(sizeof(struct smb_vol), GFP_KERNEL);
Jeff Layton04db79b2011-07-06 08:10:38 -04003865 if (!volume_info)
3866 return ERR_PTR(-ENOMEM);
3867
Steve Frenchc7c137b2018-06-06 17:59:29 -05003868 rc = cifs_setup_volume_info(volume_info, mount_data, devname, is_smb3);
Jeff Layton04db79b2011-07-06 08:10:38 -04003869 if (rc) {
3870 cifs_cleanup_volume_info(volume_info);
3871 volume_info = ERR_PTR(rc);
3872 }
3873
3874 return volume_info;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003875}
3876
Aurelien Aptela6b50582016-05-25 19:59:09 +02003877static int
3878cifs_are_all_path_components_accessible(struct TCP_Server_Info *server,
3879 unsigned int xid,
3880 struct cifs_tcon *tcon,
3881 struct cifs_sb_info *cifs_sb,
3882 char *full_path)
3883{
3884 int rc;
3885 char *s;
3886 char sep, tmp;
3887
3888 sep = CIFS_DIR_SEP(cifs_sb);
3889 s = full_path;
3890
3891 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, "");
3892 while (rc == 0) {
3893 /* skip separators */
3894 while (*s == sep)
3895 s++;
3896 if (!*s)
3897 break;
3898 /* next separator */
3899 while (*s && *s != sep)
3900 s++;
3901
3902 /*
3903 * temporarily null-terminate the path at the end of
3904 * the current component
3905 */
3906 tmp = *s;
3907 *s = 0;
3908 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3909 full_path);
3910 *s = tmp;
3911 }
3912 return rc;
3913}
3914
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003915int
Al Viro2c6292a2011-06-17 09:05:48 -04003916cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *volume_info)
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003917{
Jeff Layton1daaae82012-03-21 06:30:40 -04003918 int rc;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003919 unsigned int xid;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003920 struct cifs_ses *ses;
Steve French96daf2b2011-05-27 04:34:02 +00003921 struct cifs_tcon *tcon;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003922 struct TCP_Server_Info *server;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003923 char *full_path;
3924 struct tcon_link *tlink;
3925#ifdef CONFIG_CIFS_DFS_UPCALL
3926 int referral_walks_count = 0;
Jeff Layton20547492011-07-09 12:21:07 -04003927#endif
Al Virodd854462011-06-17 08:24:42 -04003928
Jeff Layton20547492011-07-09 12:21:07 -04003929#ifdef CONFIG_CIFS_DFS_UPCALL
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003930try_mount_again:
3931 /* cleanup activities if we're chasing a referral */
3932 if (referral_walks_count) {
3933 if (tcon)
3934 cifs_put_tcon(tcon);
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003935 else if (ses)
3936 cifs_put_smb_ses(ses);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003937
Sachin Prabhu1dfd18d2015-06-16 16:36:17 +01003938 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_POSIX_PATHS;
3939
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003940 free_xid(xid);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003941 }
3942#endif
Jeff Layton1daaae82012-03-21 06:30:40 -04003943 rc = 0;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003944 tcon = NULL;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003945 ses = NULL;
3946 server = NULL;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003947 full_path = NULL;
3948 tlink = NULL;
3949
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003950 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
Jeff Layton63c038c2008-12-01 18:41:46 -05003952 /* get a reference to a tcp session */
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003953 server = cifs_get_tcp_session(volume_info);
3954 if (IS_ERR(server)) {
3955 rc = PTR_ERR(server);
Jeff Layton63c038c2008-12-01 18:41:46 -05003956 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 }
Steve French141891f2016-09-23 00:44:16 -05003958 if ((volume_info->max_credits < 20) ||
3959 (volume_info->max_credits > 60000))
3960 server->max_credits = SMB2_MAX_CREDITS_AVAILABLE;
3961 else
3962 server->max_credits = volume_info->max_credits;
Jeff Layton36988c72010-04-24 07:57:43 -04003963 /* get a reference to a SMB session */
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003964 ses = cifs_get_smb_ses(server, volume_info);
3965 if (IS_ERR(ses)) {
3966 rc = PTR_ERR(ses);
3967 ses = NULL;
Jeff Layton36988c72010-04-24 07:57:43 -04003968 goto mount_fail_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 }
Steve French50c2f752007-07-13 00:33:32 +00003970
Steve Frenchb618f002015-11-03 09:15:03 -06003971 if ((volume_info->persistent == true) && ((ses->server->capabilities &
3972 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES) == 0)) {
3973 cifs_dbg(VFS, "persistent handles not supported by server\n");
3974 rc = -EOPNOTSUPP;
3975 goto mount_fail_check;
3976 }
Steve French592fafe2015-11-03 10:08:53 -06003977
Jeff Laytond00c28d2010-04-24 07:57:44 -04003978 /* search for existing tcon to this server share */
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003979 tcon = cifs_get_tcon(ses, volume_info);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003980 if (IS_ERR(tcon)) {
3981 rc = PTR_ERR(tcon);
3982 tcon = NULL;
Mark Syms40920c22016-11-29 11:36:46 +00003983 if (rc == -EACCES)
3984 goto mount_fail_check;
3985
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003986 goto remote_path_check;
Jeff Laytond00c28d2010-04-24 07:57:44 -04003987 }
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003988
Steve Frenchce558b02018-05-31 19:16:54 -05003989#ifdef CONFIG_CIFS_SMB311
3990 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
3991 if (tcon->posix_extensions)
3992 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS;
3993#endif /* SMB3.11 */
3994
Steve French6848b732011-05-26 18:38:54 +00003995 /* tell server which Unix caps we support */
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04003996 if (cap_unix(tcon->ses)) {
Steve French6848b732011-05-26 18:38:54 +00003997 /* reset of caps checks mount to see if unix extensions
3998 disabled for just this mount */
Al Viro2c6292a2011-06-17 09:05:48 -04003999 reset_cifs_unix_caps(xid, tcon, cifs_sb, volume_info);
Steve French6848b732011-05-26 18:38:54 +00004000 if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) &&
4001 (le64_to_cpu(tcon->fsUnixInfo.Capability) &
4002 CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)) {
4003 rc = -EACCES;
4004 goto mount_fail_check;
4005 }
4006 } else
4007 tcon->unix_ext = 0; /* server does not support them */
4008
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04004009 /* do not care if a following call succeed - informational */
Aurelien Aptelb327a712018-01-24 13:46:10 +01004010 if (!tcon->pipe && server->ops->qfs_tcon)
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04004011 server->ops->qfs_tcon(xid, tcon);
Steve Frenchd82c2df2008-11-15 00:07:26 +00004012
Pavel Shilovsky24985c52012-09-18 16:20:28 -07004013 cifs_sb->wsize = server->ops->negotiate_wsize(tcon, volume_info);
4014 cifs_sb->rsize = server->ops->negotiate_rsize(tcon, volume_info);
Jeff Laytonf7910cb2011-05-19 16:22:58 -04004015
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004016remote_path_check:
Sean Finneyc1508ca2011-04-11 13:19:31 +00004017#ifdef CONFIG_CIFS_DFS_UPCALL
4018 /*
4019 * Perform an unconditional check for whether there are DFS
4020 * referrals for this path without prefix, to provide support
4021 * for DFS referrals from w2k8 servers which don't seem to respond
4022 * with PATH_NOT_COVERED to requests that include the prefix.
4023 * Chase the referral if found, otherwise continue normally.
4024 */
4025 if (referral_walks_count == 0) {
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04004026 int refrc = expand_dfs_referral(xid, ses, volume_info, cifs_sb,
4027 false);
Sean Finneyc1508ca2011-04-11 13:19:31 +00004028 if (!refrc) {
4029 referral_walks_count++;
4030 goto try_mount_again;
4031 }
4032 }
4033#endif
4034
Steve Frenchf87d39d2011-05-27 03:50:55 +00004035 /* check if a whole path is not remote */
Jeff Layton70945642011-03-14 13:48:08 -04004036 if (!rc && tcon) {
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004037 if (!server->ops->is_path_accessible) {
4038 rc = -ENOSYS;
4039 goto mount_fail_check;
4040 }
Steve French6d3ea7e2012-11-28 22:34:41 -06004041 /*
4042 * cifs_build_path_to_root works only when we have a valid tcon
4043 */
Sachin Prabhu374402a2016-12-15 12:31:19 +05304044 full_path = cifs_build_path_to_root(volume_info, cifs_sb, tcon,
4045 tcon->Flags & SMB_SHARE_IS_IN_DFS);
Igor Mammedove4cce942009-02-10 14:10:26 +03004046 if (full_path == NULL) {
4047 rc = -ENOMEM;
4048 goto mount_fail_check;
4049 }
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004050 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
4051 full_path);
Jeff Layton03ceace2010-12-06 21:07:33 -05004052 if (rc != 0 && rc != -EREMOTE) {
Igor Mammedove4cce942009-02-10 14:10:26 +03004053 kfree(full_path);
4054 goto mount_fail_check;
4055 }
Aurelien Aptela6b50582016-05-25 19:59:09 +02004056
Sachin Prabhud1713562016-09-06 13:22:34 +01004057 if (rc != -EREMOTE) {
4058 rc = cifs_are_all_path_components_accessible(server,
Aurelien Aptela6b50582016-05-25 19:59:09 +02004059 xid, tcon, cifs_sb,
4060 full_path);
Sachin Prabhud1713562016-09-06 13:22:34 +01004061 if (rc != 0) {
4062 cifs_dbg(VFS, "cannot query dirs between root and final path, "
4063 "enabling CIFS_MOUNT_USE_PREFIX_PATH\n");
4064 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
4065 rc = 0;
4066 }
Aurelien Aptela6b50582016-05-25 19:59:09 +02004067 }
Igor Mammedove4cce942009-02-10 14:10:26 +03004068 kfree(full_path);
4069 }
4070
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004071 /* get referral if needed */
4072 if (rc == -EREMOTE) {
Steve Frenchd036f502009-04-03 03:12:08 +00004073#ifdef CONFIG_CIFS_DFS_UPCALL
Igor Mammedov5c2503a2009-04-21 19:31:05 +04004074 if (referral_walks_count > MAX_NESTED_LINKS) {
4075 /*
4076 * BB: when we implement proper loop detection,
4077 * we will remove this check. But now we need it
4078 * to prevent an indefinite loop if 'DFS tree' is
4079 * misconfigured (i.e. has loops).
4080 */
4081 rc = -ELOOP;
4082 goto mount_fail_check;
4083 }
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004084
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04004085 rc = expand_dfs_referral(xid, ses, volume_info, cifs_sb, true);
Jeff Layton7b91e262009-07-23 15:22:30 -04004086
Sean Finneydd613942011-04-11 13:19:30 +00004087 if (!rc) {
Igor Mammedov5c2503a2009-04-21 19:31:05 +04004088 referral_walks_count++;
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004089 goto try_mount_again;
4090 }
Sean Finneydd613942011-04-11 13:19:30 +00004091 goto mount_fail_check;
Steve Frenchd036f502009-04-03 03:12:08 +00004092#else /* No DFS support, return error on mount */
4093 rc = -EOPNOTSUPP;
4094#endif
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004095 }
4096
Jeff Layton9d002df2010-10-06 19:51:11 -04004097 if (rc)
4098 goto mount_fail_check;
4099
4100 /* now, hang the tcon off of the superblock */
4101 tlink = kzalloc(sizeof *tlink, GFP_KERNEL);
4102 if (tlink == NULL) {
4103 rc = -ENOMEM;
4104 goto mount_fail_check;
4105 }
4106
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04004107 tlink->tl_uid = ses->linux_uid;
Jeff Layton9d002df2010-10-06 19:51:11 -04004108 tlink->tl_tcon = tcon;
4109 tlink->tl_time = jiffies;
4110 set_bit(TCON_LINK_MASTER, &tlink->tl_flags);
4111 set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4112
Jeff Layton413e6612010-10-28 13:33:38 -04004113 cifs_sb->master_tlink = tlink;
Jeff Laytonb647c352010-10-28 11:16:44 -04004114 spin_lock(&cifs_sb->tlink_tree_lock);
4115 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
4116 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton413e6612010-10-28 13:33:38 -04004117
Jeff Laytonda472fc2012-03-23 14:40:53 -04004118 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
Jeff Layton2de970f2010-10-06 19:51:12 -04004119 TLINK_IDLE_EXPIRE);
4120
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004121mount_fail_check:
4122 /* on error free sesinfo and tcon struct if needed */
4123 if (rc) {
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004124 /* If find_unc succeeded then rc == 0 so we can not end */
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004125 /* up accidentally freeing someone elses tcon struct */
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004126 if (tcon)
4127 cifs_put_tcon(tcon);
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04004128 else if (ses)
4129 cifs_put_smb_ses(ses);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004130 else
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07004131 cifs_put_tcp_session(server, 0);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04004132 }
4133
Jeff Layton70fe7dc2007-11-16 22:21:07 +00004134out:
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004135 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 return rc;
4137}
4138
Jeff Layton8d1bca32011-06-11 21:17:10 -04004139/*
Aurelien Aptelb327a712018-01-24 13:46:10 +01004140 * Issue a TREE_CONNECT request.
Jeff Layton8d1bca32011-06-11 21:17:10 -04004141 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142int
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04004143CIFSTCon(const unsigned int xid, struct cifs_ses *ses,
Steve French96daf2b2011-05-27 04:34:02 +00004144 const char *tree, struct cifs_tcon *tcon,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 const struct nls_table *nls_codepage)
4146{
4147 struct smb_hdr *smb_buffer;
4148 struct smb_hdr *smb_buffer_response;
4149 TCONX_REQ *pSMB;
4150 TCONX_RSP *pSMBr;
4151 unsigned char *bcc_ptr;
4152 int rc = 0;
Jeff Layton690c5222011-01-20 13:36:51 -05004153 int length;
4154 __u16 bytes_left, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155
4156 if (ses == NULL)
4157 return -EIO;
4158
4159 smb_buffer = cifs_buf_get();
Steve Frenchca43e3b2009-09-01 17:20:50 +00004160 if (smb_buffer == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161 return -ENOMEM;
Steve Frenchca43e3b2009-09-01 17:20:50 +00004162
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163 smb_buffer_response = smb_buffer;
4164
4165 header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX,
4166 NULL /*no tid */ , 4 /*wct */ );
Steve French1982c342005-08-17 12:38:22 -07004167
Pavel Shilovsky88257362012-05-23 14:01:59 +04004168 smb_buffer->Mid = get_next_mid(ses->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 smb_buffer->Uid = ses->Suid;
4170 pSMB = (TCONX_REQ *) smb_buffer;
4171 pSMBr = (TCONX_RSP *) smb_buffer_response;
4172
4173 pSMB->AndXCommand = 0xFF;
4174 pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175 bcc_ptr = &pSMB->Password[0];
Aurelien Aptelb327a712018-01-24 13:46:10 +01004176 if (tcon->pipe || (ses->server->sec_mode & SECMODE_USER)) {
Steve Frencheeac8042006-01-13 21:34:58 -08004177 pSMB->PasswordLength = cpu_to_le16(1); /* minimum */
Steve French7c7b25b2006-06-01 19:20:10 +00004178 *bcc_ptr = 0; /* password is null byte */
Steve Frencheeac8042006-01-13 21:34:58 -08004179 bcc_ptr++; /* skip password */
Steve French7c7b25b2006-06-01 19:20:10 +00004180 /* already aligned so no need to do it below */
Steve Frencheeac8042006-01-13 21:34:58 -08004181 } else {
Shirish Pargaonkar540b2e32011-01-18 22:33:54 -06004182 pSMB->PasswordLength = cpu_to_le16(CIFS_AUTH_RESP_SIZE);
Steve Frencheeac8042006-01-13 21:34:58 -08004183 /* BB FIXME add code to fail this if NTLMv2 or Kerberos
4184 specified as required (when that support is added to
4185 the vfs in the future) as only NTLM or the much
Steve French7c7b25b2006-06-01 19:20:10 +00004186 weaker LANMAN (which we do not send by default) is accepted
Steve Frencheeac8042006-01-13 21:34:58 -08004187 by Samba (not sure whether other servers allow
4188 NTLMv2 password here) */
Steve French7c7b25b2006-06-01 19:20:10 +00004189#ifdef CONFIG_CIFS_WEAK_PW_HASH
Jeff Layton04912d62010-04-24 07:57:45 -04004190 if ((global_secflags & CIFSSEC_MAY_LANMAN) &&
Jeff Layton3f618222013-06-12 19:52:14 -05004191 (ses->sectype == LANMAN))
Shirish Pargaonkard3ba50b2010-10-27 15:20:36 -05004192 calc_lanman_hash(tcon->password, ses->server->cryptkey,
Steve French96daf2b2011-05-27 04:34:02 +00004193 ses->server->sec_mode &
Jeff Layton4e53a3f2008-12-05 20:41:21 -05004194 SECMODE_PW_ENCRYPT ? true : false,
4195 bcc_ptr);
Steve French7c7b25b2006-06-01 19:20:10 +00004196 else
4197#endif /* CIFS_WEAK_PW_HASH */
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -06004198 rc = SMBNTencrypt(tcon->password, ses->server->cryptkey,
Shirish Pargaonkar9ef59922011-10-20 13:21:59 -05004199 bcc_ptr, nls_codepage);
Steve Frenchf3a31a22015-03-26 19:23:20 -05004200 if (rc) {
4201 cifs_dbg(FYI, "%s Can't generate NTLM rsp. Error: %d\n",
4202 __func__, rc);
4203 cifs_buf_release(smb_buffer);
4204 return rc;
4205 }
Steve Frencheeac8042006-01-13 21:34:58 -08004206
Shirish Pargaonkar540b2e32011-01-18 22:33:54 -06004207 bcc_ptr += CIFS_AUTH_RESP_SIZE;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00004208 if (ses->capabilities & CAP_UNICODE) {
Steve French7c7b25b2006-06-01 19:20:10 +00004209 /* must align unicode strings */
4210 *bcc_ptr = 0; /* null byte password */
4211 bcc_ptr++;
4212 }
Steve Frencheeac8042006-01-13 21:34:58 -08004213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
Jeff Layton38d77c52013-05-26 07:01:00 -04004215 if (ses->server->sign)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
4217
4218 if (ses->capabilities & CAP_STATUS32) {
4219 smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS;
4220 }
4221 if (ses->capabilities & CAP_DFS) {
4222 smb_buffer->Flags2 |= SMBFLG2_DFS;
4223 }
4224 if (ses->capabilities & CAP_UNICODE) {
4225 smb_buffer->Flags2 |= SMBFLG2_UNICODE;
4226 length =
Steve Frenchacbbb762012-01-18 22:32:33 -06004227 cifs_strtoUTF16((__le16 *) bcc_ptr, tree,
Steve French50c2f752007-07-13 00:33:32 +00004228 6 /* max utf8 char length in bytes */ *
Steve Frencha878fb22006-05-30 18:04:19 +00004229 (/* server len*/ + 256 /* share len */), nls_codepage);
4230 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 bcc_ptr += 2; /* skip trailing null */
4232 } else { /* ASCII */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 strcpy(bcc_ptr, tree);
4234 bcc_ptr += strlen(tree) + 1;
4235 }
4236 strcpy(bcc_ptr, "?????");
4237 bcc_ptr += strlen("?????");
4238 bcc_ptr += 1;
4239 count = bcc_ptr - &pSMB->Password[0];
Steve Frenchbe8e3b02011-04-29 05:40:20 +00004240 pSMB->hdr.smb_buf_length = cpu_to_be32(be32_to_cpu(
4241 pSMB->hdr.smb_buf_length) + count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 pSMB->ByteCount = cpu_to_le16(count);
4243
Steve French133672e2007-11-13 22:41:37 +00004244 rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length,
Jeff Layton77499812011-01-11 07:24:23 -05004245 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 /* above now done in SendReceive */
Aurelien Aptelb327a712018-01-24 13:46:10 +01004248 if (rc == 0) {
Steve French0e0d2cf2009-05-01 05:27:32 +00004249 bool is_unicode;
4250
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 tcon->tidStatus = CifsGood;
Steve French3b795212008-11-13 19:45:32 +00004252 tcon->need_reconnect = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 tcon->tid = smb_buffer_response->Tid;
4254 bcc_ptr = pByteArea(smb_buffer_response);
Jeff Layton690c5222011-01-20 13:36:51 -05004255 bytes_left = get_bcc(smb_buffer_response);
Jeff Laytoncc20c032009-04-30 07:16:21 -04004256 length = strnlen(bcc_ptr, bytes_left - 2);
Steve French0e0d2cf2009-05-01 05:27:32 +00004257 if (smb_buffer->Flags2 & SMBFLG2_UNICODE)
4258 is_unicode = true;
4259 else
4260 is_unicode = false;
4261
Jeff Laytoncc20c032009-04-30 07:16:21 -04004262
Steve French50c2f752007-07-13 00:33:32 +00004263 /* skip service field (NB: this field is always ASCII) */
Steve French7f8ed422007-09-28 22:28:55 +00004264 if (length == 3) {
4265 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') &&
4266 (bcc_ptr[2] == 'C')) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004267 cifs_dbg(FYI, "IPC connection\n");
Aurelien Aptelb327a712018-01-24 13:46:10 +01004268 tcon->ipc = true;
4269 tcon->pipe = true;
Steve French7f8ed422007-09-28 22:28:55 +00004270 }
4271 } else if (length == 2) {
4272 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) {
4273 /* the most common case */
Joe Perchesf96637b2013-05-04 22:12:25 -05004274 cifs_dbg(FYI, "disk share connection\n");
Steve French7f8ed422007-09-28 22:28:55 +00004275 }
4276 }
Steve French50c2f752007-07-13 00:33:32 +00004277 bcc_ptr += length + 1;
Jeff Laytoncc20c032009-04-30 07:16:21 -04004278 bytes_left -= (length + 1);
Zhao Hongjiang46b51d02013-06-24 01:57:47 -05004279 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
Jeff Laytoncc20c032009-04-30 07:16:21 -04004280
4281 /* mostly informational -- no need to fail on error here */
Jeff Layton90a98b22009-07-20 13:40:52 -04004282 kfree(tcon->nativeFileSystem);
Steve Frenchacbbb762012-01-18 22:32:33 -06004283 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr,
Steve French0e0d2cf2009-05-01 05:27:32 +00004284 bytes_left, is_unicode,
Jeff Laytoncc20c032009-04-30 07:16:21 -04004285 nls_codepage);
4286
Joe Perchesf96637b2013-05-04 22:12:25 -05004287 cifs_dbg(FYI, "nativeFileSystem=%s\n", tcon->nativeFileSystem);
Jeff Laytoncc20c032009-04-30 07:16:21 -04004288
Steve Frenchfb8c4b12007-07-10 01:16:18 +00004289 if ((smb_buffer_response->WordCount == 3) ||
Steve French1a4e15a2006-10-12 21:33:51 +00004290 (smb_buffer_response->WordCount == 7))
4291 /* field is in same location */
Steve French39798772006-05-31 22:40:51 +00004292 tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport);
4293 else
4294 tcon->Flags = 0;
Joe Perchesf96637b2013-05-04 22:12:25 -05004295 cifs_dbg(FYI, "Tcon flags: 0x%x\n", tcon->Flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 }
4297
Mariusz Kozlowskia8a11d32007-10-03 16:41:24 +00004298 cifs_buf_release(smb_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 return rc;
4300}
4301
Al Viro2e32cf52013-10-03 12:53:37 -04004302static void delayed_free(struct rcu_head *p)
4303{
4304 struct cifs_sb_info *sbi = container_of(p, struct cifs_sb_info, rcu);
4305 unload_nls(sbi->local_nls);
4306 kfree(sbi);
4307}
4308
Al Viro2a9b9952011-06-17 09:27:16 -04004309void
4310cifs_umount(struct cifs_sb_info *cifs_sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311{
Jeff Laytonb647c352010-10-28 11:16:44 -04004312 struct rb_root *root = &cifs_sb->tlink_tree;
4313 struct rb_node *node;
4314 struct tcon_link *tlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315
Jeff Layton2de970f2010-10-06 19:51:12 -04004316 cancel_delayed_work_sync(&cifs_sb->prune_tlinks);
4317
Jeff Laytonb647c352010-10-28 11:16:44 -04004318 spin_lock(&cifs_sb->tlink_tree_lock);
4319 while ((node = rb_first(root))) {
4320 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
4321 cifs_get_tlink(tlink);
4322 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4323 rb_erase(node, root);
Steve French50c2f752007-07-13 00:33:32 +00004324
Jeff Laytonb647c352010-10-28 11:16:44 -04004325 spin_unlock(&cifs_sb->tlink_tree_lock);
4326 cifs_put_tlink(tlink);
4327 spin_lock(&cifs_sb->tlink_tree_lock);
4328 }
4329 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004330
Al Virod757d712011-06-17 09:42:43 -04004331 kfree(cifs_sb->mountdata);
Aurelien Aptela6b50582016-05-25 19:59:09 +02004332 kfree(cifs_sb->prepath);
Al Viro2e32cf52013-10-03 12:53:37 -04004333 call_rcu(&cifs_sb->rcu, delayed_free);
Steve French50c2f752007-07-13 00:33:32 +00004334}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
Pavel Shilovsky286170a2012-05-25 10:43:58 +04004336int
4337cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338{
4339 int rc = 0;
Jeff Layton198b5682010-04-24 07:57:48 -04004340 struct TCP_Server_Info *server = ses->server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341
Pavel Shilovsky286170a2012-05-25 10:43:58 +04004342 if (!server->ops->need_neg || !server->ops->negotiate)
4343 return -ENOSYS;
4344
Jeff Layton198b5682010-04-24 07:57:48 -04004345 /* only send once per connect */
Pavel Shilovsky286170a2012-05-25 10:43:58 +04004346 if (!server->ops->need_neg(server))
Jeff Layton198b5682010-04-24 07:57:48 -04004347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348
Pavel Shilovsky45275782012-05-17 17:53:29 +04004349 set_credits(server, 1);
Pavel Shilovsky286170a2012-05-25 10:43:58 +04004350
4351 rc = server->ops->negotiate(xid, ses);
Jeff Layton198b5682010-04-24 07:57:48 -04004352 if (rc == 0) {
4353 spin_lock(&GlobalMid_Lock);
Jeff Layton7fdbaa12011-06-10 16:14:57 -04004354 if (server->tcpStatus == CifsNeedNegotiate)
Jeff Layton198b5682010-04-24 07:57:48 -04004355 server->tcpStatus = CifsGood;
4356 else
4357 rc = -EHOSTDOWN;
4358 spin_unlock(&GlobalMid_Lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 }
Steve French26b994f2008-08-06 05:11:33 +00004360
Jeff Layton198b5682010-04-24 07:57:48 -04004361 return rc;
4362}
Steve French26b994f2008-08-06 05:11:33 +00004363
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04004364int
4365cifs_setup_session(const unsigned int xid, struct cifs_ses *ses,
4366 struct nls_table *nls_info)
Jeff Layton198b5682010-04-24 07:57:48 -04004367{
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04004368 int rc = -ENOSYS;
Jeff Layton198b5682010-04-24 07:57:48 -04004369 struct TCP_Server_Info *server = ses->server;
4370
Jeff Layton198b5682010-04-24 07:57:48 -04004371 ses->capabilities = server->capabilities;
Steve French26b994f2008-08-06 05:11:33 +00004372 if (linuxExtEnabled == 0)
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04004373 ses->capabilities &= (~server->vals->cap_unix);
Steve French20418ac2009-04-30 16:13:32 +00004374
Joe Perchesf96637b2013-05-04 22:12:25 -05004375 cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n",
Steve French96daf2b2011-05-27 04:34:02 +00004376 server->sec_mode, server->capabilities, server->timeAdj);
Jeff Laytoncb7691b2008-08-18 15:41:05 -04004377
Shu Wangf5c4ba82017-09-08 18:48:33 +08004378 if (ses->auth_key.response) {
Steve French2a182872018-03-29 12:16:34 -05004379 cifs_dbg(FYI, "Free previous auth_key.response = %p\n",
Shu Wangf5c4ba82017-09-08 18:48:33 +08004380 ses->auth_key.response);
4381 kfree(ses->auth_key.response);
4382 ses->auth_key.response = NULL;
4383 ses->auth_key.len = 0;
4384 }
4385
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04004386 if (server->ops->sess_setup)
4387 rc = server->ops->sess_setup(xid, ses, nls_info);
4388
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -05004389 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05004390 cifs_dbg(VFS, "Send error in SessSetup = %d\n", rc);
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05004391
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 return rc;
4393}
4394
Jeff Layton8a8798a2012-01-17 16:09:15 -05004395static int
4396cifs_set_vol_auth(struct smb_vol *vol, struct cifs_ses *ses)
4397{
Jeff Layton3f618222013-06-12 19:52:14 -05004398 vol->sectype = ses->sectype;
4399
4400 /* krb5 is special, since we don't need username or pw */
4401 if (vol->sectype == Kerberos)
Jeff Layton8a8798a2012-01-17 16:09:15 -05004402 return 0;
Jeff Layton8a8798a2012-01-17 16:09:15 -05004403
4404 return cifs_set_cifscreds(vol, ses);
4405}
4406
Steve French96daf2b2011-05-27 04:34:02 +00004407static struct cifs_tcon *
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004408cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid)
Jeff Layton9d002df2010-10-06 19:51:11 -04004409{
Jeff Layton8a8798a2012-01-17 16:09:15 -05004410 int rc;
Steve French96daf2b2011-05-27 04:34:02 +00004411 struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb);
4412 struct cifs_ses *ses;
4413 struct cifs_tcon *tcon = NULL;
Jeff Layton9d002df2010-10-06 19:51:11 -04004414 struct smb_vol *vol_info;
Jeff Layton9d002df2010-10-06 19:51:11 -04004415
4416 vol_info = kzalloc(sizeof(*vol_info), GFP_KERNEL);
Dan Carpenter803ab972012-01-24 11:39:22 +03004417 if (vol_info == NULL)
4418 return ERR_PTR(-ENOMEM);
Jeff Layton9d002df2010-10-06 19:51:11 -04004419
Jeff Layton9d002df2010-10-06 19:51:11 -04004420 vol_info->local_nls = cifs_sb->local_nls;
4421 vol_info->linux_uid = fsuid;
4422 vol_info->cred_uid = fsuid;
4423 vol_info->UNC = master_tcon->treeName;
4424 vol_info->retry = master_tcon->retry;
4425 vol_info->nocase = master_tcon->nocase;
Steve French3d4ef9a2018-04-25 22:19:09 -05004426 vol_info->nohandlecache = master_tcon->nohandlecache;
Jeff Layton9d002df2010-10-06 19:51:11 -04004427 vol_info->local_lease = master_tcon->local_lease;
4428 vol_info->no_linux_ext = !master_tcon->unix_ext;
Jeff Layton28e11bd2013-05-26 07:01:00 -04004429 vol_info->sectype = master_tcon->ses->sectype;
4430 vol_info->sign = master_tcon->ses->sign;
Jeff Layton9d002df2010-10-06 19:51:11 -04004431
Jeff Layton8a8798a2012-01-17 16:09:15 -05004432 rc = cifs_set_vol_auth(vol_info, master_tcon->ses);
4433 if (rc) {
4434 tcon = ERR_PTR(rc);
4435 goto out;
4436 }
Jeff Layton9d002df2010-10-06 19:51:11 -04004437
4438 /* get a reference for the same TCP session */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05304439 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004440 ++master_tcon->ses->server->srv_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05304441 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004442
4443 ses = cifs_get_smb_ses(master_tcon->ses->server, vol_info);
4444 if (IS_ERR(ses)) {
Steve French96daf2b2011-05-27 04:34:02 +00004445 tcon = (struct cifs_tcon *)ses;
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07004446 cifs_put_tcp_session(master_tcon->ses->server, 0);
Jeff Layton9d002df2010-10-06 19:51:11 -04004447 goto out;
4448 }
4449
4450 tcon = cifs_get_tcon(ses, vol_info);
4451 if (IS_ERR(tcon)) {
4452 cifs_put_smb_ses(ses);
4453 goto out;
4454 }
4455
Steve Frenchce558b02018-05-31 19:16:54 -05004456#ifdef CONFIG_CIFS_SMB311
4457 /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */
4458 if (tcon->posix_extensions)
4459 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS;
4460#endif /* SMB3.11 */
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04004461 if (cap_unix(ses))
Jeff Layton9d002df2010-10-06 19:51:11 -04004462 reset_cifs_unix_caps(0, tcon, NULL, vol_info);
Steve Frenchb3266142018-05-20 23:41:10 -05004463
Jeff Layton9d002df2010-10-06 19:51:11 -04004464out:
Jeff Layton8a8798a2012-01-17 16:09:15 -05004465 kfree(vol_info->username);
Aurelien Aptel97f4b722018-01-25 15:59:39 +01004466 kzfree(vol_info->password);
Jeff Layton9d002df2010-10-06 19:51:11 -04004467 kfree(vol_info);
4468
4469 return tcon;
4470}
4471
Steve French96daf2b2011-05-27 04:34:02 +00004472struct cifs_tcon *
Jeff Layton9d002df2010-10-06 19:51:11 -04004473cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb)
4474{
4475 return tlink_tcon(cifs_sb_master_tlink(cifs_sb));
4476}
4477
Jeff Laytonb647c352010-10-28 11:16:44 -04004478/* find and return a tlink with given uid */
4479static struct tcon_link *
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004480tlink_rb_search(struct rb_root *root, kuid_t uid)
Jeff Laytonb647c352010-10-28 11:16:44 -04004481{
4482 struct rb_node *node = root->rb_node;
4483 struct tcon_link *tlink;
4484
4485 while (node) {
4486 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
4487
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004488 if (uid_gt(tlink->tl_uid, uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04004489 node = node->rb_left;
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004490 else if (uid_lt(tlink->tl_uid, uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04004491 node = node->rb_right;
4492 else
4493 return tlink;
4494 }
4495 return NULL;
4496}
4497
4498/* insert a tcon_link into the tree */
4499static void
4500tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink)
4501{
4502 struct rb_node **new = &(root->rb_node), *parent = NULL;
4503 struct tcon_link *tlink;
4504
4505 while (*new) {
4506 tlink = rb_entry(*new, struct tcon_link, tl_rbnode);
4507 parent = *new;
4508
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004509 if (uid_gt(tlink->tl_uid, new_tlink->tl_uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04004510 new = &((*new)->rb_left);
4511 else
4512 new = &((*new)->rb_right);
4513 }
4514
4515 rb_link_node(&new_tlink->tl_rbnode, parent, new);
4516 rb_insert_color(&new_tlink->tl_rbnode, root);
4517}
4518
Jeff Layton9d002df2010-10-06 19:51:11 -04004519/*
4520 * Find or construct an appropriate tcon given a cifs_sb and the fsuid of the
4521 * current task.
4522 *
4523 * If the superblock doesn't refer to a multiuser mount, then just return
4524 * the master tcon for the mount.
4525 *
Suresh Jayaraman6ef933a2010-11-03 10:53:49 +05304526 * First, search the rbtree for an existing tcon for this fsuid. If one
Jeff Layton9d002df2010-10-06 19:51:11 -04004527 * exists, then check to see if it's pending construction. If it is then wait
4528 * for construction to complete. Once it's no longer pending, check to see if
4529 * it failed and either return an error or retry construction, depending on
4530 * the timeout.
4531 *
4532 * If one doesn't exist then insert a new tcon_link struct into the tree and
4533 * try to construct a new one.
4534 */
4535struct tcon_link *
4536cifs_sb_tlink(struct cifs_sb_info *cifs_sb)
4537{
4538 int ret;
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004539 kuid_t fsuid = current_fsuid();
Jeff Layton9d002df2010-10-06 19:51:11 -04004540 struct tcon_link *tlink, *newtlink;
4541
4542 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
4543 return cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
4544
4545 spin_lock(&cifs_sb->tlink_tree_lock);
Jeff Laytonb647c352010-10-28 11:16:44 -04004546 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
Jeff Layton9d002df2010-10-06 19:51:11 -04004547 if (tlink)
4548 cifs_get_tlink(tlink);
4549 spin_unlock(&cifs_sb->tlink_tree_lock);
4550
4551 if (tlink == NULL) {
4552 newtlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
4553 if (newtlink == NULL)
4554 return ERR_PTR(-ENOMEM);
Jeff Laytonb647c352010-10-28 11:16:44 -04004555 newtlink->tl_uid = fsuid;
Jeff Layton9d002df2010-10-06 19:51:11 -04004556 newtlink->tl_tcon = ERR_PTR(-EACCES);
4557 set_bit(TCON_LINK_PENDING, &newtlink->tl_flags);
4558 set_bit(TCON_LINK_IN_TREE, &newtlink->tl_flags);
4559 cifs_get_tlink(newtlink);
4560
Jeff Layton9d002df2010-10-06 19:51:11 -04004561 spin_lock(&cifs_sb->tlink_tree_lock);
4562 /* was one inserted after previous search? */
Jeff Laytonb647c352010-10-28 11:16:44 -04004563 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
Jeff Layton9d002df2010-10-06 19:51:11 -04004564 if (tlink) {
4565 cifs_get_tlink(tlink);
4566 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004567 kfree(newtlink);
4568 goto wait_for_construction;
4569 }
Jeff Layton9d002df2010-10-06 19:51:11 -04004570 tlink = newtlink;
Jeff Laytonb647c352010-10-28 11:16:44 -04004571 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
4572 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004573 } else {
4574wait_for_construction:
4575 ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING,
Jeff Layton9d002df2010-10-06 19:51:11 -04004576 TASK_INTERRUPTIBLE);
4577 if (ret) {
4578 cifs_put_tlink(tlink);
NeilBrown74316202014-07-07 15:16:04 +10004579 return ERR_PTR(-ERESTARTSYS);
Jeff Layton9d002df2010-10-06 19:51:11 -04004580 }
4581
4582 /* if it's good, return it */
4583 if (!IS_ERR(tlink->tl_tcon))
4584 return tlink;
4585
4586 /* return error if we tried this already recently */
4587 if (time_before(jiffies, tlink->tl_time + TLINK_ERROR_EXPIRE)) {
4588 cifs_put_tlink(tlink);
4589 return ERR_PTR(-EACCES);
4590 }
4591
4592 if (test_and_set_bit(TCON_LINK_PENDING, &tlink->tl_flags))
4593 goto wait_for_construction;
4594 }
4595
4596 tlink->tl_tcon = cifs_construct_tcon(cifs_sb, fsuid);
4597 clear_bit(TCON_LINK_PENDING, &tlink->tl_flags);
4598 wake_up_bit(&tlink->tl_flags, TCON_LINK_PENDING);
4599
4600 if (IS_ERR(tlink->tl_tcon)) {
4601 cifs_put_tlink(tlink);
4602 return ERR_PTR(-EACCES);
4603 }
4604
4605 return tlink;
4606}
Jeff Layton2de970f2010-10-06 19:51:12 -04004607
4608/*
4609 * periodic workqueue job that scans tcon_tree for a superblock and closes
4610 * out tcons.
4611 */
4612static void
4613cifs_prune_tlinks(struct work_struct *work)
4614{
4615 struct cifs_sb_info *cifs_sb = container_of(work, struct cifs_sb_info,
4616 prune_tlinks.work);
Jeff Laytonb647c352010-10-28 11:16:44 -04004617 struct rb_root *root = &cifs_sb->tlink_tree;
Colin Ian King37e12f52018-01-17 09:52:39 +00004618 struct rb_node *node;
Jeff Laytonb647c352010-10-28 11:16:44 -04004619 struct rb_node *tmp;
4620 struct tcon_link *tlink;
Jeff Layton2de970f2010-10-06 19:51:12 -04004621
Jeff Laytonb647c352010-10-28 11:16:44 -04004622 /*
4623 * Because we drop the spinlock in the loop in order to put the tlink
4624 * it's not guarded against removal of links from the tree. The only
4625 * places that remove entries from the tree are this function and
4626 * umounts. Because this function is non-reentrant and is canceled
4627 * before umount can proceed, this is safe.
4628 */
4629 spin_lock(&cifs_sb->tlink_tree_lock);
4630 node = rb_first(root);
4631 while (node != NULL) {
4632 tmp = node;
4633 node = rb_next(tmp);
4634 tlink = rb_entry(tmp, struct tcon_link, tl_rbnode);
4635
4636 if (test_bit(TCON_LINK_MASTER, &tlink->tl_flags) ||
4637 atomic_read(&tlink->tl_count) != 0 ||
4638 time_after(tlink->tl_time + TLINK_IDLE_EXPIRE, jiffies))
4639 continue;
4640
4641 cifs_get_tlink(tlink);
4642 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4643 rb_erase(tmp, root);
4644
Jeff Layton2de970f2010-10-06 19:51:12 -04004645 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Laytonb647c352010-10-28 11:16:44 -04004646 cifs_put_tlink(tlink);
4647 spin_lock(&cifs_sb->tlink_tree_lock);
4648 }
4649 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton2de970f2010-10-06 19:51:12 -04004650
Jeff Laytonda472fc2012-03-23 14:40:53 -04004651 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
Jeff Layton2de970f2010-10-06 19:51:12 -04004652 TLINK_IDLE_EXPIRE);
4653}