blob: c31b30b572e0c9b45c01a6a87700a7e5ad2fe985 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/connect.c
3 *
Steve French1080ef72011-02-24 18:07:19 +00004 * Copyright (C) International Business Machines Corp., 2002,2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published
9 * by the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 * the GNU Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software
Steve Frenchfb8c4b12007-07-10 01:16:18 +000019 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 */
21#include <linux/fs.h>
22#include <linux/net.h>
23#include <linux/string.h>
24#include <linux/list.h>
25#include <linux/wait.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/pagemap.h>
28#include <linux/ctype.h>
29#include <linux/utsname.h>
30#include <linux/mempool.h>
Steve Frenchb8643e12005-04-28 22:41:07 -070031#include <linux/delay.h>
Steve Frenchf1914012005-08-18 09:37:34 -070032#include <linux/completion.h>
Igor Mammedovaaf737a2007-04-03 19:16:43 +000033#include <linux/kthread.h>
Steve French0ae0efa2005-10-10 10:57:19 -070034#include <linux/pagevec.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080035#include <linux/freezer.h>
Igor Mammedov5c2503a2009-04-21 19:31:05 +040036#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/uaccess.h>
38#include <asm/processor.h>
Jeff Layton50b64e32009-06-02 06:55:20 -040039#include <linux/inet.h>
Paul Gortmaker143cb492011-07-01 14:23:34 -040040#include <linux/module.h>
Jeff Layton8a8798a2012-01-17 16:09:15 -050041#include <keys/user-type.h>
Steve French0e2beda2009-01-30 21:24:41 +000042#include <net/ipv6.h>
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040043#include <linux/parser.h>
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "cifspdu.h"
46#include "cifsglob.h"
47#include "cifsproto.h"
48#include "cifs_unicode.h"
49#include "cifs_debug.h"
50#include "cifs_fs_sb.h"
51#include "ntlmssp.h"
52#include "nterr.h"
53#include "rfc1002pdu.h"
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +053054#include "fscache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#define CIFS_PORT 445
57#define RFC1001_PORT 139
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059extern mempool_t *cifs_req_poolp;
60
Jeff Layton2de970f2010-10-06 19:51:12 -040061/* FIXME: should these be tunable? */
Jeff Layton9d002df2010-10-06 19:51:11 -040062#define TLINK_ERROR_EXPIRE (1 * HZ)
Jeff Layton2de970f2010-10-06 19:51:12 -040063#define TLINK_IDLE_EXPIRE (600 * HZ)
Jeff Layton9d002df2010-10-06 19:51:11 -040064
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040065enum {
66
67 /* Mount options that take no arguments */
68 Opt_user_xattr, Opt_nouser_xattr,
69 Opt_forceuid, Opt_noforceuid,
70 Opt_noblocksend, Opt_noautotune,
71 Opt_hard, Opt_soft, Opt_perm, Opt_noperm,
72 Opt_mapchars, Opt_nomapchars, Opt_sfu,
73 Opt_nosfu, Opt_nodfs, Opt_posixpaths,
74 Opt_noposixpaths, Opt_nounix,
75 Opt_nocase,
76 Opt_brl, Opt_nobrl,
77 Opt_forcemandatorylock, Opt_setuids,
78 Opt_nosetuids, Opt_dynperm, Opt_nodynperm,
79 Opt_nohard, Opt_nosoft,
80 Opt_nointr, Opt_intr,
81 Opt_nostrictsync, Opt_strictsync,
82 Opt_serverino, Opt_noserverino,
83 Opt_rwpidforward, Opt_cifsacl, Opt_nocifsacl,
84 Opt_acl, Opt_noacl, Opt_locallease,
85 Opt_sign, Opt_seal, Opt_direct,
86 Opt_strictcache, Opt_noac,
87 Opt_fsc, Opt_mfsymlinks,
Jeff Laytond8162552012-03-23 14:40:56 -040088 Opt_multiuser, Opt_sloppy,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -040089
90 /* Mount options which take numeric value */
91 Opt_backupuid, Opt_backupgid, Opt_uid,
92 Opt_cruid, Opt_gid, Opt_file_mode,
93 Opt_dirmode, Opt_port,
94 Opt_rsize, Opt_wsize, Opt_actimeo,
95
96 /* Mount options which take string value */
97 Opt_user, Opt_pass, Opt_ip,
98 Opt_unc, Opt_domain,
99 Opt_srcaddr, Opt_prefixpath,
100 Opt_iocharset, Opt_sockopt,
101 Opt_netbiosname, Opt_servern,
Jeff Layton23db65f2012-05-15 12:20:51 -0400102 Opt_ver, Opt_vers, Opt_sec, Opt_cache,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400103
104 /* Mount options to be ignored */
105 Opt_ignore,
106
107 /* Options which could be blank */
108 Opt_blank_pass,
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100109 Opt_blank_user,
110 Opt_blank_ip,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400111
112 Opt_err
113};
114
115static const match_table_t cifs_mount_option_tokens = {
116
117 { Opt_user_xattr, "user_xattr" },
118 { Opt_nouser_xattr, "nouser_xattr" },
119 { Opt_forceuid, "forceuid" },
120 { Opt_noforceuid, "noforceuid" },
121 { Opt_noblocksend, "noblocksend" },
122 { Opt_noautotune, "noautotune" },
123 { Opt_hard, "hard" },
124 { Opt_soft, "soft" },
125 { Opt_perm, "perm" },
126 { Opt_noperm, "noperm" },
127 { Opt_mapchars, "mapchars" },
128 { Opt_nomapchars, "nomapchars" },
129 { Opt_sfu, "sfu" },
130 { Opt_nosfu, "nosfu" },
131 { Opt_nodfs, "nodfs" },
132 { Opt_posixpaths, "posixpaths" },
133 { Opt_noposixpaths, "noposixpaths" },
134 { Opt_nounix, "nounix" },
135 { Opt_nounix, "nolinux" },
136 { Opt_nocase, "nocase" },
137 { Opt_nocase, "ignorecase" },
138 { Opt_brl, "brl" },
139 { Opt_nobrl, "nobrl" },
140 { Opt_nobrl, "nolock" },
141 { Opt_forcemandatorylock, "forcemandatorylock" },
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +0400142 { Opt_forcemandatorylock, "forcemand" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400143 { Opt_setuids, "setuids" },
144 { Opt_nosetuids, "nosetuids" },
145 { Opt_dynperm, "dynperm" },
146 { Opt_nodynperm, "nodynperm" },
147 { Opt_nohard, "nohard" },
148 { Opt_nosoft, "nosoft" },
149 { Opt_nointr, "nointr" },
150 { Opt_intr, "intr" },
151 { Opt_nostrictsync, "nostrictsync" },
152 { Opt_strictsync, "strictsync" },
153 { Opt_serverino, "serverino" },
154 { Opt_noserverino, "noserverino" },
155 { Opt_rwpidforward, "rwpidforward" },
156 { Opt_cifsacl, "cifsacl" },
157 { Opt_nocifsacl, "nocifsacl" },
158 { Opt_acl, "acl" },
159 { Opt_noacl, "noacl" },
160 { Opt_locallease, "locallease" },
161 { Opt_sign, "sign" },
162 { Opt_seal, "seal" },
163 { Opt_direct, "direct" },
Jeff Layton531c8ff2012-05-16 07:12:26 -0400164 { Opt_direct, "directio" },
165 { Opt_direct, "forcedirectio" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400166 { Opt_strictcache, "strictcache" },
167 { Opt_noac, "noac" },
168 { Opt_fsc, "fsc" },
169 { Opt_mfsymlinks, "mfsymlinks" },
170 { Opt_multiuser, "multiuser" },
Jeff Laytond8162552012-03-23 14:40:56 -0400171 { Opt_sloppy, "sloppy" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400172
173 { Opt_backupuid, "backupuid=%s" },
174 { Opt_backupgid, "backupgid=%s" },
175 { Opt_uid, "uid=%s" },
176 { Opt_cruid, "cruid=%s" },
177 { Opt_gid, "gid=%s" },
178 { Opt_file_mode, "file_mode=%s" },
179 { Opt_dirmode, "dirmode=%s" },
180 { Opt_dirmode, "dir_mode=%s" },
181 { Opt_port, "port=%s" },
182 { Opt_rsize, "rsize=%s" },
183 { Opt_wsize, "wsize=%s" },
184 { Opt_actimeo, "actimeo=%s" },
185
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100186 { Opt_blank_user, "user=" },
187 { Opt_blank_user, "username=" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400188 { Opt_user, "user=%s" },
189 { Opt_user, "username=%s" },
190 { Opt_blank_pass, "pass=" },
191 { Opt_pass, "pass=%s" },
192 { Opt_pass, "password=%s" },
Sachin Prabhu4fe9e962012-04-10 18:12:27 +0100193 { Opt_blank_ip, "ip=" },
194 { Opt_blank_ip, "addr=" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400195 { Opt_ip, "ip=%s" },
196 { Opt_ip, "addr=%s" },
197 { Opt_unc, "unc=%s" },
198 { Opt_unc, "target=%s" },
199 { Opt_unc, "path=%s" },
200 { Opt_domain, "dom=%s" },
201 { Opt_domain, "domain=%s" },
202 { Opt_domain, "workgroup=%s" },
203 { Opt_srcaddr, "srcaddr=%s" },
204 { Opt_prefixpath, "prefixpath=%s" },
205 { Opt_iocharset, "iocharset=%s" },
206 { Opt_sockopt, "sockopt=%s" },
207 { Opt_netbiosname, "netbiosname=%s" },
208 { Opt_servern, "servern=%s" },
209 { Opt_ver, "ver=%s" },
Jeff Layton23db65f2012-05-15 12:20:51 -0400210 { Opt_vers, "vers=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400211 { Opt_sec, "sec=%s" },
Jeff Layton15b6a472012-05-16 07:50:15 -0400212 { Opt_cache, "cache=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400213
214 { Opt_ignore, "cred" },
215 { Opt_ignore, "credentials" },
Jeff Laytona557b972012-05-02 14:02:40 -0400216 { Opt_ignore, "cred=%s" },
217 { Opt_ignore, "credentials=%s" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400218 { Opt_ignore, "guest" },
219 { Opt_ignore, "rw" },
220 { Opt_ignore, "ro" },
221 { Opt_ignore, "suid" },
222 { Opt_ignore, "nosuid" },
223 { Opt_ignore, "exec" },
224 { Opt_ignore, "noexec" },
225 { Opt_ignore, "nodev" },
226 { Opt_ignore, "noauto" },
227 { Opt_ignore, "dev" },
228 { Opt_ignore, "mand" },
229 { Opt_ignore, "nomand" },
230 { Opt_ignore, "_netdev" },
231
232 { Opt_err, NULL }
233};
234
235enum {
236 Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p,
237 Opt_sec_ntlmsspi, Opt_sec_ntlmssp,
Jeff Layton76596242012-07-23 20:34:17 -0400238 Opt_ntlm, Opt_sec_ntlmi, Opt_sec_ntlmv2,
239 Opt_sec_ntlmv2i, Opt_sec_lanman,
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400240 Opt_sec_none,
241
242 Opt_sec_err
243};
244
245static const match_table_t cifs_secflavor_tokens = {
246 { Opt_sec_krb5, "krb5" },
247 { Opt_sec_krb5i, "krb5i" },
248 { Opt_sec_krb5p, "krb5p" },
249 { Opt_sec_ntlmsspi, "ntlmsspi" },
250 { Opt_sec_ntlmssp, "ntlmssp" },
251 { Opt_ntlm, "ntlm" },
252 { Opt_sec_ntlmi, "ntlmi" },
Jeff Layton76596242012-07-23 20:34:17 -0400253 { Opt_sec_ntlmv2, "nontlm" },
254 { Opt_sec_ntlmv2, "ntlmv2" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400255 { Opt_sec_ntlmv2i, "ntlmv2i" },
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400256 { Opt_sec_lanman, "lanman" },
257 { Opt_sec_none, "none" },
258
259 { Opt_sec_err, NULL }
260};
261
Jeff Layton15b6a472012-05-16 07:50:15 -0400262/* cache flavors */
263enum {
264 Opt_cache_loose,
265 Opt_cache_strict,
266 Opt_cache_none,
267 Opt_cache_err
268};
269
270static const match_table_t cifs_cacheflavor_tokens = {
271 { Opt_cache_loose, "loose" },
272 { Opt_cache_strict, "strict" },
273 { Opt_cache_none, "none" },
274 { Opt_cache_err, NULL }
275};
276
Jeff Layton23db65f2012-05-15 12:20:51 -0400277static const match_table_t cifs_smb_version_tokens = {
278 { Smb_1, SMB1_VERSION_STRING },
Steve French1080ef72011-02-24 18:07:19 +0000279 { Smb_21, SMB21_VERSION_STRING },
Jeff Layton23db65f2012-05-15 12:20:51 -0400280};
281
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300282static int ip_connect(struct TCP_Server_Info *server);
283static int generic_ip_connect(struct TCP_Server_Info *server);
Jeff Laytonb647c352010-10-28 11:16:44 -0400284static void tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink);
Jeff Layton2de970f2010-10-06 19:51:12 -0400285static void cifs_prune_tlinks(struct work_struct *work);
Jeff Laytonb9bce2e2011-07-06 08:10:39 -0400286static int cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data,
287 const char *devname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Jeff Laytond5c56052008-12-01 18:42:33 -0500289/*
290 * cifs tcp session reconnection
291 *
292 * mark tcp session as reconnecting so temporarily locked
293 * mark all smb sessions as reconnecting for tcp session
294 * reconnect tcp session
295 * wake up waiters on reconnection? - (not needed currently)
296 */
Pavel Shilovsky28ea5292012-05-23 16:18:00 +0400297int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298cifs_reconnect(struct TCP_Server_Info *server)
299{
300 int rc = 0;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500301 struct list_head *tmp, *tmp2;
Steve French96daf2b2011-05-27 04:34:02 +0000302 struct cifs_ses *ses;
303 struct cifs_tcon *tcon;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000304 struct mid_q_entry *mid_entry;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400305 struct list_head retry_list;
Steve French50c2f752007-07-13 00:33:32 +0000306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 spin_lock(&GlobalMid_Lock);
Jeff Layton469ee612008-10-16 18:46:39 +0000308 if (server->tcpStatus == CifsExiting) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000309 /* the demux thread will exit normally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 next time through the loop */
311 spin_unlock(&GlobalMid_Lock);
312 return rc;
313 } else
314 server->tcpStatus = CifsNeedReconnect;
315 spin_unlock(&GlobalMid_Lock);
316 server->maxBuf = 0;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400317#ifdef CONFIG_CIFS_SMB2
318 server->max_read = 0;
319#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Joe Perchesb6b38f72010-04-21 03:50:45 +0000321 cFYI(1, "Reconnecting tcp session");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /* before reconnecting the tcp session, mark the smb session (uid)
324 and the tid bad so they are not used until reconnected */
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500325 cFYI(1, "%s: marking sessions and tcons for reconnect", __func__);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530326 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -0500327 list_for_each(tmp, &server->smb_ses_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000328 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
Jeff Layton14fbf502008-11-14 13:53:46 -0500329 ses->need_reconnect = true;
330 ses->ipc_tid = 0;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500331 list_for_each(tmp2, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000332 tcon = list_entry(tmp2, struct cifs_tcon, tcon_list);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500333 tcon->need_reconnect = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530336 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 /* do not want to be sending data on a socket we are freeing */
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500339 cFYI(1, "%s: tearing down socket", __func__);
Jeff Layton72ca5452008-12-01 07:09:36 -0500340 mutex_lock(&server->srv_mutex);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000341 if (server->ssocket) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000342 cFYI(1, "State: 0x%x Flags: 0x%lx", server->ssocket->state,
343 server->ssocket->flags);
Trond Myklebust91cf45f2007-11-12 18:10:39 -0800344 kernel_sock_shutdown(server->ssocket, SHUT_WR);
Joe Perchesb6b38f72010-04-21 03:50:45 +0000345 cFYI(1, "Post shutdown state: 0x%x Flags: 0x%lx",
Steve French467a8f82007-06-27 22:41:32 +0000346 server->ssocket->state,
Joe Perchesb6b38f72010-04-21 03:50:45 +0000347 server->ssocket->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 sock_release(server->ssocket);
349 server->ssocket = NULL;
350 }
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -0500351 server->sequence_number = 0;
352 server->session_estab = false;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500353 kfree(server->session_key.response);
354 server->session_key.response = NULL;
355 server->session_key.len = 0;
Steve Frenchfda35942011-01-20 18:06:34 +0000356 server->lstrp = jiffies;
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500357 mutex_unlock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500359 /* mark submitted MIDs for retry and issue callback */
Jeff Layton3c1105d2011-05-22 07:09:13 -0400360 INIT_LIST_HEAD(&retry_list);
361 cFYI(1, "%s: moving mids to private list", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 spin_lock(&GlobalMid_Lock);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500363 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
364 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400365 if (mid_entry->mid_state == MID_REQUEST_SUBMITTED)
366 mid_entry->mid_state = MID_RETRY_NEEDED;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400367 list_move(&mid_entry->qhead, &retry_list);
368 }
369 spin_unlock(&GlobalMid_Lock);
370
371 cFYI(1, "%s: issuing mid callbacks", __func__);
372 list_for_each_safe(tmp, tmp2, &retry_list) {
373 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500374 list_del_init(&mid_entry->qhead);
375 mid_entry->callback(mid_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Jeff Layton7fdbaa12011-06-10 16:14:57 -0400378 do {
Steve French6c3d8902006-07-31 22:46:20 +0000379 try_to_freeze();
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300380
381 /* we should try only the port we connected to before */
382 rc = generic_ip_connect(server);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000383 if (rc) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000384 cFYI(1, "reconnect error %d", rc);
Steve French0cb766a2005-04-28 22:41:11 -0700385 msleep(3000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 } else {
387 atomic_inc(&tcpSesReconnectCount);
388 spin_lock(&GlobalMid_Lock);
Jeff Layton469ee612008-10-16 18:46:39 +0000389 if (server->tcpStatus != CifsExiting)
Steve Frenchfd88ce92011-04-12 01:01:14 +0000390 server->tcpStatus = CifsNeedNegotiate;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000391 spin_unlock(&GlobalMid_Lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
Jeff Layton7fdbaa12011-06-10 16:14:57 -0400393 } while (server->tcpStatus == CifsNeedReconnect);
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return rc;
396}
397
Jeff Laytonc74093b2011-01-11 07:24:23 -0500398static void
399cifs_echo_request(struct work_struct *work)
400{
401 int rc;
402 struct TCP_Server_Info *server = container_of(work,
403 struct TCP_Server_Info, echo.work);
404
Jeff Layton247ec9b2011-02-04 17:09:50 -0500405 /*
Pavel Shilovskyf6d76172012-05-25 14:47:16 +0400406 * We cannot send an echo if it is disabled or until the
407 * NEGOTIATE_PROTOCOL request is done, which is indicated by
408 * server->ops->need_neg() == true. Also, no need to ping if
409 * we got a response recently.
Jeff Layton247ec9b2011-02-04 17:09:50 -0500410 */
Pavel Shilovsky286170a2012-05-25 10:43:58 +0400411 if (!server->ops->need_neg || server->ops->need_neg(server) ||
Pavel Shilovskyf6d76172012-05-25 14:47:16 +0400412 (server->ops->can_echo && !server->ops->can_echo(server)) ||
Jeff Layton247ec9b2011-02-04 17:09:50 -0500413 time_before(jiffies, server->lstrp + SMB_ECHO_INTERVAL - HZ))
Jeff Laytonc74093b2011-01-11 07:24:23 -0500414 goto requeue_echo;
415
Pavel Shilovskyf6d76172012-05-25 14:47:16 +0400416 rc = server->ops->echo ? server->ops->echo(server) : -ENOSYS;
Jeff Laytonc74093b2011-01-11 07:24:23 -0500417 if (rc)
418 cFYI(1, "Unable to send echo request to server: %s",
419 server->hostname);
420
421requeue_echo:
Jeff Laytonda472fc2012-03-23 14:40:53 -0400422 queue_delayed_work(cifsiod_wq, &server->echo, SMB_ECHO_INTERVAL);
Jeff Laytonc74093b2011-01-11 07:24:23 -0500423}
424
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400425static bool
Jeff Layton2a37ef92011-10-19 15:29:23 -0400426allocate_buffers(struct TCP_Server_Info *server)
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400427{
Jeff Layton2a37ef92011-10-19 15:29:23 -0400428 if (!server->bigbuf) {
429 server->bigbuf = (char *)cifs_buf_get();
430 if (!server->bigbuf) {
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400431 cERROR(1, "No memory for large SMB response");
432 msleep(3000);
433 /* retry will check if exiting */
434 return false;
435 }
Jeff Layton2a37ef92011-10-19 15:29:23 -0400436 } else if (server->large_buf) {
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400437 /* we are reusing a dirty large buf, clear its start */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400438 memset(server->bigbuf, 0, HEADER_SIZE(server));
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400439 }
440
Jeff Layton2a37ef92011-10-19 15:29:23 -0400441 if (!server->smallbuf) {
442 server->smallbuf = (char *)cifs_small_buf_get();
443 if (!server->smallbuf) {
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400444 cERROR(1, "No memory for SMB response");
445 msleep(1000);
446 /* retry will check if exiting */
447 return false;
448 }
449 /* beginning of smb buffer is cleared in our buf_get */
450 } else {
451 /* if existing small buf clear beginning */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400452 memset(server->smallbuf, 0, HEADER_SIZE(server));
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400453 }
454
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400455 return true;
456}
457
Jeff Laytonba749e62011-10-11 06:41:32 -0400458static bool
459server_unresponsive(struct TCP_Server_Info *server)
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400460{
Pavel Shilovsky6dae51a2012-02-21 16:50:23 +0300461 /*
462 * We need to wait 2 echo intervals to make sure we handle such
463 * situations right:
464 * 1s client sends a normal SMB request
465 * 2s client gets a response
466 * 30s echo workqueue job pops, and decides we got a response recently
467 * and don't need to send another
468 * ...
469 * 65s kernel_recvmsg times out, and we see that we haven't gotten
470 * a response in >60s.
471 */
472 if (server->tcpStatus == CifsGood &&
473 time_after(jiffies, server->lstrp + 2 * SMB_ECHO_INTERVAL)) {
Jeff Laytonba749e62011-10-11 06:41:32 -0400474 cERROR(1, "Server %s has not responded in %d seconds. "
475 "Reconnecting...", server->hostname,
Pavel Shilovsky6dae51a2012-02-21 16:50:23 +0300476 (2 * SMB_ECHO_INTERVAL) / HZ);
Jeff Laytonba749e62011-10-11 06:41:32 -0400477 cifs_reconnect(server);
478 wake_up(&server->response_q);
479 return true;
480 }
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400481
Jeff Laytonba749e62011-10-11 06:41:32 -0400482 return false;
483}
484
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400485/*
486 * kvec_array_init - clone a kvec array, and advance into it
487 * @new: pointer to memory for cloned array
488 * @iov: pointer to original array
489 * @nr_segs: number of members in original array
490 * @bytes: number of bytes to advance into the cloned array
491 *
492 * This function will copy the array provided in iov to a section of memory
493 * and advance the specified number of bytes into the new array. It returns
494 * the number of segments in the new array. "new" must be at least as big as
495 * the original iov array.
496 */
497static unsigned int
498kvec_array_init(struct kvec *new, struct kvec *iov, unsigned int nr_segs,
499 size_t bytes)
500{
501 size_t base = 0;
502
503 while (bytes || !iov->iov_len) {
504 int copy = min(bytes, iov->iov_len);
505
506 bytes -= copy;
507 base += copy;
508 if (iov->iov_len == base) {
509 iov++;
510 nr_segs--;
511 base = 0;
512 }
513 }
514 memcpy(new, iov, sizeof(*iov) * nr_segs);
515 new->iov_base += base;
516 new->iov_len -= base;
517 return nr_segs;
518}
519
Jeff Layton1041e3f2011-10-19 15:28:27 -0400520static struct kvec *
521get_server_iovec(struct TCP_Server_Info *server, unsigned int nr_segs)
522{
523 struct kvec *new_iov;
524
525 if (server->iov && nr_segs <= server->nr_iov)
526 return server->iov;
527
528 /* not big enough -- allocate a new one and release the old */
529 new_iov = kmalloc(sizeof(*new_iov) * nr_segs, GFP_NOFS);
530 if (new_iov) {
531 kfree(server->iov);
532 server->iov = new_iov;
533 server->nr_iov = nr_segs;
534 }
535 return new_iov;
536}
537
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400538int
539cifs_readv_from_socket(struct TCP_Server_Info *server, struct kvec *iov_orig,
540 unsigned int nr_segs, unsigned int to_read)
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400541{
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400542 int length = 0;
543 int total_read;
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400544 unsigned int segs;
Jeff Laytone831e6c2011-10-11 06:41:32 -0400545 struct msghdr smb_msg;
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400546 struct kvec *iov;
547
Jeff Layton1041e3f2011-10-19 15:28:27 -0400548 iov = get_server_iovec(server, nr_segs);
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400549 if (!iov)
550 return -ENOMEM;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400551
Jeff Laytone831e6c2011-10-11 06:41:32 -0400552 smb_msg.msg_control = NULL;
553 smb_msg.msg_controllen = 0;
554
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400555 for (total_read = 0; to_read; total_read += length, to_read -= length) {
Jeff Layton95edcff2011-12-01 20:22:41 -0500556 try_to_freeze();
557
Jeff Laytonba749e62011-10-11 06:41:32 -0400558 if (server_unresponsive(server)) {
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400559 total_read = -EAGAIN;
Jeff Laytonba749e62011-10-11 06:41:32 -0400560 break;
561 }
562
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400563 segs = kvec_array_init(iov, iov_orig, nr_segs, total_read);
564
565 length = kernel_recvmsg(server->ssocket, &smb_msg,
566 iov, segs, to_read, 0);
567
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400568 if (server->tcpStatus == CifsExiting) {
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400569 total_read = -ESHUTDOWN;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400570 break;
571 } else if (server->tcpStatus == CifsNeedReconnect) {
572 cifs_reconnect(server);
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400573 total_read = -EAGAIN;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400574 break;
575 } else if (length == -ERESTARTSYS ||
576 length == -EAGAIN ||
577 length == -EINTR) {
578 /*
579 * Minimum sleep to prevent looping, allowing socket
580 * to clear and app threads to set tcpStatus
581 * CifsNeedReconnect if server hung.
582 */
583 usleep_range(1000, 2000);
584 length = 0;
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400585 continue;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400586 } else if (length <= 0) {
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400587 cFYI(1, "Received no data or error: expecting %d "
588 "got %d", to_read, length);
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400589 cifs_reconnect(server);
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400590 total_read = -EAGAIN;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400591 break;
592 }
593 }
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400594 return total_read;
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400595}
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400596
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400597int
598cifs_read_from_socket(struct TCP_Server_Info *server, char *buf,
599 unsigned int to_read)
Jeff Layton42c4dfc2011-10-19 15:28:17 -0400600{
601 struct kvec iov;
602
603 iov.iov_base = buf;
604 iov.iov_len = to_read;
605
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400606 return cifs_readv_from_socket(server, &iov, 1, to_read);
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400607}
608
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400609static bool
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400610is_smb_response(struct TCP_Server_Info *server, unsigned char type)
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400611{
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400612 /*
613 * The first byte big endian of the length field,
614 * is actually not part of the length but the type
615 * with the most common, zero, as regular data.
616 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400617 switch (type) {
618 case RFC1002_SESSION_MESSAGE:
619 /* Regular SMB response */
620 return true;
621 case RFC1002_SESSION_KEEP_ALIVE:
622 cFYI(1, "RFC 1002 session keep alive");
623 break;
624 case RFC1002_POSITIVE_SESSION_RESPONSE:
625 cFYI(1, "RFC 1002 positive session response");
626 break;
627 case RFC1002_NEGATIVE_SESSION_RESPONSE:
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400628 /*
629 * We get this from Windows 98 instead of an error on
630 * SMB negprot response.
631 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400632 cFYI(1, "RFC 1002 negative session response");
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400633 /* give server a second to clean up */
634 msleep(1000);
635 /*
636 * Always try 445 first on reconnect since we get NACK
637 * on some if we ever connected to port 139 (the NACK
638 * is since we do not begin with RFC1001 session
639 * initialize frame).
640 */
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400641 cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400642 cifs_reconnect(server);
643 wake_up(&server->response_q);
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400644 break;
645 default:
646 cERROR(1, "RFC 1002 unknown response type 0x%x", type);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400647 cifs_reconnect(server);
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400648 }
649
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400650 return false;
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400651}
652
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400653void
654dequeue_mid(struct mid_q_entry *mid, bool malformed)
Jeff Laytonea1f4502011-10-19 15:29:05 -0400655{
656#ifdef CONFIG_CIFS_STATS2
657 mid->when_received = jiffies;
658#endif
659 spin_lock(&GlobalMid_Lock);
660 if (!malformed)
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400661 mid->mid_state = MID_RESPONSE_RECEIVED;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400662 else
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400663 mid->mid_state = MID_RESPONSE_MALFORMED;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400664 list_del_init(&mid->qhead);
665 spin_unlock(&GlobalMid_Lock);
666}
667
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400668static void
669handle_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server,
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400670 char *buf, int malformed)
Jeff Laytonea1f4502011-10-19 15:29:05 -0400671{
Pavel Shilovsky316cf942012-05-23 14:31:03 +0400672 if (server->ops->check_trans2 &&
673 server->ops->check_trans2(mid, server, buf, malformed))
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400674 return;
Jeff Laytonea1f4502011-10-19 15:29:05 -0400675 mid->resp_buf = buf;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400676 mid->large_buf = server->large_buf;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400677 /* Was previous buf put in mpx struct for multi-rsp? */
678 if (!mid->multiRsp) {
679 /* smb buffer will be freed by user thread */
680 if (server->large_buf)
681 server->bigbuf = NULL;
682 else
683 server->smallbuf = NULL;
684 }
Jeff Laytonffc00e22011-10-19 15:29:13 -0400685 dequeue_mid(mid, malformed);
Pavel Shilovskyad69bae2011-08-01 13:19:43 +0400686}
687
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400688static void clean_demultiplex_info(struct TCP_Server_Info *server)
689{
690 int length;
691
692 /* take it off the list, if it's not already */
693 spin_lock(&cifs_tcp_ses_lock);
694 list_del_init(&server->tcp_ses_list);
695 spin_unlock(&cifs_tcp_ses_lock);
696
697 spin_lock(&GlobalMid_Lock);
698 server->tcpStatus = CifsExiting;
699 spin_unlock(&GlobalMid_Lock);
700 wake_up_all(&server->response_q);
701
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400702 /* check if we have blocked requests that need to free */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300703 spin_lock(&server->req_lock);
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400704 if (server->credits <= 0)
705 server->credits = 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300706 spin_unlock(&server->req_lock);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400707 /*
708 * Although there should not be any requests blocked on this queue it
709 * can not hurt to be paranoid and try to wake up requests that may
710 * haven been blocked when more than 50 at time were on the wire to the
711 * same server - they now will see the session is in exit state and get
712 * out of SendReceive.
713 */
714 wake_up_all(&server->request_q);
715 /* give those requests time to exit */
716 msleep(125);
717
718 if (server->ssocket) {
719 sock_release(server->ssocket);
720 server->ssocket = NULL;
721 }
722
723 if (!list_empty(&server->pending_mid_q)) {
724 struct list_head dispose_list;
725 struct mid_q_entry *mid_entry;
726 struct list_head *tmp, *tmp2;
727
728 INIT_LIST_HEAD(&dispose_list);
729 spin_lock(&GlobalMid_Lock);
730 list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
731 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400732 cFYI(1, "Clearing mid 0x%llx", mid_entry->mid);
733 mid_entry->mid_state = MID_SHUTDOWN;
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400734 list_move(&mid_entry->qhead, &dispose_list);
735 }
736 spin_unlock(&GlobalMid_Lock);
737
738 /* now walk dispose list and issue callbacks */
739 list_for_each_safe(tmp, tmp2, &dispose_list) {
740 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400741 cFYI(1, "Callback mid 0x%llx", mid_entry->mid);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400742 list_del_init(&mid_entry->qhead);
743 mid_entry->callback(mid_entry);
744 }
745 /* 1/8th of sec is more than enough time for them to exit */
746 msleep(125);
747 }
748
749 if (!list_empty(&server->pending_mid_q)) {
750 /*
751 * mpx threads have not exited yet give them at least the smb
752 * send timeout time for long ops.
753 *
754 * Due to delays on oplock break requests, we need to wait at
755 * least 45 seconds before giving up on a request getting a
756 * response and going ahead and killing cifsd.
757 */
758 cFYI(1, "Wait for exit from demultiplex thread");
759 msleep(46000);
760 /*
761 * If threads still have not exited they are probably never
762 * coming home not much else we can do but free the memory.
763 */
764 }
765
766 kfree(server->hostname);
Jeff Layton1041e3f2011-10-19 15:28:27 -0400767 kfree(server->iov);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400768 kfree(server);
769
770 length = atomic_dec_return(&tcpSesAllocCount);
771 if (length > 0)
772 mempool_resize(cifs_req_poolp, length + cifs_min_rcv,
773 GFP_KERNEL);
774}
775
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400776static int
Jeff Laytone9097ab2011-10-19 15:29:40 -0400777standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid)
778{
779 int length;
780 char *buf = server->smallbuf;
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400781 unsigned int pdu_length = get_rfc1002_length(buf);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400782
783 /* make sure this will fit in a large buffer */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400784 if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) - 4) {
Jeff Laytone9097ab2011-10-19 15:29:40 -0400785 cERROR(1, "SMB response too long (%u bytes)",
786 pdu_length);
787 cifs_reconnect(server);
788 wake_up(&server->response_q);
789 return -EAGAIN;
790 }
791
792 /* switch to large buffer if too big for a small one */
793 if (pdu_length > MAX_CIFS_SMALL_BUFFER_SIZE - 4) {
794 server->large_buf = true;
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400795 memcpy(server->bigbuf, buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400796 buf = server->bigbuf;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400797 }
798
799 /* now read the rest */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400800 length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1,
801 pdu_length - HEADER_SIZE(server) + 1 + 4);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400802 if (length < 0)
803 return length;
804 server->total_read += length;
805
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400806 dump_smb(buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400807
808 /*
809 * We know that we received enough to get to the MID as we
810 * checked the pdu_length earlier. Now check to see
811 * if the rest of the header is OK. We borrow the length
812 * var for the rest of the loop to avoid a new stack var.
813 *
814 * 48 bytes is enough to display the header and a little bit
815 * into the payload for debugging purposes.
816 */
Pavel Shilovsky8aa26f32012-05-17 13:25:35 +0400817 length = server->ops->check_message(buf, server->total_read);
Jeff Laytone9097ab2011-10-19 15:29:40 -0400818 if (length != 0)
819 cifs_dump_mem("Bad SMB: ", buf,
820 min_t(unsigned int, server->total_read, 48));
821
Jeff Laytonff4fa4a2012-02-07 06:31:05 -0500822 if (!mid)
823 return length;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400824
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400825 handle_mid(mid, server, buf, length);
Jeff Laytonff4fa4a2012-02-07 06:31:05 -0500826 return 0;
Jeff Laytone9097ab2011-10-19 15:29:40 -0400827}
828
829static int
Al Viro7c97c202011-06-21 08:51:28 -0400830cifs_demultiplex_thread(void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
832 int length;
Al Viro7c97c202011-06-21 08:51:28 -0400833 struct TCP_Server_Info *server = p;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400834 unsigned int pdu_length;
835 char *buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 struct task_struct *task_to_wake = NULL;
837 struct mid_q_entry *mid_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 current->flags |= PF_MEMALLOC;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000840 cFYI(1, "Demultiplex PID: %d", task_pid_nr(current));
Jeff Layton93d0ec82008-08-02 08:00:48 -0400841
842 length = atomic_inc_return(&tcpSesAllocCount);
843 if (length > 1)
Steve French26f57362007-08-30 22:09:15 +0000844 mempool_resize(cifs_req_poolp, length + cifs_min_rcv,
845 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700847 set_freezable();
Jeff Layton469ee612008-10-16 18:46:39 +0000848 while (server->tcpStatus != CifsExiting) {
Steve Frenchede13272005-08-30 20:10:14 -0700849 if (try_to_freeze())
850 continue;
Steve Frenchb8643e12005-04-28 22:41:07 -0700851
Jeff Layton2a37ef92011-10-19 15:29:23 -0400852 if (!allocate_buffers(server))
Pavel Shilovsky3d9c2472011-08-01 13:19:40 +0400853 continue;
Steve Frenchb8643e12005-04-28 22:41:07 -0700854
Jeff Layton2a37ef92011-10-19 15:29:23 -0400855 server->large_buf = false;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400856 buf = server->smallbuf;
Steve Frenchf01d5e12007-08-30 21:13:31 +0000857 pdu_length = 4; /* enough to get RFC1001 header */
Steve Frenchfda35942011-01-20 18:06:34 +0000858
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400859 length = cifs_read_from_socket(server, buf, pdu_length);
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400860 if (length < 0)
Steve Frenchfda35942011-01-20 18:06:34 +0000861 continue;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400862 server->total_read = length;
Steve French67010fb2005-04-28 22:41:09 -0700863
Pavel Shilovsky98bac622011-08-01 13:19:42 +0400864 /*
865 * The right amount was read from socket - 4 bytes,
866 * so we can now interpret the length field.
867 */
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400868 pdu_length = get_rfc1002_length(buf);
Steve French46810cb2005-04-28 22:41:09 -0700869
Jeff Laytonfe11e4c2011-10-11 06:41:32 -0400870 cFYI(1, "RFC1002 header 0x%x", pdu_length);
871 if (!is_smb_response(server, buf[0]))
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000872 continue;
Steve Frenche4eb2952005-04-28 22:41:09 -0700873
Jeff Layton89482a52011-10-19 15:28:57 -0400874 /* make sure we have enough to get to the MID */
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400875 if (pdu_length < HEADER_SIZE(server) - 1 - 4) {
Jeff Layton89482a52011-10-19 15:28:57 -0400876 cERROR(1, "SMB response too short (%u bytes)",
877 pdu_length);
878 cifs_reconnect(server);
879 wake_up(&server->response_q);
880 continue;
Steve Frenche4eb2952005-04-28 22:41:09 -0700881 }
Pavel Shilovskye7015fb2011-08-01 13:19:41 +0400882
Jeff Layton89482a52011-10-19 15:28:57 -0400883 /* read down to the MID */
Jeff Laytone28bc5b2011-10-19 15:30:07 -0400884 length = cifs_read_from_socket(server, buf + 4,
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400885 HEADER_SIZE(server) - 1 - 4);
Jeff Layton89482a52011-10-19 15:28:57 -0400886 if (length < 0)
887 continue;
Jeff Layton2a37ef92011-10-19 15:29:23 -0400888 server->total_read += length;
Jeff Layton89482a52011-10-19 15:28:57 -0400889
Pavel Shilovsky8aa26f32012-05-17 13:25:35 +0400890 mid_entry = server->ops->find_mid(server, buf);
Jeff Laytonc8054eb2011-10-19 15:29:31 -0400891
Jeff Layton44d22d82011-10-19 15:29:49 -0400892 if (!mid_entry || !mid_entry->receive)
893 length = standard_receive3(server, mid_entry);
894 else
895 length = mid_entry->receive(server, mid_entry);
896
Jeff Laytona52c1eb2011-10-11 06:41:32 -0400897 if (length < 0)
Steve Frenche4eb2952005-04-28 22:41:09 -0700898 continue;
899
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400900 if (server->large_buf)
Jeff Laytone9097ab2011-10-19 15:29:40 -0400901 buf = server->bigbuf;
Steve Frenche4eb2952005-04-28 22:41:09 -0700902
Steve Frenchfda35942011-01-20 18:06:34 +0000903 server->lstrp = jiffies;
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500904 if (mid_entry != NULL) {
Jeff Layton2a37ef92011-10-19 15:29:23 -0400905 if (!mid_entry->multiRsp || mid_entry->multiEnd)
906 mid_entry->callback(mid_entry);
Pavel Shilovsky7f0adb52012-05-28 15:50:10 +0400907 } else if (!server->ops->is_oplock_break ||
908 !server->ops->is_oplock_break(buf, server)) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000909 cERROR(1, "No task to wake, unknown frame received! "
Jeff Layton80975312011-01-11 07:24:02 -0500910 "NumMids %d", atomic_read(&midCount));
Pavel Shilovsky1887f602012-05-17 12:45:31 +0400911 cifs_dump_mem("Received Data is: ", buf,
912 HEADER_SIZE(server));
Steve French39798772006-05-31 22:40:51 +0000913#ifdef CONFIG_CIFS_DEBUG2
Pavel Shilovsky7f0adb52012-05-28 15:50:10 +0400914 if (server->ops->dump_detail)
915 server->ops->dump_detail(buf);
Steve French39798772006-05-31 22:40:51 +0000916 cifs_dump_mids(server);
917#endif /* CIFS_DEBUG2 */
Steve French50c2f752007-07-13 00:33:32 +0000918
Steve Frenche4eb2952005-04-28 22:41:09 -0700919 }
920 } /* end while !EXITING */
921
Justin P. Mattockfd62cb72011-02-24 22:15:02 -0800922 /* buffer usually freed in free_mid - need to free it here on exit */
Jeff Layton2a37ef92011-10-19 15:29:23 -0400923 cifs_buf_release(server->bigbuf);
924 if (server->smallbuf) /* no sense logging a debug message if NULL */
925 cifs_small_buf_release(server->smallbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -0400927 task_to_wake = xchg(&server->tsk, NULL);
Pavel Shilovsky762dfd12011-08-01 13:19:44 +0400928 clean_demultiplex_info(server);
Steve French50c2f752007-07-13 00:33:32 +0000929
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -0400930 /* if server->tsk was NULL then wait for a signal before exiting */
931 if (!task_to_wake) {
932 set_current_state(TASK_INTERRUPTIBLE);
933 while (!signal_pending(current)) {
934 schedule();
935 set_current_state(TASK_INTERRUPTIBLE);
936 }
937 set_current_state(TASK_RUNNING);
938 }
939
Jeff Layton0468a2c2008-12-01 07:09:35 -0500940 module_put_and_exit(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
Jeff Laytonc359cf32007-11-16 22:22:06 +0000943/* extract the host portion of the UNC string */
944static char *
945extract_hostname(const char *unc)
946{
947 const char *src;
948 char *dst, *delim;
949 unsigned int len;
950
951 /* skip double chars at beginning of string */
952 /* BB: check validity of these bytes? */
953 src = unc + 2;
954
955 /* delimiter between hostname and sharename is always '\\' now */
956 delim = strchr(src, '\\');
957 if (!delim)
958 return ERR_PTR(-EINVAL);
959
960 len = delim - src;
961 dst = kmalloc((len + 1), GFP_KERNEL);
962 if (dst == NULL)
963 return ERR_PTR(-ENOMEM);
964
965 memcpy(dst, src, len);
966 dst[len] = '\0';
967
968 return dst;
969}
970
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400971static int get_option_ul(substring_t args[], unsigned long *option)
972{
973 int rc;
974 char *string;
975
976 string = match_strdup(args);
977 if (string == NULL)
978 return -ENOMEM;
Sachin Prabhubfa890a2012-04-13 14:04:32 +0100979 rc = kstrtoul(string, 0, option);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -0400980 kfree(string);
981
982 return rc;
983}
984
985
986static int cifs_parse_security_flavors(char *value,
987 struct smb_vol *vol)
988{
989
990 substring_t args[MAX_OPT_ARGS];
991
992 switch (match_token(value, cifs_secflavor_tokens, args)) {
993 case Opt_sec_krb5:
994 vol->secFlg |= CIFSSEC_MAY_KRB5;
995 break;
996 case Opt_sec_krb5i:
997 vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MUST_SIGN;
998 break;
999 case Opt_sec_krb5p:
1000 /* vol->secFlg |= CIFSSEC_MUST_SEAL | CIFSSEC_MAY_KRB5; */
1001 cERROR(1, "Krb5 cifs privacy not supported");
1002 break;
1003 case Opt_sec_ntlmssp:
1004 vol->secFlg |= CIFSSEC_MAY_NTLMSSP;
1005 break;
1006 case Opt_sec_ntlmsspi:
1007 vol->secFlg |= CIFSSEC_MAY_NTLMSSP | CIFSSEC_MUST_SIGN;
1008 break;
1009 case Opt_ntlm:
1010 /* ntlm is default so can be turned off too */
1011 vol->secFlg |= CIFSSEC_MAY_NTLM;
1012 break;
1013 case Opt_sec_ntlmi:
1014 vol->secFlg |= CIFSSEC_MAY_NTLM | CIFSSEC_MUST_SIGN;
1015 break;
Jeff Layton76596242012-07-23 20:34:17 -04001016 case Opt_sec_ntlmv2:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001017 vol->secFlg |= CIFSSEC_MAY_NTLMV2;
1018 break;
1019 case Opt_sec_ntlmv2i:
1020 vol->secFlg |= CIFSSEC_MAY_NTLMV2 | CIFSSEC_MUST_SIGN;
1021 break;
1022#ifdef CONFIG_CIFS_WEAK_PW_HASH
1023 case Opt_sec_lanman:
1024 vol->secFlg |= CIFSSEC_MAY_LANMAN;
1025 break;
1026#endif
1027 case Opt_sec_none:
1028 vol->nullauth = 1;
1029 break;
1030 default:
1031 cERROR(1, "bad security option: %s", value);
1032 return 1;
1033 }
1034
1035 return 0;
1036}
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038static int
Jeff Layton15b6a472012-05-16 07:50:15 -04001039cifs_parse_cache_flavor(char *value, struct smb_vol *vol)
1040{
1041 substring_t args[MAX_OPT_ARGS];
1042
1043 switch (match_token(value, cifs_cacheflavor_tokens, args)) {
1044 case Opt_cache_loose:
1045 vol->direct_io = false;
1046 vol->strict_io = false;
1047 break;
1048 case Opt_cache_strict:
1049 vol->direct_io = false;
1050 vol->strict_io = true;
1051 break;
1052 case Opt_cache_none:
1053 vol->direct_io = true;
1054 vol->strict_io = false;
1055 break;
1056 default:
1057 cERROR(1, "bad cache= option: %s", value);
1058 return 1;
1059 }
1060 return 0;
1061}
1062
1063static int
Jeff Layton23db65f2012-05-15 12:20:51 -04001064cifs_parse_smb_version(char *value, struct smb_vol *vol)
1065{
1066 substring_t args[MAX_OPT_ARGS];
1067
1068 switch (match_token(value, cifs_smb_version_tokens, args)) {
1069 case Smb_1:
1070 vol->ops = &smb1_operations;
1071 vol->vals = &smb1_values;
1072 break;
Steve French1080ef72011-02-24 18:07:19 +00001073#ifdef CONFIG_CIFS_SMB2
1074 case Smb_21:
1075 vol->ops = &smb21_operations;
1076 vol->vals = &smb21_values;
1077 break;
1078#endif
Jeff Layton23db65f2012-05-15 12:20:51 -04001079 default:
1080 cERROR(1, "Unknown vers= option specified: %s", value);
1081 return 1;
1082 }
1083 return 0;
1084}
1085
1086static int
Sean Finneyb9468452011-04-11 13:19:32 +00001087cifs_parse_mount_options(const char *mountdata, const char *devname,
Steve French50c2f752007-07-13 00:33:32 +00001088 struct smb_vol *vol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001090 char *data, *end;
Vasily Averin957df452011-06-06 11:33:12 +04001091 char *mountdata_copy = NULL, *options;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 unsigned int temp_len, i, j;
1093 char separator[2];
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001094 short int override_uid = -1;
1095 short int override_gid = -1;
1096 bool uid_specified = false;
1097 bool gid_specified = false;
Jeff Laytond8162552012-03-23 14:40:56 -04001098 bool sloppy = false;
1099 char *invalid = NULL;
Jeff Layton88463992010-11-22 15:31:03 -05001100 char *nodename = utsname()->nodename;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001101 char *string = NULL;
1102 char *tmp_end, *value;
1103 char delim;
Jeff Layton296838b2012-05-16 07:53:01 -04001104 bool cache_specified = false;
1105 static bool cache_warned = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107 separator[0] = ',';
Steve French50c2f752007-07-13 00:33:32 +00001108 separator[1] = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001109 delim = separator[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Jeff Layton88463992010-11-22 15:31:03 -05001111 /*
1112 * does not have to be perfect mapping since field is
1113 * informational, only used for servers that do not support
1114 * port 445 and it can be overridden at mount time
1115 */
Jeff Layton1397f2e2011-01-07 11:30:28 -05001116 memset(vol->source_rfc1001_name, 0x20, RFC1001_NAME_LEN);
1117 for (i = 0; i < strnlen(nodename, RFC1001_NAME_LEN); i++)
Jeff Layton88463992010-11-22 15:31:03 -05001118 vol->source_rfc1001_name[i] = toupper(nodename[i]);
1119
Jeff Layton1397f2e2011-01-07 11:30:28 -05001120 vol->source_rfc1001_name[RFC1001_NAME_LEN] = 0;
Steve Frencha10faeb22005-08-22 21:38:31 -07001121 /* null target name indicates to use *SMBSERVR default called name
1122 if we end up sending RFC1001 session initialize */
1123 vol->target_rfc1001_name[0] = 0;
Jeff Layton3e4b3e12010-07-19 18:00:17 -04001124 vol->cred_uid = current_uid();
1125 vol->linux_uid = current_uid();
David Howellsa001e5b2008-11-14 10:38:47 +11001126 vol->linux_gid = current_gid();
Jeff Laytonf55ed1a2009-05-26 16:28:11 -04001127
1128 /* default to only allowing write access to owner of the mount */
1129 vol->dir_mode = vol->file_mode = S_IRUGO | S_IXUGO | S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 /* vol->retry default is 0 (i.e. "soft" limited retry not hard retry) */
Jeremy Allisonac670552005-06-22 17:26:35 -07001132 /* default is always to request posix paths. */
1133 vol->posix_paths = 1;
Jeff Laytona0c92172009-05-27 15:40:47 -04001134 /* default to using server inode numbers where available */
1135 vol->server_ino = 1;
Jeremy Allisonac670552005-06-22 17:26:35 -07001136
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05301137 vol->actimeo = CIFS_DEF_ACTIMEO;
1138
Jeff Layton23db65f2012-05-15 12:20:51 -04001139 /* FIXME: add autonegotiation -- for now, SMB1 is default */
1140 vol->ops = &smb1_operations;
1141 vol->vals = &smb1_values;
1142
Sean Finneyb9468452011-04-11 13:19:32 +00001143 if (!mountdata)
1144 goto cifs_parse_mount_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Sean Finneyb9468452011-04-11 13:19:32 +00001146 mountdata_copy = kstrndup(mountdata, PAGE_SIZE, GFP_KERNEL);
1147 if (!mountdata_copy)
1148 goto cifs_parse_mount_err;
1149
1150 options = mountdata_copy;
Pavel Shilovsky4906e502011-04-14 22:00:56 +04001151 end = options + strlen(options);
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001152
Steve French50c2f752007-07-13 00:33:32 +00001153 if (strncmp(options, "sep=", 4) == 0) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001154 if (options[4] != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 separator[0] = options[4];
1156 options += 5;
1157 } else {
Joe Perchesb6b38f72010-04-21 03:50:45 +00001158 cFYI(1, "Null separator not allowed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
1160 }
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001161 vol->backupuid_specified = false; /* no backup intent for a user */
1162 vol->backupgid_specified = false; /* no backup intent for a group */
Steve French50c2f752007-07-13 00:33:32 +00001163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 while ((data = strsep(&options, separator)) != NULL) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001165 substring_t args[MAX_OPT_ARGS];
1166 unsigned long option;
1167 int token;
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 if (!*data)
1170 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001172 token = match_token(data, cifs_mount_option_tokens, args);
1173
1174 switch (token) {
1175
1176 /* Ingnore the following */
1177 case Opt_ignore:
1178 break;
1179
1180 /* Boolean values */
1181 case Opt_user_xattr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 vol->no_xattr = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001183 break;
1184 case Opt_nouser_xattr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 vol->no_xattr = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001186 break;
1187 case Opt_forceuid:
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001188 override_uid = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001189 break;
1190 case Opt_noforceuid:
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001191 override_uid = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001192 break;
1193 case Opt_noblocksend:
Steve Frenchedf1ae42008-10-29 00:47:57 +00001194 vol->noblocksnd = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001195 break;
1196 case Opt_noautotune:
Steve Frenchedf1ae42008-10-29 00:47:57 +00001197 vol->noautotune = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001198 break;
1199 case Opt_hard:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 vol->retry = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001201 break;
1202 case Opt_soft:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 vol->retry = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001204 break;
1205 case Opt_perm:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 vol->noperm = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001207 break;
1208 case Opt_noperm:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 vol->noperm = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001210 break;
1211 case Opt_mapchars:
Steve French6a0b4822005-04-28 22:41:05 -07001212 vol->remap = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001213 break;
1214 case Opt_nomapchars:
Steve French6a0b4822005-04-28 22:41:05 -07001215 vol->remap = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001216 break;
1217 case Opt_sfu:
Steve French50c2f752007-07-13 00:33:32 +00001218 vol->sfu_emul = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001219 break;
1220 case Opt_nosfu:
Steve French50c2f752007-07-13 00:33:32 +00001221 vol->sfu_emul = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001222 break;
1223 case Opt_nodfs:
Steve French2c1b8612008-10-16 18:35:21 +00001224 vol->nodfs = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001225 break;
1226 case Opt_posixpaths:
Jeremy Allisonac670552005-06-22 17:26:35 -07001227 vol->posix_paths = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001228 break;
1229 case Opt_noposixpaths:
Jeremy Allisonac670552005-06-22 17:26:35 -07001230 vol->posix_paths = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001231 break;
1232 case Opt_nounix:
Steve Frenchc18c8422007-07-18 23:21:09 +00001233 vol->no_linux_ext = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001234 break;
1235 case Opt_nocase:
Steve French50c2f752007-07-13 00:33:32 +00001236 vol->nocase = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001237 break;
1238 case Opt_brl:
Steve Frenchc46fa8a2005-08-18 20:49:57 -07001239 vol->nobrl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001240 break;
1241 case Opt_nobrl:
Steve Frenchc46fa8a2005-08-18 20:49:57 -07001242 vol->nobrl = 1;
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +04001243 /*
1244 * turn off mandatory locking in mode
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001245 * if remote locking is turned off since the
Pavel Shilovsky5cfdddc2012-03-27 20:51:15 +04001246 * local vfs will do advisory
1247 */
Steve French50c2f752007-07-13 00:33:32 +00001248 if (vol->file_mode ==
1249 (S_IALLUGO & ~(S_ISUID | S_IXGRP)))
Steve Frenchd3485d32005-08-19 11:04:29 -07001250 vol->file_mode = S_IALLUGO;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001251 break;
1252 case Opt_forcemandatorylock:
Steve French13a6e422008-12-02 17:24:33 +00001253 vol->mand_lock = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001254 break;
1255 case Opt_setuids:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 vol->setuids = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001257 break;
1258 case Opt_nosetuids:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 vol->setuids = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001260 break;
1261 case Opt_dynperm:
Jeff Laytond0a9c072008-05-12 22:23:49 +00001262 vol->dynperm = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001263 break;
1264 case Opt_nodynperm:
Jeff Laytond0a9c072008-05-12 22:23:49 +00001265 vol->dynperm = false;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001266 break;
1267 case Opt_nohard:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 vol->retry = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001269 break;
1270 case Opt_nosoft:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 vol->retry = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001272 break;
1273 case Opt_nointr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 vol->intr = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001275 break;
1276 case Opt_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 vol->intr = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001278 break;
1279 case Opt_nostrictsync:
Steve Frenchbe652442009-02-23 15:21:59 +00001280 vol->nostrictsync = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001281 break;
1282 case Opt_strictsync:
Steve Frenchbe652442009-02-23 15:21:59 +00001283 vol->nostrictsync = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001284 break;
1285 case Opt_serverino:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 vol->server_ino = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001287 break;
1288 case Opt_noserverino:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 vol->server_ino = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001290 break;
1291 case Opt_rwpidforward:
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00001292 vol->rwpidforward = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001293 break;
1294 case Opt_cifsacl:
Steve French0a4b92c2006-01-12 15:44:21 -08001295 vol->cifs_acl = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001296 break;
1297 case Opt_nocifsacl:
Steve French0a4b92c2006-01-12 15:44:21 -08001298 vol->cifs_acl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001299 break;
1300 case Opt_acl:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 vol->no_psx_acl = 0;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001302 break;
1303 case Opt_noacl:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 vol->no_psx_acl = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001305 break;
1306 case Opt_locallease:
Steve French84210e92008-10-23 04:42:37 +00001307 vol->local_lease = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001308 break;
1309 case Opt_sign:
Steve French750d1152006-06-27 06:28:30 +00001310 vol->secFlg |= CIFSSEC_MUST_SIGN;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001311 break;
1312 case Opt_seal:
Steve French95b1cb92008-05-15 16:44:38 +00001313 /* we do not do the following in secFlags because seal
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001314 * is a per tree connection (mount) not a per socket
1315 * or per-smb connection option in the protocol
1316 * vol->secFlg |= CIFSSEC_MUST_SEAL;
1317 */
Steve French95b1cb92008-05-15 16:44:38 +00001318 vol->seal = 1;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001319 break;
1320 case Opt_direct:
Jeff Layton296838b2012-05-16 07:53:01 -04001321 cache_specified = true;
Jeff Layton15b6a472012-05-16 07:50:15 -04001322 vol->direct_io = true;
1323 vol->strict_io = false;
Jeff Layton09983b22012-05-16 07:53:00 -04001324 cERROR(1, "The \"directio\" option will be removed in "
1325 "3.7. Please switch to the \"cache=none\" "
1326 "option.");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001327 break;
1328 case Opt_strictcache:
Jeff Layton296838b2012-05-16 07:53:01 -04001329 cache_specified = true;
Jeff Layton15b6a472012-05-16 07:50:15 -04001330 vol->direct_io = false;
1331 vol->strict_io = true;
Jeff Layton09983b22012-05-16 07:53:00 -04001332 cERROR(1, "The \"strictcache\" option will be removed "
1333 "in 3.7. Please switch to the \"cache=strict\" "
1334 "option.");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001335 break;
1336 case Opt_noac:
Steve French50c2f752007-07-13 00:33:32 +00001337 printk(KERN_WARNING "CIFS: Mount option noac not "
1338 "supported. Instead set "
1339 "/proc/fs/cifs/LookupCacheEnabled to 0\n");
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001340 break;
1341 case Opt_fsc:
Suresh Jayaraman607a5692010-11-24 17:49:05 +05301342#ifndef CONFIG_CIFS_FSCACHE
Jeff Layton83fb0862011-06-08 07:35:24 -04001343 cERROR(1, "FS-Cache support needs CONFIG_CIFS_FSCACHE "
Suresh Jayaraman607a5692010-11-24 17:49:05 +05301344 "kernel config option set");
Sean Finneyb9468452011-04-11 13:19:32 +00001345 goto cifs_parse_mount_err;
Suresh Jayaraman607a5692010-11-24 17:49:05 +05301346#endif
Suresh Jayaramanfa1df752010-07-05 18:13:36 +05301347 vol->fsc = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001348 break;
1349 case Opt_mfsymlinks:
Stefan Metzmacher736a3322010-07-30 14:56:00 +02001350 vol->mfsymlinks = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001351 break;
1352 case Opt_multiuser:
Jeff Layton0eb8a132010-10-06 19:51:12 -04001353 vol->multiuser = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001354 break;
Jeff Laytond8162552012-03-23 14:40:56 -04001355 case Opt_sloppy:
1356 sloppy = true;
1357 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001358
1359 /* Numeric Values */
1360 case Opt_backupuid:
1361 if (get_option_ul(args, &option)) {
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001362 cERROR(1, "%s: Invalid backupuid value",
1363 __func__);
1364 goto cifs_parse_mount_err;
1365 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001366 vol->backupuid = option;
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001367 vol->backupuid_specified = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001368 break;
1369 case Opt_backupgid:
1370 if (get_option_ul(args, &option)) {
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001371 cERROR(1, "%s: Invalid backupgid value",
1372 __func__);
1373 goto cifs_parse_mount_err;
1374 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001375 vol->backupgid = option;
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05001376 vol->backupgid_specified = true;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001377 break;
1378 case Opt_uid:
1379 if (get_option_ul(args, &option)) {
1380 cERROR(1, "%s: Invalid uid value",
1381 __func__);
Sean Finneyb9468452011-04-11 13:19:32 +00001382 goto cifs_parse_mount_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001384 vol->linux_uid = option;
1385 uid_specified = true;
1386 break;
1387 case Opt_cruid:
1388 if (get_option_ul(args, &option)) {
1389 cERROR(1, "%s: Invalid cruid value",
1390 __func__);
1391 goto cifs_parse_mount_err;
1392 }
1393 vol->cred_uid = option;
1394 break;
1395 case Opt_gid:
1396 if (get_option_ul(args, &option)) {
1397 cERROR(1, "%s: Invalid gid value",
1398 __func__);
1399 goto cifs_parse_mount_err;
1400 }
1401 vol->linux_gid = option;
1402 gid_specified = true;
1403 break;
1404 case Opt_file_mode:
1405 if (get_option_ul(args, &option)) {
1406 cERROR(1, "%s: Invalid file_mode value",
1407 __func__);
1408 goto cifs_parse_mount_err;
1409 }
1410 vol->file_mode = option;
1411 break;
1412 case Opt_dirmode:
1413 if (get_option_ul(args, &option)) {
1414 cERROR(1, "%s: Invalid dir_mode value",
1415 __func__);
1416 goto cifs_parse_mount_err;
1417 }
1418 vol->dir_mode = option;
1419 break;
1420 case Opt_port:
1421 if (get_option_ul(args, &option)) {
1422 cERROR(1, "%s: Invalid port value",
1423 __func__);
1424 goto cifs_parse_mount_err;
1425 }
1426 vol->port = option;
1427 break;
1428 case Opt_rsize:
1429 if (get_option_ul(args, &option)) {
1430 cERROR(1, "%s: Invalid rsize value",
1431 __func__);
1432 goto cifs_parse_mount_err;
1433 }
1434 vol->rsize = option;
1435 break;
1436 case Opt_wsize:
1437 if (get_option_ul(args, &option)) {
1438 cERROR(1, "%s: Invalid wsize value",
1439 __func__);
1440 goto cifs_parse_mount_err;
1441 }
1442 vol->wsize = option;
1443 break;
1444 case Opt_actimeo:
1445 if (get_option_ul(args, &option)) {
1446 cERROR(1, "%s: Invalid actimeo value",
1447 __func__);
1448 goto cifs_parse_mount_err;
1449 }
1450 vol->actimeo = HZ * option;
1451 if (vol->actimeo > CIFS_MAX_ACTIMEO) {
1452 cERROR(1, "CIFS: attribute cache"
1453 "timeout too large");
1454 goto cifs_parse_mount_err;
1455 }
1456 break;
1457
1458 /* String Arguments */
1459
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001460 case Opt_blank_user:
1461 /* null user, ie. anonymous authentication */
1462 vol->nullauth = 1;
1463 vol->username = NULL;
1464 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001465 case Opt_user:
1466 string = match_strdup(args);
1467 if (string == NULL)
1468 goto out_nomem;
1469
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001470 if (strnlen(string, MAX_USERNAME_SIZE) >
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001471 MAX_USERNAME_SIZE) {
1472 printk(KERN_WARNING "CIFS: username too long\n");
1473 goto cifs_parse_mount_err;
1474 }
1475 vol->username = kstrdup(string, GFP_KERNEL);
1476 if (!vol->username) {
1477 printk(KERN_WARNING "CIFS: no memory "
1478 "for username\n");
1479 goto cifs_parse_mount_err;
1480 }
1481 break;
1482 case Opt_blank_pass:
1483 vol->password = NULL;
1484 break;
1485 case Opt_pass:
1486 /* passwords have to be handled differently
1487 * to allow the character used for deliminator
1488 * to be passed within them
1489 */
1490
1491 /* Obtain the value string */
1492 value = strchr(data, '=');
Sachin Prabhu10238072012-03-28 18:07:08 +01001493 value++;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001494
1495 /* Set tmp_end to end of the string */
1496 tmp_end = (char *) value + strlen(value);
1497
1498 /* Check if following character is the deliminator
1499 * If yes, we have encountered a double deliminator
1500 * reset the NULL character to the deliminator
1501 */
Suresh Jayaramane73f8432012-06-12 07:15:50 +05301502 if (tmp_end < end && tmp_end[1] == delim) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001503 tmp_end[0] = delim;
1504
Suresh Jayaramane73f8432012-06-12 07:15:50 +05301505 /* Keep iterating until we get to a single
1506 * deliminator OR the end
1507 */
1508 while ((tmp_end = strchr(tmp_end, delim))
1509 != NULL && (tmp_end[1] == delim)) {
1510 tmp_end = (char *) &tmp_end[2];
1511 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001512
Suresh Jayaramane73f8432012-06-12 07:15:50 +05301513 /* Reset var options to point to next element */
1514 if (tmp_end) {
1515 tmp_end[0] = '\0';
1516 options = (char *) &tmp_end[1];
1517 } else
1518 /* Reached the end of the mount option
1519 * string */
1520 options = end;
1521 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001522
1523 /* Now build new password string */
1524 temp_len = strlen(value);
1525 vol->password = kzalloc(temp_len+1, GFP_KERNEL);
1526 if (vol->password == NULL) {
1527 printk(KERN_WARNING "CIFS: no memory "
1528 "for password\n");
1529 goto cifs_parse_mount_err;
1530 }
1531
1532 for (i = 0, j = 0; i < temp_len; i++, j++) {
1533 vol->password[j] = value[i];
1534 if ((value[i] == delim) &&
1535 value[i+1] == delim)
1536 /* skip the second deliminator */
1537 i++;
1538 }
1539 vol->password[j] = '\0';
1540 break;
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001541 case Opt_blank_ip:
1542 vol->UNCip = NULL;
1543 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001544 case Opt_ip:
1545 string = match_strdup(args);
1546 if (string == NULL)
1547 goto out_nomem;
1548
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001549 if (strnlen(string, INET6_ADDRSTRLEN) >
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001550 INET6_ADDRSTRLEN) {
1551 printk(KERN_WARNING "CIFS: ip address "
1552 "too long\n");
1553 goto cifs_parse_mount_err;
1554 }
1555 vol->UNCip = kstrdup(string, GFP_KERNEL);
1556 if (!vol->UNCip) {
1557 printk(KERN_WARNING "CIFS: no memory "
1558 "for UNC IP\n");
1559 goto cifs_parse_mount_err;
1560 }
1561 break;
1562 case Opt_unc:
1563 string = match_strdup(args);
1564 if (string == NULL)
1565 goto out_nomem;
1566
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001567 temp_len = strnlen(string, 300);
1568 if (temp_len == 300) {
1569 printk(KERN_WARNING "CIFS: UNC name too long\n");
1570 goto cifs_parse_mount_err;
1571 }
1572
Sachin Prabhue4b41fb2012-04-04 01:58:56 +01001573 vol->UNC = kmalloc(temp_len+1, GFP_KERNEL);
1574 if (vol->UNC == NULL) {
1575 printk(KERN_WARNING "CIFS: no memory for UNC\n");
1576 goto cifs_parse_mount_err;
1577 }
1578 strcpy(vol->UNC, string);
1579
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001580 if (strncmp(string, "//", 2) == 0) {
1581 vol->UNC[0] = '\\';
1582 vol->UNC[1] = '\\';
1583 } else if (strncmp(string, "\\\\", 2) != 0) {
1584 printk(KERN_WARNING "CIFS: UNC Path does not "
1585 "begin with // or \\\\\n");
1586 goto cifs_parse_mount_err;
1587 }
1588
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001589 break;
1590 case Opt_domain:
1591 string = match_strdup(args);
1592 if (string == NULL)
1593 goto out_nomem;
1594
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001595 if (strnlen(string, 256) == 256) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001596 printk(KERN_WARNING "CIFS: domain name too"
1597 " long\n");
1598 goto cifs_parse_mount_err;
1599 }
1600
1601 vol->domainname = kstrdup(string, GFP_KERNEL);
1602 if (!vol->domainname) {
1603 printk(KERN_WARNING "CIFS: no memory "
1604 "for domainname\n");
1605 goto cifs_parse_mount_err;
1606 }
1607 cFYI(1, "Domain name set");
1608 break;
1609 case Opt_srcaddr:
1610 string = match_strdup(args);
1611 if (string == NULL)
1612 goto out_nomem;
1613
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001614 if (!cifs_convert_address(
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001615 (struct sockaddr *)&vol->srcaddr,
1616 string, strlen(string))) {
1617 printk(KERN_WARNING "CIFS: Could not parse"
1618 " srcaddr: %s\n", string);
1619 goto cifs_parse_mount_err;
1620 }
1621 break;
1622 case Opt_prefixpath:
1623 string = match_strdup(args);
1624 if (string == NULL)
1625 goto out_nomem;
1626
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001627 temp_len = strnlen(string, 1024);
1628 if (string[0] != '/')
1629 temp_len++; /* missing leading slash */
1630 if (temp_len > 1024) {
1631 printk(KERN_WARNING "CIFS: prefix too long\n");
1632 goto cifs_parse_mount_err;
1633 }
1634
1635 vol->prepath = kmalloc(temp_len+1, GFP_KERNEL);
1636 if (vol->prepath == NULL) {
1637 printk(KERN_WARNING "CIFS: no memory "
1638 "for path prefix\n");
1639 goto cifs_parse_mount_err;
1640 }
1641
1642 if (string[0] != '/') {
1643 vol->prepath[0] = '/';
1644 strcpy(vol->prepath+1, string);
1645 } else
1646 strcpy(vol->prepath, string);
1647
1648 break;
1649 case Opt_iocharset:
1650 string = match_strdup(args);
1651 if (string == NULL)
1652 goto out_nomem;
1653
Sachin Prabhu4fe9e962012-04-10 18:12:27 +01001654 if (strnlen(string, 1024) >= 65) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001655 printk(KERN_WARNING "CIFS: iocharset name "
1656 "too long.\n");
1657 goto cifs_parse_mount_err;
1658 }
1659
1660 if (strnicmp(string, "default", 7) != 0) {
1661 vol->iocharset = kstrdup(string,
1662 GFP_KERNEL);
1663 if (!vol->iocharset) {
1664 printk(KERN_WARNING "CIFS: no memory"
1665 "for charset\n");
1666 goto cifs_parse_mount_err;
1667 }
1668 }
1669 /* if iocharset not set then load_nls_default
1670 * is used by caller
1671 */
1672 cFYI(1, "iocharset set to %s", string);
1673 break;
1674 case Opt_sockopt:
1675 string = match_strdup(args);
1676 if (string == NULL)
1677 goto out_nomem;
1678
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001679 if (strnicmp(string, "TCP_NODELAY", 11) == 0)
1680 vol->sockopt_tcp_nodelay = 1;
1681 break;
1682 case Opt_netbiosname:
1683 string = match_strdup(args);
1684 if (string == NULL)
1685 goto out_nomem;
1686
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001687 memset(vol->source_rfc1001_name, 0x20,
1688 RFC1001_NAME_LEN);
1689 /*
1690 * FIXME: are there cases in which a comma can
1691 * be valid in workstation netbios name (and
1692 * need special handling)?
1693 */
1694 for (i = 0; i < RFC1001_NAME_LEN; i++) {
1695 /* don't ucase netbiosname for user */
1696 if (string[i] == 0)
1697 break;
1698 vol->source_rfc1001_name[i] = string[i];
1699 }
1700 /* The string has 16th byte zero still from
1701 * set at top of the function
1702 */
1703 if (i == RFC1001_NAME_LEN && string[i] != 0)
1704 printk(KERN_WARNING "CIFS: netbiosname"
1705 " longer than 15 truncated.\n");
1706
1707 break;
1708 case Opt_servern:
1709 /* servernetbiosname specified override *SMBSERVER */
1710 string = match_strdup(args);
1711 if (string == NULL)
1712 goto out_nomem;
1713
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001714 /* last byte, type, is 0x20 for servr type */
1715 memset(vol->target_rfc1001_name, 0x20,
1716 RFC1001_NAME_LEN_WITH_NULL);
1717
1718 /* BB are there cases in which a comma can be
1719 valid in this workstation netbios name
1720 (and need special handling)? */
1721
1722 /* user or mount helper must uppercase the
1723 netbios name */
1724 for (i = 0; i < 15; i++) {
1725 if (string[i] == 0)
1726 break;
1727 vol->target_rfc1001_name[i] = string[i];
1728 }
1729 /* The string has 16th byte zero still from
1730 set at top of the function */
1731 if (i == RFC1001_NAME_LEN && string[i] != 0)
1732 printk(KERN_WARNING "CIFS: server net"
1733 "biosname longer than 15 truncated.\n");
1734 break;
1735 case Opt_ver:
1736 string = match_strdup(args);
1737 if (string == NULL)
1738 goto out_nomem;
1739
Jeff Layton5249af32012-05-15 12:04:03 -04001740 if (strnicmp(string, "1", 1) == 0) {
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001741 /* This is the default */
1742 break;
1743 }
1744 /* For all other value, error */
1745 printk(KERN_WARNING "CIFS: Invalid version"
1746 " specified\n");
Sean Finneyb9468452011-04-11 13:19:32 +00001747 goto cifs_parse_mount_err;
Jeff Layton23db65f2012-05-15 12:20:51 -04001748 case Opt_vers:
1749 string = match_strdup(args);
1750 if (string == NULL)
1751 goto out_nomem;
1752
1753 if (cifs_parse_smb_version(string, vol) != 0)
1754 goto cifs_parse_mount_err;
1755 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001756 case Opt_sec:
1757 string = match_strdup(args);
1758 if (string == NULL)
1759 goto out_nomem;
1760
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001761 if (cifs_parse_security_flavors(string, vol) != 0)
1762 goto cifs_parse_mount_err;
1763 break;
Jeff Layton15b6a472012-05-16 07:50:15 -04001764 case Opt_cache:
Jeff Layton296838b2012-05-16 07:53:01 -04001765 cache_specified = true;
Jeff Layton15b6a472012-05-16 07:50:15 -04001766 string = match_strdup(args);
1767 if (string == NULL)
1768 goto out_nomem;
1769
1770 if (cifs_parse_cache_flavor(string, vol) != 0)
1771 goto cifs_parse_mount_err;
1772 break;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001773 default:
Jeff Laytond8162552012-03-23 14:40:56 -04001774 /*
1775 * An option we don't recognize. Save it off for later
1776 * if we haven't already found one
1777 */
1778 if (!invalid)
1779 invalid = data;
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001780 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 }
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001782 /* Free up any allocated string */
1783 kfree(string);
1784 string = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
Jeff Layton0eb8a132010-10-06 19:51:12 -04001786
Jeff Laytond8162552012-03-23 14:40:56 -04001787 if (!sloppy && invalid) {
1788 printk(KERN_ERR "CIFS: Unknown mount option \"%s\"\n", invalid);
1789 goto cifs_parse_mount_err;
1790 }
1791
Jeff Layton8a8798a2012-01-17 16:09:15 -05001792#ifndef CONFIG_KEYS
1793 /* Muliuser mounts require CONFIG_KEYS support */
1794 if (vol->multiuser) {
1795 cERROR(1, "Multiuser mounts require kernels with "
1796 "CONFIG_KEYS enabled.");
Sean Finneyb9468452011-04-11 13:19:32 +00001797 goto cifs_parse_mount_err;
Jeff Layton0eb8a132010-10-06 19:51:12 -04001798 }
Jeff Layton8a8798a2012-01-17 16:09:15 -05001799#endif
Jeff Layton0eb8a132010-10-06 19:51:12 -04001800
Steve Frenchfb8c4b12007-07-10 01:16:18 +00001801 if (vol->UNCip == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 vol->UNCip = &vol->UNC[2];
1803
Jeff Layton9b9d6b242009-07-31 06:56:09 -04001804 if (uid_specified)
1805 vol->override_uid = override_uid;
1806 else if (override_uid == 1)
1807 printk(KERN_NOTICE "CIFS: ignoring forceuid mount option "
1808 "specified with no uid= option.\n");
1809
1810 if (gid_specified)
1811 vol->override_gid = override_gid;
1812 else if (override_gid == 1)
1813 printk(KERN_NOTICE "CIFS: ignoring forcegid mount option "
1814 "specified with no gid= option.\n");
1815
Jeff Layton296838b2012-05-16 07:53:01 -04001816 /* FIXME: remove this block in 3.7 */
1817 if (!cache_specified && !cache_warned) {
1818 cache_warned = true;
1819 printk(KERN_NOTICE "CIFS: no cache= option specified, using "
1820 "\"cache=loose\". This default will change "
1821 "to \"cache=strict\" in 3.7.\n");
1822 }
1823
Sean Finneyb9468452011-04-11 13:19:32 +00001824 kfree(mountdata_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 return 0;
Sean Finneyb9468452011-04-11 13:19:32 +00001826
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001827out_nomem:
1828 printk(KERN_WARNING "Could not allocate temporary buffer\n");
Sean Finneyb9468452011-04-11 13:19:32 +00001829cifs_parse_mount_err:
Sachin Prabhu8830d7e2012-03-23 14:40:56 -04001830 kfree(string);
Sean Finneyb9468452011-04-11 13:19:32 +00001831 kfree(mountdata_copy);
1832 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833}
1834
Ben Greear3eb9a882010-09-01 17:06:02 -07001835/** Returns true if srcaddr isn't specified and rhs isn't
1836 * specified, or if srcaddr is specified and
1837 * matches the IP address of the rhs argument.
1838 */
Jeff Layton45151482010-07-06 20:43:02 -04001839static bool
Ben Greear3eb9a882010-09-01 17:06:02 -07001840srcip_matches(struct sockaddr *srcaddr, struct sockaddr *rhs)
1841{
1842 switch (srcaddr->sa_family) {
1843 case AF_UNSPEC:
1844 return (rhs->sa_family == AF_UNSPEC);
1845 case AF_INET: {
1846 struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr;
1847 struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs;
1848 return (saddr4->sin_addr.s_addr == vaddr4->sin_addr.s_addr);
1849 }
1850 case AF_INET6: {
1851 struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr;
1852 struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)&rhs;
1853 return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr);
1854 }
1855 default:
1856 WARN_ON(1);
1857 return false; /* don't expect to be here */
1858 }
1859}
1860
Pavel Shilovsky4b886132010-12-13 22:18:07 +03001861/*
1862 * If no port is specified in addr structure, we try to match with 445 port
1863 * and if it fails - with 139 ports. It should be called only if address
1864 * families of server and addr are equal.
1865 */
1866static bool
1867match_port(struct TCP_Server_Info *server, struct sockaddr *addr)
1868{
Steve French6da97912011-03-13 18:55:55 +00001869 __be16 port, *sport;
Pavel Shilovsky4b886132010-12-13 22:18:07 +03001870
1871 switch (addr->sa_family) {
1872 case AF_INET:
1873 sport = &((struct sockaddr_in *) &server->dstaddr)->sin_port;
1874 port = ((struct sockaddr_in *) addr)->sin_port;
1875 break;
1876 case AF_INET6:
1877 sport = &((struct sockaddr_in6 *) &server->dstaddr)->sin6_port;
1878 port = ((struct sockaddr_in6 *) addr)->sin6_port;
1879 break;
1880 default:
1881 WARN_ON(1);
1882 return false;
1883 }
1884
1885 if (!port) {
1886 port = htons(CIFS_PORT);
1887 if (port == *sport)
1888 return true;
1889
1890 port = htons(RFC1001_PORT);
1891 }
1892
1893 return port == *sport;
1894}
Ben Greear3eb9a882010-09-01 17:06:02 -07001895
1896static bool
1897match_address(struct TCP_Server_Info *server, struct sockaddr *addr,
1898 struct sockaddr *srcaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
Jeff Layton45151482010-07-06 20:43:02 -04001900 switch (addr->sa_family) {
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03001901 case AF_INET: {
1902 struct sockaddr_in *addr4 = (struct sockaddr_in *)addr;
1903 struct sockaddr_in *srv_addr4 =
1904 (struct sockaddr_in *)&server->dstaddr;
1905
1906 if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr)
Jeff Layton45151482010-07-06 20:43:02 -04001907 return false;
Jeff Layton45151482010-07-06 20:43:02 -04001908 break;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03001909 }
1910 case AF_INET6: {
1911 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr;
1912 struct sockaddr_in6 *srv_addr6 =
1913 (struct sockaddr_in6 *)&server->dstaddr;
1914
Jeff Layton45151482010-07-06 20:43:02 -04001915 if (!ipv6_addr_equal(&addr6->sin6_addr,
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03001916 &srv_addr6->sin6_addr))
Jeff Layton45151482010-07-06 20:43:02 -04001917 return false;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03001918 if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id)
Jeff Layton45151482010-07-06 20:43:02 -04001919 return false;
Jeff Layton45151482010-07-06 20:43:02 -04001920 break;
1921 }
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03001922 default:
1923 WARN_ON(1);
1924 return false; /* don't expect to be here */
1925 }
Jeff Layton45151482010-07-06 20:43:02 -04001926
Ben Greear3eb9a882010-09-01 17:06:02 -07001927 if (!srcip_matches(srcaddr, (struct sockaddr *)&server->srcaddr))
1928 return false;
1929
Jeff Layton45151482010-07-06 20:43:02 -04001930 return true;
1931}
1932
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04001933static bool
1934match_security(struct TCP_Server_Info *server, struct smb_vol *vol)
1935{
1936 unsigned int secFlags;
1937
1938 if (vol->secFlg & (~(CIFSSEC_MUST_SIGN | CIFSSEC_MUST_SEAL)))
1939 secFlags = vol->secFlg;
1940 else
1941 secFlags = global_secflags | vol->secFlg;
1942
1943 switch (server->secType) {
1944 case LANMAN:
1945 if (!(secFlags & (CIFSSEC_MAY_LANMAN|CIFSSEC_MAY_PLNTXT)))
1946 return false;
1947 break;
1948 case NTLMv2:
1949 if (!(secFlags & CIFSSEC_MAY_NTLMV2))
1950 return false;
1951 break;
1952 case NTLM:
1953 if (!(secFlags & CIFSSEC_MAY_NTLM))
1954 return false;
1955 break;
1956 case Kerberos:
1957 if (!(secFlags & CIFSSEC_MAY_KRB5))
1958 return false;
1959 break;
1960 case RawNTLMSSP:
1961 if (!(secFlags & CIFSSEC_MAY_NTLMSSP))
1962 return false;
1963 break;
1964 default:
1965 /* shouldn't happen */
1966 return false;
1967 }
1968
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001969 /* now check if signing mode is acceptable */
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04001970 if ((secFlags & CIFSSEC_MAY_SIGN) == 0 &&
Steve French96daf2b2011-05-27 04:34:02 +00001971 (server->sec_mode & SECMODE_SIGN_REQUIRED))
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04001972 return false;
1973 else if (((secFlags & CIFSSEC_MUST_SIGN) == CIFSSEC_MUST_SIGN) &&
Steve French96daf2b2011-05-27 04:34:02 +00001974 (server->sec_mode &
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04001975 (SECMODE_SIGN_ENABLED|SECMODE_SIGN_REQUIRED)) == 0)
1976 return false;
1977
1978 return true;
1979}
1980
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001981static int match_server(struct TCP_Server_Info *server, struct sockaddr *addr,
1982 struct smb_vol *vol)
1983{
Jeff Layton23db65f2012-05-15 12:20:51 -04001984 if ((server->vals != vol->vals) || (server->ops != vol->ops))
1985 return 0;
1986
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00001987 if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns))
1988 return 0;
1989
1990 if (!match_address(server, addr,
1991 (struct sockaddr *)&vol->srcaddr))
1992 return 0;
1993
1994 if (!match_port(server, addr))
1995 return 0;
1996
1997 if (!match_security(server, vol))
1998 return 0;
1999
2000 return 1;
2001}
2002
Jeff Layton45151482010-07-06 20:43:02 -04002003static struct TCP_Server_Info *
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002004cifs_find_tcp_session(struct sockaddr *addr, struct smb_vol *vol)
Jeff Layton45151482010-07-06 20:43:02 -04002005{
Jeff Laytone7ddee92008-11-14 13:44:38 -05002006 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302008 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton45151482010-07-06 20:43:02 -04002009 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002010 if (!match_server(server, addr, vol))
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002011 continue;
2012
Jeff Laytone7ddee92008-11-14 13:44:38 -05002013 ++server->srv_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302014 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesb6b38f72010-04-21 03:50:45 +00002015 cFYI(1, "Existing tcp session with server found");
Jeff Laytone7ddee92008-11-14 13:44:38 -05002016 return server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302018 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 return NULL;
2020}
2021
Jeff Layton14fbf502008-11-14 13:53:46 -05002022static void
Jeff Laytone7ddee92008-11-14 13:44:38 -05002023cifs_put_tcp_session(struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024{
Jeff Laytone7ddee92008-11-14 13:44:38 -05002025 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302027 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002028 if (--server->srv_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302029 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002030 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 }
Steve Frenchdea570e02008-05-06 22:05:51 +00002032
Rob Landleyf1d0c992011-01-22 15:44:05 -06002033 put_net(cifs_net_ns(server));
2034
Jeff Laytone7ddee92008-11-14 13:44:38 -05002035 list_del_init(&server->tcp_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302036 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytone7ddee92008-11-14 13:44:38 -05002037
Jeff Laytonc74093b2011-01-11 07:24:23 -05002038 cancel_delayed_work_sync(&server->echo);
2039
Jeff Laytone7ddee92008-11-14 13:44:38 -05002040 spin_lock(&GlobalMid_Lock);
2041 server->tcpStatus = CifsExiting;
2042 spin_unlock(&GlobalMid_Lock);
2043
Shirish Pargaonkard2b91522010-10-21 14:25:08 -05002044 cifs_crypto_shash_release(server);
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05302045 cifs_fscache_release_client_cookie(server);
2046
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05002047 kfree(server->session_key.response);
2048 server->session_key.response = NULL;
2049 server->session_key.len = 0;
2050
Jeff Laytone7ddee92008-11-14 13:44:38 -05002051 task = xchg(&server->tsk, NULL);
2052 if (task)
2053 force_sig(SIGKILL, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054}
2055
Jeff Layton63c038c2008-12-01 18:41:46 -05002056static struct TCP_Server_Info *
2057cifs_get_tcp_session(struct smb_vol *volume_info)
2058{
2059 struct TCP_Server_Info *tcp_ses = NULL;
Jeff Laytona9ac49d2009-01-22 14:43:21 -05002060 struct sockaddr_storage addr;
Jeff Layton63c038c2008-12-01 18:41:46 -05002061 struct sockaddr_in *sin_server = (struct sockaddr_in *) &addr;
2062 struct sockaddr_in6 *sin_server6 = (struct sockaddr_in6 *) &addr;
2063 int rc;
2064
Jeff Laytona9ac49d2009-01-22 14:43:21 -05002065 memset(&addr, 0, sizeof(struct sockaddr_storage));
Jeff Layton63c038c2008-12-01 18:41:46 -05002066
Joe Perchesb6b38f72010-04-21 03:50:45 +00002067 cFYI(1, "UNC: %s ip: %s", volume_info->UNC, volume_info->UNCip);
Jeff Layton1e68b2b2009-06-11 10:27:30 -04002068
Jeff Layton63c038c2008-12-01 18:41:46 -05002069 if (volume_info->UNCip && volume_info->UNC) {
Jeff Layton50d97162010-07-06 20:43:01 -04002070 rc = cifs_fill_sockaddr((struct sockaddr *)&addr,
2071 volume_info->UNCip,
David Howells67b76262010-07-22 18:33:01 +01002072 strlen(volume_info->UNCip),
Jeff Layton50d97162010-07-06 20:43:01 -04002073 volume_info->port);
Jeff Layton1e68b2b2009-06-11 10:27:30 -04002074 if (!rc) {
Jeff Layton63c038c2008-12-01 18:41:46 -05002075 /* we failed translating address */
2076 rc = -EINVAL;
2077 goto out_err;
2078 }
Jeff Layton63c038c2008-12-01 18:41:46 -05002079 } else if (volume_info->UNCip) {
2080 /* BB using ip addr as tcp_ses name to connect to the
2081 DFS root below */
Joe Perchesb6b38f72010-04-21 03:50:45 +00002082 cERROR(1, "Connecting to DFS root not implemented yet");
Jeff Layton63c038c2008-12-01 18:41:46 -05002083 rc = -EINVAL;
2084 goto out_err;
2085 } else /* which tcp_sess DFS root would we conect to */ {
Joe Perchesb6b38f72010-04-21 03:50:45 +00002086 cERROR(1, "CIFS mount error: No UNC path (e.g. -o "
2087 "unc=//192.168.1.100/public) specified");
Jeff Layton63c038c2008-12-01 18:41:46 -05002088 rc = -EINVAL;
2089 goto out_err;
2090 }
2091
2092 /* see if we already have a matching tcp_ses */
Jeff Laytondaf5b0b2010-07-06 20:43:02 -04002093 tcp_ses = cifs_find_tcp_session((struct sockaddr *)&addr, volume_info);
Jeff Layton63c038c2008-12-01 18:41:46 -05002094 if (tcp_ses)
2095 return tcp_ses;
2096
2097 tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL);
2098 if (!tcp_ses) {
2099 rc = -ENOMEM;
2100 goto out_err;
2101 }
2102
Shirish Pargaonkard2b91522010-10-21 14:25:08 -05002103 rc = cifs_crypto_shash_allocate(tcp_ses);
2104 if (rc) {
2105 cERROR(1, "could not setup hash structures rc %d", rc);
2106 goto out_err;
2107 }
2108
Jeff Layton23db65f2012-05-15 12:20:51 -04002109 tcp_ses->ops = volume_info->ops;
2110 tcp_ses->vals = volume_info->vals;
Rob Landleyf1d0c992011-01-22 15:44:05 -06002111 cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns));
Jeff Layton63c038c2008-12-01 18:41:46 -05002112 tcp_ses->hostname = extract_hostname(volume_info->UNC);
2113 if (IS_ERR(tcp_ses->hostname)) {
2114 rc = PTR_ERR(tcp_ses->hostname);
Shirish Pargaonkarf7c54452010-10-26 18:10:24 -05002115 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002116 }
2117
2118 tcp_ses->noblocksnd = volume_info->noblocksnd;
2119 tcp_ses->noautotune = volume_info->noautotune;
Steve French6a5fa2362010-01-01 01:28:43 +00002120 tcp_ses->tcp_nodelay = volume_info->sockopt_tcp_nodelay;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +03002121 tcp_ses->in_flight = 0;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +04002122 tcp_ses->credits = 1;
Jeff Layton63c038c2008-12-01 18:41:46 -05002123 init_waitqueue_head(&tcp_ses->response_q);
2124 init_waitqueue_head(&tcp_ses->request_q);
2125 INIT_LIST_HEAD(&tcp_ses->pending_mid_q);
2126 mutex_init(&tcp_ses->srv_mutex);
2127 memcpy(tcp_ses->workstation_RFC1001_name,
2128 volume_info->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
2129 memcpy(tcp_ses->server_RFC1001_name,
2130 volume_info->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL);
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -05002131 tcp_ses->session_estab = false;
Jeff Layton63c038c2008-12-01 18:41:46 -05002132 tcp_ses->sequence_number = 0;
Steve Frenchfda35942011-01-20 18:06:34 +00002133 tcp_ses->lstrp = jiffies;
Jeff Layton58fa0152012-05-01 17:41:16 -04002134 spin_lock_init(&tcp_ses->req_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002135 INIT_LIST_HEAD(&tcp_ses->tcp_ses_list);
2136 INIT_LIST_HEAD(&tcp_ses->smb_ses_list);
Jeff Laytonc74093b2011-01-11 07:24:23 -05002137 INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request);
Jeff Layton63c038c2008-12-01 18:41:46 -05002138
2139 /*
2140 * at this point we are the only ones with the pointer
2141 * to the struct since the kernel thread not created yet
2142 * no need to spinlock this init of tcpStatus or srv_count
2143 */
2144 tcp_ses->tcpStatus = CifsNew;
Ben Greear3eb9a882010-09-01 17:06:02 -07002145 memcpy(&tcp_ses->srcaddr, &volume_info->srcaddr,
2146 sizeof(tcp_ses->srcaddr));
Jeff Layton63c038c2008-12-01 18:41:46 -05002147 ++tcp_ses->srv_count;
2148
Jeff Laytona9ac49d2009-01-22 14:43:21 -05002149 if (addr.ss_family == AF_INET6) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00002150 cFYI(1, "attempting ipv6 connect");
Jeff Layton63c038c2008-12-01 18:41:46 -05002151 /* BB should we allow ipv6 on port 139? */
2152 /* other OS never observed in Wild doing 139 with v6 */
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002153 memcpy(&tcp_ses->dstaddr, sin_server6,
2154 sizeof(struct sockaddr_in6));
2155 } else
2156 memcpy(&tcp_ses->dstaddr, sin_server,
2157 sizeof(struct sockaddr_in));
2158
2159 rc = ip_connect(tcp_ses);
Jeff Layton63c038c2008-12-01 18:41:46 -05002160 if (rc < 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00002161 cERROR(1, "Error connecting to socket. Aborting operation");
Shirish Pargaonkarf7c54452010-10-26 18:10:24 -05002162 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002163 }
2164
2165 /*
2166 * since we're in a cifs function already, we know that
2167 * this will succeed. No need for try_module_get().
2168 */
2169 __module_get(THIS_MODULE);
Al Viro7c97c202011-06-21 08:51:28 -04002170 tcp_ses->tsk = kthread_run(cifs_demultiplex_thread,
Jeff Layton63c038c2008-12-01 18:41:46 -05002171 tcp_ses, "cifsd");
2172 if (IS_ERR(tcp_ses->tsk)) {
2173 rc = PTR_ERR(tcp_ses->tsk);
Joe Perchesb6b38f72010-04-21 03:50:45 +00002174 cERROR(1, "error %d create cifsd thread", rc);
Jeff Layton63c038c2008-12-01 18:41:46 -05002175 module_put(THIS_MODULE);
Shirish Pargaonkarf7c54452010-10-26 18:10:24 -05002176 goto out_err_crypto_release;
Jeff Layton63c038c2008-12-01 18:41:46 -05002177 }
Steve Frenchfd88ce92011-04-12 01:01:14 +00002178 tcp_ses->tcpStatus = CifsNeedNegotiate;
Jeff Layton63c038c2008-12-01 18:41:46 -05002179
2180 /* thread spawned, put it on the list */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302181 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002182 list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302183 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton63c038c2008-12-01 18:41:46 -05002184
Suresh Jayaraman488f1d2d2010-07-05 18:12:15 +05302185 cifs_fscache_get_client_cookie(tcp_ses);
2186
Jeff Laytonc74093b2011-01-11 07:24:23 -05002187 /* queue echo request delayed work */
Jeff Laytonda472fc2012-03-23 14:40:53 -04002188 queue_delayed_work(cifsiod_wq, &tcp_ses->echo, SMB_ECHO_INTERVAL);
Jeff Laytonc74093b2011-01-11 07:24:23 -05002189
Jeff Layton63c038c2008-12-01 18:41:46 -05002190 return tcp_ses;
2191
Shirish Pargaonkarf7c54452010-10-26 18:10:24 -05002192out_err_crypto_release:
Shirish Pargaonkard2b91522010-10-21 14:25:08 -05002193 cifs_crypto_shash_release(tcp_ses);
2194
Rob Landleyf1d0c992011-01-22 15:44:05 -06002195 put_net(cifs_net_ns(tcp_ses));
2196
Jeff Layton63c038c2008-12-01 18:41:46 -05002197out_err:
2198 if (tcp_ses) {
Steve French8347a5c2009-10-06 18:31:29 +00002199 if (!IS_ERR(tcp_ses->hostname))
2200 kfree(tcp_ses->hostname);
Jeff Layton63c038c2008-12-01 18:41:46 -05002201 if (tcp_ses->ssocket)
2202 sock_release(tcp_ses->ssocket);
2203 kfree(tcp_ses);
2204 }
2205 return ERR_PTR(rc);
2206}
2207
Steve French96daf2b2011-05-27 04:34:02 +00002208static int match_session(struct cifs_ses *ses, struct smb_vol *vol)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002209{
2210 switch (ses->server->secType) {
2211 case Kerberos:
2212 if (vol->cred_uid != ses->cred_uid)
2213 return 0;
2214 break;
2215 default:
Jeff Layton04febab2012-01-17 16:09:15 -05002216 /* NULL username means anonymous session */
2217 if (ses->user_name == NULL) {
2218 if (!vol->nullauth)
2219 return 0;
2220 break;
2221 }
2222
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002223 /* anything else takes username/password */
Jeff Layton04febab2012-01-17 16:09:15 -05002224 if (strncmp(ses->user_name,
2225 vol->username ? vol->username : "",
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002226 MAX_USERNAME_SIZE))
2227 return 0;
2228 if (strlen(vol->username) != 0 &&
2229 ses->password != NULL &&
2230 strncmp(ses->password,
2231 vol->password ? vol->password : "",
2232 MAX_PASSWORD_SIZE))
2233 return 0;
2234 }
2235 return 1;
2236}
2237
Steve French96daf2b2011-05-27 04:34:02 +00002238static struct cifs_ses *
Jeff Layton4ff67b72010-07-06 20:43:02 -04002239cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb_vol *vol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
Steve French96daf2b2011-05-27 04:34:02 +00002241 struct cifs_ses *ses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302243 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton4ff67b72010-07-06 20:43:02 -04002244 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002245 if (!match_session(ses, vol))
2246 continue;
Jeff Layton14fbf502008-11-14 13:53:46 -05002247 ++ses->ses_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302248 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002249 return ses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302251 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 return NULL;
2253}
2254
Jeff Layton14fbf502008-11-14 13:53:46 -05002255static void
Steve French96daf2b2011-05-27 04:34:02 +00002256cifs_put_smb_ses(struct cifs_ses *ses)
Jeff Layton14fbf502008-11-14 13:53:46 -05002257{
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04002258 unsigned int xid;
Jeff Layton14fbf502008-11-14 13:53:46 -05002259 struct TCP_Server_Info *server = ses->server;
2260
Jeff Laytonac3aa2f2012-07-23 13:14:28 -04002261 cFYI(1, "%s: ses_count=%d", __func__, ses->ses_count);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302262 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002263 if (--ses->ses_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302264 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002265 return;
2266 }
2267
2268 list_del_init(&ses->smb_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302269 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton14fbf502008-11-14 13:53:46 -05002270
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04002271 if (ses->status == CifsGood && server->ops->logoff) {
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002272 xid = get_xid();
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04002273 server->ops->logoff(xid, ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002274 _free_xid(xid);
Jeff Layton14fbf502008-11-14 13:53:46 -05002275 }
2276 sesInfoFree(ses);
2277 cifs_put_tcp_session(server);
2278}
2279
Jeff Layton8a8798a2012-01-17 16:09:15 -05002280#ifdef CONFIG_KEYS
2281
2282/* strlen("cifs:a:") + INET6_ADDRSTRLEN + 1 */
2283#define CIFSCREDS_DESC_SIZE (7 + INET6_ADDRSTRLEN + 1)
2284
2285/* Populate username and pw fields from keyring if possible */
2286static int
2287cifs_set_cifscreds(struct smb_vol *vol, struct cifs_ses *ses)
2288{
2289 int rc = 0;
2290 char *desc, *delim, *payload;
2291 ssize_t len;
2292 struct key *key;
2293 struct TCP_Server_Info *server = ses->server;
2294 struct sockaddr_in *sa;
2295 struct sockaddr_in6 *sa6;
2296 struct user_key_payload *upayload;
2297
2298 desc = kmalloc(CIFSCREDS_DESC_SIZE, GFP_KERNEL);
2299 if (!desc)
2300 return -ENOMEM;
2301
2302 /* try to find an address key first */
2303 switch (server->dstaddr.ss_family) {
2304 case AF_INET:
2305 sa = (struct sockaddr_in *)&server->dstaddr;
2306 sprintf(desc, "cifs:a:%pI4", &sa->sin_addr.s_addr);
2307 break;
2308 case AF_INET6:
2309 sa6 = (struct sockaddr_in6 *)&server->dstaddr;
2310 sprintf(desc, "cifs:a:%pI6c", &sa6->sin6_addr.s6_addr);
2311 break;
2312 default:
2313 cFYI(1, "Bad ss_family (%hu)", server->dstaddr.ss_family);
2314 rc = -EINVAL;
2315 goto out_err;
2316 }
2317
2318 cFYI(1, "%s: desc=%s", __func__, desc);
2319 key = request_key(&key_type_logon, desc, "");
2320 if (IS_ERR(key)) {
2321 if (!ses->domainName) {
2322 cFYI(1, "domainName is NULL");
2323 rc = PTR_ERR(key);
2324 goto out_err;
2325 }
2326
2327 /* didn't work, try to find a domain key */
2328 sprintf(desc, "cifs:d:%s", ses->domainName);
2329 cFYI(1, "%s: desc=%s", __func__, desc);
2330 key = request_key(&key_type_logon, desc, "");
2331 if (IS_ERR(key)) {
2332 rc = PTR_ERR(key);
2333 goto out_err;
2334 }
2335 }
2336
2337 down_read(&key->sem);
2338 upayload = key->payload.data;
2339 if (IS_ERR_OR_NULL(upayload)) {
Jeff Layton4edc53c2012-02-07 06:30:51 -05002340 rc = upayload ? PTR_ERR(upayload) : -EINVAL;
Jeff Layton8a8798a2012-01-17 16:09:15 -05002341 goto out_key_put;
2342 }
2343
2344 /* find first : in payload */
2345 payload = (char *)upayload->data;
2346 delim = strnchr(payload, upayload->datalen, ':');
2347 cFYI(1, "payload=%s", payload);
2348 if (!delim) {
2349 cFYI(1, "Unable to find ':' in payload (datalen=%d)",
2350 upayload->datalen);
2351 rc = -EINVAL;
2352 goto out_key_put;
2353 }
2354
2355 len = delim - payload;
2356 if (len > MAX_USERNAME_SIZE || len <= 0) {
Randy Dunlap000f9bb2012-01-30 19:50:01 -08002357 cFYI(1, "Bad value from username search (len=%zd)", len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002358 rc = -EINVAL;
2359 goto out_key_put;
2360 }
2361
2362 vol->username = kstrndup(payload, len, GFP_KERNEL);
2363 if (!vol->username) {
Randy Dunlap000f9bb2012-01-30 19:50:01 -08002364 cFYI(1, "Unable to allocate %zd bytes for username", len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002365 rc = -ENOMEM;
2366 goto out_key_put;
2367 }
2368 cFYI(1, "%s: username=%s", __func__, vol->username);
2369
2370 len = key->datalen - (len + 1);
2371 if (len > MAX_PASSWORD_SIZE || len <= 0) {
Randy Dunlap000f9bb2012-01-30 19:50:01 -08002372 cFYI(1, "Bad len for password search (len=%zd)", len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002373 rc = -EINVAL;
2374 kfree(vol->username);
2375 vol->username = NULL;
2376 goto out_key_put;
2377 }
2378
2379 ++delim;
2380 vol->password = kstrndup(delim, len, GFP_KERNEL);
2381 if (!vol->password) {
Randy Dunlap000f9bb2012-01-30 19:50:01 -08002382 cFYI(1, "Unable to allocate %zd bytes for password", len);
Jeff Layton8a8798a2012-01-17 16:09:15 -05002383 rc = -ENOMEM;
2384 kfree(vol->username);
2385 vol->username = NULL;
2386 goto out_key_put;
2387 }
2388
2389out_key_put:
2390 up_read(&key->sem);
2391 key_put(key);
2392out_err:
2393 kfree(desc);
2394 cFYI(1, "%s: returning %d", __func__, rc);
2395 return rc;
2396}
2397#else /* ! CONFIG_KEYS */
2398static inline int
2399cifs_set_cifscreds(struct smb_vol *vol __attribute__((unused)),
2400 struct cifs_ses *ses __attribute__((unused)))
2401{
2402 return -ENOSYS;
2403}
2404#endif /* CONFIG_KEYS */
2405
Steve Frenchd9b94202011-04-12 01:24:57 +00002406static bool warned_on_ntlm; /* globals init to false automatically */
2407
Steve French96daf2b2011-05-27 04:34:02 +00002408static struct cifs_ses *
Jeff Layton36988c72010-04-24 07:57:43 -04002409cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb_vol *volume_info)
2410{
Pavel Shilovsky286170a2012-05-25 10:43:58 +04002411 int rc = -ENOMEM;
2412 unsigned int xid;
Steve French96daf2b2011-05-27 04:34:02 +00002413 struct cifs_ses *ses;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002414 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
2415 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
Jeff Layton36988c72010-04-24 07:57:43 -04002416
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002417 xid = get_xid();
Jeff Layton36988c72010-04-24 07:57:43 -04002418
Jeff Layton4ff67b72010-07-06 20:43:02 -04002419 ses = cifs_find_smb_ses(server, volume_info);
Jeff Layton36988c72010-04-24 07:57:43 -04002420 if (ses) {
2421 cFYI(1, "Existing smb sess found (status=%d)", ses->status);
2422
Jeff Layton36988c72010-04-24 07:57:43 -04002423 mutex_lock(&ses->session_mutex);
Jeff Layton198b5682010-04-24 07:57:48 -04002424 rc = cifs_negotiate_protocol(xid, ses);
2425 if (rc) {
2426 mutex_unlock(&ses->session_mutex);
2427 /* problem -- put our ses reference */
2428 cifs_put_smb_ses(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002429 free_xid(xid);
Jeff Layton198b5682010-04-24 07:57:48 -04002430 return ERR_PTR(rc);
2431 }
Jeff Layton36988c72010-04-24 07:57:43 -04002432 if (ses->need_reconnect) {
2433 cFYI(1, "Session needs reconnect");
2434 rc = cifs_setup_session(xid, ses,
2435 volume_info->local_nls);
2436 if (rc) {
2437 mutex_unlock(&ses->session_mutex);
2438 /* problem -- put our reference */
2439 cifs_put_smb_ses(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002440 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04002441 return ERR_PTR(rc);
2442 }
2443 }
2444 mutex_unlock(&ses->session_mutex);
Jeff Layton460cf342010-09-14 11:38:24 -04002445
2446 /* existing SMB ses has a server reference already */
2447 cifs_put_tcp_session(server);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002448 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04002449 return ses;
2450 }
2451
2452 cFYI(1, "Existing smb sess not found");
2453 ses = sesInfoAlloc();
2454 if (ses == NULL)
2455 goto get_ses_fail;
2456
2457 /* new SMB session uses our server ref */
2458 ses->server = server;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002459 if (server->dstaddr.ss_family == AF_INET6)
2460 sprintf(ses->serverName, "%pI6", &addr6->sin6_addr);
Jeff Layton36988c72010-04-24 07:57:43 -04002461 else
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002462 sprintf(ses->serverName, "%pI4", &addr->sin_addr);
Jeff Layton36988c72010-04-24 07:57:43 -04002463
Steve French8727c8a2011-02-25 01:11:56 -06002464 if (volume_info->username) {
2465 ses->user_name = kstrdup(volume_info->username, GFP_KERNEL);
2466 if (!ses->user_name)
2467 goto get_ses_fail;
2468 }
Jeff Layton36988c72010-04-24 07:57:43 -04002469
2470 /* volume_info->password freed at unmount */
2471 if (volume_info->password) {
2472 ses->password = kstrdup(volume_info->password, GFP_KERNEL);
2473 if (!ses->password)
2474 goto get_ses_fail;
2475 }
2476 if (volume_info->domainname) {
Shirish Pargaonkard3686d52010-10-28 09:53:07 -05002477 ses->domainName = kstrdup(volume_info->domainname, GFP_KERNEL);
2478 if (!ses->domainName)
2479 goto get_ses_fail;
Jeff Layton36988c72010-04-24 07:57:43 -04002480 }
Jeff Layton3e4b3e12010-07-19 18:00:17 -04002481 ses->cred_uid = volume_info->cred_uid;
Jeff Layton36988c72010-04-24 07:57:43 -04002482 ses->linux_uid = volume_info->linux_uid;
Steve Frenchd9b94202011-04-12 01:24:57 +00002483
2484 /* ntlmv2 is much stronger than ntlm security, and has been broadly
2485 supported for many years, time to update default security mechanism */
2486 if ((volume_info->secFlg == 0) && warned_on_ntlm == false) {
2487 warned_on_ntlm = true;
2488 cERROR(1, "default security mechanism requested. The default "
2489 "security mechanism will be upgraded from ntlm to "
Steve French225de112012-01-03 23:08:24 -06002490 "ntlmv2 in kernel release 3.3");
Steve Frenchd9b94202011-04-12 01:24:57 +00002491 }
Jeff Layton36988c72010-04-24 07:57:43 -04002492 ses->overrideSecFlg = volume_info->secFlg;
2493
2494 mutex_lock(&ses->session_mutex);
Jeff Layton198b5682010-04-24 07:57:48 -04002495 rc = cifs_negotiate_protocol(xid, ses);
2496 if (!rc)
2497 rc = cifs_setup_session(xid, ses, volume_info->local_nls);
Jeff Layton36988c72010-04-24 07:57:43 -04002498 mutex_unlock(&ses->session_mutex);
Steve Frenchc8e56f12010-09-08 21:10:58 +00002499 if (rc)
Jeff Layton36988c72010-04-24 07:57:43 -04002500 goto get_ses_fail;
2501
2502 /* success, put it on the list */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302503 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton36988c72010-04-24 07:57:43 -04002504 list_add(&ses->smb_ses_list, &server->smb_ses_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302505 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton36988c72010-04-24 07:57:43 -04002506
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002507 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04002508 return ses;
2509
2510get_ses_fail:
2511 sesInfoFree(ses);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002512 free_xid(xid);
Jeff Layton36988c72010-04-24 07:57:43 -04002513 return ERR_PTR(rc);
2514}
2515
Steve French96daf2b2011-05-27 04:34:02 +00002516static int match_tcon(struct cifs_tcon *tcon, const char *unc)
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002517{
2518 if (tcon->tidStatus == CifsExiting)
2519 return 0;
2520 if (strncmp(tcon->treeName, unc, MAX_TREE_SIZE))
2521 return 0;
2522 return 1;
2523}
2524
Steve French96daf2b2011-05-27 04:34:02 +00002525static struct cifs_tcon *
2526cifs_find_tcon(struct cifs_ses *ses, const char *unc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527{
2528 struct list_head *tmp;
Steve French96daf2b2011-05-27 04:34:02 +00002529 struct cifs_tcon *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302531 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002532 list_for_each(tmp, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +00002533 tcon = list_entry(tmp, struct cifs_tcon, tcon_list);
Pavel Shilovsky37bb04e2011-05-05 09:55:11 +00002534 if (!match_tcon(tcon, unc))
Jeff Laytonf1987b42008-11-15 11:12:47 -05002535 continue;
Jeff Laytonf1987b42008-11-15 11:12:47 -05002536 ++tcon->tc_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302537 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 return tcon;
2539 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302540 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 return NULL;
2542}
2543
Jeff Laytonf1987b42008-11-15 11:12:47 -05002544static void
Steve French96daf2b2011-05-27 04:34:02 +00002545cifs_put_tcon(struct cifs_tcon *tcon)
Jeff Laytonf1987b42008-11-15 11:12:47 -05002546{
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002547 unsigned int xid;
Steve French96daf2b2011-05-27 04:34:02 +00002548 struct cifs_ses *ses = tcon->ses;
Jeff Laytonf1987b42008-11-15 11:12:47 -05002549
Jeff Laytonac3aa2f2012-07-23 13:14:28 -04002550 cFYI(1, "%s: tc_count=%d", __func__, tcon->tc_count);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302551 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002552 if (--tcon->tc_count > 0) {
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302553 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002554 return;
2555 }
2556
2557 list_del_init(&tcon->tcon_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302558 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002559
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002560 xid = get_xid();
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002561 if (ses->server->ops->tree_disconnect)
2562 ses->server->ops->tree_disconnect(xid, tcon);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002563 _free_xid(xid);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002564
Suresh Jayaramand03382c2010-07-05 18:12:27 +05302565 cifs_fscache_release_super_cookie(tcon);
Steve French9f841592010-07-23 20:37:53 +00002566 tconInfoFree(tcon);
Jeff Laytonf1987b42008-11-15 11:12:47 -05002567 cifs_put_smb_ses(ses);
2568}
2569
Steve French96daf2b2011-05-27 04:34:02 +00002570static struct cifs_tcon *
2571cifs_get_tcon(struct cifs_ses *ses, struct smb_vol *volume_info)
Jeff Laytond00c28d2010-04-24 07:57:44 -04002572{
2573 int rc, xid;
Steve French96daf2b2011-05-27 04:34:02 +00002574 struct cifs_tcon *tcon;
Jeff Laytond00c28d2010-04-24 07:57:44 -04002575
2576 tcon = cifs_find_tcon(ses, volume_info->UNC);
2577 if (tcon) {
2578 cFYI(1, "Found match on UNC path");
2579 /* existing tcon already has a reference */
2580 cifs_put_smb_ses(ses);
2581 if (tcon->seal != volume_info->seal)
2582 cERROR(1, "transport encryption setting "
2583 "conflicts with existing tid");
2584 return tcon;
2585 }
2586
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002587 if (!ses->server->ops->tree_connect) {
2588 rc = -ENOSYS;
2589 goto out_fail;
2590 }
2591
Jeff Laytond00c28d2010-04-24 07:57:44 -04002592 tcon = tconInfoAlloc();
2593 if (tcon == NULL) {
2594 rc = -ENOMEM;
2595 goto out_fail;
2596 }
2597
2598 tcon->ses = ses;
2599 if (volume_info->password) {
2600 tcon->password = kstrdup(volume_info->password, GFP_KERNEL);
2601 if (!tcon->password) {
2602 rc = -ENOMEM;
2603 goto out_fail;
2604 }
2605 }
2606
2607 if (strchr(volume_info->UNC + 3, '\\') == NULL
2608 && strchr(volume_info->UNC + 3, '/') == NULL) {
2609 cERROR(1, "Missing share name");
2610 rc = -ENODEV;
2611 goto out_fail;
2612 }
2613
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002614 /*
2615 * BB Do we need to wrap session_mutex around this TCon call and Unix
2616 * SetFS as we do on SessSetup and reconnect?
2617 */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002618 xid = get_xid();
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002619 rc = ses->server->ops->tree_connect(xid, ses, volume_info->UNC, tcon,
2620 volume_info->local_nls);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002621 free_xid(xid);
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002622 cFYI(1, "Tcon rc = %d", rc);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002623 if (rc)
2624 goto out_fail;
2625
2626 if (volume_info->nodfs) {
2627 tcon->Flags &= ~SMB_SHARE_IS_IN_DFS;
2628 cFYI(1, "DFS disabled (%d)", tcon->Flags);
2629 }
2630 tcon->seal = volume_info->seal;
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002631 /*
2632 * We can have only one retry value for a connection to a share so for
2633 * resources mounted more than once to the same server share the last
2634 * value passed in for the retry flag is used.
2635 */
Jeff Laytond00c28d2010-04-24 07:57:44 -04002636 tcon->retry = volume_info->retry;
2637 tcon->nocase = volume_info->nocase;
2638 tcon->local_lease = volume_info->local_lease;
2639
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302640 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002641 list_add(&tcon->tcon_list, &ses->tcon_list);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05302642 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytond00c28d2010-04-24 07:57:44 -04002643
Suresh Jayaramand03382c2010-07-05 18:12:27 +05302644 cifs_fscache_get_super_cookie(tcon);
2645
Jeff Laytond00c28d2010-04-24 07:57:44 -04002646 return tcon;
2647
2648out_fail:
2649 tconInfoFree(tcon);
2650 return ERR_PTR(rc);
2651}
2652
Jeff Layton9d002df2010-10-06 19:51:11 -04002653void
2654cifs_put_tlink(struct tcon_link *tlink)
2655{
2656 if (!tlink || IS_ERR(tlink))
2657 return;
2658
2659 if (!atomic_dec_and_test(&tlink->tl_count) ||
2660 test_bit(TCON_LINK_IN_TREE, &tlink->tl_flags)) {
2661 tlink->tl_time = jiffies;
2662 return;
2663 }
2664
2665 if (!IS_ERR(tlink_tcon(tlink)))
2666 cifs_put_tcon(tlink_tcon(tlink));
2667 kfree(tlink);
2668 return;
2669}
Jeff Laytond00c28d2010-04-24 07:57:44 -04002670
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002671static inline struct tcon_link *
Pavel Shilovskycd518752011-06-09 12:58:53 +04002672cifs_sb_master_tlink(struct cifs_sb_info *cifs_sb)
2673{
2674 return cifs_sb->master_tlink;
2675}
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002676
2677static int
2678compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data)
2679{
2680 struct cifs_sb_info *old = CIFS_SB(sb);
2681 struct cifs_sb_info *new = mnt_data->cifs_sb;
2682
2683 if ((sb->s_flags & CIFS_MS_MASK) != (mnt_data->flags & CIFS_MS_MASK))
2684 return 0;
2685
2686 if ((old->mnt_cifs_flags & CIFS_MOUNT_MASK) !=
2687 (new->mnt_cifs_flags & CIFS_MOUNT_MASK))
2688 return 0;
2689
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002690 /*
Jeff Layton5eba8ab2011-10-19 15:30:26 -04002691 * We want to share sb only if we don't specify an r/wsize or
2692 * specified r/wsize is greater than or equal to existing one.
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002693 */
2694 if (new->wsize && new->wsize < old->wsize)
2695 return 0;
2696
Jeff Layton5eba8ab2011-10-19 15:30:26 -04002697 if (new->rsize && new->rsize < old->rsize)
2698 return 0;
2699
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002700 if (old->mnt_uid != new->mnt_uid || old->mnt_gid != new->mnt_gid)
2701 return 0;
2702
2703 if (old->mnt_file_mode != new->mnt_file_mode ||
2704 old->mnt_dir_mode != new->mnt_dir_mode)
2705 return 0;
2706
2707 if (strcmp(old->local_nls->charset, new->local_nls->charset))
2708 return 0;
2709
2710 if (old->actimeo != new->actimeo)
2711 return 0;
2712
2713 return 1;
2714}
2715
2716int
2717cifs_match_super(struct super_block *sb, void *data)
2718{
2719 struct cifs_mnt_data *mnt_data = (struct cifs_mnt_data *)data;
2720 struct smb_vol *volume_info;
2721 struct cifs_sb_info *cifs_sb;
2722 struct TCP_Server_Info *tcp_srv;
Steve French96daf2b2011-05-27 04:34:02 +00002723 struct cifs_ses *ses;
2724 struct cifs_tcon *tcon;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002725 struct tcon_link *tlink;
2726 struct sockaddr_storage addr;
2727 int rc = 0;
2728
2729 memset(&addr, 0, sizeof(struct sockaddr_storage));
2730
2731 spin_lock(&cifs_tcp_ses_lock);
2732 cifs_sb = CIFS_SB(sb);
2733 tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
2734 if (IS_ERR(tlink)) {
2735 spin_unlock(&cifs_tcp_ses_lock);
2736 return rc;
2737 }
2738 tcon = tlink_tcon(tlink);
2739 ses = tcon->ses;
2740 tcp_srv = ses->server;
2741
2742 volume_info = mnt_data->vol;
2743
2744 if (!volume_info->UNCip || !volume_info->UNC)
2745 goto out;
2746
2747 rc = cifs_fill_sockaddr((struct sockaddr *)&addr,
2748 volume_info->UNCip,
2749 strlen(volume_info->UNCip),
2750 volume_info->port);
2751 if (!rc)
2752 goto out;
2753
2754 if (!match_server(tcp_srv, (struct sockaddr *)&addr, volume_info) ||
2755 !match_session(ses, volume_info) ||
2756 !match_tcon(tcon, volume_info->UNC)) {
2757 rc = 0;
2758 goto out;
2759 }
2760
2761 rc = compare_mount_options(sb, mnt_data);
2762out:
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002763 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf484b5d02011-07-11 10:16:34 -04002764 cifs_put_tlink(tlink);
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04002765 return rc;
2766}
2767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768int
Pavel Shilovskyb669f332012-05-27 20:21:53 +04002769get_dfs_path(const unsigned int xid, struct cifs_ses *ses, const char *old_path,
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002770 const struct nls_table *nls_codepage, unsigned int *num_referrals,
2771 struct dfs_info3_param **referrals, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772{
2773 char *temp_unc;
2774 int rc = 0;
2775
Pavel Shilovskyb669f332012-05-27 20:21:53 +04002776 if (!ses->server->ops->tree_connect || !ses->server->ops->get_dfs_refer)
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002777 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002779 *num_referrals = 0;
2780 *referrals = NULL;
2781
2782 if (ses->ipc_tid == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 temp_unc = kmalloc(2 /* for slashes */ +
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002784 strnlen(ses->serverName, SERVER_NAME_LEN_WITH_NULL * 2)
2785 + 1 + 4 /* slash IPC$ */ + 2, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 if (temp_unc == NULL)
2787 return -ENOMEM;
2788 temp_unc[0] = '\\';
2789 temp_unc[1] = '\\';
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002790 strcpy(temp_unc + 2, ses->serverName);
2791 strcpy(temp_unc + 2 + strlen(ses->serverName), "\\IPC$");
2792 rc = ses->server->ops->tree_connect(xid, ses, temp_unc, NULL,
2793 nls_codepage);
2794 cFYI(1, "Tcon rc = %d ipc_tid = %d", rc, ses->ipc_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 kfree(temp_unc);
2796 }
2797 if (rc == 0)
Pavel Shilovskyb669f332012-05-27 20:21:53 +04002798 rc = ses->server->ops->get_dfs_refer(xid, ses, old_path,
2799 referrals, num_referrals,
2800 nls_codepage, remap);
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002801 /*
2802 * BB - map targetUNCs to dfs_info3 structures, here or in
Pavel Shilovskyb669f332012-05-27 20:21:53 +04002803 * ses->server->ops->get_dfs_refer.
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04002804 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
2806 return rc;
2807}
2808
Jeff Layton09e50d52008-07-23 10:11:19 -04002809#ifdef CONFIG_DEBUG_LOCK_ALLOC
2810static struct lock_class_key cifs_key[2];
2811static struct lock_class_key cifs_slock_key[2];
2812
2813static inline void
2814cifs_reclassify_socket4(struct socket *sock)
2815{
2816 struct sock *sk = sock->sk;
2817 BUG_ON(sock_owned_by_user(sk));
2818 sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS",
2819 &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]);
2820}
2821
2822static inline void
2823cifs_reclassify_socket6(struct socket *sock)
2824{
2825 struct sock *sk = sock->sk;
2826 BUG_ON(sock_owned_by_user(sk));
2827 sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS",
2828 &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]);
2829}
2830#else
2831static inline void
2832cifs_reclassify_socket4(struct socket *sock)
2833{
2834}
2835
2836static inline void
2837cifs_reclassify_socket6(struct socket *sock)
2838{
2839}
2840#endif
2841
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842/* See RFC1001 section 14 on representation of Netbios names */
Steve French50c2f752007-07-13 00:33:32 +00002843static void rfc1002mangle(char *target, char *source, unsigned int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844{
Steve French50c2f752007-07-13 00:33:32 +00002845 unsigned int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
Steve French50c2f752007-07-13 00:33:32 +00002847 for (i = 0, j = 0; i < (length); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 /* mask a nibble at a time and encode */
2849 target[j] = 'A' + (0x0F & (source[i] >> 4));
2850 target[j+1] = 'A' + (0x0F & source[i]);
Steve French50c2f752007-07-13 00:33:32 +00002851 j += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 }
2853
2854}
2855
Ben Greear3eb9a882010-09-01 17:06:02 -07002856static int
2857bind_socket(struct TCP_Server_Info *server)
2858{
2859 int rc = 0;
2860 if (server->srcaddr.ss_family != AF_UNSPEC) {
2861 /* Bind to the specified local IP address */
2862 struct socket *socket = server->ssocket;
2863 rc = socket->ops->bind(socket,
2864 (struct sockaddr *) &server->srcaddr,
2865 sizeof(server->srcaddr));
2866 if (rc < 0) {
2867 struct sockaddr_in *saddr4;
2868 struct sockaddr_in6 *saddr6;
2869 saddr4 = (struct sockaddr_in *)&server->srcaddr;
2870 saddr6 = (struct sockaddr_in6 *)&server->srcaddr;
2871 if (saddr6->sin6_family == AF_INET6)
2872 cERROR(1, "cifs: "
Jeff Laytonac3aa2f2012-07-23 13:14:28 -04002873 "Failed to bind to: %pI6c, error: %d",
Ben Greear3eb9a882010-09-01 17:06:02 -07002874 &saddr6->sin6_addr, rc);
2875 else
2876 cERROR(1, "cifs: "
Jeff Laytonac3aa2f2012-07-23 13:14:28 -04002877 "Failed to bind to: %pI4, error: %d",
Ben Greear3eb9a882010-09-01 17:06:02 -07002878 &saddr4->sin_addr.s_addr, rc);
2879 }
2880 }
2881 return rc;
2882}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
2884static int
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002885ip_rfc1001_connect(struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886{
2887 int rc = 0;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002888 /*
2889 * some servers require RFC1001 sessinit before sending
2890 * negprot - BB check reconnection in case where second
2891 * sessinit is sent but no second negprot
2892 */
2893 struct rfc1002_session_packet *ses_init_buf;
2894 struct smb_hdr *smb_buf;
2895 ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet),
2896 GFP_KERNEL);
2897 if (ses_init_buf) {
2898 ses_init_buf->trailer.session_req.called_len = 32;
2899
2900 if (server->server_RFC1001_name &&
2901 server->server_RFC1001_name[0] != 0)
2902 rfc1002mangle(ses_init_buf->trailer.
2903 session_req.called_name,
2904 server->server_RFC1001_name,
2905 RFC1001_NAME_LEN_WITH_NULL);
2906 else
2907 rfc1002mangle(ses_init_buf->trailer.
2908 session_req.called_name,
2909 DEFAULT_CIFS_CALLED_NAME,
2910 RFC1001_NAME_LEN_WITH_NULL);
2911
2912 ses_init_buf->trailer.session_req.calling_len = 32;
2913
2914 /*
2915 * calling name ends in null (byte 16) from old smb
2916 * convention.
2917 */
2918 if (server->workstation_RFC1001_name &&
2919 server->workstation_RFC1001_name[0] != 0)
2920 rfc1002mangle(ses_init_buf->trailer.
2921 session_req.calling_name,
2922 server->workstation_RFC1001_name,
2923 RFC1001_NAME_LEN_WITH_NULL);
2924 else
2925 rfc1002mangle(ses_init_buf->trailer.
2926 session_req.calling_name,
2927 "LINUX_CIFS_CLNT",
2928 RFC1001_NAME_LEN_WITH_NULL);
2929
2930 ses_init_buf->trailer.session_req.scope1 = 0;
2931 ses_init_buf->trailer.session_req.scope2 = 0;
2932 smb_buf = (struct smb_hdr *)ses_init_buf;
2933
2934 /* sizeof RFC1002_SESSION_REQUEST with no scope */
Steve Frenchbe8e3b02011-04-29 05:40:20 +00002935 smb_buf->smb_buf_length = cpu_to_be32(0x81000044);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002936 rc = smb_send(server, smb_buf, 0x44);
2937 kfree(ses_init_buf);
2938 /*
2939 * RFC1001 layer in at least one server
2940 * requires very short break before negprot
2941 * presumably because not expecting negprot
2942 * to follow so fast. This is a simple
2943 * solution that works without
2944 * complicating the code and causes no
2945 * significant slowing down on mount
2946 * for everyone else
2947 */
2948 usleep_range(1000, 2000);
2949 }
2950 /*
2951 * else the negprot may still work without this
2952 * even though malloc failed
2953 */
2954
2955 return rc;
2956}
2957
2958static int
2959generic_ip_connect(struct TCP_Server_Info *server)
2960{
2961 int rc = 0;
Steve French6da97912011-03-13 18:55:55 +00002962 __be16 sport;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002963 int slen, sfamily;
Jeff Laytonbcf4b102008-12-01 18:42:15 -05002964 struct socket *socket = server->ssocket;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002965 struct sockaddr *saddr;
2966
2967 saddr = (struct sockaddr *) &server->dstaddr;
2968
2969 if (server->dstaddr.ss_family == AF_INET6) {
2970 sport = ((struct sockaddr_in6 *) saddr)->sin6_port;
2971 slen = sizeof(struct sockaddr_in6);
2972 sfamily = AF_INET6;
2973 } else {
2974 sport = ((struct sockaddr_in *) saddr)->sin_port;
2975 slen = sizeof(struct sockaddr_in);
2976 sfamily = AF_INET;
2977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
Jeff Laytonbcf4b102008-12-01 18:42:15 -05002979 if (socket == NULL) {
Rob Landleyf1d0c992011-01-22 15:44:05 -06002980 rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM,
2981 IPPROTO_TCP, &socket, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 if (rc < 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00002983 cERROR(1, "Error %d creating socket", rc);
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002984 server->ssocket = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 }
Jeff Laytonbcf4b102008-12-01 18:42:15 -05002987
2988 /* BB other socket options to set KEEPALIVE, NODELAY? */
Joe Perchesb6b38f72010-04-21 03:50:45 +00002989 cFYI(1, "Socket created");
Jeff Laytonbcf4b102008-12-01 18:42:15 -05002990 server->ssocket = socket;
2991 socket->sk->sk_allocation = GFP_NOFS;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03002992 if (sfamily == AF_INET6)
2993 cifs_reclassify_socket6(socket);
2994 else
2995 cifs_reclassify_socket4(socket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 }
2997
Ben Greear3eb9a882010-09-01 17:06:02 -07002998 rc = bind_socket(server);
2999 if (rc < 0)
3000 return rc;
3001
Jeff Laytond5c56052008-12-01 18:42:33 -05003002 /*
3003 * Eventually check for other socket options to change from
3004 * the default. sock_setsockopt not used because it expects
3005 * user space buffer
3006 */
3007 socket->sk->sk_rcvtimeo = 7 * HZ;
Steve Frenchda505c32009-01-19 03:49:35 +00003008 socket->sk->sk_sndtimeo = 5 * HZ;
Steve French6a5fa2362010-01-01 01:28:43 +00003009
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003010 /* make the bufsizes depend on wsize/rsize and max requests */
3011 if (server->noautotune) {
3012 if (socket->sk->sk_sndbuf < (200 * 1024))
3013 socket->sk->sk_sndbuf = 200 * 1024;
3014 if (socket->sk->sk_rcvbuf < (140 * 1024))
3015 socket->sk->sk_rcvbuf = 140 * 1024;
3016 }
3017
Steve French6a5fa2362010-01-01 01:28:43 +00003018 if (server->tcp_nodelay) {
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003019 int val = 1;
Steve French6a5fa2362010-01-01 01:28:43 +00003020 rc = kernel_setsockopt(socket, SOL_TCP, TCP_NODELAY,
3021 (char *)&val, sizeof(val));
3022 if (rc)
Joe Perchesb6b38f72010-04-21 03:50:45 +00003023 cFYI(1, "set TCP_NODELAY socket option error %d", rc);
Steve French6a5fa2362010-01-01 01:28:43 +00003024 }
3025
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003026 cFYI(1, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx",
3027 socket->sk->sk_sndbuf,
3028 socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo);
3029
Jeff Laytonee1b3ea2011-06-21 07:18:26 -04003030 rc = socket->ops->connect(socket, saddr, slen, 0);
3031 if (rc < 0) {
3032 cFYI(1, "Error %d connecting to server", rc);
3033 sock_release(socket);
3034 server->ssocket = NULL;
3035 return rc;
3036 }
3037
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003038 if (sport == htons(RFC1001_PORT))
3039 rc = ip_rfc1001_connect(server);
Steve French50c2f752007-07-13 00:33:32 +00003040
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 return rc;
3042}
3043
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003044static int
3045ip_connect(struct TCP_Server_Info *server)
3046{
Steve French6da97912011-03-13 18:55:55 +00003047 __be16 *sport;
Pavel Shilovskya9f1b852010-12-13 19:08:35 +03003048 struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr;
3049 struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr;
3050
3051 if (server->dstaddr.ss_family == AF_INET6)
3052 sport = &addr6->sin6_port;
3053 else
3054 sport = &addr->sin_port;
3055
3056 if (*sport == 0) {
3057 int rc;
3058
3059 /* try with 445 port at first */
3060 *sport = htons(CIFS_PORT);
3061
3062 rc = generic_ip_connect(server);
3063 if (rc >= 0)
3064 return rc;
3065
3066 /* if it failed, try with 139 port */
3067 *sport = htons(RFC1001_PORT);
3068 }
3069
3070 return generic_ip_connect(server);
3071}
3072
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003073void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon,
Al Viro2c6292a2011-06-17 09:05:48 -04003074 struct cifs_sb_info *cifs_sb, struct smb_vol *vol_info)
Steve French8af18972007-02-14 04:42:51 +00003075{
3076 /* if we are reconnecting then should we check to see if
3077 * any requested capabilities changed locally e.g. via
3078 * remount but we can not do much about it here
3079 * if they have (even if we could detect it by the following)
3080 * Perhaps we could add a backpointer to array of sb from tcon
3081 * or if we change to make all sb to same share the same
3082 * sb as NFS - then we only have one backpointer to sb.
3083 * What if we wanted to mount the server share twice once with
3084 * and once without posixacls or posix paths? */
3085 __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French50c2f752007-07-13 00:33:32 +00003086
Steve Frenchc18c8422007-07-18 23:21:09 +00003087 if (vol_info && vol_info->no_linux_ext) {
3088 tcon->fsUnixInfo.Capability = 0;
3089 tcon->unix_ext = 0; /* Unix Extensions disabled */
Joe Perchesb6b38f72010-04-21 03:50:45 +00003090 cFYI(1, "Linux protocol extensions disabled");
Steve Frenchc18c8422007-07-18 23:21:09 +00003091 return;
3092 } else if (vol_info)
3093 tcon->unix_ext = 1; /* Unix Extensions supported */
3094
3095 if (tcon->unix_ext == 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00003096 cFYI(1, "Unix extensions disabled so not set on reconnect");
Steve Frenchc18c8422007-07-18 23:21:09 +00003097 return;
3098 }
Steve French50c2f752007-07-13 00:33:32 +00003099
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003100 if (!CIFSSMBQFSUnixInfo(xid, tcon)) {
Steve French8af18972007-02-14 04:42:51 +00003101 __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability);
Steve French6848b732011-05-26 18:38:54 +00003102 cFYI(1, "unix caps which server supports %lld", cap);
Steve French8af18972007-02-14 04:42:51 +00003103 /* check for reconnect case in which we do not
3104 want to change the mount behavior if we can avoid it */
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003105 if (vol_info == NULL) {
Steve French50c2f752007-07-13 00:33:32 +00003106 /* turn off POSIX ACL and PATHNAMES if not set
Steve French8af18972007-02-14 04:42:51 +00003107 originally at mount time */
3108 if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0)
3109 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
Igor Mammedov11b6d642008-02-15 19:06:04 +00003110 if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
3111 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
Joe Perchesb6b38f72010-04-21 03:50:45 +00003112 cERROR(1, "POSIXPATH support change");
Steve French8af18972007-02-14 04:42:51 +00003113 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
Igor Mammedov11b6d642008-02-15 19:06:04 +00003114 } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00003115 cERROR(1, "possible reconnect error");
3116 cERROR(1, "server disabled POSIX path support");
Igor Mammedov11b6d642008-02-15 19:06:04 +00003117 }
Steve French8af18972007-02-14 04:42:51 +00003118 }
Steve French50c2f752007-07-13 00:33:32 +00003119
Steve French6848b732011-05-26 18:38:54 +00003120 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
3121 cERROR(1, "per-share encryption not supported yet");
3122
Steve French8af18972007-02-14 04:42:51 +00003123 cap &= CIFS_UNIX_CAP_MASK;
Steve French75865f8c2007-06-24 18:30:48 +00003124 if (vol_info && vol_info->no_psx_acl)
Steve French8af18972007-02-14 04:42:51 +00003125 cap &= ~CIFS_UNIX_POSIX_ACL_CAP;
Steve French75865f8c2007-06-24 18:30:48 +00003126 else if (CIFS_UNIX_POSIX_ACL_CAP & cap) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00003127 cFYI(1, "negotiated posix acl support");
Al Viro2c6292a2011-06-17 09:05:48 -04003128 if (cifs_sb)
3129 cifs_sb->mnt_cifs_flags |=
3130 CIFS_MOUNT_POSIXACL;
Steve French8af18972007-02-14 04:42:51 +00003131 }
3132
Steve French75865f8c2007-06-24 18:30:48 +00003133 if (vol_info && vol_info->posix_paths == 0)
Steve French8af18972007-02-14 04:42:51 +00003134 cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP;
Steve French75865f8c2007-06-24 18:30:48 +00003135 else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00003136 cFYI(1, "negotiate posix pathnames");
Al Viro2c6292a2011-06-17 09:05:48 -04003137 if (cifs_sb)
3138 cifs_sb->mnt_cifs_flags |=
Steve French8af18972007-02-14 04:42:51 +00003139 CIFS_MOUNT_POSIX_PATHS;
3140 }
Steve French50c2f752007-07-13 00:33:32 +00003141
Joe Perchesb6b38f72010-04-21 03:50:45 +00003142 cFYI(1, "Negotiate caps 0x%x", (int)cap);
Steve French8af18972007-02-14 04:42:51 +00003143#ifdef CONFIG_CIFS_DEBUG2
Steve French75865f8c2007-06-24 18:30:48 +00003144 if (cap & CIFS_UNIX_FCNTL_CAP)
Joe Perchesb6b38f72010-04-21 03:50:45 +00003145 cFYI(1, "FCNTL cap");
Steve French75865f8c2007-06-24 18:30:48 +00003146 if (cap & CIFS_UNIX_EXTATTR_CAP)
Joe Perchesb6b38f72010-04-21 03:50:45 +00003147 cFYI(1, "EXTATTR cap");
Steve French75865f8c2007-06-24 18:30:48 +00003148 if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP)
Joe Perchesb6b38f72010-04-21 03:50:45 +00003149 cFYI(1, "POSIX path cap");
Steve French75865f8c2007-06-24 18:30:48 +00003150 if (cap & CIFS_UNIX_XATTR_CAP)
Joe Perchesb6b38f72010-04-21 03:50:45 +00003151 cFYI(1, "XATTR cap");
Steve French75865f8c2007-06-24 18:30:48 +00003152 if (cap & CIFS_UNIX_POSIX_ACL_CAP)
Joe Perchesb6b38f72010-04-21 03:50:45 +00003153 cFYI(1, "POSIX ACL cap");
Steve French75865f8c2007-06-24 18:30:48 +00003154 if (cap & CIFS_UNIX_LARGE_READ_CAP)
Joe Perchesb6b38f72010-04-21 03:50:45 +00003155 cFYI(1, "very large read cap");
Steve French75865f8c2007-06-24 18:30:48 +00003156 if (cap & CIFS_UNIX_LARGE_WRITE_CAP)
Joe Perchesb6b38f72010-04-21 03:50:45 +00003157 cFYI(1, "very large write cap");
Steve French6848b732011-05-26 18:38:54 +00003158 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP)
3159 cFYI(1, "transport encryption cap");
3160 if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)
3161 cFYI(1, "mandatory transport encryption cap");
Steve French8af18972007-02-14 04:42:51 +00003162#endif /* CIFS_DEBUG2 */
3163 if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) {
Steve French442aa312007-09-24 20:25:46 +00003164 if (vol_info == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00003165 cFYI(1, "resetting capabilities failed");
Steve French442aa312007-09-24 20:25:46 +00003166 } else
Joe Perchesb6b38f72010-04-21 03:50:45 +00003167 cERROR(1, "Negotiating Unix capabilities "
Jeff Laytonac3aa2f2012-07-23 13:14:28 -04003168 "with the server failed. Consider "
3169 "mounting with the Unix Extensions "
3170 "disabled if problems are found "
Steve French5a44b312007-09-20 15:16:24 +00003171 "by specifying the nounix mount "
Joe Perchesb6b38f72010-04-21 03:50:45 +00003172 "option.");
Steve French5a44b312007-09-20 15:16:24 +00003173
Steve French8af18972007-02-14 04:42:51 +00003174 }
3175 }
3176}
3177
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003178void cifs_setup_cifs_sb(struct smb_vol *pvolume_info,
3179 struct cifs_sb_info *cifs_sb)
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -04003180{
Jeff Layton2de970f2010-10-06 19:51:12 -04003181 INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks);
3182
Al Viro2ced6f62011-06-17 09:20:04 -04003183 spin_lock_init(&cifs_sb->tlink_tree_lock);
3184 cifs_sb->tlink_tree = RB_ROOT;
3185
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003186 /*
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003187 * Temporarily set r/wsize for matching superblock. If we end up using
3188 * new sb then client will later negotiate it downward if needed.
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003189 */
Jeff Layton5eba8ab2011-10-19 15:30:26 -04003190 cifs_sb->rsize = pvolume_info->rsize;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +04003191 cifs_sb->wsize = pvolume_info->wsize;
3192
Steve French3b795212008-11-13 19:45:32 +00003193 cifs_sb->mnt_uid = pvolume_info->linux_uid;
3194 cifs_sb->mnt_gid = pvolume_info->linux_gid;
3195 cifs_sb->mnt_file_mode = pvolume_info->file_mode;
3196 cifs_sb->mnt_dir_mode = pvolume_info->dir_mode;
Al Viro5206efd2011-07-26 03:22:14 -04003197 cFYI(1, "file mode: 0x%hx dir mode: 0x%hx",
Joe Perchesb6b38f72010-04-21 03:50:45 +00003198 cifs_sb->mnt_file_mode, cifs_sb->mnt_dir_mode);
Steve French3b795212008-11-13 19:45:32 +00003199
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05303200 cifs_sb->actimeo = pvolume_info->actimeo;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003201 cifs_sb->local_nls = pvolume_info->local_nls;
Suresh Jayaraman6d20e842010-12-01 14:42:28 +05303202
Steve French3b795212008-11-13 19:45:32 +00003203 if (pvolume_info->noperm)
3204 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_PERM;
3205 if (pvolume_info->setuids)
3206 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SET_UID;
3207 if (pvolume_info->server_ino)
3208 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SERVER_INUM;
3209 if (pvolume_info->remap)
3210 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SPECIAL_CHR;
3211 if (pvolume_info->no_xattr)
3212 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_XATTR;
3213 if (pvolume_info->sfu_emul)
3214 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UNX_EMUL;
3215 if (pvolume_info->nobrl)
3216 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_BRL;
Steve Frenchbe652442009-02-23 15:21:59 +00003217 if (pvolume_info->nostrictsync)
Steve French4717bed2009-02-24 14:44:19 +00003218 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOSSYNC;
Steve French13a6e422008-12-02 17:24:33 +00003219 if (pvolume_info->mand_lock)
3220 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOPOSIXBRL;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00003221 if (pvolume_info->rwpidforward)
3222 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RWPIDFORWARD;
Steve French3b795212008-11-13 19:45:32 +00003223 if (pvolume_info->cifs_acl)
3224 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_ACL;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01003225 if (pvolume_info->backupuid_specified) {
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05003226 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPUID;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01003227 cifs_sb->mnt_backupuid = pvolume_info->backupuid;
3228 }
3229 if (pvolume_info->backupgid_specified) {
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -05003230 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPGID;
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +01003231 cifs_sb->mnt_backupgid = pvolume_info->backupgid;
3232 }
Steve French3b795212008-11-13 19:45:32 +00003233 if (pvolume_info->override_uid)
3234 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_UID;
3235 if (pvolume_info->override_gid)
3236 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_GID;
3237 if (pvolume_info->dynperm)
3238 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DYNPERM;
Suresh Jayaramanfa1df752010-07-05 18:13:36 +05303239 if (pvolume_info->fsc)
3240 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_FSCACHE;
Jeff Layton0eb8a132010-10-06 19:51:12 -04003241 if (pvolume_info->multiuser)
3242 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_MULTIUSER |
3243 CIFS_MOUNT_NO_PERM);
Pavel Shilovskyd39454f2011-01-24 14:16:35 -05003244 if (pvolume_info->strict_io)
3245 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_STRICT_IO;
Steve French3b795212008-11-13 19:45:32 +00003246 if (pvolume_info->direct_io) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00003247 cFYI(1, "mounting share using direct i/o");
Steve French3b795212008-11-13 19:45:32 +00003248 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DIRECT_IO;
3249 }
Stefan Metzmacher736a3322010-07-30 14:56:00 +02003250 if (pvolume_info->mfsymlinks) {
3251 if (pvolume_info->sfu_emul) {
3252 cERROR(1, "mount option mfsymlinks ignored if sfu "
3253 "mount option is used");
3254 } else {
3255 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MF_SYMLINKS;
3256 }
3257 }
Steve French3b795212008-11-13 19:45:32 +00003258
3259 if ((pvolume_info->cifs_acl) && (pvolume_info->dynperm))
Joe Perchesb6b38f72010-04-21 03:50:45 +00003260 cERROR(1, "mount option dynperm ignored if cifsacl "
3261 "mount option supported");
Jeff Laytonb1c8d2b2008-10-22 13:57:07 -04003262}
3263
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003264static void
3265cleanup_volume_info_contents(struct smb_vol *volume_info)
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003266{
Sean Finneyb9468452011-04-11 13:19:32 +00003267 kfree(volume_info->username);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003268 kzfree(volume_info->password);
Steve French13589c42011-08-18 04:41:55 +00003269 if (volume_info->UNCip != volume_info->UNC + 2)
3270 kfree(volume_info->UNCip);
Jesper Juhl95c75452011-08-27 18:58:34 +02003271 kfree(volume_info->UNC);
Sean Finneyb9468452011-04-11 13:19:32 +00003272 kfree(volume_info->domainname);
3273 kfree(volume_info->iocharset);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003274 kfree(volume_info->prepath);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003275}
3276
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003277void
3278cifs_cleanup_volume_info(struct smb_vol *volume_info)
3279{
3280 if (!volume_info)
3281 return;
3282 cleanup_volume_info_contents(volume_info);
3283 kfree(volume_info);
3284}
3285
3286
Steve French2d6d5892009-04-09 00:36:44 +00003287#ifdef CONFIG_CIFS_DFS_UPCALL
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003288/* build_path_to_root returns full path to root when
3289 * we do not have an exiting connection (tcon) */
3290static char *
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003291build_unc_path_to_root(const struct smb_vol *vol,
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003292 const struct cifs_sb_info *cifs_sb)
3293{
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003294 char *full_path, *pos;
3295 unsigned int pplen = vol->prepath ? strlen(vol->prepath) : 0;
3296 unsigned int unc_len = strnlen(vol->UNC, MAX_TREE_SIZE + 1);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003297
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003298 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003299 if (full_path == NULL)
3300 return ERR_PTR(-ENOMEM);
3301
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003302 strncpy(full_path, vol->UNC, unc_len);
3303 pos = full_path + unc_len;
3304
3305 if (pplen) {
3306 strncpy(pos, vol->prepath, pplen);
3307 pos += pplen;
3308 }
3309
3310 *pos = '\0'; /* add trailing null */
Steve Frenchf87d39d2011-05-27 03:50:55 +00003311 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
Jeff Laytonb2a0fa12011-07-06 08:10:36 -04003312 cFYI(1, "%s: full_path=%s", __func__, full_path);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003313 return full_path;
3314}
Sean Finneydd613942011-04-11 13:19:30 +00003315
3316/*
3317 * Perform a dfs referral query for a share and (optionally) prefix
3318 *
Sean Finney046462a2011-04-11 13:19:33 +00003319 * If a referral is found, cifs_sb->mountdata will be (re-)allocated
3320 * to a string containing updated options for the submount. Otherwise it
3321 * will be left untouched.
Sean Finneydd613942011-04-11 13:19:30 +00003322 *
3323 * Returns the rc from get_dfs_path to the caller, which can be used to
3324 * determine whether there were referrals.
3325 */
3326static int
Pavel Shilovskyb669f332012-05-27 20:21:53 +04003327expand_dfs_referral(const unsigned int xid, struct cifs_ses *ses,
Sean Finneydd613942011-04-11 13:19:30 +00003328 struct smb_vol *volume_info, struct cifs_sb_info *cifs_sb,
Sean Finney046462a2011-04-11 13:19:33 +00003329 int check_prefix)
Sean Finneydd613942011-04-11 13:19:30 +00003330{
3331 int rc;
3332 unsigned int num_referrals = 0;
3333 struct dfs_info3_param *referrals = NULL;
3334 char *full_path = NULL, *ref_path = NULL, *mdata = NULL;
3335
3336 full_path = build_unc_path_to_root(volume_info, cifs_sb);
3337 if (IS_ERR(full_path))
3338 return PTR_ERR(full_path);
3339
3340 /* For DFS paths, skip the first '\' of the UNC */
3341 ref_path = check_prefix ? full_path + 1 : volume_info->UNC + 1;
3342
Pavel Shilovskyb669f332012-05-27 20:21:53 +04003343 rc = get_dfs_path(xid, ses, ref_path, cifs_sb->local_nls,
Sean Finneydd613942011-04-11 13:19:30 +00003344 &num_referrals, &referrals,
3345 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
3346
3347 if (!rc && num_referrals > 0) {
3348 char *fake_devname = NULL;
3349
3350 mdata = cifs_compose_mount_options(cifs_sb->mountdata,
3351 full_path + 1, referrals,
3352 &fake_devname);
3353
3354 free_dfs_info_array(referrals, num_referrals);
Sean Finney046462a2011-04-11 13:19:33 +00003355
Sean Finneydd613942011-04-11 13:19:30 +00003356 if (IS_ERR(mdata)) {
3357 rc = PTR_ERR(mdata);
3358 mdata = NULL;
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003359 } else {
3360 cleanup_volume_info_contents(volume_info);
3361 memset(volume_info, '\0', sizeof(*volume_info));
3362 rc = cifs_setup_volume_info(volume_info, mdata,
3363 fake_devname);
Sean Finneydd613942011-04-11 13:19:30 +00003364 }
Jeff Laytonb9bce2e2011-07-06 08:10:39 -04003365 kfree(fake_devname);
3366 kfree(cifs_sb->mountdata);
Sean Finney046462a2011-04-11 13:19:33 +00003367 cifs_sb->mountdata = mdata;
Sean Finneydd613942011-04-11 13:19:30 +00003368 }
3369 kfree(full_path);
3370 return rc;
3371}
Steve French2d6d5892009-04-09 00:36:44 +00003372#endif
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003373
Jeff Layton04db79b2011-07-06 08:10:38 -04003374static int
3375cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data,
3376 const char *devname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377{
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003378 int rc = 0;
Sean Finneydd613942011-04-11 13:19:30 +00003379
Jeff Layton04db79b2011-07-06 08:10:38 -04003380 if (cifs_parse_mount_options(mount_data, devname, volume_info))
3381 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382
Jeff Layton23db65f2012-05-15 12:20:51 -04003383
Jeff Layton7586b762008-12-01 18:41:49 -05003384 if (volume_info->nullauth) {
Jeff Layton04febab2012-01-17 16:09:15 -05003385 cFYI(1, "Anonymous login");
3386 kfree(volume_info->username);
3387 volume_info->username = NULL;
Jeff Layton7586b762008-12-01 18:41:49 -05003388 } else if (volume_info->username) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 /* BB fixme parse for domain name here */
Joe Perchesb6b38f72010-04-21 03:50:45 +00003390 cFYI(1, "Username: %s", volume_info->username);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 } else {
Steve Frenchbf820672005-12-01 22:32:42 -08003392 cifserror("No username specified");
Steve French50c2f752007-07-13 00:33:32 +00003393 /* In userspace mount helper we can get user name from alternate
3394 locations such as env variables and files on disk */
Jeff Layton04db79b2011-07-06 08:10:38 -04003395 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 }
3397
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 /* this is needed for ASCII cp to Unicode converts */
Jeff Layton7586b762008-12-01 18:41:49 -05003399 if (volume_info->iocharset == NULL) {
Jeff Laytona5fc4ce2010-04-24 07:57:42 -04003400 /* load_nls_default cannot return null */
3401 volume_info->local_nls = load_nls_default();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 } else {
Jeff Laytona5fc4ce2010-04-24 07:57:42 -04003403 volume_info->local_nls = load_nls(volume_info->iocharset);
3404 if (volume_info->local_nls == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00003405 cERROR(1, "CIFS mount error: iocharset %s not found",
3406 volume_info->iocharset);
Jeff Layton04db79b2011-07-06 08:10:38 -04003407 return -ELIBACC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 }
3409 }
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003410
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003411 return rc;
Jeff Layton04db79b2011-07-06 08:10:38 -04003412}
3413
3414struct smb_vol *
3415cifs_get_volume_info(char *mount_data, const char *devname)
3416{
3417 int rc;
3418 struct smb_vol *volume_info;
3419
3420 volume_info = kzalloc(sizeof(struct smb_vol), GFP_KERNEL);
3421 if (!volume_info)
3422 return ERR_PTR(-ENOMEM);
3423
3424 rc = cifs_setup_volume_info(volume_info, mount_data, devname);
3425 if (rc) {
3426 cifs_cleanup_volume_info(volume_info);
3427 volume_info = ERR_PTR(rc);
3428 }
3429
3430 return volume_info;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003431}
3432
3433int
Al Viro2c6292a2011-06-17 09:05:48 -04003434cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *volume_info)
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003435{
Jeff Layton1daaae82012-03-21 06:30:40 -04003436 int rc;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003437 unsigned int xid;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003438 struct cifs_ses *ses;
Steve French96daf2b2011-05-27 04:34:02 +00003439 struct cifs_tcon *tcon;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003440 struct TCP_Server_Info *server;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003441 char *full_path;
3442 struct tcon_link *tlink;
3443#ifdef CONFIG_CIFS_DFS_UPCALL
3444 int referral_walks_count = 0;
Jeff Layton20547492011-07-09 12:21:07 -04003445#endif
Al Virodd854462011-06-17 08:24:42 -04003446
3447 rc = bdi_setup_and_register(&cifs_sb->bdi, "cifs", BDI_CAP_MAP_COPY);
3448 if (rc)
3449 return rc;
3450
Jeff Layton20547492011-07-09 12:21:07 -04003451#ifdef CONFIG_CIFS_DFS_UPCALL
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003452try_mount_again:
3453 /* cleanup activities if we're chasing a referral */
3454 if (referral_walks_count) {
3455 if (tcon)
3456 cifs_put_tcon(tcon);
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003457 else if (ses)
3458 cifs_put_smb_ses(ses);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003459
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003460 free_xid(xid);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003461 }
3462#endif
Jeff Layton1daaae82012-03-21 06:30:40 -04003463 rc = 0;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003464 tcon = NULL;
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003465 ses = NULL;
3466 server = NULL;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +00003467 full_path = NULL;
3468 tlink = NULL;
3469
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003470 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
Jeff Layton63c038c2008-12-01 18:41:46 -05003472 /* get a reference to a tcp session */
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003473 server = cifs_get_tcp_session(volume_info);
3474 if (IS_ERR(server)) {
3475 rc = PTR_ERR(server);
Al Virodd854462011-06-17 08:24:42 -04003476 bdi_destroy(&cifs_sb->bdi);
Jeff Layton63c038c2008-12-01 18:41:46 -05003477 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 }
3479
Jeff Layton36988c72010-04-24 07:57:43 -04003480 /* get a reference to a SMB session */
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003481 ses = cifs_get_smb_ses(server, volume_info);
3482 if (IS_ERR(ses)) {
3483 rc = PTR_ERR(ses);
3484 ses = NULL;
Jeff Layton36988c72010-04-24 07:57:43 -04003485 goto mount_fail_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 }
Steve French50c2f752007-07-13 00:33:32 +00003487
Jeff Laytond00c28d2010-04-24 07:57:44 -04003488 /* search for existing tcon to this server share */
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003489 tcon = cifs_get_tcon(ses, volume_info);
Jeff Laytond00c28d2010-04-24 07:57:44 -04003490 if (IS_ERR(tcon)) {
3491 rc = PTR_ERR(tcon);
3492 tcon = NULL;
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003493 goto remote_path_check;
Jeff Laytond00c28d2010-04-24 07:57:44 -04003494 }
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003495
Steve French6848b732011-05-26 18:38:54 +00003496 /* tell server which Unix caps we support */
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04003497 if (cap_unix(tcon->ses)) {
Steve French6848b732011-05-26 18:38:54 +00003498 /* reset of caps checks mount to see if unix extensions
3499 disabled for just this mount */
Al Viro2c6292a2011-06-17 09:05:48 -04003500 reset_cifs_unix_caps(xid, tcon, cifs_sb, volume_info);
Steve French6848b732011-05-26 18:38:54 +00003501 if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) &&
3502 (le64_to_cpu(tcon->fsUnixInfo.Capability) &
3503 CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)) {
3504 rc = -EACCES;
3505 goto mount_fail_check;
3506 }
3507 } else
3508 tcon->unix_ext = 0; /* server does not support them */
3509
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003510 /* do not care if a following call succeed - informational */
3511 if (!tcon->ipc && server->ops->qfs_tcon)
3512 server->ops->qfs_tcon(xid, tcon);
Steve Frenchd82c2df2008-11-15 00:07:26 +00003513
Pavel Shilovsky24985c52012-09-18 16:20:28 -07003514 cifs_sb->wsize = server->ops->negotiate_wsize(tcon, volume_info);
3515 cifs_sb->rsize = server->ops->negotiate_rsize(tcon, volume_info);
Jeff Laytonf7910cb2011-05-19 16:22:58 -04003516
Jeff Layton66bfaad2011-10-19 15:30:35 -04003517 /* tune readahead according to rsize */
Jeff Layton8f714652012-05-01 17:41:49 -04003518 cifs_sb->bdi.ra_pages = cifs_sb->rsize / PAGE_CACHE_SIZE;
Jeff Layton03ceace2010-12-06 21:07:33 -05003519
Igor Mammedove4cce942009-02-10 14:10:26 +03003520remote_path_check:
3521#ifdef CONFIG_CIFS_DFS_UPCALL
3522 /*
3523 * Perform an unconditional check for whether there are DFS
3524 * referrals for this path without prefix, to provide support
3525 * for DFS referrals from w2k8 servers which don't seem to respond
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003526 * with PATH_NOT_COVERED to requests that include the prefix.
3527 * Chase the referral if found, otherwise continue normally.
Steve Frenchd036f502009-04-03 03:12:08 +00003528 */
Igor Mammedov5c2503a2009-04-21 19:31:05 +04003529 if (referral_walks_count == 0) {
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003530 int refrc = expand_dfs_referral(xid, ses, volume_info, cifs_sb,
3531 false);
Steve Frencheeac8042006-01-13 21:34:58 -08003532 if (!refrc) {
Steve French4523cc32007-04-30 20:13:06 +00003533 referral_walks_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 goto try_mount_again;
3535 }
3536 }
3537#endif
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003538
Steve Frenchf87d39d2011-05-27 03:50:55 +00003539 /* check if a whole path is not remote */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 if (!rc && tcon) {
Pavel Shilovsky68889f22012-05-25 14:40:22 +04003541 if (!server->ops->is_path_accessible) {
3542 rc = -ENOSYS;
3543 goto mount_fail_check;
3544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 /* build_path_to_root works only when we have a valid tcon */
Pavel Shilovsky9224dfc2012-05-27 20:39:52 +04003546 full_path = build_path_to_root(volume_info, cifs_sb, tcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 if (full_path == NULL) {
3548 rc = -ENOMEM;
3549 goto mount_fail_check;
3550 }
Pavel Shilovsky68889f22012-05-25 14:40:22 +04003551 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3552 full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 if (rc != 0 && rc != -EREMOTE) {
3554 kfree(full_path);
3555 goto mount_fail_check;
3556 }
3557 kfree(full_path);
3558 }
3559
3560 /* get referral if needed */
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003561 if (rc == -EREMOTE) {
3562#ifdef CONFIG_CIFS_DFS_UPCALL
Igor Mammedov5c2503a2009-04-21 19:31:05 +04003563 if (referral_walks_count > MAX_NESTED_LINKS) {
3564 /*
3565 * BB: when we implement proper loop detection,
3566 * we will remove this check. But now we need it
3567 * to prevent an indefinite loop if 'DFS tree' is
3568 * misconfigured (i.e. has loops).
3569 */
3570 rc = -ELOOP;
3571 goto mount_fail_check;
3572 }
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003573
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003574 rc = expand_dfs_referral(xid, ses, volume_info, cifs_sb, true);
Jeff Layton7b91e262009-07-23 15:22:30 -04003575
Sean Finneydd613942011-04-11 13:19:30 +00003576 if (!rc) {
Igor Mammedov5c2503a2009-04-21 19:31:05 +04003577 referral_walks_count++;
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003578 goto try_mount_again;
3579 }
Sean Finneydd613942011-04-11 13:19:30 +00003580 goto mount_fail_check;
Steve Frenchd036f502009-04-03 03:12:08 +00003581#else /* No DFS support, return error on mount */
3582 rc = -EOPNOTSUPP;
3583#endif
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003584 }
3585
Jeff Layton9d002df2010-10-06 19:51:11 -04003586 if (rc)
3587 goto mount_fail_check;
3588
3589 /* now, hang the tcon off of the superblock */
3590 tlink = kzalloc(sizeof *tlink, GFP_KERNEL);
3591 if (tlink == NULL) {
3592 rc = -ENOMEM;
3593 goto mount_fail_check;
3594 }
3595
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003596 tlink->tl_uid = ses->linux_uid;
Jeff Layton9d002df2010-10-06 19:51:11 -04003597 tlink->tl_tcon = tcon;
3598 tlink->tl_time = jiffies;
3599 set_bit(TCON_LINK_MASTER, &tlink->tl_flags);
3600 set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
3601
Jeff Layton413e6612010-10-28 13:33:38 -04003602 cifs_sb->master_tlink = tlink;
Jeff Laytonb647c352010-10-28 11:16:44 -04003603 spin_lock(&cifs_sb->tlink_tree_lock);
3604 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
3605 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton413e6612010-10-28 13:33:38 -04003606
Jeff Laytonda472fc2012-03-23 14:40:53 -04003607 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
Jeff Layton2de970f2010-10-06 19:51:12 -04003608 TLINK_IDLE_EXPIRE);
3609
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003610mount_fail_check:
3611 /* on error free sesinfo and tcon struct if needed */
3612 if (rc) {
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003613 /* If find_unc succeeded then rc == 0 so we can not end */
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003614 /* up accidentally freeing someone elses tcon struct */
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003615 if (tcon)
3616 cifs_put_tcon(tcon);
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003617 else if (ses)
3618 cifs_put_smb_ses(ses);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003619 else
Pavel Shilovskyaf4281d2012-05-27 20:48:35 +04003620 cifs_put_tcp_session(server);
Al Virodd854462011-06-17 08:24:42 -04003621 bdi_destroy(&cifs_sb->bdi);
Igor Mammedov1bfe73c2009-04-01 17:54:42 +04003622 }
3623
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624out:
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003625 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 return rc;
3627}
3628
Jeff Layton8d1bca32011-06-11 21:17:10 -04003629/*
3630 * Issue a TREE_CONNECT request. Note that for IPC$ shares, that the tcon
3631 * pointer may be NULL.
3632 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633int
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +04003634CIFSTCon(const unsigned int xid, struct cifs_ses *ses,
Steve French96daf2b2011-05-27 04:34:02 +00003635 const char *tree, struct cifs_tcon *tcon,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 const struct nls_table *nls_codepage)
3637{
3638 struct smb_hdr *smb_buffer;
3639 struct smb_hdr *smb_buffer_response;
3640 TCONX_REQ *pSMB;
3641 TCONX_RSP *pSMBr;
3642 unsigned char *bcc_ptr;
3643 int rc = 0;
Jeff Layton690c5222011-01-20 13:36:51 -05003644 int length;
3645 __u16 bytes_left, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
3647 if (ses == NULL)
3648 return -EIO;
3649
3650 smb_buffer = cifs_buf_get();
Steve Frenchca43e3b2009-09-01 17:20:50 +00003651 if (smb_buffer == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 return -ENOMEM;
Steve Frenchca43e3b2009-09-01 17:20:50 +00003653
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 smb_buffer_response = smb_buffer;
3655
3656 header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX,
3657 NULL /*no tid */ , 4 /*wct */ );
Steve French1982c342005-08-17 12:38:22 -07003658
Pavel Shilovsky88257362012-05-23 14:01:59 +04003659 smb_buffer->Mid = get_next_mid(ses->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 smb_buffer->Uid = ses->Suid;
3661 pSMB = (TCONX_REQ *) smb_buffer;
3662 pSMBr = (TCONX_RSP *) smb_buffer_response;
3663
3664 pSMB->AndXCommand = 0xFF;
3665 pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 bcc_ptr = &pSMB->Password[0];
Jeff Layton8d1bca32011-06-11 21:17:10 -04003667 if (!tcon || (ses->server->sec_mode & SECMODE_USER)) {
Steve Frencheeac8042006-01-13 21:34:58 -08003668 pSMB->PasswordLength = cpu_to_le16(1); /* minimum */
Steve French7c7b25b2006-06-01 19:20:10 +00003669 *bcc_ptr = 0; /* password is null byte */
Steve Frencheeac8042006-01-13 21:34:58 -08003670 bcc_ptr++; /* skip password */
Steve French7c7b25b2006-06-01 19:20:10 +00003671 /* already aligned so no need to do it below */
Steve Frencheeac8042006-01-13 21:34:58 -08003672 } else {
Shirish Pargaonkar540b2e32011-01-18 22:33:54 -06003673 pSMB->PasswordLength = cpu_to_le16(CIFS_AUTH_RESP_SIZE);
Steve Frencheeac8042006-01-13 21:34:58 -08003674 /* BB FIXME add code to fail this if NTLMv2 or Kerberos
3675 specified as required (when that support is added to
3676 the vfs in the future) as only NTLM or the much
Steve French7c7b25b2006-06-01 19:20:10 +00003677 weaker LANMAN (which we do not send by default) is accepted
Steve Frencheeac8042006-01-13 21:34:58 -08003678 by Samba (not sure whether other servers allow
3679 NTLMv2 password here) */
Steve French7c7b25b2006-06-01 19:20:10 +00003680#ifdef CONFIG_CIFS_WEAK_PW_HASH
Jeff Layton04912d62010-04-24 07:57:45 -04003681 if ((global_secflags & CIFSSEC_MAY_LANMAN) &&
Jeff Layton00e485b2008-12-05 20:41:21 -05003682 (ses->server->secType == LANMAN))
Shirish Pargaonkard3ba50b2010-10-27 15:20:36 -05003683 calc_lanman_hash(tcon->password, ses->server->cryptkey,
Steve French96daf2b2011-05-27 04:34:02 +00003684 ses->server->sec_mode &
Jeff Layton4e53a3f2008-12-05 20:41:21 -05003685 SECMODE_PW_ENCRYPT ? true : false,
3686 bcc_ptr);
Steve French7c7b25b2006-06-01 19:20:10 +00003687 else
3688#endif /* CIFS_WEAK_PW_HASH */
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -06003689 rc = SMBNTencrypt(tcon->password, ses->server->cryptkey,
Shirish Pargaonkar9ef59922011-10-20 13:21:59 -05003690 bcc_ptr, nls_codepage);
Steve Frencheeac8042006-01-13 21:34:58 -08003691
Shirish Pargaonkar540b2e32011-01-18 22:33:54 -06003692 bcc_ptr += CIFS_AUTH_RESP_SIZE;
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003693 if (ses->capabilities & CAP_UNICODE) {
Steve French7c7b25b2006-06-01 19:20:10 +00003694 /* must align unicode strings */
3695 *bcc_ptr = 0; /* null byte password */
3696 bcc_ptr++;
3697 }
Steve Frencheeac8042006-01-13 21:34:58 -08003698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699
Steve French96daf2b2011-05-27 04:34:02 +00003700 if (ses->server->sec_mode &
Steve Frencha878fb22006-05-30 18:04:19 +00003701 (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
3703
3704 if (ses->capabilities & CAP_STATUS32) {
3705 smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS;
3706 }
3707 if (ses->capabilities & CAP_DFS) {
3708 smb_buffer->Flags2 |= SMBFLG2_DFS;
3709 }
3710 if (ses->capabilities & CAP_UNICODE) {
3711 smb_buffer->Flags2 |= SMBFLG2_UNICODE;
3712 length =
Steve Frenchacbbb762012-01-18 22:32:33 -06003713 cifs_strtoUTF16((__le16 *) bcc_ptr, tree,
Steve French50c2f752007-07-13 00:33:32 +00003714 6 /* max utf8 char length in bytes */ *
Steve Frencha878fb22006-05-30 18:04:19 +00003715 (/* server len*/ + 256 /* share len */), nls_codepage);
3716 bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 bcc_ptr += 2; /* skip trailing null */
3718 } else { /* ASCII */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 strcpy(bcc_ptr, tree);
3720 bcc_ptr += strlen(tree) + 1;
3721 }
3722 strcpy(bcc_ptr, "?????");
3723 bcc_ptr += strlen("?????");
3724 bcc_ptr += 1;
3725 count = bcc_ptr - &pSMB->Password[0];
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003726 pSMB->hdr.smb_buf_length = cpu_to_be32(be32_to_cpu(
3727 pSMB->hdr.smb_buf_length) + count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 pSMB->ByteCount = cpu_to_le16(count);
3729
Steve French133672e2007-11-13 22:41:37 +00003730 rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length,
Jeff Layton77499812011-01-11 07:24:23 -05003731 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 /* above now done in SendReceive */
3734 if ((rc == 0) && (tcon != NULL)) {
Steve French0e0d2cf2009-05-01 05:27:32 +00003735 bool is_unicode;
3736
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 tcon->tidStatus = CifsGood;
Steve French3b795212008-11-13 19:45:32 +00003738 tcon->need_reconnect = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 tcon->tid = smb_buffer_response->Tid;
3740 bcc_ptr = pByteArea(smb_buffer_response);
Jeff Layton690c5222011-01-20 13:36:51 -05003741 bytes_left = get_bcc(smb_buffer_response);
Jeff Laytoncc20c032009-04-30 07:16:21 -04003742 length = strnlen(bcc_ptr, bytes_left - 2);
Steve French0e0d2cf2009-05-01 05:27:32 +00003743 if (smb_buffer->Flags2 & SMBFLG2_UNICODE)
3744 is_unicode = true;
3745 else
3746 is_unicode = false;
3747
Jeff Laytoncc20c032009-04-30 07:16:21 -04003748
Steve French50c2f752007-07-13 00:33:32 +00003749 /* skip service field (NB: this field is always ASCII) */
Steve French7f8ed422007-09-28 22:28:55 +00003750 if (length == 3) {
3751 if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') &&
3752 (bcc_ptr[2] == 'C')) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00003753 cFYI(1, "IPC connection");
Steve French7f8ed422007-09-28 22:28:55 +00003754 tcon->ipc = 1;
3755 }
3756 } else if (length == 2) {
3757 if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) {
3758 /* the most common case */
Joe Perchesb6b38f72010-04-21 03:50:45 +00003759 cFYI(1, "disk share connection");
Steve French7f8ed422007-09-28 22:28:55 +00003760 }
3761 }
Steve French50c2f752007-07-13 00:33:32 +00003762 bcc_ptr += length + 1;
Jeff Laytoncc20c032009-04-30 07:16:21 -04003763 bytes_left -= (length + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 strncpy(tcon->treeName, tree, MAX_TREE_SIZE);
Jeff Laytoncc20c032009-04-30 07:16:21 -04003765
3766 /* mostly informational -- no need to fail on error here */
Jeff Layton90a98b22009-07-20 13:40:52 -04003767 kfree(tcon->nativeFileSystem);
Steve Frenchacbbb762012-01-18 22:32:33 -06003768 tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr,
Steve French0e0d2cf2009-05-01 05:27:32 +00003769 bytes_left, is_unicode,
Jeff Laytoncc20c032009-04-30 07:16:21 -04003770 nls_codepage);
3771
Joe Perchesb6b38f72010-04-21 03:50:45 +00003772 cFYI(1, "nativeFileSystem=%s", tcon->nativeFileSystem);
Jeff Laytoncc20c032009-04-30 07:16:21 -04003773
Steve Frenchfb8c4b12007-07-10 01:16:18 +00003774 if ((smb_buffer_response->WordCount == 3) ||
Steve French1a4e15a2006-10-12 21:33:51 +00003775 (smb_buffer_response->WordCount == 7))
3776 /* field is in same location */
Steve French39798772006-05-31 22:40:51 +00003777 tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport);
3778 else
3779 tcon->Flags = 0;
Joe Perchesb6b38f72010-04-21 03:50:45 +00003780 cFYI(1, "Tcon flags: 0x%x ", tcon->Flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 } else if ((rc == 0) && tcon == NULL) {
Steve French50c2f752007-07-13 00:33:32 +00003782 /* all we need to save for IPC$ connection */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 ses->ipc_tid = smb_buffer_response->Tid;
3784 }
3785
Mariusz Kozlowskia8a11d32007-10-03 16:41:24 +00003786 cifs_buf_release(smb_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 return rc;
3788}
3789
Al Viro2a9b9952011-06-17 09:27:16 -04003790void
3791cifs_umount(struct cifs_sb_info *cifs_sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792{
Jeff Laytonb647c352010-10-28 11:16:44 -04003793 struct rb_root *root = &cifs_sb->tlink_tree;
3794 struct rb_node *node;
3795 struct tcon_link *tlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796
Jeff Layton2de970f2010-10-06 19:51:12 -04003797 cancel_delayed_work_sync(&cifs_sb->prune_tlinks);
3798
Jeff Laytonb647c352010-10-28 11:16:44 -04003799 spin_lock(&cifs_sb->tlink_tree_lock);
3800 while ((node = rb_first(root))) {
3801 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
3802 cifs_get_tlink(tlink);
3803 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
3804 rb_erase(node, root);
Steve French50c2f752007-07-13 00:33:32 +00003805
Jeff Laytonb647c352010-10-28 11:16:44 -04003806 spin_unlock(&cifs_sb->tlink_tree_lock);
3807 cifs_put_tlink(tlink);
3808 spin_lock(&cifs_sb->tlink_tree_lock);
3809 }
3810 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04003811
Al Virodd854462011-06-17 08:24:42 -04003812 bdi_destroy(&cifs_sb->bdi);
Al Virod757d712011-06-17 09:42:43 -04003813 kfree(cifs_sb->mountdata);
3814 unload_nls(cifs_sb->local_nls);
3815 kfree(cifs_sb);
Steve French50c2f752007-07-13 00:33:32 +00003816}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817
Pavel Shilovsky286170a2012-05-25 10:43:58 +04003818int
3819cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820{
3821 int rc = 0;
Jeff Layton198b5682010-04-24 07:57:48 -04003822 struct TCP_Server_Info *server = ses->server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Pavel Shilovsky286170a2012-05-25 10:43:58 +04003824 if (!server->ops->need_neg || !server->ops->negotiate)
3825 return -ENOSYS;
3826
Jeff Layton198b5682010-04-24 07:57:48 -04003827 /* only send once per connect */
Pavel Shilovsky286170a2012-05-25 10:43:58 +04003828 if (!server->ops->need_neg(server))
Jeff Layton198b5682010-04-24 07:57:48 -04003829 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
Pavel Shilovsky45275782012-05-17 17:53:29 +04003831 set_credits(server, 1);
Pavel Shilovsky286170a2012-05-25 10:43:58 +04003832
3833 rc = server->ops->negotiate(xid, ses);
Jeff Layton198b5682010-04-24 07:57:48 -04003834 if (rc == 0) {
3835 spin_lock(&GlobalMid_Lock);
Jeff Layton7fdbaa12011-06-10 16:14:57 -04003836 if (server->tcpStatus == CifsNeedNegotiate)
Jeff Layton198b5682010-04-24 07:57:48 -04003837 server->tcpStatus = CifsGood;
3838 else
3839 rc = -EHOSTDOWN;
3840 spin_unlock(&GlobalMid_Lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 }
Steve French26b994f2008-08-06 05:11:33 +00003842
Jeff Layton198b5682010-04-24 07:57:48 -04003843 return rc;
3844}
Steve French26b994f2008-08-06 05:11:33 +00003845
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04003846int
3847cifs_setup_session(const unsigned int xid, struct cifs_ses *ses,
3848 struct nls_table *nls_info)
Jeff Layton198b5682010-04-24 07:57:48 -04003849{
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04003850 int rc = -ENOSYS;
Jeff Layton198b5682010-04-24 07:57:48 -04003851 struct TCP_Server_Info *server = ses->server;
3852
3853 ses->flags = 0;
3854 ses->capabilities = server->capabilities;
Steve French26b994f2008-08-06 05:11:33 +00003855 if (linuxExtEnabled == 0)
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04003856 ses->capabilities &= (~server->vals->cap_unix);
Steve French20418ac2009-04-30 16:13:32 +00003857
Joe Perchesb6b38f72010-04-21 03:50:45 +00003858 cFYI(1, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d",
Steve French96daf2b2011-05-27 04:34:02 +00003859 server->sec_mode, server->capabilities, server->timeAdj);
Jeff Laytoncb7691b2008-08-18 15:41:05 -04003860
Pavel Shilovsky58c45c52012-05-25 10:54:49 +04003861 if (server->ops->sess_setup)
3862 rc = server->ops->sess_setup(xid, ses, nls_info);
3863
Steve French26b994f2008-08-06 05:11:33 +00003864 if (rc) {
Joe Perchesb6b38f72010-04-21 03:50:45 +00003865 cERROR(1, "Send error in SessSetup = %d", rc);
Steve French26b994f2008-08-06 05:11:33 +00003866 } else {
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -05003867 mutex_lock(&ses->server->srv_mutex);
3868 if (!server->session_estab) {
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05003869 server->session_key.response = ses->auth_key.response;
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -05003870 server->session_key.len = ses->auth_key.len;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05003871 server->sequence_number = 0x2;
3872 server->session_estab = true;
3873 ses->auth_key.response = NULL;
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -05003874 }
3875 mutex_unlock(&server->srv_mutex);
3876
Joe Perchesb6b38f72010-04-21 03:50:45 +00003877 cFYI(1, "CIFS Session Established successfully");
Steve French20418ac2009-04-30 16:13:32 +00003878 spin_lock(&GlobalMid_Lock);
Jeff Layton198b5682010-04-24 07:57:48 -04003879 ses->status = CifsGood;
3880 ses->need_reconnect = false;
Steve French20418ac2009-04-30 16:13:32 +00003881 spin_unlock(&GlobalMid_Lock);
Steve French26b994f2008-08-06 05:11:33 +00003882 }
3883
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05003884 kfree(ses->auth_key.response);
3885 ses->auth_key.response = NULL;
3886 ses->auth_key.len = 0;
Shirish Pargaonkard3686d52010-10-28 09:53:07 -05003887 kfree(ses->ntlmssp);
3888 ses->ntlmssp = NULL;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -05003889
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 return rc;
3891}
3892
Jeff Layton8a8798a2012-01-17 16:09:15 -05003893static int
3894cifs_set_vol_auth(struct smb_vol *vol, struct cifs_ses *ses)
3895{
3896 switch (ses->server->secType) {
3897 case Kerberos:
3898 vol->secFlg = CIFSSEC_MUST_KRB5;
3899 return 0;
3900 case NTLMv2:
3901 vol->secFlg = CIFSSEC_MUST_NTLMV2;
3902 break;
3903 case NTLM:
3904 vol->secFlg = CIFSSEC_MUST_NTLM;
3905 break;
3906 case RawNTLMSSP:
3907 vol->secFlg = CIFSSEC_MUST_NTLMSSP;
3908 break;
3909 case LANMAN:
3910 vol->secFlg = CIFSSEC_MUST_LANMAN;
3911 break;
3912 }
3913
3914 return cifs_set_cifscreds(vol, ses);
3915}
3916
Steve French96daf2b2011-05-27 04:34:02 +00003917static struct cifs_tcon *
Jeff Layton9d002df2010-10-06 19:51:11 -04003918cifs_construct_tcon(struct cifs_sb_info *cifs_sb, uid_t fsuid)
3919{
Jeff Layton8a8798a2012-01-17 16:09:15 -05003920 int rc;
Steve French96daf2b2011-05-27 04:34:02 +00003921 struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb);
3922 struct cifs_ses *ses;
3923 struct cifs_tcon *tcon = NULL;
Jeff Layton9d002df2010-10-06 19:51:11 -04003924 struct smb_vol *vol_info;
Jeff Layton9d002df2010-10-06 19:51:11 -04003925
3926 vol_info = kzalloc(sizeof(*vol_info), GFP_KERNEL);
Dan Carpenter803ab972012-01-24 11:39:22 +03003927 if (vol_info == NULL)
3928 return ERR_PTR(-ENOMEM);
Jeff Layton9d002df2010-10-06 19:51:11 -04003929
Jeff Layton9d002df2010-10-06 19:51:11 -04003930 vol_info->local_nls = cifs_sb->local_nls;
3931 vol_info->linux_uid = fsuid;
3932 vol_info->cred_uid = fsuid;
3933 vol_info->UNC = master_tcon->treeName;
3934 vol_info->retry = master_tcon->retry;
3935 vol_info->nocase = master_tcon->nocase;
3936 vol_info->local_lease = master_tcon->local_lease;
3937 vol_info->no_linux_ext = !master_tcon->unix_ext;
3938
Jeff Layton8a8798a2012-01-17 16:09:15 -05003939 rc = cifs_set_vol_auth(vol_info, master_tcon->ses);
3940 if (rc) {
3941 tcon = ERR_PTR(rc);
3942 goto out;
3943 }
Jeff Layton9d002df2010-10-06 19:51:11 -04003944
3945 /* get a reference for the same TCP session */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303946 spin_lock(&cifs_tcp_ses_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04003947 ++master_tcon->ses->server->srv_count;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05303948 spin_unlock(&cifs_tcp_ses_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04003949
3950 ses = cifs_get_smb_ses(master_tcon->ses->server, vol_info);
3951 if (IS_ERR(ses)) {
Steve French96daf2b2011-05-27 04:34:02 +00003952 tcon = (struct cifs_tcon *)ses;
Jeff Layton9d002df2010-10-06 19:51:11 -04003953 cifs_put_tcp_session(master_tcon->ses->server);
3954 goto out;
3955 }
3956
3957 tcon = cifs_get_tcon(ses, vol_info);
3958 if (IS_ERR(tcon)) {
3959 cifs_put_smb_ses(ses);
3960 goto out;
3961 }
3962
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04003963 if (cap_unix(ses))
Jeff Layton9d002df2010-10-06 19:51:11 -04003964 reset_cifs_unix_caps(0, tcon, NULL, vol_info);
3965out:
Jeff Layton8a8798a2012-01-17 16:09:15 -05003966 kfree(vol_info->username);
3967 kfree(vol_info->password);
Jeff Layton9d002df2010-10-06 19:51:11 -04003968 kfree(vol_info);
3969
3970 return tcon;
3971}
3972
Steve French96daf2b2011-05-27 04:34:02 +00003973struct cifs_tcon *
Jeff Layton9d002df2010-10-06 19:51:11 -04003974cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb)
3975{
3976 return tlink_tcon(cifs_sb_master_tlink(cifs_sb));
3977}
3978
3979static int
3980cifs_sb_tcon_pending_wait(void *unused)
3981{
3982 schedule();
3983 return signal_pending(current) ? -ERESTARTSYS : 0;
3984}
3985
Jeff Laytonb647c352010-10-28 11:16:44 -04003986/* find and return a tlink with given uid */
3987static struct tcon_link *
3988tlink_rb_search(struct rb_root *root, uid_t uid)
3989{
3990 struct rb_node *node = root->rb_node;
3991 struct tcon_link *tlink;
3992
3993 while (node) {
3994 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
3995
3996 if (tlink->tl_uid > uid)
3997 node = node->rb_left;
3998 else if (tlink->tl_uid < uid)
3999 node = node->rb_right;
4000 else
4001 return tlink;
4002 }
4003 return NULL;
4004}
4005
4006/* insert a tcon_link into the tree */
4007static void
4008tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink)
4009{
4010 struct rb_node **new = &(root->rb_node), *parent = NULL;
4011 struct tcon_link *tlink;
4012
4013 while (*new) {
4014 tlink = rb_entry(*new, struct tcon_link, tl_rbnode);
4015 parent = *new;
4016
4017 if (tlink->tl_uid > new_tlink->tl_uid)
4018 new = &((*new)->rb_left);
4019 else
4020 new = &((*new)->rb_right);
4021 }
4022
4023 rb_link_node(&new_tlink->tl_rbnode, parent, new);
4024 rb_insert_color(&new_tlink->tl_rbnode, root);
4025}
4026
Jeff Layton9d002df2010-10-06 19:51:11 -04004027/*
4028 * Find or construct an appropriate tcon given a cifs_sb and the fsuid of the
4029 * current task.
4030 *
4031 * If the superblock doesn't refer to a multiuser mount, then just return
4032 * the master tcon for the mount.
4033 *
Suresh Jayaraman6ef933a2010-11-03 10:53:49 +05304034 * First, search the rbtree for an existing tcon for this fsuid. If one
Jeff Layton9d002df2010-10-06 19:51:11 -04004035 * exists, then check to see if it's pending construction. If it is then wait
4036 * for construction to complete. Once it's no longer pending, check to see if
4037 * it failed and either return an error or retry construction, depending on
4038 * the timeout.
4039 *
4040 * If one doesn't exist then insert a new tcon_link struct into the tree and
4041 * try to construct a new one.
4042 */
4043struct tcon_link *
4044cifs_sb_tlink(struct cifs_sb_info *cifs_sb)
4045{
4046 int ret;
Jeff Laytonb647c352010-10-28 11:16:44 -04004047 uid_t fsuid = current_fsuid();
Jeff Layton9d002df2010-10-06 19:51:11 -04004048 struct tcon_link *tlink, *newtlink;
4049
4050 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER))
4051 return cifs_get_tlink(cifs_sb_master_tlink(cifs_sb));
4052
4053 spin_lock(&cifs_sb->tlink_tree_lock);
Jeff Laytonb647c352010-10-28 11:16:44 -04004054 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
Jeff Layton9d002df2010-10-06 19:51:11 -04004055 if (tlink)
4056 cifs_get_tlink(tlink);
4057 spin_unlock(&cifs_sb->tlink_tree_lock);
4058
4059 if (tlink == NULL) {
4060 newtlink = kzalloc(sizeof(*tlink), GFP_KERNEL);
4061 if (newtlink == NULL)
4062 return ERR_PTR(-ENOMEM);
Jeff Laytonb647c352010-10-28 11:16:44 -04004063 newtlink->tl_uid = fsuid;
Jeff Layton9d002df2010-10-06 19:51:11 -04004064 newtlink->tl_tcon = ERR_PTR(-EACCES);
4065 set_bit(TCON_LINK_PENDING, &newtlink->tl_flags);
4066 set_bit(TCON_LINK_IN_TREE, &newtlink->tl_flags);
4067 cifs_get_tlink(newtlink);
4068
Jeff Layton9d002df2010-10-06 19:51:11 -04004069 spin_lock(&cifs_sb->tlink_tree_lock);
4070 /* was one inserted after previous search? */
Jeff Laytonb647c352010-10-28 11:16:44 -04004071 tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid);
Jeff Layton9d002df2010-10-06 19:51:11 -04004072 if (tlink) {
4073 cifs_get_tlink(tlink);
4074 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004075 kfree(newtlink);
4076 goto wait_for_construction;
4077 }
Jeff Layton9d002df2010-10-06 19:51:11 -04004078 tlink = newtlink;
Jeff Laytonb647c352010-10-28 11:16:44 -04004079 tlink_rb_insert(&cifs_sb->tlink_tree, tlink);
4080 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton9d002df2010-10-06 19:51:11 -04004081 } else {
4082wait_for_construction:
4083 ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING,
4084 cifs_sb_tcon_pending_wait,
4085 TASK_INTERRUPTIBLE);
4086 if (ret) {
4087 cifs_put_tlink(tlink);
4088 return ERR_PTR(ret);
4089 }
4090
4091 /* if it's good, return it */
4092 if (!IS_ERR(tlink->tl_tcon))
4093 return tlink;
4094
4095 /* return error if we tried this already recently */
4096 if (time_before(jiffies, tlink->tl_time + TLINK_ERROR_EXPIRE)) {
4097 cifs_put_tlink(tlink);
4098 return ERR_PTR(-EACCES);
4099 }
4100
4101 if (test_and_set_bit(TCON_LINK_PENDING, &tlink->tl_flags))
4102 goto wait_for_construction;
4103 }
4104
4105 tlink->tl_tcon = cifs_construct_tcon(cifs_sb, fsuid);
4106 clear_bit(TCON_LINK_PENDING, &tlink->tl_flags);
4107 wake_up_bit(&tlink->tl_flags, TCON_LINK_PENDING);
4108
4109 if (IS_ERR(tlink->tl_tcon)) {
4110 cifs_put_tlink(tlink);
4111 return ERR_PTR(-EACCES);
4112 }
4113
4114 return tlink;
4115}
Jeff Layton2de970f2010-10-06 19:51:12 -04004116
4117/*
4118 * periodic workqueue job that scans tcon_tree for a superblock and closes
4119 * out tcons.
4120 */
4121static void
4122cifs_prune_tlinks(struct work_struct *work)
4123{
4124 struct cifs_sb_info *cifs_sb = container_of(work, struct cifs_sb_info,
4125 prune_tlinks.work);
Jeff Laytonb647c352010-10-28 11:16:44 -04004126 struct rb_root *root = &cifs_sb->tlink_tree;
4127 struct rb_node *node = rb_first(root);
4128 struct rb_node *tmp;
4129 struct tcon_link *tlink;
Jeff Layton2de970f2010-10-06 19:51:12 -04004130
Jeff Laytonb647c352010-10-28 11:16:44 -04004131 /*
4132 * Because we drop the spinlock in the loop in order to put the tlink
4133 * it's not guarded against removal of links from the tree. The only
4134 * places that remove entries from the tree are this function and
4135 * umounts. Because this function is non-reentrant and is canceled
4136 * before umount can proceed, this is safe.
4137 */
4138 spin_lock(&cifs_sb->tlink_tree_lock);
4139 node = rb_first(root);
4140 while (node != NULL) {
4141 tmp = node;
4142 node = rb_next(tmp);
4143 tlink = rb_entry(tmp, struct tcon_link, tl_rbnode);
4144
4145 if (test_bit(TCON_LINK_MASTER, &tlink->tl_flags) ||
4146 atomic_read(&tlink->tl_count) != 0 ||
4147 time_after(tlink->tl_time + TLINK_IDLE_EXPIRE, jiffies))
4148 continue;
4149
4150 cifs_get_tlink(tlink);
4151 clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags);
4152 rb_erase(tmp, root);
4153
Jeff Layton2de970f2010-10-06 19:51:12 -04004154 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Laytonb647c352010-10-28 11:16:44 -04004155 cifs_put_tlink(tlink);
4156 spin_lock(&cifs_sb->tlink_tree_lock);
4157 }
4158 spin_unlock(&cifs_sb->tlink_tree_lock);
Jeff Layton2de970f2010-10-06 19:51:12 -04004159
Jeff Laytonda472fc2012-03-23 14:40:53 -04004160 queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks,
Jeff Layton2de970f2010-10-06 19:51:12 -04004161 TLINK_IDLE_EXPIRE);
4162}