]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/cifs/connect.c
cifs: small underflow in cnvrtDosUnixTm()
[mirror_ubuntu-artful-kernel.git] / fs / cifs / connect.c
CommitLineData
1da177e4
LT
1/*
2 * fs/cifs/connect.c
3 *
1080ef75 4 * Copyright (C) International Business Machines Corp., 2002,2011
1da177e4
LT
5 * 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
fb8c4b14 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1da177e4
LT
20 */
21#include <linux/fs.h>
22#include <linux/net.h>
23#include <linux/string.h>
3f07c014 24#include <linux/sched/signal.h>
1da177e4
LT
25#include <linux/list.h>
26#include <linux/wait.h>
5a0e3ad6 27#include <linux/slab.h>
1da177e4
LT
28#include <linux/pagemap.h>
29#include <linux/ctype.h>
30#include <linux/utsname.h>
31#include <linux/mempool.h>
b8643e1b 32#include <linux/delay.h>
f191401f 33#include <linux/completion.h>
aaf737ad 34#include <linux/kthread.h>
0ae0efad 35#include <linux/pagevec.h>
7dfb7103 36#include <linux/freezer.h>
5c2503a8 37#include <linux/namei.h>
7c0f6ba6 38#include <linux/uaccess.h>
1da177e4 39#include <asm/processor.h>
50b64e3b 40#include <linux/inet.h>
143cb494 41#include <linux/module.h>
8a8798a5 42#include <keys/user-type.h>
0e2bedaa 43#include <net/ipv6.h>
8830d7e0 44#include <linux/parser.h>
2f8b5444 45#include <linux/bvec.h>
8830d7e0 46
1da177e4
LT
47#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"
488f1d2d 56#include "fscache.h"
53e0e11e
PS
57#ifdef CONFIG_CIFS_SMB2
58#include "smb2proto.h"
59#endif
1da177e4
LT
60
61#define CIFS_PORT 445
62#define RFC1001_PORT 139
63
1da177e4
LT
64extern mempool_t *cifs_req_poolp;
65
2de970ff 66/* FIXME: should these be tunable? */
9d002df4 67#define TLINK_ERROR_EXPIRE (1 * HZ)
2de970ff 68#define TLINK_IDLE_EXPIRE (600 * HZ)
9d002df4 69
8830d7e0 70enum {
8830d7e0
SP
71 /* Mount options that take no arguments */
72 Opt_user_xattr, Opt_nouser_xattr,
73 Opt_forceuid, Opt_noforceuid,
72bd481f 74 Opt_forcegid, Opt_noforcegid,
8830d7e0
SP
75 Opt_noblocksend, Opt_noautotune,
76 Opt_hard, Opt_soft, Opt_perm, Opt_noperm,
2baa2682 77 Opt_mapposix, Opt_nomapposix,
8830d7e0
SP
78 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,
95932655 83 Opt_forcemandatorylock, Opt_setuidfromacl, Opt_setuids,
8830d7e0
SP
84 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,
1b359204 91 Opt_sign, Opt_seal, Opt_noac,
8830d7e0 92 Opt_fsc, Opt_mfsymlinks,
a0b3df5c 93 Opt_multiuser, Opt_sloppy, Opt_nosharesock,
b2a30774 94 Opt_persistent, Opt_nopersistent,
592fafe6 95 Opt_resilient, Opt_noresilient,
39566443 96 Opt_domainauto,
8830d7e0
SP
97
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,
141891f4 103 Opt_echo_interval, Opt_max_credits,
8b217fe7 104 Opt_snapshot,
8830d7e0
SP
105
106 /* Mount options which take string value */
107 Opt_user, Opt_pass, Opt_ip,
73a999fa 108 Opt_domain, Opt_srcaddr, Opt_iocharset,
8830d7e0 109 Opt_netbiosname, Opt_servern,
23db65f5 110 Opt_ver, Opt_vers, Opt_sec, Opt_cache,
8830d7e0
SP
111
112 /* Mount options to be ignored */
113 Opt_ignore,
114
115 /* Options which could be blank */
116 Opt_blank_pass,
4fe9e963
SP
117 Opt_blank_user,
118 Opt_blank_ip,
8830d7e0
SP
119
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" },
72bd481f
JL
129 { Opt_forcegid, "forcegid" },
130 { Opt_noforcegid, "noforcegid" },
8830d7e0
SP
131 { Opt_noblocksend, "noblocksend" },
132 { Opt_noautotune, "noautotune" },
133 { Opt_hard, "hard" },
134 { Opt_soft, "soft" },
135 { Opt_perm, "perm" },
136 { Opt_noperm, "noperm" },
2baa2682 137 { Opt_mapchars, "mapchars" }, /* SFU style */
8830d7e0 138 { Opt_nomapchars, "nomapchars" },
2baa2682
SF
139 { Opt_mapposix, "mapposix" }, /* SFM style */
140 { Opt_nomapposix, "nomapposix" },
8830d7e0
SP
141 { 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" },
5cfdddcf 154 { Opt_forcemandatorylock, "forcemand" },
8830d7e0
SP
155 { Opt_setuids, "setuids" },
156 { Opt_nosetuids, "nosetuids" },
95932655 157 { Opt_setuidfromacl, "idsfromsid" },
8830d7e0
SP
158 { 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" },
8830d7e0
SP
176 { Opt_noac, "noac" },
177 { Opt_fsc, "fsc" },
178 { Opt_mfsymlinks, "mfsymlinks" },
179 { Opt_multiuser, "multiuser" },
d8162558 180 { Opt_sloppy, "sloppy" },
a0b3df5c 181 { Opt_nosharesock, "nosharesock" },
b2a30774
SF
182 { Opt_persistent, "persistenthandles"},
183 { Opt_nopersistent, "nopersistenthandles"},
592fafe6
SF
184 { Opt_resilient, "resilienthandles"},
185 { Opt_noresilient, "noresilienthandles"},
39566443 186 { Opt_domainauto, "domainauto"},
8830d7e0
SP
187
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" },
adfeb3e0 200 { Opt_echo_interval, "echo_interval=%s" },
141891f4 201 { Opt_max_credits, "max_credits=%s" },
8b217fe7 202 { Opt_snapshot, "snapshot=%s" },
8830d7e0 203
4fe9e963
SP
204 { Opt_blank_user, "user=" },
205 { Opt_blank_user, "username=" },
8830d7e0
SP
206 { Opt_user, "user=%s" },
207 { Opt_user, "username=%s" },
208 { Opt_blank_pass, "pass=" },
3c15b4cf 209 { Opt_blank_pass, "password=" },
8830d7e0
SP
210 { Opt_pass, "pass=%s" },
211 { Opt_pass, "password=%s" },
4fe9e963
SP
212 { Opt_blank_ip, "ip=" },
213 { Opt_blank_ip, "addr=" },
8830d7e0
SP
214 { Opt_ip, "ip=%s" },
215 { Opt_ip, "addr=%s" },
73a999fa
JL
216 { Opt_ignore, "unc=%s" },
217 { Opt_ignore, "target=%s" },
218 { Opt_ignore, "path=%s" },
8830d7e0
SP
219 { Opt_domain, "dom=%s" },
220 { Opt_domain, "domain=%s" },
221 { Opt_domain, "workgroup=%s" },
222 { Opt_srcaddr, "srcaddr=%s" },
73a999fa 223 { Opt_ignore, "prefixpath=%s" },
8830d7e0 224 { Opt_iocharset, "iocharset=%s" },
8830d7e0
SP
225 { Opt_netbiosname, "netbiosname=%s" },
226 { Opt_servern, "servern=%s" },
227 { Opt_ver, "ver=%s" },
23db65f5 228 { Opt_vers, "vers=%s" },
8830d7e0 229 { Opt_sec, "sec=%s" },
15b6a473 230 { Opt_cache, "cache=%s" },
8830d7e0
SP
231
232 { Opt_ignore, "cred" },
233 { Opt_ignore, "credentials" },
a557b976
JL
234 { Opt_ignore, "cred=%s" },
235 { Opt_ignore, "credentials=%s" },
8830d7e0
SP
236 { 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,
7659624f
JL
256 Opt_ntlm, Opt_sec_ntlmi, Opt_sec_ntlmv2,
257 Opt_sec_ntlmv2i, Opt_sec_lanman,
8830d7e0
SP
258 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" },
7659624f
JL
271 { Opt_sec_ntlmv2, "nontlm" },
272 { Opt_sec_ntlmv2, "ntlmv2" },
8830d7e0 273 { Opt_sec_ntlmv2i, "ntlmv2i" },
8830d7e0
SP
274 { Opt_sec_lanman, "lanman" },
275 { Opt_sec_none, "none" },
276
277 { Opt_sec_err, NULL }
278};
279
15b6a473
JL
280/* 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
23db65f5
JL
295static const match_table_t cifs_smb_version_tokens = {
296 { Smb_1, SMB1_VERSION_STRING },
dd446b16 297 { Smb_20, SMB20_VERSION_STRING},
1080ef75 298 { Smb_21, SMB21_VERSION_STRING },
e4aa25e7 299 { Smb_30, SMB30_VERSION_STRING },
20b6d8b4 300 { Smb_302, SMB302_VERSION_STRING },
5f7fbf73
SF
301#ifdef CONFIG_CIFS_SMB311
302 { Smb_311, SMB311_VERSION_STRING },
aab1893d 303 { Smb_311, ALT_SMB311_VERSION_STRING },
5f7fbf73
SF
304#endif /* SMB311 */
305 { Smb_version_err, NULL }
23db65f5
JL
306};
307
a9f1b85e
PS
308static int ip_connect(struct TCP_Server_Info *server);
309static int generic_ip_connect(struct TCP_Server_Info *server);
b647c35f 310static void tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink);
2de970ff 311static void cifs_prune_tlinks(struct work_struct *work);
b9bce2e9
JL
312static int cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data,
313 const char *devname);
1da177e4 314
d5c5605c
JL
315/*
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 */
28ea5290 323int
1da177e4
LT
324cifs_reconnect(struct TCP_Server_Info *server)
325{
326 int rc = 0;
f1987b44 327 struct list_head *tmp, *tmp2;
96daf2b0
SF
328 struct cifs_ses *ses;
329 struct cifs_tcon *tcon;
fb8c4b14 330 struct mid_q_entry *mid_entry;
3c1105df 331 struct list_head retry_list;
50c2f753 332
1da177e4 333 spin_lock(&GlobalMid_Lock);
469ee614 334 if (server->tcpStatus == CifsExiting) {
fb8c4b14 335 /* the demux thread will exit normally
1da177e4
LT
336 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;
aa24d1e9
PS
343#ifdef CONFIG_CIFS_SMB2
344 server->max_read = 0;
345#endif
1da177e4 346
f96637be 347 cifs_dbg(FYI, "Reconnecting tcp session\n");
1da177e4
LT
348
349 /* before reconnecting the tcp session, mark the smb session (uid)
350 and the tid bad so they are not used until reconnected */
f96637be
JP
351 cifs_dbg(FYI, "%s: marking sessions and tcons for reconnect\n",
352 __func__);
3f9bcca7 353 spin_lock(&cifs_tcp_ses_lock);
14fbf50d 354 list_for_each(tmp, &server->smb_ses_list) {
96daf2b0 355 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
14fbf50d
JL
356 ses->need_reconnect = true;
357 ses->ipc_tid = 0;
f1987b44 358 list_for_each(tmp2, &ses->tcon_list) {
96daf2b0 359 tcon = list_entry(tmp2, struct cifs_tcon, tcon_list);
3b795210 360 tcon->need_reconnect = true;
1da177e4 361 }
1da177e4 362 }
3f9bcca7 363 spin_unlock(&cifs_tcp_ses_lock);
2b84a36c 364
1da177e4 365 /* do not want to be sending data on a socket we are freeing */
f96637be 366 cifs_dbg(FYI, "%s: tearing down socket\n", __func__);
72ca545b 367 mutex_lock(&server->srv_mutex);
fb8c4b14 368 if (server->ssocket) {
f96637be
JP
369 cifs_dbg(FYI, "State: 0x%x Flags: 0x%lx\n",
370 server->ssocket->state, server->ssocket->flags);
91cf45f0 371 kernel_sock_shutdown(server->ssocket, SHUT_WR);
f96637be
JP
372 cifs_dbg(FYI, "Post shutdown state: 0x%x Flags: 0x%lx\n",
373 server->ssocket->state, server->ssocket->flags);
1da177e4
LT
374 sock_release(server->ssocket);
375 server->ssocket = NULL;
376 }
5d0d2882
SP
377 server->sequence_number = 0;
378 server->session_estab = false;
21e73393
SP
379 kfree(server->session_key.response);
380 server->session_key.response = NULL;
381 server->session_key.len = 0;
fda35943 382 server->lstrp = jiffies;
1da177e4 383
2b84a36c 384 /* mark submitted MIDs for retry and issue callback */
3c1105df 385 INIT_LIST_HEAD(&retry_list);
f96637be 386 cifs_dbg(FYI, "%s: moving mids to private list\n", __func__);
1da177e4 387 spin_lock(&GlobalMid_Lock);
2b84a36c
JL
388 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
389 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
7c9421e1
PS
390 if (mid_entry->mid_state == MID_REQUEST_SUBMITTED)
391 mid_entry->mid_state = MID_RETRY_NEEDED;
3c1105df
JL
392 list_move(&mid_entry->qhead, &retry_list);
393 }
394 spin_unlock(&GlobalMid_Lock);
820962dc 395 mutex_unlock(&server->srv_mutex);
3c1105df 396
f96637be 397 cifs_dbg(FYI, "%s: issuing mid callbacks\n", __func__);
3c1105df
JL
398 list_for_each_safe(tmp, tmp2, &retry_list) {
399 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
2b84a36c
JL
400 list_del_init(&mid_entry->qhead);
401 mid_entry->callback(mid_entry);
1da177e4 402 }
1da177e4 403
7fdbaa1b 404 do {
6c3d8909 405 try_to_freeze();
a9f1b85e
PS
406
407 /* we should try only the port we connected to before */
73e216a8 408 mutex_lock(&server->srv_mutex);
a9f1b85e 409 rc = generic_ip_connect(server);
fb8c4b14 410 if (rc) {
f96637be 411 cifs_dbg(FYI, "reconnect error %d\n", rc);
4afe260b 412 mutex_unlock(&server->srv_mutex);
0cb766ae 413 msleep(3000);
1da177e4
LT
414 } else {
415 atomic_inc(&tcpSesReconnectCount);
416 spin_lock(&GlobalMid_Lock);
469ee614 417 if (server->tcpStatus != CifsExiting)
fd88ce93 418 server->tcpStatus = CifsNeedNegotiate;
fb8c4b14 419 spin_unlock(&GlobalMid_Lock);
4afe260b 420 mutex_unlock(&server->srv_mutex);
1da177e4 421 }
7fdbaa1b 422 } while (server->tcpStatus == CifsNeedReconnect);
2b84a36c 423
b8c60012
SP
424 if (server->tcpStatus == CifsNeedNegotiate)
425 mod_delayed_work(cifsiod_wq, &server->echo, 0);
426
1da177e4
LT
427 return rc;
428}
429
c74093b6
JL
430static 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);
b8c60012
SP
436 unsigned long echo_interval;
437
438 /*
439 * 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;
c74093b6 446
247ec9b4 447 /*
b8c60012
SP
448 * We cannot send an echo if it is disabled.
449 * Also, no need to ping if we got a response recently.
247ec9b4 450 */
4fcd1813
SF
451
452 if (server->tcpStatus == CifsNeedReconnect ||
b8c60012
SP
453 server->tcpStatus == CifsExiting ||
454 server->tcpStatus == CifsNew ||
f6d76178 455 (server->ops->can_echo && !server->ops->can_echo(server)) ||
adfeb3e0 456 time_before(jiffies, server->lstrp + echo_interval - HZ))
c74093b6
JL
457 goto requeue_echo;
458
f6d76178 459 rc = server->ops->echo ? server->ops->echo(server) : -ENOSYS;
c74093b6 460 if (rc)
f96637be
JP
461 cifs_dbg(FYI, "Unable to send echo request to server: %s\n",
462 server->hostname);
c74093b6
JL
463
464requeue_echo:
b8c60012 465 queue_delayed_work(cifsiod_wq, &server->echo, server->echo_interval);
c74093b6
JL
466}
467
3d9c2472 468static bool
2a37ef94 469allocate_buffers(struct TCP_Server_Info *server)
3d9c2472 470{
2a37ef94
JL
471 if (!server->bigbuf) {
472 server->bigbuf = (char *)cifs_buf_get();
473 if (!server->bigbuf) {
f96637be 474 cifs_dbg(VFS, "No memory for large SMB response\n");
3d9c2472
PS
475 msleep(3000);
476 /* retry will check if exiting */
477 return false;
478 }
2a37ef94 479 } else if (server->large_buf) {
3d9c2472 480 /* we are reusing a dirty large buf, clear its start */
1887f601 481 memset(server->bigbuf, 0, HEADER_SIZE(server));
3d9c2472
PS
482 }
483
2a37ef94
JL
484 if (!server->smallbuf) {
485 server->smallbuf = (char *)cifs_small_buf_get();
486 if (!server->smallbuf) {
f96637be 487 cifs_dbg(VFS, "No memory for SMB response\n");
3d9c2472
PS
488 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 */
1887f601 495 memset(server->smallbuf, 0, HEADER_SIZE(server));
3d9c2472
PS
496 }
497
3d9c2472
PS
498 return true;
499}
500
ba749e6d
JL
501static bool
502server_unresponsive(struct TCP_Server_Info *server)
503{
6dae51a5
PS
504 /*
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 &&
adfeb3e0
SF
516 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);
ba749e6d
JL
519 cifs_reconnect(server);
520 wake_up(&server->response_q);
521 return true;
522 }
523
524 return false;
525}
526
71335664
AV
527static int
528cifs_readv_from_socket(struct TCP_Server_Info *server, struct msghdr *smb_msg)
e7015fb1 529{
a52c1eb7
JL
530 int length = 0;
531 int total_read;
e7015fb1 532
71335664
AV
533 smb_msg->msg_control = NULL;
534 smb_msg->msg_controllen = 0;
e831e6cf 535
71335664 536 for (total_read = 0; msg_data_left(smb_msg); total_read += length) {
95edcff4
JL
537 try_to_freeze();
538
71335664
AV
539 if (server_unresponsive(server))
540 return -ECONNABORTED;
ba749e6d 541
71335664 542 length = sock_recvmsg(server->ssocket, smb_msg, 0);
42c4dfc2 543
71335664
AV
544 if (server->tcpStatus == CifsExiting)
545 return -ESHUTDOWN;
e7015fb1 546
71335664 547 if (server->tcpStatus == CifsNeedReconnect) {
e7015fb1 548 cifs_reconnect(server);
71335664
AV
549 return -ECONNABORTED;
550 }
551
552 if (length == -ERESTARTSYS ||
553 length == -EAGAIN ||
554 length == -EINTR) {
e7015fb1
PS
555 /*
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;
a52c1eb7 562 continue;
71335664
AV
563 }
564
565 if (length <= 0) {
09aab880 566 cifs_dbg(FYI, "Received no data or error: %d\n", length);
e7015fb1 567 cifs_reconnect(server);
71335664 568 return -ECONNABORTED;
e7015fb1
PS
569 }
570 }
a52c1eb7 571 return total_read;
e7015fb1 572}
e7015fb1 573
e28bc5b1
JL
574int
575cifs_read_from_socket(struct TCP_Server_Info *server, char *buf,
576 unsigned int to_read)
42c4dfc2 577{
71335664
AV
578 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);
42c4dfc2 581
71335664
AV
582 return cifs_readv_from_socket(server, &smb_msg);
583}
42c4dfc2 584
71335664
AV
585int
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);
e7015fb1
PS
593}
594
98bac62c 595static bool
fe11e4cc 596is_smb_response(struct TCP_Server_Info *server, unsigned char type)
98bac62c 597{
98bac62c
PS
598 /*
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 */
fe11e4cc
JL
603 switch (type) {
604 case RFC1002_SESSION_MESSAGE:
605 /* Regular SMB response */
606 return true;
607 case RFC1002_SESSION_KEEP_ALIVE:
f96637be 608 cifs_dbg(FYI, "RFC 1002 session keep alive\n");
fe11e4cc
JL
609 break;
610 case RFC1002_POSITIVE_SESSION_RESPONSE:
f96637be 611 cifs_dbg(FYI, "RFC 1002 positive session response\n");
fe11e4cc
JL
612 break;
613 case RFC1002_NEGATIVE_SESSION_RESPONSE:
98bac62c
PS
614 /*
615 * We get this from Windows 98 instead of an error on
616 * SMB negprot response.
617 */
f96637be 618 cifs_dbg(FYI, "RFC 1002 negative session response\n");
98bac62c
PS
619 /* 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 */
fe11e4cc 627 cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT);
98bac62c
PS
628 cifs_reconnect(server);
629 wake_up(&server->response_q);
fe11e4cc
JL
630 break;
631 default:
f96637be 632 cifs_dbg(VFS, "RFC 1002 unknown response type 0x%x\n", type);
98bac62c 633 cifs_reconnect(server);
98bac62c
PS
634 }
635
fe11e4cc 636 return false;
98bac62c
PS
637}
638
e28bc5b1
JL
639void
640dequeue_mid(struct mid_q_entry *mid, bool malformed)
ea1f4502 641{
ad69bae1 642#ifdef CONFIG_CIFS_STATS2
ea1f4502 643 mid->when_received = jiffies;
ad69bae1 644#endif
ea1f4502
JL
645 spin_lock(&GlobalMid_Lock);
646 if (!malformed)
7c9421e1 647 mid->mid_state = MID_RESPONSE_RECEIVED;
ea1f4502 648 else
7c9421e1 649 mid->mid_state = MID_RESPONSE_MALFORMED;
ea1f4502 650 list_del_init(&mid->qhead);
ad69bae1 651 spin_unlock(&GlobalMid_Lock);
ea1f4502 652}
ad69bae1 653
c8054ebd
JL
654static void
655handle_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server,
d4e4854f 656 char *buf, int malformed)
ea1f4502 657{
316cf94a
PS
658 if (server->ops->check_trans2 &&
659 server->ops->check_trans2(mid, server, buf, malformed))
c8054ebd 660 return;
ea1f4502 661 mid->resp_buf = buf;
7c9421e1 662 mid->large_buf = server->large_buf;
2a37ef94
JL
663 /* 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 }
ffc00e27 671 dequeue_mid(mid, malformed);
ad69bae1
PS
672}
673
762dfd10
PS
674static 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
2d86dbc9 688 /* check if we have blocked requests that need to free */
fc40f9cf 689 spin_lock(&server->req_lock);
2d86dbc9
PS
690 if (server->credits <= 0)
691 server->credits = 1;
fc40f9cf 692 spin_unlock(&server->req_lock);
762dfd10
PS
693 /*
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);
f96637be 718 cifs_dbg(FYI, "Clearing mid 0x%llx\n", mid_entry->mid);
7c9421e1 719 mid_entry->mid_state = MID_SHUTDOWN;
762dfd10
PS
720 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);
f96637be 727 cifs_dbg(FYI, "Callback mid 0x%llx\n", mid_entry->mid);
762dfd10
PS
728 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 */
f96637be 744 cifs_dbg(FYI, "Wait for exit from demultiplex thread\n");
762dfd10
PS
745 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)
11d83360 757 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
762dfd10
PS
758}
759
e9097ab4
JL
760static int
761standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid)
762{
763 int length;
764 char *buf = server->smallbuf;
d4e4854f 765 unsigned int pdu_length = get_rfc1002_length(buf);
e9097ab4
JL
766
767 /* make sure this will fit in a large buffer */
1887f601 768 if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) - 4) {
f96637be 769 cifs_dbg(VFS, "SMB response too long (%u bytes)\n", pdu_length);
e9097ab4
JL
770 cifs_reconnect(server);
771 wake_up(&server->response_q);
3fabaa27 772 return -ECONNABORTED;
e9097ab4
JL
773 }
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;
d4e4854f 778 memcpy(server->bigbuf, buf, server->total_read);
e9097ab4 779 buf = server->bigbuf;
e9097ab4
JL
780 }
781
782 /* now read the rest */
1887f601
PS
783 length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1,
784 pdu_length - HEADER_SIZE(server) + 1 + 4);
e9097ab4
JL
785 if (length < 0)
786 return length;
787 server->total_read += length;
788
d4e4854f 789 dump_smb(buf, server->total_read);
e9097ab4 790
4326ed2f
PS
791 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
e9097ab4
JL
800 /*
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 */
373512ec 809 length = server->ops->check_message(buf, server->total_read, server);
e9097ab4
JL
810 if (length != 0)
811 cifs_dump_mem("Bad SMB: ", buf,
812 min_t(unsigned int, server->total_read, 48));
813
2e44b288
PS
814 if (server->ops->is_status_pending &&
815 server->ops->is_status_pending(buf, server, length))
816 return -1;
817
ff4fa4a2
JL
818 if (!mid)
819 return length;
e9097ab4 820
d4e4854f 821 handle_mid(mid, server, buf, length);
ff4fa4a2 822 return 0;
e9097ab4
JL
823}
824
1da177e4 825static int
7c97c200 826cifs_demultiplex_thread(void *p)
1da177e4
LT
827{
828 int length;
7c97c200 829 struct TCP_Server_Info *server = p;
2a37ef94
JL
830 unsigned int pdu_length;
831 char *buf = NULL;
a5c3e1c7 832 struct task_struct *task_to_wake = NULL;
1da177e4 833 struct mid_q_entry *mid_entry;
1da177e4 834
1da177e4 835 current->flags |= PF_MEMALLOC;
f96637be 836 cifs_dbg(FYI, "Demultiplex PID: %d\n", task_pid_nr(current));
93d0ec85
JL
837
838 length = atomic_inc_return(&tcpSesAllocCount);
839 if (length > 1)
11d83360 840 mempool_resize(cifs_req_poolp, length + cifs_min_rcv);
1da177e4 841
83144186 842 set_freezable();
469ee614 843 while (server->tcpStatus != CifsExiting) {
ede1327e
SF
844 if (try_to_freeze())
845 continue;
b8643e1b 846
2a37ef94 847 if (!allocate_buffers(server))
3d9c2472 848 continue;
b8643e1b 849
2a37ef94 850 server->large_buf = false;
2a37ef94 851 buf = server->smallbuf;
f01d5e14 852 pdu_length = 4; /* enough to get RFC1001 header */
fda35943 853
e28bc5b1 854 length = cifs_read_from_socket(server, buf, pdu_length);
a52c1eb7 855 if (length < 0)
1da177e4 856 continue;
2a37ef94 857 server->total_read = length;
1da177e4 858
98bac62c
PS
859 /*
860 * The right amount was read from socket - 4 bytes,
861 * so we can now interpret the length field.
862 */
d4e4854f 863 pdu_length = get_rfc1002_length(buf);
70ca734a 864
f96637be 865 cifs_dbg(FYI, "RFC1002 header 0x%x\n", pdu_length);
fe11e4cc 866 if (!is_smb_response(server, buf[0]))
fb8c4b14 867 continue;
e4eb295d 868
89482a56 869 /* make sure we have enough to get to the MID */
1887f601 870 if (pdu_length < HEADER_SIZE(server) - 1 - 4) {
f96637be
JP
871 cifs_dbg(VFS, "SMB response too short (%u bytes)\n",
872 pdu_length);
89482a56
JL
873 cifs_reconnect(server);
874 wake_up(&server->response_q);
875 continue;
e4eb295d 876 }
e7015fb1 877
89482a56 878 /* read down to the MID */
e28bc5b1 879 length = cifs_read_from_socket(server, buf + 4,
1887f601 880 HEADER_SIZE(server) - 1 - 4);
89482a56 881 if (length < 0)
e4eb295d 882 continue;
2a37ef94 883 server->total_read += length;
1da177e4 884
9bb17e09
PS
885 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);
50c2f753 892
9bb17e09
PS
893 if (!mid_entry || !mid_entry->receive)
894 length = standard_receive3(server, mid_entry);
895 else
896 length = mid_entry->receive(server, mid_entry);
897 }
71823baf 898
e9097ab4 899 if (length < 0)
fe11e4cc 900 continue;
1da177e4 901
d4e4854f 902 if (server->large_buf)
2a37ef94 903 buf = server->bigbuf;
fda35943 904
fda35943 905 server->lstrp = jiffies;
2b84a36c 906 if (mid_entry != NULL) {
38bd4906
SP
907 if ((mid_entry->mid_flags & MID_WAIT_CANCELLED) &&
908 mid_entry->mid_state == MID_RESPONSE_RECEIVED &&
909 server->ops->handle_cancelled_mid)
910 server->ops->handle_cancelled_mid(
911 mid_entry->resp_buf,
912 server);
913
2a37ef94
JL
914 if (!mid_entry->multiRsp || mid_entry->multiEnd)
915 mid_entry->callback(mid_entry);
38bd4906
SP
916 } else if (server->ops->is_oplock_break &&
917 server->ops->is_oplock_break(buf, server)) {
918 cifs_dbg(FYI, "Received oplock break\n");
919 } else {
f96637be
JP
920 cifs_dbg(VFS, "No task to wake, unknown frame received! NumMids %d\n",
921 atomic_read(&midCount));
1887f601
PS
922 cifs_dump_mem("Received Data is: ", buf,
923 HEADER_SIZE(server));
3979877e 924#ifdef CONFIG_CIFS_DEBUG2
7f0adb53
PS
925 if (server->ops->dump_detail)
926 server->ops->dump_detail(buf);
3979877e
SF
927 cifs_dump_mids(server);
928#endif /* CIFS_DEBUG2 */
50c2f753 929
e4eb295d
SF
930 }
931 } /* end while !EXITING */
932
fd62cb7e 933 /* buffer usually freed in free_mid - need to free it here on exit */
2a37ef94
JL
934 cifs_buf_release(server->bigbuf);
935 if (server->smallbuf) /* no sense logging a debug message if NULL */
936 cifs_small_buf_release(server->smallbuf);
1da177e4 937
a5c3e1c7 938 task_to_wake = xchg(&server->tsk, NULL);
762dfd10 939 clean_demultiplex_info(server);
a5c3e1c7
SF
940
941 /* if server->tsk was NULL then wait for a signal before exiting */
942 if (!task_to_wake) {
943 set_current_state(TASK_INTERRUPTIBLE);
944 while (!signal_pending(current)) {
945 schedule();
946 set_current_state(TASK_INTERRUPTIBLE);
947 }
948 set_current_state(TASK_RUNNING);
949 }
950
0468a2cf 951 module_put_and_exit(0);
1da177e4
LT
952}
953
c359cf3c
JL
954/* extract the host portion of the UNC string */
955static char *
956extract_hostname(const char *unc)
957{
958 const char *src;
959 char *dst, *delim;
960 unsigned int len;
961
962 /* skip double chars at beginning of string */
963 /* BB: check validity of these bytes? */
964 src = unc + 2;
965
966 /* delimiter between hostname and sharename is always '\\' now */
967 delim = strchr(src, '\\');
968 if (!delim)
969 return ERR_PTR(-EINVAL);
970
971 len = delim - src;
972 dst = kmalloc((len + 1), GFP_KERNEL);
973 if (dst == NULL)
974 return ERR_PTR(-ENOMEM);
975
976 memcpy(dst, src, len);
977 dst[len] = '\0';
978
979 return dst;
980}
981
8830d7e0
SP
982static int get_option_ul(substring_t args[], unsigned long *option)
983{
984 int rc;
985 char *string;
986
987 string = match_strdup(args);
988 if (string == NULL)
989 return -ENOMEM;
bfa890a3 990 rc = kstrtoul(string, 0, option);
8830d7e0
SP
991 kfree(string);
992
993 return rc;
994}
995
3da46565
EB
996static int get_option_uid(substring_t args[], kuid_t *result)
997{
998 unsigned long value;
999 kuid_t uid;
1000 int rc;
1001
1002 rc = get_option_ul(args, &value);
1003 if (rc)
1004 return rc;
1005
1006 uid = make_kuid(current_user_ns(), value);
1007 if (!uid_valid(uid))
1008 return -EINVAL;
1009
1010 *result = uid;
1011 return 0;
1012}
1013
1014static int get_option_gid(substring_t args[], kgid_t *result)
1015{
1016 unsigned long value;
1017 kgid_t gid;
1018 int rc;
1019
1020 rc = get_option_ul(args, &value);
1021 if (rc)
1022 return rc;
1023
1024 gid = make_kgid(current_user_ns(), value);
1025 if (!gid_valid(gid))
1026 return -EINVAL;
1027
1028 *result = gid;
1029 return 0;
1030}
8830d7e0
SP
1031
1032static int cifs_parse_security_flavors(char *value,
1033 struct smb_vol *vol)
1034{
1035
1036 substring_t args[MAX_OPT_ARGS];
1037
1e3cc57e
JL
1038 /*
1039 * With mount options, the last one should win. Reset any existing
1040 * settings back to default.
1041 */
1042 vol->sectype = Unspecified;
1043 vol->sign = false;
1044
8830d7e0 1045 switch (match_token(value, cifs_secflavor_tokens, args)) {
3f618223
JL
1046 case Opt_sec_krb5p:
1047 cifs_dbg(VFS, "sec=krb5p is not supported!\n");
1048 return 1;
1049 case Opt_sec_krb5i:
1050 vol->sign = true;
1051 /* Fallthrough */
8830d7e0 1052 case Opt_sec_krb5:
1e3cc57e 1053 vol->sectype = Kerberos;
8830d7e0 1054 break;
3f618223 1055 case Opt_sec_ntlmsspi:
1e3cc57e 1056 vol->sign = true;
3f618223 1057 /* Fallthrough */
8830d7e0 1058 case Opt_sec_ntlmssp:
1e3cc57e 1059 vol->sectype = RawNTLMSSP;
8830d7e0 1060 break;
3f618223 1061 case Opt_sec_ntlmi:
1e3cc57e 1062 vol->sign = true;
3f618223 1063 /* Fallthrough */
8830d7e0 1064 case Opt_ntlm:
1e3cc57e 1065 vol->sectype = NTLM;
8830d7e0 1066 break;
3f618223 1067 case Opt_sec_ntlmv2i:
1e3cc57e 1068 vol->sign = true;
3f618223 1069 /* Fallthrough */
7659624f 1070 case Opt_sec_ntlmv2:
1e3cc57e 1071 vol->sectype = NTLMv2;
8830d7e0
SP
1072 break;
1073#ifdef CONFIG_CIFS_WEAK_PW_HASH
1074 case Opt_sec_lanman:
1e3cc57e 1075 vol->sectype = LANMAN;
8830d7e0
SP
1076 break;
1077#endif
1078 case Opt_sec_none:
1079 vol->nullauth = 1;
1080 break;
1081 default:
f96637be 1082 cifs_dbg(VFS, "bad security option: %s\n", value);
8830d7e0
SP
1083 return 1;
1084 }
1085
1086 return 0;
1087}
1088
15b6a473
JL
1089static int
1090cifs_parse_cache_flavor(char *value, struct smb_vol *vol)
1091{
1092 substring_t args[MAX_OPT_ARGS];
1093
1094 switch (match_token(value, cifs_cacheflavor_tokens, args)) {
1095 case Opt_cache_loose:
1096 vol->direct_io = false;
1097 vol->strict_io = false;
1098 break;
1099 case Opt_cache_strict:
1100 vol->direct_io = false;
1101 vol->strict_io = true;
1102 break;
1103 case Opt_cache_none:
1104 vol->direct_io = true;
1105 vol->strict_io = false;
1106 break;
1107 default:
f96637be 1108 cifs_dbg(VFS, "bad cache= option: %s\n", value);
15b6a473
JL
1109 return 1;
1110 }
1111 return 0;
1112}
1113
23db65f5
JL
1114static int
1115cifs_parse_smb_version(char *value, struct smb_vol *vol)
1116{
1117 substring_t args[MAX_OPT_ARGS];
1118
1119 switch (match_token(value, cifs_smb_version_tokens, args)) {
1120 case Smb_1:
1121 vol->ops = &smb1_operations;
1122 vol->vals = &smb1_values;
1123 break;
1080ef75 1124#ifdef CONFIG_CIFS_SMB2
dd446b16 1125 case Smb_20:
53ef1016 1126 vol->ops = &smb20_operations;
dd446b16
SF
1127 vol->vals = &smb20_values;
1128 break;
1080ef75
SF
1129 case Smb_21:
1130 vol->ops = &smb21_operations;
1131 vol->vals = &smb21_values;
1132 break;
e4aa25e7 1133 case Smb_30:
38107d45 1134 vol->ops = &smb30_operations;
e4aa25e7
SF
1135 vol->vals = &smb30_values;
1136 break;
20b6d8b4
SF
1137 case Smb_302:
1138 vol->ops = &smb30_operations; /* currently identical with 3.0 */
1139 vol->vals = &smb302_values;
1140 break;
5f7fbf73
SF
1141#ifdef CONFIG_CIFS_SMB311
1142 case Smb_311:
aab1893d 1143 vol->ops = &smb311_operations;
5f7fbf73
SF
1144 vol->vals = &smb311_values;
1145 break;
1146#endif /* SMB311 */
1080ef75 1147#endif
23db65f5 1148 default:
f96637be 1149 cifs_dbg(VFS, "Unknown vers= option specified: %s\n", value);
23db65f5
JL
1150 return 1;
1151 }
1152 return 0;
1153}
1154
d387a5c5
JL
1155/*
1156 * Parse a devname into substrings and populate the vol->UNC and vol->prepath
1157 * fields with the result. Returns 0 on success and an error otherwise.
1158 */
1159static int
1160cifs_parse_devname(const char *devname, struct smb_vol *vol)
1161{
1162 char *pos;
1163 const char *delims = "/\\";
1164 size_t len;
1165
1166 /* make sure we have a valid UNC double delimiter prefix */
1167 len = strspn(devname, delims);
1168 if (len != 2)
1169 return -EINVAL;
1170
1171 /* find delimiter between host and sharename */
1172 pos = strpbrk(devname + 2, delims);
1173 if (!pos)
1174 return -EINVAL;
1175
1176 /* skip past delimiter */
1177 ++pos;
1178
1179 /* now go until next delimiter or end of string */
1180 len = strcspn(pos, delims);
1181
1182 /* move "pos" up to delimiter or NULL */
1183 pos += len;
1184 vol->UNC = kstrndup(devname, pos - devname, GFP_KERNEL);
1185 if (!vol->UNC)
1186 return -ENOMEM;
1187
1188 convert_delimiter(vol->UNC, '\\');
1189
11e31647
SP
1190 /* skip any delimiter */
1191 if (*pos == '/' || *pos == '\\')
1192 pos++;
1193
1194 /* If pos is NULL then no prepath */
1195 if (!*pos)
d387a5c5
JL
1196 return 0;
1197
1198 vol->prepath = kstrdup(pos, GFP_KERNEL);
1199 if (!vol->prepath)
1200 return -ENOMEM;
1201
1202 return 0;
1203}
1204
1da177e4 1205static int
b946845a 1206cifs_parse_mount_options(const char *mountdata, const char *devname,
50c2f753 1207 struct smb_vol *vol)
1da177e4 1208{
8830d7e0 1209 char *data, *end;
957df453 1210 char *mountdata_copy = NULL, *options;
1da177e4
LT
1211 unsigned int temp_len, i, j;
1212 char separator[2];
9b9d6b24
JL
1213 short int override_uid = -1;
1214 short int override_gid = -1;
1215 bool uid_specified = false;
1216 bool gid_specified = false;
d8162558
JL
1217 bool sloppy = false;
1218 char *invalid = NULL;
88463999 1219 char *nodename = utsname()->nodename;
8830d7e0
SP
1220 char *string = NULL;
1221 char *tmp_end, *value;
1222 char delim;
b979aaa1
JL
1223 bool got_ip = false;
1224 unsigned short port = 0;
1225 struct sockaddr *dstaddr = (struct sockaddr *)&vol->dstaddr;
1da177e4
LT
1226
1227 separator[0] = ',';
50c2f753 1228 separator[1] = 0;
8830d7e0 1229 delim = separator[0];
1da177e4 1230
6ee9542a
JL
1231 /* ensure we always start with zeroed-out smb_vol */
1232 memset(vol, 0, sizeof(*vol));
1233
88463999
JL
1234 /*
1235 * does not have to be perfect mapping since field is
1236 * informational, only used for servers that do not support
1237 * port 445 and it can be overridden at mount time
1238 */
1397f2ee
JL
1239 memset(vol->source_rfc1001_name, 0x20, RFC1001_NAME_LEN);
1240 for (i = 0; i < strnlen(nodename, RFC1001_NAME_LEN); i++)
88463999
JL
1241 vol->source_rfc1001_name[i] = toupper(nodename[i]);
1242
1397f2ee 1243 vol->source_rfc1001_name[RFC1001_NAME_LEN] = 0;
a10faeb2
SF
1244 /* null target name indicates to use *SMBSERVR default called name
1245 if we end up sending RFC1001 session initialize */
1246 vol->target_rfc1001_name[0] = 0;
3e4b3e1f
JL
1247 vol->cred_uid = current_uid();
1248 vol->linux_uid = current_uid();
a001e5b5 1249 vol->linux_gid = current_gid();
f55ed1a8 1250
2baa2682
SF
1251 /*
1252 * default to SFM style remapping of seven reserved characters
1253 * unless user overrides it or we negotiate CIFS POSIX where
1254 * it is unnecessary. Can not simultaneously use more than one mapping
1255 * since then readdir could list files that open could not open
1256 */
1257 vol->remap = true;
1258
f55ed1a8
JL
1259 /* default to only allowing write access to owner of the mount */
1260 vol->dir_mode = vol->file_mode = S_IRUGO | S_IXUGO | S_IWUSR;
1da177e4
LT
1261
1262 /* vol->retry default is 0 (i.e. "soft" limited retry not hard retry) */
ac67055e
JA
1263 /* default is always to request posix paths. */
1264 vol->posix_paths = 1;
a0c9217f
JL
1265 /* default to using server inode numbers where available */
1266 vol->server_ino = 1;
ac67055e 1267
1b359204
JL
1268 /* default is to use strict cifs caching semantics */
1269 vol->strict_io = true;
1270
6d20e840
SJ
1271 vol->actimeo = CIFS_DEF_ACTIMEO;
1272
23db65f5
JL
1273 /* FIXME: add autonegotiation -- for now, SMB1 is default */
1274 vol->ops = &smb1_operations;
1275 vol->vals = &smb1_values;
1276
b782fcc1
RV
1277 vol->echo_interval = SMB_ECHO_INTERVAL_DEFAULT;
1278
b946845a
SF
1279 if (!mountdata)
1280 goto cifs_parse_mount_err;
1281
1282 mountdata_copy = kstrndup(mountdata, PAGE_SIZE, GFP_KERNEL);
1283 if (!mountdata_copy)
1284 goto cifs_parse_mount_err;
1da177e4 1285
b946845a 1286 options = mountdata_copy;
4906e50b 1287 end = options + strlen(options);
8830d7e0 1288
50c2f753 1289 if (strncmp(options, "sep=", 4) == 0) {
fb8c4b14 1290 if (options[4] != 0) {
1da177e4
LT
1291 separator[0] = options[4];
1292 options += 5;
1293 } else {
f96637be 1294 cifs_dbg(FYI, "Null separator not allowed\n");
1da177e4
LT
1295 }
1296 }
3d3ea8e6
SP
1297 vol->backupuid_specified = false; /* no backup intent for a user */
1298 vol->backupgid_specified = false; /* no backup intent for a group */
50c2f753 1299
37d4f99b
JL
1300 switch (cifs_parse_devname(devname, vol)) {
1301 case 0:
1302 break;
1303 case -ENOMEM:
1304 cifs_dbg(VFS, "Unable to allocate memory for devname.\n");
1305 goto cifs_parse_mount_err;
1306 case -EINVAL:
1307 cifs_dbg(VFS, "Malformed UNC in devname.\n");
1308 goto cifs_parse_mount_err;
1309 default:
1310 cifs_dbg(VFS, "Unknown error parsing devname.\n");
1311 goto cifs_parse_mount_err;
d387a5c5
JL
1312 }
1313
1da177e4 1314 while ((data = strsep(&options, separator)) != NULL) {
8830d7e0
SP
1315 substring_t args[MAX_OPT_ARGS];
1316 unsigned long option;
1317 int token;
1318
1da177e4
LT
1319 if (!*data)
1320 continue;
1da177e4 1321
8830d7e0
SP
1322 token = match_token(data, cifs_mount_option_tokens, args);
1323
1324 switch (token) {
1325
1326 /* Ingnore the following */
1327 case Opt_ignore:
1328 break;
1329
1330 /* Boolean values */
1331 case Opt_user_xattr:
1da177e4 1332 vol->no_xattr = 0;
8830d7e0
SP
1333 break;
1334 case Opt_nouser_xattr:
1da177e4 1335 vol->no_xattr = 1;
8830d7e0
SP
1336 break;
1337 case Opt_forceuid:
9b9d6b24 1338 override_uid = 1;
8830d7e0
SP
1339 break;
1340 case Opt_noforceuid:
9b9d6b24 1341 override_uid = 0;
8830d7e0 1342 break;
72bd481f
JL
1343 case Opt_forcegid:
1344 override_gid = 1;
1345 break;
1346 case Opt_noforcegid:
1347 override_gid = 0;
1348 break;
8830d7e0 1349 case Opt_noblocksend:
edf1ae40 1350 vol->noblocksnd = 1;
8830d7e0
SP
1351 break;
1352 case Opt_noautotune:
edf1ae40 1353 vol->noautotune = 1;
8830d7e0
SP
1354 break;
1355 case Opt_hard:
1da177e4 1356 vol->retry = 1;
8830d7e0
SP
1357 break;
1358 case Opt_soft:
1da177e4 1359 vol->retry = 0;
8830d7e0
SP
1360 break;
1361 case Opt_perm:
1da177e4 1362 vol->noperm = 0;
8830d7e0
SP
1363 break;
1364 case Opt_noperm:
1da177e4 1365 vol->noperm = 1;
8830d7e0
SP
1366 break;
1367 case Opt_mapchars:
2baa2682
SF
1368 vol->sfu_remap = true;
1369 vol->remap = false; /* disable SFM mapping */
8830d7e0
SP
1370 break;
1371 case Opt_nomapchars:
2baa2682
SF
1372 vol->sfu_remap = false;
1373 break;
1374 case Opt_mapposix:
1375 vol->remap = true;
1376 vol->sfu_remap = false; /* disable SFU mapping */
1377 break;
1378 case Opt_nomapposix:
1379 vol->remap = false;
8830d7e0
SP
1380 break;
1381 case Opt_sfu:
50c2f753 1382 vol->sfu_emul = 1;
8830d7e0
SP
1383 break;
1384 case Opt_nosfu:
50c2f753 1385 vol->sfu_emul = 0;
8830d7e0
SP
1386 break;
1387 case Opt_nodfs:
2c1b8615 1388 vol->nodfs = 1;
8830d7e0
SP
1389 break;
1390 case Opt_posixpaths:
ac67055e 1391 vol->posix_paths = 1;
8830d7e0
SP
1392 break;
1393 case Opt_noposixpaths:
ac67055e 1394 vol->posix_paths = 0;
8830d7e0
SP
1395 break;
1396 case Opt_nounix:
c18c842b 1397 vol->no_linux_ext = 1;
8830d7e0
SP
1398 break;
1399 case Opt_nocase:
50c2f753 1400 vol->nocase = 1;
8830d7e0
SP
1401 break;
1402 case Opt_brl:
c46fa8ac 1403 vol->nobrl = 0;
8830d7e0
SP
1404 break;
1405 case Opt_nobrl:
c46fa8ac 1406 vol->nobrl = 1;
5cfdddcf
PS
1407 /*
1408 * turn off mandatory locking in mode
8830d7e0 1409 * if remote locking is turned off since the
5cfdddcf
PS
1410 * local vfs will do advisory
1411 */
50c2f753
SF
1412 if (vol->file_mode ==
1413 (S_IALLUGO & ~(S_ISUID | S_IXGRP)))
d3485d37 1414 vol->file_mode = S_IALLUGO;
8830d7e0
SP
1415 break;
1416 case Opt_forcemandatorylock:
13a6e42a 1417 vol->mand_lock = 1;
8830d7e0
SP
1418 break;
1419 case Opt_setuids:
1da177e4 1420 vol->setuids = 1;
8830d7e0
SP
1421 break;
1422 case Opt_nosetuids:
1da177e4 1423 vol->setuids = 0;
8830d7e0 1424 break;
95932655
SF
1425 case Opt_setuidfromacl:
1426 vol->setuidfromacl = 1;
1427 break;
8830d7e0 1428 case Opt_dynperm:
d0a9c078 1429 vol->dynperm = true;
8830d7e0
SP
1430 break;
1431 case Opt_nodynperm:
d0a9c078 1432 vol->dynperm = false;
8830d7e0
SP
1433 break;
1434 case Opt_nohard:
1da177e4 1435 vol->retry = 0;
8830d7e0
SP
1436 break;
1437 case Opt_nosoft:
1da177e4 1438 vol->retry = 1;
8830d7e0
SP
1439 break;
1440 case Opt_nointr:
1da177e4 1441 vol->intr = 0;
8830d7e0
SP
1442 break;
1443 case Opt_intr:
1da177e4 1444 vol->intr = 1;
8830d7e0
SP
1445 break;
1446 case Opt_nostrictsync:
be652445 1447 vol->nostrictsync = 1;
8830d7e0
SP
1448 break;
1449 case Opt_strictsync:
be652445 1450 vol->nostrictsync = 0;
8830d7e0
SP
1451 break;
1452 case Opt_serverino:
1da177e4 1453 vol->server_ino = 1;
8830d7e0
SP
1454 break;
1455 case Opt_noserverino:
1da177e4 1456 vol->server_ino = 0;
8830d7e0
SP
1457 break;
1458 case Opt_rwpidforward:
d4ffff1f 1459 vol->rwpidforward = 1;
8830d7e0
SP
1460 break;
1461 case Opt_cifsacl:
0a4b92c0 1462 vol->cifs_acl = 1;
8830d7e0
SP
1463 break;
1464 case Opt_nocifsacl:
0a4b92c0 1465 vol->cifs_acl = 0;
8830d7e0
SP
1466 break;
1467 case Opt_acl:
1da177e4 1468 vol->no_psx_acl = 0;
8830d7e0
SP
1469 break;
1470 case Opt_noacl:
1da177e4 1471 vol->no_psx_acl = 1;
8830d7e0
SP
1472 break;
1473 case Opt_locallease:
84210e91 1474 vol->local_lease = 1;
8830d7e0
SP
1475 break;
1476 case Opt_sign:
1e3cc57e 1477 vol->sign = true;
8830d7e0
SP
1478 break;
1479 case Opt_seal:
95b1cb90 1480 /* we do not do the following in secFlags because seal
8830d7e0
SP
1481 * is a per tree connection (mount) not a per socket
1482 * or per-smb connection option in the protocol
1483 * vol->secFlg |= CIFSSEC_MUST_SEAL;
1484 */
95b1cb90 1485 vol->seal = 1;
8830d7e0 1486 break;
8830d7e0 1487 case Opt_noac:
0b456f04 1488 pr_warn("CIFS: Mount option noac not supported. Instead set /proc/fs/cifs/LookupCacheEnabled to 0\n");
8830d7e0
SP
1489 break;
1490 case Opt_fsc:
607a569d 1491#ifndef CONFIG_CIFS_FSCACHE
f96637be 1492 cifs_dbg(VFS, "FS-Cache support needs CONFIG_CIFS_FSCACHE kernel config option set\n");
b946845a 1493 goto cifs_parse_mount_err;
607a569d 1494#endif
fa1df75d 1495 vol->fsc = true;
8830d7e0
SP
1496 break;
1497 case Opt_mfsymlinks:
736a3320 1498 vol->mfsymlinks = true;
8830d7e0
SP
1499 break;
1500 case Opt_multiuser:
0eb8a132 1501 vol->multiuser = true;
8830d7e0 1502 break;
d8162558
JL
1503 case Opt_sloppy:
1504 sloppy = true;
1505 break;
a0b3df5c
JL
1506 case Opt_nosharesock:
1507 vol->nosharesock = true;
1508 break;
b2a30774
SF
1509 case Opt_nopersistent:
1510 vol->nopersistent = true;
1511 if (vol->persistent) {
1512 cifs_dbg(VFS,
1513 "persistenthandles mount options conflict\n");
1514 goto cifs_parse_mount_err;
1515 }
1516 break;
1517 case Opt_persistent:
1518 vol->persistent = true;
592fafe6 1519 if ((vol->nopersistent) || (vol->resilient)) {
b2a30774
SF
1520 cifs_dbg(VFS,
1521 "persistenthandles mount options conflict\n");
1522 goto cifs_parse_mount_err;
1523 }
1524 break;
592fafe6
SF
1525 case Opt_resilient:
1526 vol->resilient = true;
1527 if (vol->persistent) {
1528 cifs_dbg(VFS,
1529 "persistenthandles mount options conflict\n");
1530 goto cifs_parse_mount_err;
1531 }
1532 break;
1533 case Opt_noresilient:
1534 vol->resilient = false; /* already the default */
1535 break;
39566443
GP
1536 case Opt_domainauto:
1537 vol->domainauto = true;
1538 break;
8830d7e0
SP
1539
1540 /* Numeric Values */
1541 case Opt_backupuid:
3da46565 1542 if (get_option_uid(args, &vol->backupuid)) {
f96637be
JP
1543 cifs_dbg(VFS, "%s: Invalid backupuid value\n",
1544 __func__);
3d3ea8e6
SP
1545 goto cifs_parse_mount_err;
1546 }
1547 vol->backupuid_specified = true;
8830d7e0
SP
1548 break;
1549 case Opt_backupgid:
3da46565 1550 if (get_option_gid(args, &vol->backupgid)) {
f96637be
JP
1551 cifs_dbg(VFS, "%s: Invalid backupgid value\n",
1552 __func__);
3d3ea8e6
SP
1553 goto cifs_parse_mount_err;
1554 }
1555 vol->backupgid_specified = true;
8830d7e0
SP
1556 break;
1557 case Opt_uid:
3da46565 1558 if (get_option_uid(args, &vol->linux_uid)) {
f96637be
JP
1559 cifs_dbg(VFS, "%s: Invalid uid value\n",
1560 __func__);
8830d7e0
SP
1561 goto cifs_parse_mount_err;
1562 }
8830d7e0
SP
1563 uid_specified = true;
1564 break;
1565 case Opt_cruid:
3da46565 1566 if (get_option_uid(args, &vol->cred_uid)) {
f96637be
JP
1567 cifs_dbg(VFS, "%s: Invalid cruid value\n",
1568 __func__);
8830d7e0
SP
1569 goto cifs_parse_mount_err;
1570 }
8830d7e0
SP
1571 break;
1572 case Opt_gid:
3da46565 1573 if (get_option_gid(args, &vol->linux_gid)) {
f96637be
JP
1574 cifs_dbg(VFS, "%s: Invalid gid value\n",
1575 __func__);
8830d7e0
SP
1576 goto cifs_parse_mount_err;
1577 }
8830d7e0
SP
1578 gid_specified = true;
1579 break;
1580 case Opt_file_mode:
1581 if (get_option_ul(args, &option)) {
f96637be
JP
1582 cifs_dbg(VFS, "%s: Invalid file_mode value\n",
1583 __func__);
8830d7e0
SP
1584 goto cifs_parse_mount_err;
1585 }
1586 vol->file_mode = option;
1587 break;
1588 case Opt_dirmode:
1589 if (get_option_ul(args, &option)) {
f96637be
JP
1590 cifs_dbg(VFS, "%s: Invalid dir_mode value\n",
1591 __func__);
8830d7e0
SP
1592 goto cifs_parse_mount_err;
1593 }
1594 vol->dir_mode = option;
1595 break;
1596 case Opt_port:
b979aaa1
JL
1597 if (get_option_ul(args, &option) ||
1598 option > USHRT_MAX) {
f96637be
JP
1599 cifs_dbg(VFS, "%s: Invalid port value\n",
1600 __func__);
8830d7e0
SP
1601 goto cifs_parse_mount_err;
1602 }
b979aaa1 1603 port = (unsigned short)option;
8830d7e0
SP
1604 break;
1605 case Opt_rsize:
1606 if (get_option_ul(args, &option)) {
f96637be
JP
1607 cifs_dbg(VFS, "%s: Invalid rsize value\n",
1608 __func__);
b946845a 1609 goto cifs_parse_mount_err;
8830d7e0
SP
1610 }
1611 vol->rsize = option;
1612 break;
1613 case Opt_wsize:
1614 if (get_option_ul(args, &option)) {
f96637be
JP
1615 cifs_dbg(VFS, "%s: Invalid wsize value\n",
1616 __func__);
8830d7e0
SP
1617 goto cifs_parse_mount_err;
1618 }
1619 vol->wsize = option;
1620 break;
1621 case Opt_actimeo:
1622 if (get_option_ul(args, &option)) {
f96637be
JP
1623 cifs_dbg(VFS, "%s: Invalid actimeo value\n",
1624 __func__);
8830d7e0
SP
1625 goto cifs_parse_mount_err;
1626 }
1627 vol->actimeo = HZ * option;
1628 if (vol->actimeo > CIFS_MAX_ACTIMEO) {
f96637be 1629 cifs_dbg(VFS, "attribute cache timeout too large\n");
8830d7e0
SP
1630 goto cifs_parse_mount_err;
1631 }
1632 break;
adfeb3e0
SF
1633 case Opt_echo_interval:
1634 if (get_option_ul(args, &option)) {
1635 cifs_dbg(VFS, "%s: Invalid echo interval value\n",
1636 __func__);
1637 goto cifs_parse_mount_err;
1638 }
1639 vol->echo_interval = option;
1640 break;
8b217fe7
SF
1641 case Opt_snapshot:
1642 if (get_option_ul(args, &option)) {
1643 cifs_dbg(VFS, "%s: Invalid snapshot time\n",
1644 __func__);
1645 goto cifs_parse_mount_err;
1646 }
1647 vol->snapshot_time = option;
1648 break;
141891f4
SF
1649 case Opt_max_credits:
1650 if (get_option_ul(args, &option) || (option < 20) ||
1651 (option > 60000)) {
1652 cifs_dbg(VFS, "%s: Invalid max_credits value\n",
1653 __func__);
1654 goto cifs_parse_mount_err;
1655 }
1656 vol->max_credits = option;
1657 break;
8830d7e0
SP
1658
1659 /* String Arguments */
1660
4fe9e963
SP
1661 case Opt_blank_user:
1662 /* null user, ie. anonymous authentication */
1663 vol->nullauth = 1;
1664 vol->username = NULL;
1665 break;
8830d7e0
SP
1666 case Opt_user:
1667 string = match_strdup(args);
1668 if (string == NULL)
1669 goto out_nomem;
1670
8c3a2b4c
SL
1671 if (strnlen(string, CIFS_MAX_USERNAME_LEN) >
1672 CIFS_MAX_USERNAME_LEN) {
0b456f04 1673 pr_warn("CIFS: username too long\n");
8830d7e0
SP
1674 goto cifs_parse_mount_err;
1675 }
2bd50fb3
TK
1676
1677 kfree(vol->username);
8830d7e0 1678 vol->username = kstrdup(string, GFP_KERNEL);
f96637be 1679 if (!vol->username)
8830d7e0 1680 goto cifs_parse_mount_err;
8830d7e0
SP
1681 break;
1682 case Opt_blank_pass:
8830d7e0
SP
1683 /* passwords have to be handled differently
1684 * to allow the character used for deliminator
1685 * to be passed within them
1686 */
1687
c369c9a4
SP
1688 /*
1689 * Check if this is a case where the password
1690 * starts with a delimiter
1691 */
1692 tmp_end = strchr(data, '=');
1693 tmp_end++;
1694 if (!(tmp_end < end && tmp_end[1] == delim)) {
1695 /* No it is not. Set the password to NULL */
d6ccf499 1696 kfree(vol->password);
c369c9a4
SP
1697 vol->password = NULL;
1698 break;
1699 }
1700 /* Yes it is. Drop down to Opt_pass below.*/
1701 case Opt_pass:
8830d7e0
SP
1702 /* Obtain the value string */
1703 value = strchr(data, '=');
10238074 1704 value++;
8830d7e0
SP
1705
1706 /* Set tmp_end to end of the string */
1707 tmp_end = (char *) value + strlen(value);
1708
1709 /* Check if following character is the deliminator
1710 * If yes, we have encountered a double deliminator
1711 * reset the NULL character to the deliminator
1712 */
e73f843a 1713 if (tmp_end < end && tmp_end[1] == delim) {
8830d7e0
SP
1714 tmp_end[0] = delim;
1715
e73f843a
SJ
1716 /* Keep iterating until we get to a single
1717 * deliminator OR the end
1718 */
1719 while ((tmp_end = strchr(tmp_end, delim))
1720 != NULL && (tmp_end[1] == delim)) {
1721 tmp_end = (char *) &tmp_end[2];
1722 }
1723
1724 /* Reset var options to point to next element */
1725 if (tmp_end) {
1726 tmp_end[0] = '\0';
1727 options = (char *) &tmp_end[1];
1728 } else
1729 /* Reached the end of the mount option
1730 * string */
1731 options = end;
8830d7e0
SP
1732 }
1733
d6ccf499 1734 kfree(vol->password);
8830d7e0
SP
1735 /* Now build new password string */
1736 temp_len = strlen(value);
1737 vol->password = kzalloc(temp_len+1, GFP_KERNEL);
1738 if (vol->password == NULL) {
0b456f04 1739 pr_warn("CIFS: no memory for password\n");
8830d7e0
SP
1740 goto cifs_parse_mount_err;
1741 }
1742
1743 for (i = 0, j = 0; i < temp_len; i++, j++) {
1744 vol->password[j] = value[i];
1745 if ((value[i] == delim) &&
1746 value[i+1] == delim)
1747 /* skip the second deliminator */
1748 i++;
1749 }
1750 vol->password[j] = '\0';
1751 break;
4fe9e963 1752 case Opt_blank_ip:
b979aaa1
JL
1753 /* FIXME: should this be an error instead? */
1754 got_ip = false;
4fe9e963 1755 break;
8830d7e0
SP
1756 case Opt_ip:
1757 string = match_strdup(args);
1758 if (string == NULL)
1759 goto out_nomem;
1760
b979aaa1
JL
1761 if (!cifs_convert_address(dstaddr, string,
1762 strlen(string))) {
0b456f04 1763 pr_err("CIFS: bad ip= option (%s).\n", string);
8830d7e0
SP
1764 goto cifs_parse_mount_err;
1765 }
b979aaa1 1766 got_ip = true;
8830d7e0 1767 break;
8830d7e0
SP
1768 case Opt_domain:
1769 string = match_strdup(args);
1770 if (string == NULL)
1771 goto out_nomem;
1772
057d6332
CG
1773 if (strnlen(string, CIFS_MAX_DOMAINNAME_LEN)
1774 == CIFS_MAX_DOMAINNAME_LEN) {
0b456f04 1775 pr_warn("CIFS: domain name too long\n");
8830d7e0
SP
1776 goto cifs_parse_mount_err;
1777 }
1778
2bd50fb3 1779 kfree(vol->domainname);
8830d7e0
SP
1780 vol->domainname = kstrdup(string, GFP_KERNEL);
1781 if (!vol->domainname) {
0b456f04 1782 pr_warn("CIFS: no memory for domainname\n");
8830d7e0
SP
1783 goto cifs_parse_mount_err;
1784 }
f96637be 1785 cifs_dbg(FYI, "Domain name set\n");
8830d7e0
SP
1786 break;
1787 case Opt_srcaddr:
1788 string = match_strdup(args);
1789 if (string == NULL)
1790 goto out_nomem;
1791
4fe9e963 1792 if (!cifs_convert_address(
8830d7e0
SP
1793 (struct sockaddr *)&vol->srcaddr,
1794 string, strlen(string))) {
0b456f04
AS
1795 pr_warn("CIFS: Could not parse srcaddr: %s\n",
1796 string);
8830d7e0
SP
1797 goto cifs_parse_mount_err;
1798 }
1799 break;
8830d7e0
SP
1800 case Opt_iocharset:
1801 string = match_strdup(args);
1802 if (string == NULL)
1803 goto out_nomem;
1804
4fe9e963 1805 if (strnlen(string, 1024) >= 65) {
0b456f04 1806 pr_warn("CIFS: iocharset name too long.\n");
8830d7e0
SP
1807 goto cifs_parse_mount_err;
1808 }
1809
87e747cd 1810 if (strncasecmp(string, "default", 7) != 0) {
2bd50fb3 1811 kfree(vol->iocharset);
8830d7e0
SP
1812 vol->iocharset = kstrdup(string,
1813 GFP_KERNEL);
1814 if (!vol->iocharset) {
0b456f04 1815 pr_warn("CIFS: no memory for charset\n");
8830d7e0
SP
1816 goto cifs_parse_mount_err;
1817 }
1818 }
1819 /* if iocharset not set then load_nls_default
1820 * is used by caller
1821 */
f96637be 1822 cifs_dbg(FYI, "iocharset set to %s\n", string);
8830d7e0 1823 break;
8830d7e0
SP
1824 case Opt_netbiosname:
1825 string = match_strdup(args);
1826 if (string == NULL)
1827 goto out_nomem;
1828
8830d7e0
SP
1829 memset(vol->source_rfc1001_name, 0x20,
1830 RFC1001_NAME_LEN);
1831 /*
1832 * FIXME: are there cases in which a comma can
1833 * be valid in workstation netbios name (and
1834 * need special handling)?
1835 */
1836 for (i = 0; i < RFC1001_NAME_LEN; i++) {
1837 /* don't ucase netbiosname for user */
1838 if (string[i] == 0)
1839 break;
1840 vol->source_rfc1001_name[i] = string[i];
1841 }
1842 /* The string has 16th byte zero still from
1843 * set at top of the function
1844 */
1845 if (i == RFC1001_NAME_LEN && string[i] != 0)
0b456f04 1846 pr_warn("CIFS: netbiosname longer than 15 truncated.\n");
8830d7e0
SP
1847 break;
1848 case Opt_servern:
1849 /* servernetbiosname specified override *SMBSERVER */
1850 string = match_strdup(args);
1851 if (string == NULL)
1852 goto out_nomem;
1853
8830d7e0
SP
1854 /* last byte, type, is 0x20 for servr type */
1855 memset(vol->target_rfc1001_name, 0x20,
1856 RFC1001_NAME_LEN_WITH_NULL);
1857
1858 /* BB are there cases in which a comma can be
1859 valid in this workstation netbios name
1860 (and need special handling)? */
1861
1862 /* user or mount helper must uppercase the
1863 netbios name */
1864 for (i = 0; i < 15; i++) {
1865 if (string[i] == 0)
1866 break;
1867 vol->target_rfc1001_name[i] = string[i];
1868 }
1869 /* The string has 16th byte zero still from
1870 set at top of the function */
1871 if (i == RFC1001_NAME_LEN && string[i] != 0)
0b456f04 1872 pr_warn("CIFS: server netbiosname longer than 15 truncated.\n");
8830d7e0
SP
1873 break;
1874 case Opt_ver:
1875 string = match_strdup(args);
1876 if (string == NULL)
1877 goto out_nomem;
1878
87e747cd 1879 if (strncasecmp(string, "1", 1) == 0) {
8830d7e0
SP
1880 /* This is the default */
1881 break;
1882 }
1883 /* For all other value, error */
0b456f04 1884 pr_warn("CIFS: Invalid version specified\n");
b946845a 1885 goto cifs_parse_mount_err;
23db65f5
JL
1886 case Opt_vers:
1887 string = match_strdup(args);
1888 if (string == NULL)
1889 goto out_nomem;
1890
1891 if (cifs_parse_smb_version(string, vol) != 0)
1892 goto cifs_parse_mount_err;
1893 break;
8830d7e0
SP
1894 case Opt_sec:
1895 string = match_strdup(args);
1896 if (string == NULL)
1897 goto out_nomem;
1898
8830d7e0
SP
1899 if (cifs_parse_security_flavors(string, vol) != 0)
1900 goto cifs_parse_mount_err;
1901 break;
15b6a473
JL
1902 case Opt_cache:
1903 string = match_strdup(args);
1904 if (string == NULL)
1905 goto out_nomem;
1906
1907 if (cifs_parse_cache_flavor(string, vol) != 0)
1908 goto cifs_parse_mount_err;
1909 break;
8830d7e0 1910 default:
d8162558
JL
1911 /*
1912 * An option we don't recognize. Save it off for later
1913 * if we haven't already found one
1914 */
1915 if (!invalid)
1916 invalid = data;
8830d7e0 1917 break;
1da177e4 1918 }
8830d7e0
SP
1919 /* Free up any allocated string */
1920 kfree(string);
1921 string = NULL;
1da177e4 1922 }
0eb8a132 1923
d8162558 1924 if (!sloppy && invalid) {
0b456f04 1925 pr_err("CIFS: Unknown mount option \"%s\"\n", invalid);
d8162558
JL
1926 goto cifs_parse_mount_err;
1927 }
1928
8a8798a5
JL
1929#ifndef CONFIG_KEYS
1930 /* Muliuser mounts require CONFIG_KEYS support */
1931 if (vol->multiuser) {
f96637be 1932 cifs_dbg(VFS, "Multiuser mounts require kernels with CONFIG_KEYS enabled\n");
b946845a 1933 goto cifs_parse_mount_err;
0eb8a132 1934 }
8a8798a5 1935#endif
e5e69abd 1936 if (!vol->UNC) {
37d4f99b 1937 cifs_dbg(VFS, "CIFS mount error: No usable UNC path provided in device string!\n");
e5e69abd
JL
1938 goto cifs_parse_mount_err;
1939 }
0eb8a132 1940
62a1a439
JL
1941 /* make sure UNC has a share name */
1942 if (!strchr(vol->UNC + 3, '\\')) {
f96637be 1943 cifs_dbg(VFS, "Malformed UNC. Unable to find share name.\n");
62a1a439
JL
1944 goto cifs_parse_mount_err;
1945 }
1946
b979aaa1
JL
1947 if (!got_ip) {
1948 /* No ip= option specified? Try to get it from UNC */
1949 if (!cifs_convert_address(dstaddr, &vol->UNC[2],
1950 strlen(&vol->UNC[2]))) {
0b456f04 1951 pr_err("Unable to determine destination address.\n");
b979aaa1
JL
1952 goto cifs_parse_mount_err;
1953 }
1954 }
1955
1956 /* set the port that we got earlier */
1957 cifs_set_port(dstaddr, port);
1da177e4 1958
9b9d6b24
JL
1959 if (uid_specified)
1960 vol->override_uid = override_uid;
1961 else if (override_uid == 1)
0b456f04 1962 pr_notice("CIFS: ignoring forceuid mount option specified with no uid= option.\n");
9b9d6b24
JL
1963
1964 if (gid_specified)
1965 vol->override_gid = override_gid;
1966 else if (override_gid == 1)
0b456f04 1967 pr_notice("CIFS: ignoring forcegid mount option specified with no gid= option.\n");
9b9d6b24 1968
b946845a 1969 kfree(mountdata_copy);
1da177e4 1970 return 0;
b946845a 1971
8830d7e0 1972out_nomem:
0b456f04 1973 pr_warn("Could not allocate temporary buffer\n");
b946845a 1974cifs_parse_mount_err:
8830d7e0 1975 kfree(string);
b946845a
SF
1976 kfree(mountdata_copy);
1977 return 1;
1da177e4
LT
1978}
1979
3eb9a889
BG
1980/** Returns true if srcaddr isn't specified and rhs isn't
1981 * specified, or if srcaddr is specified and
1982 * matches the IP address of the rhs argument.
1983 */
1984static bool
1985srcip_matches(struct sockaddr *srcaddr, struct sockaddr *rhs)
1986{
1987 switch (srcaddr->sa_family) {
1988 case AF_UNSPEC:
1989 return (rhs->sa_family == AF_UNSPEC);
1990 case AF_INET: {
1991 struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr;
1992 struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs;
1993 return (saddr4->sin_addr.s_addr == vaddr4->sin_addr.s_addr);
1994 }
1995 case AF_INET6: {
1996 struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr;
e3e2775c 1997 struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs;
3eb9a889
BG
1998 return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr);
1999 }
2000 default:
2001 WARN_ON(1);
2002 return false; /* don't expect to be here */
2003 }
2004}
2005
4b886136
PS
2006/*
2007 * If no port is specified in addr structure, we try to match with 445 port
2008 * and if it fails - with 139 ports. It should be called only if address
2009 * families of server and addr are equal.
2010 */
2011static bool
2012match_port(struct TCP_Server_Info *server, struct sockaddr *addr)
2013{
6da97910 2014 __be16 port, *sport;
4b886136
PS
2015
2016 switch (addr->sa_family) {
2017 case AF_INET:
2018 sport = &((struct sockaddr_in *) &server->dstaddr)->sin_port;
2019 port = ((struct sockaddr_in *) addr)->sin_port;
2020 break;
2021 case AF_INET6:
2022 sport = &((struct sockaddr_in6 *) &server->dstaddr)->sin6_port;
2023 port = ((struct sockaddr_in6 *) addr)->sin6_port;
2024 break;
2025 default:
2026 WARN_ON(1);
2027 return false;
2028 }
2029
2030 if (!port) {
2031 port = htons(CIFS_PORT);
2032 if (port == *sport)
2033 return true;
2034
2035 port = htons(RFC1001_PORT);
2036 }
2037
2038 return port == *sport;
2039}
3eb9a889 2040
4515148e 2041static bool
3eb9a889
BG
2042match_address(struct TCP_Server_Info *server, struct sockaddr *addr,
2043 struct sockaddr *srcaddr)
4515148e 2044{
4515148e 2045 switch (addr->sa_family) {
a9f1b85e
PS
2046 case AF_INET: {
2047 struct sockaddr_in *addr4 = (struct sockaddr_in *)addr;
2048 struct sockaddr_in *srv_addr4 =
2049 (struct sockaddr_in *)&server->dstaddr;
2050
2051 if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr)
4515148e 2052 return false;
4515148e 2053 break;
a9f1b85e
PS
2054 }
2055 case AF_INET6: {
2056 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr;
2057 struct sockaddr_in6 *srv_addr6 =
2058 (struct sockaddr_in6 *)&server->dstaddr;
2059
4515148e 2060 if (!ipv6_addr_equal(&addr6->sin6_addr,
a9f1b85e 2061 &srv_addr6->sin6_addr))
4515148e 2062 return false;
a9f1b85e 2063 if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id)
4515148e 2064 return false;
4515148e
JL
2065 break;
2066 }
a9f1b85e
PS
2067 default:
2068 WARN_ON(1);
2069 return false; /* don't expect to be here */
2070 }
4515148e 2071
3eb9a889
BG
2072 if (!srcip_matches(srcaddr, (struct sockaddr *)&server->srcaddr))
2073 return false;
2074
4515148e
JL
2075 return true;
2076}
2077
daf5b0b6
JL
2078static bool
2079match_security(struct TCP_Server_Info *server, struct smb_vol *vol)
2080{
3f618223
JL
2081 /*
2082 * The select_sectype function should either return the vol->sectype
2083 * that was specified, or "Unspecified" if that sectype was not
2084 * compatible with the given NEGOTIATE request.
2085 */
ef65aaed
SP
2086 if (server->ops->select_sectype(server, vol->sectype)
2087 == Unspecified)
daf5b0b6 2088 return false;
daf5b0b6 2089
3f618223
JL
2090 /*
2091 * Now check if signing mode is acceptable. No need to check
2092 * global_secflags at this point since if MUST_SIGN is set then
2093 * the server->sign had better be too.
2094 */
38d77c50
JL
2095 if (vol->sign && !server->sign)
2096 return false;
daf5b0b6
JL
2097
2098 return true;
2099}
2100
9fa114f7 2101static int match_server(struct TCP_Server_Info *server, struct smb_vol *vol)
37bb04e5 2102{
9fa114f7
JL
2103 struct sockaddr *addr = (struct sockaddr *)&vol->dstaddr;
2104
a0b3df5c
JL
2105 if (vol->nosharesock)
2106 return 0;
2107
23db65f5
JL
2108 if ((server->vals != vol->vals) || (server->ops != vol->ops))
2109 return 0;
2110
37bb04e5
PS
2111 if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns))
2112 return 0;
2113
2114 if (!match_address(server, addr,
2115 (struct sockaddr *)&vol->srcaddr))
2116 return 0;
2117
2118 if (!match_port(server, addr))
2119 return 0;
2120
2121 if (!match_security(server, vol))
2122 return 0;
2123
b782fcc1 2124 if (server->echo_interval != vol->echo_interval * HZ)
adfeb3e0
SF
2125 return 0;
2126
37bb04e5
PS
2127 return 1;
2128}
2129
e7ddee90 2130static struct TCP_Server_Info *
9fa114f7 2131cifs_find_tcp_session(struct smb_vol *vol)
1da177e4 2132{
e7ddee90 2133 struct TCP_Server_Info *server;
e7ddee90 2134
3f9bcca7 2135 spin_lock(&cifs_tcp_ses_lock);
4515148e 2136 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
9fa114f7 2137 if (!match_server(server, vol))
daf5b0b6
JL
2138 continue;
2139
e7ddee90 2140 ++server->srv_count;
3f9bcca7 2141 spin_unlock(&cifs_tcp_ses_lock);
f96637be 2142 cifs_dbg(FYI, "Existing tcp session with server found\n");
e7ddee90 2143 return server;
1da177e4 2144 }
3f9bcca7 2145 spin_unlock(&cifs_tcp_ses_lock);
1da177e4
LT
2146 return NULL;
2147}
1b20d672 2148
53e0e11e
PS
2149void
2150cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect)
1da177e4 2151{
a5c3e1c7
SF
2152 struct task_struct *task;
2153
3f9bcca7 2154 spin_lock(&cifs_tcp_ses_lock);
e7ddee90 2155 if (--server->srv_count > 0) {
3f9bcca7 2156 spin_unlock(&cifs_tcp_ses_lock);
e7ddee90 2157 return;
1da177e4 2158 }
1b20d672 2159
f1d0c998
RL
2160 put_net(cifs_net_ns(server));
2161
e7ddee90 2162 list_del_init(&server->tcp_ses_list);
3f9bcca7 2163 spin_unlock(&cifs_tcp_ses_lock);
dea570e0 2164
c74093b6
JL
2165 cancel_delayed_work_sync(&server->echo);
2166
53e0e11e
PS
2167#ifdef CONFIG_CIFS_SMB2
2168 if (from_reconnect)
2169 /*
2170 * Avoid deadlock here: reconnect work calls
2171 * cifs_put_tcp_session() at its end. Need to be sure
2172 * that reconnect work does nothing with server pointer after
2173 * that step.
2174 */
2175 cancel_delayed_work(&server->reconnect);
2176 else
2177 cancel_delayed_work_sync(&server->reconnect);
2178#endif
2179
e7ddee90
JL
2180 spin_lock(&GlobalMid_Lock);
2181 server->tcpStatus = CifsExiting;
2182 spin_unlock(&GlobalMid_Lock);
dea570e0 2183
026e93dc 2184 cifs_crypto_secmech_release(server);
488f1d2d
SJ
2185 cifs_fscache_release_client_cookie(server);
2186
21e73393
SP
2187 kfree(server->session_key.response);
2188 server->session_key.response = NULL;
2189 server->session_key.len = 0;
a5c3e1c7
SF
2190
2191 task = xchg(&server->tsk, NULL);
2192 if (task)
2193 force_sig(SIGKILL, task);
1da177e4
LT
2194}
2195
63c038c2
JL
2196static struct TCP_Server_Info *
2197cifs_get_tcp_session(struct smb_vol *volume_info)
2198{
2199 struct TCP_Server_Info *tcp_ses = NULL;
63c038c2
JL
2200 int rc;
2201
f96637be 2202 cifs_dbg(FYI, "UNC: %s\n", volume_info->UNC);
63c038c2
JL
2203
2204 /* see if we already have a matching tcp_ses */
9fa114f7 2205 tcp_ses = cifs_find_tcp_session(volume_info);
63c038c2
JL
2206 if (tcp_ses)
2207 return tcp_ses;
2208
2209 tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL);
2210 if (!tcp_ses) {
2211 rc = -ENOMEM;
2212 goto out_err;
2213 }
2214
23db65f5
JL
2215 tcp_ses->ops = volume_info->ops;
2216 tcp_ses->vals = volume_info->vals;
f1d0c998 2217 cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns));
63c038c2
JL
2218 tcp_ses->hostname = extract_hostname(volume_info->UNC);
2219 if (IS_ERR(tcp_ses->hostname)) {
2220 rc = PTR_ERR(tcp_ses->hostname);
f7c5445a 2221 goto out_err_crypto_release;
63c038c2
JL
2222 }
2223
2224 tcp_ses->noblocksnd = volume_info->noblocksnd;
2225 tcp_ses->noautotune = volume_info->noautotune;
6a5fa236 2226 tcp_ses->tcp_nodelay = volume_info->sockopt_tcp_nodelay;
fc40f9cf 2227 tcp_ses->in_flight = 0;
2d86dbc9 2228 tcp_ses->credits = 1;
63c038c2
JL
2229 init_waitqueue_head(&tcp_ses->response_q);
2230 init_waitqueue_head(&tcp_ses->request_q);
2231 INIT_LIST_HEAD(&tcp_ses->pending_mid_q);
2232 mutex_init(&tcp_ses->srv_mutex);
2233 memcpy(tcp_ses->workstation_RFC1001_name,
2234 volume_info->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
2235 memcpy(tcp_ses->server_RFC1001_name,
2236 volume_info->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
5d0d2882 2237 tcp_ses->session_estab = false;
63c038c2 2238 tcp_ses->sequence_number = 0;
fda35943 2239 tcp_ses->lstrp = jiffies;
58fa015f 2240 spin_lock_init(&tcp_ses->req_lock);
63c038c2
JL
2241 INIT_LIST_HEAD(&tcp_ses->tcp_ses_list);
2242 INIT_LIST_HEAD(&tcp_ses->smb_ses_list);
c74093b6 2243 INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request);
53e0e11e
PS
2244#ifdef CONFIG_CIFS_SMB2
2245 INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server);
2246 mutex_init(&tcp_ses->reconnect_mutex);
2247#endif
9fa114f7
JL
2248 memcpy(&tcp_ses->srcaddr, &volume_info->srcaddr,
2249 sizeof(tcp_ses->srcaddr));
2250 memcpy(&tcp_ses->dstaddr, &volume_info->dstaddr,
2251 sizeof(tcp_ses->dstaddr));
39552ea8 2252#ifdef CONFIG_CIFS_SMB2
fa70b87c 2253 generate_random_uuid(tcp_ses->client_guid);
39552ea8 2254#endif
63c038c2
JL
2255 /*
2256 * at this point we are the only ones with the pointer
2257 * to the struct since the kernel thread not created yet
2258 * no need to spinlock this init of tcpStatus or srv_count
2259 */
2260 tcp_ses->tcpStatus = CifsNew;
2261 ++tcp_ses->srv_count;
2262
adfeb3e0
SF
2263 if (volume_info->echo_interval >= SMB_ECHO_INTERVAL_MIN &&
2264 volume_info->echo_interval <= SMB_ECHO_INTERVAL_MAX)
2265 tcp_ses->echo_interval = volume_info->echo_interval * HZ;
2266 else
2267 tcp_ses->echo_interval = SMB_ECHO_INTERVAL_DEFAULT * HZ;
2268
a9f1b85e 2269 rc = ip_connect(tcp_ses);
63c038c2 2270 if (rc < 0) {
f96637be 2271 cifs_dbg(VFS, "Error connecting to socket. Aborting operation.\n");
f7c5445a 2272 goto out_err_crypto_release;
63c038c2
JL
2273 }
2274
2275 /*
2276 * since we're in a cifs function already, we know that
2277 * this will succeed. No need for try_module_get().
2278 */
2279 __module_get(THIS_MODULE);
7c97c200 2280 tcp_ses->tsk = kthread_run(cifs_demultiplex_thread,
63c038c2
JL
2281 tcp_ses, "cifsd");
2282 if (IS_ERR(tcp_ses->tsk)) {
2283 rc = PTR_ERR(tcp_ses->tsk);
f96637be 2284 cifs_dbg(VFS, "error %d create cifsd thread\n", rc);
63c038c2 2285 module_put(THIS_MODULE);
f7c5445a 2286 goto out_err_crypto_release;
63c038c2 2287 }
fd88ce93 2288 tcp_ses->tcpStatus = CifsNeedNegotiate;
63c038c2
JL
2289
2290 /* thread spawned, put it on the list */
3f9bcca7 2291 spin_lock(&cifs_tcp_ses_lock);
63c038c2 2292 list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list);
3f9bcca7 2293 spin_unlock(&cifs_tcp_ses_lock);
63c038c2 2294
488f1d2d
SJ
2295 cifs_fscache_get_client_cookie(tcp_ses);
2296
c74093b6 2297 /* queue echo request delayed work */
adfeb3e0 2298 queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval);
c74093b6 2299
63c038c2
JL
2300 return tcp_ses;
2301
f7c5445a 2302out_err_crypto_release:
026e93dc 2303 cifs_crypto_secmech_release(tcp_ses);
d2b91521 2304
f1d0c998
RL
2305 put_net(cifs_net_ns(tcp_ses));
2306
63c038c2
JL
2307out_err:
2308 if (tcp_ses) {
8347a5cd
SF
2309 if (!IS_ERR(tcp_ses->hostname))
2310 kfree(tcp_ses->hostname);
63c038c2
JL
2311 if (tcp_ses->ssocket)
2312 sock_release(tcp_ses->ssocket);
2313 kfree(tcp_ses);
2314 }
2315 return ERR_PTR(rc);
2316}
2317
96daf2b0 2318static int match_session(struct cifs_ses *ses, struct smb_vol *vol)
37bb04e5 2319{
3f618223
JL
2320 if (vol->sectype != Unspecified &&
2321 vol->sectype != ses->sectype)
2322 return 0;
2323
2324 switch (ses->sectype) {
37bb04e5 2325 case Kerberos:
64ed39dd 2326 if (!uid_eq(vol->cred_uid, ses->cred_uid))
37bb04e5
PS
2327 return 0;
2328 break;
2329 default:
04febabc
JL
2330 /* NULL username means anonymous session */
2331 if (ses->user_name == NULL) {
2332 if (!vol->nullauth)
2333 return 0;
2334 break;
2335 }
2336
37bb04e5 2337 /* anything else takes username/password */
04febabc
JL
2338 if (strncmp(ses->user_name,
2339 vol->username ? vol->username : "",
8c3a2b4c 2340 CIFS_MAX_USERNAME_LEN))
37bb04e5 2341 return 0;
08b37d51 2342 if ((vol->username && strlen(vol->username) != 0) &&
37bb04e5
PS
2343 ses->password != NULL &&
2344 strncmp(ses->password,
2345 vol->password ? vol->password : "",
8c3a2b4c 2346 CIFS_MAX_PASSWORD_LEN))
37bb04e5
PS
2347 return 0;
2348 }
2349 return 1;
2350}
2351
96daf2b0 2352static struct cifs_ses *
4ff67b72 2353cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb_vol *vol)
1da177e4 2354{
96daf2b0 2355 struct cifs_ses *ses;
dea570e0 2356
3f9bcca7 2357 spin_lock(&cifs_tcp_ses_lock);
4ff67b72 2358 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
7f48558e
SP
2359 if (ses->status == CifsExiting)
2360 continue;
37bb04e5
PS
2361 if (!match_session(ses, vol))
2362 continue;
14fbf50d 2363 ++ses->ses_count;
3f9bcca7 2364 spin_unlock(&cifs_tcp_ses_lock);
14fbf50d
JL
2365 return ses;
2366 }
3f9bcca7 2367 spin_unlock(&cifs_tcp_ses_lock);
14fbf50d
JL
2368 return NULL;
2369}
dea570e0 2370
14fbf50d 2371static void
96daf2b0 2372cifs_put_smb_ses(struct cifs_ses *ses)
14fbf50d 2373{
7f48558e 2374 unsigned int rc, xid;
14fbf50d 2375 struct TCP_Server_Info *server = ses->server;
dea570e0 2376
f96637be 2377 cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count);
7f48558e 2378
3f9bcca7 2379 spin_lock(&cifs_tcp_ses_lock);
7f48558e
SP
2380 if (ses->status == CifsExiting) {
2381 spin_unlock(&cifs_tcp_ses_lock);
2382 return;
2383 }
14fbf50d 2384 if (--ses->ses_count > 0) {
3f9bcca7 2385 spin_unlock(&cifs_tcp_ses_lock);
14fbf50d
JL
2386 return;
2387 }
7f48558e
SP
2388 if (ses->status == CifsGood)
2389 ses->status = CifsExiting;
3f9bcca7 2390 spin_unlock(&cifs_tcp_ses_lock);
dea570e0 2391
7f48558e 2392 if (ses->status == CifsExiting && server->ops->logoff) {
6d5786a3 2393 xid = get_xid();
7f48558e
SP
2394 rc = server->ops->logoff(xid, ses);
2395 if (rc)
2396 cifs_dbg(VFS, "%s: Session Logoff failure rc=%d\n",
2397 __func__, rc);
6d5786a3 2398 _free_xid(xid);
14fbf50d 2399 }
7f48558e
SP
2400
2401 spin_lock(&cifs_tcp_ses_lock);
2402 list_del_init(&ses->smb_ses_list);
2403 spin_unlock(&cifs_tcp_ses_lock);
2404
14fbf50d 2405 sesInfoFree(ses);
53e0e11e 2406 cifs_put_tcp_session(server, 0);
14fbf50d 2407}
dea570e0 2408
8a8798a5
JL
2409#ifdef CONFIG_KEYS
2410
057d6332
CG
2411/* strlen("cifs:a:") + CIFS_MAX_DOMAINNAME_LEN + 1 */
2412#define CIFSCREDS_DESC_SIZE (7 + CIFS_MAX_DOMAINNAME_LEN + 1)
8a8798a5
JL
2413
2414/* Populate username and pw fields from keyring if possible */
2415static int
2416cifs_set_cifscreds(struct smb_vol *vol, struct cifs_ses *ses)
2417{
2418 int rc = 0;
146aa8b1
DH
2419 const char *delim, *payload;
2420 char *desc;
8a8798a5
JL
2421 ssize_t len;
2422 struct key *key;
2423 struct TCP_Server_Info *server = ses->server;
2424 struct sockaddr_in *sa;
2425 struct sockaddr_in6 *sa6;
146aa8b1 2426 const struct user_key_payload *upayload;
8a8798a5
JL
2427
2428 desc = kmalloc(CIFSCREDS_DESC_SIZE, GFP_KERNEL);
2429 if (!desc)
2430 return -ENOMEM;
2431
2432 /* try to find an address key first */
2433 switch (server->dstaddr.ss_family) {
2434 case AF_INET:
2435 sa = (struct sockaddr_in *)&server->dstaddr;
2436 sprintf(desc, "cifs:a:%pI4", &sa->sin_addr.s_addr);
2437 break;
2438 case AF_INET6:
2439 sa6 = (struct sockaddr_in6 *)&server->dstaddr;
2440 sprintf(desc, "cifs:a:%pI6c", &sa6->sin6_addr.s6_addr);
2441 break;
2442 default:
f96637be
JP
2443 cifs_dbg(FYI, "Bad ss_family (%hu)\n",
2444 server->dstaddr.ss_family);
8a8798a5
JL
2445 rc = -EINVAL;
2446 goto out_err;
2447 }
2448
f96637be 2449 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
8a8798a5
JL
2450 key = request_key(&key_type_logon, desc, "");
2451 if (IS_ERR(key)) {
2452 if (!ses->domainName) {
f96637be 2453 cifs_dbg(FYI, "domainName is NULL\n");
8a8798a5
JL
2454 rc = PTR_ERR(key);
2455 goto out_err;
2456 }
2457
2458 /* didn't work, try to find a domain key */
2459 sprintf(desc, "cifs:d:%s", ses->domainName);
f96637be 2460 cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc);
8a8798a5
JL
2461 key = request_key(&key_type_logon, desc, "");
2462 if (IS_ERR(key)) {
2463 rc = PTR_ERR(key);
2464 goto out_err;
2465 }
2466 }
2467
2468 down_read(&key->sem);
0837e49a 2469 upayload = user_key_payload_locked(key);
8a8798a5 2470 if (IS_ERR_OR_NULL(upayload)) {
4edc53c1 2471 rc = upayload ? PTR_ERR(upayload) : -EINVAL;
8a8798a5
JL
2472 goto out_key_put;
2473 }
2474
2475 /* find first : in payload */
146aa8b1 2476 payload = upayload->data;
8a8798a5 2477 delim = strnchr(payload, upayload->datalen, ':');
f96637be 2478 cifs_dbg(FYI, "payload=%s\n", payload);
8a8798a5 2479 if (!delim) {
f96637be
JP
2480 cifs_dbg(FYI, "Unable to find ':' in payload (datalen=%d)\n",
2481 upayload->datalen);
8a8798a5
JL
2482 rc = -EINVAL;
2483 goto out_key_put;
2484 }
2485
2486 len = delim - payload;
8c3a2b4c 2487 if (len > CIFS_MAX_USERNAME_LEN || len <= 0) {
f96637be
JP
2488 cifs_dbg(FYI, "Bad value from username search (len=%zd)\n",
2489 len);
8a8798a5
JL
2490 rc = -EINVAL;
2491 goto out_key_put;
2492 }
2493
2494 vol->username = kstrndup(payload, len, GFP_KERNEL);
2495 if (!vol->username) {
f96637be
JP
2496 cifs_dbg(FYI, "Unable to allocate %zd bytes for username\n",
2497 len);
8a8798a5
JL
2498 rc = -ENOMEM;
2499 goto out_key_put;
2500 }
f96637be 2501 cifs_dbg(FYI, "%s: username=%s\n", __func__, vol->username);
8a8798a5
JL
2502
2503 len = key->datalen - (len + 1);
8c3a2b4c 2504 if (len > CIFS_MAX_PASSWORD_LEN || len <= 0) {
f96637be 2505 cifs_dbg(FYI, "Bad len for password search (len=%zd)\n", len);
8a8798a5
JL
2506 rc = -EINVAL;
2507 kfree(vol->username);
2508 vol->username = NULL;
2509 goto out_key_put;
2510 }
2511
2512 ++delim;
2513 vol->password = kstrndup(delim, len, GFP_KERNEL);
2514 if (!vol->password) {
f96637be
JP
2515 cifs_dbg(FYI, "Unable to allocate %zd bytes for password\n",
2516 len);
8a8798a5
JL
2517 rc = -ENOMEM;
2518 kfree(vol->username);
2519 vol->username = NULL;
2520 goto out_key_put;
2521 }
2522
2523out_key_put:
2524 up_read(&key->sem);
2525 key_put(key);
2526out_err:
2527 kfree(desc);
f96637be 2528 cifs_dbg(FYI, "%s: returning %d\n", __func__, rc);
8a8798a5
JL
2529 return rc;
2530}
2531#else /* ! CONFIG_KEYS */
2532static inline int
2533cifs_set_cifscreds(struct smb_vol *vol __attribute__((unused)),
2534 struct cifs_ses *ses __attribute__((unused)))
2535{
2536 return -ENOSYS;
2537}
2538#endif /* CONFIG_KEYS */
2539
96daf2b0 2540static struct cifs_ses *
36988c76
JL
2541cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb_vol *volume_info)
2542{
286170aa
PS
2543 int rc = -ENOMEM;
2544 unsigned int xid;
96daf2b0 2545 struct cifs_ses *ses;
a9f1b85e
PS
2546 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
2547 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
36988c76 2548
6d5786a3 2549 xid = get_xid();
36988c76 2550
4ff67b72 2551 ses = cifs_find_smb_ses(server, volume_info);
36988c76 2552 if (ses) {
f96637be
JP
2553 cifs_dbg(FYI, "Existing smb sess found (status=%d)\n",
2554 ses->status);
36988c76 2555
36988c76 2556 mutex_lock(&ses->session_mutex);
198b5682
JL
2557 rc = cifs_negotiate_protocol(xid, ses);
2558 if (rc) {
2559 mutex_unlock(&ses->session_mutex);
2560 /* problem -- put our ses reference */
2561 cifs_put_smb_ses(ses);
6d5786a3 2562 free_xid(xid);
198b5682
JL
2563 return ERR_PTR(rc);
2564 }
36988c76 2565 if (ses->need_reconnect) {
f96637be 2566 cifs_dbg(FYI, "Session needs reconnect\n");
36988c76
JL
2567 rc = cifs_setup_session(xid, ses,
2568 volume_info->local_nls);
2569 if (rc) {
2570 mutex_unlock(&ses->session_mutex);
2571 /* problem -- put our reference */
2572 cifs_put_smb_ses(ses);
6d5786a3 2573 free_xid(xid);
36988c76
JL
2574 return ERR_PTR(rc);
2575 }
2576 }
2577 mutex_unlock(&ses->session_mutex);
460cf341
JL
2578
2579 /* existing SMB ses has a server reference already */
53e0e11e 2580 cifs_put_tcp_session(server, 0);
6d5786a3 2581 free_xid(xid);
36988c76
JL
2582 return ses;
2583 }
2584
f96637be 2585 cifs_dbg(FYI, "Existing smb sess not found\n");
36988c76
JL
2586 ses = sesInfoAlloc();
2587 if (ses == NULL)
2588 goto get_ses_fail;
2589
2590 /* new SMB session uses our server ref */
2591 ses->server = server;
a9f1b85e
PS
2592 if (server->dstaddr.ss_family == AF_INET6)
2593 sprintf(ses->serverName, "%pI6", &addr6->sin6_addr);
36988c76 2594 else
a9f1b85e 2595 sprintf(ses->serverName, "%pI4", &addr->sin_addr);
36988c76 2596
8727c8a8
SF
2597 if (volume_info->username) {
2598 ses->user_name = kstrdup(volume_info->username, GFP_KERNEL);
2599 if (!ses->user_name)
2600 goto get_ses_fail;
2601 }
36988c76
JL
2602
2603 /* volume_info->password freed at unmount */
2604 if (volume_info->password) {
2605 ses->password = kstrdup(volume_info->password, GFP_KERNEL);
2606 if (!ses->password)
2607 goto get_ses_fail;
2608 }
2609 if (volume_info->domainname) {
d3686d54
SP
2610 ses->domainName = kstrdup(volume_info->domainname, GFP_KERNEL);
2611 if (!ses->domainName)
2612 goto get_ses_fail;
36988c76 2613 }
39566443
GP
2614 if (volume_info->domainauto)
2615 ses->domainAuto = volume_info->domainauto;
3e4b3e1f 2616 ses->cred_uid = volume_info->cred_uid;
36988c76 2617 ses->linux_uid = volume_info->linux_uid;
d9b94201 2618
28e11bd8
JL
2619 ses->sectype = volume_info->sectype;
2620 ses->sign = volume_info->sign;
36988c76
JL
2621
2622 mutex_lock(&ses->session_mutex);
198b5682
JL
2623 rc = cifs_negotiate_protocol(xid, ses);
2624 if (!rc)
2625 rc = cifs_setup_session(xid, ses, volume_info->local_nls);
36988c76 2626 mutex_unlock(&ses->session_mutex);
c8e56f1f 2627 if (rc)
36988c76
JL
2628 goto get_ses_fail;
2629
2630 /* success, put it on the list */
3f9bcca7 2631 spin_lock(&cifs_tcp_ses_lock);
36988c76 2632 list_add(&ses->smb_ses_list, &server->smb_ses_list);
3f9bcca7 2633 spin_unlock(&cifs_tcp_ses_lock);
36988c76 2634
6d5786a3 2635 free_xid(xid);
36988c76
JL
2636 return ses;
2637
2638get_ses_fail:
2639 sesInfoFree(ses);
6d5786a3 2640 free_xid(xid);
36988c76
JL
2641 return ERR_PTR(rc);
2642}
2643
ae6f8dd4 2644static int match_tcon(struct cifs_tcon *tcon, struct smb_vol *volume_info)
37bb04e5
PS
2645{
2646 if (tcon->tidStatus == CifsExiting)
2647 return 0;
ae6f8dd4 2648 if (strncmp(tcon->treeName, volume_info->UNC, MAX_TREE_SIZE))
37bb04e5 2649 return 0;
ae6f8dd4
PS
2650 if (tcon->seal != volume_info->seal)
2651 return 0;
2652#ifdef CONFIG_CIFS_SMB2
2653 if (tcon->snapshot_time != volume_info->snapshot_time)
2654 return 0;
2655#endif /* CONFIG_CIFS_SMB2 */
37bb04e5
PS
2656 return 1;
2657}
2658
96daf2b0 2659static struct cifs_tcon *
8b217fe7 2660cifs_find_tcon(struct cifs_ses *ses, struct smb_vol *volume_info)
f1987b44
JL
2661{
2662 struct list_head *tmp;
96daf2b0 2663 struct cifs_tcon *tcon;
f1987b44 2664
3f9bcca7 2665 spin_lock(&cifs_tcp_ses_lock);
f1987b44 2666 list_for_each(tmp, &ses->tcon_list) {
96daf2b0 2667 tcon = list_entry(tmp, struct cifs_tcon, tcon_list);
ae6f8dd4 2668 if (!match_tcon(tcon, volume_info))
f1987b44 2669 continue;
f1987b44 2670 ++tcon->tc_count;
3f9bcca7 2671 spin_unlock(&cifs_tcp_ses_lock);
dea570e0 2672 return tcon;
1da177e4 2673 }
3f9bcca7 2674 spin_unlock(&cifs_tcp_ses_lock);
1da177e4
LT
2675 return NULL;
2676}
2677
53e0e11e 2678void
96daf2b0 2679cifs_put_tcon(struct cifs_tcon *tcon)
f1987b44 2680{
2e6e02ab 2681 unsigned int xid;
96daf2b0 2682 struct cifs_ses *ses = tcon->ses;
f1987b44 2683
f96637be 2684 cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count);
3f9bcca7 2685 spin_lock(&cifs_tcp_ses_lock);
f1987b44 2686 if (--tcon->tc_count > 0) {
3f9bcca7 2687 spin_unlock(&cifs_tcp_ses_lock);
f1987b44
JL
2688 return;
2689 }
2690
2691 list_del_init(&tcon->tcon_list);
3f9bcca7 2692 spin_unlock(&cifs_tcp_ses_lock);
f1987b44 2693
6d5786a3 2694 xid = get_xid();
2e6e02ab
PS
2695 if (ses->server->ops->tree_disconnect)
2696 ses->server->ops->tree_disconnect(xid, tcon);
6d5786a3 2697 _free_xid(xid);
f1987b44 2698
d03382ce 2699 cifs_fscache_release_super_cookie(tcon);
9f841593 2700 tconInfoFree(tcon);
f1987b44
JL
2701 cifs_put_smb_ses(ses);
2702}
2703
96daf2b0
SF
2704static struct cifs_tcon *
2705cifs_get_tcon(struct cifs_ses *ses, struct smb_vol *volume_info)
d00c28de
JL
2706{
2707 int rc, xid;
96daf2b0 2708 struct cifs_tcon *tcon;
d00c28de 2709
8b217fe7 2710 tcon = cifs_find_tcon(ses, volume_info);
d00c28de 2711 if (tcon) {
f96637be 2712 cifs_dbg(FYI, "Found match on UNC path\n");
d00c28de
JL
2713 /* existing tcon already has a reference */
2714 cifs_put_smb_ses(ses);
d00c28de
JL
2715 return tcon;
2716 }
2717
2e6e02ab
PS
2718 if (!ses->server->ops->tree_connect) {
2719 rc = -ENOSYS;
2720 goto out_fail;
2721 }
2722
d00c28de
JL
2723 tcon = tconInfoAlloc();
2724 if (tcon == NULL) {
2725 rc = -ENOMEM;
2726 goto out_fail;
2727 }
2728
8b217fe7
SF
2729 if (volume_info->snapshot_time) {
2730#ifdef CONFIG_CIFS_SMB2
2731 if (ses->server->vals->protocol_id == 0) {
2732 cifs_dbg(VFS,
2733 "Use SMB2 or later for snapshot mount option\n");
2734 rc = -EOPNOTSUPP;
2735 goto out_fail;
2736 } else
2737 tcon->snapshot_time = volume_info->snapshot_time;
2738#else
2739 cifs_dbg(VFS, "Snapshot mount option requires SMB2 support\n");
2740 rc = -EOPNOTSUPP;
2741 goto out_fail;
2742#endif /* CONFIG_CIFS_SMB2 */
2743 }
2744
d00c28de
JL
2745 tcon->ses = ses;
2746 if (volume_info->password) {
2747 tcon->password = kstrdup(volume_info->password, GFP_KERNEL);
2748 if (!tcon->password) {
2749 rc = -ENOMEM;
2750 goto out_fail;
2751 }
2752 }
2753
2e6e02ab
PS
2754 /*
2755 * BB Do we need to wrap session_mutex around this TCon call and Unix
2756 * SetFS as we do on SessSetup and reconnect?
2757 */
6d5786a3 2758 xid = get_xid();
2e6e02ab
PS
2759 rc = ses->server->ops->tree_connect(xid, ses, volume_info->UNC, tcon,
2760 volume_info->local_nls);
6d5786a3 2761 free_xid(xid);
f96637be 2762 cifs_dbg(FYI, "Tcon rc = %d\n", rc);
d00c28de
JL
2763 if (rc)
2764 goto out_fail;
2765
2766 if (volume_info->nodfs) {
2767 tcon->Flags &= ~SMB_SHARE_IS_IN_DFS;
f96637be 2768 cifs_dbg(FYI, "DFS disabled (%d)\n", tcon->Flags);
d00c28de 2769 }
b618f001
SF
2770 tcon->use_persistent = false;
2771 /* check if SMB2 or later, CIFS does not support persistent handles */
2772 if (volume_info->persistent) {
2773 if (ses->server->vals->protocol_id == 0) {
2774 cifs_dbg(VFS,
2775 "SMB3 or later required for persistent handles\n");
2776 rc = -EOPNOTSUPP;
2777 goto out_fail;
592fafe6 2778#ifdef CONFIG_CIFS_SMB2
b618f001
SF
2779 } else if (ses->server->capabilities &
2780 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
2781 tcon->use_persistent = true;
2782 else /* persistent handles requested but not supported */ {
2783 cifs_dbg(VFS,
2784 "Persistent handles not supported on share\n");
2785 rc = -EOPNOTSUPP;
2786 goto out_fail;
592fafe6 2787#endif /* CONFIG_CIFS_SMB2 */
b618f001 2788 }
592fafe6 2789#ifdef CONFIG_CIFS_SMB2
b618f001
SF
2790 } else if ((tcon->capabilities & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY)
2791 && (ses->server->capabilities & SMB2_GLOBAL_CAP_PERSISTENT_HANDLES)
2792 && (volume_info->nopersistent == false)) {
2793 cifs_dbg(FYI, "enabling persistent handles\n");
2794 tcon->use_persistent = true;
592fafe6
SF
2795#endif /* CONFIG_CIFS_SMB2 */
2796 } else if (volume_info->resilient) {
2797 if (ses->server->vals->protocol_id == 0) {
2798 cifs_dbg(VFS,
2799 "SMB2.1 or later required for resilient handles\n");
2800 rc = -EOPNOTSUPP;
2801 goto out_fail;
2802 }
2803 tcon->use_resilient = true;
b618f001
SF
2804 }
2805
ae6f8dd4
PS
2806 if (volume_info->seal) {
2807 if (ses->server->vals->protocol_id == 0) {
2808 cifs_dbg(VFS,
2809 "SMB3 or later required for encryption\n");
2810 rc = -EOPNOTSUPP;
2811 goto out_fail;
2812#ifdef CONFIG_CIFS_SMB2
2813 } else if (tcon->ses->server->capabilities &
2814 SMB2_GLOBAL_CAP_ENCRYPTION)
2815 tcon->seal = true;
2816 else {
2817 cifs_dbg(VFS, "Encryption is not supported on share\n");
2818 rc = -EOPNOTSUPP;
2819 goto out_fail;
2820#endif /* CONFIG_CIFS_SMB2 */
2821 }
2822 }
2823
2e6e02ab
PS
2824 /*
2825 * We can have only one retry value for a connection to a share so for
2826 * resources mounted more than once to the same server share the last
2827 * value passed in for the retry flag is used.
2828 */
d00c28de
JL
2829 tcon->retry = volume_info->retry;
2830 tcon->nocase = volume_info->nocase;
2831 tcon->local_lease = volume_info->local_lease;
233839b1 2832 INIT_LIST_HEAD(&tcon->pending_opens);
d00c28de 2833
3f9bcca7 2834 spin_lock(&cifs_tcp_ses_lock);
d00c28de 2835 list_add(&tcon->tcon_list, &ses->tcon_list);
3f9bcca7 2836 spin_unlock(&cifs_tcp_ses_lock);
d00c28de 2837
d03382ce
SJ
2838 cifs_fscache_get_super_cookie(tcon);
2839
d00c28de
JL
2840 return tcon;
2841
2842out_fail:
2843 tconInfoFree(tcon);
2844 return ERR_PTR(rc);
2845}
2846
9d002df4
JL
2847void
2848cifs_put_tlink(struct tcon_link *tlink)
2849{
2850 if (!tlink || IS_ERR(tlink))
2851 return;
2852
2853 if (!atomic_dec_and_test(&tlink->tl_count) ||
2854 test_bit(TCON_LINK_IN_TREE, &tlink->tl_flags)) {
2855 tlink->tl_time = jiffies;
2856 return;
2857 }
2858
2859 if (!IS_ERR(tlink_tcon(tlink)))
2860 cifs_put_tcon(tlink_tcon(tlink));
2861 kfree(tlink);
2862 return;
2863}
d00c28de 2864
25c7f41e 2865static inline struct tcon_link *
cd51875d
PS
2866cifs_sb_master_tlink(struct cifs_sb_info *cifs_sb)
2867{
2868 return cifs_sb->master_tlink;
2869}
25c7f41e
PS
2870
2871static int
2872compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2873{
2874 struct cifs_sb_info *old = CIFS_SB(sb);
2875 struct cifs_sb_info *new = mnt_data->cifs_sb;
2876
2877 if ((sb->s_flags & CIFS_MS_MASK) != (mnt_data->flags & CIFS_MS_MASK))
2878 return 0;
2879
2880 if ((old->mnt_cifs_flags & CIFS_MOUNT_MASK) !=
2881 (new->mnt_cifs_flags & CIFS_MOUNT_MASK))
2882 return 0;
2883
25c7f41e 2884 /*
5eba8ab3
JL
2885 * We want to share sb only if we don't specify an r/wsize or
2886 * specified r/wsize is greater than or equal to existing one.
25c7f41e
PS
2887 */
2888 if (new->wsize && new->wsize < old->wsize)
2889 return 0;
2890
5eba8ab3
JL
2891 if (new->rsize && new->rsize < old->rsize)
2892 return 0;
2893
1f68233c 2894 if (!uid_eq(old->mnt_uid, new->mnt_uid) || !gid_eq(old->mnt_gid, new->mnt_gid))
25c7f41e
PS
2895 return 0;
2896
2897 if (old->mnt_file_mode != new->mnt_file_mode ||
2898 old->mnt_dir_mode != new->mnt_dir_mode)
2899 return 0;
2900
2901 if (strcmp(old->local_nls->charset, new->local_nls->charset))
2902 return 0;
2903
2904 if (old->actimeo != new->actimeo)
2905 return 0;
2906
2907 return 1;
2908}
2909
c1d8b24d
SP
2910static int
2911match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2912{
2913 struct cifs_sb_info *old = CIFS_SB(sb);
2914 struct cifs_sb_info *new = mnt_data->cifs_sb;
cd8c4296
SP
2915 bool old_set = old->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH;
2916 bool new_set = new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH;
c1d8b24d 2917
cd8c4296 2918 if (old_set && new_set && !strcmp(new->prepath, old->prepath))
c1d8b24d 2919 return 1;
cd8c4296
SP
2920 else if (!old_set && !new_set)
2921 return 1;
2922
c1d8b24d
SP
2923 return 0;
2924}
2925
25c7f41e
PS
2926int
2927cifs_match_super(struct super_block *sb, void *data)
2928{
2929 struct cifs_mnt_data *mnt_data = (struct cifs_mnt_data *)data;
2930 struct smb_vol *volume_info;
2931 struct cifs_sb_info *cifs_sb;
2932 struct TCP_Server_Info *tcp_srv;
96daf2b0
SF
2933 struct cifs_ses *ses;
2934 struct cifs_tcon *tcon;
25c7f41e 2935 struct tcon_link *tlink;
25c7f41e
PS
2936 int rc = 0;
2937
25c7f41e
PS
2938 spin_lock(&cifs_tcp_ses_lock);
2939 cifs_sb = CIFS_SB(sb);
2940 tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
2941 if (IS_ERR(tlink)) {
2942 spin_unlock(&cifs_tcp_ses_lock);
2943 return rc;
2944 }
2945 tcon = tlink_tcon(tlink);
2946 ses = tcon->ses;
2947 tcp_srv = ses->server;
2948
2949 volume_info = mnt_data->vol;
2950
9fa114f7 2951 if (!match_server(tcp_srv, volume_info) ||
25c7f41e 2952 !match_session(ses, volume_info) ||
ae6f8dd4 2953 !match_tcon(tcon, volume_info) ||
c1d8b24d 2954 !match_prepath(sb, mnt_data)) {
25c7f41e
PS
2955 rc = 0;
2956 goto out;
2957 }
2958
2959 rc = compare_mount_options(sb, mnt_data);
2960out:
25c7f41e 2961 spin_unlock(&cifs_tcp_ses_lock);
f484b5d0 2962 cifs_put_tlink(tlink);
25c7f41e
PS
2963 return rc;
2964}
2965
1da177e4 2966int
b669f33c 2967get_dfs_path(const unsigned int xid, struct cifs_ses *ses, const char *old_path,
2e6e02ab
PS
2968 const struct nls_table *nls_codepage, unsigned int *num_referrals,
2969 struct dfs_info3_param **referrals, int remap)
1da177e4
LT
2970{
2971 char *temp_unc;
2972 int rc = 0;
2973
b669f33c 2974 if (!ses->server->ops->tree_connect || !ses->server->ops->get_dfs_refer)
2e6e02ab
PS
2975 return -ENOSYS;
2976
2977 *num_referrals = 0;
2978 *referrals = NULL;
1da177e4 2979
2e6e02ab 2980 if (ses->ipc_tid == 0) {
1da177e4 2981 temp_unc = kmalloc(2 /* for slashes */ +
2e6e02ab
PS
2982 strnlen(ses->serverName, SERVER_NAME_LEN_WITH_NULL * 2)
2983 + 1 + 4 /* slash IPC$ */ + 2, GFP_KERNEL);
1da177e4
LT
2984 if (temp_unc == NULL)
2985 return -ENOMEM;
2986 temp_unc[0] = '\\';
2987 temp_unc[1] = '\\';
2e6e02ab
PS
2988 strcpy(temp_unc + 2, ses->serverName);
2989 strcpy(temp_unc + 2 + strlen(ses->serverName), "\\IPC$");
2990 rc = ses->server->ops->tree_connect(xid, ses, temp_unc, NULL,
2991 nls_codepage);
f96637be 2992 cifs_dbg(FYI, "Tcon rc = %d ipc_tid = %d\n", rc, ses->ipc_tid);
1da177e4
LT
2993 kfree(temp_unc);
2994 }
2995 if (rc == 0)
b669f33c
PS
2996 rc = ses->server->ops->get_dfs_refer(xid, ses, old_path,
2997 referrals, num_referrals,
2998 nls_codepage, remap);
2e6e02ab
PS
2999 /*
3000 * BB - map targetUNCs to dfs_info3 structures, here or in
b669f33c 3001 * ses->server->ops->get_dfs_refer.
2e6e02ab 3002 */
1da177e4
LT
3003
3004 return rc;
3005}
3006
09e50d55
JL
3007#ifdef CONFIG_DEBUG_LOCK_ALLOC
3008static struct lock_class_key cifs_key[2];
3009static struct lock_class_key cifs_slock_key[2];
3010
3011static inline void
3012cifs_reclassify_socket4(struct socket *sock)
3013{
3014 struct sock *sk = sock->sk;
fafc4e1e 3015 BUG_ON(!sock_allow_reclassification(sk));
09e50d55
JL
3016 sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS",
3017 &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]);
3018}
3019
3020static inline void
3021cifs_reclassify_socket6(struct socket *sock)
3022{
3023 struct sock *sk = sock->sk;
fafc4e1e 3024 BUG_ON(!sock_allow_reclassification(sk));
09e50d55
JL
3025 sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS",
3026 &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]);
3027}
3028#else
3029static inline void
3030cifs_reclassify_socket4(struct socket *sock)
3031{
3032}
3033
3034static inline void
3035cifs_reclassify_socket6(struct socket *sock)
3036{
3037}
3038#endif
3039
1da177e4 3040/* See RFC1001 section 14 on representation of Netbios names */
50c2f753 3041static void rfc1002mangle(char *target, char *source, unsigned int length)
1da177e4 3042{
50c2f753 3043 unsigned int i, j;
1da177e4 3044
50c2f753 3045 for (i = 0, j = 0; i < (length); i++) {
1da177e4
LT
3046 /* mask a nibble at a time and encode */
3047 target[j] = 'A' + (0x0F & (source[i] >> 4));
3048 target[j+1] = 'A' + (0x0F & source[i]);
50c2f753 3049 j += 2;
1da177e4
LT
3050 }
3051
3052}
3053
3eb9a889
BG
3054static int
3055bind_socket(struct TCP_Server_Info *server)
3056{
3057 int rc = 0;
3058 if (server->srcaddr.ss_family != AF_UNSPEC) {
3059 /* Bind to the specified local IP address */
3060 struct socket *socket = server->ssocket;
3061 rc = socket->ops->bind(socket,
3062 (struct sockaddr *) &server->srcaddr,
3063 sizeof(server->srcaddr));
3064 if (rc < 0) {
3065 struct sockaddr_in *saddr4;
3066 struct sockaddr_in6 *saddr6;
3067 saddr4 = (struct sockaddr_in *)&server->srcaddr;
3068 saddr6 = (struct sockaddr_in6 *)&server->srcaddr;
3069 if (saddr6->sin6_family == AF_INET6)
f96637be
JP
3070 cifs_dbg(VFS, "Failed to bind to: %pI6c, error: %d\n",
3071 &saddr6->sin6_addr, rc);
3eb9a889 3072 else
f96637be
JP
3073 cifs_dbg(VFS, "Failed to bind to: %pI4, error: %d\n",
3074 &saddr4->sin_addr.s_addr, rc);
3eb9a889
BG
3075 }
3076 }
3077 return rc;
3078}
1da177e4
LT
3079
3080static int
a9f1b85e 3081ip_rfc1001_connect(struct TCP_Server_Info *server)
1da177e4
LT
3082{
3083 int rc = 0;
a9f1b85e
PS
3084 /*
3085 * some servers require RFC1001 sessinit before sending
3086 * negprot - BB check reconnection in case where second
3087 * sessinit is sent but no second negprot
3088 */
3089 struct rfc1002_session_packet *ses_init_buf;
3090 struct smb_hdr *smb_buf;
3091 ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet),
3092 GFP_KERNEL);
3093 if (ses_init_buf) {
3094 ses_init_buf->trailer.session_req.called_len = 32;
3095
997152f6 3096 if (server->server_RFC1001_name[0] != 0)
a9f1b85e
PS
3097 rfc1002mangle(ses_init_buf->trailer.
3098 session_req.called_name,
3099 server->server_RFC1001_name,
3100 RFC1001_NAME_LEN_WITH_NULL);
3101 else
3102 rfc1002mangle(ses_init_buf->trailer.
3103 session_req.called_name,
3104 DEFAULT_CIFS_CALLED_NAME,
3105 RFC1001_NAME_LEN_WITH_NULL);
3106
3107 ses_init_buf->trailer.session_req.calling_len = 32;
3108
3109 /*
3110 * calling name ends in null (byte 16) from old smb
3111 * convention.
3112 */
c85c35f8 3113 if (server->workstation_RFC1001_name[0] != 0)
a9f1b85e
PS
3114 rfc1002mangle(ses_init_buf->trailer.
3115 session_req.calling_name,
3116 server->workstation_RFC1001_name,
3117 RFC1001_NAME_LEN_WITH_NULL);
3118 else
3119 rfc1002mangle(ses_init_buf->trailer.
3120 session_req.calling_name,
3121 "LINUX_CIFS_CLNT",
3122 RFC1001_NAME_LEN_WITH_NULL);
3123
3124 ses_init_buf->trailer.session_req.scope1 = 0;
3125 ses_init_buf->trailer.session_req.scope2 = 0;
3126 smb_buf = (struct smb_hdr *)ses_init_buf;
3127
3128 /* sizeof RFC1002_SESSION_REQUEST with no scope */
be8e3b00 3129 smb_buf->smb_buf_length = cpu_to_be32(0x81000044);
a9f1b85e
PS
3130 rc = smb_send(server, smb_buf, 0x44);
3131 kfree(ses_init_buf);
3132 /*
3133 * RFC1001 layer in at least one server
3134 * requires very short break before negprot
3135 * presumably because not expecting negprot
3136 * to follow so fast. This is a simple
3137 * solution that works without
3138 * complicating the code and causes no
3139 * significant slowing down on mount
3140 * for everyone else
3141 */
3142 usleep_range(1000, 2000);
3143 }
3144 /*
3145 * else the negprot may still work without this
3146 * even though malloc failed
3147 */
3148
3149 return rc;
3150}
3151
3152static int
3153generic_ip_connect(struct TCP_Server_Info *server)
3154{
3155 int rc = 0;
6da97910 3156 __be16 sport;
a9f1b85e 3157 int slen, sfamily;
bcf4b106 3158 struct socket *socket = server->ssocket;
a9f1b85e
PS
3159 struct sockaddr *saddr;
3160
3161 saddr = (struct sockaddr *) &server->dstaddr;
3162
3163 if (server->dstaddr.ss_family == AF_INET6) {
3164 sport = ((struct sockaddr_in6 *) saddr)->sin6_port;
3165 slen = sizeof(struct sockaddr_in6);
3166 sfamily = AF_INET6;
3167 } else {
3168 sport = ((struct sockaddr_in *) saddr)->sin_port;
3169 slen = sizeof(struct sockaddr_in);
3170 sfamily = AF_INET;
3171 }
1da177e4 3172
bcf4b106 3173 if (socket == NULL) {
f1d0c998
RL
3174 rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM,
3175 IPPROTO_TCP, &socket, 1);
1da177e4 3176 if (rc < 0) {
f96637be 3177 cifs_dbg(VFS, "Error %d creating socket\n", rc);
a9f1b85e 3178 server->ssocket = NULL;
1da177e4 3179 return rc;
1da177e4 3180 }
bcf4b106
JL
3181
3182 /* BB other socket options to set KEEPALIVE, NODELAY? */
f96637be 3183 cifs_dbg(FYI, "Socket created\n");
bcf4b106
JL
3184 server->ssocket = socket;
3185 socket->sk->sk_allocation = GFP_NOFS;
a9f1b85e
PS
3186 if (sfamily == AF_INET6)
3187 cifs_reclassify_socket6(socket);
3188 else
3189 cifs_reclassify_socket4(socket);
1da177e4
LT
3190 }
3191
3eb9a889
BG
3192 rc = bind_socket(server);
3193 if (rc < 0)
3194 return rc;
3195
bcf4b106
JL
3196 /*
3197 * Eventually check for other socket options to change from
a9f1b85e
PS
3198 * the default. sock_setsockopt not used because it expects
3199 * user space buffer
bcf4b106
JL
3200 */
3201 socket->sk->sk_rcvtimeo = 7 * HZ;
da505c38 3202 socket->sk->sk_sndtimeo = 5 * HZ;
edf1ae40 3203
b387eaeb 3204 /* make the bufsizes depend on wsize/rsize and max requests */
bcf4b106
JL
3205 if (server->noautotune) {
3206 if (socket->sk->sk_sndbuf < (200 * 1024))
3207 socket->sk->sk_sndbuf = 200 * 1024;
3208 if (socket->sk->sk_rcvbuf < (140 * 1024))
3209 socket->sk->sk_rcvbuf = 140 * 1024;
edf1ae40 3210 }
1da177e4 3211
6a5fa236 3212 if (server->tcp_nodelay) {
a9f1b85e 3213 int val = 1;
6a5fa236
SF
3214 rc = kernel_setsockopt(socket, SOL_TCP, TCP_NODELAY,
3215 (char *)&val, sizeof(val));
3216 if (rc)
f96637be
JP
3217 cifs_dbg(FYI, "set TCP_NODELAY socket option error %d\n",
3218 rc);
6a5fa236
SF
3219 }
3220
f96637be 3221 cifs_dbg(FYI, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx\n",
bcf4b106 3222 socket->sk->sk_sndbuf,
b6b38f70 3223 socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo);
bcf4b106 3224
ee1b3ea9
JL
3225 rc = socket->ops->connect(socket, saddr, slen, 0);
3226 if (rc < 0) {
f96637be 3227 cifs_dbg(FYI, "Error %d connecting to server\n", rc);
ee1b3ea9
JL
3228 sock_release(socket);
3229 server->ssocket = NULL;
3230 return rc;
3231 }
3232
a9f1b85e
PS
3233 if (sport == htons(RFC1001_PORT))
3234 rc = ip_rfc1001_connect(server);
50c2f753 3235
1da177e4
LT
3236 return rc;
3237}
3238
3239static int
a9f1b85e 3240ip_connect(struct TCP_Server_Info *server)
1da177e4 3241{
6da97910 3242 __be16 *sport;
a9f1b85e
PS
3243 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
3244 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
1da177e4 3245
a9f1b85e
PS
3246 if (server->dstaddr.ss_family == AF_INET6)
3247 sport = &addr6->sin6_port;
3248 else
3249 sport = &addr->sin_port;
1da177e4 3250
a9f1b85e
PS
3251 if (*sport == 0) {
3252 int rc;
1da177e4 3253
a9f1b85e
PS
3254 /* try with 445 port at first */
3255 *sport = htons(CIFS_PORT);
3eb9a889 3256
a9f1b85e 3257 rc = generic_ip_connect(server);
1da177e4 3258 if (rc >= 0)
a9f1b85e 3259 return rc;
6a5fa236 3260
a9f1b85e
PS
3261 /* if it failed, try with 139 port */
3262 *sport = htons(RFC1001_PORT);
6a5fa236
SF
3263 }
3264
a9f1b85e 3265 return generic_ip_connect(server);
1da177e4
LT
3266}
3267
6d5786a3 3268void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon,
2c6292ae 3269 struct cifs_sb_info *cifs_sb, struct smb_vol *vol_info)
8af18971
SF
3270{
3271 /* if we are reconnecting then should we check to see if
3272 * any requested capabilities changed locally e.g. via
3273 * remount but we can not do much about it here
3274 * if they have (even if we could detect it by the following)
3275 * Perhaps we could add a backpointer to array of sb from tcon
3276 * or if we change to make all sb to same share the same
3277 * sb as NFS - then we only have one backpointer to sb.
3278 * What if we wanted to mount the server share twice once with
3279 * and once without posixacls or posix paths? */
3280 __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
50c2f753 3281
c18c842b
SF
3282 if (vol_info && vol_info->no_linux_ext) {
3283 tcon->fsUnixInfo.Capability = 0;
3284 tcon->unix_ext = 0; /* Unix Extensions disabled */
f96637be 3285 cifs_dbg(FYI, "Linux protocol extensions disabled\n");
c18c842b
SF
3286 return;
3287 } else if (vol_info)
3288 tcon->unix_ext = 1; /* Unix Extensions supported */
3289
3290 if (tcon->unix_ext == 0) {
f96637be 3291 cifs_dbg(FYI, "Unix extensions disabled so not set on reconnect\n");
c18c842b
SF
3292 return;
3293 }
50c2f753 3294
fb8c4b14 3295 if (!CIFSSMBQFSUnixInfo(xid, tcon)) {
8af18971 3296 __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
f96637be 3297 cifs_dbg(FYI, "unix caps which server supports %lld\n", cap);
8af18971
SF
3298 /* check for reconnect case in which we do not
3299 want to change the mount behavior if we can avoid it */
fb8c4b14 3300 if (vol_info == NULL) {
50c2f753 3301 /* turn off POSIX ACL and PATHNAMES if not set
8af18971
SF
3302 originally at mount time */
3303 if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0)
3304 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
11b6d645
IM
3305 if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
3306 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
f96637be 3307 cifs_dbg(VFS, "POSIXPATH support change\n");
8af18971 3308 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
11b6d645 3309 } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
f96637be
JP
3310 cifs_dbg(VFS, "possible reconnect error\n");
3311 cifs_dbg(VFS, "server disabled POSIX path support\n");
11b6d645 3312 }
8af18971 3313 }
50c2f753 3314
6848b733 3315 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
f96637be 3316 cifs_dbg(VFS, "per-share encryption not supported yet\n");
6848b733 3317
8af18971 3318 cap &= CIFS_UNIX_CAP_MASK;
75865f8c 3319 if (vol_info && vol_info->no_psx_acl)
8af18971 3320 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
75865f8c 3321 else if (CIFS_UNIX_POSIX_ACL_CAP & cap) {
f96637be 3322 cifs_dbg(FYI, "negotiated posix acl support\n");
2c6292ae
AV
3323 if (cifs_sb)
3324 cifs_sb->mnt_cifs_flags |=
3325 CIFS_MOUNT_POSIXACL;
8af18971
SF
3326 }
3327
75865f8c 3328 if (vol_info && vol_info->posix_paths == 0)
8af18971 3329 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
75865f8c 3330 else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
f96637be 3331 cifs_dbg(FYI, "negotiate posix pathnames\n");
2c6292ae
AV
3332 if (cifs_sb)
3333 cifs_sb->mnt_cifs_flags |=
8af18971
SF
3334 CIFS_MOUNT_POSIX_PATHS;
3335 }
50c2f753 3336
f96637be 3337 cifs_dbg(FYI, "Negotiate caps 0x%x\n", (int)cap);
8af18971 3338#ifdef CONFIG_CIFS_DEBUG2
75865f8c 3339 if (cap & CIFS_UNIX_FCNTL_CAP)
f96637be 3340 cifs_dbg(FYI, "FCNTL cap\n");
75865f8c 3341 if (cap & CIFS_UNIX_EXTATTR_CAP)
f96637be 3342 cifs_dbg(FYI, "EXTATTR cap\n");
75865f8c 3343 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
f96637be 3344 cifs_dbg(FYI, "POSIX path cap\n");
75865f8c 3345 if (cap & CIFS_UNIX_XATTR_CAP)
f96637be 3346 cifs_dbg(FYI, "XATTR cap\n");
75865f8c 3347 if (cap & CIFS_UNIX_POSIX_ACL_CAP)
f96637be 3348 cifs_dbg(FYI, "POSIX ACL cap\n");
75865f8c 3349 if (cap & CIFS_UNIX_LARGE_READ_CAP)
f96637be 3350 cifs_dbg(FYI, "very large read cap\n");
75865f8c 3351 if (cap & CIFS_UNIX_LARGE_WRITE_CAP)
f96637be 3352 cifs_dbg(FYI, "very large write cap\n");
6848b733 3353 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)
f96637be 3354 cifs_dbg(FYI, "transport encryption cap\n");
6848b733 3355 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
f96637be 3356 cifs_dbg(FYI, "mandatory transport encryption cap\n");
8af18971
SF
3357#endif /* CIFS_DEBUG2 */
3358 if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) {
442aa310 3359 if (vol_info == NULL) {
f96637be 3360 cifs_dbg(FYI, "resetting capabilities failed\n");
442aa310 3361 } else
f96637be 3362 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");
5a44b319 3363
8af18971
SF
3364 }
3365 }
3366}
3367
4214ebf4 3368int cifs_setup_cifs_sb(struct smb_vol *pvolume_info,
724d9f1c 3369 struct cifs_sb_info *cifs_sb)
b1c8d2b4 3370{
2de970ff
JL
3371 INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks);
3372
2ced6f69
AV
3373 spin_lock_init(&cifs_sb->tlink_tree_lock);
3374 cifs_sb->tlink_tree = RB_ROOT;
3375
25c7f41e 3376 /*
5eba8ab3
JL
3377 * Temporarily set r/wsize for matching superblock. If we end up using
3378 * new sb then client will later negotiate it downward if needed.
25c7f41e 3379 */
5eba8ab3 3380 cifs_sb->rsize = pvolume_info->rsize;
25c7f41e
PS
3381 cifs_sb->wsize = pvolume_info->wsize;
3382
3b795210
SF
3383 cifs_sb->mnt_uid = pvolume_info->linux_uid;
3384 cifs_sb->mnt_gid = pvolume_info->linux_gid;
3385 cifs_sb->mnt_file_mode = pvolume_info->file_mode;
3386 cifs_sb->mnt_dir_mode = pvolume_info->dir_mode;
f96637be
JP
3387 cifs_dbg(FYI, "file mode: 0x%hx dir mode: 0x%hx\n",
3388 cifs_sb->mnt_file_mode, cifs_sb->mnt_dir_mode);
3b795210 3389
6d20e840 3390 cifs_sb->actimeo = pvolume_info->actimeo;
724d9f1c 3391 cifs_sb->local_nls = pvolume_info->local_nls;
6d20e840 3392
3b795210
SF
3393 if (pvolume_info->noperm)
3394 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_PERM;
3395 if (pvolume_info->setuids)
3396 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SET_UID;
95932655
SF
3397 if (pvolume_info->setuidfromacl)
3398 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UID_FROM_ACL;
3b795210
SF
3399 if (pvolume_info->server_ino)
3400 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SERVER_INUM;
3401 if (pvolume_info->remap)
2baa2682
SF
3402 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SFM_CHR;
3403 if (pvolume_info->sfu_remap)
3b795210
SF
3404 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SPECIAL_CHR;
3405 if (pvolume_info->no_xattr)
3406 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_XATTR;
3407 if (pvolume_info->sfu_emul)
3408 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UNX_EMUL;
3409 if (pvolume_info->nobrl)
3410 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_BRL;
be652445 3411 if (pvolume_info->nostrictsync)
4717bed6 3412 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOSSYNC;
13a6e42a
SF
3413 if (pvolume_info->mand_lock)
3414 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOPOSIXBRL;
d4ffff1f
PS
3415 if (pvolume_info->rwpidforward)
3416 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RWPIDFORWARD;
3b795210
SF
3417 if (pvolume_info->cifs_acl)
3418 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_ACL;
3c7c87fd 3419 if (pvolume_info->backupuid_specified) {
3d3ea8e6 3420 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPUID;
3c7c87fd
SP
3421 cifs_sb->mnt_backupuid = pvolume_info->backupuid;
3422 }
3423 if (pvolume_info->backupgid_specified) {
3d3ea8e6 3424 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPGID;
3c7c87fd
SP
3425 cifs_sb->mnt_backupgid = pvolume_info->backupgid;
3426 }
3b795210
SF
3427 if (pvolume_info->override_uid)
3428 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_UID;
3429 if (pvolume_info->override_gid)
3430 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_GID;
3431 if (pvolume_info->dynperm)
3432 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DYNPERM;
fa1df75d
SJ
3433 if (pvolume_info->fsc)
3434 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_FSCACHE;
0eb8a132
JL
3435 if (pvolume_info->multiuser)
3436 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_MULTIUSER |
3437 CIFS_MOUNT_NO_PERM);
d39454ff
PS
3438 if (pvolume_info->strict_io)
3439 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_STRICT_IO;
3b795210 3440 if (pvolume_info->direct_io) {
f96637be 3441 cifs_dbg(FYI, "mounting share using direct i/o\n");
3b795210
SF
3442 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DIRECT_IO;
3443 }
736a3320
SM
3444 if (pvolume_info->mfsymlinks) {
3445 if (pvolume_info->sfu_emul) {
db8b631d
SF
3446 /*
3447 * Our SFU ("Services for Unix" emulation does not allow
3448 * creating symlinks but does allow reading existing SFU
3449 * symlinks (it does allow both creating and reading SFU
3450 * style mknod and FIFOs though). When "mfsymlinks" and
3451 * "sfu" are both enabled at the same time, it allows
3452 * reading both types of symlinks, but will only create
3453 * them with mfsymlinks format. This allows better
3454 * Apple compatibility (probably better for Samba too)
3455 * while still recognizing old Windows style symlinks.
3456 */
3457 cifs_dbg(VFS, "mount options mfsymlinks and sfu both enabled\n");
736a3320 3458 }
db8b631d 3459 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MF_SYMLINKS;
736a3320 3460 }
3b795210
SF
3461
3462 if ((pvolume_info->cifs_acl) && (pvolume_info->dynperm))
f96637be 3463 cifs_dbg(VFS, "mount option dynperm ignored if cifsacl mount option supported\n");
4214ebf4
SP
3464
3465 if (pvolume_info->prepath) {
3466 cifs_sb->prepath = kstrdup(pvolume_info->prepath, GFP_KERNEL);
3467 if (cifs_sb->prepath == NULL)
3468 return -ENOMEM;
3469 }
3470
3471 return 0;
b1c8d2b4
JL
3472}
3473
b9bce2e9
JL
3474static void
3475cleanup_volume_info_contents(struct smb_vol *volume_info)
1bfe73c2 3476{
b946845a 3477 kfree(volume_info->username);
1bfe73c2 3478 kzfree(volume_info->password);
95c75454 3479 kfree(volume_info->UNC);
b946845a
SF
3480 kfree(volume_info->domainname);
3481 kfree(volume_info->iocharset);
1bfe73c2 3482 kfree(volume_info->prepath);
b9bce2e9
JL
3483}
3484
3485void
3486cifs_cleanup_volume_info(struct smb_vol *volume_info)
3487{
3488 if (!volume_info)
3489 return;
3490 cleanup_volume_info_contents(volume_info);
1bfe73c2 3491 kfree(volume_info);
1bfe73c2
IM
3492}
3493
b9bce2e9 3494
2d6d589d 3495#ifdef CONFIG_CIFS_DFS_UPCALL
6d3ea7e4
SF
3496/*
3497 * cifs_build_path_to_root returns full path to root when we do not have an
3498 * exiting connection (tcon)
3499 */
1bfe73c2 3500static char *
b2a0fa15 3501build_unc_path_to_root(const struct smb_vol *vol,
1bfe73c2
IM
3502 const struct cifs_sb_info *cifs_sb)
3503{
b2a0fa15 3504 char *full_path, *pos;
839db3d1 3505 unsigned int pplen = vol->prepath ? strlen(vol->prepath) + 1 : 0;
b2a0fa15 3506 unsigned int unc_len = strnlen(vol->UNC, MAX_TREE_SIZE + 1);
1bfe73c2 3507
b2a0fa15 3508 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL);
1bfe73c2
IM
3509 if (full_path == NULL)
3510 return ERR_PTR(-ENOMEM);
3511
b2a0fa15
JL
3512 strncpy(full_path, vol->UNC, unc_len);
3513 pos = full_path + unc_len;
3514
3515 if (pplen) {
1fc29bac
JL
3516 *pos = CIFS_DIR_SEP(cifs_sb);
3517 strncpy(pos + 1, vol->prepath, pplen);
b2a0fa15
JL
3518 pos += pplen;
3519 }
3520
3521 *pos = '\0'; /* add trailing null */
f87d39d9 3522 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
f96637be 3523 cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path);
1bfe73c2
IM
3524 return full_path;
3525}
dd613945
SF
3526
3527/*
3528 * Perform a dfs referral query for a share and (optionally) prefix
3529 *
046462ab
SF
3530 * If a referral is found, cifs_sb->mountdata will be (re-)allocated
3531 * to a string containing updated options for the submount. Otherwise it
3532 * will be left untouched.
dd613945
SF
3533 *
3534 * Returns the rc from get_dfs_path to the caller, which can be used to
3535 * determine whether there were referrals.
3536 */
3537static int
b669f33c 3538expand_dfs_referral(const unsigned int xid, struct cifs_ses *ses,
dd613945 3539 struct smb_vol *volume_info, struct cifs_sb_info *cifs_sb,
046462ab 3540 int check_prefix)
dd613945
SF
3541{
3542 int rc;
3543 unsigned int num_referrals = 0;
3544 struct dfs_info3_param *referrals = NULL;
3545 char *full_path = NULL, *ref_path = NULL, *mdata = NULL;
3546
3547 full_path = build_unc_path_to_root(volume_info, cifs_sb);
3548 if (IS_ERR(full_path))
3549 return PTR_ERR(full_path);
3550
3551 /* For DFS paths, skip the first '\' of the UNC */
3552 ref_path = check_prefix ? full_path + 1 : volume_info->UNC + 1;
3553
b669f33c 3554 rc = get_dfs_path(xid, ses, ref_path, cifs_sb->local_nls,
2baa2682 3555 &num_referrals, &referrals, cifs_remap(cifs_sb));
dd613945
SF
3556
3557 if (!rc && num_referrals > 0) {
3558 char *fake_devname = NULL;
3559
3560 mdata = cifs_compose_mount_options(cifs_sb->mountdata,
3561 full_path + 1, referrals,
3562 &fake_devname);
3563
3564 free_dfs_info_array(referrals, num_referrals);
046462ab 3565
dd613945
SF
3566 if (IS_ERR(mdata)) {
3567 rc = PTR_ERR(mdata);
3568 mdata = NULL;
b9bce2e9
JL
3569 } else {
3570 cleanup_volume_info_contents(volume_info);
b9bce2e9
JL
3571 rc = cifs_setup_volume_info(volume_info, mdata,
3572 fake_devname);
dd613945 3573 }
b9bce2e9
JL
3574 kfree(fake_devname);
3575 kfree(cifs_sb->mountdata);
046462ab 3576 cifs_sb->mountdata = mdata;
dd613945
SF
3577 }
3578 kfree(full_path);
3579 return rc;
3580}
2d6d589d 3581#endif
1bfe73c2 3582
04db79b0
JL
3583static int
3584cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data,
3585 const char *devname)
1da177e4 3586{
724d9f1c 3587 int rc = 0;
1da177e4 3588
04db79b0
JL
3589 if (cifs_parse_mount_options(mount_data, devname, volume_info))
3590 return -EINVAL;
1da177e4 3591
7586b765 3592 if (volume_info->nullauth) {
f96637be 3593 cifs_dbg(FYI, "Anonymous login\n");
04febabc
JL
3594 kfree(volume_info->username);
3595 volume_info->username = NULL;
7586b765 3596 } else if (volume_info->username) {
1da177e4 3597 /* BB fixme parse for domain name here */
f96637be 3598 cifs_dbg(FYI, "Username: %s\n", volume_info->username);
1da177e4 3599 } else {
f96637be 3600 cifs_dbg(VFS, "No username specified\n");
50c2f753
SF
3601 /* In userspace mount helper we can get user name from alternate
3602 locations such as env variables and files on disk */
04db79b0 3603 return -EINVAL;
1da177e4
LT
3604 }
3605
1da177e4 3606 /* this is needed for ASCII cp to Unicode converts */
7586b765 3607 if (volume_info->iocharset == NULL) {
a5fc4ce0
JL
3608 /* load_nls_default cannot return null */
3609 volume_info->local_nls = load_nls_default();
1da177e4 3610 } else {
a5fc4ce0
JL
3611 volume_info->local_nls = load_nls(volume_info->iocharset);
3612 if (volume_info->local_nls == NULL) {
f96637be 3613 cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n",
b6b38f70 3614 volume_info->iocharset);
04db79b0 3615 return -ELIBACC;
1da177e4
LT
3616 }
3617 }
724d9f1c 3618
724d9f1c
PS
3619 return rc;
3620}
3621
04db79b0
JL
3622struct smb_vol *
3623cifs_get_volume_info(char *mount_data, const char *devname)
3624{
3625 int rc;
3626 struct smb_vol *volume_info;
3627
6ee9542a 3628 volume_info = kmalloc(sizeof(struct smb_vol), GFP_KERNEL);
04db79b0
JL
3629 if (!volume_info)
3630 return ERR_PTR(-ENOMEM);
3631
3632 rc = cifs_setup_volume_info(volume_info, mount_data, devname);
3633 if (rc) {
3634 cifs_cleanup_volume_info(volume_info);
3635 volume_info = ERR_PTR(rc);
3636 }
3637
3638 return volume_info;
3639}
3640
a6b5058f
AA
3641static int
3642cifs_are_all_path_components_accessible(struct TCP_Server_Info *server,
3643 unsigned int xid,
3644 struct cifs_tcon *tcon,
3645 struct cifs_sb_info *cifs_sb,
3646 char *full_path)
3647{
3648 int rc;
3649 char *s;
3650 char sep, tmp;
3651
3652 sep = CIFS_DIR_SEP(cifs_sb);
3653 s = full_path;
3654
3655 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, "");
3656 while (rc == 0) {
3657 /* skip separators */
3658 while (*s == sep)
3659 s++;
3660 if (!*s)
3661 break;
3662 /* next separator */
3663 while (*s && *s != sep)
3664 s++;
3665
3666 /*
3667 * temporarily null-terminate the path at the end of
3668 * the current component
3669 */
3670 tmp = *s;
3671 *s = 0;
3672 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3673 full_path);
3674 *s = tmp;
3675 }
3676 return rc;
3677}
3678
724d9f1c 3679int
2c6292ae 3680cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *volume_info)
724d9f1c 3681{
1daaae8f 3682 int rc;
6d5786a3 3683 unsigned int xid;
af4281dc 3684 struct cifs_ses *ses;
96daf2b0 3685 struct cifs_tcon *tcon;
af4281dc 3686 struct TCP_Server_Info *server;
724d9f1c
PS
3687 char *full_path;
3688 struct tcon_link *tlink;
3689#ifdef CONFIG_CIFS_DFS_UPCALL
3690 int referral_walks_count = 0;
20547490 3691#endif
dd854466 3692
20547490 3693#ifdef CONFIG_CIFS_DFS_UPCALL
724d9f1c
PS
3694try_mount_again:
3695 /* cleanup activities if we're chasing a referral */
3696 if (referral_walks_count) {
3697 if (tcon)
3698 cifs_put_tcon(tcon);
af4281dc
PS
3699 else if (ses)
3700 cifs_put_smb_ses(ses);
724d9f1c 3701
1dfd18d0
SP
3702 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_POSIX_PATHS;
3703
6d5786a3 3704 free_xid(xid);
724d9f1c
PS
3705 }
3706#endif
1daaae8f 3707 rc = 0;
724d9f1c 3708 tcon = NULL;
af4281dc
PS
3709 ses = NULL;
3710 server = NULL;
724d9f1c
PS
3711 full_path = NULL;
3712 tlink = NULL;
3713
6d5786a3 3714 xid = get_xid();
1da177e4 3715
63c038c2 3716 /* get a reference to a tcp session */
af4281dc
PS
3717 server = cifs_get_tcp_session(volume_info);
3718 if (IS_ERR(server)) {
3719 rc = PTR_ERR(server);
63c038c2 3720 goto out;
1da177e4 3721 }
141891f4
SF
3722 if ((volume_info->max_credits < 20) ||
3723 (volume_info->max_credits > 60000))
3724 server->max_credits = SMB2_MAX_CREDITS_AVAILABLE;
3725 else
3726 server->max_credits = volume_info->max_credits;
36988c76 3727 /* get a reference to a SMB session */
af4281dc
PS
3728 ses = cifs_get_smb_ses(server, volume_info);
3729 if (IS_ERR(ses)) {
3730 rc = PTR_ERR(ses);
3731 ses = NULL;
36988c76 3732 goto mount_fail_check;
1da177e4 3733 }
50c2f753 3734
592fafe6 3735#ifdef CONFIG_CIFS_SMB2
b618f001
SF
3736 if ((volume_info->persistent == true) && ((ses->server->capabilities &
3737 SMB2_GLOBAL_CAP_PERSISTENT_HANDLES) == 0)) {
3738 cifs_dbg(VFS, "persistent handles not supported by server\n");
3739 rc = -EOPNOTSUPP;
3740 goto mount_fail_check;
3741 }
592fafe6
SF
3742#endif /* CONFIG_CIFS_SMB2*/
3743
d00c28de 3744 /* search for existing tcon to this server share */
af4281dc 3745 tcon = cifs_get_tcon(ses, volume_info);
d00c28de
JL
3746 if (IS_ERR(tcon)) {
3747 rc = PTR_ERR(tcon);
3748 tcon = NULL;
40920c2b
MS
3749 if (rc == -EACCES)
3750 goto mount_fail_check;
3751
1bfe73c2 3752 goto remote_path_check;
d00c28de 3753 }
1bfe73c2 3754
d82c2df5 3755 /* tell server which Unix caps we support */
29e20f9c 3756 if (cap_unix(tcon->ses)) {
d82c2df5
SF
3757 /* reset of caps checks mount to see if unix extensions
3758 disabled for just this mount */
2c6292ae 3759 reset_cifs_unix_caps(xid, tcon, cifs_sb, volume_info);
6848b733
SF
3760 if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) &&
3761 (le64_to_cpu(tcon->fsUnixInfo.Capability) &
3762 CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)) {
3763 rc = -EACCES;
3764 goto mount_fail_check;
3765 }
3766 } else
d82c2df5 3767 tcon->unix_ext = 0; /* server does not support them */
c18c842b 3768
af4281dc
PS
3769 /* do not care if a following call succeed - informational */
3770 if (!tcon->ipc && server->ops->qfs_tcon)
3771 server->ops->qfs_tcon(xid, tcon);
6848b733 3772
24985c53
PS
3773 cifs_sb->wsize = server->ops->negotiate_wsize(tcon, volume_info);
3774 cifs_sb->rsize = server->ops->negotiate_rsize(tcon, volume_info);
f7910cbd 3775
1bfe73c2 3776remote_path_check:
c1508ca2
SF
3777#ifdef CONFIG_CIFS_DFS_UPCALL
3778 /*
3779 * Perform an unconditional check for whether there are DFS
3780 * referrals for this path without prefix, to provide support
3781 * for DFS referrals from w2k8 servers which don't seem to respond
3782 * with PATH_NOT_COVERED to requests that include the prefix.
3783 * Chase the referral if found, otherwise continue normally.
3784 */
3785 if (referral_walks_count == 0) {
af4281dc
PS
3786 int refrc = expand_dfs_referral(xid, ses, volume_info, cifs_sb,
3787 false);
c1508ca2
SF
3788 if (!refrc) {
3789 referral_walks_count++;
3790 goto try_mount_again;
3791 }
3792 }
3793#endif
3794
f87d39d9 3795 /* check if a whole path is not remote */
70945643 3796 if (!rc && tcon) {
68889f26
PS
3797 if (!server->ops->is_path_accessible) {
3798 rc = -ENOSYS;
3799 goto mount_fail_check;
3800 }
6d3ea7e4
SF
3801 /*
3802 * cifs_build_path_to_root works only when we have a valid tcon
3803 */
374402a2
SP
3804 full_path = cifs_build_path_to_root(volume_info, cifs_sb, tcon,
3805 tcon->Flags & SMB_SHARE_IS_IN_DFS);
e4cce94c
IM
3806 if (full_path == NULL) {
3807 rc = -ENOMEM;
3808 goto mount_fail_check;
3809 }
68889f26
PS
3810 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3811 full_path);
03ceace5 3812 if (rc != 0 && rc != -EREMOTE) {
e4cce94c
IM
3813 kfree(full_path);
3814 goto mount_fail_check;
3815 }
a6b5058f 3816
d171356f
SP
3817 if (rc != -EREMOTE) {
3818 rc = cifs_are_all_path_components_accessible(server,
a6b5058f
AA
3819 xid, tcon, cifs_sb,
3820 full_path);
d171356f
SP
3821 if (rc != 0) {
3822 cifs_dbg(VFS, "cannot query dirs between root and final path, "
3823 "enabling CIFS_MOUNT_USE_PREFIX_PATH\n");
3824 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3825 rc = 0;
3826 }
a6b5058f 3827 }
e4cce94c
IM
3828 kfree(full_path);
3829 }
3830
1bfe73c2
IM
3831 /* get referral if needed */
3832 if (rc == -EREMOTE) {
d036f50f 3833#ifdef CONFIG_CIFS_DFS_UPCALL
5c2503a8
IM
3834 if (referral_walks_count > MAX_NESTED_LINKS) {
3835 /*
3836 * BB: when we implement proper loop detection,
3837 * we will remove this check. But now we need it
3838 * to prevent an indefinite loop if 'DFS tree' is
3839 * misconfigured (i.e. has loops).
3840 */
3841 rc = -ELOOP;
3842 goto mount_fail_check;
3843 }
1bfe73c2 3844
af4281dc 3845 rc = expand_dfs_referral(xid, ses, volume_info, cifs_sb, true);
7b91e266 3846
dd613945 3847 if (!rc) {
5c2503a8 3848 referral_walks_count++;
1bfe73c2
IM
3849 goto try_mount_again;
3850 }
dd613945 3851 goto mount_fail_check;
d036f50f
SF
3852#else /* No DFS support, return error on mount */
3853 rc = -EOPNOTSUPP;
3854#endif
1bfe73c2
IM
3855 }
3856
9d002df4
JL
3857 if (rc)
3858 goto mount_fail_check;
3859
3860 /* now, hang the tcon off of the superblock */
3861 tlink = kzalloc(sizeof *tlink, GFP_KERNEL);
3862 if (tlink == NULL) {
3863 rc = -ENOMEM;
3864 goto mount_fail_check;
3865 }
3866
af4281dc 3867 tlink->tl_uid = ses->linux_uid;
9d002df4
JL
3868 tlink->tl_tcon = tcon;
3869 tlink->tl_time = jiffies;
3870 set_bit(TCON_LINK_MASTER, &tlink->tl_flags);
3871 set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
3872
b647c35f 3873 cifs_sb->master_tlink = tlink;
9d002df4 3874 spin_lock(&cifs_sb->tlink_tree_lock);
b647c35f 3875 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
9d002df4 3876 spin_unlock(&cifs_sb->tlink_tree_lock);
413e661c 3877
da472fc8 3878 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
2de970ff
JL
3879 TLINK_IDLE_EXPIRE);
3880
1bfe73c2
IM
3881mount_fail_check:
3882 /* on error free sesinfo and tcon struct if needed */
3883 if (rc) {
1bfe73c2 3884 /* If find_unc succeeded then rc == 0 so we can not end */
25985edc 3885 /* up accidentally freeing someone elses tcon struct */
1bfe73c2
IM
3886 if (tcon)
3887 cifs_put_tcon(tcon);
af4281dc
PS
3888 else if (ses)
3889 cifs_put_smb_ses(ses);
1bfe73c2 3890 else
53e0e11e 3891 cifs_put_tcp_session(server, 0);
1bfe73c2
IM
3892 }
3893
70fe7dc0 3894out:
6d5786a3 3895 free_xid(xid);
1da177e4
LT
3896 return rc;
3897}
3898
8d1bca32
JL
3899/*
3900 * Issue a TREE_CONNECT request. Note that for IPC$ shares, that the tcon
3901 * pointer may be NULL.
3902 */
1da177e4 3903int
2e6e02ab 3904CIFSTCon(const unsigned int xid, struct cifs_ses *ses,
96daf2b0 3905 const char *tree, struct cifs_tcon *tcon,
1da177e4
LT
3906 const struct nls_table *nls_codepage)
3907{
3908 struct smb_hdr *smb_buffer;
3909 struct smb_hdr *smb_buffer_response;
3910 TCONX_REQ *pSMB;
3911 TCONX_RSP *pSMBr;
3912 unsigned char *bcc_ptr;
3913 int rc = 0;
690c522f
JL
3914 int length;
3915 __u16 bytes_left, count;
1da177e4
LT
3916
3917 if (ses == NULL)
3918 return -EIO;
3919
3920 smb_buffer = cifs_buf_get();
ca43e3be 3921 if (smb_buffer == NULL)
1da177e4 3922 return -ENOMEM;
ca43e3be 3923
1da177e4
LT
3924 smb_buffer_response = smb_buffer;
3925
3926 header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX,
3927 NULL /*no tid */ , 4 /*wct */ );
1982c344 3928
88257360 3929 smb_buffer->Mid = get_next_mid(ses->server);
1da177e4
LT
3930 smb_buffer->Uid = ses->Suid;
3931 pSMB = (TCONX_REQ *) smb_buffer;
3932 pSMBr = (TCONX_RSP *) smb_buffer_response;
3933
3934 pSMB->AndXCommand = 0xFF;
3935 pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO);
1da177e4 3936 bcc_ptr = &pSMB->Password[0];
8d1bca32 3937 if (!tcon || (ses->server->sec_mode & SECMODE_USER)) {
eeac8047 3938 pSMB->PasswordLength = cpu_to_le16(1); /* minimum */
7c7b25bc 3939 *bcc_ptr = 0; /* password is null byte */
eeac8047 3940 bcc_ptr++; /* skip password */
7c7b25bc 3941 /* already aligned so no need to do it below */
eeac8047 3942 } else {
540b2e37 3943 pSMB->PasswordLength = cpu_to_le16(CIFS_AUTH_RESP_SIZE);
eeac8047
SF
3944 /* BB FIXME add code to fail this if NTLMv2 or Kerberos
3945 specified as required (when that support is added to
3946 the vfs in the future) as only NTLM or the much
7c7b25bc 3947 weaker LANMAN (which we do not send by default) is accepted
eeac8047
SF
3948 by Samba (not sure whether other servers allow
3949 NTLMv2 password here) */
7c7b25bc 3950#ifdef CONFIG_CIFS_WEAK_PW_HASH
04912d6a 3951 if ((global_secflags & CIFSSEC_MAY_LANMAN) &&
3f618223 3952 (ses->sectype == LANMAN))
d3ba50b1 3953 calc_lanman_hash(tcon->password, ses->server->cryptkey,
96daf2b0 3954 ses->server->sec_mode &
4e53a3fb
JL
3955 SECMODE_PW_ENCRYPT ? true : false,
3956 bcc_ptr);
7c7b25bc
SF
3957 else
3958#endif /* CIFS_WEAK_PW_HASH */
ee2c9258 3959 rc = SMBNTencrypt(tcon->password, ses->server->cryptkey,
9ef5992e 3960 bcc_ptr, nls_codepage);
f3a31a2b
SF
3961 if (rc) {
3962 cifs_dbg(FYI, "%s Can't generate NTLM rsp. Error: %d\n",
3963 __func__, rc);
3964 cifs_buf_release(smb_buffer);
3965 return rc;
3966 }
eeac8047 3967
540b2e37 3968 bcc_ptr += CIFS_AUTH_RESP_SIZE;
fb8c4b14 3969 if (ses->capabilities & CAP_UNICODE) {
7c7b25bc
SF
3970 /* must align unicode strings */
3971 *bcc_ptr = 0; /* null byte password */
3972 bcc_ptr++;
3973 }
eeac8047 3974 }
1da177e4 3975
38d77c50 3976 if (ses->server->sign)
1da177e4
LT
3977 smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
3978
3979 if (ses->capabilities & CAP_STATUS32) {
3980 smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS;
3981 }
3982 if (ses->capabilities & CAP_DFS) {
3983 smb_buffer->Flags2 |= SMBFLG2_DFS;
3984 }
3985 if (ses->capabilities & CAP_UNICODE) {
3986 smb_buffer->Flags2 |= SMBFLG2_UNICODE;
3987 length =
acbbb76a 3988 cifs_strtoUTF16((__le16 *) bcc_ptr, tree,
50c2f753 3989 6 /* max utf8 char length in bytes */ *
a878fb22
SF
3990 (/* server len*/ + 256 /* share len */), nls_codepage);
3991 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */
1da177e4
LT
3992 bcc_ptr += 2; /* skip trailing null */
3993 } else { /* ASCII */
1da177e4
LT
3994 strcpy(bcc_ptr, tree);
3995 bcc_ptr += strlen(tree) + 1;
3996 }
3997 strcpy(bcc_ptr, "?????");
3998 bcc_ptr += strlen("?????");
3999 bcc_ptr += 1;
4000 count = bcc_ptr - &pSMB->Password[0];
be8e3b00
SF
4001 pSMB->hdr.smb_buf_length = cpu_to_be32(be32_to_cpu(
4002 pSMB->hdr.smb_buf_length) + count);
1da177e4
LT
4003 pSMB->ByteCount = cpu_to_le16(count);
4004
133672ef 4005 rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length,
7749981e 4006 0);
1da177e4 4007
1da177e4
LT
4008 /* above now done in SendReceive */
4009 if ((rc == 0) && (tcon != NULL)) {
0e0d2cf3
SF
4010 bool is_unicode;
4011
1da177e4 4012 tcon->tidStatus = CifsGood;
3b795210 4013 tcon->need_reconnect = false;
1da177e4
LT
4014 tcon->tid = smb_buffer_response->Tid;
4015 bcc_ptr = pByteArea(smb_buffer_response);
690c522f 4016 bytes_left = get_bcc(smb_buffer_response);
cc20c031 4017 length = strnlen(bcc_ptr, bytes_left - 2);
0e0d2cf3
SF
4018 if (smb_buffer->Flags2 & SMBFLG2_UNICODE)
4019 is_unicode = true;
4020 else
4021 is_unicode = false;
4022
cc20c031 4023
50c2f753 4024 /* skip service field (NB: this field is always ASCII) */
7f8ed420
SF
4025 if (length == 3) {
4026 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') &&
4027 (bcc_ptr[2] == 'C')) {
f96637be 4028 cifs_dbg(FYI, "IPC connection\n");
7f8ed420
SF
4029 tcon->ipc = 1;
4030 }
4031 } else if (length == 2) {
4032 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) {
4033 /* the most common case */
f96637be 4034 cifs_dbg(FYI, "disk share connection\n");
7f8ed420
SF
4035 }
4036 }
50c2f753 4037 bcc_ptr += length + 1;
cc20c031 4038 bytes_left -= (length + 1);
46b51d08 4039 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
cc20c031
JL
4040
4041 /* mostly informational -- no need to fail on error here */
90a98b2f 4042 kfree(tcon->nativeFileSystem);
acbbb76a 4043 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr,
0e0d2cf3 4044 bytes_left, is_unicode,
cc20c031
JL
4045 nls_codepage);
4046
f96637be 4047 cifs_dbg(FYI, "nativeFileSystem=%s\n", tcon->nativeFileSystem);
cc20c031 4048
fb8c4b14 4049 if ((smb_buffer_response->WordCount == 3) ||
1a4e15a0
SF
4050 (smb_buffer_response->WordCount == 7))
4051 /* field is in same location */
3979877e
SF
4052 tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport);
4053 else
4054 tcon->Flags = 0;
f96637be 4055 cifs_dbg(FYI, "Tcon flags: 0x%x\n", tcon->Flags);
1da177e4 4056 } else if ((rc == 0) && tcon == NULL) {
50c2f753 4057 /* all we need to save for IPC$ connection */
1da177e4
LT
4058 ses->ipc_tid = smb_buffer_response->Tid;
4059 }
4060
a8a11d39 4061 cifs_buf_release(smb_buffer);
1da177e4
LT
4062 return rc;
4063}
4064
2e32cf5e
AV
4065static void delayed_free(struct rcu_head *p)
4066{
4067 struct cifs_sb_info *sbi = container_of(p, struct cifs_sb_info, rcu);
4068 unload_nls(sbi->local_nls);
4069 kfree(sbi);
4070}
4071
2a9b9951
AV
4072void
4073cifs_umount(struct cifs_sb_info *cifs_sb)
1da177e4 4074{
b647c35f
JL
4075 struct rb_root *root = &cifs_sb->tlink_tree;
4076 struct rb_node *node;
4077 struct tcon_link *tlink;
9d002df4 4078
2de970ff
JL
4079 cancel_delayed_work_sync(&cifs_sb->prune_tlinks);
4080
b647c35f
JL
4081 spin_lock(&cifs_sb->tlink_tree_lock);
4082 while ((node = rb_first(root))) {
4083 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
4084 cifs_get_tlink(tlink);
4085 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4086 rb_erase(node, root);
1da177e4 4087
b647c35f
JL
4088 spin_unlock(&cifs_sb->tlink_tree_lock);
4089 cifs_put_tlink(tlink);
4090 spin_lock(&cifs_sb->tlink_tree_lock);
4091 }
4092 spin_unlock(&cifs_sb->tlink_tree_lock);
50c2f753 4093
d757d71b 4094 kfree(cifs_sb->mountdata);
a6b5058f 4095 kfree(cifs_sb->prepath);
2e32cf5e 4096 call_rcu(&cifs_sb->rcu, delayed_free);
50c2f753 4097}
1da177e4 4098
286170aa
PS
4099int
4100cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses)
1da177e4
LT
4101{
4102 int rc = 0;
198b5682 4103 struct TCP_Server_Info *server = ses->server;
1da177e4 4104
286170aa
PS
4105 if (!server->ops->need_neg || !server->ops->negotiate)
4106 return -ENOSYS;
4107
198b5682 4108 /* only send once per connect */
286170aa 4109 if (!server->ops->need_neg(server))
198b5682
JL
4110 return 0;
4111
45275789 4112 set_credits(server, 1);
286170aa
PS
4113
4114 rc = server->ops->negotiate(xid, ses);
198b5682
JL
4115 if (rc == 0) {
4116 spin_lock(&GlobalMid_Lock);
7fdbaa1b 4117 if (server->tcpStatus == CifsNeedNegotiate)
198b5682
JL
4118 server->tcpStatus = CifsGood;
4119 else
4120 rc = -EHOSTDOWN;
4121 spin_unlock(&GlobalMid_Lock);
198b5682
JL
4122 }
4123
4124 return rc;
4125}
4126
58c45c58
PS
4127int
4128cifs_setup_session(const unsigned int xid, struct cifs_ses *ses,
4129 struct nls_table *nls_info)
198b5682 4130{
58c45c58 4131 int rc = -ENOSYS;
198b5682 4132 struct TCP_Server_Info *server = ses->server;
26b994fa 4133
198b5682 4134 ses->capabilities = server->capabilities;
26b994fa 4135 if (linuxExtEnabled == 0)
29e20f9c 4136 ses->capabilities &= (~server->vals->cap_unix);
20418acd 4137
f96637be 4138 cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n",
96daf2b0 4139 server->sec_mode, server->capabilities, server->timeAdj);
cb7691b6 4140
58c45c58
PS
4141 if (server->ops->sess_setup)
4142 rc = server->ops->sess_setup(xid, ses, nls_info);
4143
d4e63bd6 4144 if (rc)
f96637be 4145 cifs_dbg(VFS, "Send error in SessSetup = %d\n", rc);
21e73393 4146
1da177e4
LT
4147 return rc;
4148}
4149
8a8798a5
JL
4150static int
4151cifs_set_vol_auth(struct smb_vol *vol, struct cifs_ses *ses)
4152{
3f618223
JL
4153 vol->sectype = ses->sectype;
4154
4155 /* krb5 is special, since we don't need username or pw */
4156 if (vol->sectype == Kerberos)
8a8798a5 4157 return 0;
8a8798a5
JL
4158
4159 return cifs_set_cifscreds(vol, ses);
4160}
4161
96daf2b0 4162static struct cifs_tcon *
6d4a0832 4163cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid)
9d002df4 4164{
8a8798a5 4165 int rc;
96daf2b0
SF
4166 struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb);
4167 struct cifs_ses *ses;
4168 struct cifs_tcon *tcon = NULL;
9d002df4 4169 struct smb_vol *vol_info;
9d002df4
JL
4170
4171 vol_info = kzalloc(sizeof(*vol_info), GFP_KERNEL);
803ab977
DC
4172 if (vol_info == NULL)
4173 return ERR_PTR(-ENOMEM);
9d002df4 4174
9d002df4
JL
4175 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;
28e11bd8
JL
4183 vol_info->sectype = master_tcon->ses->sectype;
4184 vol_info->sign = master_tcon->ses->sign;
9d002df4 4185
8a8798a5
JL
4186 rc = cifs_set_vol_auth(vol_info, master_tcon->ses);
4187 if (rc) {
4188 tcon = ERR_PTR(rc);
4189 goto out;
4190 }
9d002df4
JL
4191
4192 /* get a reference for the same TCP session */
3f9bcca7 4193 spin_lock(&cifs_tcp_ses_lock);
9d002df4 4194 ++master_tcon->ses->server->srv_count;
3f9bcca7 4195 spin_unlock(&cifs_tcp_ses_lock);
9d002df4
JL
4196
4197 ses = cifs_get_smb_ses(master_tcon->ses->server, vol_info);
4198 if (IS_ERR(ses)) {
96daf2b0 4199 tcon = (struct cifs_tcon *)ses;
53e0e11e 4200 cifs_put_tcp_session(master_tcon->ses->server, 0);
9d002df4
JL
4201 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
29e20f9c 4210 if (cap_unix(ses))
9d002df4
JL
4211 reset_cifs_unix_caps(0, tcon, NULL, vol_info);
4212out:
8a8798a5
JL
4213 kfree(vol_info->username);
4214 kfree(vol_info->password);
9d002df4
JL
4215 kfree(vol_info);
4216
4217 return tcon;
4218}
4219
96daf2b0 4220struct cifs_tcon *
9d002df4
JL
4221cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb)
4222{
4223 return tlink_tcon(cifs_sb_master_tlink(cifs_sb));
4224}
4225
b647c35f
JL
4226/* find and return a tlink with given uid */
4227static struct tcon_link *
6d4a0832 4228tlink_rb_search(struct rb_root *root, kuid_t uid)
b647c35f
JL
4229{
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
6d4a0832 4236 if (uid_gt(tlink->tl_uid, uid))
b647c35f 4237 node = node->rb_left;
6d4a0832 4238 else if (uid_lt(tlink->tl_uid, uid))
b647c35f
JL
4239 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
6d4a0832 4257 if (uid_gt(tlink->tl_uid, new_tlink->tl_uid))
b647c35f
JL
4258 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
9d002df4
JL
4267/*
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 *
6ef933a3 4274 * First, search the rbtree for an existing tcon for this fsuid. If one
9d002df4
JL
4275 * 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;
6d4a0832 4287 kuid_t fsuid = current_fsuid();
9d002df4
JL
4288 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);
b647c35f 4294 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
9d002df4
JL
4295 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);
b647c35f 4303 newtlink->tl_uid = fsuid;
9d002df4
JL
4304 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
9d002df4
JL
4309 spin_lock(&cifs_sb->tlink_tree_lock);
4310 /* was one inserted after previous search? */
b647c35f 4311 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
9d002df4
JL
4312 if (tlink) {
4313 cifs_get_tlink(tlink);
4314 spin_unlock(&cifs_sb->tlink_tree_lock);
9d002df4
JL
4315 kfree(newtlink);
4316 goto wait_for_construction;
4317 }
9d002df4 4318 tlink = newtlink;
b647c35f
JL
4319 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
4320 spin_unlock(&cifs_sb->tlink_tree_lock);
9d002df4
JL
4321 } else {
4322wait_for_construction:
4323 ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING,
9d002df4
JL
4324 TASK_INTERRUPTIBLE);
4325 if (ret) {
4326 cifs_put_tlink(tlink);
74316201 4327 return ERR_PTR(-ERESTARTSYS);
9d002df4
JL
4328 }
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}
2de970ff
JL
4355
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);
b647c35f
JL
4365 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;
2de970ff 4369
b647c35f
JL
4370 /*
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;
2de970ff 4388
b647c35f
JL
4389 cifs_get_tlink(tlink);
4390 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4391 rb_erase(tmp, root);
4392
4393 spin_unlock(&cifs_sb->tlink_tree_lock);
4394 cifs_put_tlink(tlink);
4395 spin_lock(&cifs_sb->tlink_tree_lock);
4396 }
4397 spin_unlock(&cifs_sb->tlink_tree_lock);
2de970ff 4398
da472fc8 4399 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
2de970ff
JL
4400 TLINK_IDLE_EXPIRE);
4401}