blob: 9ae695ae3ed7be3788db2a889e34cde8a3224c9c [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>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080038#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/processor.h>
Jeff Layton50b64e32009-06-02 06:55:20 -040040#include <linux/inet.h>
Paul Gortmaker143cb492011-07-01 14:23:34 -040041#include <linux/module.h>
Jeff Layton8a8798a2012-01-17 16:09:15 -050042#include <keys/user-type.h>
Steve French0e2beda2009-01-30 21:24:41 +000043#include <net/ipv6.h>
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040044#include <linux/parser.h>
Christoph Hellwig2f8b5442016-11-01 07:40:13 -060045#include <linux/bvec.h>
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040046
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#ifdef CONFIG_CIFS_SMB2
58#include "smb2proto.h"
59#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61#define CIFS_PORT 445
62#define RFC1001_PORT 139
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064extern mempool_t *cifs_req_poolp;
65
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,
80 Opt_noposixpaths, Opt_nounix,
81 Opt_nocase,
82 Opt_brl, Opt_nobrl,
Steve French95932652016-09-23 01:36:34 -050083 Opt_forcemandatorylock, Opt_setuidfromacl, Opt_setuids,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040084 Opt_nosetuids, Opt_dynperm, Opt_nodynperm,
85 Opt_nohard, Opt_nosoft,
86 Opt_nointr, Opt_intr,
87 Opt_nostrictsync, Opt_strictsync,
88 Opt_serverino, Opt_noserverino,
89 Opt_rwpidforward, Opt_cifsacl, Opt_nocifsacl,
90 Opt_acl, Opt_noacl, Opt_locallease,
Jeff Layton1b359202012-09-19 15:20:27 -070091 Opt_sign, Opt_seal, Opt_noac,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040092 Opt_fsc, Opt_mfsymlinks,
Jeff Laytona0b3df52013-05-24 07:40:59 -040093 Opt_multiuser, Opt_sloppy, Opt_nosharesock,
Steve Frenchb2a30772015-09-29 21:49:28 -050094 Opt_persistent, Opt_nopersistent,
Steve French592fafe2015-11-03 10:08:53 -060095 Opt_resilient, Opt_noresilient,
Germano Percossi39566442016-12-15 12:31:18 +053096 Opt_domainauto,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040097
98 /* Mount options which take numeric value */
99 Opt_backupuid, Opt_backupgid, Opt_uid,
100 Opt_cruid, Opt_gid, Opt_file_mode,
101 Opt_dirmode, Opt_port,
102 Opt_rsize, Opt_wsize, Opt_actimeo,
Steve French141891f2016-09-23 00:44:16 -0500103 Opt_echo_interval, Opt_max_credits,
Steve French8b217fe2016-11-11 22:36:20 -0600104 Opt_snapshot,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400105
106 /* Mount options which take string value */
107 Opt_user, Opt_pass, Opt_ip,
Jeff Layton73a999f2013-03-22 08:42:57 -0400108 Opt_domain, Opt_srcaddr, Opt_iocharset,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400109 Opt_netbiosname, Opt_servern,
Jeff Layton23db65f2012-05-15 12:20:51 -0400110 Opt_ver, Opt_vers, Opt_sec, Opt_cache,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400111
112 /* Mount options to be ignored */
113 Opt_ignore,
114
115 /* Options which could be blank */
116 Opt_blank_pass,
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100117 Opt_blank_user,
118 Opt_blank_ip,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400119
120 Opt_err
121};
122
123static const match_table_t cifs_mount_option_tokens = {
124
125 { Opt_user_xattr, "user_xattr" },
126 { Opt_nouser_xattr, "nouser_xattr" },
127 { Opt_forceuid, "forceuid" },
128 { Opt_noforceuid, "noforceuid" },
Jeff Layton72bd4812012-10-03 16:02:36 -0400129 { Opt_forcegid, "forcegid" },
130 { Opt_noforcegid, "noforcegid" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400131 { Opt_noblocksend, "noblocksend" },
132 { Opt_noautotune, "noautotune" },
133 { Opt_hard, "hard" },
134 { Opt_soft, "soft" },
135 { Opt_perm, "perm" },
136 { Opt_noperm, "noperm" },
Steve French2baa2682014-09-27 02:19:01 -0500137 { Opt_mapchars, "mapchars" }, /* SFU style */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400138 { Opt_nomapchars, "nomapchars" },
Steve French2baa2682014-09-27 02:19:01 -0500139 { Opt_mapposix, "mapposix" }, /* SFM style */
140 { Opt_nomapposix, "nomapposix" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400141 { Opt_sfu, "sfu" },
142 { Opt_nosfu, "nosfu" },
143 { Opt_nodfs, "nodfs" },
144 { Opt_posixpaths, "posixpaths" },
145 { Opt_noposixpaths, "noposixpaths" },
146 { Opt_nounix, "nounix" },
147 { Opt_nounix, "nolinux" },
148 { Opt_nocase, "nocase" },
149 { Opt_nocase, "ignorecase" },
150 { Opt_brl, "brl" },
151 { Opt_nobrl, "nobrl" },
152 { Opt_nobrl, "nolock" },
153 { Opt_forcemandatorylock, "forcemandatorylock" },
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +0400154 { Opt_forcemandatorylock, "forcemand" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400155 { Opt_setuids, "setuids" },
156 { Opt_nosetuids, "nosetuids" },
Steve French95932652016-09-23 01:36:34 -0500157 { Opt_setuidfromacl, "idsfromsid" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400158 { Opt_dynperm, "dynperm" },
159 { Opt_nodynperm, "nodynperm" },
160 { Opt_nohard, "nohard" },
161 { Opt_nosoft, "nosoft" },
162 { Opt_nointr, "nointr" },
163 { Opt_intr, "intr" },
164 { Opt_nostrictsync, "nostrictsync" },
165 { Opt_strictsync, "strictsync" },
166 { Opt_serverino, "serverino" },
167 { Opt_noserverino, "noserverino" },
168 { Opt_rwpidforward, "rwpidforward" },
169 { Opt_cifsacl, "cifsacl" },
170 { Opt_nocifsacl, "nocifsacl" },
171 { Opt_acl, "acl" },
172 { Opt_noacl, "noacl" },
173 { Opt_locallease, "locallease" },
174 { Opt_sign, "sign" },
175 { Opt_seal, "seal" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400176 { Opt_noac, "noac" },
177 { Opt_fsc, "fsc" },
178 { Opt_mfsymlinks, "mfsymlinks" },
179 { Opt_multiuser, "multiuser" },
Jeff Laytond8162552012-03-23 14:40:56 -0400180 { Opt_sloppy, "sloppy" },
Jeff Laytona0b3df52013-05-24 07:40:59 -0400181 { Opt_nosharesock, "nosharesock" },
Steve Frenchb2a30772015-09-29 21:49:28 -0500182 { Opt_persistent, "persistenthandles"},
183 { Opt_nopersistent, "nopersistenthandles"},
Steve French592fafe2015-11-03 10:08:53 -0600184 { Opt_resilient, "resilienthandles"},
185 { Opt_noresilient, "noresilienthandles"},
Germano Percossi39566442016-12-15 12:31:18 +0530186 { Opt_domainauto, "domainauto"},
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400187
188 { Opt_backupuid, "backupuid=%s" },
189 { Opt_backupgid, "backupgid=%s" },
190 { Opt_uid, "uid=%s" },
191 { Opt_cruid, "cruid=%s" },
192 { Opt_gid, "gid=%s" },
193 { Opt_file_mode, "file_mode=%s" },
194 { Opt_dirmode, "dirmode=%s" },
195 { Opt_dirmode, "dir_mode=%s" },
196 { Opt_port, "port=%s" },
197 { Opt_rsize, "rsize=%s" },
198 { Opt_wsize, "wsize=%s" },
199 { Opt_actimeo, "actimeo=%s" },
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600200 { Opt_echo_interval, "echo_interval=%s" },
Steve French141891f2016-09-23 00:44:16 -0500201 { Opt_max_credits, "max_credits=%s" },
Steve French8b217fe2016-11-11 22:36:20 -0600202 { Opt_snapshot, "snapshot=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400203
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100204 { Opt_blank_user, "user=" },
205 { Opt_blank_user, "username=" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400206 { Opt_user, "user=%s" },
207 { Opt_user, "username=%s" },
208 { Opt_blank_pass, "pass=" },
Jesper Nilsson3c15b4c2012-11-29 17:31:16 +0100209 { Opt_blank_pass, "password=" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400210 { Opt_pass, "pass=%s" },
211 { Opt_pass, "password=%s" },
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100212 { Opt_blank_ip, "ip=" },
213 { Opt_blank_ip, "addr=" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400214 { Opt_ip, "ip=%s" },
215 { Opt_ip, "addr=%s" },
Jeff Layton73a999f2013-03-22 08:42:57 -0400216 { Opt_ignore, "unc=%s" },
217 { Opt_ignore, "target=%s" },
218 { Opt_ignore, "path=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400219 { Opt_domain, "dom=%s" },
220 { Opt_domain, "domain=%s" },
221 { Opt_domain, "workgroup=%s" },
222 { Opt_srcaddr, "srcaddr=%s" },
Jeff Layton73a999f2013-03-22 08:42:57 -0400223 { Opt_ignore, "prefixpath=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400224 { Opt_iocharset, "iocharset=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400225 { Opt_netbiosname, "netbiosname=%s" },
226 { Opt_servern, "servern=%s" },
227 { Opt_ver, "ver=%s" },
Jeff Layton23db65f2012-05-15 12:20:51 -0400228 { Opt_vers, "vers=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400229 { Opt_sec, "sec=%s" },
Jeff Layton15b6a472012-05-16 07:50:15 -0400230 { Opt_cache, "cache=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400231
232 { Opt_ignore, "cred" },
233 { Opt_ignore, "credentials" },
Jeff Laytona557b972012-05-02 14:02:40 -0400234 { Opt_ignore, "cred=%s" },
235 { Opt_ignore, "credentials=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400236 { Opt_ignore, "guest" },
237 { Opt_ignore, "rw" },
238 { Opt_ignore, "ro" },
239 { Opt_ignore, "suid" },
240 { Opt_ignore, "nosuid" },
241 { Opt_ignore, "exec" },
242 { Opt_ignore, "noexec" },
243 { Opt_ignore, "nodev" },
244 { Opt_ignore, "noauto" },
245 { Opt_ignore, "dev" },
246 { Opt_ignore, "mand" },
247 { Opt_ignore, "nomand" },
248 { Opt_ignore, "_netdev" },
249
250 { Opt_err, NULL }
251};
252
253enum {
254 Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p,
255 Opt_sec_ntlmsspi, Opt_sec_ntlmssp,
Jeff Layton76596242012-07-23 20:34:17 -0400256 Opt_ntlm, Opt_sec_ntlmi, Opt_sec_ntlmv2,
257 Opt_sec_ntlmv2i, Opt_sec_lanman,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400258 Opt_sec_none,
259
260 Opt_sec_err
261};
262
263static const match_table_t cifs_secflavor_tokens = {
264 { Opt_sec_krb5, "krb5" },
265 { Opt_sec_krb5i, "krb5i" },
266 { Opt_sec_krb5p, "krb5p" },
267 { Opt_sec_ntlmsspi, "ntlmsspi" },
268 { Opt_sec_ntlmssp, "ntlmssp" },
269 { Opt_ntlm, "ntlm" },
270 { Opt_sec_ntlmi, "ntlmi" },
Jeff Layton76596242012-07-23 20:34:17 -0400271 { Opt_sec_ntlmv2, "nontlm" },
272 { Opt_sec_ntlmv2, "ntlmv2" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400273 { Opt_sec_ntlmv2i, "ntlmv2i" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400274 { Opt_sec_lanman, "lanman" },
275 { Opt_sec_none, "none" },
276
277 { Opt_sec_err, NULL }
278};
279
Jeff Layton15b6a472012-05-16 07:50:15 -0400280/* cache flavors */
281enum {
282 Opt_cache_loose,
283 Opt_cache_strict,
284 Opt_cache_none,
285 Opt_cache_err
286};
287
288static const match_table_t cifs_cacheflavor_tokens = {
289 { Opt_cache_loose, "loose" },
290 { Opt_cache_strict, "strict" },
291 { Opt_cache_none, "none" },
292 { Opt_cache_err, NULL }
293};
294
Jeff Layton23db65f2012-05-15 12:20:51 -0400295static const match_table_t cifs_smb_version_tokens = {
296 { Smb_1, SMB1_VERSION_STRING },
Steve Frenchdd446b12012-11-28 23:21:06 -0600297 { Smb_20, SMB20_VERSION_STRING},
Steve French1080ef72011-02-24 18:07:19 +0000298 { Smb_21, SMB21_VERSION_STRING },
Steve Frenche4aa25e2012-10-01 12:26:22 -0500299 { Smb_30, SMB30_VERSION_STRING },
Steve French20b6d8b2013-06-12 22:48:41 -0500300 { Smb_302, SMB302_VERSION_STRING },
Steve French5f7fbf72014-12-17 22:52:58 -0600301#ifdef CONFIG_CIFS_SMB311
302 { Smb_311, SMB311_VERSION_STRING },
Steve Frenchaab18932015-06-23 23:37:11 -0500303 { Smb_311, ALT_SMB311_VERSION_STRING },
Steve French5f7fbf72014-12-17 22:52:58 -0600304#endif /* SMB311 */
305 { Smb_version_err, NULL }
Jeff Layton23db65f2012-05-15 12:20:51 -0400306};
307
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300308static int ip_connect(struct TCP_Server_Info *server);
309static int generic_ip_connect(struct TCP_Server_Info *server);
Jeff Laytonb647c352010-10-28 11:16:44 -0400310static void tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink);
Jeff Layton2de970f2010-10-06 19:51:12 -0400311static void cifs_prune_tlinks(struct work_struct *work);
Jeff Laytonb9bce2e2011-07-06 08:10:39 -0400312static int cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data,
313 const char *devname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Jeff Laytond5c56052008-12-01 18:42:33 -0500315/*
316 * cifs tcp session reconnection
317 *
318 * mark tcp session as reconnecting so temporarily locked
319 * mark all smb sessions as reconnecting for tcp session
320 * reconnect tcp session
321 * wake up waiters on reconnection? - (not needed currently)
322 */
Pavel Shilovsky28ea5292012-05-23 16:18:00 +0400323int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324cifs_reconnect(struct TCP_Server_Info *server)
325{
326 int rc = 0;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500327 struct list_head *tmp, *tmp2;
Steve French96daf2b2011-05-27 04:34:02 +0000328 struct cifs_ses *ses;
329 struct cifs_tcon *tcon;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000330 struct mid_q_entry *mid_entry;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400331 struct list_head retry_list;
Steve French50c2f752007-07-13 00:33:32 +0000332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 spin_lock(&GlobalMid_Lock);
Jeff Layton469ee612008-10-16 18:46:39 +0000334 if (server->tcpStatus == CifsExiting) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000335 /* the demux thread will exit normally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 next time through the loop */
337 spin_unlock(&GlobalMid_Lock);
338 return rc;
339 } else
340 server->tcpStatus = CifsNeedReconnect;
341 spin_unlock(&GlobalMid_Lock);
342 server->maxBuf = 0;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400343#ifdef CONFIG_CIFS_SMB2
344 server->max_read = 0;
345#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Joe Perchesf96637b2013-05-04 22:12:25 -0500347 cifs_dbg(FYI, "Reconnecting tcp session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 /* before reconnecting the tcp session, mark the smb session (uid)
350 and the tid bad so they are not used until reconnected */
Joe Perchesf96637b2013-05-04 22:12:25 -0500351 cifs_dbg(FYI, "%s: marking sessions and tcons for reconnect\n",
352 __func__);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530353 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -0500354 list_for_each(tmp, &server->smb_ses_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000355 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
Jeff Layton14fbf502008-11-14 13:53:46 -0500356 ses->need_reconnect = true;
357 ses->ipc_tid = 0;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500358 list_for_each(tmp2, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000359 tcon = list_entry(tmp2, struct cifs_tcon, tcon_list);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500360 tcon->need_reconnect = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530363 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 /* do not want to be sending data on a socket we are freeing */
Joe Perchesf96637b2013-05-04 22:12:25 -0500366 cifs_dbg(FYI, "%s: tearing down socket\n", __func__);
Jeff Layton72ca5452008-12-01 07:09:36 -0500367 mutex_lock(&server->srv_mutex);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000368 if (server->ssocket) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500369 cifs_dbg(FYI, "State: 0x%x Flags: 0x%lx\n",
370 server->ssocket->state, server->ssocket->flags);
Trond Myklebust91cf45f2007-11-12 18:10:39 -0800371 kernel_sock_shutdown(server->ssocket, SHUT_WR);
Joe Perchesf96637b2013-05-04 22:12:25 -0500372 cifs_dbg(FYI, "Post shutdown state: 0x%x Flags: 0x%lx\n",
373 server->ssocket->state, server->ssocket->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 sock_release(server->ssocket);
375 server->ssocket = NULL;
376 }
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -0500377 server->sequence_number = 0;
378 server->session_estab = false;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500379 kfree(server->session_key.response);
380 server->session_key.response = NULL;
381 server->session_key.len = 0;
Steve Frenchfda35942011-01-20 18:06:34 +0000382 server->lstrp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500384 /* mark submitted MIDs for retry and issue callback */
Jeff Layton3c1105d2011-05-22 07:09:13 -0400385 INIT_LIST_HEAD(&retry_list);
Joe Perchesf96637b2013-05-04 22:12:25 -0500386 cifs_dbg(FYI, "%s: moving mids to private list\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 spin_lock(&GlobalMid_Lock);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500388 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
389 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400390 if (mid_entry->mid_state == MID_REQUEST_SUBMITTED)
391 mid_entry->mid_state = MID_RETRY_NEEDED;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400392 list_move(&mid_entry->qhead, &retry_list);
393 }
394 spin_unlock(&GlobalMid_Lock);
Rabin Vincent820962d2015-12-23 07:32:41 +0100395 mutex_unlock(&server->srv_mutex);
Jeff Layton3c1105d2011-05-22 07:09:13 -0400396
Joe Perchesf96637b2013-05-04 22:12:25 -0500397 cifs_dbg(FYI, "%s: issuing mid callbacks\n", __func__);
Jeff Layton3c1105d2011-05-22 07:09:13 -0400398 list_for_each_safe(tmp, tmp2, &retry_list) {
399 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500400 list_del_init(&mid_entry->qhead);
401 mid_entry->callback(mid_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Jeff Layton7fdbaa12011-06-10 16:14:57 -0400404 do {
Steve French6c3d8902006-07-31 22:46:20 +0000405 try_to_freeze();
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300406
407 /* we should try only the port we connected to before */
Jeff Layton73e216a2013-09-05 08:38:10 -0400408 mutex_lock(&server->srv_mutex);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300409 rc = generic_ip_connect(server);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000410 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500411 cifs_dbg(FYI, "reconnect error %d\n", rc);
Federico Sauter4afe2602015-03-17 17:45:28 +0100412 mutex_unlock(&server->srv_mutex);
Steve French0cb766a2005-04-28 22:41:11 -0700413 msleep(3000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 } else {
415 atomic_inc(&tcpSesReconnectCount);
416 spin_lock(&GlobalMid_Lock);
Jeff Layton469ee612008-10-16 18:46:39 +0000417 if (server->tcpStatus != CifsExiting)
Steve Frenchfd88ce92011-04-12 01:01:14 +0000418 server->tcpStatus = CifsNeedNegotiate;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000419 spin_unlock(&GlobalMid_Lock);
Federico Sauter4afe2602015-03-17 17:45:28 +0100420 mutex_unlock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
Jeff Layton7fdbaa12011-06-10 16:14:57 -0400422 } while (server->tcpStatus == CifsNeedReconnect);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500423
Sachin Prabhub8c60012016-10-20 19:52:24 -0400424 if (server->tcpStatus == CifsNeedNegotiate)
425 mod_delayed_work(cifsiod_wq, &server->echo, 0);
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return rc;
428}
429
Jeff Laytonc74093b2011-01-11 07:24:23 -0500430static void
431cifs_echo_request(struct work_struct *work)
432{
433 int rc;
434 struct TCP_Server_Info *server = container_of(work,
435 struct TCP_Server_Info, echo.work);
Sachin Prabhub8c60012016-10-20 19:52:24 -0400436 unsigned long echo_interval;
Jeff Laytonc74093b2011-01-11 07:24:23 -0500437
Jeff Layton247ec9b2011-02-04 17:09:50 -0500438 /*
Sachin Prabhub8c60012016-10-20 19:52:24 -0400439 * If we need to renegotiate, set echo interval to zero to
440 * immediately call echo service where we can renegotiate.
441 */
442 if (server->tcpStatus == CifsNeedNegotiate)
443 echo_interval = 0;
444 else
445 echo_interval = server->echo_interval;
446
447 /*
448 * We cannot send an echo if it is disabled.
449 * Also, no need to ping if we got a response recently.
Jeff Layton247ec9b2011-02-04 17:09:50 -0500450 */
Steve French4fcd1812016-06-22 20:12:05 -0500451
452 if (server->tcpStatus == CifsNeedReconnect ||
Sachin Prabhub8c60012016-10-20 19:52:24 -0400453 server->tcpStatus == CifsExiting ||
454 server->tcpStatus == CifsNew ||
Pavel Shilovskyf6d76172012-05-25 14:47:16 +0400455 (server->ops->can_echo && !server->ops->can_echo(server)) ||
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600456 time_before(jiffies, server->lstrp + echo_interval - HZ))
Jeff Laytonc74093b2011-01-11 07:24:23 -0500457 goto requeue_echo;
458
Pavel Shilovskyf6d76172012-05-25 14:47:16 +0400459 rc = server->ops->echo ? server->ops->echo(server) : -ENOSYS;
Jeff Laytonc74093b2011-01-11 07:24:23 -0500460 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500461 cifs_dbg(FYI, "Unable to send echo request to server: %s\n",
462 server->hostname);
Jeff Laytonc74093b2011-01-11 07:24:23 -0500463
464requeue_echo:
Sachin Prabhub8c60012016-10-20 19:52:24 -0400465 queue_delayed_work(cifsiod_wq, &server->echo, server->echo_interval);
Jeff Laytonc74093b2011-01-11 07:24:23 -0500466}
467
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400468static bool
Jeff Layton2a37ef92011-10-19 15:29:23 -0400469allocate_buffers(struct TCP_Server_Info *server)
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400470{
Jeff Layton2a37ef92011-10-19 15:29:23 -0400471 if (!server->bigbuf) {
472 server->bigbuf = (char *)cifs_buf_get();
473 if (!server->bigbuf) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500474 cifs_dbg(VFS, "No memory for large SMB response\n");
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400475 msleep(3000);
476 /* retry will check if exiting */
477 return false;
478 }
Jeff Layton2a37ef92011-10-19 15:29:23 -0400479 } else if (server->large_buf) {
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400480 /* we are reusing a dirty large buf, clear its start */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400481 memset(server->bigbuf, 0, HEADER_SIZE(server));
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400482 }
483
Jeff Layton2a37ef92011-10-19 15:29:23 -0400484 if (!server->smallbuf) {
485 server->smallbuf = (char *)cifs_small_buf_get();
486 if (!server->smallbuf) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500487 cifs_dbg(VFS, "No memory for SMB response\n");
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400488 msleep(1000);
489 /* retry will check if exiting */
490 return false;
491 }
492 /* beginning of smb buffer is cleared in our buf_get */
493 } else {
494 /* if existing small buf clear beginning */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400495 memset(server->smallbuf, 0, HEADER_SIZE(server));
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400496 }
497
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400498 return true;
499}
500
Jeff Laytonba749e62011-10-11 06:41:32 -0400501static bool
502server_unresponsive(struct TCP_Server_Info *server)
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400503{
Pavel Shilovsky6dae51a2012-02-21 16:50:23 +0300504 /*
505 * We need to wait 2 echo intervals to make sure we handle such
506 * situations right:
507 * 1s client sends a normal SMB request
508 * 2s client gets a response
509 * 30s echo workqueue job pops, and decides we got a response recently
510 * and don't need to send another
511 * ...
512 * 65s kernel_recvmsg times out, and we see that we haven't gotten
513 * a response in >60s.
514 */
515 if (server->tcpStatus == CifsGood &&
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600516 time_after(jiffies, server->lstrp + 2 * server->echo_interval)) {
517 cifs_dbg(VFS, "Server %s has not responded in %lu seconds. Reconnecting...\n",
518 server->hostname, (2 * server->echo_interval) / HZ);
Jeff Laytonba749e62011-10-11 06:41:32 -0400519 cifs_reconnect(server);
520 wake_up(&server->response_q);
521 return true;
522 }
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400523
Jeff Laytonba749e62011-10-11 06:41:32 -0400524 return false;
525}
526
Al Viro71335662016-01-09 19:54:50 -0500527static int
528cifs_readv_from_socket(struct TCP_Server_Info *server, struct msghdr *smb_msg)
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400529{
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400530 int length = 0;
531 int total_read;
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400532
Al Viro71335662016-01-09 19:54:50 -0500533 smb_msg->msg_control = NULL;
534 smb_msg->msg_controllen = 0;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400535
Al Viro71335662016-01-09 19:54:50 -0500536 for (total_read = 0; msg_data_left(smb_msg); total_read += length) {
Jeff Layton95edcff2011-12-01 20:22:41 -0500537 try_to_freeze();
538
Al Viro71335662016-01-09 19:54:50 -0500539 if (server_unresponsive(server))
540 return -ECONNABORTED;
541
542 length = sock_recvmsg(server->ssocket, smb_msg, 0);
543
544 if (server->tcpStatus == CifsExiting)
545 return -ESHUTDOWN;
546
547 if (server->tcpStatus == CifsNeedReconnect) {
548 cifs_reconnect(server);
549 return -ECONNABORTED;
Jeff Laytonba749e62011-10-11 06:41:32 -0400550 }
551
Al Viro71335662016-01-09 19:54:50 -0500552 if (length == -ERESTARTSYS ||
553 length == -EAGAIN ||
554 length == -EINTR) {
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400555 /*
556 * Minimum sleep to prevent looping, allowing socket
557 * to clear and app threads to set tcpStatus
558 * CifsNeedReconnect if server hung.
559 */
560 usleep_range(1000, 2000);
561 length = 0;
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400562 continue;
Al Viro71335662016-01-09 19:54:50 -0500563 }
564
565 if (length <= 0) {
Al Viro09aab882015-11-13 03:00:17 -0500566 cifs_dbg(FYI, "Received no data or error: %d\n", length);
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400567 cifs_reconnect(server);
Al Viro71335662016-01-09 19:54:50 -0500568 return -ECONNABORTED;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400569 }
570 }
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400571 return total_read;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400572}
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400573
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400574int
575cifs_read_from_socket(struct TCP_Server_Info *server, char *buf,
576 unsigned int to_read)
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400577{
Al Viro71335662016-01-09 19:54:50 -0500578 struct msghdr smb_msg;
579 struct kvec iov = {.iov_base = buf, .iov_len = to_read};
580 iov_iter_kvec(&smb_msg.msg_iter, READ | ITER_KVEC, &iov, 1, to_read);
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400581
Al Viro71335662016-01-09 19:54:50 -0500582 return cifs_readv_from_socket(server, &smb_msg);
583}
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400584
Al Viro71335662016-01-09 19:54:50 -0500585int
586cifs_read_page_from_socket(struct TCP_Server_Info *server, struct page *page,
587 unsigned int to_read)
588{
589 struct msghdr smb_msg;
590 struct bio_vec bv = {.bv_page = page, .bv_len = to_read};
591 iov_iter_bvec(&smb_msg.msg_iter, READ | ITER_BVEC, &bv, 1, to_read);
592 return cifs_readv_from_socket(server, &smb_msg);
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400593}
594
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400595static bool
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400596is_smb_response(struct TCP_Server_Info *server, unsigned char type)
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400597{
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400598 /*
599 * The first byte big endian of the length field,
600 * is actually not part of the length but the type
601 * with the most common, zero, as regular data.
602 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400603 switch (type) {
604 case RFC1002_SESSION_MESSAGE:
605 /* Regular SMB response */
606 return true;
607 case RFC1002_SESSION_KEEP_ALIVE:
Joe Perchesf96637b2013-05-04 22:12:25 -0500608 cifs_dbg(FYI, "RFC 1002 session keep alive\n");
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400609 break;
610 case RFC1002_POSITIVE_SESSION_RESPONSE:
Joe Perchesf96637b2013-05-04 22:12:25 -0500611 cifs_dbg(FYI, "RFC 1002 positive session response\n");
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400612 break;
613 case RFC1002_NEGATIVE_SESSION_RESPONSE:
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400614 /*
615 * We get this from Windows 98 instead of an error on
616 * SMB negprot response.
617 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500618 cifs_dbg(FYI, "RFC 1002 negative session response\n");
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400619 /* give server a second to clean up */
620 msleep(1000);
621 /*
622 * Always try 445 first on reconnect since we get NACK
623 * on some if we ever connected to port 139 (the NACK
624 * is since we do not begin with RFC1001 session
625 * initialize frame).
626 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400627 cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400628 cifs_reconnect(server);
629 wake_up(&server->response_q);
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400630 break;
631 default:
Joe Perchesf96637b2013-05-04 22:12:25 -0500632 cifs_dbg(VFS, "RFC 1002 unknown response type 0x%x\n", type);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400633 cifs_reconnect(server);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400634 }
635
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400636 return false;
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400637}
638
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400639void
640dequeue_mid(struct mid_q_entry *mid, bool malformed)
Jeff Laytonea1f4502011-10-19 15:29:05 -0400641{
642#ifdef CONFIG_CIFS_STATS2
643 mid->when_received = jiffies;
644#endif
645 spin_lock(&GlobalMid_Lock);
646 if (!malformed)
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400647 mid->mid_state = MID_RESPONSE_RECEIVED;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400648 else
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400649 mid->mid_state = MID_RESPONSE_MALFORMED;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400650 list_del_init(&mid->qhead);
651 spin_unlock(&GlobalMid_Lock);
652}
653
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400654static void
655handle_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server,
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400656 char *buf, int malformed)
Jeff Laytonea1f4502011-10-19 15:29:05 -0400657{
Pavel Shilovsky316cf942012-05-23 14:31:03 +0400658 if (server->ops->check_trans2 &&
659 server->ops->check_trans2(mid, server, buf, malformed))
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400660 return;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400661 mid->resp_buf = buf;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400662 mid->large_buf = server->large_buf;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400663 /* Was previous buf put in mpx struct for multi-rsp? */
664 if (!mid->multiRsp) {
665 /* smb buffer will be freed by user thread */
666 if (server->large_buf)
667 server->bigbuf = NULL;
668 else
669 server->smallbuf = NULL;
670 }
Jeff Laytonffc00e22011-10-19 15:29:13 -0400671 dequeue_mid(mid, malformed);
Pavel Shilovskyad69bae2011-08-01 13:19:43 +0400672}
673
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400674static void clean_demultiplex_info(struct TCP_Server_Info *server)
675{
676 int length;
677
678 /* take it off the list, if it's not already */
679 spin_lock(&cifs_tcp_ses_lock);
680 list_del_init(&server->tcp_ses_list);
681 spin_unlock(&cifs_tcp_ses_lock);
682
683 spin_lock(&GlobalMid_Lock);
684 server->tcpStatus = CifsExiting;
685 spin_unlock(&GlobalMid_Lock);
686 wake_up_all(&server->response_q);
687
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400688 /* check if we have blocked requests that need to free */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300689 spin_lock(&server->req_lock);
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400690 if (server->credits <= 0)
691 server->credits = 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300692 spin_unlock(&server->req_lock);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400693 /*
694 * Although there should not be any requests blocked on this queue it
695 * can not hurt to be paranoid and try to wake up requests that may
696 * haven been blocked when more than 50 at time were on the wire to the
697 * same server - they now will see the session is in exit state and get
698 * out of SendReceive.
699 */
700 wake_up_all(&server->request_q);
701 /* give those requests time to exit */
702 msleep(125);
703
704 if (server->ssocket) {
705 sock_release(server->ssocket);
706 server->ssocket = NULL;
707 }
708
709 if (!list_empty(&server->pending_mid_q)) {
710 struct list_head dispose_list;
711 struct mid_q_entry *mid_entry;
712 struct list_head *tmp, *tmp2;
713
714 INIT_LIST_HEAD(&dispose_list);
715 spin_lock(&GlobalMid_Lock);
716 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
717 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500718 cifs_dbg(FYI, "Clearing mid 0x%llx\n", mid_entry->mid);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400719 mid_entry->mid_state = MID_SHUTDOWN;
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400720 list_move(&mid_entry->qhead, &dispose_list);
721 }
722 spin_unlock(&GlobalMid_Lock);
723
724 /* now walk dispose list and issue callbacks */
725 list_for_each_safe(tmp, tmp2, &dispose_list) {
726 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500727 cifs_dbg(FYI, "Callback mid 0x%llx\n", mid_entry->mid);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400728 list_del_init(&mid_entry->qhead);
729 mid_entry->callback(mid_entry);
730 }
731 /* 1/8th of sec is more than enough time for them to exit */
732 msleep(125);
733 }
734
735 if (!list_empty(&server->pending_mid_q)) {
736 /*
737 * mpx threads have not exited yet give them at least the smb
738 * send timeout time for long ops.
739 *
740 * Due to delays on oplock break requests, we need to wait at
741 * least 45 seconds before giving up on a request getting a
742 * response and going ahead and killing cifsd.
743 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500744 cifs_dbg(FYI, "Wait for exit from demultiplex thread\n");
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400745 msleep(46000);
746 /*
747 * If threads still have not exited they are probably never
748 * coming home not much else we can do but free the memory.
749 */
750 }
751
752 kfree(server->hostname);
753 kfree(server);
754
755 length = atomic_dec_return(&tcpSesAllocCount);
756 if (length > 0)
David Rientjes11d83362015-04-14 15:48:21 -0700757 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400758}
759
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400760static int
Jeff Laytone9097ab2011-10-19 15:29:40 -0400761standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid)
762{
763 int length;
764 char *buf = server->smallbuf;
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400765 unsigned int pdu_length = get_rfc1002_length(buf);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400766
767 /* make sure this will fit in a large buffer */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400768 if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) - 4) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500769 cifs_dbg(VFS, "SMB response too long (%u bytes)\n", pdu_length);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400770 cifs_reconnect(server);
771 wake_up(&server->response_q);
Pavel Shilovsky3fabaa22014-07-10 09:55:52 +0400772 return -ECONNABORTED;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400773 }
774
775 /* switch to large buffer if too big for a small one */
776 if (pdu_length > MAX_CIFS_SMALL_BUFFER_SIZE - 4) {
777 server->large_buf = true;
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400778 memcpy(server->bigbuf, buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400779 buf = server->bigbuf;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400780 }
781
782 /* now read the rest */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400783 length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1,
784 pdu_length - HEADER_SIZE(server) + 1 + 4);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400785 if (length < 0)
786 return length;
787 server->total_read += length;
788
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400789 dump_smb(buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400790
Pavel Shilovsky4326ed22016-11-17 15:24:46 -0800791 return cifs_handle_standard(server, mid);
792}
793
794int
795cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid)
796{
797 char *buf = server->large_buf ? server->bigbuf : server->smallbuf;
798 int length;
799
Jeff Laytone9097ab2011-10-19 15:29:40 -0400800 /*
801 * We know that we received enough to get to the MID as we
802 * checked the pdu_length earlier. Now check to see
803 * if the rest of the header is OK. We borrow the length
804 * var for the rest of the loop to avoid a new stack var.
805 *
806 * 48 bytes is enough to display the header and a little bit
807 * into the payload for debugging purposes.
808 */
Steve French373512e2015-12-18 13:05:30 -0600809 length = server->ops->check_message(buf, server->total_read, server);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400810 if (length != 0)
811 cifs_dump_mem("Bad SMB: ", buf,
812 min_t(unsigned int, server->total_read, 48));
813
Pavel Shilovsky2e44b282012-09-18 16:20:33 -0700814 if (server->ops->is_status_pending &&
815 server->ops->is_status_pending(buf, server, length))
816 return -1;
817
Jeff Laytonff4fa4a2012-02-07 06:31:05 -0500818 if (!mid)
819 return length;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400820
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400821 handle_mid(mid, server, buf, length);
Jeff Laytonff4fa4a2012-02-07 06:31:05 -0500822 return 0;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400823}
824
825static int
Al Viro7c97c202011-06-21 08:51:28 -0400826cifs_demultiplex_thread(void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
828 int length;
Al Viro7c97c202011-06-21 08:51:28 -0400829 struct TCP_Server_Info *server = p;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400830 unsigned int pdu_length;
831 char *buf = NULL;
Steve Frencha5c3e1c2014-09-16 04:16:19 -0500832 struct task_struct *task_to_wake = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 struct mid_q_entry *mid_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 current->flags |= PF_MEMALLOC;
Joe Perchesf96637b2013-05-04 22:12:25 -0500836 cifs_dbg(FYI, "Demultiplex PID: %d\n", task_pid_nr(current));
Jeff Layton93d0ec82008-08-02 08:00:48 -0400837
838 length = atomic_inc_return(&tcpSesAllocCount);
839 if (length > 1)
David Rientjes11d83362015-04-14 15:48:21 -0700840 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700842 set_freezable();
Jeff Layton469ee612008-10-16 18:46:39 +0000843 while (server->tcpStatus != CifsExiting) {
Steve Frenchede13272005-08-30 20:10:14 -0700844 if (try_to_freeze())
845 continue;
Steve Frenchb8643e12005-04-28 22:41:07 -0700846
Jeff Layton2a37ef92011-10-19 15:29:23 -0400847 if (!allocate_buffers(server))
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400848 continue;
Steve Frenchb8643e12005-04-28 22:41:07 -0700849
Jeff Layton2a37ef92011-10-19 15:29:23 -0400850 server->large_buf = false;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400851 buf = server->smallbuf;
Steve Frenchf01d5e12007-08-30 21:13:31 +0000852 pdu_length = 4; /* enough to get RFC1001 header */
Steve Frenchfda35942011-01-20 18:06:34 +0000853
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400854 length = cifs_read_from_socket(server, buf, pdu_length);
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400855 if (length < 0)
Steve Frenchfda35942011-01-20 18:06:34 +0000856 continue;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400857 server->total_read = length;
Steve French67010fb2005-04-28 22:41:09 -0700858
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400859 /*
860 * The right amount was read from socket - 4 bytes,
861 * so we can now interpret the length field.
862 */
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400863 pdu_length = get_rfc1002_length(buf);
Steve French46810cb2005-04-28 22:41:09 -0700864
Joe Perchesf96637b2013-05-04 22:12:25 -0500865 cifs_dbg(FYI, "RFC1002 header 0x%x\n", pdu_length);
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400866 if (!is_smb_response(server, buf[0]))
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000867 continue;
Steve Frenche4eb2952005-04-28 22:41:09 -0700868
Jeff Layton89482a52011-10-19 15:28:57 -0400869 /* make sure we have enough to get to the MID */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400870 if (pdu_length < HEADER_SIZE(server) - 1 - 4) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500871 cifs_dbg(VFS, "SMB response too short (%u bytes)\n",
872 pdu_length);
Jeff Layton89482a52011-10-19 15:28:57 -0400873 cifs_reconnect(server);
874 wake_up(&server->response_q);
875 continue;
Steve Frenche4eb2952005-04-28 22:41:09 -0700876 }
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400877
Jeff Layton89482a52011-10-19 15:28:57 -0400878 /* read down to the MID */
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400879 length = cifs_read_from_socket(server, buf + 4,
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400880 HEADER_SIZE(server) - 1 - 4);
Jeff Layton89482a52011-10-19 15:28:57 -0400881 if (length < 0)
882 continue;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400883 server->total_read += length;
Jeff Layton89482a52011-10-19 15:28:57 -0400884
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -0800885 if (server->ops->is_transform_hdr &&
886 server->ops->receive_transform &&
887 server->ops->is_transform_hdr(buf)) {
888 length = server->ops->receive_transform(server,
889 &mid_entry);
890 } else {
891 mid_entry = server->ops->find_mid(server, buf);
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400892
Pavel Shilovsky9bb17e02016-11-17 15:24:34 -0800893 if (!mid_entry || !mid_entry->receive)
894 length = standard_receive3(server, mid_entry);
895 else
896 length = mid_entry->receive(server, mid_entry);
897 }
Jeff Layton44d22d82011-10-19 15:29:49 -0400898
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400899 if (length < 0)
Steve Frenche4eb2952005-04-28 22:41:09 -0700900 continue;
901
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400902 if (server->large_buf)
Jeff Laytone9097ab2011-10-19 15:29:40 -0400903 buf = server->bigbuf;
Steve Frenche4eb2952005-04-28 22:41:09 -0700904
Steve Frenchfda35942011-01-20 18:06:34 +0000905 server->lstrp = jiffies;
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500906 if (mid_entry != NULL) {
Jeff Layton2a37ef92011-10-19 15:29:23 -0400907 if (!mid_entry->multiRsp || mid_entry->multiEnd)
908 mid_entry->callback(mid_entry);
Pavel Shilovsky7f0adb52012-05-28 15:50:10 +0400909 } else if (!server->ops->is_oplock_break ||
910 !server->ops->is_oplock_break(buf, server)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500911 cifs_dbg(VFS, "No task to wake, unknown frame received! NumMids %d\n",
912 atomic_read(&midCount));
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400913 cifs_dump_mem("Received Data is: ", buf,
914 HEADER_SIZE(server));
Steve French39798772006-05-31 22:40:51 +0000915#ifdef CONFIG_CIFS_DEBUG2
Pavel Shilovsky7f0adb52012-05-28 15:50:10 +0400916 if (server->ops->dump_detail)
917 server->ops->dump_detail(buf);
Steve French39798772006-05-31 22:40:51 +0000918 cifs_dump_mids(server);
919#endif /* CIFS_DEBUG2 */
Steve French50c2f752007-07-13 00:33:32 +0000920
Steve Frenche4eb2952005-04-28 22:41:09 -0700921 }
922 } /* end while !EXITING */
923
Justin P. Mattockfd62cb72011-02-24 22:15:02 -0800924 /* buffer usually freed in free_mid - need to free it here on exit */
Jeff Layton2a37ef92011-10-19 15:29:23 -0400925 cifs_buf_release(server->bigbuf);
926 if (server->smallbuf) /* no sense logging a debug message if NULL */
927 cifs_small_buf_release(server->smallbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Steve Frencha5c3e1c2014-09-16 04:16:19 -0500929 task_to_wake = xchg(&server->tsk, NULL);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400930 clean_demultiplex_info(server);
Steve Frencha5c3e1c2014-09-16 04:16:19 -0500931
932 /* if server->tsk was NULL then wait for a signal before exiting */
933 if (!task_to_wake) {
934 set_current_state(TASK_INTERRUPTIBLE);
935 while (!signal_pending(current)) {
936 schedule();
937 set_current_state(TASK_INTERRUPTIBLE);
938 }
939 set_current_state(TASK_RUNNING);
940 }
941
Jeff Layton0468a2c2008-12-01 07:09:35 -0500942 module_put_and_exit(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
Jeff Laytonc359cf32007-11-16 22:22:06 +0000945/* extract the host portion of the UNC string */
946static char *
947extract_hostname(const char *unc)
948{
949 const char *src;
950 char *dst, *delim;
951 unsigned int len;
952
953 /* skip double chars at beginning of string */
954 /* BB: check validity of these bytes? */
955 src = unc + 2;
956
957 /* delimiter between hostname and sharename is always '\\' now */
958 delim = strchr(src, '\\');
959 if (!delim)
960 return ERR_PTR(-EINVAL);
961
962 len = delim - src;
963 dst = kmalloc((len + 1), GFP_KERNEL);
964 if (dst == NULL)
965 return ERR_PTR(-ENOMEM);
966
967 memcpy(dst, src, len);
968 dst[len] = '\0';
969
970 return dst;
971}
972
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400973static int get_option_ul(substring_t args[], unsigned long *option)
974{
975 int rc;
976 char *string;
977
978 string = match_strdup(args);
979 if (string == NULL)
980 return -ENOMEM;
Sachin Prabhubfa890a2012-04-13 14:04:32 +0100981 rc = kstrtoul(string, 0, option);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400982 kfree(string);
983
984 return rc;
985}
986
Eric W. Biederman3da46562013-02-06 01:37:39 -0800987static int get_option_uid(substring_t args[], kuid_t *result)
988{
989 unsigned long value;
990 kuid_t uid;
991 int rc;
992
993 rc = get_option_ul(args, &value);
994 if (rc)
995 return rc;
996
997 uid = make_kuid(current_user_ns(), value);
998 if (!uid_valid(uid))
999 return -EINVAL;
1000
1001 *result = uid;
1002 return 0;
1003}
1004
1005static int get_option_gid(substring_t args[], kgid_t *result)
1006{
1007 unsigned long value;
1008 kgid_t gid;
1009 int rc;
1010
1011 rc = get_option_ul(args, &value);
1012 if (rc)
1013 return rc;
1014
1015 gid = make_kgid(current_user_ns(), value);
1016 if (!gid_valid(gid))
1017 return -EINVAL;
1018
1019 *result = gid;
1020 return 0;
1021}
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001022
1023static int cifs_parse_security_flavors(char *value,
1024 struct smb_vol *vol)
1025{
1026
1027 substring_t args[MAX_OPT_ARGS];
1028
Jeff Layton1e3cc572013-06-10 17:12:23 -05001029 /*
1030 * With mount options, the last one should win. Reset any existing
1031 * settings back to default.
1032 */
1033 vol->sectype = Unspecified;
1034 vol->sign = false;
1035
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001036 switch (match_token(value, cifs_secflavor_tokens, args)) {
Jeff Layton3f618222013-06-12 19:52:14 -05001037 case Opt_sec_krb5p:
1038 cifs_dbg(VFS, "sec=krb5p is not supported!\n");
1039 return 1;
1040 case Opt_sec_krb5i:
1041 vol->sign = true;
1042 /* Fallthrough */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001043 case Opt_sec_krb5:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001044 vol->sectype = Kerberos;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001045 break;
1046 case Opt_sec_ntlmsspi:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001047 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001048 /* Fallthrough */
1049 case Opt_sec_ntlmssp:
1050 vol->sectype = RawNTLMSSP;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001051 break;
1052 case Opt_sec_ntlmi:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001053 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001054 /* Fallthrough */
1055 case Opt_ntlm:
1056 vol->sectype = NTLM;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001057 break;
1058 case Opt_sec_ntlmv2i:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001059 vol->sign = true;
Jeff Layton3f618222013-06-12 19:52:14 -05001060 /* Fallthrough */
1061 case Opt_sec_ntlmv2:
1062 vol->sectype = NTLMv2;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001063 break;
1064#ifdef CONFIG_CIFS_WEAK_PW_HASH
1065 case Opt_sec_lanman:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001066 vol->sectype = LANMAN;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001067 break;
1068#endif
1069 case Opt_sec_none:
1070 vol->nullauth = 1;
1071 break;
1072 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001073 cifs_dbg(VFS, "bad security option: %s\n", value);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001074 return 1;
1075 }
1076
1077 return 0;
1078}
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080static int
Jeff Layton15b6a472012-05-16 07:50:15 -04001081cifs_parse_cache_flavor(char *value, struct smb_vol *vol)
1082{
1083 substring_t args[MAX_OPT_ARGS];
1084
1085 switch (match_token(value, cifs_cacheflavor_tokens, args)) {
1086 case Opt_cache_loose:
1087 vol->direct_io = false;
1088 vol->strict_io = false;
1089 break;
1090 case Opt_cache_strict:
1091 vol->direct_io = false;
1092 vol->strict_io = true;
1093 break;
1094 case Opt_cache_none:
1095 vol->direct_io = true;
1096 vol->strict_io = false;
1097 break;
1098 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001099 cifs_dbg(VFS, "bad cache= option: %s\n", value);
Jeff Layton15b6a472012-05-16 07:50:15 -04001100 return 1;
1101 }
1102 return 0;
1103}
1104
1105static int
Jeff Layton23db65f2012-05-15 12:20:51 -04001106cifs_parse_smb_version(char *value, struct smb_vol *vol)
1107{
1108 substring_t args[MAX_OPT_ARGS];
1109
1110 switch (match_token(value, cifs_smb_version_tokens, args)) {
1111 case Smb_1:
1112 vol->ops = &smb1_operations;
1113 vol->vals = &smb1_values;
1114 break;
Steve French1080ef72011-02-24 18:07:19 +00001115#ifdef CONFIG_CIFS_SMB2
Steve Frenchdd446b12012-11-28 23:21:06 -06001116 case Smb_20:
Pavel Shilovsky53ef1012013-09-05 16:11:28 +04001117 vol->ops = &smb20_operations;
Steve Frenchdd446b12012-11-28 23:21:06 -06001118 vol->vals = &smb20_values;
1119 break;
Steve French1080ef72011-02-24 18:07:19 +00001120 case Smb_21:
1121 vol->ops = &smb21_operations;
1122 vol->vals = &smb21_values;
1123 break;
Steve Frenche4aa25e2012-10-01 12:26:22 -05001124 case Smb_30:
Steve French38107d42012-12-08 22:08:06 -06001125 vol->ops = &smb30_operations;
Steve Frenche4aa25e2012-10-01 12:26:22 -05001126 vol->vals = &smb30_values;
1127 break;
Steve French20b6d8b2013-06-12 22:48:41 -05001128 case Smb_302:
1129 vol->ops = &smb30_operations; /* currently identical with 3.0 */
1130 vol->vals = &smb302_values;
1131 break;
Steve French5f7fbf72014-12-17 22:52:58 -06001132#ifdef CONFIG_CIFS_SMB311
1133 case Smb_311:
Steve Frenchaab18932015-06-23 23:37:11 -05001134 vol->ops = &smb311_operations;
Steve French5f7fbf72014-12-17 22:52:58 -06001135 vol->vals = &smb311_values;
1136 break;
1137#endif /* SMB311 */
Steve French1080ef72011-02-24 18:07:19 +00001138#endif
Jeff Layton23db65f2012-05-15 12:20:51 -04001139 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001140 cifs_dbg(VFS, "Unknown vers= option specified: %s\n", value);
Jeff Layton23db65f2012-05-15 12:20:51 -04001141 return 1;
1142 }
1143 return 0;
1144}
1145
Jeff Laytond387a5c2012-12-10 06:10:46 -05001146/*
1147 * Parse a devname into substrings and populate the vol->UNC and vol->prepath
1148 * fields with the result. Returns 0 on success and an error otherwise.
1149 */
1150static int
1151cifs_parse_devname(const char *devname, struct smb_vol *vol)
1152{
1153 char *pos;
1154 const char *delims = "/\\";
1155 size_t len;
1156
1157 /* make sure we have a valid UNC double delimiter prefix */
1158 len = strspn(devname, delims);
1159 if (len != 2)
1160 return -EINVAL;
1161
1162 /* find delimiter between host and sharename */
1163 pos = strpbrk(devname + 2, delims);
1164 if (!pos)
1165 return -EINVAL;
1166
1167 /* skip past delimiter */
1168 ++pos;
1169
1170 /* now go until next delimiter or end of string */
1171 len = strcspn(pos, delims);
1172
1173 /* move "pos" up to delimiter or NULL */
1174 pos += len;
1175 vol->UNC = kstrndup(devname, pos - devname, GFP_KERNEL);
1176 if (!vol->UNC)
1177 return -ENOMEM;
1178
1179 convert_delimiter(vol->UNC, '\\');
1180
Sachin Prabhu11e31642016-02-08 13:44:01 +05301181 /* skip any delimiter */
1182 if (*pos == '/' || *pos == '\\')
1183 pos++;
1184
1185 /* If pos is NULL then no prepath */
1186 if (!*pos)
Jeff Laytond387a5c2012-12-10 06:10:46 -05001187 return 0;
1188
1189 vol->prepath = kstrdup(pos, GFP_KERNEL);
1190 if (!vol->prepath)
1191 return -ENOMEM;
1192
1193 return 0;
1194}
1195
Jeff Layton23db65f2012-05-15 12:20:51 -04001196static int
Sean Finneyb9468452011-04-11 13:19:32 +00001197cifs_parse_mount_options(const char *mountdata, const char *devname,
Steve French50c2f752007-07-13 00:33:32 +00001198 struct smb_vol *vol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001200 char *data, *end;
Vasily Averin957df452011-06-06 11:33:12 +04001201 char *mountdata_copy = NULL, *options;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 unsigned int temp_len, i, j;
1203 char separator[2];
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001204 short int override_uid = -1;
1205 short int override_gid = -1;
1206 bool uid_specified = false;
1207 bool gid_specified = false;
Jeff Laytond8162552012-03-23 14:40:56 -04001208 bool sloppy = false;
1209 char *invalid = NULL;
Jeff Layton88463992010-11-22 15:31:03 -05001210 char *nodename = utsname()->nodename;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001211 char *string = NULL;
1212 char *tmp_end, *value;
1213 char delim;
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001214 bool got_ip = false;
1215 unsigned short port = 0;
1216 struct sockaddr *dstaddr = (struct sockaddr *)&vol->dstaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 separator[0] = ',';
Steve French50c2f752007-07-13 00:33:32 +00001219 separator[1] = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001220 delim = separator[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Jeff Layton6ee95422012-11-26 11:09:57 -05001222 /* ensure we always start with zeroed-out smb_vol */
1223 memset(vol, 0, sizeof(*vol));
1224
Jeff Layton88463992010-11-22 15:31:03 -05001225 /*
1226 * does not have to be perfect mapping since field is
1227 * informational, only used for servers that do not support
1228 * port 445 and it can be overridden at mount time
1229 */
Jeff Layton1397f2e2011-01-07 11:30:28 -05001230 memset(vol->source_rfc1001_name, 0x20, RFC1001_NAME_LEN);
1231 for (i = 0; i < strnlen(nodename, RFC1001_NAME_LEN); i++)
Jeff Layton88463992010-11-22 15:31:03 -05001232 vol->source_rfc1001_name[i] = toupper(nodename[i]);
1233
Jeff Layton1397f2e2011-01-07 11:30:28 -05001234 vol->source_rfc1001_name[RFC1001_NAME_LEN] = 0;
Steve Frencha10faeb22005-08-22 21:38:31 -07001235 /* null target name indicates to use *SMBSERVR default called name
1236 if we end up sending RFC1001 session initialize */
1237 vol->target_rfc1001_name[0] = 0;
Jeff Layton3e4b3e12010-07-19 18:00:17 -04001238 vol->cred_uid = current_uid();
1239 vol->linux_uid = current_uid();
David Howellsa001e5b2008-11-14 10:38:47 +11001240 vol->linux_gid = current_gid();
Jeff Laytonf55ed1a2009-05-26 16:28:11 -04001241
Steve French2baa2682014-09-27 02:19:01 -05001242 /*
1243 * default to SFM style remapping of seven reserved characters
1244 * unless user overrides it or we negotiate CIFS POSIX where
1245 * it is unnecessary. Can not simultaneously use more than one mapping
1246 * since then readdir could list files that open could not open
1247 */
1248 vol->remap = true;
1249
Jeff Laytonf55ed1a2009-05-26 16:28:11 -04001250 /* default to only allowing write access to owner of the mount */
1251 vol->dir_mode = vol->file_mode = S_IRUGO | S_IXUGO | S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 /* vol->retry default is 0 (i.e. "soft" limited retry not hard retry) */
Jeremy Allisonac670552005-06-22 17:26:35 -07001254 /* default is always to request posix paths. */
1255 vol->posix_paths = 1;
Jeff Laytona0c92172009-05-27 15:40:47 -04001256 /* default to using server inode numbers where available */
1257 vol->server_ino = 1;
Jeremy Allisonac670552005-06-22 17:26:35 -07001258
Jeff Layton1b359202012-09-19 15:20:27 -07001259 /* default is to use strict cifs caching semantics */
1260 vol->strict_io = true;
1261
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05301262 vol->actimeo = CIFS_DEF_ACTIMEO;
1263
Jeff Layton23db65f2012-05-15 12:20:51 -04001264 /* FIXME: add autonegotiation -- for now, SMB1 is default */
1265 vol->ops = &smb1_operations;
1266 vol->vals = &smb1_values;
1267
Rabin Vincentb782fcc2016-07-19 09:25:45 +02001268 vol->echo_interval = SMB_ECHO_INTERVAL_DEFAULT;
1269
Sean Finneyb9468452011-04-11 13:19:32 +00001270 if (!mountdata)
1271 goto cifs_parse_mount_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Sean Finneyb9468452011-04-11 13:19:32 +00001273 mountdata_copy = kstrndup(mountdata, PAGE_SIZE, GFP_KERNEL);
1274 if (!mountdata_copy)
1275 goto cifs_parse_mount_err;
1276
1277 options = mountdata_copy;
Pavel Shilovsky4906e502011-04-14 22:00:56 +04001278 end = options + strlen(options);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001279
Steve French50c2f752007-07-13 00:33:32 +00001280 if (strncmp(options, "sep=", 4) == 0) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001281 if (options[4] != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 separator[0] = options[4];
1283 options += 5;
1284 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -05001285 cifs_dbg(FYI, "Null separator not allowed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 }
1287 }
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001288 vol->backupuid_specified = false; /* no backup intent for a user */
1289 vol->backupgid_specified = false; /* no backup intent for a group */
Steve French50c2f752007-07-13 00:33:32 +00001290
Jeff Layton37d4f992013-05-24 07:40:05 -04001291 switch (cifs_parse_devname(devname, vol)) {
1292 case 0:
1293 break;
1294 case -ENOMEM:
1295 cifs_dbg(VFS, "Unable to allocate memory for devname.\n");
1296 goto cifs_parse_mount_err;
1297 case -EINVAL:
1298 cifs_dbg(VFS, "Malformed UNC in devname.\n");
1299 goto cifs_parse_mount_err;
1300 default:
1301 cifs_dbg(VFS, "Unknown error parsing devname.\n");
1302 goto cifs_parse_mount_err;
Jeff Laytond387a5c2012-12-10 06:10:46 -05001303 }
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 while ((data = strsep(&options, separator)) != NULL) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001306 substring_t args[MAX_OPT_ARGS];
1307 unsigned long option;
1308 int token;
1309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 if (!*data)
1311 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001313 token = match_token(data, cifs_mount_option_tokens, args);
1314
1315 switch (token) {
1316
1317 /* Ingnore the following */
1318 case Opt_ignore:
1319 break;
1320
1321 /* Boolean values */
1322 case Opt_user_xattr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 vol->no_xattr = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001324 break;
1325 case Opt_nouser_xattr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 vol->no_xattr = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001327 break;
1328 case Opt_forceuid:
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001329 override_uid = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001330 break;
1331 case Opt_noforceuid:
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001332 override_uid = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001333 break;
Jeff Layton72bd4812012-10-03 16:02:36 -04001334 case Opt_forcegid:
1335 override_gid = 1;
1336 break;
1337 case Opt_noforcegid:
1338 override_gid = 0;
1339 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001340 case Opt_noblocksend:
Steve Frenchedf1ae42008-10-29 00:47:57 +00001341 vol->noblocksnd = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001342 break;
1343 case Opt_noautotune:
Steve Frenchedf1ae42008-10-29 00:47:57 +00001344 vol->noautotune = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001345 break;
1346 case Opt_hard:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 vol->retry = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001348 break;
1349 case Opt_soft:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 vol->retry = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001351 break;
1352 case Opt_perm:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 vol->noperm = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001354 break;
1355 case Opt_noperm:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 vol->noperm = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001357 break;
1358 case Opt_mapchars:
Steve French2baa2682014-09-27 02:19:01 -05001359 vol->sfu_remap = true;
1360 vol->remap = false; /* disable SFM mapping */
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001361 break;
1362 case Opt_nomapchars:
Steve French2baa2682014-09-27 02:19:01 -05001363 vol->sfu_remap = false;
1364 break;
1365 case Opt_mapposix:
1366 vol->remap = true;
1367 vol->sfu_remap = false; /* disable SFU mapping */
1368 break;
1369 case Opt_nomapposix:
1370 vol->remap = false;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001371 break;
1372 case Opt_sfu:
Steve French50c2f752007-07-13 00:33:32 +00001373 vol->sfu_emul = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001374 break;
1375 case Opt_nosfu:
Steve French50c2f752007-07-13 00:33:32 +00001376 vol->sfu_emul = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001377 break;
1378 case Opt_nodfs:
Steve French2c1b8612008-10-16 18:35:21 +00001379 vol->nodfs = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001380 break;
1381 case Opt_posixpaths:
Jeremy Allisonac670552005-06-22 17:26:35 -07001382 vol->posix_paths = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001383 break;
1384 case Opt_noposixpaths:
Jeremy Allisonac670552005-06-22 17:26:35 -07001385 vol->posix_paths = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001386 break;
1387 case Opt_nounix:
Steve Frenchc18c8422007-07-18 23:21:09 +00001388 vol->no_linux_ext = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001389 break;
1390 case Opt_nocase:
Steve French50c2f752007-07-13 00:33:32 +00001391 vol->nocase = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001392 break;
1393 case Opt_brl:
Steve Frenchc46fa8a2005-08-18 20:49:57 -07001394 vol->nobrl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001395 break;
1396 case Opt_nobrl:
Steve Frenchc46fa8a2005-08-18 20:49:57 -07001397 vol->nobrl = 1;
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +04001398 /*
1399 * turn off mandatory locking in mode
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001400 * if remote locking is turned off since the
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +04001401 * local vfs will do advisory
1402 */
Steve French50c2f752007-07-13 00:33:32 +00001403 if (vol->file_mode ==
1404 (S_IALLUGO & ~(S_ISUID | S_IXGRP)))
Steve Frenchd3485d32005-08-19 11:04:29 -07001405 vol->file_mode = S_IALLUGO;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001406 break;
1407 case Opt_forcemandatorylock:
Steve French13a6e422008-12-02 17:24:33 +00001408 vol->mand_lock = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001409 break;
1410 case Opt_setuids:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 vol->setuids = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001412 break;
1413 case Opt_nosetuids:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 vol->setuids = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001415 break;
Steve French95932652016-09-23 01:36:34 -05001416 case Opt_setuidfromacl:
1417 vol->setuidfromacl = 1;
1418 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001419 case Opt_dynperm:
Jeff Laytond0a9c072008-05-12 22:23:49 +00001420 vol->dynperm = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001421 break;
1422 case Opt_nodynperm:
Jeff Laytond0a9c072008-05-12 22:23:49 +00001423 vol->dynperm = false;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001424 break;
1425 case Opt_nohard:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 vol->retry = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001427 break;
1428 case Opt_nosoft:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 vol->retry = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001430 break;
1431 case Opt_nointr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 vol->intr = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001433 break;
1434 case Opt_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 vol->intr = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001436 break;
1437 case Opt_nostrictsync:
Steve Frenchbe652442009-02-23 15:21:59 +00001438 vol->nostrictsync = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001439 break;
1440 case Opt_strictsync:
Steve Frenchbe652442009-02-23 15:21:59 +00001441 vol->nostrictsync = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001442 break;
1443 case Opt_serverino:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 vol->server_ino = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001445 break;
1446 case Opt_noserverino:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 vol->server_ino = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001448 break;
1449 case Opt_rwpidforward:
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00001450 vol->rwpidforward = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001451 break;
1452 case Opt_cifsacl:
Steve French0a4b92c2006-01-12 15:44:21 -08001453 vol->cifs_acl = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001454 break;
1455 case Opt_nocifsacl:
Steve French0a4b92c2006-01-12 15:44:21 -08001456 vol->cifs_acl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001457 break;
1458 case Opt_acl:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 vol->no_psx_acl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001460 break;
1461 case Opt_noacl:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 vol->no_psx_acl = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001463 break;
1464 case Opt_locallease:
Steve French84210e92008-10-23 04:42:37 +00001465 vol->local_lease = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001466 break;
1467 case Opt_sign:
Jeff Layton1e3cc572013-06-10 17:12:23 -05001468 vol->sign = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001469 break;
1470 case Opt_seal:
Steve French95b1cb92008-05-15 16:44:38 +00001471 /* we do not do the following in secFlags because seal
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001472 * is a per tree connection (mount) not a per socket
1473 * or per-smb connection option in the protocol
1474 * vol->secFlg |= CIFSSEC_MUST_SEAL;
1475 */
Steve French95b1cb92008-05-15 16:44:38 +00001476 vol->seal = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001477 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001478 case Opt_noac:
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001479 pr_warn("CIFS: Mount option noac not supported. Instead set /proc/fs/cifs/LookupCacheEnabled to 0\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001480 break;
1481 case Opt_fsc:
Suresh Jayaraman607a5692010-11-24 17:49:05 +05301482#ifndef CONFIG_CIFS_FSCACHE
Joe Perchesf96637b2013-05-04 22:12:25 -05001483 cifs_dbg(VFS, "FS-Cache support needs CONFIG_CIFS_FSCACHE kernel config option set\n");
Sean Finneyb9468452011-04-11 13:19:32 +00001484 goto cifs_parse_mount_err;
Suresh Jayaraman607a5692010-11-24 17:49:05 +05301485#endif
Suresh Jayaramanfa1df752010-07-05 18:13:36 +05301486 vol->fsc = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001487 break;
1488 case Opt_mfsymlinks:
Stefan Metzmacher736a33202010-07-30 14:56:00 +02001489 vol->mfsymlinks = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001490 break;
1491 case Opt_multiuser:
Jeff Layton0eb8a132010-10-06 19:51:12 -04001492 vol->multiuser = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001493 break;
Jeff Laytond8162552012-03-23 14:40:56 -04001494 case Opt_sloppy:
1495 sloppy = true;
1496 break;
Jeff Laytona0b3df52013-05-24 07:40:59 -04001497 case Opt_nosharesock:
1498 vol->nosharesock = true;
1499 break;
Steve Frenchb2a30772015-09-29 21:49:28 -05001500 case Opt_nopersistent:
1501 vol->nopersistent = true;
1502 if (vol->persistent) {
1503 cifs_dbg(VFS,
1504 "persistenthandles mount options conflict\n");
1505 goto cifs_parse_mount_err;
1506 }
1507 break;
1508 case Opt_persistent:
1509 vol->persistent = true;
Steve French592fafe2015-11-03 10:08:53 -06001510 if ((vol->nopersistent) || (vol->resilient)) {
Steve Frenchb2a30772015-09-29 21:49:28 -05001511 cifs_dbg(VFS,
1512 "persistenthandles mount options conflict\n");
1513 goto cifs_parse_mount_err;
1514 }
1515 break;
Steve French592fafe2015-11-03 10:08:53 -06001516 case Opt_resilient:
1517 vol->resilient = true;
1518 if (vol->persistent) {
1519 cifs_dbg(VFS,
1520 "persistenthandles mount options conflict\n");
1521 goto cifs_parse_mount_err;
1522 }
1523 break;
1524 case Opt_noresilient:
1525 vol->resilient = false; /* already the default */
1526 break;
Germano Percossi39566442016-12-15 12:31:18 +05301527 case Opt_domainauto:
1528 vol->domainauto = true;
1529 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001530
1531 /* Numeric Values */
1532 case Opt_backupuid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001533 if (get_option_uid(args, &vol->backupuid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001534 cifs_dbg(VFS, "%s: Invalid backupuid value\n",
1535 __func__);
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001536 goto cifs_parse_mount_err;
1537 }
1538 vol->backupuid_specified = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001539 break;
1540 case Opt_backupgid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001541 if (get_option_gid(args, &vol->backupgid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001542 cifs_dbg(VFS, "%s: Invalid backupgid value\n",
1543 __func__);
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001544 goto cifs_parse_mount_err;
1545 }
1546 vol->backupgid_specified = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001547 break;
1548 case Opt_uid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001549 if (get_option_uid(args, &vol->linux_uid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001550 cifs_dbg(VFS, "%s: Invalid uid value\n",
1551 __func__);
Sean Finneyb9468452011-04-11 13:19:32 +00001552 goto cifs_parse_mount_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001554 uid_specified = true;
1555 break;
1556 case Opt_cruid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001557 if (get_option_uid(args, &vol->cred_uid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001558 cifs_dbg(VFS, "%s: Invalid cruid value\n",
1559 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001560 goto cifs_parse_mount_err;
1561 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001562 break;
1563 case Opt_gid:
Eric W. Biederman3da46562013-02-06 01:37:39 -08001564 if (get_option_gid(args, &vol->linux_gid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001565 cifs_dbg(VFS, "%s: Invalid gid value\n",
1566 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001567 goto cifs_parse_mount_err;
1568 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001569 gid_specified = true;
1570 break;
1571 case Opt_file_mode:
1572 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001573 cifs_dbg(VFS, "%s: Invalid file_mode value\n",
1574 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001575 goto cifs_parse_mount_err;
1576 }
1577 vol->file_mode = option;
1578 break;
1579 case Opt_dirmode:
1580 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001581 cifs_dbg(VFS, "%s: Invalid dir_mode value\n",
1582 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001583 goto cifs_parse_mount_err;
1584 }
1585 vol->dir_mode = option;
1586 break;
1587 case Opt_port:
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001588 if (get_option_ul(args, &option) ||
1589 option > USHRT_MAX) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001590 cifs_dbg(VFS, "%s: Invalid port value\n",
1591 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001592 goto cifs_parse_mount_err;
1593 }
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001594 port = (unsigned short)option;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001595 break;
1596 case Opt_rsize:
1597 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001598 cifs_dbg(VFS, "%s: Invalid rsize value\n",
1599 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001600 goto cifs_parse_mount_err;
1601 }
1602 vol->rsize = option;
1603 break;
1604 case Opt_wsize:
1605 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001606 cifs_dbg(VFS, "%s: Invalid wsize value\n",
1607 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001608 goto cifs_parse_mount_err;
1609 }
1610 vol->wsize = option;
1611 break;
1612 case Opt_actimeo:
1613 if (get_option_ul(args, &option)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001614 cifs_dbg(VFS, "%s: Invalid actimeo value\n",
1615 __func__);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001616 goto cifs_parse_mount_err;
1617 }
1618 vol->actimeo = HZ * option;
1619 if (vol->actimeo > CIFS_MAX_ACTIMEO) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001620 cifs_dbg(VFS, "attribute cache timeout too large\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001621 goto cifs_parse_mount_err;
1622 }
1623 break;
Steve Frenchadfeb3e2015-12-18 12:31:36 -06001624 case Opt_echo_interval:
1625 if (get_option_ul(args, &option)) {
1626 cifs_dbg(VFS, "%s: Invalid echo interval value\n",
1627 __func__);
1628 goto cifs_parse_mount_err;
1629 }
1630 vol->echo_interval = option;
1631 break;
Steve French8b217fe2016-11-11 22:36:20 -06001632 case Opt_snapshot:
1633 if (get_option_ul(args, &option)) {
1634 cifs_dbg(VFS, "%s: Invalid snapshot time\n",
1635 __func__);
1636 goto cifs_parse_mount_err;
1637 }
1638 vol->snapshot_time = option;
1639 break;
Steve French141891f2016-09-23 00:44:16 -05001640 case Opt_max_credits:
1641 if (get_option_ul(args, &option) || (option < 20) ||
1642 (option > 60000)) {
1643 cifs_dbg(VFS, "%s: Invalid max_credits value\n",
1644 __func__);
1645 goto cifs_parse_mount_err;
1646 }
1647 vol->max_credits = option;
1648 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001649
1650 /* String Arguments */
1651
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001652 case Opt_blank_user:
1653 /* null user, ie. anonymous authentication */
1654 vol->nullauth = 1;
1655 vol->username = NULL;
1656 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001657 case Opt_user:
1658 string = match_strdup(args);
1659 if (string == NULL)
1660 goto out_nomem;
1661
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04001662 if (strnlen(string, CIFS_MAX_USERNAME_LEN) >
1663 CIFS_MAX_USERNAME_LEN) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001664 pr_warn("CIFS: username too long\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001665 goto cifs_parse_mount_err;
1666 }
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04001667
1668 kfree(vol->username);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001669 vol->username = kstrdup(string, GFP_KERNEL);
Joe Perchesf96637b2013-05-04 22:12:25 -05001670 if (!vol->username)
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001671 goto cifs_parse_mount_err;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001672 break;
1673 case Opt_blank_pass:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001674 /* passwords have to be handled differently
1675 * to allow the character used for deliminator
1676 * to be passed within them
1677 */
1678
Sachin Prabhuc369c9a2013-04-09 18:17:41 +01001679 /*
1680 * Check if this is a case where the password
1681 * starts with a delimiter
1682 */
1683 tmp_end = strchr(data, '=');
1684 tmp_end++;
1685 if (!(tmp_end < end && tmp_end[1] == delim)) {
1686 /* No it is not. Set the password to NULL */
Namjae Jeond6ccf492014-08-21 19:11:20 +09001687 kfree(vol->password);
Sachin Prabhuc369c9a2013-04-09 18:17:41 +01001688 vol->password = NULL;
1689 break;
1690 }
1691 /* Yes it is. Drop down to Opt_pass below.*/
1692 case Opt_pass:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001693 /* Obtain the value string */
1694 value = strchr(data, '=');
Sachin Prabhu10238072012-03-28 18:07:08 +01001695 value++;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001696
1697 /* Set tmp_end to end of the string */
1698 tmp_end = (char *) value + strlen(value);
1699
1700 /* Check if following character is the deliminator
1701 * If yes, we have encountered a double deliminator
1702 * reset the NULL character to the deliminator
1703 */
Suresh Jayaramane73f8432012-06-12 07:15:50 +05301704 if (tmp_end < end && tmp_end[1] == delim) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001705 tmp_end[0] = delim;
1706
Suresh Jayaramane73f8432012-06-12 07:15:50 +05301707 /* Keep iterating until we get to a single
1708 * deliminator OR the end
1709 */
1710 while ((tmp_end = strchr(tmp_end, delim))
1711 != NULL && (tmp_end[1] == delim)) {
1712 tmp_end = (char *) &tmp_end[2];
1713 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001714
Suresh Jayaramane73f8432012-06-12 07:15:50 +05301715 /* Reset var options to point to next element */
1716 if (tmp_end) {
1717 tmp_end[0] = '\0';
1718 options = (char *) &tmp_end[1];
1719 } else
1720 /* Reached the end of the mount option
1721 * string */
1722 options = end;
1723 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001724
Namjae Jeond6ccf492014-08-21 19:11:20 +09001725 kfree(vol->password);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001726 /* Now build new password string */
1727 temp_len = strlen(value);
1728 vol->password = kzalloc(temp_len+1, GFP_KERNEL);
1729 if (vol->password == NULL) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001730 pr_warn("CIFS: no memory for password\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001731 goto cifs_parse_mount_err;
1732 }
1733
1734 for (i = 0, j = 0; i < temp_len; i++, j++) {
1735 vol->password[j] = value[i];
1736 if ((value[i] == delim) &&
1737 value[i+1] == delim)
1738 /* skip the second deliminator */
1739 i++;
1740 }
1741 vol->password[j] = '\0';
1742 break;
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001743 case Opt_blank_ip:
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001744 /* FIXME: should this be an error instead? */
1745 got_ip = false;
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001746 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001747 case Opt_ip:
1748 string = match_strdup(args);
1749 if (string == NULL)
1750 goto out_nomem;
1751
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001752 if (!cifs_convert_address(dstaddr, string,
1753 strlen(string))) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001754 pr_err("CIFS: bad ip= option (%s).\n", string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001755 goto cifs_parse_mount_err;
1756 }
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001757 got_ip = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001758 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001759 case Opt_domain:
1760 string = match_strdup(args);
1761 if (string == NULL)
1762 goto out_nomem;
1763
Chen Gang057d6332013-07-19 09:01:36 +08001764 if (strnlen(string, CIFS_MAX_DOMAINNAME_LEN)
1765 == CIFS_MAX_DOMAINNAME_LEN) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001766 pr_warn("CIFS: domain name too long\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001767 goto cifs_parse_mount_err;
1768 }
1769
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04001770 kfree(vol->domainname);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001771 vol->domainname = kstrdup(string, GFP_KERNEL);
1772 if (!vol->domainname) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001773 pr_warn("CIFS: no memory for domainname\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001774 goto cifs_parse_mount_err;
1775 }
Joe Perchesf96637b2013-05-04 22:12:25 -05001776 cifs_dbg(FYI, "Domain name set\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001777 break;
1778 case Opt_srcaddr:
1779 string = match_strdup(args);
1780 if (string == NULL)
1781 goto out_nomem;
1782
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001783 if (!cifs_convert_address(
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001784 (struct sockaddr *)&vol->srcaddr,
1785 string, strlen(string))) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001786 pr_warn("CIFS: Could not parse srcaddr: %s\n",
1787 string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001788 goto cifs_parse_mount_err;
1789 }
1790 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001791 case Opt_iocharset:
1792 string = match_strdup(args);
1793 if (string == NULL)
1794 goto out_nomem;
1795
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001796 if (strnlen(string, 1024) >= 65) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001797 pr_warn("CIFS: iocharset name too long.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001798 goto cifs_parse_mount_err;
1799 }
1800
Rasmus Villemoes87e747c2014-10-13 15:54:35 -07001801 if (strncasecmp(string, "default", 7) != 0) {
Taesoo Kim2bd50fb2015-03-21 19:08:30 -04001802 kfree(vol->iocharset);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001803 vol->iocharset = kstrdup(string,
1804 GFP_KERNEL);
1805 if (!vol->iocharset) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001806 pr_warn("CIFS: no memory for charset\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001807 goto cifs_parse_mount_err;
1808 }
1809 }
1810 /* if iocharset not set then load_nls_default
1811 * is used by caller
1812 */
Joe Perchesf96637b2013-05-04 22:12:25 -05001813 cifs_dbg(FYI, "iocharset set to %s\n", string);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001814 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001815 case Opt_netbiosname:
1816 string = match_strdup(args);
1817 if (string == NULL)
1818 goto out_nomem;
1819
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001820 memset(vol->source_rfc1001_name, 0x20,
1821 RFC1001_NAME_LEN);
1822 /*
1823 * FIXME: are there cases in which a comma can
1824 * be valid in workstation netbios name (and
1825 * need special handling)?
1826 */
1827 for (i = 0; i < RFC1001_NAME_LEN; i++) {
1828 /* don't ucase netbiosname for user */
1829 if (string[i] == 0)
1830 break;
1831 vol->source_rfc1001_name[i] = string[i];
1832 }
1833 /* The string has 16th byte zero still from
1834 * set at top of the function
1835 */
1836 if (i == RFC1001_NAME_LEN && string[i] != 0)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001837 pr_warn("CIFS: netbiosname longer than 15 truncated.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001838 break;
1839 case Opt_servern:
1840 /* servernetbiosname specified override *SMBSERVER */
1841 string = match_strdup(args);
1842 if (string == NULL)
1843 goto out_nomem;
1844
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001845 /* last byte, type, is 0x20 for servr type */
1846 memset(vol->target_rfc1001_name, 0x20,
1847 RFC1001_NAME_LEN_WITH_NULL);
1848
1849 /* BB are there cases in which a comma can be
1850 valid in this workstation netbios name
1851 (and need special handling)? */
1852
1853 /* user or mount helper must uppercase the
1854 netbios name */
1855 for (i = 0; i < 15; i++) {
1856 if (string[i] == 0)
1857 break;
1858 vol->target_rfc1001_name[i] = string[i];
1859 }
1860 /* The string has 16th byte zero still from
1861 set at top of the function */
1862 if (i == RFC1001_NAME_LEN && string[i] != 0)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001863 pr_warn("CIFS: server netbiosname longer than 15 truncated.\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001864 break;
1865 case Opt_ver:
1866 string = match_strdup(args);
1867 if (string == NULL)
1868 goto out_nomem;
1869
Rasmus Villemoes87e747c2014-10-13 15:54:35 -07001870 if (strncasecmp(string, "1", 1) == 0) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001871 /* This is the default */
1872 break;
1873 }
1874 /* For all other value, error */
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001875 pr_warn("CIFS: Invalid version specified\n");
Sean Finneyb9468452011-04-11 13:19:32 +00001876 goto cifs_parse_mount_err;
Jeff Layton23db65f2012-05-15 12:20:51 -04001877 case Opt_vers:
1878 string = match_strdup(args);
1879 if (string == NULL)
1880 goto out_nomem;
1881
1882 if (cifs_parse_smb_version(string, vol) != 0)
1883 goto cifs_parse_mount_err;
1884 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001885 case Opt_sec:
1886 string = match_strdup(args);
1887 if (string == NULL)
1888 goto out_nomem;
1889
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001890 if (cifs_parse_security_flavors(string, vol) != 0)
1891 goto cifs_parse_mount_err;
1892 break;
Jeff Layton15b6a472012-05-16 07:50:15 -04001893 case Opt_cache:
1894 string = match_strdup(args);
1895 if (string == NULL)
1896 goto out_nomem;
1897
1898 if (cifs_parse_cache_flavor(string, vol) != 0)
1899 goto cifs_parse_mount_err;
1900 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001901 default:
Jeff Laytond8162552012-03-23 14:40:56 -04001902 /*
1903 * An option we don't recognize. Save it off for later
1904 * if we haven't already found one
1905 */
1906 if (!invalid)
1907 invalid = data;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001908 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001910 /* Free up any allocated string */
1911 kfree(string);
1912 string = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 }
Jeff Layton0eb8a132010-10-06 19:51:12 -04001914
Jeff Laytond8162552012-03-23 14:40:56 -04001915 if (!sloppy && invalid) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001916 pr_err("CIFS: Unknown mount option \"%s\"\n", invalid);
Jeff Laytond8162552012-03-23 14:40:56 -04001917 goto cifs_parse_mount_err;
1918 }
1919
Jeff Layton8a8798a2012-01-17 16:09:15 -05001920#ifndef CONFIG_KEYS
1921 /* Muliuser mounts require CONFIG_KEYS support */
1922 if (vol->multiuser) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001923 cifs_dbg(VFS, "Multiuser mounts require kernels with CONFIG_KEYS enabled\n");
Sean Finneyb9468452011-04-11 13:19:32 +00001924 goto cifs_parse_mount_err;
Jeff Layton0eb8a132010-10-06 19:51:12 -04001925 }
Jeff Layton8a8798a2012-01-17 16:09:15 -05001926#endif
Jeff Laytone5e69ab2012-11-25 08:00:42 -05001927 if (!vol->UNC) {
Jeff Layton37d4f992013-05-24 07:40:05 -04001928 cifs_dbg(VFS, "CIFS mount error: No usable UNC path provided in device string!\n");
Jeff Laytone5e69ab2012-11-25 08:00:42 -05001929 goto cifs_parse_mount_err;
1930 }
Jeff Layton0eb8a132010-10-06 19:51:12 -04001931
Jeff Layton62a1a432012-12-10 06:10:45 -05001932 /* make sure UNC has a share name */
1933 if (!strchr(vol->UNC + 3, '\\')) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001934 cifs_dbg(VFS, "Malformed UNC. Unable to find share name.\n");
Jeff Layton62a1a432012-12-10 06:10:45 -05001935 goto cifs_parse_mount_err;
1936 }
1937
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001938 if (!got_ip) {
1939 /* No ip= option specified? Try to get it from UNC */
1940 if (!cifs_convert_address(dstaddr, &vol->UNC[2],
1941 strlen(&vol->UNC[2]))) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001942 pr_err("Unable to determine destination address.\n");
Jeff Laytonb979aaa2012-11-26 11:09:55 -05001943 goto cifs_parse_mount_err;
1944 }
1945 }
1946
1947 /* set the port that we got earlier */
1948 cifs_set_port(dstaddr, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001950 if (uid_specified)
1951 vol->override_uid = override_uid;
1952 else if (override_uid == 1)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001953 pr_notice("CIFS: ignoring forceuid mount option specified with no uid= option.\n");
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001954
1955 if (gid_specified)
1956 vol->override_gid = override_gid;
1957 else if (override_gid == 1)
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001958 pr_notice("CIFS: ignoring forcegid mount option specified with no gid= option.\n");
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001959
Sean Finneyb9468452011-04-11 13:19:32 +00001960 kfree(mountdata_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 return 0;
Sean Finneyb9468452011-04-11 13:19:32 +00001962
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001963out_nomem:
Andy Shevchenko0b456f02014-08-27 16:49:44 +03001964 pr_warn("Could not allocate temporary buffer\n");
Sean Finneyb9468452011-04-11 13:19:32 +00001965cifs_parse_mount_err:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001966 kfree(string);
Sean Finneyb9468452011-04-11 13:19:32 +00001967 kfree(mountdata_copy);
1968 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969}
1970
Ben Greear3eb9a882010-09-01 17:06:02 -07001971/** Returns true if srcaddr isn't specified and rhs isn't
1972 * specified, or if srcaddr is specified and
1973 * matches the IP address of the rhs argument.
1974 */
Jeff Layton45151482010-07-06 20:43:02 -04001975static bool
Ben Greear3eb9a882010-09-01 17:06:02 -07001976srcip_matches(struct sockaddr *srcaddr, struct sockaddr *rhs)
1977{
1978 switch (srcaddr->sa_family) {
1979 case AF_UNSPEC:
1980 return (rhs->sa_family == AF_UNSPEC);
1981 case AF_INET: {
1982 struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr;
1983 struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs;
1984 return (saddr4->sin_addr.s_addr == vaddr4->sin_addr.s_addr);
1985 }
1986 case AF_INET6: {
1987 struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr;
Nickolai Zeldoviche3e27752013-01-16 21:36:17 -05001988 struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs;
Ben Greear3eb9a882010-09-01 17:06:02 -07001989 return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr);
1990 }
1991 default:
1992 WARN_ON(1);
1993 return false; /* don't expect to be here */
1994 }
1995}
1996
Pavel Shilovsky4b886132010-12-13 22:18:07 +03001997/*
1998 * If no port is specified in addr structure, we try to match with 445 port
1999 * and if it fails - with 139 ports. It should be called only if address
2000 * families of server and addr are equal.
2001 */
2002static bool
2003match_port(struct TCP_Server_Info *server, struct sockaddr *addr)
2004{
Steve French6da97912011-03-13 18:55:55 +00002005 __be16 port, *sport;
Pavel Shilovsky4b886132010-12-13 22:18:07 +03002006
2007 switch (addr->sa_family) {
2008 case AF_INET:
2009 sport = &((struct sockaddr_in *) &server->dstaddr)->sin_port;
2010 port = ((struct sockaddr_in *) addr)->sin_port;
2011 break;
2012 case AF_INET6:
2013 sport = &((struct sockaddr_in6 *) &server->dstaddr)->sin6_port;
2014 port = ((struct sockaddr_in6 *) addr)->sin6_port;
2015 break;
2016 default:
2017 WARN_ON(1);
2018 return false;
2019 }
2020
2021 if (!port) {
2022 port = htons(CIFS_PORT);
2023 if (port == *sport)
2024 return true;
2025
2026 port = htons(RFC1001_PORT);
2027 }
2028
2029 return port == *sport;
2030}
Ben Greear3eb9a882010-09-01 17:06:02 -07002031
2032static bool
2033match_address(struct TCP_Server_Info *server, struct sockaddr *addr,
2034 struct sockaddr *srcaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035{
Jeff Layton45151482010-07-06 20:43:02 -04002036 switch (addr->sa_family) {
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002037 case AF_INET: {
2038 struct sockaddr_in *addr4 = (struct sockaddr_in *)addr;
2039 struct sockaddr_in *srv_addr4 =
2040 (struct sockaddr_in *)&server->dstaddr;
2041
2042 if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr)
Jeff Layton45151482010-07-06 20:43:02 -04002043 return false;
Jeff Layton45151482010-07-06 20:43:02 -04002044 break;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002045 }
2046 case AF_INET6: {
2047 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr;
2048 struct sockaddr_in6 *srv_addr6 =
2049 (struct sockaddr_in6 *)&server->dstaddr;
2050
Jeff Layton45151482010-07-06 20:43:02 -04002051 if (!ipv6_addr_equal(&addr6->sin6_addr,
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002052 &srv_addr6->sin6_addr))
Jeff Layton45151482010-07-06 20:43:02 -04002053 return false;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002054 if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id)
Jeff Layton45151482010-07-06 20:43:02 -04002055 return false;
Jeff Layton45151482010-07-06 20:43:02 -04002056 break;
2057 }
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002058 default:
2059 WARN_ON(1);
2060 return false; /* don't expect to be here */
2061 }
Jeff Layton45151482010-07-06 20:43:02 -04002062
Ben Greear3eb9a882010-09-01 17:06:02 -07002063 if (!srcip_matches(srcaddr, (struct sockaddr *)&server->srcaddr))
2064 return false;
2065
Jeff Layton45151482010-07-06 20:43:02 -04002066 return true;
2067}
2068
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002069static bool
2070match_security(struct TCP_Server_Info *server, struct smb_vol *vol)
2071{
Jeff Layton3f618222013-06-12 19:52:14 -05002072 /*
2073 * The select_sectype function should either return the vol->sectype
2074 * that was specified, or "Unspecified" if that sectype was not
2075 * compatible with the given NEGOTIATE request.
2076 */
Sachin Prabhuef65aae2017-01-18 15:35:57 +05302077 if (server->ops->select_sectype(server, vol->sectype)
2078 == Unspecified)
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002079 return false;
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002080
Jeff Layton3f618222013-06-12 19:52:14 -05002081 /*
2082 * Now check if signing mode is acceptable. No need to check
2083 * global_secflags at this point since if MUST_SIGN is set then
2084 * the server->sign had better be too.
2085 */
Jeff Layton38d77c52013-05-26 07:01:00 -04002086 if (vol->sign && !server->sign)
2087 return false;
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002088
2089 return true;
2090}
2091
Jeff Layton9fa114f2012-11-26 11:09:57 -05002092static int match_server(struct TCP_Server_Info *server, struct smb_vol *vol)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002093{
Jeff Layton9fa114f2012-11-26 11:09:57 -05002094 struct sockaddr *addr = (struct sockaddr *)&vol->dstaddr;
2095
Jeff Laytona0b3df52013-05-24 07:40:59 -04002096 if (vol->nosharesock)
2097 return 0;
2098
Jeff Layton23db65f2012-05-15 12:20:51 -04002099 if ((server->vals != vol->vals) || (server->ops != vol->ops))
2100 return 0;
2101
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002102 if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns))
2103 return 0;
2104
2105 if (!match_address(server, addr,
2106 (struct sockaddr *)&vol->srcaddr))
2107 return 0;
2108
2109 if (!match_port(server, addr))
2110 return 0;
2111
2112 if (!match_security(server, vol))
2113 return 0;
2114
Rabin Vincentb782fcc2016-07-19 09:25:45 +02002115 if (server->echo_interval != vol->echo_interval * HZ)
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002116 return 0;
2117
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002118 return 1;
2119}
2120
Jeff Layton45151482010-07-06 20:43:02 -04002121static struct TCP_Server_Info *
Jeff Layton9fa114f2012-11-26 11:09:57 -05002122cifs_find_tcp_session(struct smb_vol *vol)
Jeff Layton45151482010-07-06 20:43:02 -04002123{
Jeff Laytone7ddee92008-11-14 13:44:38 -05002124 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302126 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton45151482010-07-06 20:43:02 -04002127 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
Jeff Layton9fa114f2012-11-26 11:09:57 -05002128 if (!match_server(server, vol))
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002129 continue;
2130
Jeff Laytone7ddee92008-11-14 13:44:38 -05002131 ++server->srv_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302132 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -05002133 cifs_dbg(FYI, "Existing tcp session with server found\n");
Jeff Laytone7ddee92008-11-14 13:44:38 -05002134 return server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302136 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 return NULL;
2138}
2139
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002140void
2141cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
Steve Frencha5c3e1c2014-09-16 04:16:19 -05002143 struct task_struct *task;
2144
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302145 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002146 if (--server->srv_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302147 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002148 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
Steve Frenchdea570e02008-05-06 22:05:51 +00002150
Rob Landleyf1d0c992011-01-22 15:44:05 -06002151 put_net(cifs_net_ns(server));
2152
Jeff Laytone7ddee92008-11-14 13:44:38 -05002153 list_del_init(&server->tcp_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302154 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002155
Jeff Laytonc74093b2011-01-11 07:24:23 -05002156 cancel_delayed_work_sync(&server->echo);
2157
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002158#ifdef CONFIG_CIFS_SMB2
2159 if (from_reconnect)
2160 /*
2161 * Avoid deadlock here: reconnect work calls
2162 * cifs_put_tcp_session() at its end. Need to be sure
2163 * that reconnect work does nothing with server pointer after
2164 * that step.
2165 */
2166 cancel_delayed_work(&server->reconnect);
2167 else
2168 cancel_delayed_work_sync(&server->reconnect);
2169#endif
2170
Jeff Laytone7ddee92008-11-14 13:44:38 -05002171 spin_lock(&GlobalMid_Lock);
2172 server->tcpStatus = CifsExiting;
2173 spin_unlock(&GlobalMid_Lock);
2174
Pavel Shilovsky026e93d2016-11-03 16:47:37 -07002175 cifs_crypto_secmech_release(server);
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05302176 cifs_fscache_release_client_cookie(server);
2177
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05002178 kfree(server->session_key.response);
2179 server->session_key.response = NULL;
2180 server->session_key.len = 0;
Steve Frencha5c3e1c2014-09-16 04:16:19 -05002181
2182 task = xchg(&server->tsk, NULL);
2183 if (task)
2184 force_sig(SIGKILL, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185}
2186
Jeff Layton63c038c2008-12-01 18:41:46 -05002187static struct TCP_Server_Info *
2188cifs_get_tcp_session(struct smb_vol *volume_info)
2189{
2190 struct TCP_Server_Info *tcp_ses = NULL;
Jeff Layton63c038c2008-12-01 18:41:46 -05002191 int rc;
2192
Joe Perchesf96637b2013-05-04 22:12:25 -05002193 cifs_dbg(FYI, "UNC: %s\n", volume_info->UNC);
Jeff Layton63c038c2008-12-01 18:41:46 -05002194
2195 /* see if we already have a matching tcp_ses */
Jeff Layton9fa114f2012-11-26 11:09:57 -05002196 tcp_ses = cifs_find_tcp_session(volume_info);
Jeff Layton63c038c2008-12-01 18:41:46 -05002197 if (tcp_ses)
2198 return tcp_ses;
2199
2200 tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL);
2201 if (!tcp_ses) {
2202 rc = -ENOMEM;
2203 goto out_err;
2204 }
2205
Jeff Layton23db65f2012-05-15 12:20:51 -04002206 tcp_ses->ops = volume_info->ops;
2207 tcp_ses->vals = volume_info->vals;
Rob Landleyf1d0c992011-01-22 15:44:05 -06002208 cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns));
Jeff Layton63c038c2008-12-01 18:41:46 -05002209 tcp_ses->hostname = extract_hostname(volume_info->UNC);
2210 if (IS_ERR(tcp_ses->hostname)) {
2211 rc = PTR_ERR(tcp_ses->hostname);
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002212 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002213 }
2214
2215 tcp_ses->noblocksnd = volume_info->noblocksnd;
2216 tcp_ses->noautotune = volume_info->noautotune;
Steve French6a5fa2362010-01-01 01:28:43 +00002217 tcp_ses->tcp_nodelay = volume_info->sockopt_tcp_nodelay;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +03002218 tcp_ses->in_flight = 0;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +04002219 tcp_ses->credits = 1;
Jeff Layton63c038c2008-12-01 18:41:46 -05002220 init_waitqueue_head(&tcp_ses->response_q);
2221 init_waitqueue_head(&tcp_ses->request_q);
2222 INIT_LIST_HEAD(&tcp_ses->pending_mid_q);
2223 mutex_init(&tcp_ses->srv_mutex);
2224 memcpy(tcp_ses->workstation_RFC1001_name,
2225 volume_info->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
2226 memcpy(tcp_ses->server_RFC1001_name,
2227 volume_info->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -05002228 tcp_ses->session_estab = false;
Jeff Layton63c038c2008-12-01 18:41:46 -05002229 tcp_ses->sequence_number = 0;
Steve Frenchfda35942011-01-20 18:06:34 +00002230 tcp_ses->lstrp = jiffies;
Jeff Layton58fa0152012-05-01 17:41:16 -04002231 spin_lock_init(&tcp_ses->req_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002232 INIT_LIST_HEAD(&tcp_ses->tcp_ses_list);
2233 INIT_LIST_HEAD(&tcp_ses->smb_ses_list);
Jeff Laytonc74093b2011-01-11 07:24:23 -05002234 INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002235#ifdef CONFIG_CIFS_SMB2
2236 INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server);
2237 mutex_init(&tcp_ses->reconnect_mutex);
2238#endif
Jeff Layton9fa114f2012-11-26 11:09:57 -05002239 memcpy(&tcp_ses->srcaddr, &volume_info->srcaddr,
2240 sizeof(tcp_ses->srcaddr));
2241 memcpy(&tcp_ses->dstaddr, &volume_info->dstaddr,
2242 sizeof(tcp_ses->dstaddr));
Sachin Prabhu39552ea2014-05-13 00:48:12 +01002243#ifdef CONFIG_CIFS_SMB2
Steve Frenchfa70b872016-09-22 00:39:34 -05002244 generate_random_uuid(tcp_ses->client_guid);
Sachin Prabhu39552ea2014-05-13 00:48:12 +01002245#endif
Jeff Layton63c038c2008-12-01 18:41:46 -05002246 /*
2247 * at this point we are the only ones with the pointer
2248 * to the struct since the kernel thread not created yet
2249 * no need to spinlock this init of tcpStatus or srv_count
2250 */
2251 tcp_ses->tcpStatus = CifsNew;
2252 ++tcp_ses->srv_count;
2253
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002254 if (volume_info->echo_interval >= SMB_ECHO_INTERVAL_MIN &&
2255 volume_info->echo_interval <= SMB_ECHO_INTERVAL_MAX)
2256 tcp_ses->echo_interval = volume_info->echo_interval * HZ;
2257 else
2258 tcp_ses->echo_interval = SMB_ECHO_INTERVAL_DEFAULT * HZ;
2259
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002260 rc = ip_connect(tcp_ses);
Jeff Layton63c038c2008-12-01 18:41:46 -05002261 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002262 cifs_dbg(VFS, "Error connecting to socket. Aborting operation.\n");
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002263 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002264 }
2265
2266 /*
2267 * since we're in a cifs function already, we know that
2268 * this will succeed. No need for try_module_get().
2269 */
2270 __module_get(THIS_MODULE);
Al Viro7c97c202011-06-21 08:51:28 -04002271 tcp_ses->tsk = kthread_run(cifs_demultiplex_thread,
Jeff Layton63c038c2008-12-01 18:41:46 -05002272 tcp_ses, "cifsd");
2273 if (IS_ERR(tcp_ses->tsk)) {
2274 rc = PTR_ERR(tcp_ses->tsk);
Joe Perchesf96637b2013-05-04 22:12:25 -05002275 cifs_dbg(VFS, "error %d create cifsd thread\n", rc);
Jeff Layton63c038c2008-12-01 18:41:46 -05002276 module_put(THIS_MODULE);
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002277 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002278 }
Steve Frenchfd88ce92011-04-12 01:01:14 +00002279 tcp_ses->tcpStatus = CifsNeedNegotiate;
Jeff Layton63c038c2008-12-01 18:41:46 -05002280
2281 /* thread spawned, put it on the list */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302282 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002283 list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302284 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002285
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05302286 cifs_fscache_get_client_cookie(tcp_ses);
2287
Jeff Laytonc74093b2011-01-11 07:24:23 -05002288 /* queue echo request delayed work */
Steve Frenchadfeb3e2015-12-18 12:31:36 -06002289 queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval);
Jeff Laytonc74093b2011-01-11 07:24:23 -05002290
Jeff Layton63c038c2008-12-01 18:41:46 -05002291 return tcp_ses;
2292
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -05002293out_err_crypto_release:
Pavel Shilovsky026e93d2016-11-03 16:47:37 -07002294 cifs_crypto_secmech_release(tcp_ses);
Shirish Pargaonkard2b91522010-10-21 14:25:08 -05002295
Rob Landleyf1d0c992011-01-22 15:44:05 -06002296 put_net(cifs_net_ns(tcp_ses));
2297
Jeff Layton63c038c2008-12-01 18:41:46 -05002298out_err:
2299 if (tcp_ses) {
Steve French8347a5c2009-10-06 18:31:29 +00002300 if (!IS_ERR(tcp_ses->hostname))
2301 kfree(tcp_ses->hostname);
Jeff Layton63c038c2008-12-01 18:41:46 -05002302 if (tcp_ses->ssocket)
2303 sock_release(tcp_ses->ssocket);
2304 kfree(tcp_ses);
2305 }
2306 return ERR_PTR(rc);
2307}
2308
Steve French96daf2b2011-05-27 04:34:02 +00002309static int match_session(struct cifs_ses *ses, struct smb_vol *vol)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002310{
Jeff Layton3f618222013-06-12 19:52:14 -05002311 if (vol->sectype != Unspecified &&
2312 vol->sectype != ses->sectype)
2313 return 0;
2314
2315 switch (ses->sectype) {
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002316 case Kerberos:
Eric W. Biederman64ed39d2013-02-06 02:30:39 -08002317 if (!uid_eq(vol->cred_uid, ses->cred_uid))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002318 return 0;
2319 break;
2320 default:
Jeff Layton04febab2012-01-17 16:09:15 -05002321 /* NULL username means anonymous session */
2322 if (ses->user_name == NULL) {
2323 if (!vol->nullauth)
2324 return 0;
2325 break;
2326 }
2327
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002328 /* anything else takes username/password */
Jeff Layton04febab2012-01-17 16:09:15 -05002329 if (strncmp(ses->user_name,
2330 vol->username ? vol->username : "",
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002331 CIFS_MAX_USERNAME_LEN))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002332 return 0;
Jeff Layton08b37d52014-05-23 06:53:10 -04002333 if ((vol->username && strlen(vol->username) != 0) &&
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002334 ses->password != NULL &&
2335 strncmp(ses->password,
2336 vol->password ? vol->password : "",
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002337 CIFS_MAX_PASSWORD_LEN))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002338 return 0;
2339 }
2340 return 1;
2341}
2342
Steve French96daf2b2011-05-27 04:34:02 +00002343static struct cifs_ses *
Jeff Layton4ff67b72010-07-06 20:43:02 -04002344cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb_vol *vol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345{
Steve French96daf2b2011-05-27 04:34:02 +00002346 struct cifs_ses *ses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302348 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton4ff67b72010-07-06 20:43:02 -04002349 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002350 if (ses->status == CifsExiting)
2351 continue;
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002352 if (!match_session(ses, vol))
2353 continue;
Jeff Layton14fbf502008-11-14 13:53:46 -05002354 ++ses->ses_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302355 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002356 return ses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302358 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 return NULL;
2360}
2361
Jeff Layton14fbf502008-11-14 13:53:46 -05002362static void
Steve French96daf2b2011-05-27 04:34:02 +00002363cifs_put_smb_ses(struct cifs_ses *ses)
Jeff Layton14fbf502008-11-14 13:53:46 -05002364{
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002365 unsigned int rc, xid;
Jeff Layton14fbf502008-11-14 13:53:46 -05002366 struct TCP_Server_Info *server = ses->server;
2367
Joe Perchesf96637b2013-05-04 22:12:25 -05002368 cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002369
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302370 spin_lock(&cifs_tcp_ses_lock);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002371 if (ses->status == CifsExiting) {
2372 spin_unlock(&cifs_tcp_ses_lock);
2373 return;
2374 }
Jeff Layton14fbf502008-11-14 13:53:46 -05002375 if (--ses->ses_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302376 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002377 return;
2378 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002379 if (ses->status == CifsGood)
2380 ses->status = CifsExiting;
2381 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002382
Shirish Pargaonkar7f485582013-10-12 10:06:03 -05002383 if (ses->status == CifsExiting && server->ops->logoff) {
2384 xid = get_xid();
2385 rc = server->ops->logoff(xid, ses);
2386 if (rc)
2387 cifs_dbg(VFS, "%s: Session Logoff failure rc=%d\n",
2388 __func__, rc);
2389 _free_xid(xid);
2390 }
2391
2392 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002393 list_del_init(&ses->smb_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302394 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002395
Jeff Layton14fbf502008-11-14 13:53:46 -05002396 sesInfoFree(ses);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002397 cifs_put_tcp_session(server, 0);
Jeff Layton14fbf502008-11-14 13:53:46 -05002398}
2399
Jeff Layton8a8798a2012-01-17 16:09:15 -05002400#ifdef CONFIG_KEYS
2401
Chen Gang057d6332013-07-19 09:01:36 +08002402/* strlen("cifs:a:") + CIFS_MAX_DOMAINNAME_LEN + 1 */
2403#define CIFSCREDS_DESC_SIZE (7 + CIFS_MAX_DOMAINNAME_LEN + 1)
Jeff Layton8a8798a2012-01-17 16:09:15 -05002404
2405/* Populate username and pw fields from keyring if possible */
2406static int
2407cifs_set_cifscreds(struct smb_vol *vol, struct cifs_ses *ses)
2408{
2409 int rc = 0;
David Howells146aa8b2015-10-21 14:04:48 +01002410 const char *delim, *payload;
2411 char *desc;
Jeff Layton8a8798a2012-01-17 16:09:15 -05002412 ssize_t len;
2413 struct key *key;
2414 struct TCP_Server_Info *server = ses->server;
2415 struct sockaddr_in *sa;
2416 struct sockaddr_in6 *sa6;
David Howells146aa8b2015-10-21 14:04:48 +01002417 const struct user_key_payload *upayload;
Jeff Layton8a8798a2012-01-17 16:09:15 -05002418
2419 desc = kmalloc(CIFSCREDS_DESC_SIZE, GFP_KERNEL);
2420 if (!desc)
2421 return -ENOMEM;
2422
2423 /* try to find an address key first */
2424 switch (server->dstaddr.ss_family) {
2425 case AF_INET:
2426 sa = (struct sockaddr_in *)&server->dstaddr;
2427 sprintf(desc, "cifs:a:%pI4", &sa->sin_addr.s_addr);
2428 break;
2429 case AF_INET6:
2430 sa6 = (struct sockaddr_in6 *)&server->dstaddr;
2431 sprintf(desc, "cifs:a:%pI6c", &sa6->sin6_addr.s6_addr);
2432 break;
2433 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05002434 cifs_dbg(FYI, "Bad ss_family (%hu)\n",
2435 server->dstaddr.ss_family);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002436 rc = -EINVAL;
2437 goto out_err;
2438 }
2439
Joe Perchesf96637b2013-05-04 22:12:25 -05002440 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002441 key = request_key(&key_type_logon, desc, "");
2442 if (IS_ERR(key)) {
2443 if (!ses->domainName) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002444 cifs_dbg(FYI, "domainName is NULL\n");
Jeff Layton8a8798a2012-01-17 16:09:15 -05002445 rc = PTR_ERR(key);
2446 goto out_err;
2447 }
2448
2449 /* didn't work, try to find a domain key */
2450 sprintf(desc, "cifs:d:%s", ses->domainName);
Joe Perchesf96637b2013-05-04 22:12:25 -05002451 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002452 key = request_key(&key_type_logon, desc, "");
2453 if (IS_ERR(key)) {
2454 rc = PTR_ERR(key);
2455 goto out_err;
2456 }
2457 }
2458
2459 down_read(&key->sem);
David Howells0837e492017-03-01 15:11:23 +00002460 upayload = user_key_payload_locked(key);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002461 if (IS_ERR_OR_NULL(upayload)) {
Jeff Layton4edc53c2012-02-07 06:30:51 -05002462 rc = upayload ? PTR_ERR(upayload) : -EINVAL;
Jeff Layton8a8798a2012-01-17 16:09:15 -05002463 goto out_key_put;
2464 }
2465
2466 /* find first : in payload */
David Howells146aa8b2015-10-21 14:04:48 +01002467 payload = upayload->data;
Jeff Layton8a8798a2012-01-17 16:09:15 -05002468 delim = strnchr(payload, upayload->datalen, ':');
Joe Perchesf96637b2013-05-04 22:12:25 -05002469 cifs_dbg(FYI, "payload=%s\n", payload);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002470 if (!delim) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002471 cifs_dbg(FYI, "Unable to find ':' in payload (datalen=%d)\n",
2472 upayload->datalen);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002473 rc = -EINVAL;
2474 goto out_key_put;
2475 }
2476
2477 len = delim - payload;
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002478 if (len > CIFS_MAX_USERNAME_LEN || len <= 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002479 cifs_dbg(FYI, "Bad value from username search (len=%zd)\n",
2480 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002481 rc = -EINVAL;
2482 goto out_key_put;
2483 }
2484
2485 vol->username = kstrndup(payload, len, GFP_KERNEL);
2486 if (!vol->username) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002487 cifs_dbg(FYI, "Unable to allocate %zd bytes for username\n",
2488 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002489 rc = -ENOMEM;
2490 goto out_key_put;
2491 }
Joe Perchesf96637b2013-05-04 22:12:25 -05002492 cifs_dbg(FYI, "%s: username=%s\n", __func__, vol->username);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002493
2494 len = key->datalen - (len + 1);
Scott Lovenberg8c3a2b42013-08-09 08:47:17 -04002495 if (len > CIFS_MAX_PASSWORD_LEN || len <= 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002496 cifs_dbg(FYI, "Bad len for password search (len=%zd)\n", len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002497 rc = -EINVAL;
2498 kfree(vol->username);
2499 vol->username = NULL;
2500 goto out_key_put;
2501 }
2502
2503 ++delim;
2504 vol->password = kstrndup(delim, len, GFP_KERNEL);
2505 if (!vol->password) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002506 cifs_dbg(FYI, "Unable to allocate %zd bytes for password\n",
2507 len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002508 rc = -ENOMEM;
2509 kfree(vol->username);
2510 vol->username = NULL;
2511 goto out_key_put;
2512 }
2513
2514out_key_put:
2515 up_read(&key->sem);
2516 key_put(key);
2517out_err:
2518 kfree(desc);
Joe Perchesf96637b2013-05-04 22:12:25 -05002519 cifs_dbg(FYI, "%s: returning %d\n", __func__, rc);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002520 return rc;
2521}
2522#else /* ! CONFIG_KEYS */
2523static inline int
2524cifs_set_cifscreds(struct smb_vol *vol __attribute__((unused)),
2525 struct cifs_ses *ses __attribute__((unused)))
2526{
2527 return -ENOSYS;
2528}
2529#endif /* CONFIG_KEYS */
2530
Steve French96daf2b2011-05-27 04:34:02 +00002531static struct cifs_ses *
Jeff Layton36988c72010-04-24 07:57:43 -04002532cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb_vol *volume_info)
2533{
Pavel Shilovsky286170a2012-05-25 10:43:58 +04002534 int rc = -ENOMEM;
2535 unsigned int xid;
Steve French96daf2b2011-05-27 04:34:02 +00002536 struct cifs_ses *ses;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002537 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
2538 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
Jeff Layton36988c72010-04-24 07:57:43 -04002539
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002540 xid = get_xid();
Jeff Layton36988c72010-04-24 07:57:43 -04002541
Jeff Layton4ff67b72010-07-06 20:43:02 -04002542 ses = cifs_find_smb_ses(server, volume_info);
Jeff Layton36988c72010-04-24 07:57:43 -04002543 if (ses) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002544 cifs_dbg(FYI, "Existing smb sess found (status=%d)\n",
2545 ses->status);
Jeff Layton36988c72010-04-24 07:57:43 -04002546
Jeff Layton36988c72010-04-24 07:57:43 -04002547 mutex_lock(&ses->session_mutex);
Jeff Layton198b5682010-04-24 07:57:48 -04002548 rc = cifs_negotiate_protocol(xid, ses);
2549 if (rc) {
2550 mutex_unlock(&ses->session_mutex);
2551 /* problem -- put our ses reference */
2552 cifs_put_smb_ses(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002553 free_xid(xid);
Jeff Layton198b5682010-04-24 07:57:48 -04002554 return ERR_PTR(rc);
2555 }
Jeff Layton36988c72010-04-24 07:57:43 -04002556 if (ses->need_reconnect) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002557 cifs_dbg(FYI, "Session needs reconnect\n");
Jeff Layton36988c72010-04-24 07:57:43 -04002558 rc = cifs_setup_session(xid, ses,
2559 volume_info->local_nls);
2560 if (rc) {
2561 mutex_unlock(&ses->session_mutex);
2562 /* problem -- put our reference */
2563 cifs_put_smb_ses(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002564 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04002565 return ERR_PTR(rc);
2566 }
2567 }
2568 mutex_unlock(&ses->session_mutex);
Jeff Layton460cf342010-09-14 11:38:24 -04002569
2570 /* existing SMB ses has a server reference already */
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002571 cifs_put_tcp_session(server, 0);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002572 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04002573 return ses;
2574 }
2575
Joe Perchesf96637b2013-05-04 22:12:25 -05002576 cifs_dbg(FYI, "Existing smb sess not found\n");
Jeff Layton36988c72010-04-24 07:57:43 -04002577 ses = sesInfoAlloc();
2578 if (ses == NULL)
2579 goto get_ses_fail;
2580
2581 /* new SMB session uses our server ref */
2582 ses->server = server;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002583 if (server->dstaddr.ss_family == AF_INET6)
2584 sprintf(ses->serverName, "%pI6", &addr6->sin6_addr);
Jeff Layton36988c72010-04-24 07:57:43 -04002585 else
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002586 sprintf(ses->serverName, "%pI4", &addr->sin_addr);
Jeff Layton36988c72010-04-24 07:57:43 -04002587
Steve French8727c8a2011-02-25 01:11:56 -06002588 if (volume_info->username) {
2589 ses->user_name = kstrdup(volume_info->username, GFP_KERNEL);
2590 if (!ses->user_name)
2591 goto get_ses_fail;
2592 }
Jeff Layton36988c72010-04-24 07:57:43 -04002593
2594 /* volume_info->password freed at unmount */
2595 if (volume_info->password) {
2596 ses->password = kstrdup(volume_info->password, GFP_KERNEL);
2597 if (!ses->password)
2598 goto get_ses_fail;
2599 }
2600 if (volume_info->domainname) {
Shirish Pargaonkard3686d52010-10-28 09:53:07 -05002601 ses->domainName = kstrdup(volume_info->domainname, GFP_KERNEL);
2602 if (!ses->domainName)
2603 goto get_ses_fail;
Jeff Layton36988c72010-04-24 07:57:43 -04002604 }
Germano Percossi39566442016-12-15 12:31:18 +05302605 if (volume_info->domainauto)
2606 ses->domainAuto = volume_info->domainauto;
Jeff Layton3e4b3e12010-07-19 18:00:17 -04002607 ses->cred_uid = volume_info->cred_uid;
Jeff Layton36988c72010-04-24 07:57:43 -04002608 ses->linux_uid = volume_info->linux_uid;
Steve Frenchd9b94202011-04-12 01:24:57 +00002609
Jeff Layton28e11bd2013-05-26 07:01:00 -04002610 ses->sectype = volume_info->sectype;
2611 ses->sign = volume_info->sign;
Jeff Layton36988c72010-04-24 07:57:43 -04002612
2613 mutex_lock(&ses->session_mutex);
Jeff Layton198b5682010-04-24 07:57:48 -04002614 rc = cifs_negotiate_protocol(xid, ses);
2615 if (!rc)
2616 rc = cifs_setup_session(xid, ses, volume_info->local_nls);
Jeff Layton36988c72010-04-24 07:57:43 -04002617 mutex_unlock(&ses->session_mutex);
Steve Frenchc8e56f12010-09-08 21:10:58 +00002618 if (rc)
Jeff Layton36988c72010-04-24 07:57:43 -04002619 goto get_ses_fail;
2620
2621 /* success, put it on the list */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302622 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton36988c72010-04-24 07:57:43 -04002623 list_add(&ses->smb_ses_list, &server->smb_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302624 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton36988c72010-04-24 07:57:43 -04002625
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002626 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04002627 return ses;
2628
2629get_ses_fail:
2630 sesInfoFree(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002631 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04002632 return ERR_PTR(rc);
2633}
2634
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002635static int match_tcon(struct cifs_tcon *tcon, struct smb_vol *volume_info)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002636{
2637 if (tcon->tidStatus == CifsExiting)
2638 return 0;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002639 if (strncmp(tcon->treeName, volume_info->UNC, MAX_TREE_SIZE))
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002640 return 0;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002641 if (tcon->seal != volume_info->seal)
2642 return 0;
2643#ifdef CONFIG_CIFS_SMB2
2644 if (tcon->snapshot_time != volume_info->snapshot_time)
2645 return 0;
2646#endif /* CONFIG_CIFS_SMB2 */
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002647 return 1;
2648}
2649
Steve French96daf2b2011-05-27 04:34:02 +00002650static struct cifs_tcon *
Steve French8b217fe2016-11-11 22:36:20 -06002651cifs_find_tcon(struct cifs_ses *ses, struct smb_vol *volume_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652{
2653 struct list_head *tmp;
Steve French96daf2b2011-05-27 04:34:02 +00002654 struct cifs_tcon *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302656 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002657 list_for_each(tmp, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +00002658 tcon = list_entry(tmp, struct cifs_tcon, tcon_list);
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002659 if (!match_tcon(tcon, volume_info))
Jeff Laytonf1987b42008-11-15 11:12:47 -05002660 continue;
Jeff Laytonf1987b42008-11-15 11:12:47 -05002661 ++tcon->tc_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302662 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 return tcon;
2664 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302665 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 return NULL;
2667}
2668
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002669void
Steve French96daf2b2011-05-27 04:34:02 +00002670cifs_put_tcon(struct cifs_tcon *tcon)
Jeff Laytonf1987b42008-11-15 11:12:47 -05002671{
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002672 unsigned int xid;
Steve French96daf2b2011-05-27 04:34:02 +00002673 struct cifs_ses *ses = tcon->ses;
Jeff Laytonf1987b42008-11-15 11:12:47 -05002674
Joe Perchesf96637b2013-05-04 22:12:25 -05002675 cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302676 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002677 if (--tcon->tc_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302678 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002679 return;
2680 }
2681
2682 list_del_init(&tcon->tcon_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302683 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002684
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002685 xid = get_xid();
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002686 if (ses->server->ops->tree_disconnect)
2687 ses->server->ops->tree_disconnect(xid, tcon);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002688 _free_xid(xid);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002689
Suresh Jayaramand03382c2010-07-05 18:12:27 +05302690 cifs_fscache_release_super_cookie(tcon);
Steve French9f841592010-07-23 20:37:53 +00002691 tconInfoFree(tcon);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002692 cifs_put_smb_ses(ses);
2693}
2694
Steve French96daf2b2011-05-27 04:34:02 +00002695static struct cifs_tcon *
2696cifs_get_tcon(struct cifs_ses *ses, struct smb_vol *volume_info)
Jeff Laytond00c28d2010-04-24 07:57:44 -04002697{
2698 int rc, xid;
Steve French96daf2b2011-05-27 04:34:02 +00002699 struct cifs_tcon *tcon;
Jeff Laytond00c28d2010-04-24 07:57:44 -04002700
Steve French8b217fe2016-11-11 22:36:20 -06002701 tcon = cifs_find_tcon(ses, volume_info);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002702 if (tcon) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002703 cifs_dbg(FYI, "Found match on UNC path\n");
Jeff Laytond00c28d2010-04-24 07:57:44 -04002704 /* existing tcon already has a reference */
2705 cifs_put_smb_ses(ses);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002706 return tcon;
2707 }
2708
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002709 if (!ses->server->ops->tree_connect) {
2710 rc = -ENOSYS;
2711 goto out_fail;
2712 }
2713
Jeff Laytond00c28d2010-04-24 07:57:44 -04002714 tcon = tconInfoAlloc();
2715 if (tcon == NULL) {
2716 rc = -ENOMEM;
2717 goto out_fail;
2718 }
2719
Steve French8b217fe2016-11-11 22:36:20 -06002720 if (volume_info->snapshot_time) {
2721#ifdef CONFIG_CIFS_SMB2
2722 if (ses->server->vals->protocol_id == 0) {
2723 cifs_dbg(VFS,
2724 "Use SMB2 or later for snapshot mount option\n");
2725 rc = -EOPNOTSUPP;
2726 goto out_fail;
2727 } else
2728 tcon->snapshot_time = volume_info->snapshot_time;
2729#else
2730 cifs_dbg(VFS, "Snapshot mount option requires SMB2 support\n");
2731 rc = -EOPNOTSUPP;
2732 goto out_fail;
2733#endif /* CONFIG_CIFS_SMB2 */
2734 }
2735
Jeff Laytond00c28d2010-04-24 07:57:44 -04002736 tcon->ses = ses;
2737 if (volume_info->password) {
2738 tcon->password = kstrdup(volume_info->password, GFP_KERNEL);
2739 if (!tcon->password) {
2740 rc = -ENOMEM;
2741 goto out_fail;
2742 }
2743 }
2744
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002745 /*
2746 * BB Do we need to wrap session_mutex around this TCon call and Unix
2747 * SetFS as we do on SessSetup and reconnect?
2748 */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002749 xid = get_xid();
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002750 rc = ses->server->ops->tree_connect(xid, ses, volume_info->UNC, tcon,
2751 volume_info->local_nls);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002752 free_xid(xid);
Joe Perchesf96637b2013-05-04 22:12:25 -05002753 cifs_dbg(FYI, "Tcon rc = %d\n", rc);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002754 if (rc)
2755 goto out_fail;
2756
2757 if (volume_info->nodfs) {
2758 tcon->Flags &= ~SMB_SHARE_IS_IN_DFS;
Joe Perchesf96637b2013-05-04 22:12:25 -05002759 cifs_dbg(FYI, "DFS disabled (%d)\n", tcon->Flags);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002760 }
Steve Frenchb618f002015-11-03 09:15:03 -06002761 tcon->use_persistent = false;
2762 /* check if SMB2 or later, CIFS does not support persistent handles */
2763 if (volume_info->persistent) {
2764 if (ses->server->vals->protocol_id == 0) {
2765 cifs_dbg(VFS,
2766 "SMB3 or later required for persistent handles\n");
2767 rc = -EOPNOTSUPP;
2768 goto out_fail;
Steve French592fafe2015-11-03 10:08:53 -06002769#ifdef CONFIG_CIFS_SMB2
Steve Frenchb618f002015-11-03 09:15:03 -06002770 } else if (ses->server->capabilities &
2771 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
2772 tcon->use_persistent = true;
2773 else /* persistent handles requested but not supported */ {
2774 cifs_dbg(VFS,
2775 "Persistent handles not supported on share\n");
2776 rc = -EOPNOTSUPP;
2777 goto out_fail;
Steve French592fafe2015-11-03 10:08:53 -06002778#endif /* CONFIG_CIFS_SMB2 */
Steve Frenchb618f002015-11-03 09:15:03 -06002779 }
Steve French592fafe2015-11-03 10:08:53 -06002780#ifdef CONFIG_CIFS_SMB2
Steve Frenchb618f002015-11-03 09:15:03 -06002781 } else if ((tcon->capabilities & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY)
2782 && (ses->server->capabilities & SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
2783 && (volume_info->nopersistent == false)) {
2784 cifs_dbg(FYI, "enabling persistent handles\n");
2785 tcon->use_persistent = true;
Steve French592fafe2015-11-03 10:08:53 -06002786#endif /* CONFIG_CIFS_SMB2 */
2787 } else if (volume_info->resilient) {
2788 if (ses->server->vals->protocol_id == 0) {
2789 cifs_dbg(VFS,
2790 "SMB2.1 or later required for resilient handles\n");
2791 rc = -EOPNOTSUPP;
2792 goto out_fail;
2793 }
2794 tcon->use_resilient = true;
Steve Frenchb618f002015-11-03 09:15:03 -06002795 }
2796
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002797 if (volume_info->seal) {
2798 if (ses->server->vals->protocol_id == 0) {
2799 cifs_dbg(VFS,
2800 "SMB3 or later required for encryption\n");
2801 rc = -EOPNOTSUPP;
2802 goto out_fail;
2803#ifdef CONFIG_CIFS_SMB2
2804 } else if (tcon->ses->server->capabilities &
2805 SMB2_GLOBAL_CAP_ENCRYPTION)
2806 tcon->seal = true;
2807 else {
2808 cifs_dbg(VFS, "Encryption is not supported on share\n");
2809 rc = -EOPNOTSUPP;
2810 goto out_fail;
2811#endif /* CONFIG_CIFS_SMB2 */
2812 }
2813 }
2814
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002815 /*
2816 * We can have only one retry value for a connection to a share so for
2817 * resources mounted more than once to the same server share the last
2818 * value passed in for the retry flag is used.
2819 */
Jeff Laytond00c28d2010-04-24 07:57:44 -04002820 tcon->retry = volume_info->retry;
2821 tcon->nocase = volume_info->nocase;
2822 tcon->local_lease = volume_info->local_lease;
Pavel Shilovsky233839b2012-09-19 06:22:45 -07002823 INIT_LIST_HEAD(&tcon->pending_opens);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002824
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302825 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002826 list_add(&tcon->tcon_list, &ses->tcon_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302827 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002828
Suresh Jayaramand03382c2010-07-05 18:12:27 +05302829 cifs_fscache_get_super_cookie(tcon);
2830
Jeff Laytond00c28d2010-04-24 07:57:44 -04002831 return tcon;
2832
2833out_fail:
2834 tconInfoFree(tcon);
2835 return ERR_PTR(rc);
2836}
2837
Jeff Layton9d002df2010-10-06 19:51:11 -04002838void
2839cifs_put_tlink(struct tcon_link *tlink)
2840{
2841 if (!tlink || IS_ERR(tlink))
2842 return;
2843
2844 if (!atomic_dec_and_test(&tlink->tl_count) ||
2845 test_bit(TCON_LINK_IN_TREE, &tlink->tl_flags)) {
2846 tlink->tl_time = jiffies;
2847 return;
2848 }
2849
2850 if (!IS_ERR(tlink_tcon(tlink)))
2851 cifs_put_tcon(tlink_tcon(tlink));
2852 kfree(tlink);
2853 return;
2854}
Jeff Laytond00c28d2010-04-24 07:57:44 -04002855
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002856static inline struct tcon_link *
Pavel Shilovskycd518752011-06-09 12:58:53 +04002857cifs_sb_master_tlink(struct cifs_sb_info *cifs_sb)
2858{
2859 return cifs_sb->master_tlink;
2860}
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002861
2862static int
2863compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2864{
2865 struct cifs_sb_info *old = CIFS_SB(sb);
2866 struct cifs_sb_info *new = mnt_data->cifs_sb;
2867
2868 if ((sb->s_flags & CIFS_MS_MASK) != (mnt_data->flags & CIFS_MS_MASK))
2869 return 0;
2870
2871 if ((old->mnt_cifs_flags & CIFS_MOUNT_MASK) !=
2872 (new->mnt_cifs_flags & CIFS_MOUNT_MASK))
2873 return 0;
2874
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002875 /*
Jeff Layton5eba8ab2011-10-19 15:30:26 -04002876 * We want to share sb only if we don't specify an r/wsize or
2877 * specified r/wsize is greater than or equal to existing one.
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002878 */
2879 if (new->wsize && new->wsize < old->wsize)
2880 return 0;
2881
Jeff Layton5eba8ab2011-10-19 15:30:26 -04002882 if (new->rsize && new->rsize < old->rsize)
2883 return 0;
2884
Eric W. Biederman1f682332013-02-06 01:20:20 -08002885 if (!uid_eq(old->mnt_uid, new->mnt_uid) || !gid_eq(old->mnt_gid, new->mnt_gid))
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002886 return 0;
2887
2888 if (old->mnt_file_mode != new->mnt_file_mode ||
2889 old->mnt_dir_mode != new->mnt_dir_mode)
2890 return 0;
2891
2892 if (strcmp(old->local_nls->charset, new->local_nls->charset))
2893 return 0;
2894
2895 if (old->actimeo != new->actimeo)
2896 return 0;
2897
2898 return 1;
2899}
2900
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01002901static int
2902match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2903{
2904 struct cifs_sb_info *old = CIFS_SB(sb);
2905 struct cifs_sb_info *new = mnt_data->cifs_sb;
2906
2907 if (old->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) {
2908 if (!(new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH))
2909 return 0;
2910 /* The prepath should be null terminated strings */
2911 if (strcmp(new->prepath, old->prepath))
2912 return 0;
2913
2914 return 1;
2915 }
2916 return 0;
2917}
2918
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002919int
2920cifs_match_super(struct super_block *sb, void *data)
2921{
2922 struct cifs_mnt_data *mnt_data = (struct cifs_mnt_data *)data;
2923 struct smb_vol *volume_info;
2924 struct cifs_sb_info *cifs_sb;
2925 struct TCP_Server_Info *tcp_srv;
Steve French96daf2b2011-05-27 04:34:02 +00002926 struct cifs_ses *ses;
2927 struct cifs_tcon *tcon;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002928 struct tcon_link *tlink;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002929 int rc = 0;
2930
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002931 spin_lock(&cifs_tcp_ses_lock);
2932 cifs_sb = CIFS_SB(sb);
2933 tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
2934 if (IS_ERR(tlink)) {
2935 spin_unlock(&cifs_tcp_ses_lock);
2936 return rc;
2937 }
2938 tcon = tlink_tcon(tlink);
2939 ses = tcon->ses;
2940 tcp_srv = ses->server;
2941
2942 volume_info = mnt_data->vol;
2943
Jeff Layton9fa114f2012-11-26 11:09:57 -05002944 if (!match_server(tcp_srv, volume_info) ||
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002945 !match_session(ses, volume_info) ||
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08002946 !match_tcon(tcon, volume_info) ||
Sachin Prabhuc1d8b242016-07-29 22:38:20 +01002947 !match_prepath(sb, mnt_data)) {
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002948 rc = 0;
2949 goto out;
2950 }
2951
2952 rc = compare_mount_options(sb, mnt_data);
2953out:
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002954 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf484b5d02011-07-11 10:16:34 -04002955 cifs_put_tlink(tlink);
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002956 return rc;
2957}
2958
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959int
Pavel Shilovskyb669f332012-05-27 20:21:53 +04002960get_dfs_path(const unsigned int xid, struct cifs_ses *ses, const char *old_path,
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002961 const struct nls_table *nls_codepage, unsigned int *num_referrals,
2962 struct dfs_info3_param **referrals, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963{
2964 char *temp_unc;
2965 int rc = 0;
2966
Pavel Shilovskyb669f332012-05-27 20:21:53 +04002967 if (!ses->server->ops->tree_connect || !ses->server->ops->get_dfs_refer)
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002968 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002970 *num_referrals = 0;
2971 *referrals = NULL;
2972
2973 if (ses->ipc_tid == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 temp_unc = kmalloc(2 /* for slashes */ +
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002975 strnlen(ses->serverName, SERVER_NAME_LEN_WITH_NULL * 2)
2976 + 1 + 4 /* slash IPC$ */ + 2, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 if (temp_unc == NULL)
2978 return -ENOMEM;
2979 temp_unc[0] = '\\';
2980 temp_unc[1] = '\\';
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002981 strcpy(temp_unc + 2, ses->serverName);
2982 strcpy(temp_unc + 2 + strlen(ses->serverName), "\\IPC$");
2983 rc = ses->server->ops->tree_connect(xid, ses, temp_unc, NULL,
2984 nls_codepage);
Joe Perchesf96637b2013-05-04 22:12:25 -05002985 cifs_dbg(FYI, "Tcon rc = %d ipc_tid = %d\n", rc, ses->ipc_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 kfree(temp_unc);
2987 }
2988 if (rc == 0)
Pavel Shilovskyb669f332012-05-27 20:21:53 +04002989 rc = ses->server->ops->get_dfs_refer(xid, ses, old_path,
2990 referrals, num_referrals,
2991 nls_codepage, remap);
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002992 /*
2993 * BB - map targetUNCs to dfs_info3 structures, here or in
Pavel Shilovskyb669f332012-05-27 20:21:53 +04002994 * ses->server->ops->get_dfs_refer.
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002995 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
2997 return rc;
2998}
2999
Jeff Layton09e50d52008-07-23 10:11:19 -04003000#ifdef CONFIG_DEBUG_LOCK_ALLOC
3001static struct lock_class_key cifs_key[2];
3002static struct lock_class_key cifs_slock_key[2];
3003
3004static inline void
3005cifs_reclassify_socket4(struct socket *sock)
3006{
3007 struct sock *sk = sock->sk;
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02003008 BUG_ON(!sock_allow_reclassification(sk));
Jeff Layton09e50d52008-07-23 10:11:19 -04003009 sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS",
3010 &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]);
3011}
3012
3013static inline void
3014cifs_reclassify_socket6(struct socket *sock)
3015{
3016 struct sock *sk = sock->sk;
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02003017 BUG_ON(!sock_allow_reclassification(sk));
Jeff Layton09e50d52008-07-23 10:11:19 -04003018 sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS",
3019 &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]);
3020}
3021#else
3022static inline void
3023cifs_reclassify_socket4(struct socket *sock)
3024{
3025}
3026
3027static inline void
3028cifs_reclassify_socket6(struct socket *sock)
3029{
3030}
3031#endif
3032
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033/* See RFC1001 section 14 on representation of Netbios names */
Steve French50c2f752007-07-13 00:33:32 +00003034static void rfc1002mangle(char *target, char *source, unsigned int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035{
Steve French50c2f752007-07-13 00:33:32 +00003036 unsigned int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037
Steve French50c2f752007-07-13 00:33:32 +00003038 for (i = 0, j = 0; i < (length); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 /* mask a nibble at a time and encode */
3040 target[j] = 'A' + (0x0F & (source[i] >> 4));
3041 target[j+1] = 'A' + (0x0F & source[i]);
Steve French50c2f752007-07-13 00:33:32 +00003042 j += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 }
3044
3045}
3046
Ben Greear3eb9a882010-09-01 17:06:02 -07003047static int
3048bind_socket(struct TCP_Server_Info *server)
3049{
3050 int rc = 0;
3051 if (server->srcaddr.ss_family != AF_UNSPEC) {
3052 /* Bind to the specified local IP address */
3053 struct socket *socket = server->ssocket;
3054 rc = socket->ops->bind(socket,
3055 (struct sockaddr *) &server->srcaddr,
3056 sizeof(server->srcaddr));
3057 if (rc < 0) {
3058 struct sockaddr_in *saddr4;
3059 struct sockaddr_in6 *saddr6;
3060 saddr4 = (struct sockaddr_in *)&server->srcaddr;
3061 saddr6 = (struct sockaddr_in6 *)&server->srcaddr;
3062 if (saddr6->sin6_family == AF_INET6)
Joe Perchesf96637b2013-05-04 22:12:25 -05003063 cifs_dbg(VFS, "Failed to bind to: %pI6c, error: %d\n",
3064 &saddr6->sin6_addr, rc);
Ben Greear3eb9a882010-09-01 17:06:02 -07003065 else
Joe Perchesf96637b2013-05-04 22:12:25 -05003066 cifs_dbg(VFS, "Failed to bind to: %pI4, error: %d\n",
3067 &saddr4->sin_addr.s_addr, rc);
Ben Greear3eb9a882010-09-01 17:06:02 -07003068 }
3069 }
3070 return rc;
3071}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072
3073static int
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003074ip_rfc1001_connect(struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075{
3076 int rc = 0;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003077 /*
3078 * some servers require RFC1001 sessinit before sending
3079 * negprot - BB check reconnection in case where second
3080 * sessinit is sent but no second negprot
3081 */
3082 struct rfc1002_session_packet *ses_init_buf;
3083 struct smb_hdr *smb_buf;
3084 ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet),
3085 GFP_KERNEL);
3086 if (ses_init_buf) {
3087 ses_init_buf->trailer.session_req.called_len = 32;
3088
Colin Ian King997152f2016-01-25 16:25:54 +00003089 if (server->server_RFC1001_name[0] != 0)
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003090 rfc1002mangle(ses_init_buf->trailer.
3091 session_req.called_name,
3092 server->server_RFC1001_name,
3093 RFC1001_NAME_LEN_WITH_NULL);
3094 else
3095 rfc1002mangle(ses_init_buf->trailer.
3096 session_req.called_name,
3097 DEFAULT_CIFS_CALLED_NAME,
3098 RFC1001_NAME_LEN_WITH_NULL);
3099
3100 ses_init_buf->trailer.session_req.calling_len = 32;
3101
3102 /*
3103 * calling name ends in null (byte 16) from old smb
3104 * convention.
3105 */
Steve Frenchc85c35f2015-03-27 01:15:02 -05003106 if (server->workstation_RFC1001_name[0] != 0)
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003107 rfc1002mangle(ses_init_buf->trailer.
3108 session_req.calling_name,
3109 server->workstation_RFC1001_name,
3110 RFC1001_NAME_LEN_WITH_NULL);
3111 else
3112 rfc1002mangle(ses_init_buf->trailer.
3113 session_req.calling_name,
3114 "LINUX_CIFS_CLNT",
3115 RFC1001_NAME_LEN_WITH_NULL);
3116
3117 ses_init_buf->trailer.session_req.scope1 = 0;
3118 ses_init_buf->trailer.session_req.scope2 = 0;
3119 smb_buf = (struct smb_hdr *)ses_init_buf;
3120
3121 /* sizeof RFC1002_SESSION_REQUEST with no scope */
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003122 smb_buf->smb_buf_length = cpu_to_be32(0x81000044);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003123 rc = smb_send(server, smb_buf, 0x44);
3124 kfree(ses_init_buf);
3125 /*
3126 * RFC1001 layer in at least one server
3127 * requires very short break before negprot
3128 * presumably because not expecting negprot
3129 * to follow so fast. This is a simple
3130 * solution that works without
3131 * complicating the code and causes no
3132 * significant slowing down on mount
3133 * for everyone else
3134 */
3135 usleep_range(1000, 2000);
3136 }
3137 /*
3138 * else the negprot may still work without this
3139 * even though malloc failed
3140 */
3141
3142 return rc;
3143}
3144
3145static int
3146generic_ip_connect(struct TCP_Server_Info *server)
3147{
3148 int rc = 0;
Steve French6da97912011-03-13 18:55:55 +00003149 __be16 sport;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003150 int slen, sfamily;
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003151 struct socket *socket = server->ssocket;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003152 struct sockaddr *saddr;
3153
3154 saddr = (struct sockaddr *) &server->dstaddr;
3155
3156 if (server->dstaddr.ss_family == AF_INET6) {
3157 sport = ((struct sockaddr_in6 *) saddr)->sin6_port;
3158 slen = sizeof(struct sockaddr_in6);
3159 sfamily = AF_INET6;
3160 } else {
3161 sport = ((struct sockaddr_in *) saddr)->sin_port;
3162 slen = sizeof(struct sockaddr_in);
3163 sfamily = AF_INET;
3164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003166 if (socket == NULL) {
Rob Landleyf1d0c992011-01-22 15:44:05 -06003167 rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM,
3168 IPPROTO_TCP, &socket, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003170 cifs_dbg(VFS, "Error %d creating socket\n", rc);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003171 server->ssocket = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 }
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003174
3175 /* BB other socket options to set KEEPALIVE, NODELAY? */
Joe Perchesf96637b2013-05-04 22:12:25 -05003176 cifs_dbg(FYI, "Socket created\n");
Jeff Laytonbcf4b102008-12-01 18:42:15 -05003177 server->ssocket = socket;
3178 socket->sk->sk_allocation = GFP_NOFS;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003179 if (sfamily == AF_INET6)
3180 cifs_reclassify_socket6(socket);
3181 else
3182 cifs_reclassify_socket4(socket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 }
3184
Ben Greear3eb9a882010-09-01 17:06:02 -07003185 rc = bind_socket(server);
3186 if (rc < 0)
3187 return rc;
3188
Jeff Laytond5c56052008-12-01 18:42:33 -05003189 /*
3190 * Eventually check for other socket options to change from
3191 * the default. sock_setsockopt not used because it expects
3192 * user space buffer
3193 */
3194 socket->sk->sk_rcvtimeo = 7 * HZ;
Steve Frenchda505c32009-01-19 03:49:35 +00003195 socket->sk->sk_sndtimeo = 5 * HZ;
Steve French6a5fa2362010-01-01 01:28:43 +00003196
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003197 /* make the bufsizes depend on wsize/rsize and max requests */
3198 if (server->noautotune) {
3199 if (socket->sk->sk_sndbuf < (200 * 1024))
3200 socket->sk->sk_sndbuf = 200 * 1024;
3201 if (socket->sk->sk_rcvbuf < (140 * 1024))
3202 socket->sk->sk_rcvbuf = 140 * 1024;
3203 }
3204
Steve French6a5fa2362010-01-01 01:28:43 +00003205 if (server->tcp_nodelay) {
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003206 int val = 1;
Steve French6a5fa2362010-01-01 01:28:43 +00003207 rc = kernel_setsockopt(socket, SOL_TCP, TCP_NODELAY,
3208 (char *)&val, sizeof(val));
3209 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05003210 cifs_dbg(FYI, "set TCP_NODELAY socket option error %d\n",
3211 rc);
Steve French6a5fa2362010-01-01 01:28:43 +00003212 }
3213
Joe Perchesf96637b2013-05-04 22:12:25 -05003214 cifs_dbg(FYI, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx\n",
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003215 socket->sk->sk_sndbuf,
3216 socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo);
3217
Jeff Laytonee1b3ea2011-06-21 07:18:26 -04003218 rc = socket->ops->connect(socket, saddr, slen, 0);
3219 if (rc < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003220 cifs_dbg(FYI, "Error %d connecting to server\n", rc);
Jeff Laytonee1b3ea2011-06-21 07:18:26 -04003221 sock_release(socket);
3222 server->ssocket = NULL;
3223 return rc;
3224 }
3225
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003226 if (sport == htons(RFC1001_PORT))
3227 rc = ip_rfc1001_connect(server);
Steve French50c2f752007-07-13 00:33:32 +00003228
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 return rc;
3230}
3231
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003232static int
3233ip_connect(struct TCP_Server_Info *server)
3234{
Steve French6da97912011-03-13 18:55:55 +00003235 __be16 *sport;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003236 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
3237 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
3238
3239 if (server->dstaddr.ss_family == AF_INET6)
3240 sport = &addr6->sin6_port;
3241 else
3242 sport = &addr->sin_port;
3243
3244 if (*sport == 0) {
3245 int rc;
3246
3247 /* try with 445 port at first */
3248 *sport = htons(CIFS_PORT);
3249
3250 rc = generic_ip_connect(server);
3251 if (rc >= 0)
3252 return rc;
3253
3254 /* if it failed, try with 139 port */
3255 *sport = htons(RFC1001_PORT);
3256 }
3257
3258 return generic_ip_connect(server);
3259}
3260
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003261void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon,
Al Viro2c6292a2011-06-17 09:05:48 -04003262 struct cifs_sb_info *cifs_sb, struct smb_vol *vol_info)
Steve French8af18972007-02-14 04:42:51 +00003263{
3264 /* if we are reconnecting then should we check to see if
3265 * any requested capabilities changed locally e.g. via
3266 * remount but we can not do much about it here
3267 * if they have (even if we could detect it by the following)
3268 * Perhaps we could add a backpointer to array of sb from tcon
3269 * or if we change to make all sb to same share the same
3270 * sb as NFS - then we only have one backpointer to sb.
3271 * What if we wanted to mount the server share twice once with
3272 * and once without posixacls or posix paths? */
3273 __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French50c2f752007-07-13 00:33:32 +00003274
Steve Frenchc18c8422007-07-18 23:21:09 +00003275 if (vol_info && vol_info->no_linux_ext) {
3276 tcon->fsUnixInfo.Capability = 0;
3277 tcon->unix_ext = 0; /* Unix Extensions disabled */
Joe Perchesf96637b2013-05-04 22:12:25 -05003278 cifs_dbg(FYI, "Linux protocol extensions disabled\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00003279 return;
3280 } else if (vol_info)
3281 tcon->unix_ext = 1; /* Unix Extensions supported */
3282
3283 if (tcon->unix_ext == 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003284 cifs_dbg(FYI, "Unix extensions disabled so not set on reconnect\n");
Steve Frenchc18c8422007-07-18 23:21:09 +00003285 return;
3286 }
Steve French50c2f752007-07-13 00:33:32 +00003287
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003288 if (!CIFSSMBQFSUnixInfo(xid, tcon)) {
Steve French8af18972007-02-14 04:42:51 +00003289 __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
Joe Perchesf96637b2013-05-04 22:12:25 -05003290 cifs_dbg(FYI, "unix caps which server supports %lld\n", cap);
Steve French8af18972007-02-14 04:42:51 +00003291 /* check for reconnect case in which we do not
3292 want to change the mount behavior if we can avoid it */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003293 if (vol_info == NULL) {
Steve French50c2f752007-07-13 00:33:32 +00003294 /* turn off POSIX ACL and PATHNAMES if not set
Steve French8af18972007-02-14 04:42:51 +00003295 originally at mount time */
3296 if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0)
3297 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
Igor Mammedov11b6d642008-02-15 19:06:04 +00003298 if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
3299 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003300 cifs_dbg(VFS, "POSIXPATH support change\n");
Steve French8af18972007-02-14 04:42:51 +00003301 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
Igor Mammedov11b6d642008-02-15 19:06:04 +00003302 } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003303 cifs_dbg(VFS, "possible reconnect error\n");
3304 cifs_dbg(VFS, "server disabled POSIX path support\n");
Igor Mammedov11b6d642008-02-15 19:06:04 +00003305 }
Steve French8af18972007-02-14 04:42:51 +00003306 }
Steve French50c2f752007-07-13 00:33:32 +00003307
Steve French6848b732011-05-26 18:38:54 +00003308 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003309 cifs_dbg(VFS, "per-share encryption not supported yet\n");
Steve French6848b732011-05-26 18:38:54 +00003310
Steve French8af18972007-02-14 04:42:51 +00003311 cap &= CIFS_UNIX_CAP_MASK;
Steve French75865f8c2007-06-24 18:30:48 +00003312 if (vol_info && vol_info->no_psx_acl)
Steve French8af18972007-02-14 04:42:51 +00003313 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
Steve French75865f8c2007-06-24 18:30:48 +00003314 else if (CIFS_UNIX_POSIX_ACL_CAP & cap) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003315 cifs_dbg(FYI, "negotiated posix acl support\n");
Al Viro2c6292a2011-06-17 09:05:48 -04003316 if (cifs_sb)
3317 cifs_sb->mnt_cifs_flags |=
3318 CIFS_MOUNT_POSIXACL;
Steve French8af18972007-02-14 04:42:51 +00003319 }
3320
Steve French75865f8c2007-06-24 18:30:48 +00003321 if (vol_info && vol_info->posix_paths == 0)
Steve French8af18972007-02-14 04:42:51 +00003322 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
Steve French75865f8c2007-06-24 18:30:48 +00003323 else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003324 cifs_dbg(FYI, "negotiate posix pathnames\n");
Al Viro2c6292a2011-06-17 09:05:48 -04003325 if (cifs_sb)
3326 cifs_sb->mnt_cifs_flags |=
Steve French8af18972007-02-14 04:42:51 +00003327 CIFS_MOUNT_POSIX_PATHS;
3328 }
Steve French50c2f752007-07-13 00:33:32 +00003329
Joe Perchesf96637b2013-05-04 22:12:25 -05003330 cifs_dbg(FYI, "Negotiate caps 0x%x\n", (int)cap);
Steve French8af18972007-02-14 04:42:51 +00003331#ifdef CONFIG_CIFS_DEBUG2
Steve French75865f8c2007-06-24 18:30:48 +00003332 if (cap & CIFS_UNIX_FCNTL_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003333 cifs_dbg(FYI, "FCNTL cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003334 if (cap & CIFS_UNIX_EXTATTR_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003335 cifs_dbg(FYI, "EXTATTR cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003336 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003337 cifs_dbg(FYI, "POSIX path cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003338 if (cap & CIFS_UNIX_XATTR_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003339 cifs_dbg(FYI, "XATTR cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003340 if (cap & CIFS_UNIX_POSIX_ACL_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003341 cifs_dbg(FYI, "POSIX ACL cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003342 if (cap & CIFS_UNIX_LARGE_READ_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003343 cifs_dbg(FYI, "very large read cap\n");
Steve French75865f8c2007-06-24 18:30:48 +00003344 if (cap & CIFS_UNIX_LARGE_WRITE_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003345 cifs_dbg(FYI, "very large write cap\n");
Steve French6848b732011-05-26 18:38:54 +00003346 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003347 cifs_dbg(FYI, "transport encryption cap\n");
Steve French6848b732011-05-26 18:38:54 +00003348 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
Joe Perchesf96637b2013-05-04 22:12:25 -05003349 cifs_dbg(FYI, "mandatory transport encryption cap\n");
Steve French8af18972007-02-14 04:42:51 +00003350#endif /* CIFS_DEBUG2 */
3351 if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) {
Steve French442aa312007-09-24 20:25:46 +00003352 if (vol_info == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003353 cifs_dbg(FYI, "resetting capabilities failed\n");
Steve French442aa312007-09-24 20:25:46 +00003354 } else
Joe Perchesf96637b2013-05-04 22:12:25 -05003355 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 +00003356
Steve French8af18972007-02-14 04:42:51 +00003357 }
3358 }
3359}
3360
Sachin Prabhu4214ebf2016-07-29 22:38:19 +01003361int cifs_setup_cifs_sb(struct smb_vol *pvolume_info,
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003362 struct cifs_sb_info *cifs_sb)
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -04003363{
Jeff Layton2de970f2010-10-06 19:51:12 -04003364 INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks);
3365
Al Viro2ced6f62011-06-17 09:20:04 -04003366 spin_lock_init(&cifs_sb->tlink_tree_lock);
3367 cifs_sb->tlink_tree = RB_ROOT;
3368
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003369 /*
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003370 * Temporarily set r/wsize for matching superblock. If we end up using
3371 * new sb then client will later negotiate it downward if needed.
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003372 */
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003373 cifs_sb->rsize = pvolume_info->rsize;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003374 cifs_sb->wsize = pvolume_info->wsize;
3375
Steve French3b795212008-11-13 19:45:32 +00003376 cifs_sb->mnt_uid = pvolume_info->linux_uid;
3377 cifs_sb->mnt_gid = pvolume_info->linux_gid;
3378 cifs_sb->mnt_file_mode = pvolume_info->file_mode;
3379 cifs_sb->mnt_dir_mode = pvolume_info->dir_mode;
Joe Perchesf96637b2013-05-04 22:12:25 -05003380 cifs_dbg(FYI, "file mode: 0x%hx dir mode: 0x%hx\n",
3381 cifs_sb->mnt_file_mode, cifs_sb->mnt_dir_mode);
Steve French3b795212008-11-13 19:45:32 +00003382
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05303383 cifs_sb->actimeo = pvolume_info->actimeo;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003384 cifs_sb->local_nls = pvolume_info->local_nls;
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05303385
Steve French3b795212008-11-13 19:45:32 +00003386 if (pvolume_info->noperm)
3387 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_PERM;
3388 if (pvolume_info->setuids)
3389 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SET_UID;
Steve French95932652016-09-23 01:36:34 -05003390 if (pvolume_info->setuidfromacl)
3391 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UID_FROM_ACL;
Steve French3b795212008-11-13 19:45:32 +00003392 if (pvolume_info->server_ino)
3393 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SERVER_INUM;
3394 if (pvolume_info->remap)
Steve French2baa2682014-09-27 02:19:01 -05003395 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SFM_CHR;
3396 if (pvolume_info->sfu_remap)
Steve French3b795212008-11-13 19:45:32 +00003397 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SPECIAL_CHR;
3398 if (pvolume_info->no_xattr)
3399 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_XATTR;
3400 if (pvolume_info->sfu_emul)
3401 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UNX_EMUL;
3402 if (pvolume_info->nobrl)
3403 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_BRL;
Steve Frenchbe652442009-02-23 15:21:59 +00003404 if (pvolume_info->nostrictsync)
Steve French4717bed2009-02-24 14:44:19 +00003405 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOSSYNC;
Steve French13a6e422008-12-02 17:24:33 +00003406 if (pvolume_info->mand_lock)
3407 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOPOSIXBRL;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00003408 if (pvolume_info->rwpidforward)
3409 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RWPIDFORWARD;
Steve French3b795212008-11-13 19:45:32 +00003410 if (pvolume_info->cifs_acl)
3411 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_ACL;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01003412 if (pvolume_info->backupuid_specified) {
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05003413 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPUID;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01003414 cifs_sb->mnt_backupuid = pvolume_info->backupuid;
3415 }
3416 if (pvolume_info->backupgid_specified) {
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05003417 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPGID;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01003418 cifs_sb->mnt_backupgid = pvolume_info->backupgid;
3419 }
Steve French3b795212008-11-13 19:45:32 +00003420 if (pvolume_info->override_uid)
3421 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_UID;
3422 if (pvolume_info->override_gid)
3423 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_GID;
3424 if (pvolume_info->dynperm)
3425 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DYNPERM;
Suresh Jayaramanfa1df752010-07-05 18:13:36 +05303426 if (pvolume_info->fsc)
3427 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_FSCACHE;
Jeff Layton0eb8a132010-10-06 19:51:12 -04003428 if (pvolume_info->multiuser)
3429 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_MULTIUSER |
3430 CIFS_MOUNT_NO_PERM);
Pavel Shilovskyd39454f2011-01-24 14:16:35 -05003431 if (pvolume_info->strict_io)
3432 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_STRICT_IO;
Steve French3b795212008-11-13 19:45:32 +00003433 if (pvolume_info->direct_io) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003434 cifs_dbg(FYI, "mounting share using direct i/o\n");
Steve French3b795212008-11-13 19:45:32 +00003435 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DIRECT_IO;
3436 }
Stefan Metzmacher736a33202010-07-30 14:56:00 +02003437 if (pvolume_info->mfsymlinks) {
3438 if (pvolume_info->sfu_emul) {
Steve Frenchdb8b6312014-09-22 05:13:55 -05003439 /*
3440 * Our SFU ("Services for Unix" emulation does not allow
3441 * creating symlinks but does allow reading existing SFU
3442 * symlinks (it does allow both creating and reading SFU
3443 * style mknod and FIFOs though). When "mfsymlinks" and
3444 * "sfu" are both enabled at the same time, it allows
3445 * reading both types of symlinks, but will only create
3446 * them with mfsymlinks format. This allows better
3447 * Apple compatibility (probably better for Samba too)
3448 * while still recognizing old Windows style symlinks.
3449 */
3450 cifs_dbg(VFS, "mount options mfsymlinks and sfu both enabled\n");
Stefan Metzmacher736a33202010-07-30 14:56:00 +02003451 }
Steve Frenchdb8b6312014-09-22 05:13:55 -05003452 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MF_SYMLINKS;
Stefan Metzmacher736a33202010-07-30 14:56:00 +02003453 }
Steve French3b795212008-11-13 19:45:32 +00003454
3455 if ((pvolume_info->cifs_acl) && (pvolume_info->dynperm))
Joe Perchesf96637b2013-05-04 22:12:25 -05003456 cifs_dbg(VFS, "mount option dynperm ignored if cifsacl mount option supported\n");
Sachin Prabhu4214ebf2016-07-29 22:38:19 +01003457
3458 if (pvolume_info->prepath) {
3459 cifs_sb->prepath = kstrdup(pvolume_info->prepath, GFP_KERNEL);
3460 if (cifs_sb->prepath == NULL)
3461 return -ENOMEM;
3462 }
3463
3464 return 0;
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -04003465}
3466
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003467static void
3468cleanup_volume_info_contents(struct smb_vol *volume_info)
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003469{
Sean Finneyb9468452011-04-11 13:19:32 +00003470 kfree(volume_info->username);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003471 kzfree(volume_info->password);
Jesper Juhl95c75452011-08-27 18:58:34 +02003472 kfree(volume_info->UNC);
Sean Finneyb9468452011-04-11 13:19:32 +00003473 kfree(volume_info->domainname);
3474 kfree(volume_info->iocharset);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003475 kfree(volume_info->prepath);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003476}
3477
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003478void
3479cifs_cleanup_volume_info(struct smb_vol *volume_info)
3480{
3481 if (!volume_info)
3482 return;
3483 cleanup_volume_info_contents(volume_info);
3484 kfree(volume_info);
3485}
3486
3487
Steve French2d6d5892009-04-09 00:36:44 +00003488#ifdef CONFIG_CIFS_DFS_UPCALL
Steve French6d3ea7e2012-11-28 22:34:41 -06003489/*
3490 * cifs_build_path_to_root returns full path to root when we do not have an
3491 * exiting connection (tcon)
3492 */
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003493static char *
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003494build_unc_path_to_root(const struct smb_vol *vol,
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003495 const struct cifs_sb_info *cifs_sb)
3496{
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003497 char *full_path, *pos;
Jeff Layton839db3d2012-12-10 06:10:45 -05003498 unsigned int pplen = vol->prepath ? strlen(vol->prepath) + 1 : 0;
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003499 unsigned int unc_len = strnlen(vol->UNC, MAX_TREE_SIZE + 1);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003500
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003501 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003502 if (full_path == NULL)
3503 return ERR_PTR(-ENOMEM);
3504
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003505 strncpy(full_path, vol->UNC, unc_len);
3506 pos = full_path + unc_len;
3507
3508 if (pplen) {
Jeff Layton1fc29ba2013-05-31 10:00:18 -04003509 *pos = CIFS_DIR_SEP(cifs_sb);
3510 strncpy(pos + 1, vol->prepath, pplen);
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003511 pos += pplen;
3512 }
3513
3514 *pos = '\0'; /* add trailing null */
Steve Frenchf87d39d2011-05-27 03:50:55 +00003515 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
Joe Perchesf96637b2013-05-04 22:12:25 -05003516 cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003517 return full_path;
3518}
Sean Finneydd613942011-04-11 13:19:30 +00003519
3520/*
3521 * Perform a dfs referral query for a share and (optionally) prefix
3522 *
Sean Finney046462a2011-04-11 13:19:33 +00003523 * If a referral is found, cifs_sb->mountdata will be (re-)allocated
3524 * to a string containing updated options for the submount. Otherwise it
3525 * will be left untouched.
Sean Finneydd613942011-04-11 13:19:30 +00003526 *
3527 * Returns the rc from get_dfs_path to the caller, which can be used to
3528 * determine whether there were referrals.
3529 */
3530static int
Pavel Shilovskyb669f332012-05-27 20:21:53 +04003531expand_dfs_referral(const unsigned int xid, struct cifs_ses *ses,
Sean Finneydd613942011-04-11 13:19:30 +00003532 struct smb_vol *volume_info, struct cifs_sb_info *cifs_sb,
Sean Finney046462a2011-04-11 13:19:33 +00003533 int check_prefix)
Sean Finneydd613942011-04-11 13:19:30 +00003534{
3535 int rc;
3536 unsigned int num_referrals = 0;
3537 struct dfs_info3_param *referrals = NULL;
3538 char *full_path = NULL, *ref_path = NULL, *mdata = NULL;
3539
3540 full_path = build_unc_path_to_root(volume_info, cifs_sb);
3541 if (IS_ERR(full_path))
3542 return PTR_ERR(full_path);
3543
3544 /* For DFS paths, skip the first '\' of the UNC */
3545 ref_path = check_prefix ? full_path + 1 : volume_info->UNC + 1;
3546
Pavel Shilovskyb669f332012-05-27 20:21:53 +04003547 rc = get_dfs_path(xid, ses, ref_path, cifs_sb->local_nls,
Steve French2baa2682014-09-27 02:19:01 -05003548 &num_referrals, &referrals, cifs_remap(cifs_sb));
Sean Finneydd613942011-04-11 13:19:30 +00003549
3550 if (!rc && num_referrals > 0) {
3551 char *fake_devname = NULL;
3552
3553 mdata = cifs_compose_mount_options(cifs_sb->mountdata,
3554 full_path + 1, referrals,
3555 &fake_devname);
3556
3557 free_dfs_info_array(referrals, num_referrals);
Sean Finney046462a2011-04-11 13:19:33 +00003558
Sean Finneydd613942011-04-11 13:19:30 +00003559 if (IS_ERR(mdata)) {
3560 rc = PTR_ERR(mdata);
3561 mdata = NULL;
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003562 } else {
3563 cleanup_volume_info_contents(volume_info);
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003564 rc = cifs_setup_volume_info(volume_info, mdata,
3565 fake_devname);
Sean Finneydd613942011-04-11 13:19:30 +00003566 }
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003567 kfree(fake_devname);
3568 kfree(cifs_sb->mountdata);
Sean Finney046462a2011-04-11 13:19:33 +00003569 cifs_sb->mountdata = mdata;
Sean Finneydd613942011-04-11 13:19:30 +00003570 }
3571 kfree(full_path);
3572 return rc;
3573}
Steve French2d6d5892009-04-09 00:36:44 +00003574#endif
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003575
Jeff Layton04db79b2011-07-06 08:10:38 -04003576static int
3577cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data,
3578 const char *devname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579{
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003580 int rc = 0;
Sean Finneydd613942011-04-11 13:19:30 +00003581
Jeff Layton04db79b2011-07-06 08:10:38 -04003582 if (cifs_parse_mount_options(mount_data, devname, volume_info))
3583 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584
Jeff Layton7586b762008-12-01 18:41:49 -05003585 if (volume_info->nullauth) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003586 cifs_dbg(FYI, "Anonymous login\n");
Jeff Layton04febab2012-01-17 16:09:15 -05003587 kfree(volume_info->username);
3588 volume_info->username = NULL;
Jeff Layton7586b762008-12-01 18:41:49 -05003589 } else if (volume_info->username) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 /* BB fixme parse for domain name here */
Joe Perchesf96637b2013-05-04 22:12:25 -05003591 cifs_dbg(FYI, "Username: %s\n", volume_info->username);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -05003593 cifs_dbg(VFS, "No username specified\n");
Steve French50c2f752007-07-13 00:33:32 +00003594 /* In userspace mount helper we can get user name from alternate
3595 locations such as env variables and files on disk */
Jeff Layton04db79b2011-07-06 08:10:38 -04003596 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 }
3598
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 /* this is needed for ASCII cp to Unicode converts */
Jeff Layton7586b762008-12-01 18:41:49 -05003600 if (volume_info->iocharset == NULL) {
Jeff Laytona5fc4ce2010-04-24 07:57:42 -04003601 /* load_nls_default cannot return null */
3602 volume_info->local_nls = load_nls_default();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 } else {
Jeff Laytona5fc4ce2010-04-24 07:57:42 -04003604 volume_info->local_nls = load_nls(volume_info->iocharset);
3605 if (volume_info->local_nls == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003606 cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n",
Joe Perchesb6b38f72010-04-21 03:50:45 +00003607 volume_info->iocharset);
Jeff Layton04db79b2011-07-06 08:10:38 -04003608 return -ELIBACC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 }
3610 }
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003611
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003612 return rc;
Jeff Layton04db79b2011-07-06 08:10:38 -04003613}
3614
3615struct smb_vol *
3616cifs_get_volume_info(char *mount_data, const char *devname)
3617{
3618 int rc;
3619 struct smb_vol *volume_info;
3620
Jeff Layton6ee95422012-11-26 11:09:57 -05003621 volume_info = kmalloc(sizeof(struct smb_vol), GFP_KERNEL);
Jeff Layton04db79b2011-07-06 08:10:38 -04003622 if (!volume_info)
3623 return ERR_PTR(-ENOMEM);
3624
3625 rc = cifs_setup_volume_info(volume_info, mount_data, devname);
3626 if (rc) {
3627 cifs_cleanup_volume_info(volume_info);
3628 volume_info = ERR_PTR(rc);
3629 }
3630
3631 return volume_info;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003632}
3633
Aurelien Aptela6b50582016-05-25 19:59:09 +02003634static int
3635cifs_are_all_path_components_accessible(struct TCP_Server_Info *server,
3636 unsigned int xid,
3637 struct cifs_tcon *tcon,
3638 struct cifs_sb_info *cifs_sb,
3639 char *full_path)
3640{
3641 int rc;
3642 char *s;
3643 char sep, tmp;
3644
3645 sep = CIFS_DIR_SEP(cifs_sb);
3646 s = full_path;
3647
3648 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, "");
3649 while (rc == 0) {
3650 /* skip separators */
3651 while (*s == sep)
3652 s++;
3653 if (!*s)
3654 break;
3655 /* next separator */
3656 while (*s && *s != sep)
3657 s++;
3658
3659 /*
3660 * temporarily null-terminate the path at the end of
3661 * the current component
3662 */
3663 tmp = *s;
3664 *s = 0;
3665 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3666 full_path);
3667 *s = tmp;
3668 }
3669 return rc;
3670}
3671
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003672int
Al Viro2c6292a2011-06-17 09:05:48 -04003673cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *volume_info)
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003674{
Jeff Layton1daaae82012-03-21 06:30:40 -04003675 int rc;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003676 unsigned int xid;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003677 struct cifs_ses *ses;
Steve French96daf2b2011-05-27 04:34:02 +00003678 struct cifs_tcon *tcon;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003679 struct TCP_Server_Info *server;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003680 char *full_path;
3681 struct tcon_link *tlink;
3682#ifdef CONFIG_CIFS_DFS_UPCALL
3683 int referral_walks_count = 0;
Jeff Layton20547492011-07-09 12:21:07 -04003684#endif
Al Virodd854462011-06-17 08:24:42 -04003685
Christoph Hellwigb4caecd2015-01-14 10:42:32 +01003686 rc = bdi_setup_and_register(&cifs_sb->bdi, "cifs");
Al Virodd854462011-06-17 08:24:42 -04003687 if (rc)
3688 return rc;
3689
Jeff Layton20547492011-07-09 12:21:07 -04003690#ifdef CONFIG_CIFS_DFS_UPCALL
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003691try_mount_again:
3692 /* cleanup activities if we're chasing a referral */
3693 if (referral_walks_count) {
3694 if (tcon)
3695 cifs_put_tcon(tcon);
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003696 else if (ses)
3697 cifs_put_smb_ses(ses);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003698
Sachin Prabhu1dfd18d2015-06-16 16:36:17 +01003699 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_POSIX_PATHS;
3700
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003701 free_xid(xid);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003702 }
3703#endif
Jeff Layton1daaae82012-03-21 06:30:40 -04003704 rc = 0;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003705 tcon = NULL;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003706 ses = NULL;
3707 server = NULL;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003708 full_path = NULL;
3709 tlink = NULL;
3710
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003711 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712
Jeff Layton63c038c2008-12-01 18:41:46 -05003713 /* get a reference to a tcp session */
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003714 server = cifs_get_tcp_session(volume_info);
3715 if (IS_ERR(server)) {
3716 rc = PTR_ERR(server);
Al Virodd854462011-06-17 08:24:42 -04003717 bdi_destroy(&cifs_sb->bdi);
Jeff Layton63c038c2008-12-01 18:41:46 -05003718 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 }
Steve French141891f2016-09-23 00:44:16 -05003720 if ((volume_info->max_credits < 20) ||
3721 (volume_info->max_credits > 60000))
3722 server->max_credits = SMB2_MAX_CREDITS_AVAILABLE;
3723 else
3724 server->max_credits = volume_info->max_credits;
Jeff Layton36988c72010-04-24 07:57:43 -04003725 /* get a reference to a SMB session */
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003726 ses = cifs_get_smb_ses(server, volume_info);
3727 if (IS_ERR(ses)) {
3728 rc = PTR_ERR(ses);
3729 ses = NULL;
Jeff Layton36988c72010-04-24 07:57:43 -04003730 goto mount_fail_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 }
Steve French50c2f752007-07-13 00:33:32 +00003732
Steve French592fafe2015-11-03 10:08:53 -06003733#ifdef CONFIG_CIFS_SMB2
Steve Frenchb618f002015-11-03 09:15:03 -06003734 if ((volume_info->persistent == true) && ((ses->server->capabilities &
3735 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES) == 0)) {
3736 cifs_dbg(VFS, "persistent handles not supported by server\n");
3737 rc = -EOPNOTSUPP;
3738 goto mount_fail_check;
3739 }
Steve French592fafe2015-11-03 10:08:53 -06003740#endif /* CONFIG_CIFS_SMB2*/
3741
Jeff Laytond00c28d2010-04-24 07:57:44 -04003742 /* search for existing tcon to this server share */
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003743 tcon = cifs_get_tcon(ses, volume_info);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003744 if (IS_ERR(tcon)) {
3745 rc = PTR_ERR(tcon);
3746 tcon = NULL;
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003747 goto remote_path_check;
Jeff Laytond00c28d2010-04-24 07:57:44 -04003748 }
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003749
Steve French6848b732011-05-26 18:38:54 +00003750 /* tell server which Unix caps we support */
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04003751 if (cap_unix(tcon->ses)) {
Steve French6848b732011-05-26 18:38:54 +00003752 /* reset of caps checks mount to see if unix extensions
3753 disabled for just this mount */
Al Viro2c6292a2011-06-17 09:05:48 -04003754 reset_cifs_unix_caps(xid, tcon, cifs_sb, volume_info);
Steve French6848b732011-05-26 18:38:54 +00003755 if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) &&
3756 (le64_to_cpu(tcon->fsUnixInfo.Capability) &
3757 CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)) {
3758 rc = -EACCES;
3759 goto mount_fail_check;
3760 }
3761 } else
3762 tcon->unix_ext = 0; /* server does not support them */
3763
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003764 /* do not care if a following call succeed - informational */
3765 if (!tcon->ipc && server->ops->qfs_tcon)
3766 server->ops->qfs_tcon(xid, tcon);
Steve Frenchd82c2df2008-11-15 00:07:26 +00003767
Pavel Shilovsky24985c52012-09-18 16:20:28 -07003768 cifs_sb->wsize = server->ops->negotiate_wsize(tcon, volume_info);
3769 cifs_sb->rsize = server->ops->negotiate_rsize(tcon, volume_info);
Jeff Laytonf7910cb2011-05-19 16:22:58 -04003770
Jeff Layton66bfaad2011-10-19 15:30:35 -04003771 /* tune readahead according to rsize */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003772 cifs_sb->bdi.ra_pages = cifs_sb->rsize / PAGE_SIZE;
Jeff Layton03ceace2010-12-06 21:07:33 -05003773
Igor Mammedove4cce942009-02-10 14:10:26 +03003774remote_path_check:
3775#ifdef CONFIG_CIFS_DFS_UPCALL
3776 /*
3777 * Perform an unconditional check for whether there are DFS
3778 * referrals for this path without prefix, to provide support
3779 * for DFS referrals from w2k8 servers which don't seem to respond
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003780 * with PATH_NOT_COVERED to requests that include the prefix.
3781 * Chase the referral if found, otherwise continue normally.
Steve Frenchd036f502009-04-03 03:12:08 +00003782 */
Igor Mammedov5c2503a2009-04-21 19:31:05 +04003783 if (referral_walks_count == 0) {
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003784 int refrc = expand_dfs_referral(xid, ses, volume_info, cifs_sb,
3785 false);
Steve Frencheeac8042006-01-13 21:34:58 -08003786 if (!refrc) {
Steve French4523cc32007-04-30 20:13:06 +00003787 referral_walks_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 goto try_mount_again;
3789 }
3790 }
3791#endif
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003792
Steve Frenchf87d39d2011-05-27 03:50:55 +00003793 /* check if a whole path is not remote */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 if (!rc && tcon) {
Pavel Shilovsky68889f22012-05-25 14:40:22 +04003795 if (!server->ops->is_path_accessible) {
3796 rc = -ENOSYS;
3797 goto mount_fail_check;
3798 }
Steve French6d3ea7e2012-11-28 22:34:41 -06003799 /*
3800 * cifs_build_path_to_root works only when we have a valid tcon
3801 */
Sachin Prabhu374402a2016-12-15 12:31:19 +05303802 full_path = cifs_build_path_to_root(volume_info, cifs_sb, tcon,
3803 tcon->Flags & SMB_SHARE_IS_IN_DFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 if (full_path == NULL) {
3805 rc = -ENOMEM;
3806 goto mount_fail_check;
3807 }
Pavel Shilovsky68889f22012-05-25 14:40:22 +04003808 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3809 full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 if (rc != 0 && rc != -EREMOTE) {
3811 kfree(full_path);
3812 goto mount_fail_check;
3813 }
Aurelien Aptela6b50582016-05-25 19:59:09 +02003814
Sachin Prabhud1713562016-09-06 13:22:34 +01003815 if (rc != -EREMOTE) {
3816 rc = cifs_are_all_path_components_accessible(server,
Aurelien Aptela6b50582016-05-25 19:59:09 +02003817 xid, tcon, cifs_sb,
3818 full_path);
Sachin Prabhud1713562016-09-06 13:22:34 +01003819 if (rc != 0) {
3820 cifs_dbg(VFS, "cannot query dirs between root and final path, "
3821 "enabling CIFS_MOUNT_USE_PREFIX_PATH\n");
3822 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3823 rc = 0;
3824 }
Aurelien Aptela6b50582016-05-25 19:59:09 +02003825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 kfree(full_path);
3827 }
3828
3829 /* get referral if needed */
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003830 if (rc == -EREMOTE) {
3831#ifdef CONFIG_CIFS_DFS_UPCALL
Igor Mammedov5c2503a2009-04-21 19:31:05 +04003832 if (referral_walks_count > MAX_NESTED_LINKS) {
3833 /*
3834 * BB: when we implement proper loop detection,
3835 * we will remove this check. But now we need it
3836 * to prevent an indefinite loop if 'DFS tree' is
3837 * misconfigured (i.e. has loops).
3838 */
3839 rc = -ELOOP;
3840 goto mount_fail_check;
3841 }
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003842
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003843 rc = expand_dfs_referral(xid, ses, volume_info, cifs_sb, true);
Jeff Layton7b91e262009-07-23 15:22:30 -04003844
Sean Finneydd613942011-04-11 13:19:30 +00003845 if (!rc) {
Igor Mammedov5c2503a2009-04-21 19:31:05 +04003846 referral_walks_count++;
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003847 goto try_mount_again;
3848 }
Sean Finneydd613942011-04-11 13:19:30 +00003849 goto mount_fail_check;
Steve Frenchd036f502009-04-03 03:12:08 +00003850#else /* No DFS support, return error on mount */
3851 rc = -EOPNOTSUPP;
3852#endif
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003853 }
3854
Jeff Layton9d002df2010-10-06 19:51:11 -04003855 if (rc)
3856 goto mount_fail_check;
3857
3858 /* now, hang the tcon off of the superblock */
3859 tlink = kzalloc(sizeof *tlink, GFP_KERNEL);
3860 if (tlink == NULL) {
3861 rc = -ENOMEM;
3862 goto mount_fail_check;
3863 }
3864
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003865 tlink->tl_uid = ses->linux_uid;
Jeff Layton9d002df2010-10-06 19:51:11 -04003866 tlink->tl_tcon = tcon;
3867 tlink->tl_time = jiffies;
3868 set_bit(TCON_LINK_MASTER, &tlink->tl_flags);
3869 set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
3870
Jeff Layton413e6612010-10-28 13:33:38 -04003871 cifs_sb->master_tlink = tlink;
Jeff Laytonb647c352010-10-28 11:16:44 -04003872 spin_lock(&cifs_sb->tlink_tree_lock);
3873 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
3874 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton413e6612010-10-28 13:33:38 -04003875
Jeff Laytonda472fc2012-03-23 14:40:53 -04003876 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
Jeff Layton2de970f2010-10-06 19:51:12 -04003877 TLINK_IDLE_EXPIRE);
3878
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003879mount_fail_check:
3880 /* on error free sesinfo and tcon struct if needed */
3881 if (rc) {
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003882 /* If find_unc succeeded then rc == 0 so we can not end */
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003883 /* up accidentally freeing someone elses tcon struct */
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003884 if (tcon)
3885 cifs_put_tcon(tcon);
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003886 else if (ses)
3887 cifs_put_smb_ses(ses);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003888 else
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07003889 cifs_put_tcp_session(server, 0);
Al Virodd854462011-06-17 08:24:42 -04003890 bdi_destroy(&cifs_sb->bdi);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003891 }
3892
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893out:
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003894 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 return rc;
3896}
3897
Jeff Layton8d1bca32011-06-11 21:17:10 -04003898/*
3899 * Issue a TREE_CONNECT request. Note that for IPC$ shares, that the tcon
3900 * pointer may be NULL.
3901 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902int
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003903CIFSTCon(const unsigned int xid, struct cifs_ses *ses,
Steve French96daf2b2011-05-27 04:34:02 +00003904 const char *tree, struct cifs_tcon *tcon,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 const struct nls_table *nls_codepage)
3906{
3907 struct smb_hdr *smb_buffer;
3908 struct smb_hdr *smb_buffer_response;
3909 TCONX_REQ *pSMB;
3910 TCONX_RSP *pSMBr;
3911 unsigned char *bcc_ptr;
3912 int rc = 0;
Jeff Layton690c5222011-01-20 13:36:51 -05003913 int length;
3914 __u16 bytes_left, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
3916 if (ses == NULL)
3917 return -EIO;
3918
3919 smb_buffer = cifs_buf_get();
Steve Frenchca43e3b2009-09-01 17:20:50 +00003920 if (smb_buffer == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 return -ENOMEM;
Steve Frenchca43e3b2009-09-01 17:20:50 +00003922
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 smb_buffer_response = smb_buffer;
3924
3925 header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX,
3926 NULL /*no tid */ , 4 /*wct */ );
Steve French1982c342005-08-17 12:38:22 -07003927
Pavel Shilovsky88257362012-05-23 14:01:59 +04003928 smb_buffer->Mid = get_next_mid(ses->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 smb_buffer->Uid = ses->Suid;
3930 pSMB = (TCONX_REQ *) smb_buffer;
3931 pSMBr = (TCONX_RSP *) smb_buffer_response;
3932
3933 pSMB->AndXCommand = 0xFF;
3934 pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 bcc_ptr = &pSMB->Password[0];
Jeff Layton8d1bca32011-06-11 21:17:10 -04003936 if (!tcon || (ses->server->sec_mode & SECMODE_USER)) {
Steve Frencheeac8042006-01-13 21:34:58 -08003937 pSMB->PasswordLength = cpu_to_le16(1); /* minimum */
Steve French7c7b25b2006-06-01 19:20:10 +00003938 *bcc_ptr = 0; /* password is null byte */
Steve Frencheeac8042006-01-13 21:34:58 -08003939 bcc_ptr++; /* skip password */
Steve French7c7b25b2006-06-01 19:20:10 +00003940 /* already aligned so no need to do it below */
Steve Frencheeac8042006-01-13 21:34:58 -08003941 } else {
Shirish Pargaonkar540b2e32011-01-18 22:33:54 -06003942 pSMB->PasswordLength = cpu_to_le16(CIFS_AUTH_RESP_SIZE);
Steve Frencheeac8042006-01-13 21:34:58 -08003943 /* BB FIXME add code to fail this if NTLMv2 or Kerberos
3944 specified as required (when that support is added to
3945 the vfs in the future) as only NTLM or the much
Steve French7c7b25b2006-06-01 19:20:10 +00003946 weaker LANMAN (which we do not send by default) is accepted
Steve Frencheeac8042006-01-13 21:34:58 -08003947 by Samba (not sure whether other servers allow
3948 NTLMv2 password here) */
Steve French7c7b25b2006-06-01 19:20:10 +00003949#ifdef CONFIG_CIFS_WEAK_PW_HASH
Jeff Layton04912d62010-04-24 07:57:45 -04003950 if ((global_secflags & CIFSSEC_MAY_LANMAN) &&
Jeff Layton3f618222013-06-12 19:52:14 -05003951 (ses->sectype == LANMAN))
Shirish Pargaonkard3ba50b2010-10-27 15:20:36 -05003952 calc_lanman_hash(tcon->password, ses->server->cryptkey,
Steve French96daf2b2011-05-27 04:34:02 +00003953 ses->server->sec_mode &
Jeff Layton4e53a3f2008-12-05 20:41:21 -05003954 SECMODE_PW_ENCRYPT ? true : false,
3955 bcc_ptr);
Steve French7c7b25b2006-06-01 19:20:10 +00003956 else
3957#endif /* CIFS_WEAK_PW_HASH */
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -06003958 rc = SMBNTencrypt(tcon->password, ses->server->cryptkey,
Shirish Pargaonkar9ef59922011-10-20 13:21:59 -05003959 bcc_ptr, nls_codepage);
Steve Frenchf3a31a22015-03-26 19:23:20 -05003960 if (rc) {
3961 cifs_dbg(FYI, "%s Can't generate NTLM rsp. Error: %d\n",
3962 __func__, rc);
3963 cifs_buf_release(smb_buffer);
3964 return rc;
3965 }
Steve Frencheeac8042006-01-13 21:34:58 -08003966
Shirish Pargaonkar540b2e32011-01-18 22:33:54 -06003967 bcc_ptr += CIFS_AUTH_RESP_SIZE;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003968 if (ses->capabilities & CAP_UNICODE) {
Steve French7c7b25b2006-06-01 19:20:10 +00003969 /* must align unicode strings */
3970 *bcc_ptr = 0; /* null byte password */
3971 bcc_ptr++;
3972 }
Steve Frencheeac8042006-01-13 21:34:58 -08003973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974
Jeff Layton38d77c52013-05-26 07:01:00 -04003975 if (ses->server->sign)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
3977
3978 if (ses->capabilities & CAP_STATUS32) {
3979 smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS;
3980 }
3981 if (ses->capabilities & CAP_DFS) {
3982 smb_buffer->Flags2 |= SMBFLG2_DFS;
3983 }
3984 if (ses->capabilities & CAP_UNICODE) {
3985 smb_buffer->Flags2 |= SMBFLG2_UNICODE;
3986 length =
Steve Frenchacbbb762012-01-18 22:32:33 -06003987 cifs_strtoUTF16((__le16 *) bcc_ptr, tree,
Steve French50c2f752007-07-13 00:33:32 +00003988 6 /* max utf8 char length in bytes */ *
Steve Frencha878fb22006-05-30 18:04:19 +00003989 (/* server len*/ + 256 /* share len */), nls_codepage);
3990 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 bcc_ptr += 2; /* skip trailing null */
3992 } else { /* ASCII */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993 strcpy(bcc_ptr, tree);
3994 bcc_ptr += strlen(tree) + 1;
3995 }
3996 strcpy(bcc_ptr, "?????");
3997 bcc_ptr += strlen("?????");
3998 bcc_ptr += 1;
3999 count = bcc_ptr - &pSMB->Password[0];
Steve Frenchbe8e3b02011-04-29 05:40:20 +00004000 pSMB->hdr.smb_buf_length = cpu_to_be32(be32_to_cpu(
4001 pSMB->hdr.smb_buf_length) + count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002 pSMB->ByteCount = cpu_to_le16(count);
4003
Steve French133672e2007-11-13 22:41:37 +00004004 rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length,
Jeff Layton77499812011-01-11 07:24:23 -05004005 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 /* above now done in SendReceive */
4008 if ((rc == 0) && (tcon != NULL)) {
Steve French0e0d2cf2009-05-01 05:27:32 +00004009 bool is_unicode;
4010
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 tcon->tidStatus = CifsGood;
Steve French3b795212008-11-13 19:45:32 +00004012 tcon->need_reconnect = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 tcon->tid = smb_buffer_response->Tid;
4014 bcc_ptr = pByteArea(smb_buffer_response);
Jeff Layton690c5222011-01-20 13:36:51 -05004015 bytes_left = get_bcc(smb_buffer_response);
Jeff Laytoncc20c032009-04-30 07:16:21 -04004016 length = strnlen(bcc_ptr, bytes_left - 2);
Steve French0e0d2cf2009-05-01 05:27:32 +00004017 if (smb_buffer->Flags2 & SMBFLG2_UNICODE)
4018 is_unicode = true;
4019 else
4020 is_unicode = false;
4021
Jeff Laytoncc20c032009-04-30 07:16:21 -04004022
Steve French50c2f752007-07-13 00:33:32 +00004023 /* skip service field (NB: this field is always ASCII) */
Steve French7f8ed422007-09-28 22:28:55 +00004024 if (length == 3) {
4025 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') &&
4026 (bcc_ptr[2] == 'C')) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004027 cifs_dbg(FYI, "IPC connection\n");
Steve French7f8ed422007-09-28 22:28:55 +00004028 tcon->ipc = 1;
4029 }
4030 } else if (length == 2) {
4031 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) {
4032 /* the most common case */
Joe Perchesf96637b2013-05-04 22:12:25 -05004033 cifs_dbg(FYI, "disk share connection\n");
Steve French7f8ed422007-09-28 22:28:55 +00004034 }
4035 }
Steve French50c2f752007-07-13 00:33:32 +00004036 bcc_ptr += length + 1;
Jeff Laytoncc20c032009-04-30 07:16:21 -04004037 bytes_left -= (length + 1);
Zhao Hongjiang46b51d02013-06-24 01:57:47 -05004038 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
Jeff Laytoncc20c032009-04-30 07:16:21 -04004039
4040 /* mostly informational -- no need to fail on error here */
Jeff Layton90a98b22009-07-20 13:40:52 -04004041 kfree(tcon->nativeFileSystem);
Steve Frenchacbbb762012-01-18 22:32:33 -06004042 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr,
Steve French0e0d2cf2009-05-01 05:27:32 +00004043 bytes_left, is_unicode,
Jeff Laytoncc20c032009-04-30 07:16:21 -04004044 nls_codepage);
4045
Joe Perchesf96637b2013-05-04 22:12:25 -05004046 cifs_dbg(FYI, "nativeFileSystem=%s\n", tcon->nativeFileSystem);
Jeff Laytoncc20c032009-04-30 07:16:21 -04004047
Steve Frenchfb8c4b12007-07-10 01:16:18 +00004048 if ((smb_buffer_response->WordCount == 3) ||
Steve French1a4e15a2006-10-12 21:33:51 +00004049 (smb_buffer_response->WordCount == 7))
4050 /* field is in same location */
Steve French39798772006-05-31 22:40:51 +00004051 tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport);
4052 else
4053 tcon->Flags = 0;
Joe Perchesf96637b2013-05-04 22:12:25 -05004054 cifs_dbg(FYI, "Tcon flags: 0x%x\n", tcon->Flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 } else if ((rc == 0) && tcon == NULL) {
Steve French50c2f752007-07-13 00:33:32 +00004056 /* all we need to save for IPC$ connection */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 ses->ipc_tid = smb_buffer_response->Tid;
4058 }
4059
Mariusz Kozlowskia8a11d32007-10-03 16:41:24 +00004060 cifs_buf_release(smb_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 return rc;
4062}
4063
Al Viro2e32cf52013-10-03 12:53:37 -04004064static void delayed_free(struct rcu_head *p)
4065{
4066 struct cifs_sb_info *sbi = container_of(p, struct cifs_sb_info, rcu);
4067 unload_nls(sbi->local_nls);
4068 kfree(sbi);
4069}
4070
Al Viro2a9b9952011-06-17 09:27:16 -04004071void
4072cifs_umount(struct cifs_sb_info *cifs_sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073{
Jeff Laytonb647c352010-10-28 11:16:44 -04004074 struct rb_root *root = &cifs_sb->tlink_tree;
4075 struct rb_node *node;
4076 struct tcon_link *tlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077
Jeff Layton2de970f2010-10-06 19:51:12 -04004078 cancel_delayed_work_sync(&cifs_sb->prune_tlinks);
4079
Jeff Laytonb647c352010-10-28 11:16:44 -04004080 spin_lock(&cifs_sb->tlink_tree_lock);
4081 while ((node = rb_first(root))) {
4082 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
4083 cifs_get_tlink(tlink);
4084 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4085 rb_erase(node, root);
Steve French50c2f752007-07-13 00:33:32 +00004086
Jeff Laytonb647c352010-10-28 11:16:44 -04004087 spin_unlock(&cifs_sb->tlink_tree_lock);
4088 cifs_put_tlink(tlink);
4089 spin_lock(&cifs_sb->tlink_tree_lock);
4090 }
4091 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004092
Al Virodd854462011-06-17 08:24:42 -04004093 bdi_destroy(&cifs_sb->bdi);
Al Virod757d712011-06-17 09:42:43 -04004094 kfree(cifs_sb->mountdata);
Aurelien Aptela6b50582016-05-25 19:59:09 +02004095 kfree(cifs_sb->prepath);
Al Viro2e32cf52013-10-03 12:53:37 -04004096 call_rcu(&cifs_sb->rcu, delayed_free);
Steve French50c2f752007-07-13 00:33:32 +00004097}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098
Pavel Shilovsky286170a2012-05-25 10:43:58 +04004099int
4100cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101{
4102 int rc = 0;
Jeff Layton198b5682010-04-24 07:57:48 -04004103 struct TCP_Server_Info *server = ses->server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104
Pavel Shilovsky286170a2012-05-25 10:43:58 +04004105 if (!server->ops->need_neg || !server->ops->negotiate)
4106 return -ENOSYS;
4107
Jeff Layton198b5682010-04-24 07:57:48 -04004108 /* only send once per connect */
Pavel Shilovsky286170a2012-05-25 10:43:58 +04004109 if (!server->ops->need_neg(server))
Jeff Layton198b5682010-04-24 07:57:48 -04004110 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111
Pavel Shilovsky45275782012-05-17 17:53:29 +04004112 set_credits(server, 1);
Pavel Shilovsky286170a2012-05-25 10:43:58 +04004113
4114 rc = server->ops->negotiate(xid, ses);
Jeff Layton198b5682010-04-24 07:57:48 -04004115 if (rc == 0) {
4116 spin_lock(&GlobalMid_Lock);
Jeff Layton7fdbaa12011-06-10 16:14:57 -04004117 if (server->tcpStatus == CifsNeedNegotiate)
Jeff Layton198b5682010-04-24 07:57:48 -04004118 server->tcpStatus = CifsGood;
4119 else
4120 rc = -EHOSTDOWN;
4121 spin_unlock(&GlobalMid_Lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 }
Steve French26b994f2008-08-06 05:11:33 +00004123
Jeff Layton198b5682010-04-24 07:57:48 -04004124 return rc;
4125}
Steve French26b994f2008-08-06 05:11:33 +00004126
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04004127int
4128cifs_setup_session(const unsigned int xid, struct cifs_ses *ses,
4129 struct nls_table *nls_info)
Jeff Layton198b5682010-04-24 07:57:48 -04004130{
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04004131 int rc = -ENOSYS;
Jeff Layton198b5682010-04-24 07:57:48 -04004132 struct TCP_Server_Info *server = ses->server;
4133
Jeff Layton198b5682010-04-24 07:57:48 -04004134 ses->capabilities = server->capabilities;
Steve French26b994f2008-08-06 05:11:33 +00004135 if (linuxExtEnabled == 0)
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04004136 ses->capabilities &= (~server->vals->cap_unix);
Steve French20418ac2009-04-30 16:13:32 +00004137
Joe Perchesf96637b2013-05-04 22:12:25 -05004138 cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n",
Steve French96daf2b2011-05-27 04:34:02 +00004139 server->sec_mode, server->capabilities, server->timeAdj);
Jeff Laytoncb7691b2008-08-18 15:41:05 -04004140
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04004141 if (server->ops->sess_setup)
4142 rc = server->ops->sess_setup(xid, ses, nls_info);
4143
Shirish Pargaonkard4e63bd2013-08-29 08:35:09 -05004144 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05004145 cifs_dbg(VFS, "Send error in SessSetup = %d\n", rc);
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05004146
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 return rc;
4148}
4149
Jeff Layton8a8798a2012-01-17 16:09:15 -05004150static int
4151cifs_set_vol_auth(struct smb_vol *vol, struct cifs_ses *ses)
4152{
Jeff Layton3f618222013-06-12 19:52:14 -05004153 vol->sectype = ses->sectype;
4154
4155 /* krb5 is special, since we don't need username or pw */
4156 if (vol->sectype == Kerberos)
Jeff Layton8a8798a2012-01-17 16:09:15 -05004157 return 0;
Jeff Layton8a8798a2012-01-17 16:09:15 -05004158
4159 return cifs_set_cifscreds(vol, ses);
4160}
4161
Steve French96daf2b2011-05-27 04:34:02 +00004162static struct cifs_tcon *
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004163cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid)
Jeff Layton9d002df2010-10-06 19:51:11 -04004164{
Jeff Layton8a8798a2012-01-17 16:09:15 -05004165 int rc;
Steve French96daf2b2011-05-27 04:34:02 +00004166 struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb);
4167 struct cifs_ses *ses;
4168 struct cifs_tcon *tcon = NULL;
Jeff Layton9d002df2010-10-06 19:51:11 -04004169 struct smb_vol *vol_info;
Jeff Layton9d002df2010-10-06 19:51:11 -04004170
4171 vol_info = kzalloc(sizeof(*vol_info), GFP_KERNEL);
Dan Carpenter803ab972012-01-24 11:39:22 +03004172 if (vol_info == NULL)
4173 return ERR_PTR(-ENOMEM);
Jeff Layton9d002df2010-10-06 19:51:11 -04004174
Jeff Layton9d002df2010-10-06 19:51:11 -04004175 vol_info->local_nls = cifs_sb->local_nls;
4176 vol_info->linux_uid = fsuid;
4177 vol_info->cred_uid = fsuid;
4178 vol_info->UNC = master_tcon->treeName;
4179 vol_info->retry = master_tcon->retry;
4180 vol_info->nocase = master_tcon->nocase;
4181 vol_info->local_lease = master_tcon->local_lease;
4182 vol_info->no_linux_ext = !master_tcon->unix_ext;
Jeff Layton28e11bd2013-05-26 07:01:00 -04004183 vol_info->sectype = master_tcon->ses->sectype;
4184 vol_info->sign = master_tcon->ses->sign;
Jeff Layton9d002df2010-10-06 19:51:11 -04004185
Jeff Layton8a8798a2012-01-17 16:09:15 -05004186 rc = cifs_set_vol_auth(vol_info, master_tcon->ses);
4187 if (rc) {
4188 tcon = ERR_PTR(rc);
4189 goto out;
4190 }
Jeff Layton9d002df2010-10-06 19:51:11 -04004191
4192 /* get a reference for the same TCP session */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05304193 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004194 ++master_tcon->ses->server->srv_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05304195 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004196
4197 ses = cifs_get_smb_ses(master_tcon->ses->server, vol_info);
4198 if (IS_ERR(ses)) {
Steve French96daf2b2011-05-27 04:34:02 +00004199 tcon = (struct cifs_tcon *)ses;
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07004200 cifs_put_tcp_session(master_tcon->ses->server, 0);
Jeff Layton9d002df2010-10-06 19:51:11 -04004201 goto out;
4202 }
4203
4204 tcon = cifs_get_tcon(ses, vol_info);
4205 if (IS_ERR(tcon)) {
4206 cifs_put_smb_ses(ses);
4207 goto out;
4208 }
4209
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04004210 if (cap_unix(ses))
Jeff Layton9d002df2010-10-06 19:51:11 -04004211 reset_cifs_unix_caps(0, tcon, NULL, vol_info);
4212out:
Jeff Layton8a8798a2012-01-17 16:09:15 -05004213 kfree(vol_info->username);
4214 kfree(vol_info->password);
Jeff Layton9d002df2010-10-06 19:51:11 -04004215 kfree(vol_info);
4216
4217 return tcon;
4218}
4219
Steve French96daf2b2011-05-27 04:34:02 +00004220struct cifs_tcon *
Jeff Layton9d002df2010-10-06 19:51:11 -04004221cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb)
4222{
4223 return tlink_tcon(cifs_sb_master_tlink(cifs_sb));
4224}
4225
Jeff Laytonb647c352010-10-28 11:16:44 -04004226/* find and return a tlink with given uid */
4227static struct tcon_link *
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004228tlink_rb_search(struct rb_root *root, kuid_t uid)
Jeff Laytonb647c352010-10-28 11:16:44 -04004229{
4230 struct rb_node *node = root->rb_node;
4231 struct tcon_link *tlink;
4232
4233 while (node) {
4234 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
4235
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004236 if (uid_gt(tlink->tl_uid, uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04004237 node = node->rb_left;
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004238 else if (uid_lt(tlink->tl_uid, uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04004239 node = node->rb_right;
4240 else
4241 return tlink;
4242 }
4243 return NULL;
4244}
4245
4246/* insert a tcon_link into the tree */
4247static void
4248tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink)
4249{
4250 struct rb_node **new = &(root->rb_node), *parent = NULL;
4251 struct tcon_link *tlink;
4252
4253 while (*new) {
4254 tlink = rb_entry(*new, struct tcon_link, tl_rbnode);
4255 parent = *new;
4256
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004257 if (uid_gt(tlink->tl_uid, new_tlink->tl_uid))
Jeff Laytonb647c352010-10-28 11:16:44 -04004258 new = &((*new)->rb_left);
4259 else
4260 new = &((*new)->rb_right);
4261 }
4262
4263 rb_link_node(&new_tlink->tl_rbnode, parent, new);
4264 rb_insert_color(&new_tlink->tl_rbnode, root);
4265}
4266
Jeff Layton9d002df2010-10-06 19:51:11 -04004267/*
4268 * Find or construct an appropriate tcon given a cifs_sb and the fsuid of the
4269 * current task.
4270 *
4271 * If the superblock doesn't refer to a multiuser mount, then just return
4272 * the master tcon for the mount.
4273 *
Suresh Jayaraman6ef933a2010-11-03 10:53:49 +05304274 * First, search the rbtree for an existing tcon for this fsuid. If one
Jeff Layton9d002df2010-10-06 19:51:11 -04004275 * exists, then check to see if it's pending construction. If it is then wait
4276 * for construction to complete. Once it's no longer pending, check to see if
4277 * it failed and either return an error or retry construction, depending on
4278 * the timeout.
4279 *
4280 * If one doesn't exist then insert a new tcon_link struct into the tree and
4281 * try to construct a new one.
4282 */
4283struct tcon_link *
4284cifs_sb_tlink(struct cifs_sb_info *cifs_sb)
4285{
4286 int ret;
Eric W. Biederman6d4a0832013-02-06 01:48:56 -08004287 kuid_t fsuid = current_fsuid();
Jeff Layton9d002df2010-10-06 19:51:11 -04004288 struct tcon_link *tlink, *newtlink;
4289
4290 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
4291 return cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
4292
4293 spin_lock(&cifs_sb->tlink_tree_lock);
Jeff Laytonb647c352010-10-28 11:16:44 -04004294 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
Jeff Layton9d002df2010-10-06 19:51:11 -04004295 if (tlink)
4296 cifs_get_tlink(tlink);
4297 spin_unlock(&cifs_sb->tlink_tree_lock);
4298
4299 if (tlink == NULL) {
4300 newtlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
4301 if (newtlink == NULL)
4302 return ERR_PTR(-ENOMEM);
Jeff Laytonb647c352010-10-28 11:16:44 -04004303 newtlink->tl_uid = fsuid;
Jeff Layton9d002df2010-10-06 19:51:11 -04004304 newtlink->tl_tcon = ERR_PTR(-EACCES);
4305 set_bit(TCON_LINK_PENDING, &newtlink->tl_flags);
4306 set_bit(TCON_LINK_IN_TREE, &newtlink->tl_flags);
4307 cifs_get_tlink(newtlink);
4308
Jeff Layton9d002df2010-10-06 19:51:11 -04004309 spin_lock(&cifs_sb->tlink_tree_lock);
4310 /* was one inserted after previous search? */
Jeff Laytonb647c352010-10-28 11:16:44 -04004311 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
Jeff Layton9d002df2010-10-06 19:51:11 -04004312 if (tlink) {
4313 cifs_get_tlink(tlink);
4314 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004315 kfree(newtlink);
4316 goto wait_for_construction;
4317 }
Jeff Layton9d002df2010-10-06 19:51:11 -04004318 tlink = newtlink;
Jeff Laytonb647c352010-10-28 11:16:44 -04004319 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
4320 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004321 } else {
4322wait_for_construction:
4323 ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING,
Jeff Layton9d002df2010-10-06 19:51:11 -04004324 TASK_INTERRUPTIBLE);
4325 if (ret) {
4326 cifs_put_tlink(tlink);
NeilBrown74316202014-07-07 15:16:04 +10004327 return ERR_PTR(-ERESTARTSYS);
Jeff Layton9d002df2010-10-06 19:51:11 -04004328 }
4329
4330 /* if it's good, return it */
4331 if (!IS_ERR(tlink->tl_tcon))
4332 return tlink;
4333
4334 /* return error if we tried this already recently */
4335 if (time_before(jiffies, tlink->tl_time + TLINK_ERROR_EXPIRE)) {
4336 cifs_put_tlink(tlink);
4337 return ERR_PTR(-EACCES);
4338 }
4339
4340 if (test_and_set_bit(TCON_LINK_PENDING, &tlink->tl_flags))
4341 goto wait_for_construction;
4342 }
4343
4344 tlink->tl_tcon = cifs_construct_tcon(cifs_sb, fsuid);
4345 clear_bit(TCON_LINK_PENDING, &tlink->tl_flags);
4346 wake_up_bit(&tlink->tl_flags, TCON_LINK_PENDING);
4347
4348 if (IS_ERR(tlink->tl_tcon)) {
4349 cifs_put_tlink(tlink);
4350 return ERR_PTR(-EACCES);
4351 }
4352
4353 return tlink;
4354}
Jeff Layton2de970f2010-10-06 19:51:12 -04004355
4356/*
4357 * periodic workqueue job that scans tcon_tree for a superblock and closes
4358 * out tcons.
4359 */
4360static void
4361cifs_prune_tlinks(struct work_struct *work)
4362{
4363 struct cifs_sb_info *cifs_sb = container_of(work, struct cifs_sb_info,
4364 prune_tlinks.work);
Jeff Laytonb647c352010-10-28 11:16:44 -04004365 struct rb_root *root = &cifs_sb->tlink_tree;
4366 struct rb_node *node = rb_first(root);
4367 struct rb_node *tmp;
4368 struct tcon_link *tlink;
Jeff Layton2de970f2010-10-06 19:51:12 -04004369
Jeff Laytonb647c352010-10-28 11:16:44 -04004370 /*
4371 * Because we drop the spinlock in the loop in order to put the tlink
4372 * it's not guarded against removal of links from the tree. The only
4373 * places that remove entries from the tree are this function and
4374 * umounts. Because this function is non-reentrant and is canceled
4375 * before umount can proceed, this is safe.
4376 */
4377 spin_lock(&cifs_sb->tlink_tree_lock);
4378 node = rb_first(root);
4379 while (node != NULL) {
4380 tmp = node;
4381 node = rb_next(tmp);
4382 tlink = rb_entry(tmp, struct tcon_link, tl_rbnode);
4383
4384 if (test_bit(TCON_LINK_MASTER, &tlink->tl_flags) ||
4385 atomic_read(&tlink->tl_count) != 0 ||
4386 time_after(tlink->tl_time + TLINK_IDLE_EXPIRE, jiffies))
4387 continue;
4388
4389 cifs_get_tlink(tlink);
4390 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4391 rb_erase(tmp, root);
4392
Jeff Layton2de970f2010-10-06 19:51:12 -04004393 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Laytonb647c352010-10-28 11:16:44 -04004394 cifs_put_tlink(tlink);
4395 spin_lock(&cifs_sb->tlink_tree_lock);
4396 }
4397 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton2de970f2010-10-06 19:51:12 -04004398
Jeff Laytonda472fc2012-03-23 14:40:53 -04004399 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
Jeff Layton2de970f2010-10-06 19:51:12 -04004400 TLINK_IDLE_EXPIRE);
4401}