blob: 7bd7cd31d8f5bb49a3ade6f09752372866016763 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/cifsfs.c
3 *
Steve French2b280fa2008-05-17 03:12:45 +00004 * Copyright (C) International Business Machines Corp., 2002,2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 * Common Internet FileSystem (CIFS) client
8 *
9 * This library is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published
11 * by the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
17 * the GNU Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24/* Note that BB means BUGBUG (ie something to fix eventually) */
25
26#include <linux/module.h>
27#include <linux/fs.h>
28#include <linux/mount.h>
29#include <linux/slab.h>
30#include <linux/init.h>
31#include <linux/list.h>
32#include <linux/seq_file.h>
33#include <linux/vfs.h>
34#include <linux/mempool.h>
Steve French6ab16d22005-11-29 20:55:11 -080035#include <linux/delay.h>
Steve French45af7a02006-04-21 22:52:25 +000036#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080037#include <linux/freezer.h>
Al Virofec11dd2011-07-18 13:50:40 -040038#include <linux/namei.h>
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -070039#include <linux/random.h>
Andrew Lunnc6e970a2017-03-28 23:45:06 +020040#include <linux/uuid.h>
Andreas Gruenbachera9ae0082016-04-22 12:11:38 +020041#include <linux/xattr.h>
Ben Greear3eb9a882010-09-01 17:06:02 -070042#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "cifsfs.h"
44#include "cifspdu.h"
45#define DECLARE_GLOBALS_HERE
46#include "cifsglob.h"
47#include "cifsproto.h"
48#include "cifs_debug.h"
49#include "cifs_fs_sb.h"
50#include <linux/mm.h>
Jeff Layton84a15b92007-11-03 05:02:24 +000051#include <linux/key-type.h>
Jeff Laytone5459372007-11-03 05:11:06 +000052#include "cifs_spnego.h"
Suresh Jayaramanf579cf32010-07-05 18:11:50 +053053#include "fscache.h"
Pavel Shilovsky3792c172012-01-12 22:40:50 +040054#include "smb2pdu.h"
Paulo Alcantara1c780222018-11-14 16:24:03 -020055#ifdef CONFIG_CIFS_DFS_UPCALL
56#include "dfs_cache.h"
57#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Deepa Dinamanicb7a69e2019-03-22 14:32:35 -070059/*
60 * DOS dates from 1980/1/1 through 2107/12/31
61 * Protocol specifications indicate the range should be to 119, which
62 * limits maximum year to 2099. But this range has not been checked.
63 */
64#define SMB_DATE_MAX (127<<9 | 12<<5 | 31)
65#define SMB_DATE_MIN (0<<9 | 1<<5 | 1)
66#define SMB_TIME_MAX (23<<11 | 59<<5 | 29)
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068int cifsFYI = 0;
Kees Cook14042972016-03-17 14:22:54 -070069bool traceSMB;
Steve Frenche7504732011-10-12 17:47:03 -050070bool enable_oplocks = true;
Kees Cook14042972016-03-17 14:22:54 -070071bool linuxExtEnabled = true;
72bool lookupCacheEnabled = true;
Steve Frenchf92a7202018-05-24 04:11:07 -050073bool disable_legacy_dialects; /* false by default */
Jeff Layton04912d62010-04-24 07:57:45 -040074unsigned int global_secflags = CIFSSEC_DEF;
Steve French39798772006-05-31 22:40:51 +000075/* unsigned int ntlmv2_support = 0; */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076unsigned int sign_CIFS_PDUs = 1;
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080077static const struct super_operations cifs_super_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078unsigned int CIFSMaxBufSize = CIFS_MAX_MSGSIZE;
Germano Percossicb978ac2016-09-30 21:25:24 -050079module_param(CIFSMaxBufSize, uint, 0444);
Steve French11911b92018-05-24 02:09:20 -050080MODULE_PARM_DESC(CIFSMaxBufSize, "Network buffer size (not including header) "
81 "for CIFS requests. "
Steve French63135e02007-07-17 17:34:02 +000082 "Default: 16384 Range: 8192 to 130048");
Linus Torvalds1da177e2005-04-16 15:20:36 -070083unsigned int cifs_min_rcv = CIFS_MIN_RCV_POOL;
Germano Percossicb978ac2016-09-30 21:25:24 -050084module_param(cifs_min_rcv, uint, 0444);
Steve French63135e02007-07-17 17:34:02 +000085MODULE_PARM_DESC(cifs_min_rcv, "Network buffers in pool. Default: 4 Range: "
86 "1 to 64");
Linus Torvalds1da177e2005-04-16 15:20:36 -070087unsigned int cifs_min_small = 30;
Germano Percossicb978ac2016-09-30 21:25:24 -050088module_param(cifs_min_small, uint, 0444);
Steve French63135e02007-07-17 17:34:02 +000089MODULE_PARM_DESC(cifs_min_small, "Small network buffers in pool. Default: 30 "
90 "Range: 2 to 256");
Linus Torvalds1da177e2005-04-16 15:20:36 -070091unsigned int cifs_max_pending = CIFS_MAX_REQ;
Jeff Layton60654ce2012-11-25 08:00:34 -050092module_param(cifs_max_pending, uint, 0444);
Steve French11911b92018-05-24 02:09:20 -050093MODULE_PARM_DESC(cifs_max_pending, "Simultaneous requests to server for "
94 "CIFS/SMB1 dialect (N/A for SMB3) "
Pavel Shilovsky10b9b982012-03-20 12:55:09 +030095 "Default: 32767 Range: 2 to 32767.");
Steve French00778e22018-09-18 14:05:18 -050096#ifdef CONFIG_CIFS_STATS2
97unsigned int slow_rsp_threshold = 1;
98module_param(slow_rsp_threshold, uint, 0644);
99MODULE_PARM_DESC(slow_rsp_threshold, "Amount of time (in seconds) to wait "
100 "before logging that a response is delayed. "
101 "Default: 1 (if set to 0 disables msg).");
102#endif /* STATS2 */
103
Steve Frenche7504732011-10-12 17:47:03 -0500104module_param(enable_oplocks, bool, 0644);
Jeff Layton60654ce2012-11-25 08:00:34 -0500105MODULE_PARM_DESC(enable_oplocks, "Enable or disable oplocks. Default: y/Y/1");
Steve Frenche7504732011-10-12 17:47:03 -0500106
Steve Frenchf92a7202018-05-24 04:11:07 -0500107module_param(disable_legacy_dialects, bool, 0644);
108MODULE_PARM_DESC(disable_legacy_dialects, "To improve security it may be "
109 "helpful to restrict the ability to "
110 "override the default dialects (SMB2.1, "
111 "SMB3 and SMB3.02) on mount with old "
112 "dialects (CIFS/SMB1 and SMB2) since "
113 "vers=1.0 (CIFS/SMB1) and vers=2.0 are weaker"
114 " and less secure. Default: n/N/0");
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116extern mempool_t *cifs_sm_req_poolp;
117extern mempool_t *cifs_req_poolp;
118extern mempool_t *cifs_mid_poolp;
119
Jeff Laytonda472fc2012-03-23 14:40:53 -0400120struct workqueue_struct *cifsiod_wq;
Steve French35cf94a2019-09-07 01:09:49 -0500121struct workqueue_struct *decrypt_wq;
Rabin Vincent3998e6b82017-05-03 17:54:01 +0200122struct workqueue_struct *cifsoplockd_wq;
Jeff Layton3d224622016-05-24 06:27:44 -0400123__u32 cifs_lock_secret;
Jeff Laytonda472fc2012-03-23 14:40:53 -0400124
Mateusz Guzik24261fc2013-03-08 16:30:03 +0100125/*
126 * Bumps refcount for cifs super block.
127 * Note that it should be only called if a referece to VFS super block is
128 * already held, e.g. in open-type syscalls context. Otherwise it can race with
129 * atomic_dec_and_test in deactivate_locked_super.
130 */
131void
132cifs_sb_active(struct super_block *sb)
133{
134 struct cifs_sb_info *server = CIFS_SB(sb);
135
136 if (atomic_inc_return(&server->active) == 1)
137 atomic_inc(&sb->s_active);
138}
139
140void
141cifs_sb_deactive(struct super_block *sb)
142{
143 struct cifs_sb_info *server = CIFS_SB(sb);
144
145 if (atomic_dec_and_test(&server->active))
146 deactivate_super(sb);
147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static int
Al Viro97d11522011-06-17 09:29:57 -0400150cifs_read_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 struct inode *inode;
Pavel Shilovskyb2e5cd32011-05-25 13:35:34 +0400153 struct cifs_sb_info *cifs_sb;
Jan Klos2f6c9472013-10-06 21:08:20 +0200154 struct cifs_tcon *tcon;
Deepa Dinamanicb7a69e2019-03-22 14:32:35 -0700155 struct timespec64 ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 int rc = 0;
Steve French50c2f752007-07-13 00:33:32 +0000157
Pavel Shilovskyb2e5cd32011-05-25 13:35:34 +0400158 cifs_sb = CIFS_SB(sb);
Jan Klos2f6c9472013-10-06 21:08:20 +0200159 tcon = cifs_sb_master_tcon(cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Al Viro2c6292a2011-06-17 09:05:48 -0400161 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIXACL)
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800162 sb->s_flags |= SB_POSIXACL;
Al Viro2c6292a2011-06-17 09:05:48 -0400163
Steve French8a69e962018-06-29 16:06:15 -0500164 if (tcon->snapshot_time)
165 sb->s_flags |= SB_RDONLY;
166
Jan Klos2f6c9472013-10-06 21:08:20 +0200167 if (tcon->ses->capabilities & tcon->ses->server->vals->cap_large_files)
Al Viro2c6292a2011-06-17 09:05:48 -0400168 sb->s_maxbytes = MAX_LFS_FILESIZE;
169 else
170 sb->s_maxbytes = MAX_NON_LFS;
171
Steve French553292a2019-10-11 17:36:13 -0700172 /*
173 * Some very old servers like DOS and OS/2 used 2 second granularity
174 * (while all current servers use 100ns granularity - see MS-DTYP)
175 * but 1 second is the maximum allowed granularity for the VFS
176 * so for old servers set time granularity to 1 second while for
177 * everything else (current servers) set it to 100ns.
178 */
Steve Frenchd4cfbf02019-10-08 00:27:14 -0500179 if ((tcon->ses->server->vals->protocol_id == SMB10_PROT_ID) &&
180 ((tcon->ses->capabilities &
181 tcon->ses->server->vals->cap_nt_find) == 0) &&
182 !tcon->unix_ext) {
183 sb->s_time_gran = 1000000000; /* 1 second is max allowed gran */
184 ts = cnvrtDosUnixTm(cpu_to_le16(SMB_DATE_MIN), 0, 0);
185 sb->s_time_min = ts.tv_sec;
186 ts = cnvrtDosUnixTm(cpu_to_le16(SMB_DATE_MAX),
187 cpu_to_le16(SMB_TIME_MAX), 0);
188 sb->s_time_max = ts.tv_sec;
189 } else {
190 /*
191 * Almost every server, including all SMB2+, uses DCE TIME
192 * ie 100 nanosecond units, since 1601. See MS-DTYP and MS-FSCC
193 */
194 sb->s_time_gran = 100;
Deepa Dinamanicb7a69e2019-03-22 14:32:35 -0700195 ts = cifs_NTtimeToUnix(0);
196 sb->s_time_min = ts.tv_sec;
197 ts = cifs_NTtimeToUnix(cpu_to_le64(S64_MAX));
198 sb->s_time_max = ts.tv_sec;
Deepa Dinamanicb7a69e2019-03-22 14:32:35 -0700199 }
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 sb->s_magic = CIFS_MAGIC_NUMBER;
202 sb->s_op = &cifs_super_ops;
Andreas Gruenbachera9ae0082016-04-22 12:11:38 +0200203 sb->s_xattr = cifs_xattr_handlers;
Jan Kara851ea082017-04-12 12:24:34 +0200204 rc = super_setup_bdi(sb);
205 if (rc)
206 goto out_no_root;
207 /* tune readahead according to rsize */
208 sb->s_bdi->ra_pages = cifs_sb->rsize / PAGE_SIZE;
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 sb->s_blocksize = CIFS_MAX_MSGSIZE;
211 sb->s_blocksize_bits = 14; /* default 2**14 = CIFS_MAX_MSGSIZE */
Shirish Pargaonkar9b6763e2011-02-21 23:56:59 -0600212 inode = cifs_root_iget(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
David Howellsce634ab2008-02-07 00:15:33 -0800214 if (IS_ERR(inode)) {
215 rc = PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 goto out_no_root;
217 }
218
Jan Klos2f6c9472013-10-06 21:08:20 +0200219 if (tcon->nocase)
Jeff Layton66ffd112013-07-30 11:38:44 -0400220 sb->s_d_op = &cifs_ci_dentry_ops;
221 else
222 sb->s_d_op = &cifs_dentry_ops;
223
Al Viro48fde702012-01-08 22:15:13 -0500224 sb->s_root = d_make_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (!sb->s_root) {
226 rc = -ENOMEM;
227 goto out_no_root;
228 }
Steve French50c2f752007-07-13 00:33:32 +0000229
Paul Bollef3a6a602011-10-12 14:14:04 +0200230#ifdef CONFIG_CIFS_NFSD_EXPORT
Steve French7521a3c2007-07-11 18:30:34 +0000231 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500232 cifs_dbg(FYI, "export ops supported\n");
Steve French7521a3c2007-07-11 18:30:34 +0000233 sb->s_export_op = &cifs_export_ops;
234 }
Paul Bollef3a6a602011-10-12 14:14:04 +0200235#endif /* CONFIG_CIFS_NFSD_EXPORT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 return 0;
238
239out_no_root:
Joe Perchesf96637b2013-05-04 22:12:25 -0500240 cifs_dbg(VFS, "%s: get root inode failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return rc;
242}
243
Al Viro6d686172011-06-17 08:34:57 -0400244static void cifs_kill_sb(struct super_block *sb)
245{
246 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
247 kill_anon_super(sb);
Al Viro98ab4942011-06-17 09:32:10 -0400248 cifs_umount(cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251static int
David Howells726c3342006-06-23 02:02:58 -0700252cifs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
David Howells726c3342006-06-23 02:02:58 -0700254 struct super_block *sb = dentry->d_sb;
Steve French39da9842008-04-28 04:04:34 +0000255 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Steve French96daf2b2011-05-27 04:34:02 +0000256 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Pavel Shilovsky76ec5e32012-09-18 16:20:33 -0700257 struct TCP_Server_Info *server = tcon->ses->server;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400258 unsigned int xid;
Pavel Shilovsky76ec5e32012-09-18 16:20:33 -0700259 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400261 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Steve French21ba3842018-06-24 23:18:52 -0500263 if (le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength) > 0)
264 buf->f_namelen =
265 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength);
266 else
267 buf->f_namelen = PATH_MAX;
268
269 buf->f_fsid.val[0] = tcon->vol_serial_number;
270 /* are using part of create time for more randomness, see man statfs */
271 buf->f_fsid.val[1] = (int)le64_to_cpu(tcon->vol_create_time);
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 buf->f_files = 0; /* undefined */
274 buf->f_ffree = 0; /* unlimited */
275
Pavel Shilovsky76ec5e32012-09-18 16:20:33 -0700276 if (server->ops->queryfs)
277 rc = server->ops->queryfs(xid, tcon, buf);
Steve French39da9842008-04-28 04:04:34 +0000278
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400279 free_xid(xid);
Steve French39da9842008-04-28 04:04:34 +0000280 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Steve French31742c52014-08-17 08:38:47 -0500283static long cifs_fallocate(struct file *file, int mode, loff_t off, loff_t len)
284{
Al Viro7119e222014-10-22 00:25:12 -0400285 struct cifs_sb_info *cifs_sb = CIFS_FILE_SB(file);
Steve French31742c52014-08-17 08:38:47 -0500286 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
287 struct TCP_Server_Info *server = tcon->ses->server;
288
289 if (server->ops->fallocate)
290 return server->ops->fallocate(file, tcon, mode, off, len);
291
292 return -EOPNOTSUPP;
293}
294
Al Viro10556cb22011-06-20 19:28:19 -0400295static int cifs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 struct cifs_sb_info *cifs_sb;
298
299 cifs_sb = CIFS_SB(inode->i_sb);
300
Miklos Szeredif696a362008-07-31 13:41:58 +0200301 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) {
302 if ((mask & MAY_EXEC) && !execute_ok(inode))
303 return -EACCES;
304 else
305 return 0;
306 } else /* file mode might have been restricted at mount time
Steve French50c2f752007-07-13 00:33:32 +0000307 on the client (above and beyond ACL on servers) for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 servers which do not support setting and viewing mode bits,
Steve French50c2f752007-07-13 00:33:32 +0000309 so allowing client to check permissions is useful */
Al Viro2830ba72011-06-20 19:16:29 -0400310 return generic_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Christoph Lametere18b8902006-12-06 20:33:20 -0800313static struct kmem_cache *cifs_inode_cachep;
314static struct kmem_cache *cifs_req_cachep;
315static struct kmem_cache *cifs_mid_cachep;
Christoph Lametere18b8902006-12-06 20:33:20 -0800316static struct kmem_cache *cifs_sm_req_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317mempool_t *cifs_sm_req_poolp;
318mempool_t *cifs_req_poolp;
319mempool_t *cifs_mid_poolp;
320
321static struct inode *
322cifs_alloc_inode(struct super_block *sb)
323{
324 struct cifsInodeInfo *cifs_inode;
Christoph Lametere94b1762006-12-06 20:33:17 -0800325 cifs_inode = kmem_cache_alloc(cifs_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (!cifs_inode)
327 return NULL;
328 cifs_inode->cifsAttrs = 0x20; /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 cifs_inode->time = 0;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700330 /*
331 * Until the file is open and we have gotten oplock info back from the
332 * server, can not assume caching of file data or metadata.
333 */
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300334 cifs_set_oplock_level(cifs_inode, 0);
Jeff Laytonaff8d5c2014-04-30 09:31:45 -0400335 cifs_inode->flags = 0;
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000336 spin_lock_init(&cifs_inode->writers_lock);
337 cifs_inode->writers = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 cifs_inode->vfs_inode.i_blkbits = 14; /* 2**14 = CIFS_MAX_MSGSIZE */
Jeff Laytonfbec9ab2009-04-03 13:44:00 -0400339 cifs_inode->server_eof = 0;
Jeff Layton20054bd2011-01-07 11:30:27 -0500340 cifs_inode->uniqueid = 0;
341 cifs_inode->createtime = 0;
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400342 cifs_inode->epoch = 0;
Ronnie Sahlberg487317c2019-06-05 10:38:38 +1000343 spin_lock_init(&cifs_inode->open_file_lock);
Steve Frenchfa70b872016-09-22 00:39:34 -0500344 generate_random_uuid(cifs_inode->lease_key);
Steve French2a38e122017-07-08 18:48:15 -0500345
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700346 /*
347 * Can not set i_flags here - they get immediately overwritten to zero
348 * by the VFS.
349 */
350 /* cifs_inode->vfs_inode.i_flags = S_NOATIME | S_NOCMTIME; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 INIT_LIST_HEAD(&cifs_inode->openFileList);
Pavel Shilovskyf45d3412012-09-19 06:22:43 -0700352 INIT_LIST_HEAD(&cifs_inode->llist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return &cifs_inode->vfs_inode;
354}
355
356static void
Al Viroc2e68022019-04-14 23:18:35 -0400357cifs_free_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Al Viroc2e68022019-04-14 23:18:35 -0400359 kmem_cache_free(cifs_inode_cachep, CIFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
Jeff Layton61f98ff2009-06-11 10:27:32 -0400362static void
Al Virob57922d2010-06-07 14:34:48 -0400363cifs_evict_inode(struct inode *inode)
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530364{
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700365 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200366 clear_inode(inode);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530367 cifs_fscache_release_inode_cookie(inode);
368}
369
370static void
Jeff Layton61f98ff2009-06-11 10:27:32 -0400371cifs_show_address(struct seq_file *s, struct TCP_Server_Info *server)
372{
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300373 struct sockaddr_in *sa = (struct sockaddr_in *) &server->dstaddr;
374 struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) &server->dstaddr;
375
Fabian Frederick571d5972014-05-13 18:04:17 +0200376 seq_puts(s, ",addr=");
Jeff Layton61f98ff2009-06-11 10:27:32 -0400377
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300378 switch (server->dstaddr.ss_family) {
Jeff Layton61f98ff2009-06-11 10:27:32 -0400379 case AF_INET:
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300380 seq_printf(s, "%pI4", &sa->sin_addr.s_addr);
Jeff Layton61f98ff2009-06-11 10:27:32 -0400381 break;
382 case AF_INET6:
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300383 seq_printf(s, "%pI6", &sa6->sin6_addr.s6_addr);
384 if (sa6->sin6_scope_id)
385 seq_printf(s, "%%%u", sa6->sin6_scope_id);
Jeff Layton61f98ff2009-06-11 10:27:32 -0400386 break;
387 default:
Fabian Frederick571d5972014-05-13 18:04:17 +0200388 seq_puts(s, "(unknown)");
Jeff Layton61f98ff2009-06-11 10:27:32 -0400389 }
Long Li8339dd32017-11-07 01:54:55 -0700390 if (server->rdma)
391 seq_puts(s, ",rdma");
Jeff Layton61f98ff2009-06-11 10:27:32 -0400392}
393
Jeff Layton3e715512011-06-13 11:50:41 -0400394static void
Jeff Layton28e11bd2013-05-26 07:01:00 -0400395cifs_show_security(struct seq_file *s, struct cifs_ses *ses)
Jeff Layton3e715512011-06-13 11:50:41 -0400396{
Steve Frencheda21162015-09-11 19:24:19 -0500397 if (ses->sectype == Unspecified) {
398 if (ses->user_name == NULL)
399 seq_puts(s, ",sec=none");
Jeff Layton28e11bd2013-05-26 07:01:00 -0400400 return;
Steve Frencheda21162015-09-11 19:24:19 -0500401 }
Jeff Layton28e11bd2013-05-26 07:01:00 -0400402
Fabian Frederick571d5972014-05-13 18:04:17 +0200403 seq_puts(s, ",sec=");
Jeff Layton3e715512011-06-13 11:50:41 -0400404
Jeff Layton28e11bd2013-05-26 07:01:00 -0400405 switch (ses->sectype) {
Jeff Layton3e715512011-06-13 11:50:41 -0400406 case LANMAN:
Fabian Frederick571d5972014-05-13 18:04:17 +0200407 seq_puts(s, "lanman");
Jeff Layton3e715512011-06-13 11:50:41 -0400408 break;
409 case NTLMv2:
Fabian Frederick571d5972014-05-13 18:04:17 +0200410 seq_puts(s, "ntlmv2");
Jeff Layton3e715512011-06-13 11:50:41 -0400411 break;
412 case NTLM:
Fabian Frederick571d5972014-05-13 18:04:17 +0200413 seq_puts(s, "ntlm");
Jeff Layton3e715512011-06-13 11:50:41 -0400414 break;
415 case Kerberos:
Steve French96281b92019-03-02 06:56:54 -0600416 seq_printf(s, "krb5,cruid=%u", from_kuid_munged(&init_user_ns,ses->cred_uid));
Jeff Layton3e715512011-06-13 11:50:41 -0400417 break;
418 case RawNTLMSSP:
Fabian Frederick571d5972014-05-13 18:04:17 +0200419 seq_puts(s, "ntlmssp");
Jeff Layton3e715512011-06-13 11:50:41 -0400420 break;
421 default:
422 /* shouldn't ever happen */
Fabian Frederick571d5972014-05-13 18:04:17 +0200423 seq_puts(s, "unknown");
Jeff Layton3e715512011-06-13 11:50:41 -0400424 break;
425 }
426
Jeff Layton28e11bd2013-05-26 07:01:00 -0400427 if (ses->sign)
Fabian Frederick571d5972014-05-13 18:04:17 +0200428 seq_puts(s, "i");
Jeff Layton3e715512011-06-13 11:50:41 -0400429}
430
Jeff Laytond06b5052012-05-16 07:53:01 -0400431static void
432cifs_show_cache_flavor(struct seq_file *s, struct cifs_sb_info *cifs_sb)
433{
Fabian Frederick571d5972014-05-13 18:04:17 +0200434 seq_puts(s, ",cache=");
Jeff Laytond06b5052012-05-16 07:53:01 -0400435
436 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO)
Fabian Frederick571d5972014-05-13 18:04:17 +0200437 seq_puts(s, "strict");
Jeff Laytond06b5052012-05-16 07:53:01 -0400438 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO)
Fabian Frederick571d5972014-05-13 18:04:17 +0200439 seq_puts(s, "none");
Steve French41e033f2019-08-30 02:12:41 -0500440 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RW_CACHE)
441 seq_puts(s, "singleclient"); /* assume only one client access */
Steve French83bbfa72019-08-27 23:58:54 -0500442 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE)
443 seq_puts(s, "ro"); /* read only caching assumed */
Jeff Laytond06b5052012-05-16 07:53:01 -0400444 else
Fabian Frederick571d5972014-05-13 18:04:17 +0200445 seq_puts(s, "loose");
Jeff Laytond06b5052012-05-16 07:53:01 -0400446}
447
Jeff Layton3ae35cd2013-07-30 13:34:40 -0400448static void
449cifs_show_nls(struct seq_file *s, struct nls_table *cur)
450{
451 struct nls_table *def;
452
453 /* Display iocharset= option if it's not default charset */
454 def = load_nls_default();
455 if (def != cur)
456 seq_printf(s, ",iocharset=%s", cur->charset);
457 unload_nls(def);
458}
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460/*
461 * cifs_show_options() is for displaying mount options in /proc/mounts.
462 * Not all settable options are displayed but most of the important
463 * ones are.
464 */
465static int
Al Viro34c80b12011-12-08 21:32:45 -0500466cifs_show_options(struct seq_file *s, struct dentry *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Al Viro34c80b12011-12-08 21:32:45 -0500468 struct cifs_sb_info *cifs_sb = CIFS_SB(root->d_sb);
Steve French96daf2b2011-05-27 04:34:02 +0000469 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Ben Greear3eb9a882010-09-01 17:06:02 -0700470 struct sockaddr *srcaddr;
471 srcaddr = (struct sockaddr *)&tcon->ses->server->srcaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Kees Cooka068acf2015-09-04 15:44:57 -0700473 seq_show_option(s, "vers", tcon->ses->server->vals->version_string);
Jeff Layton28e11bd2013-05-26 07:01:00 -0400474 cifs_show_security(s, tcon->ses);
Jeff Laytond06b5052012-05-16 07:53:01 -0400475 cifs_show_cache_flavor(s, cifs_sb);
Jeff Layton3e715512011-06-13 11:50:41 -0400476
Steve French3e7a02d2019-09-11 21:46:20 -0500477 if (tcon->no_lease)
478 seq_puts(s, ",nolease");
Jeff Layton29e07c82010-09-29 19:51:12 -0400479 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER)
Fabian Frederick571d5972014-05-13 18:04:17 +0200480 seq_puts(s, ",multiuser");
Steve French8727c8a2011-02-25 01:11:56 -0600481 else if (tcon->ses->user_name)
Kees Cooka068acf2015-09-04 15:44:57 -0700482 seq_show_option(s, "username", tcon->ses->user_name);
Jeff Layton29e07c82010-09-29 19:51:12 -0400483
Ronnie Sahlberge55954a2018-08-10 11:31:10 +1000484 if (tcon->ses->domainName && tcon->ses->domainName[0] != 0)
Kees Cooka068acf2015-09-04 15:44:57 -0700485 seq_show_option(s, "domain", tcon->ses->domainName);
Jeff Layton8616e0f2009-06-11 10:27:28 -0400486
Ben Greear3eb9a882010-09-01 17:06:02 -0700487 if (srcaddr->sa_family != AF_UNSPEC) {
488 struct sockaddr_in *saddr4;
489 struct sockaddr_in6 *saddr6;
490 saddr4 = (struct sockaddr_in *)srcaddr;
491 saddr6 = (struct sockaddr_in6 *)srcaddr;
492 if (srcaddr->sa_family == AF_INET6)
493 seq_printf(s, ",srcaddr=%pI6c",
494 &saddr6->sin6_addr);
495 else if (srcaddr->sa_family == AF_INET)
496 seq_printf(s, ",srcaddr=%pI4",
497 &saddr4->sin_addr.s_addr);
498 else
499 seq_printf(s, ",srcaddr=BAD-AF:%i",
500 (int)(srcaddr->sa_family));
501 }
502
Eric W. Biederman1f682332013-02-06 01:20:20 -0800503 seq_printf(s, ",uid=%u",
504 from_kuid_munged(&init_user_ns, cifs_sb->mnt_uid));
Jeff Layton340481a32009-06-11 10:27:29 -0400505 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)
Fabian Frederick571d5972014-05-13 18:04:17 +0200506 seq_puts(s, ",forceuid");
Jeff Layton4486d6e2009-08-03 12:45:10 -0400507 else
Fabian Frederick571d5972014-05-13 18:04:17 +0200508 seq_puts(s, ",noforceuid");
Jeff Layton340481a32009-06-11 10:27:29 -0400509
Eric W. Biederman1f682332013-02-06 01:20:20 -0800510 seq_printf(s, ",gid=%u",
511 from_kgid_munged(&init_user_ns, cifs_sb->mnt_gid));
Jeff Layton340481a32009-06-11 10:27:29 -0400512 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)
Fabian Frederick571d5972014-05-13 18:04:17 +0200513 seq_puts(s, ",forcegid");
Jeff Layton4486d6e2009-08-03 12:45:10 -0400514 else
Fabian Frederick571d5972014-05-13 18:04:17 +0200515 seq_puts(s, ",noforcegid");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400516
Jeff Layton61f98ff2009-06-11 10:27:32 -0400517 cifs_show_address(s, tcon->ses->server);
Jeff Layton8616e0f2009-06-11 10:27:28 -0400518
519 if (!tcon->unix_ext)
Al Viro5206efd2011-07-26 03:22:14 -0400520 seq_printf(s, ",file_mode=0%ho,dir_mode=0%ho",
Steve French2b280fa2008-05-17 03:12:45 +0000521 cifs_sb->mnt_file_mode,
522 cifs_sb->mnt_dir_mode);
Jeff Layton3ae35cd2013-07-30 13:34:40 -0400523
524 cifs_show_nls(s, cifs_sb->local_nls);
525
Jeff Layton8616e0f2009-06-11 10:27:28 -0400526 if (tcon->seal)
Fabian Frederick571d5972014-05-13 18:04:17 +0200527 seq_puts(s, ",seal");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400528 if (tcon->nocase)
Fabian Frederick571d5972014-05-13 18:04:17 +0200529 seq_puts(s, ",nocase");
Kenneth D'souzac8b6ac12019-01-21 11:51:59 +1000530 if (tcon->local_lease)
531 seq_puts(s, ",locallease");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400532 if (tcon->retry)
Fabian Frederick571d5972014-05-13 18:04:17 +0200533 seq_puts(s, ",hard");
Ronnie Sahlberg6e82e922017-09-20 13:09:23 +1000534 else
535 seq_puts(s, ",soft");
Steve Frenchf16dfa72015-09-30 21:07:59 -0500536 if (tcon->use_persistent)
537 seq_puts(s, ",persistenthandles");
Steve French592fafe2015-11-03 10:08:53 -0600538 else if (tcon->use_resilient)
539 seq_puts(s, ",resilienthandles");
Steve Frenchb3266142018-05-20 23:41:10 -0500540 if (tcon->posix_extensions)
541 seq_puts(s, ",posix");
542 else if (tcon->unix_ext)
543 seq_puts(s, ",unix");
544 else
545 seq_puts(s, ",nounix");
Aurelien Aptel83930722018-09-20 18:10:25 -0700546 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
547 seq_puts(s, ",nodfs");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400548 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)
Fabian Frederick571d5972014-05-13 18:04:17 +0200549 seq_puts(s, ",posixpaths");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400550 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID)
Fabian Frederick571d5972014-05-13 18:04:17 +0200551 seq_puts(s, ",setuids");
Steve French95932652016-09-23 01:36:34 -0500552 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UID_FROM_ACL)
553 seq_puts(s, ",idsfromsid");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400554 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)
Fabian Frederick571d5972014-05-13 18:04:17 +0200555 seq_puts(s, ",serverino");
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000556 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD)
Fabian Frederick571d5972014-05-13 18:04:17 +0200557 seq_puts(s, ",rwpidforward");
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000558 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200559 seq_puts(s, ",forcemand");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400560 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
Fabian Frederick571d5972014-05-13 18:04:17 +0200561 seq_puts(s, ",nouser_xattr");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400562 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR)
Fabian Frederick571d5972014-05-13 18:04:17 +0200563 seq_puts(s, ",mapchars");
Nakajima Akirabc8ebdc42015-02-13 15:35:58 +0900564 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SFM_CHR)
565 seq_puts(s, ",mapposix");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400566 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200567 seq_puts(s, ",sfu");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400568 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200569 seq_puts(s, ",nobrl");
Steve French3d4ef9a2018-04-25 22:19:09 -0500570 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_HANDLE_CACHE)
571 seq_puts(s, ",nohandlecache");
Steve French412094a2019-06-24 02:01:42 -0500572 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MODE_FROM_SID)
573 seq_puts(s, ",modefromsid");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400574 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200575 seq_puts(s, ",cifsacl");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400576 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)
Fabian Frederick571d5972014-05-13 18:04:17 +0200577 seq_puts(s, ",dynperm");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800578 if (root->d_sb->s_flags & SB_POSIXACL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200579 seq_puts(s, ",acl");
Stefan Metzmacher736a33202010-07-30 14:56:00 +0200580 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
Fabian Frederick571d5972014-05-13 18:04:17 +0200581 seq_puts(s, ",mfsymlinks");
Suresh Jayaraman476428f2010-11-24 17:49:07 +0530582 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE)
Fabian Frederick571d5972014-05-13 18:04:17 +0200583 seq_puts(s, ",fsc");
Steve French71c424b2011-10-19 20:44:48 -0500584 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC)
Fabian Frederick571d5972014-05-13 18:04:17 +0200585 seq_puts(s, ",nostrictsync");
Steve French71c424b2011-10-19 20:44:48 -0500586 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM)
Fabian Frederick571d5972014-05-13 18:04:17 +0200587 seq_puts(s, ",noperm");
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +0100588 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPUID)
Eric W. Biederman1f682332013-02-06 01:20:20 -0800589 seq_printf(s, ",backupuid=%u",
590 from_kuid_munged(&init_user_ns,
591 cifs_sb->mnt_backupuid));
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +0100592 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPGID)
Eric W. Biederman1f682332013-02-06 01:20:20 -0800593 seq_printf(s, ",backupgid=%u",
594 from_kgid_munged(&init_user_ns,
595 cifs_sb->mnt_backupgid));
Steve French2b280fa2008-05-17 03:12:45 +0000596
Sachin Prabhu28f88812012-04-24 15:28:30 +0100597 seq_printf(s, ",rsize=%u", cifs_sb->rsize);
598 seq_printf(s, ",wsize=%u", cifs_sb->wsize);
Steve Frenche8506d22019-02-28 21:32:15 -0600599 seq_printf(s, ",bsize=%u", cifs_sb->bsize);
Steve French563317e2019-09-08 23:22:02 -0500600 if (tcon->ses->server->min_offload)
601 seq_printf(s, ",esize=%u", tcon->ses->server->min_offload);
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600602 seq_printf(s, ",echo_interval=%lu",
603 tcon->ses->server->echo_interval / HZ);
Steve Frenchdc179262019-06-17 17:34:57 -0500604
605 /* Only display max_credits if it was overridden on mount */
606 if (tcon->ses->server->max_credits != SMB2_MAX_CREDITS_AVAILABLE)
607 seq_printf(s, ",max_credits=%u", tcon->ses->server->max_credits);
608
Steve French8a69e962018-06-29 16:06:15 -0500609 if (tcon->snapshot_time)
610 seq_printf(s, ",snapshot=%llu", tcon->snapshot_time);
Steve Frenchca567eb2019-03-29 16:31:07 -0500611 if (tcon->handle_timeout)
612 seq_printf(s, ",handletimeout=%u", tcon->handle_timeout);
Suresh Jayaraman6d20e842010-12-01 14:42:28 +0530613 /* convert actimeo and display it in seconds */
Sachin Prabhu156d1792012-04-25 12:10:14 +0100614 seq_printf(s, ",actimeo=%lu", cifs_sb->actimeo / HZ);
Jeff Layton8616e0f2009-06-11 10:27:28 -0400615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return 0;
617}
618
Al Viro42faad92008-04-24 07:21:56 -0400619static void cifs_umount_begin(struct super_block *sb)
Steve French68058e72005-10-10 10:34:22 -0700620{
Al Viro42faad92008-04-24 07:21:56 -0400621 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Steve French96daf2b2011-05-27 04:34:02 +0000622 struct cifs_tcon *tcon;
Steve French68058e72005-10-10 10:34:22 -0700623
Steve French4523cc32007-04-30 20:13:06 +0000624 if (cifs_sb == NULL)
Steve French9e2e85f2005-10-10 14:28:38 -0700625 return;
626
Jeff Layton0d424ad2010-09-20 16:01:35 -0700627 tcon = cifs_sb_master_tcon(cifs_sb);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500628
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530629 spin_lock(&cifs_tcp_ses_lock);
Steve Frenchad8034f2009-06-26 03:25:49 +0000630 if ((tcon->tc_count > 1) || (tcon->tidStatus == CifsExiting)) {
631 /* we have other mounts to same share or we have
632 already tried to force umount this and woken up
633 all waiting network requests, nothing to do */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530634 spin_unlock(&cifs_tcp_ses_lock);
Steve Frenchad8034f2009-06-26 03:25:49 +0000635 return;
636 } else if (tcon->tc_count == 1)
Steve French5e1253b2005-10-10 14:06:37 -0700637 tcon->tidStatus = CifsExiting;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530638 spin_unlock(&cifs_tcp_ses_lock);
Steve French5e1253b2005-10-10 14:06:37 -0700639
Steve French3a5ff612006-07-14 22:37:11 +0000640 /* cancel_brl_requests(tcon); */ /* BB mark all brl mids as exiting */
Steve French7b7abfe2005-11-09 15:21:09 -0800641 /* cancel_notify_requests(tcon); */
Steve French50c2f752007-07-13 00:33:32 +0000642 if (tcon->ses && tcon->ses->server) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500643 cifs_dbg(FYI, "wake up tasks now - umount begin not complete\n");
Steve French9e2e85f2005-10-10 14:28:38 -0700644 wake_up_all(&tcon->ses->server->request_q);
Steve French6ab16d22005-11-29 20:55:11 -0800645 wake_up_all(&tcon->ses->server->response_q);
646 msleep(1); /* yield */
647 /* we have to kick the requests once more */
648 wake_up_all(&tcon->ses->server->response_q);
649 msleep(1);
Steve French5e1253b2005-10-10 14:06:37 -0700650 }
Steve French68058e72005-10-10 10:34:22 -0700651
652 return;
653}
Steve French68058e72005-10-10 10:34:22 -0700654
Steve Frenchbf97d282006-09-28 21:34:06 +0000655#ifdef CONFIG_CIFS_STATS2
Al Viro64132372011-12-08 20:51:13 -0500656static int cifs_show_stats(struct seq_file *s, struct dentry *root)
Steve Frenchbf97d282006-09-28 21:34:06 +0000657{
658 /* BB FIXME */
659 return 0;
660}
661#endif
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663static int cifs_remount(struct super_block *sb, int *flags, char *data)
664{
Theodore Ts'o02b99842014-03-13 10:14:33 -0400665 sync_filesystem(sb);
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800666 *flags |= SB_NODIRATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return 0;
668}
669
Al Viro45321ac2010-06-07 13:43:19 -0400670static int cifs_drop_inode(struct inode *inode)
Jeff Layton12420ac2010-06-01 14:47:40 -0400671{
672 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
673
Al Viro45321ac2010-06-07 13:43:19 -0400674 /* no serverino => unconditional eviction */
675 return !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) ||
676 generic_drop_inode(inode);
Jeff Layton12420ac2010-06-01 14:47:40 -0400677}
678
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800679static const struct super_operations cifs_super_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 .statfs = cifs_statfs,
681 .alloc_inode = cifs_alloc_inode,
Al Viroc2e68022019-04-14 23:18:35 -0400682 .free_inode = cifs_free_inode,
Jeff Layton12420ac2010-06-01 14:47:40 -0400683 .drop_inode = cifs_drop_inode,
Al Virob57922d2010-06-07 14:34:48 -0400684 .evict_inode = cifs_evict_inode,
Jeff Layton12420ac2010-06-01 14:47:40 -0400685/* .delete_inode = cifs_delete_inode, */ /* Do not need above
686 function unless later we add lazy close of inodes or unless the
Steve French50c2f752007-07-13 00:33:32 +0000687 kernel forgets to call us with the same number of releases (closes)
688 as opens */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 .show_options = cifs_show_options,
Steve French7b7abfe2005-11-09 15:21:09 -0800690 .umount_begin = cifs_umount_begin,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 .remount_fs = cifs_remount,
Steve Frenchbf97d282006-09-28 21:34:06 +0000692#ifdef CONFIG_CIFS_STATS2
Steve Frenchf46d3e12006-09-30 01:08:55 +0000693 .show_stats = cifs_show_stats,
Steve Frenchbf97d282006-09-28 21:34:06 +0000694#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695};
696
Steve Frenchf87d39d2011-05-27 03:50:55 +0000697/*
698 * Get root dentry from superblock according to prefix path mount option.
699 * Return dentry with refcount + 1 on success and NULL otherwise.
700 */
701static struct dentry *
702cifs_get_root(struct smb_vol *vol, struct super_block *sb)
703{
Al Virofec11dd2011-07-18 13:50:40 -0400704 struct dentry *dentry;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000705 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Al Virofec11dd2011-07-18 13:50:40 -0400706 char *full_path = NULL;
707 char *s, *p;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000708 char sep;
709
Sachin Prabhu348c1bf2016-07-29 22:38:21 +0100710 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH)
711 return dget(sb->s_root);
712
Steve French6d3ea7e2012-11-28 22:34:41 -0600713 full_path = cifs_build_path_to_root(vol, cifs_sb,
Sachin Prabhu374402a2016-12-15 12:31:19 +0530714 cifs_sb_master_tcon(cifs_sb), 0);
Steve Frenchf87d39d2011-05-27 03:50:55 +0000715 if (full_path == NULL)
Al Viro9403c9c2011-06-17 10:02:59 -0400716 return ERR_PTR(-ENOMEM);
Steve Frenchf87d39d2011-05-27 03:50:55 +0000717
Joe Perchesf96637b2013-05-04 22:12:25 -0500718 cifs_dbg(FYI, "Get root dentry for %s\n", full_path);
Steve Frenchf87d39d2011-05-27 03:50:55 +0000719
Steve Frenchf87d39d2011-05-27 03:50:55 +0000720 sep = CIFS_DIR_SEP(cifs_sb);
Al Virofec11dd2011-07-18 13:50:40 -0400721 dentry = dget(sb->s_root);
722 p = s = full_path;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000723
Al Virofec11dd2011-07-18 13:50:40 -0400724 do {
David Howells2b0143b2015-03-17 22:25:59 +0000725 struct inode *dir = d_inode(dentry);
Al Virofec11dd2011-07-18 13:50:40 -0400726 struct dentry *child;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000727
Pavel Shilovsky5b980b02011-08-21 19:30:15 +0400728 if (!dir) {
729 dput(dentry);
730 dentry = ERR_PTR(-ENOENT);
731 break;
732 }
Jeff Laytonce2ac522013-02-01 15:11:01 -0500733 if (!S_ISDIR(dir->i_mode)) {
734 dput(dentry);
735 dentry = ERR_PTR(-ENOTDIR);
736 break;
737 }
Pavel Shilovsky5b980b02011-08-21 19:30:15 +0400738
Al Virofec11dd2011-07-18 13:50:40 -0400739 /* skip separators */
740 while (*s == sep)
741 s++;
742 if (!*s)
743 break;
744 p = s++;
745 /* next separator */
746 while (*s && *s != sep)
747 s++;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000748
Al Viro85f40482016-03-07 23:20:44 -0500749 child = lookup_one_len_unlocked(p, dentry, s - p);
Al Virofec11dd2011-07-18 13:50:40 -0400750 dput(dentry);
751 dentry = child;
752 } while (!IS_ERR(dentry));
Steve Frenchf87d39d2011-05-27 03:50:55 +0000753 kfree(full_path);
Al Virofec11dd2011-07-18 13:50:40 -0400754 return dentry;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000755}
756
Al Viroee01a142011-06-17 09:47:23 -0400757static int cifs_set_super(struct super_block *sb, void *data)
758{
759 struct cifs_mnt_data *mnt_data = data;
760 sb->s_fs_info = mnt_data->cifs_sb;
761 return set_anon_super(sb, NULL);
762}
763
Al Virod753ed92010-07-26 12:52:33 +0400764static struct dentry *
Steve Frenchc7c137b2018-06-06 17:59:29 -0500765cifs_smb3_do_mount(struct file_system_type *fs_type,
766 int flags, const char *dev_name, void *data, bool is_smb3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
768 int rc;
Jan Blunckdb719222010-08-15 22:51:10 +0200769 struct super_block *sb;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000770 struct cifs_sb_info *cifs_sb;
771 struct smb_vol *volume_info;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400772 struct cifs_mnt_data mnt_data;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000773 struct dentry *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Steve French8c1beb92018-10-07 13:52:18 -0500775 /*
776 * Prints in Kernel / CIFS log the attempted mount operation
777 * If CIFS_DEBUG && cifs_FYI
778 */
Rodrigo Freiref80eaed2018-10-07 12:21:26 -0300779 if (cifsFYI)
780 cifs_dbg(FYI, "Devname: %s flags: %d\n", dev_name, flags);
781 else
782 cifs_info("Attempting to mount %s\n", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Steve Frenchc7c137b2018-06-06 17:59:29 -0500784 volume_info = cifs_get_volume_info((char *)data, dev_name, is_smb3);
Jeff Layton04db79b2011-07-06 08:10:38 -0400785 if (IS_ERR(volume_info))
786 return ERR_CAST(volume_info);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000787
788 cifs_sb = kzalloc(sizeof(struct cifs_sb_info), GFP_KERNEL);
789 if (cifs_sb == NULL) {
790 root = ERR_PTR(-ENOMEM);
Al Viro5c4f1ad2011-06-17 09:56:55 -0400791 goto out_nls;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000792 }
793
Al Viro5d3bc602011-06-17 09:17:28 -0400794 cifs_sb->mountdata = kstrndup(data, PAGE_SIZE, GFP_KERNEL);
795 if (cifs_sb->mountdata == NULL) {
796 root = ERR_PTR(-ENOMEM);
Sachin Prabhu4214ebf2016-07-29 22:38:19 +0100797 goto out_free;
Al Viro5d3bc602011-06-17 09:17:28 -0400798 }
799
Sachin Prabhu4214ebf2016-07-29 22:38:19 +0100800 rc = cifs_setup_cifs_sb(volume_info, cifs_sb);
801 if (rc) {
802 root = ERR_PTR(rc);
803 goto out_free;
Aurelien Aptela6b50582016-05-25 19:59:09 +0200804 }
805
Al Viro97d11522011-06-17 09:29:57 -0400806 rc = cifs_mount(cifs_sb, volume_info);
807 if (rc) {
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800808 if (!(flags & SB_SILENT))
Joe Perchesf96637b2013-05-04 22:12:25 -0500809 cifs_dbg(VFS, "cifs_mount failed w/return code = %d\n",
810 rc);
Al Viro97d11522011-06-17 09:29:57 -0400811 root = ERR_PTR(rc);
Sachin Prabhu4214ebf2016-07-29 22:38:19 +0100812 goto out_free;
Al Viro97d11522011-06-17 09:29:57 -0400813 }
814
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400815 mnt_data.vol = volume_info;
816 mnt_data.cifs_sb = cifs_sb;
817 mnt_data.flags = flags;
818
David Howells9249e172012-06-25 12:55:37 +0100819 /* BB should we make this contingent on mount parm? */
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800820 flags |= SB_NODIRATIME | SB_NOATIME;
David Howells9249e172012-06-25 12:55:37 +0100821
822 sb = sget(fs_type, cifs_match_super, cifs_set_super, flags, &mnt_data);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000823 if (IS_ERR(sb)) {
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000824 root = ERR_CAST(sb);
Al Viro97d11522011-06-17 09:29:57 -0400825 cifs_umount(cifs_sb);
Al Virod757d712011-06-17 09:42:43 -0400826 goto out;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Al Viroee01a142011-06-17 09:47:23 -0400829 if (sb->s_root) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500830 cifs_dbg(FYI, "Use existing superblock\n");
Al Viro97d11522011-06-17 09:29:57 -0400831 cifs_umount(cifs_sb);
Al Viro5c4f1ad2011-06-17 09:56:55 -0400832 } else {
Al Viro5c4f1ad2011-06-17 09:56:55 -0400833 rc = cifs_read_super(sb);
834 if (rc) {
835 root = ERR_PTR(rc);
836 goto out_super;
837 }
838
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800839 sb->s_flags |= SB_ACTIVE;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400840 }
841
Sachin Prabhu348c1bf2016-07-29 22:38:21 +0100842 root = cifs_get_root(volume_info, sb);
Al Viro9403c9c2011-06-17 10:02:59 -0400843 if (IS_ERR(root))
Al Virofa18f1b2011-06-17 09:50:44 -0400844 goto out_super;
Al Virofa18f1b2011-06-17 09:50:44 -0400845
Joe Perchesf96637b2013-05-04 22:12:25 -0500846 cifs_dbg(FYI, "dentry root is: %p\n", root);
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400847 goto out;
848
Pavel Shilovsky641a58d2011-05-26 00:02:16 +0400849out_super:
Pavel Shilovsky641a58d2011-05-26 00:02:16 +0400850 deactivate_locked_super(sb);
Pavel Shilovsky641a58d2011-05-26 00:02:16 +0400851out:
Jeff Laytonf9e59bc2011-07-06 08:10:37 -0400852 cifs_cleanup_volume_info(volume_info);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000853 return root;
Al Viro5c4f1ad2011-06-17 09:56:55 -0400854
Sachin Prabhu4214ebf2016-07-29 22:38:19 +0100855out_free:
856 kfree(cifs_sb->prepath);
Al Viro5c4f1ad2011-06-17 09:56:55 -0400857 kfree(cifs_sb->mountdata);
Al Viro5c4f1ad2011-06-17 09:56:55 -0400858 kfree(cifs_sb);
859out_nls:
860 unload_nls(volume_info->local_nls);
861 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
Steve Frenchc7c137b2018-06-06 17:59:29 -0500864static struct dentry *
865smb3_do_mount(struct file_system_type *fs_type,
866 int flags, const char *dev_name, void *data)
867{
868 return cifs_smb3_do_mount(fs_type, flags, dev_name, data, true);
869}
870
871static struct dentry *
872cifs_do_mount(struct file_system_type *fs_type,
873 int flags, const char *dev_name, void *data)
874{
875 return cifs_smb3_do_mount(fs_type, flags, dev_name, data, false);
876}
877
Jeff Layton08bc0352014-05-23 06:50:21 -0400878static ssize_t
879cifs_loose_read_iter(struct kiocb *iocb, struct iov_iter *iter)
880{
881 ssize_t rc;
882 struct inode *inode = file_inode(iocb->ki_filp);
883
Ross Lagerwall882137c2015-12-02 14:46:07 +0000884 if (iocb->ki_filp->f_flags & O_DIRECT)
885 return cifs_user_readv(iocb, iter);
886
Jeff Layton08bc0352014-05-23 06:50:21 -0400887 rc = cifs_revalidate_mapping(inode);
888 if (rc)
889 return rc;
890
891 return generic_file_read_iter(iocb, iter);
892}
893
Al Viro3dae8752014-04-03 12:05:17 -0400894static ssize_t cifs_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Steve French87c89dd2005-11-17 17:03:00 -0800895{
Al Viro496ad9a2013-01-23 17:07:38 -0500896 struct inode *inode = file_inode(iocb->ki_filp);
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000897 struct cifsInodeInfo *cinode = CIFS_I(inode);
Steve French87c89dd2005-11-17 17:03:00 -0800898 ssize_t written;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500899 int rc;
Steve French87c89dd2005-11-17 17:03:00 -0800900
Ross Lagerwall882137c2015-12-02 14:46:07 +0000901 if (iocb->ki_filp->f_flags & O_DIRECT) {
902 written = cifs_user_writev(iocb, from);
903 if (written > 0 && CIFS_CACHE_READ(cinode)) {
904 cifs_zap_mapping(inode);
905 cifs_dbg(FYI,
906 "Set no oplock for inode=%p after a write operation\n",
907 inode);
908 cinode->oplock = 0;
909 }
910 return written;
911 }
912
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000913 written = cifs_get_writer(cinode);
914 if (written)
915 return written;
916
Al Viro3dae8752014-04-03 12:05:17 -0400917 written = generic_file_write_iter(iocb, from);
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500918
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400919 if (CIFS_CACHE_WRITE(CIFS_I(inode)))
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000920 goto out;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500921
922 rc = filemap_fdatawrite(inode->i_mapping);
923 if (rc)
Al Viro3dae8752014-04-03 12:05:17 -0400924 cifs_dbg(FYI, "cifs_file_write_iter: %d rc on %p inode\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500925 rc, inode);
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500926
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000927out:
928 cifs_put_writer(cinode);
Steve French87c89dd2005-11-17 17:03:00 -0800929 return written;
930}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Andrew Morton965c8e52012-12-17 15:59:39 -0800932static loff_t cifs_llseek(struct file *file, loff_t offset, int whence)
Steve Frenchc32a0b62006-01-12 14:41:28 -0800933{
Ronnie Sahlbergdece44e2019-05-15 07:17:02 +1000934 struct cifsFileInfo *cfile = file->private_data;
935 struct cifs_tcon *tcon;
936
Josef Bacik06222e42011-07-18 13:21:38 -0400937 /*
Andrew Morton965c8e52012-12-17 15:59:39 -0800938 * whence == SEEK_END || SEEK_DATA || SEEK_HOLE => we must revalidate
Josef Bacik06222e42011-07-18 13:21:38 -0400939 * the cached file length
940 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800941 if (whence != SEEK_SET && whence != SEEK_CUR) {
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400942 int rc;
Al Viro496ad9a2013-01-23 17:07:38 -0500943 struct inode *inode = file_inode(file);
Steve French030e9d82007-02-01 04:27:59 +0000944
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400945 /*
946 * We need to be sure that all dirty pages are written and the
947 * server has the newest file length.
948 */
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400949 if (!CIFS_CACHE_READ(CIFS_I(inode)) && inode->i_mapping &&
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400950 inode->i_mapping->nrpages != 0) {
951 rc = filemap_fdatawait(inode->i_mapping);
Steve French156ecb22011-05-20 17:00:01 +0000952 if (rc) {
953 mapping_set_error(inode->i_mapping, rc);
954 return rc;
955 }
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400956 }
957 /*
958 * Some applications poll for the file length in this strange
959 * way so we must seek to end on non-oplocked files by
960 * setting the revalidate time to zero.
961 */
962 CIFS_I(inode)->time = 0;
Steve French030e9d82007-02-01 04:27:59 +0000963
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400964 rc = cifs_revalidate_file_attr(file);
965 if (rc < 0)
966 return (loff_t)rc;
Steve Frenchc32a0b62006-01-12 14:41:28 -0800967 }
Ronnie Sahlbergdece44e2019-05-15 07:17:02 +1000968 if (cfile && cfile->tlink) {
969 tcon = tlink_tcon(cfile->tlink);
970 if (tcon->ses->server->ops->llseek)
971 return tcon->ses->server->ops->llseek(file, tcon,
972 offset, whence);
973 }
Andrew Morton965c8e52012-12-17 15:59:39 -0800974 return generic_file_llseek(file, offset, whence);
Steve Frenchc32a0b62006-01-12 14:41:28 -0800975}
976
Jeff Laytone6f5c782014-08-22 10:40:25 -0400977static int
978cifs_setlease(struct file *file, long arg, struct file_lock **lease, void **priv)
Steve French84210e92008-10-23 04:42:37 +0000979{
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400980 /*
981 * Note that this is called by vfs setlease with i_lock held to
982 * protect *lease from going away.
983 */
Al Viro496ad9a2013-01-23 17:07:38 -0500984 struct inode *inode = file_inode(file);
Jeff Laytonba00ba642010-09-20 16:01:31 -0700985 struct cifsFileInfo *cfile = file->private_data;
Steve French84210e92008-10-23 04:42:37 +0000986
987 if (!(S_ISREG(inode->i_mode)))
988 return -EINVAL;
989
Jeff Layton02440802014-08-09 10:16:44 -0400990 /* Check if file is oplocked if this is request for new lease */
991 if (arg == F_UNLCK ||
992 ((arg == F_RDLCK) && CIFS_CACHE_READ(CIFS_I(inode))) ||
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400993 ((arg == F_WRLCK) && CIFS_CACHE_WRITE(CIFS_I(inode))))
Jeff Laytone6f5c782014-08-22 10:40:25 -0400994 return generic_setlease(file, arg, lease, priv);
Jeff Layton13cfb732010-09-29 19:51:11 -0400995 else if (tlink_tcon(cfile->tlink)->local_lease &&
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400996 !CIFS_CACHE_READ(CIFS_I(inode)))
997 /*
998 * If the server claims to support oplock on this file, then we
999 * still need to check oplock even if the local_lease mount
1000 * option is set, but there are servers which do not support
1001 * oplock for which this mount option may be useful if the user
1002 * knows that the file won't be changed on the server by anyone
1003 * else.
1004 */
Jeff Laytone6f5c782014-08-22 10:40:25 -04001005 return generic_setlease(file, arg, lease, priv);
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001006 else
Steve French84210e92008-10-23 04:42:37 +00001007 return -EAGAIN;
1008}
Steve French84210e92008-10-23 04:42:37 +00001009
Igor Mammedove6ab1582008-01-11 01:49:48 +00001010struct file_system_type cifs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 .owner = THIS_MODULE,
1012 .name = "cifs",
Al Virod753ed92010-07-26 12:52:33 +04001013 .mount = cifs_do_mount,
Al Viro6d686172011-06-17 08:34:57 -04001014 .kill_sb = cifs_kill_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 /* .fs_flags */
1016};
Eric W. Biederman3e64fe52013-03-11 07:05:42 -07001017MODULE_ALIAS_FS("cifs");
Steve French49218b42018-05-23 21:44:53 -05001018
1019static struct file_system_type smb3_fs_type = {
1020 .owner = THIS_MODULE,
1021 .name = "smb3",
Steve Frenchc7c137b2018-06-06 17:59:29 -05001022 .mount = smb3_do_mount,
Steve French49218b42018-05-23 21:44:53 -05001023 .kill_sb = cifs_kill_sb,
1024 /* .fs_flags */
1025};
1026MODULE_ALIAS_FS("smb3");
1027MODULE_ALIAS("smb3");
1028
Arjan van de Ven754661f2007-02-12 00:55:38 -08001029const struct inode_operations cifs_dir_inode_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 .create = cifs_create,
Miklos Szeredid2c12712012-06-05 15:10:23 +02001031 .atomic_open = cifs_atomic_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 .lookup = cifs_lookup,
1033 .getattr = cifs_getattr,
1034 .unlink = cifs_unlink,
1035 .link = cifs_hardlink,
1036 .mkdir = cifs_mkdir,
1037 .rmdir = cifs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +02001038 .rename = cifs_rename2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 .permission = cifs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 .setattr = cifs_setattr,
1041 .symlink = cifs_symlink,
1042 .mknod = cifs_mknod,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 .listxattr = cifs_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044};
1045
Arjan van de Ven754661f2007-02-12 00:55:38 -08001046const struct inode_operations cifs_file_inode_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 .setattr = cifs_setattr,
Steve French48a77aa2016-05-18 20:48:32 -05001048 .getattr = cifs_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 .permission = cifs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 .listxattr = cifs_listxattr,
Ronnie Sahlberg2f3ebab2019-04-25 16:45:29 +10001051 .fiemap = cifs_fiemap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052};
1053
Arjan van de Ven754661f2007-02-12 00:55:38 -08001054const struct inode_operations cifs_symlink_inode_ops = {
Al Viro6b255392015-11-17 10:20:54 -05001055 .get_link = cifs_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 .permission = cifs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 .listxattr = cifs_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058};
1059
Darrick J. Wong42ec3d42018-10-30 10:41:49 +11001060static loff_t cifs_remap_file_range(struct file *src_file, loff_t off,
1061 struct file *dst_file, loff_t destoff, loff_t len,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001062 unsigned int remap_flags)
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001063{
1064 struct inode *src_inode = file_inode(src_file);
1065 struct inode *target_inode = file_inode(dst_file);
1066 struct cifsFileInfo *smb_file_src = src_file->private_data;
Colin Ian King8c6c9bed82018-11-01 13:14:30 +00001067 struct cifsFileInfo *smb_file_target;
1068 struct cifs_tcon *target_tcon;
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001069 unsigned int xid;
1070 int rc;
1071
Xiaoli Fengb073a082019-03-16 12:11:54 +08001072 if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001073 return -EINVAL;
1074
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001075 cifs_dbg(FYI, "clone range\n");
1076
1077 xid = get_xid();
1078
1079 if (!src_file->private_data || !dst_file->private_data) {
1080 rc = -EBADF;
1081 cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
1082 goto out;
1083 }
1084
Colin Ian King8c6c9bed82018-11-01 13:14:30 +00001085 smb_file_target = dst_file->private_data;
1086 target_tcon = tlink_tcon(smb_file_target->tlink);
1087
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001088 /*
1089 * Note: cifs case is easier than btrfs since server responsible for
1090 * checks for proper open modes and file type and if it wants
1091 * server could even support copy of range where source = target
1092 */
1093 lock_two_nondirectories(target_inode, src_inode);
1094
1095 if (len == 0)
1096 len = src_inode->i_size - off;
1097
1098 cifs_dbg(FYI, "about to flush pages\n");
1099 /* should we flush first and last page first */
1100 truncate_inode_pages_range(&target_inode->i_data, destoff,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001101 PAGE_ALIGN(destoff + len)-1);
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001102
1103 if (target_tcon->ses->server->ops->duplicate_extents)
1104 rc = target_tcon->ses->server->ops->duplicate_extents(xid,
1105 smb_file_src, smb_file_target, off, len, destoff);
1106 else
1107 rc = -EOPNOTSUPP;
1108
1109 /* force revalidate of size and timestamps of target file now
1110 that target is updated on the server */
1111 CIFS_I(target_inode)->time = 0;
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001112 /* although unlocking in the reverse order from locking is not
1113 strictly necessary here it is a little cleaner to be consistent */
1114 unlock_two_nondirectories(src_inode, target_inode);
1115out:
1116 free_xid(xid);
Darrick J. Wong42ec3d42018-10-30 10:41:49 +11001117 return rc < 0 ? rc : len;
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001118}
1119
Sachin Prabhu620d8742017-02-10 16:03:51 +05301120ssize_t cifs_file_copychunk_range(unsigned int xid,
1121 struct file *src_file, loff_t off,
1122 struct file *dst_file, loff_t destoff,
1123 size_t len, unsigned int flags)
1124{
1125 struct inode *src_inode = file_inode(src_file);
1126 struct inode *target_inode = file_inode(dst_file);
1127 struct cifsFileInfo *smb_file_src;
1128 struct cifsFileInfo *smb_file_target;
1129 struct cifs_tcon *src_tcon;
1130 struct cifs_tcon *target_tcon;
1131 ssize_t rc;
1132
1133 cifs_dbg(FYI, "copychunk range\n");
1134
Sachin Prabhu620d8742017-02-10 16:03:51 +05301135 if (!src_file->private_data || !dst_file->private_data) {
1136 rc = -EBADF;
1137 cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
1138 goto out;
1139 }
1140
1141 rc = -EXDEV;
1142 smb_file_target = dst_file->private_data;
1143 smb_file_src = src_file->private_data;
1144 src_tcon = tlink_tcon(smb_file_src->tlink);
1145 target_tcon = tlink_tcon(smb_file_target->tlink);
1146
1147 if (src_tcon->ses != target_tcon->ses) {
1148 cifs_dbg(VFS, "source and target of copy not on same server\n");
1149 goto out;
1150 }
1151
Amir Goldsteinbf3c90e2019-06-10 20:36:57 +03001152 rc = -EOPNOTSUPP;
1153 if (!target_tcon->ses->server->ops->copychunk_range)
1154 goto out;
1155
Sachin Prabhu620d8742017-02-10 16:03:51 +05301156 /*
1157 * Note: cifs case is easier than btrfs since server responsible for
1158 * checks for proper open modes and file type and if it wants
1159 * server could even support copy of range where source = target
1160 */
1161 lock_two_nondirectories(target_inode, src_inode);
1162
1163 cifs_dbg(FYI, "about to flush pages\n");
1164 /* should we flush first and last page first */
1165 truncate_inode_pages(&target_inode->i_data, 0);
1166
Amir Goldsteinbf3c90e2019-06-10 20:36:57 +03001167 rc = file_modified(dst_file);
1168 if (!rc)
Sachin Prabhu620d8742017-02-10 16:03:51 +05301169 rc = target_tcon->ses->server->ops->copychunk_range(xid,
1170 smb_file_src, smb_file_target, off, len, destoff);
Amir Goldsteinbf3c90e2019-06-10 20:36:57 +03001171
1172 file_accessed(src_file);
Sachin Prabhu620d8742017-02-10 16:03:51 +05301173
1174 /* force revalidate of size and timestamps of target file now
1175 * that target is updated on the server
1176 */
1177 CIFS_I(target_inode)->time = 0;
1178 /* although unlocking in the reverse order from locking is not
1179 * strictly necessary here it is a little cleaner to be consistent
1180 */
1181 unlock_two_nondirectories(src_inode, target_inode);
1182
1183out:
1184 return rc;
1185}
1186
Steve French6e70c262018-05-10 10:59:37 -05001187/*
1188 * Directory operations under CIFS/SMB2/SMB3 are synchronous, so fsync()
1189 * is a dummy operation.
1190 */
1191static int cifs_dir_fsync(struct file *file, loff_t start, loff_t end, int datasync)
1192{
1193 cifs_dbg(FYI, "Sync directory - name: %pD datasync: 0x%x\n",
1194 file, datasync);
1195
1196 return 0;
1197}
1198
Sachin Prabhu620d8742017-02-10 16:03:51 +05301199static ssize_t cifs_copy_file_range(struct file *src_file, loff_t off,
1200 struct file *dst_file, loff_t destoff,
1201 size_t len, unsigned int flags)
1202{
1203 unsigned int xid = get_xid();
1204 ssize_t rc;
1205
1206 rc = cifs_file_copychunk_range(xid, src_file, off, dst_file, destoff,
1207 len, flags);
1208 free_xid(xid);
Dave Chinner64bf5ff2019-06-05 08:04:47 -07001209
Amir Goldstein5dae2222019-06-05 08:04:50 -07001210 if (rc == -EOPNOTSUPP || rc == -EXDEV)
Dave Chinner64bf5ff2019-06-05 08:04:47 -07001211 rc = generic_copy_file_range(src_file, off, dst_file,
1212 destoff, len, flags);
Sachin Prabhu620d8742017-02-10 16:03:51 +05301213 return rc;
1214}
1215
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001216const struct file_operations cifs_file_ops = {
Jeff Layton08bc0352014-05-23 06:50:21 -04001217 .read_iter = cifs_loose_read_iter,
Al Viro3dae8752014-04-03 12:05:17 -04001218 .write_iter = cifs_file_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 .open = cifs_open,
1220 .release = cifs_close,
1221 .lock = cifs_lock,
Steve Frenchd0677992019-07-16 18:55:38 -05001222 .flock = cifs_flock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 .fsync = cifs_fsync,
1224 .flush = cifs_flush,
1225 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001226 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001227 .splice_write = iter_file_splice_write,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001228 .llseek = cifs_llseek,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001229 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301230 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001231 .remap_file_range = cifs_remap_file_range,
Steve French84210e92008-10-23 04:42:37 +00001232 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001233 .fallocate = cifs_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234};
1235
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001236const struct file_operations cifs_file_strict_ops = {
Al Viroe6a7bcb2014-04-02 19:53:36 -04001237 .read_iter = cifs_strict_readv,
Al Viro3dae8752014-04-03 12:05:17 -04001238 .write_iter = cifs_strict_writev,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001239 .open = cifs_open,
1240 .release = cifs_close,
1241 .lock = cifs_lock,
Steve Frenchd0677992019-07-16 18:55:38 -05001242 .flock = cifs_flock,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001243 .fsync = cifs_strict_fsync,
1244 .flush = cifs_flush,
Pavel Shilovsky7a6a19b2010-12-14 11:29:51 +03001245 .mmap = cifs_file_strict_mmap,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001246 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001247 .splice_write = iter_file_splice_write,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001248 .llseek = cifs_llseek,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001249 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301250 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001251 .remap_file_range = cifs_remap_file_range,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001252 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001253 .fallocate = cifs_fallocate,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001254};
1255
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001256const struct file_operations cifs_file_direct_ops = {
Long Libe4eb682018-10-31 22:13:11 +00001257 .read_iter = cifs_direct_readv,
1258 .write_iter = cifs_direct_writev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 .open = cifs_open,
1260 .release = cifs_close,
1261 .lock = cifs_lock,
Steve Frenchd0677992019-07-16 18:55:38 -05001262 .flock = cifs_flock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 .fsync = cifs_fsync,
1264 .flush = cifs_flush,
Steve Frencha994b8f2009-12-07 05:44:46 +00001265 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001266 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001267 .splice_write = iter_file_splice_write,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001268 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301269 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001270 .remap_file_range = cifs_remap_file_range,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001271 .llseek = cifs_llseek,
Steve French84210e92008-10-23 04:42:37 +00001272 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001273 .fallocate = cifs_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274};
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001275
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001276const struct file_operations cifs_file_nobrl_ops = {
Jeff Layton08bc0352014-05-23 06:50:21 -04001277 .read_iter = cifs_loose_read_iter,
Al Viro3dae8752014-04-03 12:05:17 -04001278 .write_iter = cifs_file_write_iter,
Steve French87c89dd2005-11-17 17:03:00 -08001279 .open = cifs_open,
1280 .release = cifs_close,
1281 .fsync = cifs_fsync,
1282 .flush = cifs_flush,
1283 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001284 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001285 .splice_write = iter_file_splice_write,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001286 .llseek = cifs_llseek,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001287 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301288 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001289 .remap_file_range = cifs_remap_file_range,
Steve French84210e92008-10-23 04:42:37 +00001290 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001291 .fallocate = cifs_fallocate,
Steve French8b94bcb2005-11-11 11:41:00 -08001292};
1293
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001294const struct file_operations cifs_file_strict_nobrl_ops = {
Al Viroe6a7bcb2014-04-02 19:53:36 -04001295 .read_iter = cifs_strict_readv,
Al Viro3dae8752014-04-03 12:05:17 -04001296 .write_iter = cifs_strict_writev,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001297 .open = cifs_open,
1298 .release = cifs_close,
1299 .fsync = cifs_strict_fsync,
1300 .flush = cifs_flush,
Pavel Shilovsky7a6a19b2010-12-14 11:29:51 +03001301 .mmap = cifs_file_strict_mmap,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001302 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001303 .splice_write = iter_file_splice_write,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001304 .llseek = cifs_llseek,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001305 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301306 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001307 .remap_file_range = cifs_remap_file_range,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001308 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001309 .fallocate = cifs_fallocate,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001310};
1311
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001312const struct file_operations cifs_file_direct_nobrl_ops = {
Long Libe4eb682018-10-31 22:13:11 +00001313 .read_iter = cifs_direct_readv,
1314 .write_iter = cifs_direct_writev,
Steve French87c89dd2005-11-17 17:03:00 -08001315 .open = cifs_open,
1316 .release = cifs_close,
1317 .fsync = cifs_fsync,
1318 .flush = cifs_flush,
Pavel Shilovsky810627a02010-03-27 02:00:49 +00001319 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001320 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001321 .splice_write = iter_file_splice_write,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001322 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301323 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001324 .remap_file_range = cifs_remap_file_range,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001325 .llseek = cifs_llseek,
Steve French84210e92008-10-23 04:42:37 +00001326 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001327 .fallocate = cifs_fallocate,
Steve French8b94bcb2005-11-11 11:41:00 -08001328};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001330const struct file_operations cifs_dir_ops = {
Al Viro3125d262016-04-20 17:40:47 -04001331 .iterate_shared = cifs_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 .release = cifs_closedir,
1333 .read = generic_read_dir,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001334 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301335 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001336 .remap_file_range = cifs_remap_file_range,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +02001337 .llseek = generic_file_llseek,
Steve French6e70c262018-05-10 10:59:37 -05001338 .fsync = cifs_dir_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339};
1340
1341static void
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001342cifs_init_once(void *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
1344 struct cifsInodeInfo *cifsi = inode;
1345
Christoph Lametera35afb82007-05-16 22:10:57 -07001346 inode_init_once(&cifsi->vfs_inode);
Pavel Shilovsky1b4b55a2012-09-19 06:22:44 -07001347 init_rwsem(&cifsi->lock_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}
1349
Fabian Frederick9ee108b2014-04-03 14:46:30 -07001350static int __init
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351cifs_init_inodecache(void)
1352{
1353 cifs_inode_cachep = kmem_cache_create("cifs_inode_cache",
Steve French26f57362007-08-30 22:09:15 +00001354 sizeof(struct cifsInodeInfo),
Paul Jacksonfffb60f2006-03-24 03:16:06 -08001355 0, (SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -08001356 SLAB_MEM_SPREAD|SLAB_ACCOUNT),
Paul Mundt20c2df82007-07-20 10:11:58 +09001357 cifs_init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 if (cifs_inode_cachep == NULL)
1359 return -ENOMEM;
1360
1361 return 0;
1362}
1363
1364static void
1365cifs_destroy_inodecache(void)
1366{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10001367 /*
1368 * Make sure all delayed rcu free inodes are flushed before we
1369 * destroy cache.
1370 */
1371 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001372 kmem_cache_destroy(cifs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373}
1374
1375static int
1376cifs_init_request_bufs(void)
1377{
Pavel Shilovsky3792c172012-01-12 22:40:50 +04001378 /*
1379 * SMB2 maximum header size is bigger than CIFS one - no problems to
1380 * allocate some more bytes for CIFS.
1381 */
Steve French2a38e122017-07-08 18:48:15 -05001382 size_t max_hdr_size = MAX_SMB2_HDR_SIZE;
1383
Steve French4523cc32007-04-30 20:13:06 +00001384 if (CIFSMaxBufSize < 8192) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 /* Buffer size can not be smaller than 2 * PATH_MAX since maximum
1386 Unicode path name has to fit in any SMB/CIFS path based frames */
1387 CIFSMaxBufSize = 8192;
1388 } else if (CIFSMaxBufSize > 1024*127) {
1389 CIFSMaxBufSize = 1024 * 127;
1390 } else {
1391 CIFSMaxBufSize &= 0x1FE00; /* Round size to even 512 byte mult*/
1392 }
Joe Perchesf96637b2013-05-04 22:12:25 -05001393/*
1394 cifs_dbg(VFS, "CIFSMaxBufSize %d 0x%x\n",
1395 CIFSMaxBufSize, CIFSMaxBufSize);
1396*/
David Windsorde046442017-06-10 22:50:33 -04001397 cifs_req_cachep = kmem_cache_create_usercopy("cifs_request",
Pavel Shilovsky3792c172012-01-12 22:40:50 +04001398 CIFSMaxBufSize + max_hdr_size, 0,
David Windsorde046442017-06-10 22:50:33 -04001399 SLAB_HWCACHE_ALIGN, 0,
1400 CIFSMaxBufSize + max_hdr_size,
1401 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 if (cifs_req_cachep == NULL)
1403 return -ENOMEM;
1404
Steve French4523cc32007-04-30 20:13:06 +00001405 if (cifs_min_rcv < 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 cifs_min_rcv = 1;
1407 else if (cifs_min_rcv > 64) {
1408 cifs_min_rcv = 64;
Joe Perchesf96637b2013-05-04 22:12:25 -05001409 cifs_dbg(VFS, "cifs_min_rcv set to maximum (64)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 }
1411
Matthew Dobson93d23412006-03-26 01:37:50 -08001412 cifs_req_poolp = mempool_create_slab_pool(cifs_min_rcv,
1413 cifs_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Steve French4523cc32007-04-30 20:13:06 +00001415 if (cifs_req_poolp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 kmem_cache_destroy(cifs_req_cachep);
1417 return -ENOMEM;
1418 }
Steve Frenchec637e32005-12-12 20:53:18 -08001419 /* MAX_CIFS_SMALL_BUFFER_SIZE bytes is enough for most SMB responses and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 almost all handle based requests (but not write response, nor is it
1421 sufficient for path based requests). A smaller size would have
Steve French50c2f752007-07-13 00:33:32 +00001422 been more efficient (compacting multiple slab items on one 4k page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 for the case in which debug was on, but this larger size allows
1424 more SMBs to use small buffer alloc and is still much more
Steve French6dc0f872007-07-06 23:13:06 +00001425 efficient to alloc 1 per page off the slab compared to 17K (5page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 alloc of large cifs buffers even when page debugging is on */
David Windsorde046442017-06-10 22:50:33 -04001427 cifs_sm_req_cachep = kmem_cache_create_usercopy("cifs_small_rq",
Steve French6dc0f872007-07-06 23:13:06 +00001428 MAX_CIFS_SMALL_BUFFER_SIZE, 0, SLAB_HWCACHE_ALIGN,
David Windsorde046442017-06-10 22:50:33 -04001429 0, MAX_CIFS_SMALL_BUFFER_SIZE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 if (cifs_sm_req_cachep == NULL) {
1431 mempool_destroy(cifs_req_poolp);
1432 kmem_cache_destroy(cifs_req_cachep);
Steve French6dc0f872007-07-06 23:13:06 +00001433 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 }
1435
Steve French4523cc32007-04-30 20:13:06 +00001436 if (cifs_min_small < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 cifs_min_small = 2;
1438 else if (cifs_min_small > 256) {
1439 cifs_min_small = 256;
Joe Perchesf96637b2013-05-04 22:12:25 -05001440 cifs_dbg(FYI, "cifs_min_small set to maximum (256)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 }
1442
Matthew Dobson93d23412006-03-26 01:37:50 -08001443 cifs_sm_req_poolp = mempool_create_slab_pool(cifs_min_small,
1444 cifs_sm_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Steve French4523cc32007-04-30 20:13:06 +00001446 if (cifs_sm_req_poolp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 mempool_destroy(cifs_req_poolp);
1448 kmem_cache_destroy(cifs_req_cachep);
1449 kmem_cache_destroy(cifs_sm_req_cachep);
1450 return -ENOMEM;
1451 }
1452
1453 return 0;
1454}
1455
1456static void
1457cifs_destroy_request_bufs(void)
1458{
1459 mempool_destroy(cifs_req_poolp);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001460 kmem_cache_destroy(cifs_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 mempool_destroy(cifs_sm_req_poolp);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001462 kmem_cache_destroy(cifs_sm_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
1464
1465static int
1466cifs_init_mids(void)
1467{
1468 cifs_mid_cachep = kmem_cache_create("cifs_mpx_ids",
Steve French26f57362007-08-30 22:09:15 +00001469 sizeof(struct mid_q_entry), 0,
1470 SLAB_HWCACHE_ALIGN, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 if (cifs_mid_cachep == NULL)
1472 return -ENOMEM;
1473
Matthew Dobson93d23412006-03-26 01:37:50 -08001474 /* 3 is a reasonable minimum number of simultaneous operations */
1475 cifs_mid_poolp = mempool_create_slab_pool(3, cifs_mid_cachep);
Steve French4523cc32007-04-30 20:13:06 +00001476 if (cifs_mid_poolp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 kmem_cache_destroy(cifs_mid_cachep);
1478 return -ENOMEM;
1479 }
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 return 0;
1482}
1483
1484static void
1485cifs_destroy_mids(void)
1486{
1487 mempool_destroy(cifs_mid_poolp);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001488 kmem_cache_destroy(cifs_mid_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489}
1490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491static int __init
1492init_cifs(void)
1493{
1494 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 cifs_proc_init();
Jeff Laytone7ddee92008-11-14 13:44:38 -05001496 INIT_LIST_HEAD(&cifs_tcp_ses_list);
Steve French0eff0e22011-02-24 05:39:23 +00001497#ifdef CONFIG_CIFS_DNOTIFY_EXPERIMENTAL /* unused temporarily */
Steve French4ca9c192005-10-10 19:52:13 -07001498 INIT_LIST_HEAD(&GlobalDnotifyReqList);
1499 INIT_LIST_HEAD(&GlobalDnotifyRsp_Q);
Steve French0eff0e22011-02-24 05:39:23 +00001500#endif /* was needed for dnotify, and will be needed for inotify when VFS fix */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501/*
1502 * Initialize Global counters
1503 */
1504 atomic_set(&sesInfoAllocCount, 0);
1505 atomic_set(&tconInfoAllocCount, 0);
Steve French6dc0f872007-07-06 23:13:06 +00001506 atomic_set(&tcpSesAllocCount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 atomic_set(&tcpSesReconnectCount, 0);
1508 atomic_set(&tconInfoReconnectCount, 0);
1509
1510 atomic_set(&bufAllocCount, 0);
Steve French4498eed52005-12-03 13:58:57 -08001511 atomic_set(&smBufAllocCount, 0);
1512#ifdef CONFIG_CIFS_STATS2
1513 atomic_set(&totBufAllocCount, 0);
1514 atomic_set(&totSmBufAllocCount, 0);
Steve French00778e22018-09-18 14:05:18 -05001515 if (slow_rsp_threshold < 1)
1516 cifs_dbg(FYI, "slow_response_threshold msgs disabled\n");
1517 else if (slow_rsp_threshold > 32767)
1518 cifs_dbg(VFS,
1519 "slow response threshold set higher than recommended (0 to 32767)\n");
Steve French4498eed52005-12-03 13:58:57 -08001520#endif /* CONFIG_CIFS_STATS2 */
1521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 atomic_set(&midCount, 0);
1523 GlobalCurrentXid = 0;
1524 GlobalTotalActiveXid = 0;
1525 GlobalMaxActiveXid = 0;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301526 spin_lock_init(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 spin_lock_init(&GlobalMid_Lock);
1528
Jason A. Donenfeld51b08172017-06-07 20:42:50 -04001529 cifs_lock_secret = get_random_u32();
Jeff Layton3d224622016-05-24 06:27:44 -04001530
Steve French4523cc32007-04-30 20:13:06 +00001531 if (cifs_max_pending < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 cifs_max_pending = 2;
Joe Perchesf96637b2013-05-04 22:12:25 -05001533 cifs_dbg(FYI, "cifs_max_pending set to min of 2\n");
Pavel Shilovsky10b9b982012-03-20 12:55:09 +03001534 } else if (cifs_max_pending > CIFS_MAX_REQ) {
1535 cifs_max_pending = CIFS_MAX_REQ;
Joe Perchesf96637b2013-05-04 22:12:25 -05001536 cifs_dbg(FYI, "cifs_max_pending set to max of %u\n",
1537 CIFS_MAX_REQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
1539
Jeff Laytonda472fc2012-03-23 14:40:53 -04001540 cifsiod_wq = alloc_workqueue("cifsiod", WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1541 if (!cifsiod_wq) {
1542 rc = -ENOMEM;
1543 goto out_clean_proc;
1544 }
1545
Steve French35cf94a2019-09-07 01:09:49 -05001546 /*
Steve French10328c42019-09-09 13:30:15 -05001547 * Consider in future setting limit!=0 maybe to min(num_of_cores - 1, 3)
1548 * so that we don't launch too many worker threads but
1549 * Documentation/workqueue.txt recommends setting it to 0
Steve French35cf94a2019-09-07 01:09:49 -05001550 */
Steve French10328c42019-09-09 13:30:15 -05001551
1552 /* WQ_UNBOUND allows decrypt tasks to run on any CPU */
Steve French35cf94a2019-09-07 01:09:49 -05001553 decrypt_wq = alloc_workqueue("smb3decryptd",
Steve French10328c42019-09-09 13:30:15 -05001554 WQ_UNBOUND|WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
Steve French35cf94a2019-09-07 01:09:49 -05001555 if (!decrypt_wq) {
1556 rc = -ENOMEM;
1557 goto out_destroy_cifsiod_wq;
1558 }
1559
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001560 cifsoplockd_wq = alloc_workqueue("cifsoplockd",
1561 WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1562 if (!cifsoplockd_wq) {
1563 rc = -ENOMEM;
Steve French35cf94a2019-09-07 01:09:49 -05001564 goto out_destroy_decrypt_wq;
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001565 }
1566
Suresh Jayaramanf579cf32010-07-05 18:11:50 +05301567 rc = cifs_fscache_register();
1568 if (rc)
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001569 goto out_destroy_cifsoplockd_wq;
Suresh Jayaramanf579cf32010-07-05 18:11:50 +05301570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 rc = cifs_init_inodecache();
Steve French45af7a02006-04-21 22:52:25 +00001572 if (rc)
Steve Frenchd3bf5222010-09-22 19:15:36 +00001573 goto out_unreg_fscache;
Steve French45af7a02006-04-21 22:52:25 +00001574
1575 rc = cifs_init_mids();
1576 if (rc)
1577 goto out_destroy_inodecache;
1578
1579 rc = cifs_init_request_bufs();
1580 if (rc)
1581 goto out_destroy_mids;
1582
Paulo Alcantara1c780222018-11-14 16:24:03 -02001583#ifdef CONFIG_CIFS_DFS_UPCALL
1584 rc = dfs_cache_init();
1585 if (rc)
1586 goto out_destroy_request_bufs;
1587#endif /* CONFIG_CIFS_DFS_UPCALL */
Jeff Layton84a15b92007-11-03 05:02:24 +00001588#ifdef CONFIG_CIFS_UPCALL
Sachin Prabhub74cb9a2016-05-17 18:20:13 -05001589 rc = init_cifs_spnego();
Jeff Layton84a15b92007-11-03 05:02:24 +00001590 if (rc)
Paulo Alcantara1c780222018-11-14 16:24:03 -02001591 goto out_destroy_dfs_cache;
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001592#endif /* CONFIG_CIFS_UPCALL */
1593
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001594 rc = init_cifs_idmap();
1595 if (rc)
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001596 goto out_register_key_type;
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001597
1598 rc = register_filesystem(&cifs_fs_type);
1599 if (rc)
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001600 goto out_init_cifs_idmap;
Steve French45af7a02006-04-21 22:52:25 +00001601
Steve French49218b42018-05-23 21:44:53 -05001602 rc = register_filesystem(&smb3_fs_type);
1603 if (rc) {
1604 unregister_filesystem(&cifs_fs_type);
1605 goto out_init_cifs_idmap;
1606 }
1607
Steve French45af7a02006-04-21 22:52:25 +00001608 return 0;
1609
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001610out_init_cifs_idmap:
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001611 exit_cifs_idmap();
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001612out_register_key_type:
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001613#ifdef CONFIG_CIFS_UPCALL
Sachin Prabhub74cb9a2016-05-17 18:20:13 -05001614 exit_cifs_spnego();
Paulo Alcantara1c780222018-11-14 16:24:03 -02001615out_destroy_dfs_cache:
1616#endif
1617#ifdef CONFIG_CIFS_DFS_UPCALL
1618 dfs_cache_destroy();
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001619out_destroy_request_bufs:
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001620#endif
Steve French45af7a02006-04-21 22:52:25 +00001621 cifs_destroy_request_bufs();
Steve Frenchd3bf5222010-09-22 19:15:36 +00001622out_destroy_mids:
Steve French45af7a02006-04-21 22:52:25 +00001623 cifs_destroy_mids();
Steve Frenchd3bf5222010-09-22 19:15:36 +00001624out_destroy_inodecache:
Steve French45af7a02006-04-21 22:52:25 +00001625 cifs_destroy_inodecache();
Steve Frenchd3bf5222010-09-22 19:15:36 +00001626out_unreg_fscache:
Suresh Jayaramanf579cf32010-07-05 18:11:50 +05301627 cifs_fscache_unregister();
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001628out_destroy_cifsoplockd_wq:
1629 destroy_workqueue(cifsoplockd_wq);
Steve French35cf94a2019-09-07 01:09:49 -05001630out_destroy_decrypt_wq:
1631 destroy_workqueue(decrypt_wq);
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001632out_destroy_cifsiod_wq:
Jeff Laytonda472fc2012-03-23 14:40:53 -04001633 destroy_workqueue(cifsiod_wq);
Steve Frenchd3bf5222010-09-22 19:15:36 +00001634out_clean_proc:
1635 cifs_proc_clean();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 return rc;
1637}
1638
1639static void __exit
1640exit_cifs(void)
1641{
Steve French49218b42018-05-23 21:44:53 -05001642 cifs_dbg(NOISY, "exit_smb3\n");
Jeff Layton3dd93302012-03-21 06:27:55 -04001643 unregister_filesystem(&cifs_fs_type);
Steve French49218b42018-05-23 21:44:53 -05001644 unregister_filesystem(&smb3_fs_type);
Igor Mammedov78d31a32008-04-24 12:56:07 +04001645 cifs_dfs_release_automount_timer();
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001646 exit_cifs_idmap();
Jeff Layton84a15b92007-11-03 05:02:24 +00001647#ifdef CONFIG_CIFS_UPCALL
Shu Wang94183332017-09-07 16:03:27 +08001648 exit_cifs_spnego();
Jeff Layton84a15b92007-11-03 05:02:24 +00001649#endif
Paulo Alcantara1c780222018-11-14 16:24:03 -02001650#ifdef CONFIG_CIFS_DFS_UPCALL
1651 dfs_cache_destroy();
1652#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 cifs_destroy_request_bufs();
Jeff Layton3dd93302012-03-21 06:27:55 -04001654 cifs_destroy_mids();
1655 cifs_destroy_inodecache();
1656 cifs_fscache_unregister();
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001657 destroy_workqueue(cifsoplockd_wq);
Steve French35cf94a2019-09-07 01:09:49 -05001658 destroy_workqueue(decrypt_wq);
Jeff Laytonda472fc2012-03-23 14:40:53 -04001659 destroy_workqueue(cifsiod_wq);
Jeff Layton3dd93302012-03-21 06:27:55 -04001660 cifs_proc_clean();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661}
1662
Steve French1c3a13a2018-09-18 04:07:45 -05001663MODULE_AUTHOR("Steve French");
Steve French6dc0f872007-07-06 23:13:06 +00001664MODULE_LICENSE("GPL"); /* combination of LGPL + GPL source behaves as GPL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665MODULE_DESCRIPTION
Steve French1c3a13a2018-09-18 04:07:45 -05001666 ("VFS to access SMB3 servers e.g. Samba, Macs, Azure and Windows (and "
1667 "also older servers complying with the SNIA CIFS Specification)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668MODULE_VERSION(CIFS_VERSION);
Ronnie Sahlberg3591bb82019-10-31 13:55:14 +10001669MODULE_SOFTDEP("ecb");
1670MODULE_SOFTDEP("hmac");
1671MODULE_SOFTDEP("md4");
1672MODULE_SOFTDEP("md5");
1673MODULE_SOFTDEP("nls");
1674MODULE_SOFTDEP("aes");
1675MODULE_SOFTDEP("cmac");
1676MODULE_SOFTDEP("sha256");
1677MODULE_SOFTDEP("sha512");
1678MODULE_SOFTDEP("aead2");
1679MODULE_SOFTDEP("ccm");
1680MODULE_SOFTDEP("gcm");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681module_init(init_cifs)
1682module_exit(exit_cifs)